@gemafajarramadhan/dynamic-ui 1.2.43 → 1.2.44

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
@@ -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'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gemafajarramadhan/dynamic-ui",
3
- "version": "1.2.43",
3
+ "version": "1.2.44",
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'