@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/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
- export const DCodeTimelineWithIcons: DefineComponent<{
454
+ export const DCodeTimelineWithIcons: DefineComponent<{
455
455
  items?: any[]
456
- visible?: boolean
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gemafajarramadhan/dynamic-ui",
3
- "version": "1.3.10",
3
+ "version": "1.3.12",
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
@@ -451,9 +451,19 @@ import type { DefineComponent, Plugin, App } from 'vue'
451
451
  [key: string]: any
452
452
  }>
453
453
 
454
- export const DCodeTimelineWithIcons: DefineComponent<{
454
+ export const DCodeTimelineWithIcons: DefineComponent<{
455
455
  items?: any[]
456
- visible?: boolean
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