@varlet/ui 3.1.3 → 3.2.0-alpha.1710928822670
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/es/bottom-navigation/BottomNavigation.mjs +12 -1
- package/es/bottom-navigation/bottomNavigation.css +1 -1
- package/es/bottom-navigation/props.mjs +1 -0
- package/es/bottom-navigation-item/BottomNavigationItem.mjs +49 -16
- package/es/bottom-navigation-item/bottomNavigationItem.css +1 -1
- package/es/floating-panel/FloatingPanel.mjs +1 -1
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/snackbar/style/index.mjs +1 -1
- package/es/space/Space.mjs +1 -1
- package/es/space/space.css +1 -1
- package/es/style.css +1 -1
- package/es/table/Table.mjs +4 -3
- package/es/table/props.mjs +3 -0
- package/es/table/table.css +1 -1
- package/es/themes/dark/bottomNavigation.mjs +1 -0
- package/es/themes/dark/bottomNavigationItem.mjs +7 -1
- package/es/themes/dark/table.mjs +2 -0
- package/es/themes/md3-dark/bottomNavigation.mjs +1 -0
- package/es/themes/md3-dark/bottomNavigationItem.mjs +6 -1
- package/es/themes/md3-dark/table.mjs +2 -0
- package/es/themes/md3-light/bottomNavigation.mjs +1 -0
- package/es/themes/md3-light/bottomNavigationItem.mjs +7 -1
- package/es/themes/md3-light/table.mjs +2 -0
- package/es/varlet.esm.js +3382 -3308
- package/highlight/web-types.en-US.json +20 -2
- package/highlight/web-types.zh-CN.json +8163 -0
- package/lib/style.css +1 -1
- package/lib/varlet.cjs.js +100 -25
- package/package.json +7 -7
- package/types/bottomNavigation.d.ts +1 -0
- package/types/styleVars.d.ts +16 -0
- package/types/table.d.ts +1 -0
- package/umd/varlet.js +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"framework": "vue",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.2.0-alpha.1710928822670",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -700,11 +700,20 @@
|
|
|
700
700
|
{
|
|
701
701
|
"name": "fab-props",
|
|
702
702
|
"description": "Fab button props",
|
|
703
|
-
"default": "{type:
|
|
703
|
+
"default": "{ type: 'primary' }",
|
|
704
704
|
"value": {
|
|
705
705
|
"type": "ButtonProps",
|
|
706
706
|
"kind": "expression"
|
|
707
707
|
}
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"name": "variant",
|
|
711
|
+
"description": "Variant mode",
|
|
712
|
+
"default": "false",
|
|
713
|
+
"value": {
|
|
714
|
+
"type": "boolean",
|
|
715
|
+
"kind": "expression"
|
|
716
|
+
}
|
|
708
717
|
}
|
|
709
718
|
],
|
|
710
719
|
"events": [
|
|
@@ -6938,6 +6947,15 @@
|
|
|
6938
6947
|
"kind": "expression"
|
|
6939
6948
|
}
|
|
6940
6949
|
},
|
|
6950
|
+
{
|
|
6951
|
+
"name": "scroller-height",
|
|
6952
|
+
"description": "The height of the scroll container, which can be used to implement functions such as longitudinal partial scrolling and fixed table headers.",
|
|
6953
|
+
"default": "-",
|
|
6954
|
+
"value": {
|
|
6955
|
+
"type": "string | number",
|
|
6956
|
+
"kind": "expression"
|
|
6957
|
+
}
|
|
6958
|
+
},
|
|
6941
6959
|
{
|
|
6942
6960
|
"name": "elevation",
|
|
6943
6961
|
"description": "Elevation level, options `true` `false` and level of `0-24`",
|