@opendesign-plus-test/components 0.0.1-rc.91 → 0.0.1-rc.92
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.
|
@@ -184,9 +184,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
184
184
|
if (!allDatesLoaded.value) {
|
|
185
185
|
return [];
|
|
186
186
|
}
|
|
187
|
-
console.log("dateList", dateList.value);
|
|
188
|
-
console.log("summitDates", dateList.value);
|
|
189
|
-
console.log("eventsDates", dateList.value);
|
|
190
187
|
return [.../* @__PURE__ */ new Set([...dateList.value, ...summitDates.value, ...eventsDates.value])].flat().sort((a, b) => dayjs(a).isAfter(dayjs(b)) ? 1 : -1);
|
|
191
188
|
});
|
|
192
189
|
const latestDayLoaded = ref("");
|
|
@@ -194,7 +191,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
194
191
|
if (latestDayLoaded.value) {
|
|
195
192
|
return latestDayLoaded.value;
|
|
196
193
|
}
|
|
197
|
-
console.log(allDates.value);
|
|
198
194
|
const dates = allDates.value;
|
|
199
195
|
if (!dates.length) return null;
|
|
200
196
|
const today = dayjs().format("YYYY-MM-DD");
|
|
@@ -227,10 +223,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
227
223
|
if (latestDay.value) {
|
|
228
224
|
latestDayLoaded.value = latestDay.value;
|
|
229
225
|
(_a = calendar.value) == null ? void 0 : _a.pickDay(dayjs(latestDay.value));
|
|
230
|
-
console.log("latestDay", 1, latestDay.value);
|
|
231
226
|
changeMeetingDay(latestDay.value);
|
|
232
227
|
} else {
|
|
233
|
-
console.log("latestDay", 2, latestDay.value);
|
|
234
228
|
changeMeetingDay(formatDate());
|
|
235
229
|
}
|
|
236
230
|
},
|
|
@@ -245,7 +239,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
245
239
|
}
|
|
246
240
|
isLimit.value = false;
|
|
247
241
|
calendar.value.selectDate(val);
|
|
248
|
-
console.log("selectDate", calendar.value.selectedDay);
|
|
249
242
|
changeMeetingDay(formatDate(calendar.value.selectedDay));
|
|
250
243
|
};
|
|
251
244
|
const changeGroup = () => {
|
|
@@ -68,7 +68,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
68
68
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
69
69
|
const { t, locale, cycleTypeOptions0, intervalWeekOptions, getPlatformLabel } = useMeetingConfig();
|
|
70
70
|
const props = __props;
|
|
71
|
-
console.log(props);
|
|
72
71
|
const message = useMessage(null);
|
|
73
72
|
const cycleTypeOptions = cycleTypeOptions0;
|
|
74
73
|
const weekOptions = intervalWeekOptions;
|
|
@@ -98,6 +97,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
98
97
|
};
|
|
99
98
|
const form = ref(Object.assign({}, initForm));
|
|
100
99
|
const formRef = ref(null);
|
|
100
|
+
const privateVisible = ref(false);
|
|
101
101
|
const loading = ref(false);
|
|
102
102
|
const rules = computed(() => {
|
|
103
103
|
return {
|
|
@@ -390,7 +390,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
390
390
|
(_d = (_c = formRef.value) == null ? void 0 : _c.resetFields) == null ? void 0 : _d.call(_c);
|
|
391
391
|
emits("cancel");
|
|
392
392
|
};
|
|
393
|
-
const privateVisible = ref(false);
|
|
394
393
|
const changeIsPrivate = () => {
|
|
395
394
|
if (form.value.is_private) {
|
|
396
395
|
form.value.is_cycle = false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendesign-plus-test/components",
|
|
3
|
-
"version": "0.0.1-rc.
|
|
3
|
+
"version": "0.0.1-rc.92",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"vue-dompurify-html": "^3.1.2",
|
|
45
45
|
"vue": "^3.5.13",
|
|
46
46
|
"element-plus": "2.13.1",
|
|
47
|
-
"@opendesign-plus/
|
|
48
|
-
"@opendesign-plus/
|
|
47
|
+
"@opendesign-plus/styles": "0.0.1-rc.2",
|
|
48
|
+
"@opendesign-plus/composables": "0.0.1-rc.10"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@vitejs/plugin-vue": "^5.2.1",
|