@ibiz-template/vue3-components 0.7.26-alpha.0 → 0.7.26-alpha.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.
Files changed (117) hide show
  1. package/dist/{index-_h-elF6t.js → index-8tGeBxpc.js} +1 -1
  2. package/dist/{index--XeT2CTZ.js → index-CDgQJyai.js} +1 -1
  3. package/dist/index-o58Mv9D4.js +4 -0
  4. package/dist/index.min.css +1 -1
  5. package/dist/index.system.min.js +1 -1
  6. package/dist/{xlsx-util-W01Wk5pi.js → xlsx-util-Ux1_tuw5.js} +1 -1
  7. package/es/_virtual/localeData.mjs +3 -0
  8. package/es/control/calendar/calendar.css +1 -1
  9. package/es/control/calendar/calendar.d.ts +2 -3
  10. package/es/control/calendar/calendar.mjs +104 -173
  11. package/es/control/calendar/components/calendar-daily/calendar-daily.css +1 -0
  12. package/es/control/calendar/components/calendar-daily/calendar-daily.d.ts +18 -0
  13. package/es/control/calendar/components/calendar-daily/calendar-daily.mjs +175 -0
  14. package/es/control/calendar/components/calendar-daily/index.d.ts +18 -0
  15. package/es/control/calendar/components/calendar-daily/index.mjs +9 -0
  16. package/es/control/calendar/components/calendar-daily/use-calendar-daily.d.ts +154 -0
  17. package/es/control/calendar/components/calendar-daily/use-calendar-daily.mjs +196 -0
  18. package/es/control/calendar/components/calendar-month/calendar-month.css +1 -0
  19. package/es/control/calendar/components/calendar-month/calendar-month.d.ts +18 -0
  20. package/es/control/calendar/components/calendar-month/calendar-month.mjs +242 -0
  21. package/es/control/calendar/components/calendar-month/index.d.ts +18 -0
  22. package/es/control/calendar/components/calendar-month/index.mjs +9 -0
  23. package/es/control/calendar/components/calendar-month/use-calendar-month.d.ts +3 -0
  24. package/es/control/calendar/components/calendar-month/use-calendar-month.mjs +384 -0
  25. package/es/control/calendar/components/calendar-week/calendar-week.css +1 -0
  26. package/es/control/calendar/components/calendar-week/calendar-week.d.ts +18 -0
  27. package/es/control/calendar/components/calendar-week/calendar-week.mjs +241 -0
  28. package/es/control/calendar/components/calendar-week/index.d.ts +18 -0
  29. package/es/control/calendar/components/calendar-week/index.mjs +9 -0
  30. package/es/control/calendar/components/calendar-week/use-calendar-week.d.ts +159 -0
  31. package/es/control/calendar/components/calendar-week/use-calendar-week.mjs +399 -0
  32. package/es/control/calendar/components/constant/event.d.ts +5 -0
  33. package/es/control/calendar/components/constant/event.mjs +8 -0
  34. package/es/control/calendar/components/constant/index.d.ts +1 -0
  35. package/es/control/calendar/components/constant/index.mjs +3 -0
  36. package/es/control/calendar/components/custom-calendar/custom-calendar.css +1 -0
  37. package/es/control/calendar/components/custom-calendar/custom-calendar.d.ts +24 -0
  38. package/es/control/calendar/components/custom-calendar/custom-calendar.mjs +283 -0
  39. package/es/control/calendar/components/custom-calendar/index.d.ts +24 -0
  40. package/es/control/calendar/components/custom-calendar/index.mjs +12 -0
  41. package/es/control/calendar/components/custom-calendar/use-custom-calendar.d.ts +3 -0
  42. package/es/control/calendar/components/custom-calendar/use-custom-calendar.mjs +264 -0
  43. package/es/control/calendar/components/interface/calendar-daily.d.ts +12 -0
  44. package/es/control/calendar/components/interface/calendar-daily.mjs +34 -0
  45. package/es/control/calendar/components/interface/calendar-month.d.ts +20 -0
  46. package/es/control/calendar/components/interface/calendar-month.mjs +43 -0
  47. package/es/control/calendar/components/interface/calendar-week.d.ts +12 -0
  48. package/es/control/calendar/components/interface/calendar-week.mjs +34 -0
  49. package/es/control/calendar/components/interface/common.d.ts +116 -0
  50. package/es/control/calendar/components/interface/common.mjs +1 -0
  51. package/es/control/calendar/components/interface/custom-calendar.d.ts +14 -0
  52. package/es/control/calendar/components/interface/custom-calendar.mjs +67 -0
  53. package/es/control/calendar/components/interface/index.d.ts +5 -0
  54. package/es/control/calendar/components/interface/index.mjs +7 -0
  55. package/es/control/calendar/components/util/index.d.ts +1 -0
  56. package/es/control/calendar/components/util/index.mjs +4 -0
  57. package/es/control/calendar/components/util/util.d.ts +89 -0
  58. package/es/control/calendar/components/util/util.mjs +281 -0
  59. package/es/control/calendar/index.d.ts +1 -2
  60. package/es/control/calendar/index.mjs +2 -0
  61. package/es/control/kanban/kanban.css +1 -1
  62. package/es/editor/data-picker/ibiz-picker-link/ibiz-picker-link.mjs +2 -2
  63. package/es/editor/date-picker/date-picker-editor.controller.mjs +3 -0
  64. package/es/editor/date-range/date-range-editor.controller.mjs +3 -0
  65. package/es/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.css +1 -1
  66. package/es/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.mjs +11 -2
  67. package/es/editor/slider/ibiz-slider/ibiz-slider.css +1 -1
  68. package/es/editor/slider/ibiz-slider/ibiz-slider.d.ts +2 -0
  69. package/es/editor/slider/ibiz-slider/ibiz-slider.mjs +76 -21
  70. package/es/locale/en/index.d.ts +46 -0
  71. package/es/locale/en/index.mjs +44 -1
  72. package/es/locale/zh-CN/index.d.ts +42 -0
  73. package/es/locale/zh-CN/index.mjs +40 -1
  74. package/es/node_modules/.pnpm/dayjs@1.11.10/node_modules/dayjs/plugin/localeData.mjs +13 -0
  75. package/lib/_virtual/localeData.cjs +5 -0
  76. package/lib/control/calendar/calendar.cjs +104 -173
  77. package/lib/control/calendar/calendar.css +1 -1
  78. package/lib/control/calendar/components/calendar-daily/calendar-daily.cjs +177 -0
  79. package/lib/control/calendar/components/calendar-daily/calendar-daily.css +1 -0
  80. package/lib/control/calendar/components/calendar-daily/index.cjs +14 -0
  81. package/lib/control/calendar/components/calendar-daily/use-calendar-daily.cjs +198 -0
  82. package/lib/control/calendar/components/calendar-month/calendar-month.cjs +244 -0
  83. package/lib/control/calendar/components/calendar-month/calendar-month.css +1 -0
  84. package/lib/control/calendar/components/calendar-month/index.cjs +14 -0
  85. package/lib/control/calendar/components/calendar-month/use-calendar-month.cjs +386 -0
  86. package/lib/control/calendar/components/calendar-week/calendar-week.cjs +243 -0
  87. package/lib/control/calendar/components/calendar-week/calendar-week.css +1 -0
  88. package/lib/control/calendar/components/calendar-week/index.cjs +14 -0
  89. package/lib/control/calendar/components/calendar-week/use-calendar-week.cjs +401 -0
  90. package/lib/control/calendar/components/constant/event.cjs +14 -0
  91. package/lib/control/calendar/components/constant/index.cjs +11 -0
  92. package/lib/control/calendar/components/custom-calendar/custom-calendar.cjs +285 -0
  93. package/lib/control/calendar/components/custom-calendar/custom-calendar.css +1 -0
  94. package/lib/control/calendar/components/custom-calendar/index.cjs +17 -0
  95. package/lib/control/calendar/components/custom-calendar/use-custom-calendar.cjs +266 -0
  96. package/lib/control/calendar/components/interface/calendar-daily.cjs +37 -0
  97. package/lib/control/calendar/components/interface/calendar-month.cjs +46 -0
  98. package/lib/control/calendar/components/interface/calendar-week.cjs +37 -0
  99. package/lib/control/calendar/components/interface/common.cjs +3 -0
  100. package/lib/control/calendar/components/interface/custom-calendar.cjs +70 -0
  101. package/lib/control/calendar/components/interface/index.cjs +18 -0
  102. package/lib/control/calendar/components/util/index.cjs +42 -0
  103. package/lib/control/calendar/components/util/util.cjs +316 -0
  104. package/lib/control/calendar/index.cjs +2 -0
  105. package/lib/control/kanban/kanban.css +1 -1
  106. package/lib/editor/data-picker/ibiz-picker-link/ibiz-picker-link.cjs +2 -2
  107. package/lib/editor/date-picker/date-picker-editor.controller.cjs +3 -0
  108. package/lib/editor/date-range/date-range-editor.controller.cjs +3 -0
  109. package/lib/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.cjs +11 -2
  110. package/lib/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.css +1 -1
  111. package/lib/editor/slider/ibiz-slider/ibiz-slider.cjs +76 -21
  112. package/lib/editor/slider/ibiz-slider/ibiz-slider.css +1 -1
  113. package/lib/locale/en/index.cjs +44 -1
  114. package/lib/locale/zh-CN/index.cjs +40 -1
  115. package/lib/node_modules/.pnpm/dayjs@1.11.10/node_modules/dayjs/plugin/localeData.cjs +17 -0
  116. package/package.json +7 -7
  117. package/dist/index-WMgMgSGZ.js +0 -4
