@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/dynamic-ui.css +2 -2
- package/dist/dynamic-ui.es.js +6392 -6216
- package/dist/dynamic-ui.umd.js +22 -22
- package/dist/index.d.ts +13 -0
- package/package.json +1 -1
- package/src/index.d.ts +13 -0
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
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
|