@opendesign-plus-test/components 0.0.1-rc.94 → 0.0.1-rc.96
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/components/header-search/OHeaderSearch.vue.d.ts +6 -6
- package/dist/components/header-search/index.d.ts +3 -3
- package/dist/components/header-user/OHeaderUser.vue.d.ts +1 -1
- package/dist/components/header-user/index.d.ts +3 -3
- package/dist/components/search/OSearchInput.vue.d.ts +6 -6
- package/dist/components/search/index.d.ts +3 -3
- package/dist/components/search/internal/SearchImageInput.vue.d.ts +1 -1
- package/dist/components.cjs.js +20 -20
- package/dist/components.css +1 -1
- package/dist/components.es.js +427 -427
- package/dist/treeshaking/components/meeting/OMeetingSigCalendar.css +9 -15
- package/dist/treeshaking/components/meeting/OMeetingSigCalendar.vue.mjs +10 -10
- package/dist/treeshaking/components/meeting/components/OMeetingSigAside.css +3 -0
- package/package.json +1 -1
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
font-weight: 500;
|
|
70
70
|
display: flex;
|
|
71
71
|
align-items: center;
|
|
72
|
-
padding: var(--o-gap-3)
|
|
72
|
+
padding: var(--o-gap-3) 0 0;
|
|
73
73
|
font-size: 16px;
|
|
74
74
|
line-height: 24px;
|
|
75
75
|
}
|
|
@@ -99,12 +99,7 @@
|
|
|
99
99
|
}
|
|
100
100
|
@media (max-width: 1200px) {
|
|
101
101
|
.o-sig-meeting-calendar .meeting-card-header {
|
|
102
|
-
padding: var(--o-gap-3)
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
@media (max-width: 840px) {
|
|
106
|
-
.o-sig-meeting-calendar .meeting-card-header {
|
|
107
|
-
display: none;
|
|
102
|
+
padding: var(--o-gap-3) 0 0;
|
|
108
103
|
}
|
|
109
104
|
}
|
|
110
105
|
.o-sig-meeting-calendar .meeting-card-header .date-meeting {
|
|
@@ -113,6 +108,7 @@
|
|
|
113
108
|
}
|
|
114
109
|
.o-sig-meeting-calendar .meeting-card-header .header-left {
|
|
115
110
|
width: 35%;
|
|
111
|
+
padding-left: var(--o-gap-5);
|
|
116
112
|
padding-bottom: var(--o-gap-3);
|
|
117
113
|
color: var(--o-color-info1);
|
|
118
114
|
font-size: 16px;
|
|
@@ -142,19 +138,17 @@
|
|
|
142
138
|
line-height: 18px;
|
|
143
139
|
}
|
|
144
140
|
}
|
|
141
|
+
@media (max-width: 1200px) {
|
|
142
|
+
.o-sig-meeting-calendar .meeting-card-header .header-left {
|
|
143
|
+
padding-left: var(--o-gap-4);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
145
146
|
.o-sig-meeting-calendar .meeting-card-header .o-tab {
|
|
146
|
-
|
|
147
|
-
align-items: center;
|
|
148
|
-
flex-grow: 1;
|
|
149
|
-
justify-content: center;
|
|
150
|
-
position: relative;
|
|
147
|
+
width: 65%;
|
|
151
148
|
}
|
|
152
149
|
.o-sig-meeting-calendar .meeting-card-header .o-tab .o-tab-nav {
|
|
153
150
|
padding-bottom: var(--o-gap-3);
|
|
154
151
|
}
|
|
155
|
-
.o-sig-meeting-calendar .meeting-card-header .o-tab .o-tab-nav svg path {
|
|
156
|
-
fill: currentColor;
|
|
157
|
-
}
|
|
158
152
|
.o-sig-meeting-calendar .el-input__prefix {
|
|
159
153
|
display: none;
|
|
160
154
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, ref, computed, watch, nextTick, onMounted, openBlock, createElementBlock, createElementVNode, toDisplayString,
|
|
1
|
+
import { defineComponent, ref, computed, watch, nextTick, onMounted, openBlock, createElementBlock, unref, createElementVNode, toDisplayString, createVNode, withCtx, createCommentVNode, Fragment, renderList, createBlock, resolveDynamicComponent, createTextVNode, renderSlot } from "vue";
|
|
2
2
|
import { OPopover, OIcon, OTab, OTabPane, OSelect, OOption, ODivider, OScroller, OResult, OFigure } from "@opensig/opendesign";
|
|
3
3
|
import dayjs from "dayjs";
|
|
4
4
|
import IconTips from "../../_virtual/icon-tips.mjs";
|
|
@@ -15,13 +15,16 @@ const _hoisted_1 = {
|
|
|
15
15
|
class: "o-sig-meeting-calendar",
|
|
16
16
|
style: { "--height": 400 }
|
|
17
17
|
};
|
|
18
|
-
const _hoisted_2 = {
|
|
18
|
+
const _hoisted_2 = {
|
|
19
|
+
key: 0,
|
|
20
|
+
class: "meeting-card-header"
|
|
21
|
+
};
|
|
19
22
|
const _hoisted_3 = {
|
|
20
23
|
key: 0,
|
|
21
24
|
class: "header-left"
|
|
22
25
|
};
|
|
23
26
|
const _hoisted_4 = {
|
|
24
|
-
key:
|
|
27
|
+
key: 1,
|
|
25
28
|
class: "phone-filter-wrapper"
|
|
26
29
|
};
|
|
27
30
|
const _hoisted_5 = { class: "date-select" };
|
|
@@ -198,7 +201,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
198
201
|
});
|
|
199
202
|
return (_ctx, _cache) => {
|
|
200
203
|
return openBlock(), createElementBlock("div", _hoisted_1, [
|
|
201
|
-
|
|
204
|
+
!unref(lePadV) ? (openBlock(), createElementBlock("div", _hoisted_2, [
|
|
202
205
|
latestDate.value ? (openBlock(), createElementBlock("div", _hoisted_3, [
|
|
203
206
|
createElementVNode("span", null, toDisplayString(unref(t)("meeting.latestMeeting")), 1),
|
|
204
207
|
createElementVNode("span", null, toDisplayString(unref(dayjs)(latestDate.value).format("YYYY/MM/DD")), 1),
|
|
@@ -247,8 +250,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
247
250
|
]),
|
|
248
251
|
_: 1
|
|
249
252
|
}, 8, ["modelValue"])
|
|
250
|
-
]),
|
|
251
|
-
unref(lePadV)
|
|
253
|
+
])) : createCommentVNode("", true),
|
|
254
|
+
unref(lePadV) ? (openBlock(), createElementBlock("div", _hoisted_4, [
|
|
252
255
|
createElementVNode("div", _hoisted_5, [
|
|
253
256
|
createVNode(unref(OSelect), {
|
|
254
257
|
modelValue: selectDate.value,
|
|
@@ -292,10 +295,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
292
295
|
}, 8, ["modelValue"])
|
|
293
296
|
])
|
|
294
297
|
])) : createCommentVNode("", true),
|
|
295
|
-
|
|
296
|
-
key: 1,
|
|
297
|
-
class: "meeting-divider"
|
|
298
|
-
})) : createCommentVNode("", true),
|
|
298
|
+
createVNode(unref(ODivider), { class: "meeting-divider" }),
|
|
299
299
|
createElementVNode("div", _hoisted_6, [
|
|
300
300
|
!unref(lePadV) && monthIdx.value !== -1 ? (openBlock(), createBlock(_sfc_main$1, {
|
|
301
301
|
key: 0,
|