@@ -16,6 +16,9 @@ const IBizSlider = /* @__PURE__ */ vue.defineComponent({
16
16
  const ns = vue3Util.useNamespace("slider");
17
17
  const c = props.controller;
18
18
  const editorModel = c.model;
19
+ const {
20
+ valueFormat
21
+ } = c.parent;
19
22
  const {
20
23
  useInFocusAndBlur,
21
24
  useInValueChange
@@ -27,7 +30,9 @@ const IBizSlider = /* @__PURE__ */ vue.defineComponent({
27
30
  let range = false;
28
31
  let showInput = false;
29
32
  let showText = false;
30
- let format = "0%";
33
+ let format = valueFormat || "0%";
34
+ let type = "line";
35
+ let textItem = "";
31
36
  if (editorModel.editorParams) {
32
37
  if (editorModel.editorParams.stepvalue) {
33
38
  step = lodashEs.toNumber(editorModel.editorParams.stepvalue);
@@ -53,6 +58,12 @@ const IBizSlider = /* @__PURE__ */ vue.defineComponent({
53
58
  if (editorModel.editorParams.format) {
54
59
  format = editorModel.editorParams.format;
55
60
  }
61
+ if (editorModel.editorParams.type) {
62
+ type = editorModel.editorParams.type;
63
+ }
64
+ if (editorModel.editorParams.textItem) {
65
+ textItem = editorModel.editorParams.textItem;
66
+ }
56
67
  }
57
68
  const showFormDefaultContent = vue.computed(() => {
58
69
  if (props.controlParams && props.controlParams.editmode === "hover" && !props.readonly) {
@@ -60,6 +71,25 @@ const IBizSlider = /* @__PURE__ */ vue.defineComponent({
60
71
  }
61
72
  return false;
62
73
  });
74
+ const handleLineVal = (val) => {
75
+ if (range) {
76
+ return JSON.parse(val);
77
+ }
78
+ return Number(val);
79
+ };
80
+ const handleCircleVal = (val) => {
81
+ return Number(val) * 100;
82
+ };
83
+ const handleCurVal = (val) => {
84
+ switch (type) {
85
+ case "line":
86
+ return handleLineVal(val);
87
+ case "circle":
88
+ return handleCircleVal(val);
89
+ default:
90
+ return val;
91
+ }
92
+ };
63
93
  const currentVal = vue.ref();
64
94
  vue.watch(() => props.value, (newVal, oldVal) => {
65
95
  if (newVal !== oldVal) {
@@ -70,17 +100,17 @@ const IBizSlider = /* @__PURE__ */ vue.defineComponent({
70
100
  currentVal.value = 0;
71
101
  }
72
102
  } else {
73
- if (range) {
74
- currentVal.value = JSON.parse(newVal);
75
- } else {
76
- currentVal.value = Number(newVal);
77
- }
103
+ currentVal.value = handleCurVal(newVal);
78
104
  }
79
105
  }
80
106
  }, {
81
107
  immediate: true
82
108
  });
83
109
  const textVal = vue.computed(() => {
110
+ if (textItem) {
111
+ const data = props.data || {};
112
+ return ibiz.util.text.format("".concat(data[textItem]), format);
113
+ }
84
114
  const tempCurVal = Number(currentVal.value);
85
115
  const value = Number(tempCurVal / max);
86
116
  const formatValue = ibiz.util.text.format("".concat(value), format);
@@ -104,6 +134,8 @@ const IBizSlider = /* @__PURE__ */ vue.defineComponent({
104
134
  step,
105
135
  max,
106
136
  min,
137
+ type,
138
+ textItem,
107
139
  showStops,
108
140
  range,
109
141
  showInput,
@@ -114,23 +146,46 @@ const IBizSlider = /* @__PURE__ */ vue.defineComponent({
114
146
  };
115
147
  },
116
148
  render() {
149
+ let content;
150
+ if (this.type === "line") {
151
+ content = [vue.createVNode(vue.resolveComponent("el-slider"), vue.mergeProps({
152
+ "modelValue": this.currentVal,
153
+ "onUpdate:modelValue": ($event) => this.currentVal = $event,
154
+ "disabled": this.disabled || this.readonly,
155
+ "step": this.step,
156
+ "max": this.max,
157
+ "min": this.min,
158
+ "showStops": this.showStops,
159
+ "range": this.range,
160
+ "showInput": this.showInput,
161
+ "onChange": this.handleChange
162
+ }, this.$attrs), null), this.showText ? vue.createVNode("span", {
163
+ "class": [this.ns.em("text", "val")]
164
+ }, [this.textVal]) : null];
165
+ }
166
+ if (this.type === "circle") {
167
+ content = vue.createVNode(vue.resolveComponent("el-progress"), vue.mergeProps({
168
+ "type": this.type,
169
+ "percentage": this.currentVal
170
+ }, this.$attrs), {
171
+ default: (item) => {
172
+ if (!this.showText) {
173
+ return "";
174
+ }
175
+ let text = item.percentage;
176
+ if (this.textItem) {
177
+ text = this.textVal;
178
+ }
179
+ return vue.createVNode("span", {
180
+ "class": this.ns.em("circle", "text")
181
+ }, [text]);
182
+ }
183
+ });
184
+ }
117
185
  return vue.createVNode("div", {
118
- "class": [this.ns.b(), this.readonly ? this.ns.m("readonly") : "", this.showText ? this.ns.e("text") : "", this.ns.is("show-default", this.showFormDefaultContent)],
186
+ "class": [this.ns.b(), this.readonly ? this.ns.m("readonly") : "", this.showText ? this.ns.e("text") : "", this.ns.is("show-default", this.showFormDefaultContent), this.ns.e(this.type)],
119
187
  "ref": "editorRef"
120
- }, [vue.createVNode(vue.resolveComponent("el-slider"), vue.mergeProps({
121
- "modelValue": this.currentVal,
122
- "onUpdate:modelValue": ($event) => this.currentVal = $event,
123
- "disabled": this.disabled || this.readonly,
124
- "step": this.step,
125
- "max": this.max,
126
- "min": this.min,
127
- "showStops": this.showStops,
128
- "range": this.range,
129
- "showInput": this.showInput,
130
- "onChange": this.handleChange
131
- }, this.$attrs), null), this.showText ? vue.createVNode("span", {
132
- "class": [this.ns.em("text", "val")]
133
- }, [this.textVal]) : null]);
188
+ }, [content]);
134
189
  }
135
190
  });
136
191
 
@@ -1 +1 @@
1
- .ibiz-slider{display:flex;align-items:center;width:100%}.ibiz-slider__text .el-slider__button,.ibiz-slider__text .el-slider__button-wrapper{width:1px;height:var(--ibiz-height-control-default);border:none}.ibiz-slider__text .el-slider__bar{border-radius:var(--ibiz-border-radius-small)}.ibiz-slider__text .el-slider__runway.is-disabled .el-slider__bar{background-color:var(--ibiz-color-primary)}.ibiz-slider__text--val{margin-left:var(--ibiz-spacing-tight)}.ibiz-form-item .ibiz-slider.is-show-default{padding:var(--ibiz-form-item-hover-edit-padding)}
1
+ .ibiz-slider{--ibiz-editor-slider-trigger-width:0.375rem;--ibiz-editor-slider-text-width:2.375rem;display:flex;align-items:center;width:100%}.ibiz-slider__text .el-slider__button,.ibiz-slider__text .el-slider__button-wrapper{width:var(--ibiz-editor-slider-trigger-width);height:var(--ibiz-height-control-default);border:none;opacity:0}.ibiz-slider__text .el-slider__bar{border-radius:var(--ibiz-border-radius-small)}.ibiz-slider__text .el-slider__runway.is-disabled .el-slider__bar{background-color:var(--ibiz-color-primary)}.ibiz-slider__text--val{min-width:var(--ibiz-editor-slider-text-width);margin-left:var(--ibiz-spacing-tight)}.ibiz-slider__circle--text{font-size:var(--ibiz-font-size-regular)}.ibiz-slider__circle .el-progress{--el-fill-color-light:var(--ibiz-color-fill-0);width:100%}.ibiz-slider__circle .el-progress .el-progress-circle svg>path:nth-child(2){stroke:var(--ibiz-color-primary)}.ibiz-form-item .ibiz-slider.is-show-default{padding:var(--ibiz-form-item-hover-edit-padding)}
@@ -260,7 +260,50 @@ var index = {
260
260
  lastMonth: "Last month",
261
261
  today: "Today",
262
262
  nextMonth: "Next month",
263
- nextYear: "Next year"
263
+ nextYear: "Next year",
264
+ calendardaily: {
265
+ title: "Working Calendar",
266
+ weeks: {
267
+ sunday: "Sunday",
268
+ monday: "Monday",
269
+ tuesday: "Tuesday",
270
+ wednesday: "Wednesday",
271
+ thursday: "Thursday",
272
+ friday: "Friday",
273
+ saturday: "Saturday"
274
+ },
275
+ tip: "All Day",
276
+ today: "Today",
277
+ tomorrow: "To Morrow",
278
+ nextweek: "Next Week"
279
+ },
280
+ calendarmonth: {
281
+ lastmonth: "Last Month",
282
+ nextmonth: "Next Month",
283
+ today: "Today",
284
+ year: "Year",
285
+ month: "Month",
286
+ weeks: {
287
+ sunday: "Sun",
288
+ monday: "Mon",
289
+ tuesday: "Tue",
290
+ wednesday: "Wed",
291
+ thursday: "Thu",
292
+ friday: "Fri",
293
+ saturday: "Sat"
294
+ }
295
+ },
296
+ calendarweek: {
297
+ weeks: {
298
+ sunday: "Sun",
299
+ monday: "Mon",
300
+ tuesday: "Tue",
301
+ wednesday: "Wed",
302
+ thursday: "Thu",
303
+ friday: "Fri",
304
+ saturday: "Sat"
305
+ }
306
+ }
264
307
  },
265
308
  chart: {
266
309
  chartPlaceholder: "Chart"
@@ -259,8 +259,47 @@ var index = {
259
259
  lastYear: "\u53BB\u5E74",
260
260
  lastMonth: "\u4E0A\u4E2A\u6708",
261
261
  today: "\u4ECA\u5929",
262
+ year: "\u5E74",
263
+ month: "\u6708",
262
264
  nextMonth: "\u4E0B\u4E2A\u6708",
263
- nextYear: "\u660E\u5E74"
265
+ nextYear: "\u660E\u5E74",
266
+ title: "\u5DE5\u4F5C\u65E5\u5386",
267
+ calendardaily: {
268
+ weeks: {
269
+ sunday: "\u661F\u671F\u65E5",
270
+ monday: "\u661F\u671F\u4E00",
271
+ tuesday: "\u661F\u671F\u4E8C",
272
+ wednesday: "\u661F\u671F\u4E09",
273
+ thursday: "\u661F\u671F\u56DB",
274
+ friday: "\u661F\u671F\u4E94",
275
+ saturday: "\u661F\u671F\u516D"
276
+ },
277
+ tip: "\u5168\u5929",
278
+ tomorrow: "\u660E\u5929",
279
+ nextweek: "\u4E0B\u5468"
280
+ },
281
+ calendarmonth: {
282
+ weeks: {
283
+ sunday: "\u65E5",
284
+ monday: "\u4E00",
285
+ tuesday: "\u4E8C",
286
+ wednesday: "\u4E09",
287
+ thursday: "\u56DB",
288
+ friday: "\u4E94",
289
+ saturday: "\u516D"
290
+ }
291
+ },
292
+ calendarweek: {
293
+ weeks: {
294
+ sunday: "\u65E5",
295
+ monday: "\u4E00",
296
+ tuesday: "\u4E8C",
297
+ wednesday: "\u4E09",
298
+ thursday: "\u56DB",
299
+ friday: "\u4E94",
300
+ saturday: "\u516D"
301
+ }
302
+ }
264
303
  },
265
304
  chart: {
266
305
  chartPlaceholder: "\u56FE\u8868"
@@ -0,0 +1,17 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var _commonjsHelpers = require('../../../../../../_virtual/_commonjsHelpers.cjs');
6
+ var localeData$2 = require('../../../../../../_virtual/localeData.cjs');
7
+
8
+ var localeData = localeData$2.__module.exports;
9
+
10
+ (function (module, exports) {
11
+ !function(n,e){"object"=='object'&&"undefined"!='object'?module.exports=e():"function"==typeof undefined&&undefined.amd?undefined(e):(n="undefined"!=typeof globalThis?globalThis:n||self).dayjs_plugin_localeData=e();}(_commonjsHelpers.commonjsGlobal,(function(){"use strict";return function(n,e,t){var r=e.prototype,o=function(n){return n&&(n.indexOf?n:n.s)},u=function(n,e,t,r,u){var i=n.name?n:n.$locale(),a=o(i[e]),s=o(i[t]),f=a||s.map((function(n){return n.slice(0,r)}));if(!u)return f;var d=i.weekStart;return f.map((function(n,e){return f[(e+(d||0))%7]}))},i=function(){return t.Ls[t.locale()]},a=function(n,e){return n.formats[e]||function(n){return n.replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(n,e,t){return e||t.slice(1)}))}(n.formats[e.toUpperCase()])},s=function(){var n=this;return {months:function(e){return e?e.format("MMMM"):u(n,"months")},monthsShort:function(e){return e?e.format("MMM"):u(n,"monthsShort","months",3)},firstDayOfWeek:function(){return n.$locale().weekStart||0},weekdays:function(e){return e?e.format("dddd"):u(n,"weekdays")},weekdaysMin:function(e){return e?e.format("dd"):u(n,"weekdaysMin","weekdays",2)},weekdaysShort:function(e){return e?e.format("ddd"):u(n,"weekdaysShort","weekdays",3)},longDateFormat:function(e){return a(n.$locale(),e)},meridiem:this.$locale().meridiem,ordinal:this.$locale().ordinal}};r.localeData=function(){return s.bind(this)()},t.localeData=function(){var n=i();return {firstDayOfWeek:function(){return n.weekStart||0},weekdays:function(){return t.weekdays()},weekdaysShort:function(){return t.weekdaysShort()},weekdaysMin:function(){return t.weekdaysMin()},months:function(){return t.months()},monthsShort:function(){return t.monthsShort()},longDateFormat:function(e){return a(n,e)},meridiem:n.meridiem,ordinal:n.ordinal}},t.months=function(){return u(i(),"months")},t.monthsShort=function(){return u(i(),"monthsShort","months",3)},t.weekdays=function(n){return u(i(),"weekdays",null,null,n)},t.weekdaysShort=function(n){return u(i(),"weekdaysShort","weekdays",3,n)},t.weekdaysMin=function(n){return u(i(),"weekdaysMin","weekdays",2,n)};}}));
12
+ } (localeData$2.__module, localeData$2.__module.exports));
13
+
14
+ var localeDataExports = localeData$2.__module.exports;
15
+ var localeData$1 = /*@__PURE__*/_commonjsHelpers.getDefaultExportFromCjs(localeDataExports);
16
+
17
+ exports.default = localeData$1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz-template/vue3-components",
3
- "version": "0.7.26-alpha.0",
3
+ "version": "0.7.26-alpha.2",
4
4
  "description": "使用 rollup 编译 vue 组件或者 jsx",
5
5
  "main": "lib/index.cjs",
6
6
  "module": "es/index.mjs",
@@ -30,15 +30,15 @@
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.2",
33
+ "@ibiz-template-plugin/bi-report": "0.0.3",
34
34
  "@ibiz-template/core": "0.7.25",
35
35
  "@ibiz-template/devtool": "0.0.1-dev.6",
36
- "@ibiz-template/model-helper": "0.7.26-alpha.0",
37
- "@ibiz-template/runtime": "0.7.26-alpha.0",
36
+ "@ibiz-template/model-helper": "0.7.26-alpha.2",
37
+ "@ibiz-template/runtime": "0.7.26-alpha.2",
38
38
  "@ibiz-template/theme": "^0.7.0",
39
- "@ibiz-template/vue3-util": "0.7.26-alpha.0",
39
+ "@ibiz-template/vue3-util": "0.7.26-alpha.2",
40
40
  "@ibiz-template/web-theme": "^1.1.18",
41
- "@ibiz/model-core": "^0.1.35",
41
+ "@ibiz/model-core": "^0.1.37",
42
42
  "@imengyu/vue3-context-menu": "^1.3.5",
43
43
  "@monaco-editor/loader": "^1.4.0",
44
44
  "@wangeditor/editor": "^5.1.23",
@@ -102,7 +102,7 @@
102
102
  "@ibiz-template/runtime": "^0.7.0",
103
103
  "@ibiz-template/theme": "^0.7.0",
104
104
  "@ibiz-template/vue3-util": "^0.7.0",
105
- "@ibiz/model-core": "^0.1.35",
105
+ "@ibiz/model-core": "^0.1.37",
106
106
  "@imengyu/vue3-context-menu": "^1.3.3",
107
107
  "@monaco-editor/loader": "^1.3.3",
108
108
  "@wangeditor/editor": "^5.1.23",