@gemafajarramadhan/dynamic-ui 1.1.1 → 1.1.2
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/README.md +1 -1
- package/package.json +18 -7
- package/src/index.d.ts +1 -1
package/README.md
CHANGED
|
@@ -241,7 +241,7 @@ Selain Web Components, library ini juga menyediakan **27 komponen Vue** yang bis
|
|
|
241
241
|
| `DCodeTextarea` | Textarea dengan auto-resize dan validasi |
|
|
242
242
|
| `DCodeButton` | Tombol dengan variant, warna kustom, tooltip, dan animasi |
|
|
243
243
|
| `DCodeCard` | Kartu container dengan styling bawaan |
|
|
244
|
-
| `
|
|
244
|
+
| `DCodeCheckbox` | Checkbox dengan label |
|
|
245
245
|
| `DCodeSwitch` | Toggle switch |
|
|
246
246
|
| `DCodeRadioCustom` | Radio button dengan opsi kustom |
|
|
247
247
|
| `DCodeLabel` | Label untuk form |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gemafajarramadhan/dynamic-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
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",
|
|
@@ -51,26 +51,37 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
+
"@fontsource/geist-mono": "^5.2.7",
|
|
55
|
+
"@fontsource/geist-sans": "^5.2.5",
|
|
54
56
|
"@gemafajarramadhan/dynamic-ui": "^1.0.8",
|
|
57
|
+
"@jamescoyle/vue-icon": "^0.1.2",
|
|
58
|
+
"@mdi/js": "^7.4.47",
|
|
55
59
|
"@uppy/core": "^5.2.0",
|
|
56
60
|
"@uppy/dashboard": "^5.1.1",
|
|
57
61
|
"@uppy/image-editor": "^4.2.0",
|
|
58
62
|
"@vuepic/vue-datepicker": "^12.1.0",
|
|
59
63
|
"@vueuse/core": "^14.2.1",
|
|
64
|
+
"chart.js": "^4.5.1",
|
|
60
65
|
"class-variance-authority": "^0.7.1",
|
|
61
66
|
"clsx": "^2.1.1",
|
|
62
67
|
"lucide-vue-next": "^0.575.0",
|
|
63
68
|
"reka-ui": "^2.8.0",
|
|
64
69
|
"tailwind-merge": "^3.5.0",
|
|
65
|
-
"tailwindcss": "^
|
|
70
|
+
"tailwindcss-animate": "^1.0.7",
|
|
71
|
+
"vue-chartjs": "^5.3.3",
|
|
66
72
|
"vue-i18n": "^11.2.8",
|
|
67
73
|
"vue-router": "^5.0.3",
|
|
68
74
|
"vue3-lottie": "^3.3.1"
|
|
69
75
|
},
|
|
70
76
|
"devDependencies": {
|
|
71
|
-
"@
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
77
|
+
"@types/node": "^25.0.3",
|
|
78
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
79
|
+
"autoprefixer": "^10.4.19",
|
|
80
|
+
"postcss": "^8.4.38",
|
|
81
|
+
"tailwindcss": "^3.4.3",
|
|
82
|
+
"typescript": "^5.2.2",
|
|
83
|
+
"vite": "^6.0.0",
|
|
84
|
+
"vitest": "^4.0.16",
|
|
85
|
+
"vue-tsc": "^2.0.6"
|
|
75
86
|
}
|
|
76
|
-
}
|
|
87
|
+
}
|
package/src/index.d.ts
CHANGED