@gemafajarramadhan/dynamic-ui 1.3.1 → 1.3.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/index.d.ts CHANGED
@@ -470,6 +470,19 @@ declare module '@gemafajarramadhan/dynamic-ui' {
470
470
  [key: string]: any
471
471
  }>
472
472
 
473
+ export const DCodeWorkflowDiagram: DefineComponent<{
474
+ auditId?: string | number
475
+ fetcher?: (params: { auditId: string | number }) => Promise<Blob>
476
+ apiModule?: string
477
+ apiAction?: string
478
+ apiUrl?: string
479
+ apiMethod?: string
480
+ apiParams?: Record<string, any>
481
+ title?: string
482
+ height?: string
483
+ [key: string]: any
484
+ }>
485
+
473
486
  export const DCodeWizard: DefineComponent<{
474
487
  steps?: any[]
475
488
  modelValue?: number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gemafajarramadhan/dynamic-ui",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
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
@@ -470,6 +470,19 @@ declare module '@gemafajarramadhan/dynamic-ui' {
470
470
  [key: string]: any
471
471
  }>
472
472
 
473
+ export const DCodeWorkflowDiagram: DefineComponent<{
474
+ auditId?: string | number
475
+ fetcher?: (params: { auditId: string | number }) => Promise<Blob>
476
+ apiModule?: string
477
+ apiAction?: string
478
+ apiUrl?: string
479
+ apiMethod?: string
480
+ apiParams?: Record<string, any>
481
+ title?: string
482
+ height?: string
483
+ [key: string]: any
484
+ }>
485
+
473
486
  export const DCodeWizard: DefineComponent<{
474
487
  steps?: any[]
475
488
  modelValue?: number