@varlet/ui 3.1.4 → 3.2.0-alpha.1711119852830
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/README.md +3 -0
- package/README.zh-CN.md +4 -1
- package/es/action-sheet/style/index.mjs +1 -1
- 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/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 +1 -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 +1 -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 +1 -0
- package/es/varlet.esm.js +3379 -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 +96 -24
- package/package.json +7 -7
- package/types/bottomNavigation.d.ts +1 -0
- package/types/styleVars.d.ts +14 -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.1711119852830",
|
|
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": [
|
|
@@ -6946,6 +6955,15 @@
|
|
|
6946
6955
|
"type": "string | number | boolean",
|
|
6947
6956
|
"kind": "expression"
|
|
6948
6957
|
}
|
|
6958
|
+
},
|
|
6959
|
+
{
|
|
6960
|
+
"name": "scroller-height",
|
|
6961
|
+
"description": "The height of the scroll container, which can be used to implement functions such as longitudinal partial scrolling and fixed table headers.",
|
|
6962
|
+
"default": "-",
|
|
6963
|
+
"value": {
|
|
6964
|
+
"type": "string | number",
|
|
6965
|
+
"kind": "expression"
|
|
6966
|
+
}
|
|
6949
6967
|
}
|
|
6950
6968
|
],
|
|
6951
6969
|
"events": [],
|