@sdata/web-vue 2.9.0 → 2.10.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 +29 -0
- package/dist/sd.min.css +1 -1
- package/es/index.css +29 -0
- package/es/layout/context.d.ts +2 -0
- package/es/layout/index.d.ts +56 -0
- package/es/layout/interface.d.ts +3 -0
- package/es/layout/sider.vue.d.ts +38 -3
- package/es/layout/sider.vue_vue_type_script_setup_true_lang.js +97 -6
- package/es/layout/style/index.css +19 -0
- package/es/layout/style/index.scss +28 -0
- package/es/layout/style/token.scss +6 -0
- package/es/menu/menu.js +20 -9
- package/es/menu/style/index.css +10 -0
- package/es/menu/style/index.scss +20 -0
- package/json/vetur-attributes.json +12 -0
- package/json/vetur-tags.json +3 -0
- package/json/web-types.json +25 -1
- package/package.json +1 -1
package/json/vetur-tags.json
CHANGED
package/json/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@sdata/web-vue",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.9.0",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -4618,6 +4618,30 @@
|
|
|
4618
4618
|
"kind": "expression"
|
|
4619
4619
|
}
|
|
4620
4620
|
},
|
|
4621
|
+
{
|
|
4622
|
+
"name": "rail",
|
|
4623
|
+
"description": "Rail mode: Sider stays at rail width (icons only), independent from collapsed",
|
|
4624
|
+
"value": {
|
|
4625
|
+
"type": "boolean",
|
|
4626
|
+
"kind": "expression"
|
|
4627
|
+
}
|
|
4628
|
+
},
|
|
4629
|
+
{
|
|
4630
|
+
"name": "rail-width",
|
|
4631
|
+
"description": "Rail width, only effective when rail=true",
|
|
4632
|
+
"value": {
|
|
4633
|
+
"type": "number|string",
|
|
4634
|
+
"kind": "expression"
|
|
4635
|
+
}
|
|
4636
|
+
},
|
|
4637
|
+
{
|
|
4638
|
+
"name": "expand-on-hover",
|
|
4639
|
+
"description": "In rail mode, temporarily expands to width on hover (overlays content without pushing it), collapses on leave. Only effective when rail=true",
|
|
4640
|
+
"value": {
|
|
4641
|
+
"type": "boolean",
|
|
4642
|
+
"kind": "expression"
|
|
4643
|
+
}
|
|
4644
|
+
},
|
|
4621
4645
|
{
|
|
4622
4646
|
"name": "drawer-props",
|
|
4623
4647
|
"description": "Drawer passthrough config (only effective when temporary=true)",
|