@gemafajarramadhan/dynamic-ui 1.3.10 → 1.3.12
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/dynamic-ui.es.js +4932 -4916
- package/dist/dynamic-ui.umd.js +22 -22
- package/dist/index.d.ts +12 -2
- package/package.json +1 -1
- package/src/index.d.ts +12 -2
package/dist/index.d.ts
CHANGED
|
@@ -451,9 +451,19 @@ import type { DefineComponent, Plugin, App } from 'vue'
|
|
|
451
451
|
[key: string]: any
|
|
452
452
|
}>
|
|
453
453
|
|
|
454
|
-
|
|
454
|
+
export const DCodeTimelineWithIcons: DefineComponent<{
|
|
455
455
|
items?: any[]
|
|
456
|
-
|
|
456
|
+
apiUrl?: string
|
|
457
|
+
apiModule?: string
|
|
458
|
+
apiAction?: string
|
|
459
|
+
apiMethod?: string
|
|
460
|
+
apiParams?: Record<string, any>
|
|
461
|
+
title?: string
|
|
462
|
+
endpoint?: {
|
|
463
|
+
apiUrl?: string;
|
|
464
|
+
apiMethod?: string;
|
|
465
|
+
keyParam?: string[];
|
|
466
|
+
}
|
|
457
467
|
[key: string]: any
|
|
458
468
|
}>
|
|
459
469
|
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -451,9 +451,19 @@ import type { DefineComponent, Plugin, App } from 'vue'
|
|
|
451
451
|
[key: string]: any
|
|
452
452
|
}>
|
|
453
453
|
|
|
454
|
-
|
|
454
|
+
export const DCodeTimelineWithIcons: DefineComponent<{
|
|
455
455
|
items?: any[]
|
|
456
|
-
|
|
456
|
+
apiUrl?: string
|
|
457
|
+
apiModule?: string
|
|
458
|
+
apiAction?: string
|
|
459
|
+
apiMethod?: string
|
|
460
|
+
apiParams?: Record<string, any>
|
|
461
|
+
title?: string
|
|
462
|
+
endpoint?: {
|
|
463
|
+
apiUrl?: string;
|
|
464
|
+
apiMethod?: string;
|
|
465
|
+
keyParam?: string[];
|
|
466
|
+
}
|
|
457
467
|
[key: string]: any
|
|
458
468
|
}>
|
|
459
469
|
|