@gemafajarramadhan/dynamic-ui 1.3.17 → 1.3.18

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/index.d.ts CHANGED
@@ -6,11 +6,11 @@ export interface DynamicUIApiConfig {
6
6
 
7
7
  export const CardSummary: DefineComponent<{
8
8
  title: string
9
- value: any
10
- trend?: 'up' | 'down' | 'equal' | null
11
- icon?: string
12
- type: 'currency' | 'percentage'
13
- format: string
9
+ value: number
10
+ trend?: number
11
+ icon: string | any
12
+ type?: 'primary' | 'success' | 'warning' | 'info'
13
+ format?: 'currency' | 'number'
14
14
  delay?: number
15
15
  }>
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gemafajarramadhan/dynamic-ui",
3
- "version": "1.3.17",
3
+ "version": "1.3.18",
4
4
  "description": "Vue 3 Dynamic UI Component Library - Compatible with Vue, React, Angular, and any other framework via Web Components",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/index.d.ts CHANGED
@@ -6,11 +6,11 @@ export interface DynamicUIApiConfig {
6
6
 
7
7
  export const CardSummary: DefineComponent<{
8
8
  title: string
9
- value: any
10
- trend?: 'up' | 'down' | 'equal' | null
11
- icon?: string
12
- type: 'currency' | 'percentage'
13
- format: string
9
+ value: number
10
+ trend?: number
11
+ icon: string | any
12
+ type?: 'primary' | 'success' | 'warning' | 'info'
13
+ format?: 'currency' | 'number'
14
14
  delay?: number
15
15
  }>
16
16