@sdata/web-vue 3.15.0 → 3.16.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 +18 -0
- package/dist/sd.min.css +1 -1
- package/es/basic-crud-table/basic-crud-table.vue_vue_type_script_setup_true_lang.js +11 -1
- package/es/basic-crud-table/style/index.css +18 -0
- package/es/basic-crud-table/style/index.scss +21 -0
- package/es/basic-crud-table/types.d.ts +1 -0
- package/es/card/card.d.ts +1 -1
- package/es/card/index.d.ts +3 -3
- package/es/cascader/cascader.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/color-picker/color-picker.js +6 -5
- package/es/color-picker/panel.d.ts +2 -2
- package/es/color-picker/panel.js +2 -3
- package/es/config-provider/config-provider.vue.d.ts +7 -1
- package/es/config-provider/config-provider.vue_vue_type_script_setup_true_lang.js +7 -1
- package/es/config-provider/context.d.ts +4 -0
- package/es/config-provider/index.d.ts +25 -15
- package/es/index.css +18 -0
- package/es/index.js +4 -4
- package/es/json-form/utils.js +2 -2
- package/es/overflow-list/overflow-list.js +1 -1
- package/es/pagination/page-options.vue_vue_type_script_setup_true_lang.js +3 -3
- package/es/sd-vue.js +4 -4
- package/es/select/select.js +1 -1
- package/es/table/table-operation-td.js +1 -1
- package/es/table/table-operation-th.js +1 -1
- package/es/table/table-th.js +1 -1
- package/json/vetur-attributes.json +3 -0
- package/json/vetur-tags.json +1 -0
- package/json/web-types.json +9 -1
- package/package.json +1 -1
- package/es/color-picker/colors.d.ts +0 -1
- package/es/color-picker/colors.js +0 -27
package/dist/sd.css
CHANGED
|
@@ -20928,6 +20928,24 @@ body.sd-tour-active .sd-tour-popover * {
|
|
|
20928
20928
|
width: 100%;
|
|
20929
20929
|
min-width: 0;
|
|
20930
20930
|
}
|
|
20931
|
+
.sd-basic-crud-table-full-height {
|
|
20932
|
+
height: 100%;
|
|
20933
|
+
min-height: 0;
|
|
20934
|
+
overflow: hidden;
|
|
20935
|
+
}
|
|
20936
|
+
.sd-basic-crud-table-full-height .sd-basic-crud-table-body {
|
|
20937
|
+
display: flex;
|
|
20938
|
+
flex: 1 1 auto;
|
|
20939
|
+
flex-direction: column;
|
|
20940
|
+
min-height: 0;
|
|
20941
|
+
overflow: hidden;
|
|
20942
|
+
}
|
|
20943
|
+
.sd-basic-crud-table-full-height .sd-basic-crud-table-body > .sd-table {
|
|
20944
|
+
display: flex;
|
|
20945
|
+
flex: 1 1 auto;
|
|
20946
|
+
flex-direction: column;
|
|
20947
|
+
min-height: 0;
|
|
20948
|
+
}
|
|
20931
20949
|
.sd-basic-crud-table-header {
|
|
20932
20950
|
display: flex;
|
|
20933
20951
|
flex-direction: column;
|