@gemafajarramadhan/dynamic-ui 1.2.43 → 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 +9724 -8854
- package/dist/dynamic-ui.umd.js +14 -14
- package/dist/index.d.ts +40 -1
- package/package.json +3 -1
- package/src/index.d.ts +40 -1
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,18 @@ declare module '@gemafajarramadhan/dynamic-ui' {
|
|
|
36
36
|
[key: string]: any
|
|
37
37
|
}>
|
|
38
38
|
|
|
39
|
+
export const DCodeBeforeAfter: DefineComponent<{
|
|
40
|
+
dataBefore: any
|
|
41
|
+
dataAfter: any
|
|
42
|
+
[key: string]: any
|
|
43
|
+
}>
|
|
44
|
+
|
|
45
|
+
export const DCodeListLabels: DefineComponent<{
|
|
46
|
+
dataBefore?: any
|
|
47
|
+
dataAfter?: any
|
|
48
|
+
[key: string]: any
|
|
49
|
+
}>
|
|
50
|
+
|
|
39
51
|
export const DCodeButton: DefineComponent<{
|
|
40
52
|
text?: string
|
|
41
53
|
variant?: 'default' | 'secondary' | 'destructive' | 'outline' | 'ghost' | 'link' | 'tonal' | 'elevated'
|
|
@@ -409,10 +421,37 @@ declare module '@gemafajarramadhan/dynamic-ui' {
|
|
|
409
421
|
[key: string]: any
|
|
410
422
|
}>
|
|
411
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
|
+
|
|
412
451
|
export const MicroDynamicForm: any
|
|
413
452
|
export const MicroDynamicDatatable: any
|
|
414
453
|
export const MicroDataTable: any
|
|
415
|
-
|
|
454
|
+
|
|
416
455
|
export const AutoLayoutForm: any
|
|
417
456
|
export const AutoLayoutDatatable: any
|
|
418
457
|
export const DataTable: any
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gemafajarramadhan/dynamic-ui",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.45",
|
|
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",
|
|
@@ -92,6 +92,7 @@
|
|
|
92
92
|
"chart.js": "^4.5.1",
|
|
93
93
|
"class-variance-authority": "^0.7.1",
|
|
94
94
|
"clsx": "^2.1.1",
|
|
95
|
+
"json-logic-js": "^2.0.5",
|
|
95
96
|
"lucide-vue-next": "^0.575.0",
|
|
96
97
|
"reka-ui": "^2.8.0",
|
|
97
98
|
"tailwind-merge": "^3.5.0",
|
|
@@ -103,6 +104,7 @@
|
|
|
103
104
|
"vue3-toastify": "^0.2.9"
|
|
104
105
|
},
|
|
105
106
|
"devDependencies": {
|
|
107
|
+
"@types/json-logic-js": "^2.0.8",
|
|
106
108
|
"@types/node": "^25.0.3",
|
|
107
109
|
"@vitejs/plugin-vue": "^5.0.4",
|
|
108
110
|
"autoprefixer": "^10.4.19",
|
package/src/index.d.ts
CHANGED
|
@@ -36,6 +36,18 @@ declare module '@gemafajarramadhan/dynamic-ui' {
|
|
|
36
36
|
[key: string]: any
|
|
37
37
|
}>
|
|
38
38
|
|
|
39
|
+
export const DCodeBeforeAfter: DefineComponent<{
|
|
40
|
+
dataBefore: any
|
|
41
|
+
dataAfter: any
|
|
42
|
+
[key: string]: any
|
|
43
|
+
}>
|
|
44
|
+
|
|
45
|
+
export const DCodeListLabels: DefineComponent<{
|
|
46
|
+
dataBefore?: any
|
|
47
|
+
dataAfter?: any
|
|
48
|
+
[key: string]: any
|
|
49
|
+
}>
|
|
50
|
+
|
|
39
51
|
export const DCodeButton: DefineComponent<{
|
|
40
52
|
text?: string
|
|
41
53
|
variant?: 'default' | 'secondary' | 'destructive' | 'outline' | 'ghost' | 'link' | 'tonal' | 'elevated'
|
|
@@ -409,10 +421,37 @@ declare module '@gemafajarramadhan/dynamic-ui' {
|
|
|
409
421
|
[key: string]: any
|
|
410
422
|
}>
|
|
411
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
|
+
|
|
412
451
|
export const MicroDynamicForm: any
|
|
413
452
|
export const MicroDynamicDatatable: any
|
|
414
453
|
export const MicroDataTable: any
|
|
415
|
-
|
|
454
|
+
|
|
416
455
|
export const AutoLayoutForm: any
|
|
417
456
|
export const AutoLayoutDatatable: any
|
|
418
457
|
export const DataTable: any
|