@aragon/gov-ui-kit 1.0.61 → 1.0.63
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 +28 -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/core/components/forms/inputFileAvatar/index.d.ts +1 -1
- package/dist/types/src/core/components/forms/inputFileAvatar/inputFileAvatar.api.d.ts +19 -5
- package/dist/types/src/modules/assets/copy/modulesCopy.d.ts +2 -10
- package/dist/types/src/modules/components/proposal/proposalActions/proposalActionsList/proposalActionUpdateMetadata/proposalActionUpdateMetadata.api.d.ts +2 -2
- package/dist/types/src/modules/components/proposal/proposalDataListItem/proposalDataListItemStatus/proposalDataListItemStatus.d.ts +1 -1
- package/dist/types/src/modules/components/proposal/proposalDataListItem/proposalDataListItemStructure/proposalDataListItemStructure.api.d.ts +6 -52
- package/dist/types/src/modules/components/proposal/proposalUtils.d.ts +2 -3
- package/dist/types/src/modules/components/transaction/transactionDataListItem/transactionDataListItemStructure/transactionDataListItemStructure.api.d.ts +2 -2
- package/package.json +30 -32
- package/dist/types/src/modules/components/proposal/proposalDataListItem/approvalThresholdResult/approvalThresholdResult.d.ts +0 -7
- package/dist/types/src/modules/components/proposal/proposalDataListItem/approvalThresholdResult/index.d.ts +0 -1
- package/dist/types/src/modules/components/proposal/proposalDataListItem/majorityVotingResult/index.d.ts +0 -1
- package/dist/types/src/modules/components/proposal/proposalDataListItem/majorityVotingResult/majorityVotingResult.d.ts +0 -7
- package/dist/types/src/modules/components/proposal/proposalDataListItem/proposalDataListItemUtils.d.ts +0 -7
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { InputFileAvatar } from './inputFileAvatar';
|
|
2
|
-
export { InputFileAvatarError, type IInputFileAvatarProps } from './inputFileAvatar.api';
|
|
2
|
+
export { InputFileAvatarError, type IInputFileAvatarProps, type IInputFileAvatarValue } from './inputFileAvatar.api';
|
|
@@ -8,17 +8,31 @@ export declare enum InputFileAvatarError {
|
|
|
8
8
|
TOO_MANY_FILES = "too-many-files",
|
|
9
9
|
FILE_TOO_LARGE = "file-too-large"
|
|
10
10
|
}
|
|
11
|
+
export interface IInputFileAvatarValue {
|
|
12
|
+
/**
|
|
13
|
+
* URL of the image for the preview.
|
|
14
|
+
*/
|
|
15
|
+
url?: string;
|
|
16
|
+
/**
|
|
17
|
+
* File object of the image.
|
|
18
|
+
*/
|
|
19
|
+
file?: File;
|
|
20
|
+
/**
|
|
21
|
+
* Error message if image upload fails.
|
|
22
|
+
*/
|
|
23
|
+
error?: InputFileAvatarError;
|
|
24
|
+
}
|
|
11
25
|
export interface IInputFileAvatarProps extends Pick<IInputContainerBaseProps, 'alert' | 'label' | 'helpText' | 'isOptional' | 'variant' | 'disabled'> {
|
|
12
26
|
/**
|
|
13
|
-
* Function that is called when a file is selected.
|
|
27
|
+
* Function that is called when a file is selected.
|
|
14
28
|
* If the file is rejected, the function is not called.
|
|
15
|
-
* If the file is accepted, the function is called with the file as an argument.
|
|
29
|
+
* If the file is accepted, the function is called with the file as an argument and a url string for generating the preview.
|
|
16
30
|
*/
|
|
17
|
-
|
|
31
|
+
onChange: (value?: IInputFileAvatarValue) => void;
|
|
18
32
|
/**
|
|
19
|
-
*
|
|
33
|
+
* The current value of the input.
|
|
20
34
|
*/
|
|
21
|
-
|
|
35
|
+
value?: IInputFileAvatarValue;
|
|
22
36
|
/**
|
|
23
37
|
* Allowed file extensions, it must be an object with the keys set to the MIME type
|
|
24
38
|
* and the values an array of file extensions (see https://developer.mozilla.org/en-US/docs/Web/API/window/showOpenFilePicker#accept)
|
|
@@ -17,14 +17,6 @@ export declare const modulesCopy: {
|
|
|
17
17
|
delegations: string;
|
|
18
18
|
votingPower: string;
|
|
19
19
|
};
|
|
20
|
-
approvalThresholdResult: {
|
|
21
|
-
stage: string;
|
|
22
|
-
outOf: (threshold: string) => string;
|
|
23
|
-
};
|
|
24
|
-
majorityVotingResult: {
|
|
25
|
-
winningOption: string;
|
|
26
|
-
stage: string;
|
|
27
|
-
};
|
|
28
20
|
proposalActionsContainer: {
|
|
29
21
|
emptyHeader: string;
|
|
30
22
|
};
|
|
@@ -95,15 +87,15 @@ export declare const modulesCopy: {
|
|
|
95
87
|
voted: string;
|
|
96
88
|
ago: string;
|
|
97
89
|
left: string;
|
|
90
|
+
in: string;
|
|
98
91
|
statusLabel: {
|
|
99
92
|
ACCEPTED: string;
|
|
93
|
+
ADVANCEABLE: string;
|
|
100
94
|
ACTIVE: string;
|
|
101
|
-
CHALLENGED: string;
|
|
102
95
|
DRAFT: string;
|
|
103
96
|
EXECUTED: string;
|
|
104
97
|
EXPIRED: string;
|
|
105
98
|
FAILED: string;
|
|
106
|
-
PARTIALLY_EXECUTED: string;
|
|
107
99
|
PENDING: string;
|
|
108
100
|
EXECUTABLE: string;
|
|
109
101
|
REJECTED: string;
|
|
@@ -11,9 +11,9 @@ export interface IProposalActionUpdateMetadataDaoMetadataLink {
|
|
|
11
11
|
}
|
|
12
12
|
export interface IProposalActionUpdateMetadataDaoMetadata {
|
|
13
13
|
/**
|
|
14
|
-
* URL of the
|
|
14
|
+
* URL of the avatar, only set for DAO metadata.
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
avatar?: string;
|
|
17
17
|
/**
|
|
18
18
|
* Name of the DAO or Plugin.
|
|
19
19
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { type IProposalDataListItemStructureProps } from '../proposalDataListItemStructure';
|
|
2
|
-
export interface IProposalDataListItemStatusProps extends Pick<IProposalDataListItemStructureProps, 'date' | 'status' | 'voted'> {
|
|
2
|
+
export interface IProposalDataListItemStatusProps extends Pick<IProposalDataListItemStructureProps, 'date' | 'status' | 'voted' | 'statusContext'> {
|
|
3
3
|
}
|
|
4
4
|
export declare const ProposalDataListItemStatus: React.FC<IProposalDataListItemStatusProps>;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import type { IDataListItemProps } from '../../../../../core';
|
|
2
2
|
import { type ICompositeAddress, type IWeb3ComponentProps } from '../../../../types';
|
|
3
3
|
import { type ProposalStatus } from '../../proposalUtils';
|
|
4
|
-
export type
|
|
5
|
-
export type ProposalResult<TType extends ProposalType> = TType extends 'majorityVoting' ? IMajorityVotingResult : TType extends 'approvalThreshold' ? IApprovalThresholdResult : undefined;
|
|
6
|
-
export type IProposalDataListItemStructureBaseProps<TType extends ProposalType = ProposalType> = IDataListItemProps & IWeb3ComponentProps & {
|
|
4
|
+
export type IProposalDataListItemStructureProps = IDataListItemProps & IWeb3ComponentProps & {
|
|
7
5
|
/**
|
|
8
6
|
* Proposal id
|
|
9
7
|
*/
|
|
@@ -20,14 +18,15 @@ export type IProposalDataListItemStructureBaseProps<TType extends ProposalType =
|
|
|
20
18
|
* Publisher(s) address (and optional ENS name and profile link)
|
|
21
19
|
*/
|
|
22
20
|
publisher: IPublisher | IPublisher[];
|
|
23
|
-
/**
|
|
24
|
-
* Result of the proposal shown only when it is active, challenged or vetoed.
|
|
25
|
-
*/
|
|
26
|
-
result?: ProposalResult<TType>;
|
|
27
21
|
/**
|
|
28
22
|
* Proposal status
|
|
29
23
|
*/
|
|
30
24
|
status: ProposalStatus;
|
|
25
|
+
/**
|
|
26
|
+
* Provides additional context about the current status of a proposal within a multistage voting process.
|
|
27
|
+
* Only displayed when proposal status is `ACTIVE` or `ADVANCEABLE`.
|
|
28
|
+
*/
|
|
29
|
+
statusContext?: string;
|
|
31
30
|
/**
|
|
32
31
|
* Proposal description
|
|
33
32
|
*/
|
|
@@ -36,10 +35,6 @@ export type IProposalDataListItemStructureBaseProps<TType extends ProposalType =
|
|
|
36
35
|
* Proposal title
|
|
37
36
|
*/
|
|
38
37
|
title: string;
|
|
39
|
-
/**
|
|
40
|
-
* Type of the ProposalDataListItem
|
|
41
|
-
*/
|
|
42
|
-
type?: TType;
|
|
43
38
|
/**
|
|
44
39
|
* Indicates whether the connected wallet has voted
|
|
45
40
|
*/
|
|
@@ -51,44 +46,3 @@ export interface IPublisher extends ICompositeAddress {
|
|
|
51
46
|
*/
|
|
52
47
|
link?: string;
|
|
53
48
|
}
|
|
54
|
-
export interface IProposalStage {
|
|
55
|
-
/**
|
|
56
|
-
* Name of the proposal stage
|
|
57
|
-
*/
|
|
58
|
-
title?: string;
|
|
59
|
-
/**
|
|
60
|
-
* Id of the proposal stage
|
|
61
|
-
*/
|
|
62
|
-
id: string | number;
|
|
63
|
-
}
|
|
64
|
-
export interface IProposalResultBase {
|
|
65
|
-
/**
|
|
66
|
-
* Proposal stage
|
|
67
|
-
*/
|
|
68
|
-
stage?: IProposalStage;
|
|
69
|
-
}
|
|
70
|
-
export interface IApprovalThresholdResult extends IProposalResultBase {
|
|
71
|
-
/**
|
|
72
|
-
* Number of approvals for the proposal
|
|
73
|
-
*/
|
|
74
|
-
approvalAmount: number;
|
|
75
|
-
/**
|
|
76
|
-
* Proposal approval threshold
|
|
77
|
-
*/
|
|
78
|
-
approvalThreshold: number;
|
|
79
|
-
}
|
|
80
|
-
export interface IMajorityVotingResult extends IProposalResultBase {
|
|
81
|
-
/**
|
|
82
|
-
* Winning option
|
|
83
|
-
*/
|
|
84
|
-
option: string;
|
|
85
|
-
/**
|
|
86
|
-
* Number of votes for the winning option
|
|
87
|
-
*/
|
|
88
|
-
voteAmount: string;
|
|
89
|
-
/**
|
|
90
|
-
* Percentage of votes for the winning option
|
|
91
|
-
*/
|
|
92
|
-
votePercentage: number;
|
|
93
|
-
}
|
|
94
|
-
export type IProposalDataListItemStructureProps = IProposalDataListItemStructureBaseProps<undefined> | IProposalDataListItemStructureBaseProps<'majorityVoting'> | IProposalDataListItemStructureBaseProps<'approvalThreshold'>;
|
|
@@ -2,12 +2,11 @@ import type { TagVariant } from '../../../core';
|
|
|
2
2
|
export declare enum ProposalStatus {
|
|
3
3
|
ACCEPTED = "ACCEPTED",
|
|
4
4
|
ACTIVE = "ACTIVE",
|
|
5
|
-
|
|
5
|
+
ADVANCEABLE = "ADVANCEABLE",
|
|
6
6
|
DRAFT = "DRAFT",
|
|
7
7
|
EXECUTED = "EXECUTED",
|
|
8
8
|
EXPIRED = "EXPIRED",
|
|
9
9
|
FAILED = "FAILED",
|
|
10
|
-
PARTIALLY_EXECUTED = "PARTIALLY_EXECUTED",
|
|
11
10
|
PENDING = "PENDING",
|
|
12
11
|
EXECUTABLE = "EXECUTABLE",
|
|
13
12
|
REJECTED = "REJECTED",
|
|
@@ -15,8 +14,8 @@ export declare enum ProposalStatus {
|
|
|
15
14
|
}
|
|
16
15
|
export declare enum ProposalVotingStatus {
|
|
17
16
|
ACTIVE = "ACTIVE",
|
|
18
|
-
PENDING = "PENDING",
|
|
19
17
|
ACCEPTED = "ACCEPTED",
|
|
18
|
+
PENDING = "PENDING",
|
|
20
19
|
EXPIRED = "EXPIRED",
|
|
21
20
|
REJECTED = "REJECTED",
|
|
22
21
|
UNREACHED = "UNREACHED",
|
|
@@ -24,9 +24,9 @@ export type ITransactionDataListItemProps = IDataListItemProps & {
|
|
|
24
24
|
*/
|
|
25
25
|
tokenAmount?: number | string;
|
|
26
26
|
/**
|
|
27
|
-
* The price of the
|
|
27
|
+
* The price of the transaction in USD.
|
|
28
28
|
*/
|
|
29
|
-
|
|
29
|
+
amountUsd?: number | string;
|
|
30
30
|
/**
|
|
31
31
|
* The type of transaction.
|
|
32
32
|
* @default TransactionType.ACTION
|
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.63",
|
|
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",
|
|
@@ -26,8 +26,7 @@
|
|
|
26
26
|
"lint:fix": "eslint . --fix",
|
|
27
27
|
"prettify": "prettier . --check",
|
|
28
28
|
"prettify:fix": "prettier . --write",
|
|
29
|
-
"type-check": "tsc --noemit"
|
|
30
|
-
"deploy:storybook": "storybook-to-ghpages"
|
|
29
|
+
"type-check": "tsc --noemit"
|
|
31
30
|
},
|
|
32
31
|
"repository": {
|
|
33
32
|
"type": "git",
|
|
@@ -56,17 +55,17 @@
|
|
|
56
55
|
"@radix-ui/react-toggle-group": "^1.1.0",
|
|
57
56
|
"@radix-ui/react-tooltip": "^1.1.0",
|
|
58
57
|
"@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.
|
|
58
|
+
"@tiptap/extension-code-block": "^2.11.0",
|
|
59
|
+
"@tiptap/extension-image": "^2.11.0",
|
|
60
|
+
"@tiptap/extension-link": "^2.11.0",
|
|
61
|
+
"@tiptap/extension-placeholder": "^2.11.0",
|
|
62
|
+
"@tiptap/extension-text-style": "^2.11.0",
|
|
63
|
+
"@tiptap/pm": "^2.11.0",
|
|
64
|
+
"@tiptap/react": "^2.11.0",
|
|
65
|
+
"@tiptap/starter-kit": "^2.11.0",
|
|
67
66
|
"blockies-ts": "^1.0.0",
|
|
68
67
|
"classnames": "^2.5.0",
|
|
69
|
-
"framer-motion": "^11.
|
|
68
|
+
"framer-motion": "^11.17.0",
|
|
70
69
|
"luxon": "^3.5.0",
|
|
71
70
|
"react-dropzone": "^14.3.0",
|
|
72
71
|
"react-imask": "^7.6.0",
|
|
@@ -75,12 +74,12 @@
|
|
|
75
74
|
},
|
|
76
75
|
"peerDependencies": {
|
|
77
76
|
"@tailwindcss/typography": "^0.5.0",
|
|
78
|
-
"@tanstack/react-query": "^5.
|
|
77
|
+
"@tanstack/react-query": "^5.64.0",
|
|
79
78
|
"react": "^18.2.0 || ^19.0.0",
|
|
80
79
|
"react-dom": "^18.2.0 || ^19.0.0",
|
|
81
80
|
"react-hook-form": "^7.54.0",
|
|
82
81
|
"tailwindcss": "^3.4.0",
|
|
83
|
-
"viem": "^2.
|
|
82
|
+
"viem": "^2.22.0",
|
|
84
83
|
"wagmi": "^2.14.0"
|
|
85
84
|
},
|
|
86
85
|
"devDependencies": {
|
|
@@ -98,40 +97,39 @@
|
|
|
98
97
|
"@storybook/addon-essentials": "^8.4.7",
|
|
99
98
|
"@storybook/addon-links": "^8.4.7",
|
|
100
99
|
"@storybook/addon-styling-webpack": "^1.0.1",
|
|
101
|
-
"@storybook/addon-webpack5-compiler-babel": "^3.0.
|
|
100
|
+
"@storybook/addon-webpack5-compiler-babel": "^3.0.5",
|
|
102
101
|
"@storybook/blocks": "^8.4.7",
|
|
103
102
|
"@storybook/react": "^8.4.7",
|
|
104
103
|
"@storybook/react-webpack5": "^8.4.7",
|
|
105
|
-
"@storybook/storybook-deployer": "^2.8.16",
|
|
106
104
|
"@svgr/rollup": "^8.1.0",
|
|
107
105
|
"@svgr/webpack": "^8.1.0",
|
|
108
|
-
"@tailwindcss/typography": "^0.5.
|
|
109
|
-
"@tanstack/react-query": "^5.
|
|
106
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
107
|
+
"@tanstack/react-query": "^5.64.1",
|
|
110
108
|
"@testing-library/dom": "^10.4.0",
|
|
111
109
|
"@testing-library/jest-dom": "^6.6.3",
|
|
112
110
|
"@testing-library/react": "^16.1.0",
|
|
113
111
|
"@testing-library/user-event": "^14.5.2",
|
|
114
112
|
"@types/jest": "^29.5.14",
|
|
115
113
|
"@types/luxon": "^3.4.2",
|
|
116
|
-
"@types/react": "^19.0.
|
|
117
|
-
"@types/react-dom": "^19.0.
|
|
114
|
+
"@types/react": "^19.0.7",
|
|
115
|
+
"@types/react-dom": "^19.0.3",
|
|
118
116
|
"@types/sanitize-html": "^2.13.0",
|
|
119
117
|
"autoprefixer": "^10.4.20",
|
|
120
118
|
"cross-env": "^7.0.3",
|
|
121
|
-
"eslint": "^9.
|
|
119
|
+
"eslint": "^9.18.0",
|
|
122
120
|
"eslint-import-resolver-typescript": "^3.7.0",
|
|
123
121
|
"eslint-plugin-import": "^2.31.0",
|
|
124
122
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
125
|
-
"eslint-plugin-react": "^7.37.
|
|
123
|
+
"eslint-plugin-react": "^7.37.4",
|
|
126
124
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
127
|
-
"eslint-plugin-storybook": "^0.11.
|
|
125
|
+
"eslint-plugin-storybook": "^0.11.2",
|
|
128
126
|
"eslint-plugin-tailwindcss": "^3.17.5",
|
|
129
127
|
"eslint-plugin-testing-library": "^7.1.1",
|
|
130
128
|
"husky": "^9.1.7",
|
|
131
129
|
"jest": "^29.7.0",
|
|
132
130
|
"jest-environment-jsdom": "^29.7.0",
|
|
133
|
-
"lint-staged": "^15.
|
|
134
|
-
"postcss": "^8.
|
|
131
|
+
"lint-staged": "^15.3.0",
|
|
132
|
+
"postcss": "^8.5.0",
|
|
135
133
|
"postcss-loader": "^8.1.1",
|
|
136
134
|
"prettier": "^3.4.2",
|
|
137
135
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
@@ -139,17 +137,17 @@
|
|
|
139
137
|
"react": "^19.0.0",
|
|
140
138
|
"react-dom": "^19.0.0",
|
|
141
139
|
"react-hook-form": "^7.54.2",
|
|
142
|
-
"rollup": "^4.
|
|
140
|
+
"rollup": "^4.30.1",
|
|
143
141
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
144
142
|
"rollup-plugin-postcss": "^4.0.2",
|
|
145
|
-
"rollup-plugin-visualizer": "^5.
|
|
143
|
+
"rollup-plugin-visualizer": "^5.14.0",
|
|
146
144
|
"storybook": "^8.4.7",
|
|
147
145
|
"tailwindcss": "^3.4.17",
|
|
148
146
|
"ts-jest": "^29.2.5",
|
|
149
|
-
"typescript": "^5.7.
|
|
150
|
-
"typescript-eslint": "^8.
|
|
151
|
-
"viem": "^2.
|
|
152
|
-
"wagmi": "^2.14.
|
|
147
|
+
"typescript": "^5.7.3",
|
|
148
|
+
"typescript-eslint": "^8.20.0",
|
|
149
|
+
"viem": "^2.22.8",
|
|
150
|
+
"wagmi": "^2.14.7"
|
|
153
151
|
},
|
|
154
152
|
"bugs": {
|
|
155
153
|
"url": "https://github.com/aragon/gov-ui-kit/issues"
|
|
@@ -167,5 +165,5 @@
|
|
|
167
165
|
"./build.css": "./build.css",
|
|
168
166
|
"./tailwind.config": "./tailwind.config.js"
|
|
169
167
|
},
|
|
170
|
-
"packageManager": "yarn@4.
|
|
168
|
+
"packageManager": "yarn@4.6.0"
|
|
171
169
|
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type IApprovalThresholdResult } from '../proposalDataListItemStructure';
|
|
2
|
-
export interface IApprovalThresholdResultProps extends IApprovalThresholdResult {
|
|
3
|
-
}
|
|
4
|
-
/**
|
|
5
|
-
* `ApprovalThresholdResult` component
|
|
6
|
-
*/
|
|
7
|
-
export declare const ApprovalThresholdResult: React.FC<IApprovalThresholdResultProps>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ApprovalThresholdResult, type IApprovalThresholdResultProps } from './approvalThresholdResult';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { MajorityVotingResult, type IMajorityVotingResultProps } from './majorityVotingResult';
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { type IMajorityVotingResult } from '../proposalDataListItemStructure';
|
|
2
|
-
export interface IMajorityVotingResultProps extends IMajorityVotingResult {
|
|
3
|
-
}
|
|
4
|
-
/**
|
|
5
|
-
* `MajorityVotingResult` component
|
|
6
|
-
*/
|
|
7
|
-
export declare const MajorityVotingResult: React.FC<IMajorityVotingResultProps>;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ProposalStatus } from '../proposalUtils';
|
|
2
|
-
declare class ProposalDataListItemUtils {
|
|
3
|
-
ongoingStatuses: ProposalStatus[];
|
|
4
|
-
isOngoingStatus: (status: ProposalStatus) => boolean;
|
|
5
|
-
}
|
|
6
|
-
export declare const proposalDataListItemUtils: ProposalDataListItemUtils;
|
|
7
|
-
export {};
|