@meddleware/dao-ui 0.1.1 → 0.1.2
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 +1 -1
- package/src/DaoView.vue +4 -0
- package/src/tabs/ProposalsTab.vue +0 -5
package/package.json
CHANGED
package/src/DaoView.vue
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
// Core DAO tool UI — tab-based console with desktop-application aesthetics.
|
|
3
3
|
// Rendered standalone by App.vue and embedded in the dashboard at the default route.
|
|
4
4
|
// All chain reads are read-only; no wallet connection is required to view data.
|
|
5
|
+
//
|
|
6
|
+
// qt.css is imported here (not just in main.ts) so the styles are included when
|
|
7
|
+
// DaoView is consumed as a library by the dashboard or any other host.
|
|
8
|
+
import './styles/qt.css'
|
|
5
9
|
import { ref, shallowRef, computed } from 'vue'
|
|
6
10
|
import TabBar from './components/TabBar.vue'
|
|
7
11
|
import StatusBar from './components/StatusBar.vue'
|
|
@@ -9,11 +9,6 @@ const { epoch } = useEpoch()
|
|
|
9
9
|
|
|
10
10
|
<template>
|
|
11
11
|
<div>
|
|
12
|
-
<div class="dao-notice">
|
|
13
|
-
On-chain governance proposals will appear here once <code>vault_dao</code> is deployed.
|
|
14
|
-
Contributions and voting will be enabled at that point.
|
|
15
|
-
</div>
|
|
16
|
-
|
|
17
12
|
<template v-if="proposals.length > 0">
|
|
18
13
|
<p class="dao-section-title">Active & Pending Proposals</p>
|
|
19
14
|
<ProposalRow
|