mirror of
https://github.com/wharfkit/web-renderer.git
synced 2026-07-21 17:03:31 +00:00
75e011363d
* fix: qr sizing on zoom * fix: qr actions now always display * inline svg * remove icon components for svg strings * Updating to new wallet test releases * Account Creation Plugin Support (#132) * feat: add CreateAccount component * chore: added account creation example * chore: adding onAccountCreate implementation * fix: update imported plugin type * chore: added onAccountCreateComplete implementation * fix: resetting state properly after dialog * fix: giving the UI time to set the state before completing * cleanup: code cleanup * Removing and ignoring yarn-error.log * `make format` * Fixed dependencies * removed chains * Changed text to "Copy to clipboard" for non-request purposes * Few tweaks for SessionKit changes * Added account creation + custom buttons * Fixed logic with current plugin and chain selection interfaces * fix: chain selector should never be displayed when requiresChainSelect plugin config is false fix: displaying chain selector when applicable when uiRequirement.requiresChainSelect is true --------- Co-authored-by: dafuga <danielfugere28@gmail.com> Co-authored-by: Aaron Cox <aaron@greymass.com> * Fix svelte errors (#131) * fix: rename svelte config file extension * fix: add missing vite-plugin-svelte dependency * fix: also update vite config file extension * fix: format * Updating all plugins for SessionKit 1.1.0 --------- Co-authored-by: Dean Sallinen <dean@greymass.com> Co-authored-by: Dean Sallinen <7519573+deansallinen@users.noreply.github.com> Co-authored-by: dafuga <danielfugere28@gmail.com>
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import {defineConfig} from 'vite'
|
|
import {svelte} from '@sveltejs/vite-plugin-svelte'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [svelte()],
|
|
})
|