naive-ui 2.20.3 → 2.21.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/es/_internal/select-menu/src/SelectMenu.d.ts +3 -0
- package/es/_internal/selection/src/Selection.d.ts +3 -0
- package/es/_internal/suffix/src/Suffix.d.ts +4 -1
- package/es/_internal/suffix/src/Suffix.js +4 -1
- package/es/_styles/common/dark.js +1 -1
- package/es/_styles/common/light.d.ts +3 -0
- package/es/_styles/common/light.js +5 -2
- package/es/_styles/global/index.cssr.js +9 -4
- package/es/_styles/transitions/icon-switch.cssr.js +6 -2
- package/es/_utils/naive/extract-public-props.d.ts +1 -1
- package/es/alert/src/Alert.d.ts +3 -0
- package/es/auto-complete/src/AutoComplete.d.ts +8 -1
- package/es/auto-complete/src/AutoComplete.js +2 -2
- package/es/avatar/src/Avatar.d.ts +8 -1
- package/es/avatar/src/Avatar.js +41 -9
- package/es/avatar/src/styles/index.cssr.js +2 -2
- package/es/button/src/Button.d.ts +149 -52
- package/es/button/src/Button.js +128 -56
- package/es/button/src/interface.d.ts +1 -1
- package/es/button/styles/dark.js +3 -0
- package/es/button/styles/light.d.ts +14 -5
- package/es/button/styles/light.js +10 -3
- package/es/calendar/src/Calendar.d.ts +143 -50
- package/es/calendar/styles/light.d.ts +14 -5
- package/es/card/src/Card.d.ts +3 -0
- package/es/cascader/src/Cascader.d.ts +3 -0
- package/es/cascader/src/CascaderOption.d.ts +3 -0
- package/es/cascader/src/CascaderSelectMenu.d.ts +3 -0
- package/es/cascader/src/CascaderSubmenu.d.ts +3 -0
- package/es/checkbox/src/Checkbox.d.ts +8 -5
- package/es/checkbox/src/Checkbox.js +3 -3
- package/es/collapse/src/Collapse.d.ts +3 -0
- package/es/color-picker/src/ColorInputUnit.d.ts +17 -5
- package/es/color-picker/src/ColorPicker.d.ts +126 -45
- package/es/color-picker/styles/light.d.ts +14 -5
- package/es/data-table/src/DataTable.d.ts +183 -51
- package/es/data-table/src/DataTable.js +11 -6
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +20 -5
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +20 -5
- package/es/data-table/src/TableParts/Body.d.ts +25 -6
- package/es/data-table/src/TableParts/Body.js +60 -22
- package/es/data-table/src/TableParts/BodyCheckbox.js +1 -1
- package/es/data-table/src/TableParts/Cell.d.ts +40 -10
- package/es/data-table/src/TableParts/Header.d.ts +20 -5
- package/es/data-table/src/TableParts/Header.js +1 -1
- package/es/data-table/src/interface.d.ts +4 -1
- package/es/data-table/src/styles/index.cssr.js +8 -9
- package/es/data-table/styles/light.d.ts +20 -5
- package/es/data-table/styles/light.js +3 -3
- package/es/date-picker/src/DatePicker.d.ts +298 -105
- package/es/date-picker/src/panel/date.d.ts +45 -15
- package/es/date-picker/src/panel/daterange.d.ts +45 -15
- package/es/date-picker/src/panel/datetime.d.ts +45 -15
- package/es/date-picker/src/panel/datetimerange.d.ts +45 -15
- package/es/date-picker/src/panel/month.d.ts +45 -15
- package/es/date-picker/src/panel/use-calendar.d.ts +45 -15
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +45 -15
- package/es/date-picker/src/panel/use-panel-common.d.ts +45 -15
- package/es/date-picker/styles/light.d.ts +28 -10
- package/es/dialog/src/Dialog.d.ts +101 -35
- package/es/dialog/styles/light.d.ts +14 -5
- package/es/drawer/src/Drawer.d.ts +3 -0
- package/es/drawer/src/DrawerBodyWrapper.d.ts +3 -0
- package/es/drawer/src/DrawerContent.d.ts +3 -0
- package/es/dropdown/index.d.ts +1 -1
- package/es/dropdown/src/Dropdown.d.ts +5 -2
- package/es/dropdown/src/DropdownGroup.d.ts +2 -3
- package/es/dropdown/src/DropdownMenu.d.ts +3 -4
- package/es/dropdown/src/DropdownMenu.js +5 -4
- package/es/dropdown/src/DropdownOption.d.ts +3 -4
- package/es/dropdown/src/DropdownOption.js +2 -2
- package/es/dropdown/src/DropdownRenderOption.d.ts +2 -3
- package/es/dropdown/src/interface.d.ts +9 -30
- package/es/dropdown/src/utils.d.ts +1 -0
- package/es/dropdown/src/utils.js +10 -0
- package/es/dynamic-input/src/DynamicInput.d.ts +143 -50
- package/es/dynamic-input/src/InputPreset.d.ts +17 -5
- package/es/dynamic-input/src/PairPreset.d.ts +17 -5
- package/es/dynamic-input/styles/light.d.ts +14 -5
- package/es/dynamic-tags/src/DynamicTags.d.ts +144 -50
- package/es/dynamic-tags/styles/light.d.ts +14 -5
- package/es/ellipsis/src/Ellipsis.d.ts +3 -0
- package/es/global-style/src/GlobalStyle.js +2 -0
- package/es/input/src/Input.d.ts +4 -0
- package/es/input/src/Input.js +6 -0
- package/es/input/src/interface.d.ts +1 -0
- package/es/input-number/src/InputNumber.d.ts +144 -50
- package/es/input-number/styles/light.d.ts +14 -5
- package/es/layout/src/Layout.d.ts +6 -0
- package/es/layout/src/LayoutContent.d.ts +3 -0
- package/es/layout/src/LayoutSider.d.ts +3 -0
- package/es/log/src/Log.d.ts +3 -0
- package/es/mention/src/Mention.d.ts +4 -0
- package/es/menu/index.d.ts +1 -1
- package/es/menu/src/Menu.d.ts +19 -6
- package/es/menu/src/Menu.js +2 -1
- package/es/menu/src/MenuDivider.d.ts +2 -0
- package/es/menu/src/MenuDivider.js +11 -0
- package/es/menu/src/MenuOption.d.ts +8 -1
- package/es/menu/src/MenuOptionContent.d.ts +4 -1
- package/es/menu/src/Submenu.d.ts +18 -16
- package/es/menu/src/interface.d.ts +23 -4
- package/es/menu/src/styles/index.cssr.js +6 -1
- package/es/menu/src/utils.d.ts +4 -2
- package/es/menu/src/utils.js +16 -2
- package/es/menu/styles/light.d.ts +2 -0
- package/es/menu/styles/light.js +3 -2
- package/es/modal/src/BodyWrapper.d.ts +31 -10
- package/es/modal/src/Modal.d.ts +168 -60
- package/es/modal/styles/light.d.ts +14 -5
- package/es/notification/src/NotificationContainer.d.ts +3 -0
- package/es/pagination/src/Pagination.d.ts +4 -0
- package/es/popconfirm/src/Popconfirm.d.ts +143 -50
- package/es/popconfirm/styles/light.d.ts +14 -5
- package/es/popselect/src/Popselect.d.ts +3 -0
- package/es/popselect/src/PopselectPanel.d.ts +3 -0
- package/es/radio/src/Radio.d.ts +3 -0
- package/es/radio/src/RadioButton.d.ts +3 -0
- package/es/radio/src/use-radio.d.ts +2 -0
- package/es/radio/src/use-radio.js +6 -3
- package/es/select/src/Select.d.ts +3 -0
- package/es/slider/src/Slider.d.ts +70 -91
- package/es/slider/src/Slider.js +326 -583
- package/es/slider/src/interface.d.ts +1 -1
- package/es/slider/src/styles/index.cssr.js +86 -16
- package/es/slider/src/utils.d.ts +10 -1
- package/es/slider/src/utils.js +9 -0
- package/es/slider/styles/_common.d.ts +1 -0
- package/es/slider/styles/_common.js +1 -0
- package/es/slider/styles/light.d.ts +1 -0
- package/es/space/src/Space.js +2 -0
- package/es/steps/src/Step.js +1 -1
- package/es/table/src/Table.d.ts +35 -0
- package/es/table/src/Table.js +8 -4
- package/es/table/src/styles/index.cssr.js +1 -1
- package/es/table/styles/light.d.ts +3 -0
- package/es/table/styles/light.js +2 -2
- package/es/tabs/index.d.ts +2 -0
- package/es/tabs/index.js +1 -0
- package/es/tabs/src/Tab.d.ts +35 -18
- package/es/tabs/src/Tab.js +11 -12
- package/es/tabs/src/Tabs.js +58 -18
- package/es/tag/src/Tag.d.ts +8 -3
- package/es/tag/src/Tag.js +10 -2
- package/es/tag/src/styles/index.cssr.js +10 -5
- package/es/tag/src/styles/rtl.cssr.js +7 -1
- package/es/theme-editor/src/ThemeEditor.d.ts +3 -0
- package/es/time-picker/src/Panel.d.ts +17 -5
- package/es/time-picker/src/TimePicker.d.ts +144 -50
- package/es/time-picker/styles/light.d.ts +14 -5
- package/es/tooltip/src/Tooltip.d.ts +3 -0
- package/es/transfer/src/Transfer.d.ts +143 -50
- package/es/transfer/src/TransferFilter.d.ts +17 -5
- package/es/transfer/src/TransferList.d.ts +17 -5
- package/es/transfer/src/TransferListItem.d.ts +17 -5
- package/es/transfer/styles/light.d.ts +14 -5
- package/es/tree/src/Tree.d.ts +3 -0
- package/es/tree/src/TreeNodeCheckbox.d.ts +3 -0
- package/es/tree-select/src/TreeSelect.d.ts +3 -0
- package/es/upload/src/Upload.d.ts +143 -50
- package/es/upload/src/UploadFile.d.ts +18 -6
- package/es/upload/src/UploadProgress.d.ts +17 -5
- package/es/upload/styles/light.d.ts +14 -5
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/select-menu/src/SelectMenu.d.ts +3 -0
- package/lib/_internal/selection/src/Selection.d.ts +3 -0
- package/lib/_internal/suffix/src/Suffix.d.ts +4 -1
- package/lib/_internal/suffix/src/Suffix.js +4 -1
- package/lib/_styles/common/dark.js +1 -1
- package/lib/_styles/common/light.d.ts +3 -0
- package/lib/_styles/common/light.js +5 -2
- package/lib/_styles/global/index.cssr.js +10 -5
- package/lib/_styles/transitions/icon-switch.cssr.js +7 -2
- package/lib/_utils/naive/extract-public-props.d.ts +1 -1
- package/lib/alert/src/Alert.d.ts +3 -0
- package/lib/auto-complete/src/AutoComplete.d.ts +8 -1
- package/lib/auto-complete/src/AutoComplete.js +2 -2
- package/lib/avatar/src/Avatar.d.ts +8 -1
- package/lib/avatar/src/Avatar.js +40 -8
- package/lib/avatar/src/styles/index.cssr.js +2 -2
- package/lib/button/src/Button.d.ts +149 -52
- package/lib/button/src/Button.js +126 -54
- package/lib/button/src/interface.d.ts +1 -1
- package/lib/button/styles/dark.js +3 -0
- package/lib/button/styles/light.d.ts +14 -5
- package/lib/button/styles/light.js +10 -3
- package/lib/calendar/src/Calendar.d.ts +143 -50
- package/lib/calendar/styles/light.d.ts +14 -5
- package/lib/card/src/Card.d.ts +3 -0
- package/lib/cascader/src/Cascader.d.ts +3 -0
- package/lib/cascader/src/CascaderOption.d.ts +3 -0
- package/lib/cascader/src/CascaderSelectMenu.d.ts +3 -0
- package/lib/cascader/src/CascaderSubmenu.d.ts +3 -0
- package/lib/checkbox/src/Checkbox.d.ts +8 -5
- package/lib/checkbox/src/Checkbox.js +3 -3
- package/lib/collapse/src/Collapse.d.ts +3 -0
- package/lib/color-picker/src/ColorInputUnit.d.ts +17 -5
- package/lib/color-picker/src/ColorPicker.d.ts +126 -45
- package/lib/color-picker/styles/light.d.ts +14 -5
- package/lib/data-table/src/DataTable.d.ts +183 -51
- package/lib/data-table/src/DataTable.js +11 -6
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +20 -5
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +20 -5
- package/lib/data-table/src/TableParts/Body.d.ts +25 -6
- package/lib/data-table/src/TableParts/Body.js +60 -22
- package/lib/data-table/src/TableParts/BodyCheckbox.js +1 -1
- package/lib/data-table/src/TableParts/Cell.d.ts +40 -10
- package/lib/data-table/src/TableParts/Header.d.ts +20 -5
- package/lib/data-table/src/TableParts/Header.js +1 -1
- package/lib/data-table/src/interface.d.ts +4 -1
- package/lib/data-table/src/styles/index.cssr.js +8 -9
- package/lib/data-table/styles/light.d.ts +20 -5
- package/lib/data-table/styles/light.js +3 -3
- package/lib/date-picker/src/DatePicker.d.ts +298 -105
- package/lib/date-picker/src/panel/date.d.ts +45 -15
- package/lib/date-picker/src/panel/daterange.d.ts +45 -15
- package/lib/date-picker/src/panel/datetime.d.ts +45 -15
- package/lib/date-picker/src/panel/datetimerange.d.ts +45 -15
- package/lib/date-picker/src/panel/month.d.ts +45 -15
- package/lib/date-picker/src/panel/use-calendar.d.ts +45 -15
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +45 -15
- package/lib/date-picker/src/panel/use-panel-common.d.ts +45 -15
- package/lib/date-picker/styles/light.d.ts +28 -10
- package/lib/dialog/src/Dialog.d.ts +101 -35
- package/lib/dialog/styles/light.d.ts +14 -5
- package/lib/drawer/src/Drawer.d.ts +3 -0
- package/lib/drawer/src/DrawerBodyWrapper.d.ts +3 -0
- package/lib/drawer/src/DrawerContent.d.ts +3 -0
- package/lib/dropdown/index.d.ts +1 -1
- package/lib/dropdown/src/Dropdown.d.ts +5 -2
- package/lib/dropdown/src/DropdownGroup.d.ts +2 -3
- package/lib/dropdown/src/DropdownMenu.d.ts +3 -4
- package/lib/dropdown/src/DropdownMenu.js +5 -4
- package/lib/dropdown/src/DropdownOption.d.ts +3 -4
- package/lib/dropdown/src/DropdownOption.js +1 -1
- package/lib/dropdown/src/DropdownRenderOption.d.ts +2 -3
- package/lib/dropdown/src/interface.d.ts +9 -30
- package/lib/dropdown/src/utils.d.ts +1 -0
- package/lib/dropdown/src/utils.js +12 -1
- package/lib/dynamic-input/src/DynamicInput.d.ts +143 -50
- package/lib/dynamic-input/src/InputPreset.d.ts +17 -5
- package/lib/dynamic-input/src/PairPreset.d.ts +17 -5
- package/lib/dynamic-input/styles/light.d.ts +14 -5
- package/lib/dynamic-tags/src/DynamicTags.d.ts +144 -50
- package/lib/dynamic-tags/styles/light.d.ts +14 -5
- package/lib/ellipsis/src/Ellipsis.d.ts +3 -0
- package/lib/global-style/src/GlobalStyle.js +2 -0
- package/lib/input/src/Input.d.ts +4 -0
- package/lib/input/src/Input.js +6 -0
- package/lib/input/src/interface.d.ts +1 -0
- package/lib/input-number/src/InputNumber.d.ts +144 -50
- package/lib/input-number/styles/light.d.ts +14 -5
- package/lib/layout/src/Layout.d.ts +6 -0
- package/lib/layout/src/LayoutContent.d.ts +3 -0
- package/lib/layout/src/LayoutSider.d.ts +3 -0
- package/lib/log/src/Log.d.ts +3 -0
- package/lib/mention/src/Mention.d.ts +4 -0
- package/lib/menu/index.d.ts +1 -1
- package/lib/menu/src/Menu.d.ts +19 -6
- package/lib/menu/src/Menu.js +2 -1
- package/lib/menu/src/MenuDivider.d.ts +2 -0
- package/lib/menu/src/MenuDivider.js +13 -0
- package/lib/menu/src/MenuOption.d.ts +8 -1
- package/lib/menu/src/MenuOptionContent.d.ts +4 -1
- package/lib/menu/src/Submenu.d.ts +18 -16
- package/lib/menu/src/interface.d.ts +23 -4
- package/lib/menu/src/styles/index.cssr.js +6 -1
- package/lib/menu/src/utils.d.ts +4 -2
- package/lib/menu/src/utils.js +22 -3
- package/lib/menu/styles/light.d.ts +2 -0
- package/lib/menu/styles/light.js +3 -2
- package/lib/modal/src/BodyWrapper.d.ts +31 -10
- package/lib/modal/src/Modal.d.ts +168 -60
- package/lib/modal/styles/light.d.ts +14 -5
- package/lib/notification/src/NotificationContainer.d.ts +3 -0
- package/lib/pagination/src/Pagination.d.ts +4 -0
- package/lib/popconfirm/src/Popconfirm.d.ts +143 -50
- package/lib/popconfirm/styles/light.d.ts +14 -5
- package/lib/popselect/src/Popselect.d.ts +3 -0
- package/lib/popselect/src/PopselectPanel.d.ts +3 -0
- package/lib/radio/src/Radio.d.ts +3 -0
- package/lib/radio/src/RadioButton.d.ts +3 -0
- package/lib/radio/src/use-radio.d.ts +2 -0
- package/lib/radio/src/use-radio.js +6 -3
- package/lib/select/src/Select.d.ts +3 -0
- package/lib/slider/src/Slider.d.ts +70 -91
- package/lib/slider/src/Slider.js +324 -581
- package/lib/slider/src/interface.d.ts +1 -1
- package/lib/slider/src/styles/index.cssr.js +86 -16
- package/lib/slider/src/utils.d.ts +10 -1
- package/lib/slider/src/utils.js +11 -1
- package/lib/slider/styles/_common.d.ts +1 -0
- package/lib/slider/styles/_common.js +1 -0
- package/lib/slider/styles/light.d.ts +1 -0
- package/lib/space/src/Space.js +2 -0
- package/lib/steps/src/Step.js +1 -1
- package/lib/table/src/Table.d.ts +35 -0
- package/lib/table/src/Table.js +8 -4
- package/lib/table/src/styles/index.cssr.js +1 -1
- package/lib/table/styles/light.d.ts +3 -0
- package/lib/table/styles/light.js +2 -2
- package/lib/tabs/index.d.ts +2 -0
- package/lib/tabs/index.js +3 -1
- package/lib/tabs/src/Tab.d.ts +35 -18
- package/lib/tabs/src/Tab.js +10 -11
- package/lib/tabs/src/Tabs.js +57 -17
- package/lib/tag/src/Tag.d.ts +8 -3
- package/lib/tag/src/Tag.js +10 -1
- package/lib/tag/src/styles/index.cssr.js +10 -5
- package/lib/tag/src/styles/rtl.cssr.js +7 -1
- package/lib/theme-editor/src/ThemeEditor.d.ts +3 -0
- package/lib/time-picker/src/Panel.d.ts +17 -5
- package/lib/time-picker/src/TimePicker.d.ts +144 -50
- package/lib/time-picker/styles/light.d.ts +14 -5
- package/lib/tooltip/src/Tooltip.d.ts +3 -0
- package/lib/transfer/src/Transfer.d.ts +143 -50
- package/lib/transfer/src/TransferFilter.d.ts +17 -5
- package/lib/transfer/src/TransferList.d.ts +17 -5
- package/lib/transfer/src/TransferListItem.d.ts +17 -5
- package/lib/transfer/styles/light.d.ts +14 -5
- package/lib/tree/src/Tree.d.ts +3 -0
- package/lib/tree/src/TreeNodeCheckbox.d.ts +3 -0
- package/lib/tree-select/src/TreeSelect.d.ts +3 -0
- package/lib/upload/src/Upload.d.ts +143 -50
- package/lib/upload/src/UploadFile.d.ts +18 -6
- package/lib/upload/src/UploadProgress.d.ts +17 -5
- package/lib/upload/styles/light.d.ts +14 -5
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/web-types.json +146 -9
|
@@ -1134,6 +1134,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1134
1134
|
pressedColor: string;
|
|
1135
1135
|
opacityDisabled: string;
|
|
1136
1136
|
inputColorDisabled: string;
|
|
1137
|
+
buttonColor2: string;
|
|
1138
|
+
buttonColor2Hover: string;
|
|
1139
|
+
buttonColor2Pressed: string;
|
|
1137
1140
|
boxShadow1: string;
|
|
1138
1141
|
boxShadow2: string;
|
|
1139
1142
|
boxShadow3: string;
|
|
@@ -101,20 +101,30 @@ declare const uploadProps: {
|
|
|
101
101
|
fontSizeMedium: string;
|
|
102
102
|
fontSizeLarge: string;
|
|
103
103
|
opacityDisabled: string;
|
|
104
|
+
colorOpacitySecondary: number;
|
|
105
|
+
colorOpacitySecondaryHover: number;
|
|
106
|
+
colorOpacitySecondaryPressed: number;
|
|
107
|
+
colorSecondary: string;
|
|
108
|
+
colorSecondaryHover: string;
|
|
109
|
+
colorSecondaryPressed: string;
|
|
110
|
+
colorTertiary: string;
|
|
111
|
+
colorTertiaryHover: string;
|
|
112
|
+
colorTertiaryPressed: string;
|
|
113
|
+
colorQuaternary: string;
|
|
114
|
+
colorQuaternaryHover: string;
|
|
115
|
+
colorQuaternaryPressed: string;
|
|
104
116
|
color: string;
|
|
105
117
|
colorHover: string;
|
|
106
118
|
colorPressed: string;
|
|
107
119
|
colorFocus: string;
|
|
108
120
|
colorDisabled: string;
|
|
109
121
|
textColor: string;
|
|
122
|
+
textColorTertiary: string;
|
|
110
123
|
textColorHover: string;
|
|
111
124
|
textColorPressed: string;
|
|
112
125
|
textColorFocus: string;
|
|
113
126
|
textColorDisabled: string;
|
|
114
127
|
textColorText: string;
|
|
115
|
-
textColorTextDepth1: string;
|
|
116
|
-
textColorTextDepth2: string;
|
|
117
|
-
textColorTextDepth3: string;
|
|
118
128
|
textColorTextHover: string;
|
|
119
129
|
textColorTextPressed: string;
|
|
120
130
|
textColorTextFocus: string;
|
|
@@ -261,9 +271,8 @@ declare const uploadProps: {
|
|
|
261
271
|
borderDisabledError: string;
|
|
262
272
|
rippleColorError: string;
|
|
263
273
|
waveOpacity: string;
|
|
264
|
-
fontWeightText: string;
|
|
265
274
|
fontWeight: string;
|
|
266
|
-
|
|
275
|
+
fontWeightStrong: string;
|
|
267
276
|
paddingTiny: string;
|
|
268
277
|
paddingSmall: string;
|
|
269
278
|
paddingMedium: string;
|
|
@@ -337,20 +346,30 @@ declare const uploadProps: {
|
|
|
337
346
|
fontSizeMedium: string;
|
|
338
347
|
fontSizeLarge: string;
|
|
339
348
|
opacityDisabled: string;
|
|
349
|
+
colorOpacitySecondary: number;
|
|
350
|
+
colorOpacitySecondaryHover: number;
|
|
351
|
+
colorOpacitySecondaryPressed: number;
|
|
352
|
+
colorSecondary: string;
|
|
353
|
+
colorSecondaryHover: string;
|
|
354
|
+
colorSecondaryPressed: string;
|
|
355
|
+
colorTertiary: string;
|
|
356
|
+
colorTertiaryHover: string;
|
|
357
|
+
colorTertiaryPressed: string;
|
|
358
|
+
colorQuaternary: string;
|
|
359
|
+
colorQuaternaryHover: string;
|
|
360
|
+
colorQuaternaryPressed: string;
|
|
340
361
|
color: string;
|
|
341
362
|
colorHover: string;
|
|
342
363
|
colorPressed: string;
|
|
343
364
|
colorFocus: string;
|
|
344
365
|
colorDisabled: string;
|
|
345
366
|
textColor: string;
|
|
367
|
+
textColorTertiary: string;
|
|
346
368
|
textColorHover: string;
|
|
347
369
|
textColorPressed: string;
|
|
348
370
|
textColorFocus: string;
|
|
349
371
|
textColorDisabled: string;
|
|
350
372
|
textColorText: string;
|
|
351
|
-
textColorTextDepth1: string;
|
|
352
|
-
textColorTextDepth2: string;
|
|
353
|
-
textColorTextDepth3: string;
|
|
354
373
|
textColorTextHover: string;
|
|
355
374
|
textColorTextPressed: string;
|
|
356
375
|
textColorTextFocus: string;
|
|
@@ -497,9 +516,8 @@ declare const uploadProps: {
|
|
|
497
516
|
borderDisabledError: string;
|
|
498
517
|
rippleColorError: string;
|
|
499
518
|
waveOpacity: string;
|
|
500
|
-
fontWeightText: string;
|
|
501
519
|
fontWeight: string;
|
|
502
|
-
|
|
520
|
+
fontWeightStrong: string;
|
|
503
521
|
paddingTiny: string;
|
|
504
522
|
paddingSmall: string;
|
|
505
523
|
paddingMedium: string;
|
|
@@ -573,20 +591,30 @@ declare const uploadProps: {
|
|
|
573
591
|
fontSizeMedium: string;
|
|
574
592
|
fontSizeLarge: string;
|
|
575
593
|
opacityDisabled: string;
|
|
594
|
+
colorOpacitySecondary: number;
|
|
595
|
+
colorOpacitySecondaryHover: number;
|
|
596
|
+
colorOpacitySecondaryPressed: number;
|
|
597
|
+
colorSecondary: string;
|
|
598
|
+
colorSecondaryHover: string;
|
|
599
|
+
colorSecondaryPressed: string;
|
|
600
|
+
colorTertiary: string;
|
|
601
|
+
colorTertiaryHover: string;
|
|
602
|
+
colorTertiaryPressed: string;
|
|
603
|
+
colorQuaternary: string;
|
|
604
|
+
colorQuaternaryHover: string;
|
|
605
|
+
colorQuaternaryPressed: string;
|
|
576
606
|
color: string;
|
|
577
607
|
colorHover: string;
|
|
578
608
|
colorPressed: string;
|
|
579
609
|
colorFocus: string;
|
|
580
610
|
colorDisabled: string;
|
|
581
611
|
textColor: string;
|
|
612
|
+
textColorTertiary: string;
|
|
582
613
|
textColorHover: string;
|
|
583
614
|
textColorPressed: string;
|
|
584
615
|
textColorFocus: string;
|
|
585
616
|
textColorDisabled: string;
|
|
586
617
|
textColorText: string;
|
|
587
|
-
textColorTextDepth1: string;
|
|
588
|
-
textColorTextDepth2: string;
|
|
589
|
-
textColorTextDepth3: string;
|
|
590
618
|
textColorTextHover: string;
|
|
591
619
|
textColorTextPressed: string;
|
|
592
620
|
textColorTextFocus: string;
|
|
@@ -733,9 +761,8 @@ declare const uploadProps: {
|
|
|
733
761
|
borderDisabledError: string;
|
|
734
762
|
rippleColorError: string;
|
|
735
763
|
waveOpacity: string;
|
|
736
|
-
fontWeightText: string;
|
|
737
764
|
fontWeight: string;
|
|
738
|
-
|
|
765
|
+
fontWeightStrong: string;
|
|
739
766
|
paddingTiny: string;
|
|
740
767
|
paddingSmall: string;
|
|
741
768
|
paddingMedium: string;
|
|
@@ -880,20 +907,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
880
907
|
fontSizeMedium: string;
|
|
881
908
|
fontSizeLarge: string;
|
|
882
909
|
opacityDisabled: string;
|
|
910
|
+
colorOpacitySecondary: number;
|
|
911
|
+
colorOpacitySecondaryHover: number;
|
|
912
|
+
colorOpacitySecondaryPressed: number;
|
|
913
|
+
colorSecondary: string;
|
|
914
|
+
colorSecondaryHover: string;
|
|
915
|
+
colorSecondaryPressed: string;
|
|
916
|
+
colorTertiary: string;
|
|
917
|
+
colorTertiaryHover: string;
|
|
918
|
+
colorTertiaryPressed: string;
|
|
919
|
+
colorQuaternary: string;
|
|
920
|
+
colorQuaternaryHover: string;
|
|
921
|
+
colorQuaternaryPressed: string;
|
|
883
922
|
color: string;
|
|
884
923
|
colorHover: string;
|
|
885
924
|
colorPressed: string;
|
|
886
925
|
colorFocus: string;
|
|
887
926
|
colorDisabled: string;
|
|
888
927
|
textColor: string;
|
|
928
|
+
textColorTertiary: string;
|
|
889
929
|
textColorHover: string;
|
|
890
930
|
textColorPressed: string;
|
|
891
931
|
textColorFocus: string;
|
|
892
932
|
textColorDisabled: string;
|
|
893
933
|
textColorText: string;
|
|
894
|
-
textColorTextDepth1: string;
|
|
895
|
-
textColorTextDepth2: string;
|
|
896
|
-
textColorTextDepth3: string;
|
|
897
934
|
textColorTextHover: string;
|
|
898
935
|
textColorTextPressed: string;
|
|
899
936
|
textColorTextFocus: string;
|
|
@@ -1040,9 +1077,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1040
1077
|
borderDisabledError: string;
|
|
1041
1078
|
rippleColorError: string;
|
|
1042
1079
|
waveOpacity: string;
|
|
1043
|
-
fontWeightText: string;
|
|
1044
1080
|
fontWeight: string;
|
|
1045
|
-
|
|
1081
|
+
fontWeightStrong: string;
|
|
1046
1082
|
paddingTiny: string;
|
|
1047
1083
|
paddingSmall: string;
|
|
1048
1084
|
paddingMedium: string;
|
|
@@ -1116,20 +1152,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1116
1152
|
fontSizeMedium: string;
|
|
1117
1153
|
fontSizeLarge: string;
|
|
1118
1154
|
opacityDisabled: string;
|
|
1155
|
+
colorOpacitySecondary: number;
|
|
1156
|
+
colorOpacitySecondaryHover: number;
|
|
1157
|
+
colorOpacitySecondaryPressed: number;
|
|
1158
|
+
colorSecondary: string;
|
|
1159
|
+
colorSecondaryHover: string;
|
|
1160
|
+
colorSecondaryPressed: string;
|
|
1161
|
+
colorTertiary: string;
|
|
1162
|
+
colorTertiaryHover: string;
|
|
1163
|
+
colorTertiaryPressed: string;
|
|
1164
|
+
colorQuaternary: string;
|
|
1165
|
+
colorQuaternaryHover: string;
|
|
1166
|
+
colorQuaternaryPressed: string;
|
|
1119
1167
|
color: string;
|
|
1120
1168
|
colorHover: string;
|
|
1121
1169
|
colorPressed: string;
|
|
1122
1170
|
colorFocus: string;
|
|
1123
1171
|
colorDisabled: string;
|
|
1124
1172
|
textColor: string;
|
|
1173
|
+
textColorTertiary: string;
|
|
1125
1174
|
textColorHover: string;
|
|
1126
1175
|
textColorPressed: string;
|
|
1127
1176
|
textColorFocus: string;
|
|
1128
1177
|
textColorDisabled: string;
|
|
1129
1178
|
textColorText: string;
|
|
1130
|
-
textColorTextDepth1: string;
|
|
1131
|
-
textColorTextDepth2: string;
|
|
1132
|
-
textColorTextDepth3: string;
|
|
1133
1179
|
textColorTextHover: string;
|
|
1134
1180
|
textColorTextPressed: string;
|
|
1135
1181
|
textColorTextFocus: string;
|
|
@@ -1276,9 +1322,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1276
1322
|
borderDisabledError: string;
|
|
1277
1323
|
rippleColorError: string;
|
|
1278
1324
|
waveOpacity: string;
|
|
1279
|
-
fontWeightText: string;
|
|
1280
1325
|
fontWeight: string;
|
|
1281
|
-
|
|
1326
|
+
fontWeightStrong: string;
|
|
1282
1327
|
paddingTiny: string;
|
|
1283
1328
|
paddingSmall: string;
|
|
1284
1329
|
paddingMedium: string;
|
|
@@ -1352,20 +1397,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1352
1397
|
fontSizeMedium: string;
|
|
1353
1398
|
fontSizeLarge: string;
|
|
1354
1399
|
opacityDisabled: string;
|
|
1400
|
+
colorOpacitySecondary: number;
|
|
1401
|
+
colorOpacitySecondaryHover: number;
|
|
1402
|
+
colorOpacitySecondaryPressed: number;
|
|
1403
|
+
colorSecondary: string;
|
|
1404
|
+
colorSecondaryHover: string;
|
|
1405
|
+
colorSecondaryPressed: string;
|
|
1406
|
+
colorTertiary: string;
|
|
1407
|
+
colorTertiaryHover: string;
|
|
1408
|
+
colorTertiaryPressed: string;
|
|
1409
|
+
colorQuaternary: string;
|
|
1410
|
+
colorQuaternaryHover: string;
|
|
1411
|
+
colorQuaternaryPressed: string;
|
|
1355
1412
|
color: string;
|
|
1356
1413
|
colorHover: string;
|
|
1357
1414
|
colorPressed: string;
|
|
1358
1415
|
colorFocus: string;
|
|
1359
1416
|
colorDisabled: string;
|
|
1360
1417
|
textColor: string;
|
|
1418
|
+
textColorTertiary: string;
|
|
1361
1419
|
textColorHover: string;
|
|
1362
1420
|
textColorPressed: string;
|
|
1363
1421
|
textColorFocus: string;
|
|
1364
1422
|
textColorDisabled: string;
|
|
1365
1423
|
textColorText: string;
|
|
1366
|
-
textColorTextDepth1: string;
|
|
1367
|
-
textColorTextDepth2: string;
|
|
1368
|
-
textColorTextDepth3: string;
|
|
1369
1424
|
textColorTextHover: string;
|
|
1370
1425
|
textColorTextPressed: string;
|
|
1371
1426
|
textColorTextFocus: string;
|
|
@@ -1512,9 +1567,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1512
1567
|
borderDisabledError: string;
|
|
1513
1568
|
rippleColorError: string;
|
|
1514
1569
|
waveOpacity: string;
|
|
1515
|
-
fontWeightText: string;
|
|
1516
1570
|
fontWeight: string;
|
|
1517
|
-
|
|
1571
|
+
fontWeightStrong: string;
|
|
1518
1572
|
paddingTiny: string;
|
|
1519
1573
|
paddingSmall: string;
|
|
1520
1574
|
paddingMedium: string;
|
|
@@ -1638,6 +1692,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1638
1692
|
pressedColor: string;
|
|
1639
1693
|
opacityDisabled: string;
|
|
1640
1694
|
inputColorDisabled: string;
|
|
1695
|
+
buttonColor2: string;
|
|
1696
|
+
buttonColor2Hover: string;
|
|
1697
|
+
buttonColor2Pressed: string;
|
|
1641
1698
|
boxShadow1: string;
|
|
1642
1699
|
boxShadow2: string;
|
|
1643
1700
|
boxShadow3: string;
|
|
@@ -1697,20 +1754,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1697
1754
|
fontSizeMedium: string;
|
|
1698
1755
|
fontSizeLarge: string;
|
|
1699
1756
|
opacityDisabled: string;
|
|
1757
|
+
colorOpacitySecondary: number;
|
|
1758
|
+
colorOpacitySecondaryHover: number;
|
|
1759
|
+
colorOpacitySecondaryPressed: number;
|
|
1760
|
+
colorSecondary: string;
|
|
1761
|
+
colorSecondaryHover: string;
|
|
1762
|
+
colorSecondaryPressed: string;
|
|
1763
|
+
colorTertiary: string;
|
|
1764
|
+
colorTertiaryHover: string;
|
|
1765
|
+
colorTertiaryPressed: string;
|
|
1766
|
+
colorQuaternary: string;
|
|
1767
|
+
colorQuaternaryHover: string;
|
|
1768
|
+
colorQuaternaryPressed: string;
|
|
1700
1769
|
color: string;
|
|
1701
1770
|
colorHover: string;
|
|
1702
1771
|
colorPressed: string;
|
|
1703
1772
|
colorFocus: string;
|
|
1704
1773
|
colorDisabled: string;
|
|
1705
1774
|
textColor: string;
|
|
1775
|
+
textColorTertiary: string;
|
|
1706
1776
|
textColorHover: string;
|
|
1707
1777
|
textColorPressed: string;
|
|
1708
1778
|
textColorFocus: string;
|
|
1709
1779
|
textColorDisabled: string;
|
|
1710
1780
|
textColorText: string;
|
|
1711
|
-
textColorTextDepth1: string;
|
|
1712
|
-
textColorTextDepth2: string;
|
|
1713
|
-
textColorTextDepth3: string;
|
|
1714
1781
|
textColorTextHover: string;
|
|
1715
1782
|
textColorTextPressed: string;
|
|
1716
1783
|
textColorTextFocus: string;
|
|
@@ -1857,9 +1924,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1857
1924
|
borderDisabledError: string;
|
|
1858
1925
|
rippleColorError: string;
|
|
1859
1926
|
waveOpacity: string;
|
|
1860
|
-
fontWeightText: string;
|
|
1861
1927
|
fontWeight: string;
|
|
1862
|
-
|
|
1928
|
+
fontWeightStrong: string;
|
|
1863
1929
|
paddingTiny: string;
|
|
1864
1930
|
paddingSmall: string;
|
|
1865
1931
|
paddingMedium: string;
|
|
@@ -2007,20 +2073,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2007
2073
|
fontSizeMedium: string;
|
|
2008
2074
|
fontSizeLarge: string;
|
|
2009
2075
|
opacityDisabled: string;
|
|
2076
|
+
colorOpacitySecondary: number;
|
|
2077
|
+
colorOpacitySecondaryHover: number;
|
|
2078
|
+
colorOpacitySecondaryPressed: number;
|
|
2079
|
+
colorSecondary: string;
|
|
2080
|
+
colorSecondaryHover: string;
|
|
2081
|
+
colorSecondaryPressed: string;
|
|
2082
|
+
colorTertiary: string;
|
|
2083
|
+
colorTertiaryHover: string;
|
|
2084
|
+
colorTertiaryPressed: string;
|
|
2085
|
+
colorQuaternary: string;
|
|
2086
|
+
colorQuaternaryHover: string;
|
|
2087
|
+
colorQuaternaryPressed: string;
|
|
2010
2088
|
color: string;
|
|
2011
2089
|
colorHover: string;
|
|
2012
2090
|
colorPressed: string;
|
|
2013
2091
|
colorFocus: string;
|
|
2014
2092
|
colorDisabled: string;
|
|
2015
2093
|
textColor: string;
|
|
2094
|
+
textColorTertiary: string;
|
|
2016
2095
|
textColorHover: string;
|
|
2017
2096
|
textColorPressed: string;
|
|
2018
2097
|
textColorFocus: string;
|
|
2019
2098
|
textColorDisabled: string;
|
|
2020
2099
|
textColorText: string;
|
|
2021
|
-
textColorTextDepth1: string;
|
|
2022
|
-
textColorTextDepth2: string;
|
|
2023
|
-
textColorTextDepth3: string;
|
|
2024
2100
|
textColorTextHover: string;
|
|
2025
2101
|
textColorTextPressed: string;
|
|
2026
2102
|
textColorTextFocus: string;
|
|
@@ -2167,9 +2243,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2167
2243
|
borderDisabledError: string;
|
|
2168
2244
|
rippleColorError: string;
|
|
2169
2245
|
waveOpacity: string;
|
|
2170
|
-
fontWeightText: string;
|
|
2171
2246
|
fontWeight: string;
|
|
2172
|
-
|
|
2247
|
+
fontWeightStrong: string;
|
|
2173
2248
|
paddingTiny: string;
|
|
2174
2249
|
paddingSmall: string;
|
|
2175
2250
|
paddingMedium: string;
|
|
@@ -2243,20 +2318,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2243
2318
|
fontSizeMedium: string;
|
|
2244
2319
|
fontSizeLarge: string;
|
|
2245
2320
|
opacityDisabled: string;
|
|
2321
|
+
colorOpacitySecondary: number;
|
|
2322
|
+
colorOpacitySecondaryHover: number;
|
|
2323
|
+
colorOpacitySecondaryPressed: number;
|
|
2324
|
+
colorSecondary: string;
|
|
2325
|
+
colorSecondaryHover: string;
|
|
2326
|
+
colorSecondaryPressed: string;
|
|
2327
|
+
colorTertiary: string;
|
|
2328
|
+
colorTertiaryHover: string;
|
|
2329
|
+
colorTertiaryPressed: string;
|
|
2330
|
+
colorQuaternary: string;
|
|
2331
|
+
colorQuaternaryHover: string;
|
|
2332
|
+
colorQuaternaryPressed: string;
|
|
2246
2333
|
color: string;
|
|
2247
2334
|
colorHover: string;
|
|
2248
2335
|
colorPressed: string;
|
|
2249
2336
|
colorFocus: string;
|
|
2250
2337
|
colorDisabled: string;
|
|
2251
2338
|
textColor: string;
|
|
2339
|
+
textColorTertiary: string;
|
|
2252
2340
|
textColorHover: string;
|
|
2253
2341
|
textColorPressed: string;
|
|
2254
2342
|
textColorFocus: string;
|
|
2255
2343
|
textColorDisabled: string;
|
|
2256
2344
|
textColorText: string;
|
|
2257
|
-
textColorTextDepth1: string;
|
|
2258
|
-
textColorTextDepth2: string;
|
|
2259
|
-
textColorTextDepth3: string;
|
|
2260
2345
|
textColorTextHover: string;
|
|
2261
2346
|
textColorTextPressed: string;
|
|
2262
2347
|
textColorTextFocus: string;
|
|
@@ -2403,9 +2488,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2403
2488
|
borderDisabledError: string;
|
|
2404
2489
|
rippleColorError: string;
|
|
2405
2490
|
waveOpacity: string;
|
|
2406
|
-
fontWeightText: string;
|
|
2407
2491
|
fontWeight: string;
|
|
2408
|
-
|
|
2492
|
+
fontWeightStrong: string;
|
|
2409
2493
|
paddingTiny: string;
|
|
2410
2494
|
paddingSmall: string;
|
|
2411
2495
|
paddingMedium: string;
|
|
@@ -2479,20 +2563,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2479
2563
|
fontSizeMedium: string;
|
|
2480
2564
|
fontSizeLarge: string;
|
|
2481
2565
|
opacityDisabled: string;
|
|
2566
|
+
colorOpacitySecondary: number;
|
|
2567
|
+
colorOpacitySecondaryHover: number;
|
|
2568
|
+
colorOpacitySecondaryPressed: number;
|
|
2569
|
+
colorSecondary: string;
|
|
2570
|
+
colorSecondaryHover: string;
|
|
2571
|
+
colorSecondaryPressed: string;
|
|
2572
|
+
colorTertiary: string;
|
|
2573
|
+
colorTertiaryHover: string;
|
|
2574
|
+
colorTertiaryPressed: string;
|
|
2575
|
+
colorQuaternary: string;
|
|
2576
|
+
colorQuaternaryHover: string;
|
|
2577
|
+
colorQuaternaryPressed: string;
|
|
2482
2578
|
color: string;
|
|
2483
2579
|
colorHover: string;
|
|
2484
2580
|
colorPressed: string;
|
|
2485
2581
|
colorFocus: string;
|
|
2486
2582
|
colorDisabled: string;
|
|
2487
2583
|
textColor: string;
|
|
2584
|
+
textColorTertiary: string;
|
|
2488
2585
|
textColorHover: string;
|
|
2489
2586
|
textColorPressed: string;
|
|
2490
2587
|
textColorFocus: string;
|
|
2491
2588
|
textColorDisabled: string;
|
|
2492
2589
|
textColorText: string;
|
|
2493
|
-
textColorTextDepth1: string;
|
|
2494
|
-
textColorTextDepth2: string;
|
|
2495
|
-
textColorTextDepth3: string;
|
|
2496
2590
|
textColorTextHover: string;
|
|
2497
2591
|
textColorTextPressed: string;
|
|
2498
2592
|
textColorTextFocus: string;
|
|
@@ -2639,9 +2733,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2639
2733
|
borderDisabledError: string;
|
|
2640
2734
|
rippleColorError: string;
|
|
2641
2735
|
waveOpacity: string;
|
|
2642
|
-
fontWeightText: string;
|
|
2643
2736
|
fontWeight: string;
|
|
2644
|
-
|
|
2737
|
+
fontWeightStrong: string;
|
|
2645
2738
|
paddingTiny: string;
|
|
2646
2739
|
paddingSmall: string;
|
|
2647
2740
|
paddingMedium: string;
|
|
@@ -87,6 +87,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
87
|
pressedColor: string;
|
|
88
88
|
opacityDisabled: string;
|
|
89
89
|
inputColorDisabled: string;
|
|
90
|
+
buttonColor2: string;
|
|
91
|
+
buttonColor2Hover: string;
|
|
92
|
+
buttonColor2Pressed: string;
|
|
90
93
|
boxShadow1: string;
|
|
91
94
|
boxShadow2: string;
|
|
92
95
|
boxShadow3: string;
|
|
@@ -146,20 +149,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
146
149
|
fontSizeMedium: string;
|
|
147
150
|
fontSizeLarge: string;
|
|
148
151
|
opacityDisabled: string;
|
|
152
|
+
colorOpacitySecondary: number;
|
|
153
|
+
colorOpacitySecondaryHover: number;
|
|
154
|
+
colorOpacitySecondaryPressed: number;
|
|
155
|
+
colorSecondary: string;
|
|
156
|
+
colorSecondaryHover: string;
|
|
157
|
+
colorSecondaryPressed: string;
|
|
158
|
+
colorTertiary: string;
|
|
159
|
+
colorTertiaryHover: string;
|
|
160
|
+
colorTertiaryPressed: string;
|
|
161
|
+
colorQuaternary: string;
|
|
162
|
+
colorQuaternaryHover: string;
|
|
163
|
+
colorQuaternaryPressed: string;
|
|
149
164
|
color: string;
|
|
150
165
|
colorHover: string;
|
|
151
166
|
colorPressed: string;
|
|
152
167
|
colorFocus: string;
|
|
153
168
|
colorDisabled: string;
|
|
154
169
|
textColor: string;
|
|
170
|
+
textColorTertiary: string;
|
|
155
171
|
textColorHover: string;
|
|
156
172
|
textColorPressed: string;
|
|
157
173
|
textColorFocus: string;
|
|
158
174
|
textColorDisabled: string;
|
|
159
175
|
textColorText: string;
|
|
160
|
-
textColorTextDepth1: string;
|
|
161
|
-
textColorTextDepth2: string;
|
|
162
|
-
textColorTextDepth3: string;
|
|
163
176
|
textColorTextHover: string;
|
|
164
177
|
textColorTextPressed: string;
|
|
165
178
|
textColorTextFocus: string;
|
|
@@ -205,7 +218,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
205
218
|
colorHoverInfo: string;
|
|
206
219
|
colorPressedInfo: string;
|
|
207
220
|
colorFocusInfo: string;
|
|
208
|
-
colorDisabledInfo: string;
|
|
221
|
+
colorDisabledInfo: string; /** I haven't figure out its usage, so just leave it here */
|
|
209
222
|
textColorInfo: string;
|
|
210
223
|
textColorHoverInfo: string;
|
|
211
224
|
textColorPressedInfo: string;
|
|
@@ -306,9 +319,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
306
319
|
borderDisabledError: string;
|
|
307
320
|
rippleColorError: string;
|
|
308
321
|
waveOpacity: string;
|
|
309
|
-
fontWeightText: string;
|
|
310
322
|
fontWeight: string;
|
|
311
|
-
|
|
323
|
+
fontWeightStrong: string;
|
|
312
324
|
paddingTiny: string;
|
|
313
325
|
paddingSmall: string;
|
|
314
326
|
paddingMedium: string;
|
|
@@ -83,6 +83,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
83
83
|
pressedColor: string;
|
|
84
84
|
opacityDisabled: string;
|
|
85
85
|
inputColorDisabled: string;
|
|
86
|
+
buttonColor2: string;
|
|
87
|
+
buttonColor2Hover: string;
|
|
88
|
+
buttonColor2Pressed: string;
|
|
86
89
|
boxShadow1: string;
|
|
87
90
|
boxShadow2: string;
|
|
88
91
|
boxShadow3: string;
|
|
@@ -142,20 +145,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
142
145
|
fontSizeMedium: string;
|
|
143
146
|
fontSizeLarge: string;
|
|
144
147
|
opacityDisabled: string;
|
|
148
|
+
colorOpacitySecondary: number;
|
|
149
|
+
colorOpacitySecondaryHover: number;
|
|
150
|
+
colorOpacitySecondaryPressed: number;
|
|
151
|
+
colorSecondary: string;
|
|
152
|
+
colorSecondaryHover: string;
|
|
153
|
+
colorSecondaryPressed: string;
|
|
154
|
+
colorTertiary: string;
|
|
155
|
+
colorTertiaryHover: string;
|
|
156
|
+
colorTertiaryPressed: string;
|
|
157
|
+
colorQuaternary: string;
|
|
158
|
+
colorQuaternaryHover: string;
|
|
159
|
+
colorQuaternaryPressed: string;
|
|
145
160
|
color: string;
|
|
146
161
|
colorHover: string;
|
|
147
162
|
colorPressed: string;
|
|
148
163
|
colorFocus: string;
|
|
149
164
|
colorDisabled: string;
|
|
150
165
|
textColor: string;
|
|
166
|
+
textColorTertiary: string;
|
|
151
167
|
textColorHover: string;
|
|
152
168
|
textColorPressed: string;
|
|
153
169
|
textColorFocus: string;
|
|
154
170
|
textColorDisabled: string;
|
|
155
171
|
textColorText: string;
|
|
156
|
-
textColorTextDepth1: string;
|
|
157
|
-
textColorTextDepth2: string;
|
|
158
|
-
textColorTextDepth3: string;
|
|
159
172
|
textColorTextHover: string;
|
|
160
173
|
textColorTextPressed: string;
|
|
161
174
|
textColorTextFocus: string;
|
|
@@ -302,9 +315,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
302
315
|
borderDisabledError: string;
|
|
303
316
|
rippleColorError: string;
|
|
304
317
|
waveOpacity: string;
|
|
305
|
-
fontWeightText: string;
|
|
306
318
|
fontWeight: string;
|
|
307
|
-
|
|
319
|
+
fontWeightStrong: string;
|
|
308
320
|
paddingTiny: string;
|
|
309
321
|
paddingSmall: string;
|
|
310
322
|
paddingMedium: string;
|
|
@@ -48,20 +48,30 @@ declare const uploadLight: import("../../_mixins").Theme<"Upload", {
|
|
|
48
48
|
fontSizeMedium: string;
|
|
49
49
|
fontSizeLarge: string;
|
|
50
50
|
opacityDisabled: string;
|
|
51
|
+
colorOpacitySecondary: number;
|
|
52
|
+
colorOpacitySecondaryHover: number;
|
|
53
|
+
colorOpacitySecondaryPressed: number;
|
|
54
|
+
colorSecondary: string;
|
|
55
|
+
colorSecondaryHover: string;
|
|
56
|
+
colorSecondaryPressed: string;
|
|
57
|
+
colorTertiary: string;
|
|
58
|
+
colorTertiaryHover: string;
|
|
59
|
+
colorTertiaryPressed: string;
|
|
60
|
+
colorQuaternary: string;
|
|
61
|
+
colorQuaternaryHover: string;
|
|
62
|
+
colorQuaternaryPressed: string;
|
|
51
63
|
color: string;
|
|
52
64
|
colorHover: string;
|
|
53
65
|
colorPressed: string;
|
|
54
66
|
colorFocus: string;
|
|
55
67
|
colorDisabled: string;
|
|
56
68
|
textColor: string;
|
|
69
|
+
textColorTertiary: string;
|
|
57
70
|
textColorHover: string;
|
|
58
71
|
textColorPressed: string;
|
|
59
72
|
textColorFocus: string;
|
|
60
73
|
textColorDisabled: string;
|
|
61
74
|
textColorText: string;
|
|
62
|
-
textColorTextDepth1: string;
|
|
63
|
-
textColorTextDepth2: string;
|
|
64
|
-
textColorTextDepth3: string;
|
|
65
75
|
textColorTextHover: string;
|
|
66
76
|
textColorTextPressed: string;
|
|
67
77
|
textColorTextFocus: string;
|
|
@@ -208,9 +218,8 @@ declare const uploadLight: import("../../_mixins").Theme<"Upload", {
|
|
|
208
218
|
borderDisabledError: string;
|
|
209
219
|
rippleColorError: string;
|
|
210
220
|
waveOpacity: string;
|
|
211
|
-
fontWeightText: string;
|
|
212
221
|
fontWeight: string;
|
|
213
|
-
|
|
222
|
+
fontWeightStrong: string;
|
|
214
223
|
paddingTiny: string;
|
|
215
224
|
paddingSmall: string;
|
|
216
225
|
paddingMedium: string;
|
package/es/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.
|
|
1
|
+
declare const _default: "2.21.0";
|
|
2
2
|
export default _default;
|
package/es/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '2.
|
|
1
|
+
export default '2.21.0';
|
|
@@ -282,6 +282,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
282
282
|
pressedColor: string;
|
|
283
283
|
opacityDisabled: string;
|
|
284
284
|
inputColorDisabled: string;
|
|
285
|
+
buttonColor2: string;
|
|
286
|
+
buttonColor2Hover: string;
|
|
287
|
+
buttonColor2Pressed: string;
|
|
285
288
|
boxShadow1: string;
|
|
286
289
|
boxShadow2: string;
|
|
287
290
|
boxShadow3: string;
|
|
@@ -335,6 +335,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
335
335
|
pressedColor: string;
|
|
336
336
|
opacityDisabled: string;
|
|
337
337
|
inputColorDisabled: string;
|
|
338
|
+
buttonColor2: string;
|
|
339
|
+
buttonColor2Hover: string;
|
|
340
|
+
buttonColor2Pressed: string;
|
|
338
341
|
boxShadow1: string;
|
|
339
342
|
boxShadow2: string;
|
|
340
343
|
boxShadow3: string;
|
|
@@ -12,7 +12,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12
12
|
type: BooleanConstructor;
|
|
13
13
|
default: undefined;
|
|
14
14
|
};
|
|
15
|
-
loading:
|
|
15
|
+
loading: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
16
19
|
onClear: PropType<(e: MouseEvent) => void>;
|
|
17
20
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
18
21
|
clsPrefix?: unknown;
|