@opendesign-plus/components 0.0.1-rc.34 → 0.0.1-rc.35
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opendesign-plus/components",
|
|
3
|
-
"version": "0.0.1-rc.
|
|
3
|
+
"version": "0.0.1-rc.35",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"vue-dompurify-html": "^3.1.2",
|
|
35
35
|
"vue": "^3.5.13",
|
|
36
36
|
"element-plus": "2.13.1",
|
|
37
|
-
"@opendesign-plus/
|
|
38
|
-
"@opendesign-plus/
|
|
37
|
+
"@opendesign-plus/composables": "0.0.1-rc.10",
|
|
38
|
+
"@opendesign-plus/styles": "0.0.1-rc.2"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
@@ -205,7 +205,7 @@ const changeMeetingDay = useDebounceFn((day: string, event?: Event) => {
|
|
|
205
205
|
|
|
206
206
|
watch(() => latestDay.value,
|
|
207
207
|
() => {
|
|
208
|
-
calendar.value?.pickDay(dayjs(
|
|
208
|
+
calendar.value?.pickDay(dayjs(latestDay.value));
|
|
209
209
|
changeMeetingDay(latestDay.value);
|
|
210
210
|
},
|
|
211
211
|
{
|
|
@@ -884,7 +884,7 @@ defineExpose({
|
|
|
884
884
|
display: none;
|
|
885
885
|
}
|
|
886
886
|
}
|
|
887
|
-
@include respond
|
|
887
|
+
@include respond('pad_v') {
|
|
888
888
|
--tab-nav-justify: flex-end;
|
|
889
889
|
width: 50%;
|
|
890
890
|
--tab-nav-padding: 0 0 14px;
|
|
@@ -1232,7 +1232,7 @@ const cancelActions = computed<DialogActionT[]>(() => {
|
|
|
1232
1232
|
border-radius: var(--meeting-card-radius);
|
|
1233
1233
|
transition: margin var(--o-easing-standard) var(--o-duration-s);
|
|
1234
1234
|
--icon-size: 24px;
|
|
1235
|
-
@include respond
|
|
1235
|
+
@include respond('pad_h') {
|
|
1236
1236
|
padding: var(--o-gap-3) var(--o-gap-4);
|
|
1237
1237
|
}
|
|
1238
1238
|
@include respond('<=pad_v') {
|
|
@@ -1245,10 +1245,10 @@ const cancelActions = computed<DialogActionT[]>(() => {
|
|
|
1245
1245
|
|
|
1246
1246
|
&.o-collapse-item-expanded {
|
|
1247
1247
|
margin-top: var(--o-gap-4);
|
|
1248
|
-
@include respond
|
|
1248
|
+
@include respond('<=laptop') {
|
|
1249
1249
|
margin-top: var(--o-gap-3);
|
|
1250
1250
|
}
|
|
1251
|
-
@include respond
|
|
1251
|
+
@include respond('<=pad_v') {
|
|
1252
1252
|
margin-top: var(--o-gap-2);
|
|
1253
1253
|
}
|
|
1254
1254
|
}
|