@opendesign-plus-test/components 0.0.1-rc.16 → 0.0.1-rc.18

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-test/components",
3
- "version": "0.0.1-rc.16",
3
+ "version": "0.0.1-rc.18",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -156,11 +156,6 @@ const getIcon = (item: CalendarItemT) => {
156
156
  <div class="event-name">
157
157
  <OLink v-if="event.link" :href="event.link" target="_blank" v-bind="event.linkProps || {}">
158
158
  {{ event.name }}
159
- <template #suffix>
160
- <OIcon>
161
- <OIconChevronRight />
162
- </OIcon>
163
- </template>
164
159
  </OLink>
165
160
  <span v-else>{{ event.name }}</span>
166
161
  </div>
@@ -243,7 +238,7 @@ const getIcon = (item: CalendarItemT) => {
243
238
  .o-events-calendar {
244
239
  .month-list {
245
240
  display: flex;
246
- border-radius: 4px 4px 0 0;
241
+ border-radius: var(--o-radius_control-l) var(--o-radius_control-l) 0 0;
247
242
  background-color: var(--o-color-control2-light);
248
243
  color: var(--o-color-info1);
249
244
 
@@ -264,6 +259,13 @@ const getIcon = (item: CalendarItemT) => {
264
259
 
265
260
  .o-collapse {
266
261
  --collapse-padding: 0;
262
+ --collapse-radius: 0 0 var(--o-radius_control-l) var(--o-radius_control-l);
263
+ @include respond-to('pad_v') {
264
+ --collapse-radius: var(--o-radius_control-l);
265
+ }
266
+ @include respond-to('phone') {
267
+ --collapse-radius: var(--o-radius_control-l);
268
+ }
267
269
 
268
270
  .o-collapse-item {
269
271
  .o-collapse-item-header {