@windwalker-io/unicorn-next 0.1.4 → 0.1.6

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.
Files changed (129) hide show
  1. package/.editorconfig +18 -18
  2. package/.gulp.json +7 -7
  3. package/bin/release.mjs +47 -47
  4. package/dist/chunks/button-radio.js.map +1 -1
  5. package/dist/chunks/checkboxes-multi-select.js.map +1 -1
  6. package/dist/chunks/field-cascade-select.js.map +1 -1
  7. package/dist/chunks/field-file-drag.js.map +1 -1
  8. package/dist/chunks/field-flatpickr.js.map +1 -1
  9. package/dist/chunks/field-modal-select.js.map +1 -1
  10. package/dist/chunks/field-modal-tree.js +2 -2
  11. package/dist/chunks/field-modal-tree.js.map +1 -1
  12. package/dist/chunks/field-multi-uploader.js.map +1 -1
  13. package/dist/chunks/field-repeatable.js.map +1 -1
  14. package/dist/chunks/field-single-image-drag.js.map +1 -1
  15. package/dist/chunks/form.js.map +1 -1
  16. package/dist/chunks/grid.js.map +1 -1
  17. package/dist/chunks/http-client.js.map +1 -1
  18. package/dist/chunks/iframe-modal.js.map +1 -1
  19. package/dist/chunks/keep-tab.js.map +1 -1
  20. package/dist/chunks/legacy.js +2 -2
  21. package/dist/chunks/legacy.js.map +1 -1
  22. package/dist/chunks/list-dependent.js.map +1 -1
  23. package/dist/chunks/s3-multipart-uploader.js.map +1 -1
  24. package/dist/chunks/s3-uploader.js.map +1 -1
  25. package/dist/chunks/show-on.js.map +1 -1
  26. package/dist/chunks/tinymce.js +1 -1
  27. package/dist/chunks/tinymce.js.map +1 -1
  28. package/dist/chunks/ui-bootstrap5.js.map +1 -1
  29. package/dist/chunks/unicorn.js +22 -16
  30. package/dist/chunks/unicorn.js.map +1 -1
  31. package/dist/chunks/validation.js +1 -1
  32. package/dist/chunks/validation.js.map +1 -1
  33. package/dist/index.d.ts +39 -30
  34. package/dist/unicorn.js +11 -9
  35. package/fusionfile.mjs +155 -155
  36. package/package.json +103 -103
  37. package/scss/bootstrap/multi-level-menu.scss +121 -121
  38. package/scss/editor.scss +116 -116
  39. package/scss/field/file-drag.scss +102 -102
  40. package/scss/field/single-image-drag.scss +88 -88
  41. package/scss/field/vue-drag-uploader.scss +160 -160
  42. package/scss/switcher.scss +156 -156
  43. package/src/app.ts +128 -128
  44. package/src/bootstrap/button-radio.ts +208 -208
  45. package/src/bootstrap/keep-tab.ts +155 -155
  46. package/src/composable/index.ts +22 -21
  47. package/src/composable/useCheckboxesMultiSelect.ts +22 -22
  48. package/src/composable/useFieldCascadeSelect.ts +9 -9
  49. package/src/composable/useFieldFileDrag.ts +9 -9
  50. package/src/composable/useFieldFlatpickr.ts +3 -3
  51. package/src/composable/useFieldModalSelect.ts +6 -6
  52. package/src/composable/useFieldModalTree.ts +3 -3
  53. package/src/composable/useFieldMultiUploader.ts +9 -9
  54. package/src/composable/useFieldRepeatable.ts +9 -9
  55. package/src/composable/useFieldSingleImageDrag.ts +9 -9
  56. package/src/composable/useForm.ts +43 -43
  57. package/src/composable/useGrid.ts +57 -57
  58. package/src/composable/useHttp.ts +9 -9
  59. package/src/composable/useIframeModal.ts +10 -10
  60. package/src/composable/useListDependent.ts +26 -26
  61. package/src/composable/useQueue.ts +13 -13
  62. package/src/composable/useS3Uploader.ts +32 -32
  63. package/src/composable/useShowOn.ts +9 -9
  64. package/src/composable/useStack.ts +13 -13
  65. package/src/composable/useTinymce.ts +29 -29
  66. package/src/composable/useTomSelect.ts +72 -72
  67. package/src/composable/useUIBootstrap5.ts +48 -48
  68. package/src/composable/useUniDirective.ts +32 -32
  69. package/src/composable/useValidation.ts +50 -39
  70. package/src/data.ts +34 -34
  71. package/src/events.ts +82 -82
  72. package/src/legacy/legacy.ts +190 -190
  73. package/src/legacy/loader.ts +125 -125
  74. package/src/module/checkboxes-multi-select.ts +54 -54
  75. package/src/module/field-cascade-select.ts +292 -292
  76. package/src/module/field-file-drag.ts +295 -295
  77. package/src/module/field-flatpickr.ts +130 -130
  78. package/src/module/field-modal-select.ts +179 -179
  79. package/src/module/field-modal-tree.ts +31 -31
  80. package/src/module/field-multi-uploader.ts +368 -368
  81. package/src/module/field-repeatable.ts +202 -202
  82. package/src/module/field-single-image-drag.ts +475 -475
  83. package/src/module/form.ts +223 -223
  84. package/src/module/grid.ts +465 -465
  85. package/src/module/http-client.ts +248 -248
  86. package/src/module/iframe-modal.ts +170 -170
  87. package/src/module/list-dependent.ts +321 -321
  88. package/src/module/s3-multipart-uploader.ts +300 -300
  89. package/src/module/s3-uploader.ts +234 -234
  90. package/src/module/show-on.ts +175 -175
  91. package/src/module/tinymce.ts +276 -276
  92. package/src/module/ui-bootstrap5.ts +116 -116
  93. package/src/module/validation.ts +1046 -1026
  94. package/src/plugin/index.ts +1 -1
  95. package/src/plugin/php-adapter.ts +72 -72
  96. package/src/polyfill/form-request-submit.ts +31 -31
  97. package/src/polyfill/index.ts +9 -9
  98. package/src/service/animate.ts +58 -58
  99. package/src/service/crypto.ts +27 -27
  100. package/src/service/dom-watcher.ts +62 -62
  101. package/src/service/dom.ts +265 -265
  102. package/src/service/helper.ts +48 -48
  103. package/src/service/index.ts +10 -10
  104. package/src/service/lang.ts +122 -122
  105. package/src/service/loader.ts +152 -152
  106. package/src/service/router.ts +118 -118
  107. package/src/service/ui.ts +525 -525
  108. package/src/service/uri.ts +106 -106
  109. package/src/types/base.ts +9 -9
  110. package/src/types/index.ts +4 -4
  111. package/src/types/modal-tree.ts +12 -12
  112. package/src/types/plugin.ts +6 -6
  113. package/src/types/shims.d.ts +18 -18
  114. package/src/types/ui.ts +6 -6
  115. package/src/unicorn.ts +79 -79
  116. package/src/utilities/arr.ts +25 -25
  117. package/src/utilities/base.ts +9 -9
  118. package/src/utilities/data.ts +48 -48
  119. package/src/utilities/index.ts +5 -5
  120. package/src/utilities/tree.ts +20 -20
  121. package/src/vue/components/ModalTree/ModalTreeApp.vue +175 -175
  122. package/src/vue/components/ModalTree/TreeItem.vue +262 -262
  123. package/src/vue/components/ModalTree/TreeModal.vue +225 -225
  124. package/tests/test.js +4 -4
  125. package/tsconfig.js.json +25 -25
  126. package/tsconfig.json +17 -17
  127. package/vite.assets.config.ts +61 -61
  128. package/vite.config.test.ts +36 -36
  129. package/vite.config.ts +112 -112
