@club-employes/utopia 4.8.1 → 4.8.3
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/dist/icons-list.json +1 -1
- package/dist/index.d.ts +17 -0
- package/dist/index.js +1252 -1166
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -166,6 +166,22 @@ export interface BalanceCardProps {
|
|
|
166
166
|
currency?: string
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
+
export interface BalanceCardGroupProps {
|
|
170
|
+
cards: BalanceCardData[]
|
|
171
|
+
language?: 'fr' | 'en'
|
|
172
|
+
currency?: string
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export interface BalanceCardData {
|
|
176
|
+
campaignName: string
|
|
177
|
+
category: 'culture' | 'noel' | 'voyages' | 'rentree' | 'retraite' | 'naissance' | 'mariage' | 'sport'
|
|
178
|
+
totalAmount: number
|
|
179
|
+
spentAmount: number
|
|
180
|
+
campaignCount: number
|
|
181
|
+
actionable?: () => void
|
|
182
|
+
disabled?: boolean
|
|
183
|
+
}
|
|
184
|
+
|
|
169
185
|
export interface SkeletonProps {
|
|
170
186
|
width?: string | number
|
|
171
187
|
height?: string | number
|
|
@@ -218,6 +234,7 @@ export declare const DropDown: DefineComponent<DropDownProps>
|
|
|
218
234
|
export declare const InputCode: DefineComponent<InputCodeProps>
|
|
219
235
|
export declare const DataTable: DefineComponent<DataTableProps>
|
|
220
236
|
export declare const BalanceCard: DefineComponent<BalanceCardProps>
|
|
237
|
+
export declare const BalanceCardGroup: DefineComponent<BalanceCardGroupProps>
|
|
221
238
|
export declare const Skeleton: DefineComponent<SkeletonProps>
|
|
222
239
|
export declare const SkeletonAvatar: DefineComponent<SkeletonAvatarProps>
|
|
223
240
|
export declare const SkeletonText: DefineComponent<SkeletonTextProps>
|