@gemafajarramadhan/dynamic-ui 1.2.44 → 1.2.45
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 +8868 -8751
- package/dist/dynamic-ui.umd.js +9 -9
- package/dist/index.d.ts +28 -1
- package/package.json +1 -1
- package/src/index.d.ts +28 -1
package/dist/index.d.ts
CHANGED
|
@@ -421,10 +421,37 @@ declare module '@gemafajarramadhan/dynamic-ui' {
|
|
|
421
421
|
[key: string]: any
|
|
422
422
|
}>
|
|
423
423
|
|
|
424
|
+
export const DCodeDynamicUploadList: DefineComponent<{
|
|
425
|
+
modelValue?: any[]
|
|
426
|
+
label?: string
|
|
427
|
+
labelID?: string
|
|
428
|
+
labelEN?: string
|
|
429
|
+
endpoint?: {
|
|
430
|
+
apiModule?: string
|
|
431
|
+
apiAction?: string
|
|
432
|
+
apiUrl?: string
|
|
433
|
+
apiMethod?: string
|
|
434
|
+
}
|
|
435
|
+
endpointReference?: {
|
|
436
|
+
apiModule?: string
|
|
437
|
+
apiAction?: string
|
|
438
|
+
apiUrl?: string
|
|
439
|
+
apiMethod?: string
|
|
440
|
+
}
|
|
441
|
+
itemTitle?: string
|
|
442
|
+
itemValue?: string
|
|
443
|
+
baseUrl?: string
|
|
444
|
+
disabled?: boolean
|
|
445
|
+
visible?: boolean
|
|
446
|
+
skeleton?: boolean
|
|
447
|
+
error?: string | null
|
|
448
|
+
[key: string]: any
|
|
449
|
+
}>
|
|
450
|
+
|
|
424
451
|
export const MicroDynamicForm: any
|
|
425
452
|
export const MicroDynamicDatatable: any
|
|
426
453
|
export const MicroDataTable: any
|
|
427
|
-
|
|
454
|
+
|
|
428
455
|
export const AutoLayoutForm: any
|
|
429
456
|
export const AutoLayoutDatatable: any
|
|
430
457
|
export const DataTable: any
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -421,10 +421,37 @@ declare module '@gemafajarramadhan/dynamic-ui' {
|
|
|
421
421
|
[key: string]: any
|
|
422
422
|
}>
|
|
423
423
|
|
|
424
|
+
export const DCodeDynamicUploadList: DefineComponent<{
|
|
425
|
+
modelValue?: any[]
|
|
426
|
+
label?: string
|
|
427
|
+
labelID?: string
|
|
428
|
+
labelEN?: string
|
|
429
|
+
endpoint?: {
|
|
430
|
+
apiModule?: string
|
|
431
|
+
apiAction?: string
|
|
432
|
+
apiUrl?: string
|
|
433
|
+
apiMethod?: string
|
|
434
|
+
}
|
|
435
|
+
endpointReference?: {
|
|
436
|
+
apiModule?: string
|
|
437
|
+
apiAction?: string
|
|
438
|
+
apiUrl?: string
|
|
439
|
+
apiMethod?: string
|
|
440
|
+
}
|
|
441
|
+
itemTitle?: string
|
|
442
|
+
itemValue?: string
|
|
443
|
+
baseUrl?: string
|
|
444
|
+
disabled?: boolean
|
|
445
|
+
visible?: boolean
|
|
446
|
+
skeleton?: boolean
|
|
447
|
+
error?: string | null
|
|
448
|
+
[key: string]: any
|
|
449
|
+
}>
|
|
450
|
+
|
|
424
451
|
export const MicroDynamicForm: any
|
|
425
452
|
export const MicroDynamicDatatable: any
|
|
426
453
|
export const MicroDataTable: any
|
|
427
|
-
|
|
454
|
+
|
|
428
455
|
export const AutoLayoutForm: any
|
|
429
456
|
export const AutoLayoutDatatable: any
|
|
430
457
|
export const DataTable: any
|