@ibiz-template/vue3-components 0.7.29-alpha.0 → 0.7.29
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-dIj05Kls.js +4 -0
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/{xlsx-util-jxc7ylyH.js → xlsx-util-bhQVAaEM.js} +1 -1
- package/es/common/fullscreen-toolbar/fullscreen-toolbar-alarm-clock/fullscreen-toolbar-alarm-clock.css +1 -0
- package/es/common/fullscreen-toolbar/fullscreen-toolbar-alarm-clock/fullscreen-toolbar-alarm-clock.d.ts +9 -0
- package/es/common/fullscreen-toolbar/fullscreen-toolbar-alarm-clock/fullscreen-toolbar-alarm-clock.mjs +87 -0
- package/es/common/fullscreen-toolbar/fullscreen-toolbar.css +1 -0
- package/es/common/fullscreen-toolbar/fullscreen-toolbar.d.ts +13 -0
- package/es/common/fullscreen-toolbar/fullscreen-toolbar.mjs +244 -0
- package/es/common/index.mjs +2 -0
- package/es/common/pagination/pagination.mjs +1 -1
- package/es/control/dashboard/custom-dashboard-container/custom-dashboard-container.d.ts +1 -0
- package/es/control/dashboard/dashboard-design/dashboard-design.mjs +6 -0
- package/es/control/form/form-detail/form-item/form-item-container/form-item-container.css +1 -1
- package/es/control/form/form-detail/form-item/form-item-container/form-item-container.mjs +3 -2
- package/es/control/grid/grid/grid.mjs +1 -1
- package/es/editor/span/span/span.mjs +18 -9
- package/es/editor/upload/ibiz-image-upload/ibiz-image-upload.d.ts +2 -1
- package/es/editor/upload/ibiz-image-upload/ibiz-image-upload.mjs +14 -5
- package/es/index.mjs +1 -0
- package/es/util/fullscreen/fullscreen-util.d.ts +25 -0
- package/es/util/fullscreen/fullscreen-util.mjs +43 -0
- package/es/util/index.d.ts +1 -0
- package/es/util/index.mjs +1 -0
- package/es/web-app/main.mjs +2 -0
- package/lib/common/fullscreen-toolbar/fullscreen-toolbar-alarm-clock/fullscreen-toolbar-alarm-clock.cjs +89 -0
- package/lib/common/fullscreen-toolbar/fullscreen-toolbar-alarm-clock/fullscreen-toolbar-alarm-clock.css +1 -0
- package/lib/common/fullscreen-toolbar/fullscreen-toolbar.cjs +246 -0
- package/lib/common/fullscreen-toolbar/fullscreen-toolbar.css +1 -0
- package/lib/common/index.cjs +2 -0
- package/lib/common/pagination/pagination.cjs +1 -1
- package/lib/control/dashboard/dashboard-design/dashboard-design.cjs +6 -0
- package/lib/control/form/form-detail/form-item/form-item-container/form-item-container.cjs +3 -2
- package/lib/control/form/form-detail/form-item/form-item-container/form-item-container.css +1 -1
- package/lib/control/grid/grid/grid.cjs +1 -1
- package/lib/editor/span/span/span.cjs +18 -9
- package/lib/editor/upload/ibiz-image-upload/ibiz-image-upload.cjs +14 -5
- package/lib/index.cjs +2 -0
- package/lib/util/fullscreen/fullscreen-util.cjs +45 -0
- package/lib/util/index.cjs +2 -0
- package/lib/web-app/main.cjs +2 -0
- package/package.json +5 -5
- package/dist/index-5QrDXG59.js +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiz-template/vue3-components",
|
|
3
|
-
"version": "0.7.29
|
|
3
|
+
"version": "0.7.29",
|
|
4
4
|
"description": "使用 rollup 编译 vue 组件或者 jsx",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"@floating-ui/dom": "^1.5.3",
|
|
31
31
|
"@ibiz-template-plugin/ai-chat": "^0.0.5",
|
|
32
32
|
"@ibiz-template-plugin/gantt": "0.1.8-alpha.6",
|
|
33
|
-
"@ibiz-template-plugin/bi-report": "0.0.
|
|
33
|
+
"@ibiz-template-plugin/bi-report": "0.0.9",
|
|
34
34
|
"@ibiz-template/core": "0.7.28",
|
|
35
35
|
"@ibiz-template/devtool": "0.0.1-dev.6",
|
|
36
|
-
"@ibiz-template/model-helper": "0.7.29
|
|
37
|
-
"@ibiz-template/runtime": "0.7.29
|
|
36
|
+
"@ibiz-template/model-helper": "0.7.29",
|
|
37
|
+
"@ibiz-template/runtime": "0.7.29",
|
|
38
38
|
"@ibiz-template/theme": "^0.7.0",
|
|
39
|
-
"@ibiz-template/vue3-util": "0.7.29
|
|
39
|
+
"@ibiz-template/vue3-util": "0.7.29",
|
|
40
40
|
"@ibiz-template/web-theme": "^1.1.18",
|
|
41
41
|
"@ibiz/model-core": "^0.1.43",
|
|
42
42
|
"@imengyu/vue3-context-menu": "^1.3.5",
|