@sdata/web-vue 2.6.0 → 2.8.0
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/sd.css +20 -0
- package/dist/sd.min.css +1 -1
- package/es/_components/transition/expand-transition.vue.d.ts +2 -2
- package/es/calendar/components/cell.vue.d.ts +26 -26
- package/es/cascader/cascader.vue.d.ts +8 -8
- package/es/date-picker/panels/date/index.vue.d.ts +2 -2
- package/es/date-picker/panels/month/index.vue.d.ts +2 -2
- package/es/date-picker/panels/quarter/index.vue.d.ts +2 -2
- package/es/date-picker/panels/week/index.vue.d.ts +2 -2
- package/es/date-picker/panels/year/index.vue.d.ts +2 -2
- package/es/date-picker/picker-panel.vue.d.ts +12 -12
- package/es/date-picker/picker.vue.d.ts +12 -12
- package/es/date-picker/range-picker.vue.d.ts +13 -13
- package/es/drawer/drawer.vue.d.ts +5 -5
- package/es/drawer/index.d.ts +1 -0
- package/es/dropdown/dropdown-button.vue.d.ts +4 -4
- package/es/ellipsis/ellipsis.vue.d.ts +7 -7
- package/es/ellipsis/performant-ellipsis.vue.d.ts +5 -5
- package/es/image/preview.vue.d.ts +2 -2
- package/es/index.css +20 -0
- package/es/index.d.ts +1 -1
- package/es/input/input-password.vue.d.ts +3 -3
- package/es/layout/index.d.ts +39 -1
- package/es/layout/interface.d.ts +4 -0
- package/es/layout/sider.vue.d.ts +33 -7
- package/es/layout/sider.vue_vue_type_script_setup_true_lang.js +69 -10
- package/es/layout/style/index.css +20 -0
- package/es/layout/style/index.scss +24 -0
- package/es/modal/modal.vue.d.ts +4 -4
- package/es/resize-box/resize-box.vue.d.ts +4 -4
- package/es/split/split.vue.d.ts +4 -4
- package/es/tag/tag.vue.d.ts +2 -2
- package/es/time-picker/time-picker.vue.d.ts +2 -2
- package/es/tree/expand-transition.vue.d.ts +2 -2
- package/es/tree-select/tree-select.vue.d.ts +9 -9
- package/json/vetur-attributes.json +7 -0
- package/json/vetur-tags.json +3 -1
- package/json/web-types.json +17 -1
- package/package.json +7 -7
package/dist/sd.css
CHANGED
|
@@ -10548,6 +10548,26 @@ body.sd-tour-active .sd-tour-popover * {
|
|
|
10548
10548
|
border: 1px solid var(--sd-color-fill-1);
|
|
10549
10549
|
border-inline-start: 0;
|
|
10550
10550
|
}
|
|
10551
|
+
.sd-layout-sider-temporary {
|
|
10552
|
+
flex: 0 0 auto;
|
|
10553
|
+
width: auto;
|
|
10554
|
+
background: transparent;
|
|
10555
|
+
}
|
|
10556
|
+
.sd-layout-sider-temporary-trigger {
|
|
10557
|
+
display: inline-flex;
|
|
10558
|
+
align-items: center;
|
|
10559
|
+
justify-content: center;
|
|
10560
|
+
width: 40px;
|
|
10561
|
+
height: 40px;
|
|
10562
|
+
color: var(--sd-color-text-1);
|
|
10563
|
+
font-size: 18px;
|
|
10564
|
+
border-radius: 8px;
|
|
10565
|
+
cursor: pointer;
|
|
10566
|
+
transition: background-color 0.2s ease;
|
|
10567
|
+
}
|
|
10568
|
+
.sd-layout-sider-temporary-trigger:hover {
|
|
10569
|
+
background: var(--sd-color-fill-2);
|
|
10570
|
+
}
|
|
10551
10571
|
|
|
10552
10572
|
.sd-input-tag {
|
|
10553
10573
|
display: inline-flex;
|