package/fusionfile.mjs CHANGED
@@ -1,155 +1,155 @@
1
- /**
2
- * Part of Windwalker Fusion project.
3
- *
4
- * @copyright Copyright (C) 2021 LYRASOFT.
5
- * @license MIT
6
- */
7
-
8
- import fusion, {
9
- babel,
10
- webpack,
11
- rollup,
12
- sass,
13
- parallel,
14
- series,
15
- module,
16
- wait,
17
- ts,
18
- webpackBundle
19
- } from '@windwalker-io/fusion';
20
- import { babelBasicOptions } from '@windwalker-io/fusion/src/utilities/babel.js';
21
- import dtsBundle from 'bundle-declarations-webpack-plugin';
22
- import * as path from 'path';
23
- import * as moduleTasks from './src/fusion/service.mjs';
24
- export * from './src/fusion/service.mjs';
25
-
26
- export async function js() {
27
- // Watch start
28
- fusion.watch(['src/js/**/*.ts', 'src/systemjs/**/*.ts']);
29
- // Watch end
30
-
31
- // Compile Start
32
- return wait(
33
- ts('src/js/**/*.ts', 'dist/', { }),
34
- ts('src/systemjs/**/*.ts', 'dist/', { tsconfig: 'tsconfig.js.json' })
35
- );
36
- // Compile end
37
- }
38
-
39
- export const modules = parallel(
40
- ...Object.values(moduleTasks)
41
- );
42
-
43
- export async function css() {
44
- // Watch start
45
- fusion.watch('scss/**/*.scss');
46
- // Watch end
47
-
48
- // Compile Start
49
- return wait(
50
- sass('scss/switcher.scss', 'dist/', { minify: 'separate_file' }),
51
- sass('scss/editor.scss', 'dist/', { minify: 'separate_file' }),
52
- sass('scss/bootstrap/multi-level-menu.scss', 'dist/bootstrap/', { minify: 'separate_file' }),
53
- sass('scss/bootstrap/bs4-adapter.scss', 'dist/bootstrap/', { minify: 'separate_file' }),
54
- sass('scss/field/single-image-drag.scss', 'dist/field/', { minify: 'separate_file' }),
55
- );
56
- // Compile end
57
- }
58
-
59
- export async function vue() {
60
- // Watch start
61
- fusion.watch(['scss/**/*.scss', 'src/vue/**/*']);
62
- // Watch end
63
-
64
- // Compile Start
65
- return wait(
66
- fusion.vue('src/vue/entries/**/*.js', 'dist/vue/', {
67
- excludeVue: true
68
- })
69
- );
70
- // Compile end
71
- }
72
-
73
- // export async function wc() {
74
- // // Watch start
75
- // fusion.watch([
76
- // 'asset/ws/**/*.js'
77
- // ]);
78
- // // Watch end
79
- //
80
- // // Compile Start
81
- // webpack('src/wc/**/*.js', 'dist/ui/', {
82
- // // override() {
83
- // // return {
84
- // // mode: process.env.NODE_ENV || 'development',
85
- // // output: {
86
- // // filename: '[name].js',
87
- // // sourceMapFilename: '[name].js.map'
88
- // // },
89
- // // stats: {
90
- // // all: false,
91
- // // errors: true,
92
- // // warnings: true,
93
- // // version: false,
94
- // // },
95
- // // module: {
96
- // // rules: [
97
- // // {
98
- // // test: /\.m?js$/,
99
- // // // Fis LitElement issue, @see https://github.com/Polymer/lit-element/issues/54#issuecomment-439824447
100
- // // exclude: /node_modules\/(?!(lit-html|@polymer)\/).*/,
101
- // // use: [{
102
- // // loader: 'babel-loader',
103
- // // options: babelBasicOptions().get()
104
- // // }, 'webpack-comment-remover-loader']
105
- // // }
106
- // // ]
107
- // // },
108
- // // plugins: []
109
- // // };
110
- // // }
111
- // });
112
- // // Compile end
113
- // }
114
-
115
- export default parallel(
116
- js,
117
- css,
118
- modules,
119
- vue
120
- );
121
-
122
- /*
123
- * APIs
124
- *
125
- * Compile entry:
126
- * fusion.js(source, dest, options = {})
127
- * fusion.babel(source, dest, options = {})
128
- * fusion.module(source, dest, options = {})
129
- * fusion.ts(source, dest, options = {})
130
- * fusion.typeScript(source, dest, options = {})
131
- * fusion.css(source, dest, options = {})
132
- * fusion.sass(source, dest, options = {})
133
- * fusion.copy(source, dest, options = {})
134
- *
135
- * Live Reload:
136
- * fusion.livereload(source, dest, options = {})
137
- * fusion.reload(file)
138
- *
139
- * Gulp proxy:
140
- * fusion.src(source, options)
141
- * fusion.dest(path, options)
142
- * fusion.watch(glob, opt, fn)
143
- * fusion.symlink(directory, options = {})
144
- * fusion.lastRun(task, precision)
145
- * fusion.tree(options = {})
146
- * fusion.series(...tasks)
147
- * fusion.parallel(...tasks)
148
- *
149
- * Stream Helper:
150
- * fusion.through(handler) // Same as through2.obj()
151
- *
152
- * Config:
153
- * fusion.disableNotification()
154
- * fusion.enableNotification()
155
- */
1
+ /**
2
+ * Part of Windwalker Fusion project.
3
+ *
4
+ * @copyright Copyright (C) 2021 LYRASOFT.
5
+ * @license MIT
6
+ */
7
+
8
+ import fusion, {
9
+ babel,
10
+ webpack,
11
+ rollup,
12
+ sass,
13
+ parallel,
14
+ series,
15
+ module,
16
+ wait,
17
+ ts,
18
+ webpackBundle
19
+ } from '@windwalker-io/fusion';
20
+ import { babelBasicOptions } from '@windwalker-io/fusion/src/utilities/babel.js';
21
+ import dtsBundle from 'bundle-declarations-webpack-plugin';
22
+ import * as path from 'path';
23
+ import * as moduleTasks from './src/fusion/service.mjs';
24
+ export * from './src/fusion/service.mjs';
25
+
26
+ export async function js() {
27
+ // Watch start
28
+ fusion.watch(['src/js/**/*.ts', 'src/systemjs/**/*.ts']);
29
+ // Watch end
30
+
31
+ // Compile Start
32
+ return wait(
33
+ ts('src/js/**/*.ts', 'dist/', { }),
34
+ ts('src/systemjs/**/*.ts', 'dist/', { tsconfig: 'tsconfig.js.json' })
35
+ );
36
+ // Compile end
37
+ }
38
+
39
+ export const modules = parallel(
40
+ ...Object.values(moduleTasks)
41
+ );
42
+
43
+ export async function css() {
44
+ // Watch start
45
+ fusion.watch('scss/**/*.scss');
46
+ // Watch end
47
+
48
+ // Compile Start
49
+ return wait(
50
+ sass('scss/switcher.scss', 'dist/', { minify: 'separate_file' }),
51
+ sass('scss/editor.scss', 'dist/', { minify: 'separate_file' }),
52
+ sass('scss/bootstrap/multi-level-menu.scss', 'dist/bootstrap/', { minify: 'separate_file' }),
53
+ sass('scss/bootstrap/bs4-adapter.scss', 'dist/bootstrap/', { minify: 'separate_file' }),
54
+ sass('scss/field/single-image-drag.scss', 'dist/field/', { minify: 'separate_file' }),
55
+ );
56
+ // Compile end
57
+ }
58
+
59
+ export async function vue() {
60
+ // Watch start
61
+ fusion.watch(['scss/**/*.scss', 'src/vue/**/*']);
62
+ // Watch end
63
+
64
+ // Compile Start
65
+ return wait(
66
+ fusion.vue('src/vue/entries/**/*.js', 'dist/vue/', {
67
+ excludeVue: true
68
+ })
69
+ );
70
+ // Compile end
71
+ }
72
+
73
+ // export async function wc() {
74
+ // // Watch start
75
+ // fusion.watch([
76
+ // 'asset/ws/**/*.js'
77
+ // ]);
78
+ // // Watch end
79
+ //
80
+ // // Compile Start
81
+ // webpack('src/wc/**/*.js', 'dist/ui/', {
82
+ // // override() {
83
+ // // return {
84
+ // // mode: process.env.NODE_ENV || 'development',
85
+ // // output: {
86
+ // // filename: '[name].js',
87
+ // // sourceMapFilename: '[name].js.map'
88
+ // // },
89
+ // // stats: {
90
+ // // all: false,
91
+ // // errors: true,
92
+ // // warnings: true,
93
+ // // version: false,
94
+ // // },
95
+ // // module: {
96
+ // // rules: [
97
+ // // {
98
+ // // test: /\.m?js$/,
99
+ // // // Fis LitElement issue, @see https://github.com/Polymer/lit-element/issues/54#issuecomment-439824447
100
+ // // exclude: /node_modules\/(?!(lit-html|@polymer)\/).*/,
101
+ // // use: [{
102
+ // // loader: 'babel-loader',
103
+ // // options: babelBasicOptions().get()
104
+ // // }, 'webpack-comment-remover-loader']
105
+ // // }
106
+ // // ]
107
+ // // },
108
+ // // plugins: []
109
+ // // };
110
+ // // }
111
+ // });
112
+ // // Compile end
113
+ // }
114
+
115
+ export default parallel(
116
+ js,
117
+ css,
118
+ modules,
119
+ vue
120
+ );
121
+
122
+ /*
123
+ * APIs
124
+ *
125
+ * Compile entry:
126
+ * fusion.js(source, dest, options = {})
127
+ * fusion.babel(source, dest, options = {})
128
+ * fusion.module(source, dest, options = {})
129
+ * fusion.ts(source, dest, options = {})
130
+ * fusion.typeScript(source, dest, options = {})
131
+ * fusion.css(source, dest, options = {})
132
+ * fusion.sass(source, dest, options = {})
133
+ * fusion.copy(source, dest, options = {})
134
+ *
135
+ * Live Reload:
136
+ * fusion.livereload(source, dest, options = {})
137
+ * fusion.reload(file)
138
+ *
139
+ * Gulp proxy:
140
+ * fusion.src(source, options)
141
+ * fusion.dest(path, options)
142
+ * fusion.watch(glob, opt, fn)
143
+ * fusion.symlink(directory, options = {})
144
+ * fusion.lastRun(task, precision)
145
+ * fusion.tree(options = {})
146
+ * fusion.series(...tasks)
147
+ * fusion.parallel(...tasks)
148
+ *
149
+ * Stream Helper:
150
+ * fusion.through(handler) // Same as through2.obj()
151
+ *
152
+ * Config:
153
+ * fusion.disableNotification()
154
+ * fusion.enableNotification()
155
+ */
package/package.json CHANGED
@@ -1,103 +1,103 @@
1
- {
2
- "name": "@windwalker-io/unicorn-next",
3
- "version": "0.1.4",
4
- "description": "Unicorn framework js library",
5
- "type": "module",
6
- "typings": "dist/index.d.ts",
7
- "main": "dist/unicorn.js",
8
- "scripts": {
9
- "dev": "vite build --watch --mode development",
10
- "build": "vite build",
11
- "preview": "vite preview",
12
- "dev:assets": "vite build --watch --mode development --config vite.assets.config.ts",
13
- "build:assets": "vite build --config vite.assets.config.ts",
14
- "build:prod": "yarn build && yarn build:assets"
15
- },
16
- "sideEffects": false,
17
- "repository": {
18
- "type": "git",
19
- "url": "git+https://github.com/ventoviro/unicorn.git"
20
- },
21
- "keywords": [
22
- "windwalker",
23
- "unicorn",
24
- "windwalker-libs"
25
- ],
26
- "author": "Simon Asika",
27
- "license": "MIT",
28
- "bugs": {
29
- "url": "https://github.com/ventoviro/unicorn/issues"
30
- },
31
- "homepage": "https://github.com/ventoviro/unicorn#readme",
32
- "windwalker": {
33
- "vendors": [
34
- "@fortawesome/fontawesome-free",
35
- "@windwalker-io/unicorn",
36
- "@windwalker-io/unicorn-next",
37
- "@webcomponents/webcomponentsjs",
38
- "@ryangjchandler/spruce",
39
- "@asika32764/vue-animate",
40
- "alpinejs",
41
- "awesome-bootstrap-checkbox",
42
- "axios",
43
- "bootstrap",
44
- "cropperjs",
45
- "flatpickr",
46
- "regenerator-runtime",
47
- "systemjs",
48
- "sortablejs",
49
- "tinymce",
50
- "tinymce-i18n",
51
- "vue",
52
- "sortablejs",
53
- "spectrum-vanilla",
54
- "vuedraggable",
55
- "vue2-animate",
56
- "choices.js",
57
- "tom-select",
58
- "mark.js",
59
- "core-js-bundle",
60
- "jquery",
61
- "current-script-polyfill"
62
- ]
63
- },
64
- "devDependencies": {
65
- "@lyrasoft/ts-toolkit": "^0.2.0",
66
- "@rubenbimmel/alpine-class-component": "^0.0.4",
67
- "@types/alpinejs": "^3",
68
- "@types/bootstrap": "^5",
69
- "@types/lodash-es": "^4.17.12",
70
- "@types/punycode": "^2",
71
- "@types/sortablejs": "^1",
72
- "@types/sprintf-js": "^1",
73
- "@vitejs/plugin-vue": "^6.0.1",
74
- "bootstrap": "^5.3.8",
75
- "lodash-es": "^4.17.21",
76
- "punycode": "^2.3.1",
77
- "qss": "^3.0.0",
78
- "rimraf": "^6.0.1",
79
- "rollup-plugin-tree-shakeable": "^2.0.0",
80
- "sprintf-js": "^1.1.3",
81
- "ts-mixer": "^6.0.4",
82
- "unplugin-dts": "^1.0.0-beta.6",
83
- "url-template": "^3.1.1",
84
- "vite": "^7.1.7",
85
- "vite-plugin-dts": "^4.5.4",
86
- "vue3-slide-up-down": "^2.1.0"
87
- },
88
- "dependencies": {
89
- "alpinejs": "^3.15.0",
90
- "axios": "^1.12.2",
91
- "bigint-toolkit": "^0.2.0",
92
- "cropperjs": "^1.5.11",
93
- "flatpickr": "^4.6.13",
94
- "sortablejs": "^1.15.6",
95
- "spectrum-vanilla": "^1.1.1",
96
- "tinymce": "^6.0||^7.0||^8.0",
97
- "tom-select": "^2.4.3",
98
- "vue": "^3.5.22",
99
- "vue-draggable-plus": "^0.6.0",
100
- "vue-multi-uploader": "^0.1.9",
101
- "web-directive": "^0.1.1"
102
- }
103
- }
1
+ {
2
+ "name": "@windwalker-io/unicorn-next",
3
+ "version": "0.1.6",
4
+ "description": "Unicorn framework js library",
5
+ "type": "module",
6
+ "typings": "dist/index.d.ts",
7
+ "main": "dist/unicorn.js",
8
+ "scripts": {
9
+ "dev": "vite build --watch --mode development",
10
+ "build": "vite build",
11
+ "preview": "vite preview",
12
+ "dev:assets": "vite build --watch --mode development --config vite.assets.config.ts",
13
+ "build:assets": "vite build --config vite.assets.config.ts",
14
+ "build:prod": "yarn build && yarn build:assets"
15
+ },
16
+ "sideEffects": false,
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/ventoviro/unicorn.git"
20
+ },
21
+ "keywords": [
22
+ "windwalker",
23
+ "unicorn",
24
+ "windwalker-libs"
25
+ ],
26
+ "author": "Simon Asika",
27
+ "license": "MIT",
28
+ "bugs": {
29
+ "url": "https://github.com/ventoviro/unicorn/issues"
30
+ },
31
+ "homepage": "https://github.com/ventoviro/unicorn#readme",
32
+ "windwalker": {
33
+ "vendors": [
34
+ "@fortawesome/fontawesome-free",
35
+ "@windwalker-io/unicorn",
36
+ "@windwalker-io/unicorn-next",
37
+ "@webcomponents/webcomponentsjs",
38
+ "@ryangjchandler/spruce",
39
+ "@asika32764/vue-animate",
40
+ "alpinejs",
41
+ "awesome-bootstrap-checkbox",
42
+ "axios",
43
+ "bootstrap",
44
+ "cropperjs",
45
+ "flatpickr",
46
+ "regenerator-runtime",
47
+ "systemjs",
48
+ "sortablejs",
49
+ "tinymce",
50
+ "tinymce-i18n",
51
+ "vue",
52
+ "sortablejs",
53
+ "spectrum-vanilla",
54
+ "vuedraggable",
55
+ "vue2-animate",
56
+ "choices.js",
57
+ "tom-select",
58
+ "mark.js",
59
+ "core-js-bundle",
60
+ "jquery",
61
+ "current-script-polyfill"
62
+ ]
63
+ },
64
+ "devDependencies": {
65
+ "@lyrasoft/ts-toolkit": "^0.2.0",
66
+ "@rubenbimmel/alpine-class-component": "^0.0.4",
67
+ "@types/alpinejs": "^3",
68
+ "@types/bootstrap": "^5",
69
+ "@types/lodash-es": "^4.17.12",
70
+ "@types/punycode": "^2",
71
+ "@types/sortablejs": "^1",
72
+ "@types/sprintf-js": "^1",
73
+ "@vitejs/plugin-vue": "^6.0.1",
74
+ "bootstrap": "^5.3.8",
75
+ "lodash-es": "^4.17.21",
76
+ "punycode": "^2.3.1",
77
+ "qss": "^3.0.0",
78
+ "rimraf": "^6.0.1",
79
+ "rollup-plugin-tree-shakeable": "^2.0.0",
80
+ "sprintf-js": "^1.1.3",
81
+ "ts-mixer": "^6.0.4",
82
+ "unplugin-dts": "^1.0.0-beta.6",
83
+ "url-template": "^3.1.1",
84
+ "vite": "^7.1.7",
85
+ "vite-plugin-dts": "^4.5.4",
86
+ "vue3-slide-up-down": "^2.1.0"
87
+ },
88
+ "dependencies": {
89
+ "alpinejs": "^3.15.0",
90
+ "axios": "^1.12.2",
91
+ "bigint-toolkit": "^0.2.0",
92
+ "cropperjs": "^1.5.11",
93
+ "flatpickr": "^4.6.13",
94
+ "sortablejs": "^1.15.6",
95
+ "spectrum-vanilla": "^1.1.1",
96
+ "tinymce": "^6.0||^7.0||^8.0",
97
+ "tom-select": "^2.4.3",
98
+ "vue": "^3.5.22",
99
+ "vue-draggable-plus": "^0.6.0",
100
+ "vue-multi-uploader": "^0.1.9",
101
+ "web-directive": "^0.1.1"
102
+ }
103
+ }