@meddleware/access-gate-ui 0.1.10 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/src/App.vue +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meddleware/access-gate-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
|
+
"homepage": "https://docs.meddleware.co.uk/blockchain/sui/access-gate/",
|
|
4
5
|
"description": "Operator console for creating and managing on-chain Sui access gates — create gates, configure settings, airdrop NFTs, and freeze gates via a wallet-connected SPA.",
|
|
5
6
|
"author": "Meddleware <dev@meddleware.co.uk>",
|
|
6
7
|
"license": "0BSD",
|
package/src/App.vue
CHANGED
|
@@ -10,6 +10,7 @@ import { NETWORK } from './config.js'
|
|
|
10
10
|
import AccessGateView from './components/AccessGateView.vue'
|
|
11
11
|
|
|
12
12
|
const { mode, set } = useColorMode('dark')
|
|
13
|
+
const DOCS_URL = import.meta.env.VITE_DOCS_URL || 'https://docs.meddleware.co.uk/blockchain/sui/access-gate/'
|
|
13
14
|
const { wallets, account, connect, disconnect } = useWallet()
|
|
14
15
|
|
|
15
16
|
async function onConnect(): Promise<void> {
|
|
@@ -42,7 +43,7 @@ async function onConnect(): Promise<void> {
|
|
|
42
43
|
|
|
43
44
|
<AccessGateView />
|
|
44
45
|
|
|
45
|
-
<AppFooter />
|
|
46
|
+
<AppFooter :docs-url="DOCS_URL" />
|
|
46
47
|
</div>
|
|
47
48
|
</template>
|
|
48
49
|
|