@varlet/ui 3.13.0 → 3.14.0-alpha.1772307023035
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 +0 -10
- package/es/bottom-navigation/BottomNavigation.mjs +2 -0
- package/es/bottom-navigation/props.mjs +4 -0
- package/es/bottom-navigation-item/BottomNavigationItem.mjs +11 -2
- package/es/bottom-navigation-item/bottomNavigationItem.css +1 -1
- package/es/field-decorator/fieldDecorator.css +1 -1
- package/es/index.bundle.mjs +1 -1
- package/es/index.mjs +1 -1
- package/es/locale/en-US.mjs +3 -1
- package/es/locale/fa-IR.mjs +3 -1
- package/es/locale/ja-JP.mjs +3 -1
- package/es/locale/zh-CN.mjs +3 -1
- package/es/locale/zh-TW.mjs +3 -1
- package/es/option/Option.mjs +31 -2
- package/es/select/Select.mjs +263 -42
- package/es/select/SelectFilter.mjs +61 -0
- package/es/select/props.mjs +4 -0
- package/es/select/select.css +1 -1
- package/es/select/useSelectFilterSize.mjs +27 -0
- package/es/themes/dark/fieldDecorator.mjs +1 -1
- package/es/themes/dark/select.mjs +4 -1
- package/es/themes/md3-dark/fieldDecorator.mjs +1 -1
- package/es/themes/md3-dark/select.mjs +4 -1
- package/es/themes/md3-light/fieldDecorator.mjs +1 -1
- package/es/themes/md3-light/select.mjs +4 -1
- package/es/varlet.css +1 -1
- package/es/varlet.esm.js +8834 -8550
- package/highlight/web-types.en-US.json +32 -1
- package/lib/varlet.cjs.js +2191 -1830
- package/lib/varlet.css +1 -1
- package/package.json +7 -7
- package/types/bottomNavigation.d.ts +1 -0
- package/types/index.d.ts +2 -2
- package/types/select.d.ts +5 -0
- package/types/styleVars.d.ts +3 -0
- package/umd/varlet.js +8 -8
- package/highlight/web-types.zh-CN.json +0 -9167
|
@@ -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.14.0-alpha.1772307023035",
|
|
5
5
|
"name": "VARLET",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -1075,6 +1075,15 @@
|
|
|
1075
1075
|
"type": "boolean",
|
|
1076
1076
|
"kind": "expression"
|
|
1077
1077
|
}
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"name": "animated",
|
|
1081
|
+
"description": "Whether to enable content switching animation",
|
|
1082
|
+
"default": "true",
|
|
1083
|
+
"value": {
|
|
1084
|
+
"type": "boolean",
|
|
1085
|
+
"kind": "expression"
|
|
1086
|
+
}
|
|
1078
1087
|
}
|
|
1079
1088
|
],
|
|
1080
1089
|
"events": [
|
|
@@ -6842,6 +6851,24 @@
|
|
|
6842
6851
|
"type": "string",
|
|
6843
6852
|
"kind": "expression"
|
|
6844
6853
|
}
|
|
6854
|
+
},
|
|
6855
|
+
{
|
|
6856
|
+
"name": "filterable",
|
|
6857
|
+
"description": "Whether to filter options",
|
|
6858
|
+
"default": "false",
|
|
6859
|
+
"value": {
|
|
6860
|
+
"type": "boolean",
|
|
6861
|
+
"kind": "expression"
|
|
6862
|
+
}
|
|
6863
|
+
},
|
|
6864
|
+
{
|
|
6865
|
+
"name": "filter",
|
|
6866
|
+
"description": "Custom filter method",
|
|
6867
|
+
"default": "-",
|
|
6868
|
+
"value": {
|
|
6869
|
+
"type": "(pattern: string, option: SelectOption) => boolean",
|
|
6870
|
+
"kind": "expression"
|
|
6871
|
+
}
|
|
6845
6872
|
}
|
|
6846
6873
|
],
|
|
6847
6874
|
"events": [
|
|
@@ -6890,6 +6917,10 @@
|
|
|
6890
6917
|
{
|
|
6891
6918
|
"name": "arrow-icon",
|
|
6892
6919
|
"description": "Arrow icon"
|
|
6920
|
+
},
|
|
6921
|
+
{
|
|
6922
|
+
"name": "empty",
|
|
6923
|
+
"description": "Content when there are no options or no filter results; allows full customization of the empty state container; when not used, shows default empty state with i18n text"
|
|
6893
6924
|
}
|
|
6894
6925
|
]
|
|
6895
6926
|
},
|