@ibiz-template/vue3-components 0.7.26-alpha.1 → 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.
- package/dist/{index-_h-elF6t.js → index-8tGeBxpc.js} +1 -1
- package/dist/{index--XeT2CTZ.js → index-CDgQJyai.js} +1 -1
- package/dist/index-o58Mv9D4.js +4 -0
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/{xlsx-util-jKx8FmtR.js → xlsx-util-Ux1_tuw5.js} +1 -1
- package/es/_virtual/localeData.mjs +3 -0
- package/es/control/calendar/calendar.css +1 -1
- package/es/control/calendar/calendar.d.ts +2 -3
- package/es/control/calendar/calendar.mjs +104 -173
- package/es/control/calendar/components/calendar-daily/calendar-daily.css +1 -0
- package/es/control/calendar/components/calendar-daily/calendar-daily.d.ts +18 -0
- package/es/control/calendar/components/calendar-daily/calendar-daily.mjs +175 -0
- package/es/control/calendar/components/calendar-daily/index.d.ts +18 -0
- package/es/control/calendar/components/calendar-daily/index.mjs +9 -0
- package/es/control/calendar/components/calendar-daily/use-calendar-daily.d.ts +154 -0
- package/es/control/calendar/components/calendar-daily/use-calendar-daily.mjs +196 -0
- package/es/control/calendar/components/calendar-month/calendar-month.css +1 -0
- package/es/control/calendar/components/calendar-month/calendar-month.d.ts +18 -0
- package/es/control/calendar/components/calendar-month/calendar-month.mjs +242 -0
- package/es/control/calendar/components/calendar-month/index.d.ts +18 -0
- package/es/control/calendar/components/calendar-month/index.mjs +9 -0
- package/es/control/calendar/components/calendar-month/use-calendar-month.d.ts +3 -0
- package/es/control/calendar/components/calendar-month/use-calendar-month.mjs +384 -0
- package/es/control/calendar/components/calendar-week/calendar-week.css +1 -0
- package/es/control/calendar/components/calendar-week/calendar-week.d.ts +18 -0
- package/es/control/calendar/components/calendar-week/calendar-week.mjs +241 -0
- package/es/control/calendar/components/calendar-week/index.d.ts +18 -0
- package/es/control/calendar/components/calendar-week/index.mjs +9 -0
- package/es/control/calendar/components/calendar-week/use-calendar-week.d.ts +159 -0
- package/es/control/calendar/components/calendar-week/use-calendar-week.mjs +399 -0
- package/es/control/calendar/components/constant/event.d.ts +5 -0
- package/es/control/calendar/components/constant/event.mjs +8 -0
- package/es/control/calendar/components/constant/index.d.ts +1 -0
- package/es/control/calendar/components/constant/index.mjs +3 -0
- package/es/control/calendar/components/custom-calendar/custom-calendar.css +1 -0
- package/es/control/calendar/components/custom-calendar/custom-calendar.d.ts +24 -0
- package/es/control/calendar/components/custom-calendar/custom-calendar.mjs +283 -0
- package/es/control/calendar/components/custom-calendar/index.d.ts +24 -0
- package/es/control/calendar/components/custom-calendar/index.mjs +12 -0
- package/es/control/calendar/components/custom-calendar/use-custom-calendar.d.ts +3 -0
- package/es/control/calendar/components/custom-calendar/use-custom-calendar.mjs +264 -0
- package/es/control/calendar/components/interface/calendar-daily.d.ts +12 -0
- package/es/control/calendar/components/interface/calendar-daily.mjs +34 -0
- package/es/control/calendar/components/interface/calendar-month.d.ts +20 -0
- package/es/control/calendar/components/interface/calendar-month.mjs +43 -0
- package/es/control/calendar/components/interface/calendar-week.d.ts +12 -0
- package/es/control/calendar/components/interface/calendar-week.mjs +34 -0
- package/es/control/calendar/components/interface/common.d.ts +116 -0
- package/es/control/calendar/components/interface/common.mjs +1 -0
- package/es/control/calendar/components/interface/custom-calendar.d.ts +14 -0
- package/es/control/calendar/components/interface/custom-calendar.mjs +67 -0
- package/es/control/calendar/components/interface/index.d.ts +5 -0
- package/es/control/calendar/components/interface/index.mjs +7 -0
- package/es/control/calendar/components/util/index.d.ts +1 -0
- package/es/control/calendar/components/util/index.mjs +4 -0
- package/es/control/calendar/components/util/util.d.ts +89 -0
- package/es/control/calendar/components/util/util.mjs +281 -0
- package/es/control/calendar/index.d.ts +1 -2
- package/es/control/calendar/index.mjs +2 -0
- package/es/editor/data-picker/ibiz-picker-link/ibiz-picker-link.mjs +2 -2
- package/es/editor/date-picker/date-picker-editor.controller.mjs +3 -0
- package/es/editor/date-range/date-range-editor.controller.mjs +3 -0
- package/es/editor/slider/ibiz-slider/ibiz-slider.css +1 -1
- package/es/editor/slider/ibiz-slider/ibiz-slider.d.ts +2 -0
- package/es/editor/slider/ibiz-slider/ibiz-slider.mjs +76 -21
- package/es/locale/en/index.d.ts +43 -0
- package/es/locale/en/index.mjs +44 -1
- package/es/locale/zh-CN/index.d.ts +39 -0
- package/es/locale/zh-CN/index.mjs +40 -1
- package/es/node_modules/.pnpm/dayjs@1.11.10/node_modules/dayjs/plugin/localeData.mjs +13 -0
- package/lib/_virtual/localeData.cjs +5 -0
- package/lib/control/calendar/calendar.cjs +104 -173
- package/lib/control/calendar/calendar.css +1 -1
- package/lib/control/calendar/components/calendar-daily/calendar-daily.cjs +177 -0
- package/lib/control/calendar/components/calendar-daily/calendar-daily.css +1 -0
- package/lib/control/calendar/components/calendar-daily/index.cjs +14 -0
- package/lib/control/calendar/components/calendar-daily/use-calendar-daily.cjs +198 -0
- package/lib/control/calendar/components/calendar-month/calendar-month.cjs +244 -0
- package/lib/control/calendar/components/calendar-month/calendar-month.css +1 -0
- package/lib/control/calendar/components/calendar-month/index.cjs +14 -0
- package/lib/control/calendar/components/calendar-month/use-calendar-month.cjs +386 -0
- package/lib/control/calendar/components/calendar-week/calendar-week.cjs +243 -0
- package/lib/control/calendar/components/calendar-week/calendar-week.css +1 -0
- package/lib/control/calendar/components/calendar-week/index.cjs +14 -0
- package/lib/control/calendar/components/calendar-week/use-calendar-week.cjs +401 -0
- package/lib/control/calendar/components/constant/event.cjs +14 -0
- package/lib/control/calendar/components/constant/index.cjs +11 -0
- package/lib/control/calendar/components/custom-calendar/custom-calendar.cjs +285 -0
- package/lib/control/calendar/components/custom-calendar/custom-calendar.css +1 -0
- package/lib/control/calendar/components/custom-calendar/index.cjs +17 -0
- package/lib/control/calendar/components/custom-calendar/use-custom-calendar.cjs +266 -0
- package/lib/control/calendar/components/interface/calendar-daily.cjs +37 -0
- package/lib/control/calendar/components/interface/calendar-month.cjs +46 -0
- package/lib/control/calendar/components/interface/calendar-week.cjs +37 -0
- package/lib/control/calendar/components/interface/common.cjs +3 -0
- package/lib/control/calendar/components/interface/custom-calendar.cjs +70 -0
- package/lib/control/calendar/components/interface/index.cjs +18 -0
- package/lib/control/calendar/components/util/index.cjs +42 -0
- package/lib/control/calendar/components/util/util.cjs +316 -0
- package/lib/control/calendar/index.cjs +2 -0
- package/lib/editor/data-picker/ibiz-picker-link/ibiz-picker-link.cjs +2 -2
- package/lib/editor/date-picker/date-picker-editor.controller.cjs +3 -0
- package/lib/editor/date-range/date-range-editor.controller.cjs +3 -0
- package/lib/editor/slider/ibiz-slider/ibiz-slider.cjs +76 -21
- package/lib/editor/slider/ibiz-slider/ibiz-slider.css +1 -1
- package/lib/locale/en/index.cjs +44 -1
- package/lib/locale/zh-CN/index.cjs +40 -1
- package/lib/node_modules/.pnpm/dayjs@1.11.10/node_modules/dayjs/plugin/localeData.cjs +17 -0
- package/package.json +5 -5
- package/dist/index-yupCl1Un.js +0 -4
|
@@ -26,9 +26,8 @@ export declare const IBizCalendarControl: import("@ibiz-template/vue3-util").Typ
|
|
|
26
26
|
c: import("@ibiz-template/runtime").CalendarController;
|
|
27
27
|
ns: import("@ibiz-template/core").Namespace;
|
|
28
28
|
calendarRef: import("vue").Ref<IData | undefined>;
|
|
29
|
-
popoverVisible: import("vue").Ref<boolean>;
|
|
30
29
|
selectDate: (tag: string) => void;
|
|
31
|
-
|
|
30
|
+
renderCalendar: () => JSX.Element;
|
|
32
31
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
32
|
modelData: {
|
|
34
33
|
type: import("vue").PropType<import("@ibiz/model-core").ISysCalendar>;
|
|
@@ -2,11 +2,13 @@ import { ControlType, registerControlProvider } from '@ibiz-template/runtime';
|
|
|
2
2
|
import { withInstall } from '@ibiz-template/vue3-util';
|
|
3
3
|
import { CalendarControl } from './calendar.mjs';
|
|
4
4
|
import { CalendarProvider } from './calendar.provider.mjs';
|
|
5
|
+
import { IBizCustomCalendar } from './components/custom-calendar/index.mjs';
|
|
5
6
|
|
|
6
7
|
"use strict";
|
|
7
8
|
const IBizCalendarControl = withInstall(
|
|
8
9
|
CalendarControl,
|
|
9
10
|
function(v) {
|
|
11
|
+
v.use(IBizCustomCalendar);
|
|
10
12
|
v.component(CalendarControl.name, CalendarControl);
|
|
11
13
|
registerControlProvider(ControlType.CALENDAR, () => new CalendarProvider());
|
|
12
14
|
}
|
|
@@ -85,8 +85,8 @@ const IBizPickerLink = /* @__PURE__ */ defineComponent({
|
|
|
85
85
|
};
|
|
86
86
|
const openLinkView = async () => {
|
|
87
87
|
const res = await c.openLinkView(props.data);
|
|
88
|
-
if (res) {
|
|
89
|
-
handleOpenViewClose(res[0]);
|
|
88
|
+
if (res && res.ok && res.data && res.data.length) {
|
|
89
|
+
handleOpenViewClose(res.data[0]);
|
|
90
90
|
}
|
|
91
91
|
};
|
|
92
92
|
const {
|
|
@@ -41,6 +41,9 @@ class DatePickerEditorController extends EditorController {
|
|
|
41
41
|
* @Date: 2022-08-25 14:33:14
|
|
42
42
|
*/
|
|
43
43
|
get valueFormat() {
|
|
44
|
+
if (this.model.dateTimeFormat) {
|
|
45
|
+
return this.model.dateTimeFormat;
|
|
46
|
+
}
|
|
44
47
|
if (super.valueFormat) {
|
|
45
48
|
return super.valueFormat;
|
|
46
49
|
}
|
|
@@ -45,6 +45,9 @@ class DateRangeEditorController extends EditorController {
|
|
|
45
45
|
* @Date: 2022-08-25 14:33:14
|
|
46
46
|
*/
|
|
47
47
|
get valueFormat() {
|
|
48
|
+
if (this.model.dateTimeFormat) {
|
|
49
|
+
return this.model.dateTimeFormat;
|
|
50
|
+
}
|
|
48
51
|
if (super.valueFormat) {
|
|
49
52
|
return super.valueFormat;
|
|
50
53
|
}
|
|
@@ -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:
|
|
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)}
|
|
@@ -14,6 +14,9 @@ const IBizSlider = /* @__PURE__ */ defineComponent({
|
|
|
14
14
|
const ns = useNamespace("slider");
|
|
15
15
|
const c = props.controller;
|
|
16
16
|
const editorModel = c.model;
|
|
17
|
+
const {
|
|
18
|
+
valueFormat
|
|
19
|
+
} = c.parent;
|
|
17
20
|
const {
|
|
18
21
|
useInFocusAndBlur,
|
|
19
22
|
useInValueChange
|
|
@@ -25,7 +28,9 @@ const IBizSlider = /* @__PURE__ */ defineComponent({
|
|
|
25
28
|
let range = false;
|
|
26
29
|
let showInput = false;
|
|
27
30
|
let showText = false;
|
|
28
|
-
let format = "0%";
|
|
31
|
+
let format = valueFormat || "0%";
|
|
32
|
+
let type = "line";
|
|
33
|
+
let textItem = "";
|
|
29
34
|
if (editorModel.editorParams) {
|
|
30
35
|
if (editorModel.editorParams.stepvalue) {
|
|
31
36
|
step = toNumber(editorModel.editorParams.stepvalue);
|
|
@@ -51,6 +56,12 @@ const IBizSlider = /* @__PURE__ */ defineComponent({
|
|
|
51
56
|
if (editorModel.editorParams.format) {
|
|
52
57
|
format = editorModel.editorParams.format;
|
|
53
58
|
}
|
|
59
|
+
if (editorModel.editorParams.type) {
|
|
60
|
+
type = editorModel.editorParams.type;
|
|
61
|
+
}
|
|
62
|
+
if (editorModel.editorParams.textItem) {
|
|
63
|
+
textItem = editorModel.editorParams.textItem;
|
|
64
|
+
}
|
|
54
65
|
}
|
|
55
66
|
const showFormDefaultContent = computed(() => {
|
|
56
67
|
if (props.controlParams && props.controlParams.editmode === "hover" && !props.readonly) {
|
|
@@ -58,6 +69,25 @@ const IBizSlider = /* @__PURE__ */ defineComponent({
|
|
|
58
69
|
}
|
|
59
70
|
return false;
|
|
60
71
|
});
|
|
72
|
+
const handleLineVal = (val) => {
|
|
73
|
+
if (range) {
|
|
74
|
+
return JSON.parse(val);
|
|
75
|
+
}
|
|
76
|
+
return Number(val);
|
|
77
|
+
};
|
|
78
|
+
const handleCircleVal = (val) => {
|
|
79
|
+
return Number(val) * 100;
|
|
80
|
+
};
|
|
81
|
+
const handleCurVal = (val) => {
|
|
82
|
+
switch (type) {
|
|
83
|
+
case "line":
|
|
84
|
+
return handleLineVal(val);
|
|
85
|
+
case "circle":
|
|
86
|
+
return handleCircleVal(val);
|
|
87
|
+
default:
|
|
88
|
+
return val;
|
|
89
|
+
}
|
|
90
|
+
};
|
|
61
91
|
const currentVal = ref();
|
|
62
92
|
watch(() => props.value, (newVal, oldVal) => {
|
|
63
93
|
if (newVal !== oldVal) {
|
|
@@ -68,17 +98,17 @@ const IBizSlider = /* @__PURE__ */ defineComponent({
|
|
|
68
98
|
currentVal.value = 0;
|
|
69
99
|
}
|
|
70
100
|
} else {
|
|
71
|
-
|
|
72
|
-
currentVal.value = JSON.parse(newVal);
|
|
73
|
-
} else {
|
|
74
|
-
currentVal.value = Number(newVal);
|
|
75
|
-
}
|
|
101
|
+
currentVal.value = handleCurVal(newVal);
|
|
76
102
|
}
|
|
77
103
|
}
|
|
78
104
|
}, {
|
|
79
105
|
immediate: true
|
|
80
106
|
});
|
|
81
107
|
const textVal = computed(() => {
|
|
108
|
+
if (textItem) {
|
|
109
|
+
const data = props.data || {};
|
|
110
|
+
return ibiz.util.text.format("".concat(data[textItem]), format);
|
|
111
|
+
}
|
|
82
112
|
const tempCurVal = Number(currentVal.value);
|
|
83
113
|
const value = Number(tempCurVal / max);
|
|
84
114
|
const formatValue = ibiz.util.text.format("".concat(value), format);
|
|
@@ -102,6 +132,8 @@ const IBizSlider = /* @__PURE__ */ defineComponent({
|
|
|
102
132
|
step,
|
|
103
133
|
max,
|
|
104
134
|
min,
|
|
135
|
+
type,
|
|
136
|
+
textItem,
|
|
105
137
|
showStops,
|
|
106
138
|
range,
|
|
107
139
|
showInput,
|
|
@@ -112,23 +144,46 @@ const IBizSlider = /* @__PURE__ */ defineComponent({
|
|
|
112
144
|
};
|
|
113
145
|
},
|
|
114
146
|
render() {
|
|
147
|
+
let content;
|
|
148
|
+
if (this.type === "line") {
|
|
149
|
+
content = [createVNode(resolveComponent("el-slider"), mergeProps({
|
|
150
|
+
"modelValue": this.currentVal,
|
|
151
|
+
"onUpdate:modelValue": ($event) => this.currentVal = $event,
|
|
152
|
+
"disabled": this.disabled || this.readonly,
|
|
153
|
+
"step": this.step,
|
|
154
|
+
"max": this.max,
|
|
155
|
+
"min": this.min,
|
|
156
|
+
"showStops": this.showStops,
|
|
157
|
+
"range": this.range,
|
|
158
|
+
"showInput": this.showInput,
|
|
159
|
+
"onChange": this.handleChange
|
|
160
|
+
}, this.$attrs), null), this.showText ? createVNode("span", {
|
|
161
|
+
"class": [this.ns.em("text", "val")]
|
|
162
|
+
}, [this.textVal]) : null];
|
|
163
|
+
}
|
|
164
|
+
if (this.type === "circle") {
|
|
165
|
+
content = createVNode(resolveComponent("el-progress"), mergeProps({
|
|
166
|
+
"type": this.type,
|
|
167
|
+
"percentage": this.currentVal
|
|
168
|
+
}, this.$attrs), {
|
|
169
|
+
default: (item) => {
|
|
170
|
+
if (!this.showText) {
|
|
171
|
+
return "";
|
|
172
|
+
}
|
|
173
|
+
let text = item.percentage;
|
|
174
|
+
if (this.textItem) {
|
|
175
|
+
text = this.textVal;
|
|
176
|
+
}
|
|
177
|
+
return createVNode("span", {
|
|
178
|
+
"class": this.ns.em("circle", "text")
|
|
179
|
+
}, [text]);
|
|
180
|
+
}
|
|
181
|
+
});
|
|
182
|
+
}
|
|
115
183
|
return createVNode("div", {
|
|
116
|
-
"class": [this.ns.b(), this.readonly ? this.ns.m("readonly") : "", this.showText ? this.ns.e("text") : "", this.ns.is("show-default", this.showFormDefaultContent)],
|
|
184
|
+
"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)],
|
|
117
185
|
"ref": "editorRef"
|
|
118
|
-
}, [
|
|
119
|
-
"modelValue": this.currentVal,
|
|
120
|
-
"onUpdate:modelValue": ($event) => this.currentVal = $event,
|
|
121
|
-
"disabled": this.disabled || this.readonly,
|
|
122
|
-
"step": this.step,
|
|
123
|
-
"max": this.max,
|
|
124
|
-
"min": this.min,
|
|
125
|
-
"showStops": this.showStops,
|
|
126
|
-
"range": this.range,
|
|
127
|
-
"showInput": this.showInput,
|
|
128
|
-
"onChange": this.handleChange
|
|
129
|
-
}, this.$attrs), null), this.showText ? createVNode("span", {
|
|
130
|
-
"class": [this.ns.em("text", "val")]
|
|
131
|
-
}, [this.textVal]) : null]);
|
|
186
|
+
}, [content]);
|
|
132
187
|
}
|
|
133
188
|
});
|
|
134
189
|
|
package/es/locale/en/index.d.ts
CHANGED
|
@@ -923,6 +923,49 @@ declare const _default: {
|
|
|
923
923
|
today: string;
|
|
924
924
|
nextMonth: string;
|
|
925
925
|
nextYear: string;
|
|
926
|
+
calendardaily: {
|
|
927
|
+
title: string;
|
|
928
|
+
weeks: {
|
|
929
|
+
sunday: string;
|
|
930
|
+
monday: string;
|
|
931
|
+
tuesday: string;
|
|
932
|
+
wednesday: string;
|
|
933
|
+
thursday: string;
|
|
934
|
+
friday: string;
|
|
935
|
+
saturday: string;
|
|
936
|
+
};
|
|
937
|
+
tip: string;
|
|
938
|
+
today: string;
|
|
939
|
+
tomorrow: string;
|
|
940
|
+
nextweek: string;
|
|
941
|
+
};
|
|
942
|
+
calendarmonth: {
|
|
943
|
+
lastmonth: string;
|
|
944
|
+
nextmonth: string;
|
|
945
|
+
today: string;
|
|
946
|
+
year: string;
|
|
947
|
+
month: string;
|
|
948
|
+
weeks: {
|
|
949
|
+
sunday: string;
|
|
950
|
+
monday: string;
|
|
951
|
+
tuesday: string;
|
|
952
|
+
wednesday: string;
|
|
953
|
+
thursday: string;
|
|
954
|
+
friday: string;
|
|
955
|
+
saturday: string;
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
calendarweek: {
|
|
959
|
+
weeks: {
|
|
960
|
+
sunday: string;
|
|
961
|
+
monday: string;
|
|
962
|
+
tuesday: string;
|
|
963
|
+
wednesday: string;
|
|
964
|
+
thursday: string;
|
|
965
|
+
friday: string;
|
|
966
|
+
saturday: string;
|
|
967
|
+
};
|
|
968
|
+
};
|
|
926
969
|
};
|
|
927
970
|
chart: {
|
|
928
971
|
chartPlaceholder: string;
|
package/es/locale/en/index.mjs
CHANGED
|
@@ -256,7 +256,50 @@ var index = {
|
|
|
256
256
|
lastMonth: "Last month",
|
|
257
257
|
today: "Today",
|
|
258
258
|
nextMonth: "Next month",
|
|
259
|
-
nextYear: "Next year"
|
|
259
|
+
nextYear: "Next year",
|
|
260
|
+
calendardaily: {
|
|
261
|
+
title: "Working Calendar",
|
|
262
|
+
weeks: {
|
|
263
|
+
sunday: "Sunday",
|
|
264
|
+
monday: "Monday",
|
|
265
|
+
tuesday: "Tuesday",
|
|
266
|
+
wednesday: "Wednesday",
|
|
267
|
+
thursday: "Thursday",
|
|
268
|
+
friday: "Friday",
|
|
269
|
+
saturday: "Saturday"
|
|
270
|
+
},
|
|
271
|
+
tip: "All Day",
|
|
272
|
+
today: "Today",
|
|
273
|
+
tomorrow: "To Morrow",
|
|
274
|
+
nextweek: "Next Week"
|
|
275
|
+
},
|
|
276
|
+
calendarmonth: {
|
|
277
|
+
lastmonth: "Last Month",
|
|
278
|
+
nextmonth: "Next Month",
|
|
279
|
+
today: "Today",
|
|
280
|
+
year: "Year",
|
|
281
|
+
month: "Month",
|
|
282
|
+
weeks: {
|
|
283
|
+
sunday: "Sun",
|
|
284
|
+
monday: "Mon",
|
|
285
|
+
tuesday: "Tue",
|
|
286
|
+
wednesday: "Wed",
|
|
287
|
+
thursday: "Thu",
|
|
288
|
+
friday: "Fri",
|
|
289
|
+
saturday: "Sat"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
calendarweek: {
|
|
293
|
+
weeks: {
|
|
294
|
+
sunday: "Sun",
|
|
295
|
+
monday: "Mon",
|
|
296
|
+
tuesday: "Tue",
|
|
297
|
+
wednesday: "Wed",
|
|
298
|
+
thursday: "Thu",
|
|
299
|
+
friday: "Fri",
|
|
300
|
+
saturday: "Sat"
|
|
301
|
+
}
|
|
302
|
+
}
|
|
260
303
|
},
|
|
261
304
|
chart: {
|
|
262
305
|
chartPlaceholder: "Chart"
|
|
@@ -919,8 +919,47 @@ declare const _default: {
|
|
|
919
919
|
lastYear: string;
|
|
920
920
|
lastMonth: string;
|
|
921
921
|
today: string;
|
|
922
|
+
year: string;
|
|
923
|
+
month: string;
|
|
922
924
|
nextMonth: string;
|
|
923
925
|
nextYear: string;
|
|
926
|
+
title: string;
|
|
927
|
+
calendardaily: {
|
|
928
|
+
weeks: {
|
|
929
|
+
sunday: string;
|
|
930
|
+
monday: string;
|
|
931
|
+
tuesday: string;
|
|
932
|
+
wednesday: string;
|
|
933
|
+
thursday: string;
|
|
934
|
+
friday: string;
|
|
935
|
+
saturday: string;
|
|
936
|
+
};
|
|
937
|
+
tip: string;
|
|
938
|
+
tomorrow: string;
|
|
939
|
+
nextweek: string;
|
|
940
|
+
};
|
|
941
|
+
calendarmonth: {
|
|
942
|
+
weeks: {
|
|
943
|
+
sunday: string;
|
|
944
|
+
monday: string;
|
|
945
|
+
tuesday: string;
|
|
946
|
+
wednesday: string;
|
|
947
|
+
thursday: string;
|
|
948
|
+
friday: string;
|
|
949
|
+
saturday: string;
|
|
950
|
+
};
|
|
951
|
+
};
|
|
952
|
+
calendarweek: {
|
|
953
|
+
weeks: {
|
|
954
|
+
sunday: string;
|
|
955
|
+
monday: string;
|
|
956
|
+
tuesday: string;
|
|
957
|
+
wednesday: string;
|
|
958
|
+
thursday: string;
|
|
959
|
+
friday: string;
|
|
960
|
+
saturday: string;
|
|
961
|
+
};
|
|
962
|
+
};
|
|
924
963
|
};
|
|
925
964
|
chart: {
|
|
926
965
|
chartPlaceholder: string;
|
|
@@ -255,8 +255,47 @@ var index = {
|
|
|
255
255
|
lastYear: "\u53BB\u5E74",
|
|
256
256
|
lastMonth: "\u4E0A\u4E2A\u6708",
|
|
257
257
|
today: "\u4ECA\u5929",
|
|
258
|
+
year: "\u5E74",
|
|
259
|
+
month: "\u6708",
|
|
258
260
|
nextMonth: "\u4E0B\u4E2A\u6708",
|
|
259
|
-
nextYear: "\u660E\u5E74"
|
|
261
|
+
nextYear: "\u660E\u5E74",
|
|
262
|
+
title: "\u5DE5\u4F5C\u65E5\u5386",
|
|
263
|
+
calendardaily: {
|
|
264
|
+
weeks: {
|
|
265
|
+
sunday: "\u661F\u671F\u65E5",
|
|
266
|
+
monday: "\u661F\u671F\u4E00",
|
|
267
|
+
tuesday: "\u661F\u671F\u4E8C",
|
|
268
|
+
wednesday: "\u661F\u671F\u4E09",
|
|
269
|
+
thursday: "\u661F\u671F\u56DB",
|
|
270
|
+
friday: "\u661F\u671F\u4E94",
|
|
271
|
+
saturday: "\u661F\u671F\u516D"
|
|
272
|
+
},
|
|
273
|
+
tip: "\u5168\u5929",
|
|
274
|
+
tomorrow: "\u660E\u5929",
|
|
275
|
+
nextweek: "\u4E0B\u5468"
|
|
276
|
+
},
|
|
277
|
+
calendarmonth: {
|
|
278
|
+
weeks: {
|
|
279
|
+
sunday: "\u65E5",
|
|
280
|
+
monday: "\u4E00",
|
|
281
|
+
tuesday: "\u4E8C",
|
|
282
|
+
wednesday: "\u4E09",
|
|
283
|
+
thursday: "\u56DB",
|
|
284
|
+
friday: "\u4E94",
|
|
285
|
+
saturday: "\u516D"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
calendarweek: {
|
|
289
|
+
weeks: {
|
|
290
|
+
sunday: "\u65E5",
|
|
291
|
+
monday: "\u4E00",
|
|
292
|
+
tuesday: "\u4E8C",
|
|
293
|
+
wednesday: "\u4E09",
|
|
294
|
+
thursday: "\u56DB",
|
|
295
|
+
friday: "\u4E94",
|
|
296
|
+
saturday: "\u516D"
|
|
297
|
+
}
|
|
298
|
+
}
|
|
260
299
|
},
|
|
261
300
|
chart: {
|
|
262
301
|
chartPlaceholder: "\u56FE\u8868"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { commonjsGlobal, getDefaultExportFromCjs } from '../../../../../../_virtual/_commonjsHelpers.mjs';
|
|
2
|
+
import { __module as localeData$2 } from '../../../../../../_virtual/localeData.mjs';
|
|
3
|
+
|
|
4
|
+
var localeData = localeData$2.exports;
|
|
5
|
+
|
|
6
|
+
(function (module, exports) {
|
|
7
|
+
!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();}(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)};}}));
|
|
8
|
+
} (localeData$2, localeData$2.exports));
|
|
9
|
+
|
|
10
|
+
var localeDataExports = localeData$2.exports;
|
|
11
|
+
var localeData$1 = /*@__PURE__*/getDefaultExportFromCjs(localeDataExports);
|
|
12
|
+
|
|
13
|
+
export { localeData$1 as default };
|