@aragon/gov-ui-kit 1.0.55 → 1.0.56
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/CHANGELOG.md +19 -0
- package/build.css +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/types/src/modules/components/proposal/proposalVoting/proposalVotingStage/proposalVotingStage.d.ts +0 -4
- package/package.json +29 -29
- package/src/core/components/index.css +0 -1
- package/src/core/components/accordion/accordionItemContent/index.css +0 -21
- package/src/core/components/accordion/index.css +0 -1
|
@@ -17,10 +17,6 @@ export interface IProposalVotingStageProps extends ComponentProps<'div'> {
|
|
|
17
17
|
* Name of the proposal stage displayed for multi-stage proposals.
|
|
18
18
|
*/
|
|
19
19
|
name?: string;
|
|
20
|
-
/**
|
|
21
|
-
* Forces the multi-stage content to be rendered when set to true.
|
|
22
|
-
*/
|
|
23
|
-
forceMount?: true;
|
|
24
20
|
/**
|
|
25
21
|
* Index of the stage set automatically by the ProposalVotingContainer for multi-stage proposals.
|
|
26
22
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aragon/gov-ui-kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.56",
|
|
4
4
|
"description": "Implementation of the Aragon's Governance UI Kit",
|
|
5
5
|
"main": "dist/index.es.js",
|
|
6
6
|
"types": "dist/types/src/index.d.ts",
|
|
@@ -56,14 +56,14 @@
|
|
|
56
56
|
"@radix-ui/react-toggle-group": "^1.1.0",
|
|
57
57
|
"@radix-ui/react-tooltip": "^1.1.0",
|
|
58
58
|
"@radix-ui/react-visually-hidden": "^1.1.0",
|
|
59
|
-
"@tiptap/extension-code-block": "^2.
|
|
60
|
-
"@tiptap/extension-image": "^2.
|
|
61
|
-
"@tiptap/extension-link": "^2.
|
|
62
|
-
"@tiptap/extension-placeholder": "^2.
|
|
63
|
-
"@tiptap/extension-text-style": "^2.
|
|
64
|
-
"@tiptap/pm": "^2.
|
|
65
|
-
"@tiptap/react": "^2.
|
|
66
|
-
"@tiptap/starter-kit": "^2.
|
|
59
|
+
"@tiptap/extension-code-block": "^2.10.0",
|
|
60
|
+
"@tiptap/extension-image": "^2.10.0",
|
|
61
|
+
"@tiptap/extension-link": "^2.10.0",
|
|
62
|
+
"@tiptap/extension-placeholder": "^2.10.0",
|
|
63
|
+
"@tiptap/extension-text-style": "^2.10.0",
|
|
64
|
+
"@tiptap/pm": "^2.10.0",
|
|
65
|
+
"@tiptap/react": "^2.10.0",
|
|
66
|
+
"@tiptap/starter-kit": "^2.10.0",
|
|
67
67
|
"blockies-ts": "^1.0.0",
|
|
68
68
|
"classnames": "^2.0.0",
|
|
69
69
|
"framer-motion": "^11.11.0",
|
|
@@ -75,12 +75,12 @@
|
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
77
|
"@tailwindcss/typography": "^0.5.0",
|
|
78
|
-
"@tanstack/react-query": "^5.
|
|
79
|
-
"react": "^18.2.0",
|
|
80
|
-
"react-dom": "^18.2.0",
|
|
78
|
+
"@tanstack/react-query": "^5.61.0",
|
|
79
|
+
"react": "^18.2.0 || ^19.0.0",
|
|
80
|
+
"react-dom": "^18.2.0 || ^19.0.0",
|
|
81
81
|
"tailwindcss": "^3.4.0",
|
|
82
82
|
"viem": "^2.21.0",
|
|
83
|
-
"wagmi": "^2.
|
|
83
|
+
"wagmi": "^2.13.0"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@babel/core": "^7.26.0",
|
|
@@ -93,18 +93,18 @@
|
|
|
93
93
|
"@rollup/plugin-terser": "^0.4.4",
|
|
94
94
|
"@rollup/plugin-typescript": "^12.1.1",
|
|
95
95
|
"@storybook/addon-designs": "^8.0.4",
|
|
96
|
-
"@storybook/addon-essentials": "^8.4.
|
|
97
|
-
"@storybook/addon-links": "^8.4.
|
|
96
|
+
"@storybook/addon-essentials": "^8.4.5",
|
|
97
|
+
"@storybook/addon-links": "^8.4.5",
|
|
98
98
|
"@storybook/addon-styling-webpack": "^1.0.1",
|
|
99
99
|
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
|
|
100
|
-
"@storybook/blocks": "^8.4.
|
|
101
|
-
"@storybook/react": "^8.4.
|
|
102
|
-
"@storybook/react-webpack5": "^8.4.
|
|
100
|
+
"@storybook/blocks": "^8.4.5",
|
|
101
|
+
"@storybook/react": "^8.4.5",
|
|
102
|
+
"@storybook/react-webpack5": "^8.4.5",
|
|
103
103
|
"@storybook/storybook-deployer": "^2.8.16",
|
|
104
104
|
"@svgr/rollup": "^8.1.0",
|
|
105
105
|
"@svgr/webpack": "^8.1.0",
|
|
106
106
|
"@tailwindcss/typography": "^0.5.15",
|
|
107
|
-
"@tanstack/react-query": "^5.
|
|
107
|
+
"@tanstack/react-query": "^5.61.3",
|
|
108
108
|
"@testing-library/dom": "^10.4.0",
|
|
109
109
|
"@testing-library/jest-dom": "^6.6.3",
|
|
110
110
|
"@testing-library/react": "^16.0.1",
|
|
@@ -121,9 +121,9 @@
|
|
|
121
121
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
122
122
|
"eslint-plugin-react": "^7.37.2",
|
|
123
123
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
124
|
-
"eslint-plugin-storybook": "^0.11.
|
|
124
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
125
125
|
"eslint-plugin-tailwindcss": "^3.17.5",
|
|
126
|
-
"eslint-plugin-testing-library": "^
|
|
126
|
+
"eslint-plugin-testing-library": "^7.0.0",
|
|
127
127
|
"husky": "^9.1.7",
|
|
128
128
|
"jest": "^29.7.0",
|
|
129
129
|
"jest-environment-jsdom": "^29.7.0",
|
|
@@ -132,20 +132,20 @@
|
|
|
132
132
|
"postcss-loader": "^8.1.1",
|
|
133
133
|
"prettier": "^3.3.3",
|
|
134
134
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
135
|
-
"prettier-plugin-tailwindcss": "^0.6.
|
|
135
|
+
"prettier-plugin-tailwindcss": "^0.6.9",
|
|
136
136
|
"react": "^18.3.1",
|
|
137
137
|
"react-dom": "^18.3.1",
|
|
138
|
-
"rollup": "^4.27.
|
|
138
|
+
"rollup": "^4.27.4",
|
|
139
139
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
140
140
|
"rollup-plugin-postcss": "^4.0.2",
|
|
141
141
|
"rollup-plugin-visualizer": "^5.12.0",
|
|
142
|
-
"storybook": "^8.4.
|
|
142
|
+
"storybook": "^8.4.5",
|
|
143
143
|
"tailwindcss": "^3.4.15",
|
|
144
144
|
"ts-jest": "^29.2.5",
|
|
145
|
-
"typescript": "^5.
|
|
146
|
-
"typescript-eslint": "^8.
|
|
147
|
-
"viem": "^2.21.
|
|
148
|
-
"wagmi": "^2.
|
|
145
|
+
"typescript": "^5.7.2",
|
|
146
|
+
"typescript-eslint": "^8.16.0",
|
|
147
|
+
"viem": "^2.21.50",
|
|
148
|
+
"wagmi": "^2.13.0"
|
|
149
149
|
},
|
|
150
150
|
"bugs": {
|
|
151
151
|
"url": "https://github.com/aragon/gov-ui-kit/issues"
|
|
@@ -163,5 +163,5 @@
|
|
|
163
163
|
"./build.css": "./build.css",
|
|
164
164
|
"./tailwind.config": "./tailwind.config.js"
|
|
165
165
|
},
|
|
166
|
-
"packageManager": "yarn@4.5.
|
|
166
|
+
"packageManager": "yarn@4.5.3"
|
|
167
167
|
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
@keyframes accordionExpand {
|
|
2
|
-
from {
|
|
3
|
-
height: 0;
|
|
4
|
-
opacity: 0;
|
|
5
|
-
}
|
|
6
|
-
to {
|
|
7
|
-
height: var(--radix-accordion-content-height);
|
|
8
|
-
opacity: 1;
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
@keyframes accordionCollapse {
|
|
13
|
-
from {
|
|
14
|
-
height: var(--radix-accordion-content-height);
|
|
15
|
-
opacity: 1;
|
|
16
|
-
}
|
|
17
|
-
to {
|
|
18
|
-
height: 0;
|
|
19
|
-
opacity: 0;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import "./accordionItemContent";
|