@tendaui/components 1.0.0 → 1.0.2
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/LICENSE +21 -21
- package/README.md +176 -176
- package/alert/Alert.tsx +3 -2
- package/button/_example/base.tsx +10 -0
- package/button/_example/icon.tsx +20 -0
- package/color-picker/ColorPickPanel.tsx +9 -0
- package/color-picker/ColorPicker.tsx +67 -0
- package/color-picker/components/panel/alpha.tsx +32 -0
- package/color-picker/components/panel/format/index.tsx +47 -0
- package/color-picker/components/panel/format/inputs.tsx +119 -0
- package/color-picker/components/panel/header.tsx +37 -0
- package/color-picker/components/panel/hue.tsx +20 -0
- package/color-picker/components/panel/index.tsx +191 -0
- package/color-picker/components/panel/saturation.tsx +81 -0
- package/color-picker/components/panel/slider.tsx +76 -0
- package/color-picker/components/panel/swatches.tsx +84 -0
- package/color-picker/components/trigger.tsx +49 -0
- package/color-picker/defaultProps.ts +7 -0
- package/color-picker/helpers.ts +53 -0
- package/color-picker/hooks/useClassNames.ts +9 -0
- package/color-picker/hooks/useStyles.ts +39 -0
- package/color-picker/index.ts +12 -0
- package/color-picker/style/css.js +1 -0
- package/color-picker/style/index.js +1 -0
- package/color-picker/type.ts +143 -0
- package/color-picker/utils/color-picker/cmyk.ts +89 -0
- package/color-picker/utils/color-picker/color.ts +467 -0
- package/color-picker/utils/color-picker/constants.ts +187 -0
- package/color-picker/utils/color-picker/draggable.ts +100 -0
- package/color-picker/utils/color-picker/format.ts +95 -0
- package/color-picker/utils/color-picker/gradient.ts +243 -0
- package/color-picker/utils/color-picker/index.ts +7 -0
- package/color-picker/utils/color-picker/types.ts +33 -0
- package/common/observe.ts +33 -0
- package/common.ts +20 -0
- package/config-provider/ConfigContext.tsx +4 -1
- package/config-provider/index.ts +1 -1
- package/dialog/DialogCard.tsx +4 -6
- package/dialog/hooks/useDialogPosition.ts +1 -2
- package/dialog/plugin.tsx +3 -2
- package/drawer/Drawer.tsx +264 -0
- package/drawer/defaultProps.ts +19 -0
- package/drawer/hooks/useDrag.ts +98 -0
- package/drawer/hooks/useLockStyle.ts +36 -0
- package/drawer/index.ts +5 -0
- package/drawer/style/css.js +1 -0
- package/drawer/style/index.js +1 -0
- package/drawer/type.ts +193 -0
- package/drawer/utils/index.ts +76 -0
- package/fireworks/Fireworks.tsx +138 -0
- package/fireworks/index.ts +10 -0
- package/fireworks/style/css.js +0 -0
- package/fireworks/style/index.js +0 -0
- package/fireworks/type.ts +72 -0
- package/form/FormItem.tsx +5 -5
- package/form/easing.ts +10 -0
- package/form/scroll.ts +124 -0
- package/form/type.ts +519 -519
- package/global-config/default-config.ts +95 -0
- package/global-config/locale/ar_KW.ts +270 -0
- package/global-config/locale/en_US.ts +280 -0
- package/global-config/locale/it_IT.ts +287 -0
- package/global-config/locale/ja_JP.ts +279 -0
- package/global-config/locale/ko_KR.ts +279 -0
- package/global-config/locale/ru_RU.ts +288 -0
- package/global-config/locale/zh_CN.ts +279 -0
- package/global-config/locale/zh_TW.ts +279 -0
- package/global-config/mobile/default-config.ts +6 -0
- package/global-config/mobile/locale/ar_KW.ts +113 -0
- package/global-config/mobile/locale/en_US.ts +114 -0
- package/global-config/mobile/locale/it_IT.ts +114 -0
- package/global-config/mobile/locale/ja_JP.ts +101 -0
- package/global-config/mobile/locale/ko_KR.ts +101 -0
- package/global-config/mobile/locale/ru_RU.ts +113 -0
- package/global-config/mobile/locale/zh_CN.ts +101 -0
- package/global-config/mobile/locale/zh_TW.ts +101 -0
- package/global-config/t.ts +111 -0
- package/hooks/useControlled.ts +3 -3
- package/hooks/useDeepEffect.ts +32 -0
- package/hooks/useGlobalIcon.ts +10 -3
- package/hooks/useLastest.ts +2 -6
- package/hooks/useResizeObserve.ts +36 -0
- package/index.ts +10 -7
- package/input/Input.tsx +4 -1
- package/input/defaultProps.ts +0 -2
- package/input/type.ts +1 -6
- package/input-number/InputNumber.tsx +124 -0
- package/input-number/defaultProps.ts +17 -0
- package/input-number/index.ts +9 -0
- package/input-number/style/css.js +1 -0
- package/input-number/style/index.js +1 -0
- package/input-number/type.ts +147 -0
- package/input-number/useInputNumber.tsx +270 -0
- package/ip-input/IPInput.tsx +516 -0
- package/ip-input/defaultProps.ts +11 -0
- package/ip-input/index.ts +3 -0
- package/ip-input/style/css.js +1 -0
- package/ip-input/style/index.js +1 -0
- package/ip-input/type.ts +115 -0
- package/ip-input/utils.ts +112 -0
- package/layout/Aside.tsx +38 -0
- package/layout/Layout.tsx +104 -0
- package/layout/defaultProps.ts +9 -0
- package/layout/index.ts +9 -0
- package/layout/style/css.js +1 -0
- package/layout/style/index.js +1 -0
- package/layout/type.ts +43 -0
- package/list/List.tsx +144 -0
- package/list/ListItem.tsx +36 -0
- package/list/ListItemMeta.tsx +40 -0
- package/list/defaultProps.ts +11 -0
- package/list/hooks/useListVirtualScroll.ts +82 -0
- package/list/index.ts +11 -0
- package/list/style/css.js +1 -0
- package/list/style/index.js +1 -0
- package/list/type.ts +93 -0
- package/locale/LocalReceiver.ts +55 -0
- package/locale/ar_KW.ts +7 -0
- package/locale/en_US.ts +7 -0
- package/locale/it_IT.ts +6 -0
- package/locale/ja_JP.ts +6 -0
- package/locale/ko_KR.ts +6 -0
- package/locale/ru_RU.ts +6 -0
- package/locale/zh_CN.ts +5 -0
- package/locale/zh_TW.ts +7 -0
- package/notification/NotifyContainer.tsx +2 -2
- package/notification/NotifyContext.tsx +1 -0
- package/package.json +6 -3
- package/popup/Popup.tsx +34 -10
- package/radio/Radio.tsx +24 -0
- package/radio/RadioGroup.tsx +159 -0
- package/radio/defaultProps.ts +18 -0
- package/radio/index.ts +12 -0
- package/radio/style/css.js +0 -0
- package/radio/style/index.js +1 -0
- package/radio/type.ts +115 -0
- package/radio/useKeyboard.ts +36 -0
- package/select/hooks/useOptions.ts +10 -7
- package/select/hooks/usePanelVirtualScroll.ts +1 -1
- package/select/type.ts +382 -382
- package/select-input/type.ts +280 -280
- package/slider/Slider.tsx +270 -0
- package/slider/SliderHandleButton.tsx +50 -0
- package/slider/defaultProps.ts +15 -0
- package/slider/index.ts +9 -0
- package/slider/style/css.js +1 -0
- package/slider/style/index.js +1 -0
- package/slider/type.ts +77 -0
- package/style/all.js +26 -0
- package/styles/_global.scss +39 -39
- package/styles/_vars.scss +358 -386
- package/styles/components/alert/_index.scss +175 -175
- package/styles/components/alert/_vars.scss +39 -39
- package/styles/components/badge/_index.scss +70 -70
- package/styles/components/badge/_vars.scss +25 -25
- package/styles/components/button/_index.scss +499 -511
- package/styles/components/button/_mixins.scss +39 -39
- package/styles/components/button/_vars.scss +120 -122
- package/styles/components/checkbox/_index.scss +158 -158
- package/styles/components/checkbox/_var.scss +60 -60
- package/styles/components/color-picker/_index.scss +586 -0
- package/styles/components/color-picker/_mixins.scss +0 -0
- package/styles/components/color-picker/_vars.scss +84 -0
- package/styles/components/dialog/_animate.scss +135 -135
- package/styles/components/dialog/_index.scss +311 -311
- package/styles/components/dialog/_vars.scss +59 -59
- package/styles/components/drawer/_index.scss +205 -0
- package/styles/components/drawer/_mixins.scss +1 -0
- package/styles/components/drawer/_var.scss +53 -0
- package/styles/components/fireworks/_index.scss +86 -0
- package/styles/components/fireworks/_vars.scss +4 -0
- package/styles/components/form/_index.scss +174 -174
- package/styles/components/form/_mixins.scss +76 -76
- package/styles/components/form/_vars.scss +100 -100
- package/styles/components/input/_index.scss +349 -349
- package/styles/components/input/_mixins.scss +116 -116
- package/styles/components/input/_vars.scss +134 -134
- package/styles/components/input-number/_index.scss +353 -0
- package/styles/components/input-number/_mixins.scss +0 -0
- package/styles/components/input-number/_vars.scss +65 -0
- package/styles/components/ip-input/_index.scss +280 -0
- package/styles/components/layout/_index.scss +47 -0
- package/styles/components/layout/_mixin.scss +0 -0
- package/styles/components/layout/_vars.scss +18 -0
- package/styles/components/layout/doc.scss +74 -0
- package/styles/components/list/_index.scss +172 -0
- package/styles/components/list/_mixins.scss +0 -0
- package/styles/components/list/_vars.scss +41 -0
- package/styles/components/loading/_index.scss +112 -112
- package/styles/components/loading/_vars.scss +39 -39
- package/styles/components/notification/_index.scss +160 -160
- package/styles/components/notification/_mixins.scss +12 -12
- package/styles/components/notification/_vars.scss +59 -59
- package/styles/components/popup/_index.scss +82 -82
- package/styles/components/popup/_mixin.scss +149 -149
- package/styles/components/popup/_var.scss +31 -31
- package/styles/components/radio/_index.scss +376 -0
- package/styles/components/radio/_mixins.scss +0 -0
- package/styles/components/radio/_var.scss +92 -0
- package/styles/components/select/_index.scss +290 -290
- package/styles/components/select/_var.scss +65 -65
- package/styles/components/select-input/_index.scss +5 -5
- package/styles/components/select-input/_var.scss +3 -3
- package/styles/components/slider/_index.scss +241 -0
- package/styles/components/slider/_mixins.scss +0 -0
- package/styles/components/slider/_vars.scss +50 -0
- package/styles/components/switch/_index.scss +279 -279
- package/styles/components/switch/_vars.scss +61 -61
- package/styles/components/table/_index.scss +193 -0
- package/styles/components/table/_var.scss +52 -0
- package/styles/components/tabs/_index.scss +165 -0
- package/styles/components/tabs/_mixins.scss +11 -0
- package/styles/components/tabs/_vars.scss +71 -0
- package/styles/components/tag/_index.scss +316 -316
- package/styles/components/tag/_var.scss +85 -85
- package/styles/components/tag-input/_index.scss +163 -163
- package/styles/components/tag-input/_vars.scss +16 -16
- package/styles/globals.css +250 -250
- package/styles/mixins/_focus.scss +7 -7
- package/styles/mixins/_layout.scss +32 -32
- package/styles/mixins/_reset.scss +10 -10
- package/styles/mixins/_scrollbar.scss +31 -31
- package/styles/mixins/_text.scss +48 -48
- package/styles/rillple.css +16 -16
- package/styles/scrollbar.css +41 -41
- package/styles/themes/_dark.scss +191 -191
- package/styles/themes/_font.scss +69 -79
- package/styles/themes/_index.scss +5 -5
- package/styles/themes/_light.scss +190 -190
- package/styles/themes/_radius.scss +9 -9
- package/styles/themes/_size.scss +68 -68
- package/styles/themes.css +66 -66
- package/styles/utilities/_animation.scss +57 -57
- package/styles/utilities/_tips.scss +9 -9
- package/tab/TabBar.tsx +85 -0
- package/tab/TabNav.tsx +103 -0
- package/tab/TabNavItem.tsx +80 -0
- package/tab/TabPanel.tsx +42 -0
- package/tab/Tabs.tsx +71 -0
- package/tab/defaultProps.ts +19 -0
- package/tab/index.ts +7 -0
- package/tab/style/index.js +1 -0
- package/tab/type.ts +125 -0
- package/tab/useTabClass.ts +20 -0
- package/table/Cell.tsx +109 -0
- package/table/TBody.tsx +77 -0
- package/table/THead.tsx +63 -0
- package/table/TR.tsx +78 -0
- package/table/Table.tsx +73 -0
- package/table/defaultProps.ts +14 -0
- package/table/hooks/index.ts +4 -0
- package/table/hooks/useTableClassName.ts +63 -0
- package/table/hooks/useTableStyle.ts +93 -0
- package/table/index.ts +7 -0
- package/table/style/css.js +1 -0
- package/table/style/index.js +1 -0
- package/table/type.ts +192 -0
- package/tag/Tag.tsx +1 -1
- package/tag-input/hooks/useTagList.tsx +1 -1
- package/utils/dom.ts +4 -0
- package/utils/forwardRefWithStatics.ts +1 -4
- package/utils/input-number/large-number.ts +423 -0
- package/utils/input-number/number.ts +257 -0
- package/utils/isFragment.ts +6 -6
- package/utils/log/index.ts +3 -0
- package/utils/log/log.ts +30 -0
- package/utils/log/types.ts +12 -0
- package/utils/number.ts +21 -0
- package/utils/scroll.ts +26 -0
- package/utils/style.ts +2 -4
|
@@ -1,511 +1,499 @@
|
|
|
1
|
-
@use
|
|
2
|
-
@import
|
|
3
|
-
|
|
4
|
-
@import
|
|
5
|
-
|
|
6
|
-
@import
|
|
7
|
-
|
|
8
|
-
@import
|
|
9
|
-
|
|
10
|
-
@function btn-color($theme, $state: default) {
|
|
11
|
-
$theme-map: map.get($btn-colors, $theme);
|
|
12
|
-
|
|
13
|
-
@if $theme-map == null {
|
|
14
|
-
@error "Theme `#{$theme}` not found in $btn-colors map.";
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@return map.get($theme-map, $state);
|
|
18
|
-
}
|
|
19
|
-
@mixin button-attr-color($theme, $attr, $ghost: false) {
|
|
20
|
-
&:hover,
|
|
21
|
-
&:focus-visible {
|
|
22
|
-
#{$attr}: btn-color($theme, hover);
|
|
23
|
-
}
|
|
24
|
-
@if $ghost == true {
|
|
25
|
-
&:active {
|
|
26
|
-
#{$attr}: btn-color($theme, active);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
@if $ghost == true {
|
|
31
|
-
&.#{$prefix}-is-loading {
|
|
32
|
-
#{$attr}: btn-color($theme,
|
|
33
|
-
}
|
|
34
|
-
} @else {
|
|
35
|
-
&.#{$prefix}-is-loading {
|
|
36
|
-
#{$attr}: btn-color($theme,
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
@if $ghost == true {
|
|
41
|
-
#{$attr}: btn-color(
|
|
42
|
-
background-color: transparent;
|
|
43
|
-
} @else {
|
|
44
|
-
#{$attr}: btn-color($theme, disabled);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
#{$attr}: btn-color($theme, default);
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.#{$prefix}-button {
|
|
51
|
-
@include reset;
|
|
52
|
-
@include button;
|
|
53
|
-
|
|
54
|
-
text-decoration: none;
|
|
55
|
-
|
|
56
|
-
.#{$prefix}-button__text,
|
|
57
|
-
.t-icon {
|
|
58
|
-
position: relative;
|
|
59
|
-
z-index: 1;
|
|
60
|
-
display: inline-flex;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.t-icon {
|
|
64
|
-
font-size: $btn-icon-size-default;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.#{$prefix}-loading {
|
|
68
|
-
font-size: $btn-loading-size;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.t-icon + .#{$prefix}-button__text:not(:empty) {
|
|
72
|
-
margin-left: $btn-icon-text-margin-left;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.#{$prefix}-loading + .#{$prefix}-button__text:not(:empty) {
|
|
76
|
-
margin-left: $btn-icon-text-margin-left;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.#{$prefix}-button__suffix:not(:empty) {
|
|
80
|
-
display: inline-flex;
|
|
81
|
-
margin-left: $btn-icon-text-margin-left;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
// 主要按钮
|
|
85
|
-
&--variant-base {
|
|
86
|
-
color: $btn-text-variant-base-color;
|
|
87
|
-
@include button-size(
|
|
88
|
-
$btn-height-default,
|
|
89
|
-
$btn-font-default,
|
|
90
|
-
$btn-icon-size-default,
|
|
91
|
-
$btn-padding-horizontal-default
|
|
92
|
-
);
|
|
93
|
-
@include button-attr-color(
|
|
94
|
-
@include button-attr-color(
|
|
95
|
-
@include button-attr-color(
|
|
96
|
-
|
|
97
|
-
&.#{$prefix}-button--theme-primary {
|
|
98
|
-
color: $btn-text-variant-base-color;
|
|
99
|
-
@include button-attr-color(
|
|
100
|
-
@include button-attr-color(
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
&.#{$prefix}-button--theme-success {
|
|
104
|
-
color: $btn-text-variant-base-color;
|
|
105
|
-
@include button-attr-color(
|
|
106
|
-
@include button-attr-color(
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
&.#{$prefix}-button--theme-warning {
|
|
110
|
-
color: $btn-text-variant-base-color;
|
|
111
|
-
@include button-attr-color(
|
|
112
|
-
@include button-attr-color(
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
&.#{$prefix}-button--theme-danger {
|
|
116
|
-
color: $btn-text-variant-base-color;
|
|
117
|
-
@include button-attr-color(
|
|
118
|
-
@include button-attr-color(
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
&.#{$prefix}-button--ghost {
|
|
122
|
-
@include button-attr-color(
|
|
123
|
-
@include button-attr-color(
|
|
124
|
-
@include button-attr-color(
|
|
125
|
-
|
|
126
|
-
&.#{$prefix}-button--theme-primary {
|
|
127
|
-
@include button-attr-color(
|
|
128
|
-
@include button-attr-color(
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
&.#{$prefix}-button--theme-success {
|
|
132
|
-
@include button-attr-color(
|
|
133
|
-
@include button-attr-color(
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
&.#{$prefix}-button--theme-warning {
|
|
137
|
-
@include button-attr-color(
|
|
138
|
-
@include button-attr-color(
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
&.#{$prefix}-button--theme-danger {
|
|
142
|
-
@include button-attr-color(
|
|
143
|
-
@include button-attr-color(
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
&.#{$prefix}-is-loading:not(&.#{$prefix}-button--ghost) {
|
|
148
|
-
&.#{$prefix}-button--theme-default {
|
|
149
|
-
color: btn-color(text, default);
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
// 次要按钮
|
|
155
|
-
&--variant-outline {
|
|
156
|
-
@include button-size(
|
|
157
|
-
$btn-height-default,
|
|
158
|
-
$btn-font-default,
|
|
159
|
-
$btn-icon-size-default,
|
|
160
|
-
$btn-padding-horizontal-default
|
|
161
|
-
);
|
|
162
|
-
@include button-attr-color(
|
|
163
|
-
|
|
164
|
-
@include button-attr-color(
|
|
165
|
-
@include button-attr-color(
|
|
166
|
-
|
|
167
|
-
&.#{$prefix}-button--theme-primary {
|
|
168
|
-
@include button-attr-color(
|
|
169
|
-
@include button-attr-color(
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
&.#{$prefix}-button--theme-success {
|
|
173
|
-
@include button-attr-color(
|
|
174
|
-
@include button-attr-color(
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
&.#{$prefix}-button--theme-warning {
|
|
178
|
-
@include button-attr-color(
|
|
179
|
-
@include button-attr-color(
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
&.#{$prefix}-button--theme-danger {
|
|
183
|
-
@include button-attr-color(
|
|
184
|
-
@include button-attr-color(
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
&.#{$prefix}-button--ghost {
|
|
188
|
-
@include button-attr-color(
|
|
189
|
-
@include button-attr-color(
|
|
190
|
-
@include button-attr-color(
|
|
191
|
-
|
|
192
|
-
&.#{$prefix}-button--theme-primary {
|
|
193
|
-
@include button-attr-color(
|
|
194
|
-
@include button-attr-color(
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
&.#{$prefix}-button--theme-success {
|
|
198
|
-
@include button-attr-color(
|
|
199
|
-
@include button-attr-color(
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
&.#{$prefix}-button--theme-warning {
|
|
203
|
-
@include button-attr-color(
|
|
204
|
-
@include button-attr-color(
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
&.#{$prefix}-button--theme-danger {
|
|
208
|
-
@include button-attr-color(
|
|
209
|
-
@include button-attr-color(
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
&.#{$prefix}-is-loading:not(&.#{$prefix}-button--ghost) {
|
|
214
|
-
color: btn-color(text, default);
|
|
215
|
-
|
|
216
|
-
&.#{$prefix}-button--theme-primary {
|
|
217
|
-
color: btn-color(primary, default);
|
|
218
|
-
background-color: btn-color(text-bg, default);
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
&.#{$prefix}-button--theme-success {
|
|
222
|
-
color: btn-color(success, default);
|
|
223
|
-
background-color: btn-color(text-bg, default);
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
&.#{$prefix}-button--theme-warning {
|
|
227
|
-
color: btn-color(warning, default);
|
|
228
|
-
background-color: btn-color(text-bg, default);
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
&.#{$prefix}-button--theme-danger {
|
|
232
|
-
color: btn-color(danger, default);
|
|
233
|
-
background-color: btn-color(text-bg, default);
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
// 虚线按钮
|
|
239
|
-
&--variant-dashed {
|
|
240
|
-
@include button-size(
|
|
241
|
-
$btn-height-default,
|
|
242
|
-
$btn-font-default,
|
|
243
|
-
$btn-icon-size-default,
|
|
244
|
-
$btn-padding-horizontal-default
|
|
245
|
-
);
|
|
246
|
-
@include button-attr-color(text, color);
|
|
247
|
-
@include button-attr-color(white-bg, background-color);
|
|
248
|
-
@include button-attr-color(border-gray, border-color);
|
|
249
|
-
|
|
250
|
-
border-style: dashed;
|
|
251
|
-
|
|
252
|
-
&.#{$prefix}-button--theme-primary {
|
|
253
|
-
@include button-attr-color(
|
|
254
|
-
@include button-attr-color(
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
&.#{$prefix}-button--theme-success {
|
|
258
|
-
@include button-attr-color(
|
|
259
|
-
@include button-attr-color(
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
&.#{$prefix}-button--theme-warning {
|
|
263
|
-
@include button-attr-color(
|
|
264
|
-
@include button-attr-color(
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
&.#{$prefix}-button--theme-danger {
|
|
268
|
-
@include button-attr-color(
|
|
269
|
-
@include button-attr-color(
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
&.#{$prefix}-button--ghost {
|
|
273
|
-
@include button-attr-color(
|
|
274
|
-
@include button-attr-color(
|
|
275
|
-
@include button-attr-color(
|
|
276
|
-
|
|
277
|
-
&.#{$prefix}-button--theme-primary {
|
|
278
|
-
@include button-attr-color(
|
|
279
|
-
@include button-attr-color(
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
&.#{$prefix}-button--theme-success {
|
|
283
|
-
@include button-attr-color(
|
|
284
|
-
@include button-attr-color(
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
&.#{$prefix}-button--theme-warning {
|
|
288
|
-
@include button-attr-color(
|
|
289
|
-
@include button-attr-color(
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
&.#{$prefix}-button--theme-danger {
|
|
293
|
-
@include button-attr-color(
|
|
294
|
-
@include button-attr-color(
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
&.#{$prefix}-is-loading:not(&.#{$prefix}-button--ghost) {
|
|
298
|
-
color: btn-color(text, default);
|
|
299
|
-
|
|
300
|
-
&.#{$prefix}-button--theme-primary {
|
|
301
|
-
color: btn-color(primary, default);
|
|
302
|
-
background-color: btn-color(text-bg, default);
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
&.#{$prefix}-button--theme-success {
|
|
306
|
-
color: btn-color(success, default);
|
|
307
|
-
background-color: btn-color(text-bg, default);
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
&.#{$prefix}-button--theme-warning {
|
|
311
|
-
color: btn-color(warning, default);
|
|
312
|
-
background-color: btn-color(text-bg, default);
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
&.#{$prefix}-button--theme-danger {
|
|
316
|
-
color: btn-color(danger, default);
|
|
317
|
-
background-color: btn-color(text-bg, default);
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
// 文字按钮
|
|
323
|
-
&--variant-text {
|
|
324
|
-
@include button-size(
|
|
325
|
-
$btn-height-default,
|
|
326
|
-
$btn-font-default,
|
|
327
|
-
$btn-icon-size-default,
|
|
328
|
-
$btn-padding-horizontal-default
|
|
329
|
-
);
|
|
330
|
-
@include button-attr-color(
|
|
331
|
-
@include button-attr-color(
|
|
332
|
-
@include button-attr-color(
|
|
333
|
-
|
|
334
|
-
&.#{$prefix}-button--theme-primary {
|
|
335
|
-
@include button-attr-color(
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
&.#{$prefix}-button--theme-success {
|
|
339
|
-
@include button-attr-color(
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
&.#{$prefix}-button--theme-warning {
|
|
343
|
-
@include button-attr-color(
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
&.#{$prefix}-button--theme-danger {
|
|
347
|
-
@include button-attr-color(
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
&.#{$prefix}-button--ghost {
|
|
351
|
-
background: none;
|
|
352
|
-
|
|
353
|
-
@include button-attr-color(
|
|
354
|
-
|
|
355
|
-
&.#{$prefix}-button--theme-primary {
|
|
356
|
-
@include button-attr-color(
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
&.#{$prefix}-button--theme-success {
|
|
360
|
-
@include button-attr-color(
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
&.#{$prefix}-button--theme-warning {
|
|
364
|
-
@include button-attr-color(
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
&.#{$prefix}-button--theme-danger {
|
|
368
|
-
@include button-attr-color(
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
&.#{$prefix}-is-loading:not(&.#{$prefix}-button--ghost) {
|
|
373
|
-
color: btn-color(text, default);
|
|
374
|
-
|
|
375
|
-
&.#{$prefix}-button--theme-primary {
|
|
376
|
-
color: btn-color(primary, default);
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
&.#{$prefix}-button--theme-success {
|
|
380
|
-
color: btn-color(success, default);
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
&.#{$prefix}-button--theme-warning {
|
|
384
|
-
color: btn-color(warning, default);
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
&.#{$prefix}-button--theme-danger {
|
|
388
|
-
color: btn-color(danger, default);
|
|
389
|
-
}
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
&.#{$prefix}-is-loading,
|
|
394
|
-
&.#{$prefix}-is-disabled {
|
|
395
|
-
cursor: not-allowed;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
&.#{$prefix}-size-s {
|
|
399
|
-
@include button-size(
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
$btn-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
--ripple-color: btn-color(
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
.#{$prefix}-button--variant-base:not(.#{$prefix}-is-disabled):not(
|
|
484
|
-
.#{$prefix}-button--ghost
|
|
485
|
-
) {
|
|
486
|
-
--ripple-color: btn-color(
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
.#{$prefix}-button--variant-base.#{$prefix}-button--theme-
|
|
490
|
-
.#{$prefix}-
|
|
491
|
-
)
|
|
492
|
-
--ripple-color: btn-color(
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
.#{$prefix}-button--variant-base.#{$prefix}-button--theme-
|
|
496
|
-
.#{$prefix}-
|
|
497
|
-
)
|
|
498
|
-
--ripple-color: btn-color(
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
.#{$prefix}-button--variant-base.#{$prefix}-button--theme-warning:not(
|
|
502
|
-
.#{$prefix}-is-disabled
|
|
503
|
-
):not(.#{$prefix}-button--ghost) {
|
|
504
|
-
--ripple-color: btn-color(warning, active);
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
.#{$prefix}-button--variant-base.#{$prefix}-button--theme-danger:not(
|
|
508
|
-
.#{$prefix}-is-disabled
|
|
509
|
-
):not(.#{$prefix}-button--ghost) {
|
|
510
|
-
--ripple-color: btn-color(danger, active);
|
|
511
|
-
}
|
|
1
|
+
@use "sass:map";
|
|
2
|
+
@import "../../_vars.scss";
|
|
3
|
+
|
|
4
|
+
@import "./_vars.scss";
|
|
5
|
+
|
|
6
|
+
@import "./_mixins.scss";
|
|
7
|
+
|
|
8
|
+
@import "../../mixins/_reset.scss";
|
|
9
|
+
|
|
10
|
+
@function btn-color($theme, $state: default) {
|
|
11
|
+
$theme-map: map.get($btn-colors, $theme);
|
|
12
|
+
|
|
13
|
+
@if $theme-map == null {
|
|
14
|
+
@error "Theme `#{$theme}` not found in $btn-colors map.";
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@return map.get($theme-map, $state);
|
|
18
|
+
}
|
|
19
|
+
@mixin button-attr-color($theme, $attr, $ghost: false) {
|
|
20
|
+
&:hover,
|
|
21
|
+
&:focus-visible {
|
|
22
|
+
#{$attr}: btn-color($theme, hover);
|
|
23
|
+
}
|
|
24
|
+
@if $ghost == true {
|
|
25
|
+
&:active {
|
|
26
|
+
#{$attr}: btn-color($theme, active);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@if $ghost == true {
|
|
31
|
+
&.#{$prefix}-is-loading {
|
|
32
|
+
#{$attr}: btn-color($theme, "default");
|
|
33
|
+
}
|
|
34
|
+
} @else {
|
|
35
|
+
&.#{$prefix}-is-loading {
|
|
36
|
+
#{$attr}: btn-color($theme, "disabled");
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@if $ghost == true {
|
|
41
|
+
#{$attr}: btn-color("ghost", "disabled");
|
|
42
|
+
background-color: transparent;
|
|
43
|
+
} @else {
|
|
44
|
+
#{$attr}: btn-color($theme, disabled);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
#{$attr}: btn-color($theme, default);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.#{$prefix}-button {
|
|
51
|
+
@include reset;
|
|
52
|
+
@include button;
|
|
53
|
+
|
|
54
|
+
text-decoration: none;
|
|
55
|
+
|
|
56
|
+
.#{$prefix}-button__text,
|
|
57
|
+
.t-icon {
|
|
58
|
+
position: relative;
|
|
59
|
+
z-index: 1;
|
|
60
|
+
display: inline-flex;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.t-icon {
|
|
64
|
+
font-size: $btn-icon-size-default;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.#{$prefix}-loading {
|
|
68
|
+
font-size: $btn-loading-size;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.t-icon + .#{$prefix}-button__text:not(:empty) {
|
|
72
|
+
margin-left: $btn-icon-text-margin-left;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.#{$prefix}-loading + .#{$prefix}-button__text:not(:empty) {
|
|
76
|
+
margin-left: $btn-icon-text-margin-left;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.#{$prefix}-button__suffix:not(:empty) {
|
|
80
|
+
display: inline-flex;
|
|
81
|
+
margin-left: $btn-icon-text-margin-left;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// 主要按钮
|
|
85
|
+
&--variant-base {
|
|
86
|
+
color: $btn-text-variant-base-color;
|
|
87
|
+
@include button-size(
|
|
88
|
+
$btn-height-default,
|
|
89
|
+
$btn-font-default,
|
|
90
|
+
$btn-icon-size-default,
|
|
91
|
+
$btn-padding-horizontal-default
|
|
92
|
+
);
|
|
93
|
+
@include button-attr-color("gray-bg", background-color);
|
|
94
|
+
@include button-attr-color("gray-bg", border-color);
|
|
95
|
+
@include button-attr-color("text-gray", color);
|
|
96
|
+
|
|
97
|
+
&.#{$prefix}-button--theme-primary {
|
|
98
|
+
color: $btn-text-variant-base-color;
|
|
99
|
+
@include button-attr-color("primary", background-color);
|
|
100
|
+
@include button-attr-color("primary", border-color);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
&.#{$prefix}-button--theme-success {
|
|
104
|
+
color: $btn-text-variant-base-color;
|
|
105
|
+
@include button-attr-color("success", background-color);
|
|
106
|
+
@include button-attr-color("success", border-color);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
&.#{$prefix}-button--theme-warning {
|
|
110
|
+
color: $btn-text-variant-base-color;
|
|
111
|
+
@include button-attr-color("warning", background-color);
|
|
112
|
+
@include button-attr-color("warning", border-color);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&.#{$prefix}-button--theme-danger {
|
|
116
|
+
color: $btn-text-variant-base-color;
|
|
117
|
+
@include button-attr-color("danger", background-color);
|
|
118
|
+
@include button-attr-color("danger", border-color);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&.#{$prefix}-button--ghost {
|
|
122
|
+
@include button-attr-color("primary", background-color, true);
|
|
123
|
+
@include button-attr-color("white-ghost", color, true);
|
|
124
|
+
@include button-attr-color("white-ghost", border-color, true);
|
|
125
|
+
|
|
126
|
+
&.#{$prefix}-button--theme-primary {
|
|
127
|
+
@include button-attr-color("primary", color, true);
|
|
128
|
+
@include button-attr-color("primary", border-color, true);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
&.#{$prefix}-button--theme-success {
|
|
132
|
+
@include button-attr-color("success", color, true);
|
|
133
|
+
@include button-attr-color("success", border-color, true);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
&.#{$prefix}-button--theme-warning {
|
|
137
|
+
@include button-attr-color("warning", color, true);
|
|
138
|
+
@include button-attr-color("warning", border-color, true);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
&.#{$prefix}-button--theme-danger {
|
|
142
|
+
@include button-attr-color("danger", color, true);
|
|
143
|
+
@include button-attr-color("danger", border-color, true);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&.#{$prefix}-is-loading:not(&.#{$prefix}-button--ghost) {
|
|
148
|
+
&.#{$prefix}-button--theme-default {
|
|
149
|
+
color: btn-color(text, default);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// 次要按钮
|
|
155
|
+
&--variant-outline {
|
|
156
|
+
@include button-size(
|
|
157
|
+
$btn-height-default,
|
|
158
|
+
$btn-font-default,
|
|
159
|
+
$btn-icon-size-default,
|
|
160
|
+
$btn-padding-horizontal-default
|
|
161
|
+
);
|
|
162
|
+
@include button-attr-color("text", color);
|
|
163
|
+
|
|
164
|
+
@include button-attr-color("white-bg", background-color);
|
|
165
|
+
@include button-attr-color("border-gray", border-color);
|
|
166
|
+
|
|
167
|
+
&.#{$prefix}-button--theme-primary {
|
|
168
|
+
@include button-attr-color("primary", color);
|
|
169
|
+
@include button-attr-color("primary", border-color);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
&.#{$prefix}-button--theme-success {
|
|
173
|
+
@include button-attr-color("success", color);
|
|
174
|
+
@include button-attr-color("success", border-color);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
&.#{$prefix}-button--theme-warning {
|
|
178
|
+
@include button-attr-color("warning", color);
|
|
179
|
+
@include button-attr-color("warning", border-color);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
&.#{$prefix}-button--theme-danger {
|
|
183
|
+
@include button-attr-color("danger", color);
|
|
184
|
+
@include button-attr-color("danger", border-color);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
&.#{$prefix}-button--ghost {
|
|
188
|
+
@include button-attr-color("none", background-color, true);
|
|
189
|
+
@include button-attr-color("white-ghost", color, true);
|
|
190
|
+
@include button-attr-color("white-ghost", border-color, true);
|
|
191
|
+
|
|
192
|
+
&.#{$prefix}-button--theme-primary {
|
|
193
|
+
@include button-attr-color("primary", color, true);
|
|
194
|
+
@include button-attr-color("primary", border-color, true);
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
&.#{$prefix}-button--theme-success {
|
|
198
|
+
@include button-attr-color("success", color, true);
|
|
199
|
+
@include button-attr-color("success", border-color, true);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
&.#{$prefix}-button--theme-warning {
|
|
203
|
+
@include button-attr-color("warning", color, true);
|
|
204
|
+
@include button-attr-color("warning", border-color, true);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
&.#{$prefix}-button--theme-danger {
|
|
208
|
+
@include button-attr-color("danger", color, true);
|
|
209
|
+
@include button-attr-color("danger", border-color, true);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
&.#{$prefix}-is-loading:not(&.#{$prefix}-button--ghost) {
|
|
214
|
+
color: btn-color(text, default);
|
|
215
|
+
|
|
216
|
+
&.#{$prefix}-button--theme-primary {
|
|
217
|
+
color: btn-color(primary, default);
|
|
218
|
+
background-color: btn-color(text-bg, default);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
&.#{$prefix}-button--theme-success {
|
|
222
|
+
color: btn-color(success, default);
|
|
223
|
+
background-color: btn-color(text-bg, default);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
&.#{$prefix}-button--theme-warning {
|
|
227
|
+
color: btn-color(warning, default);
|
|
228
|
+
background-color: btn-color(text-bg, default);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
&.#{$prefix}-button--theme-danger {
|
|
232
|
+
color: btn-color(danger, default);
|
|
233
|
+
background-color: btn-color(text-bg, default);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
// 虚线按钮
|
|
239
|
+
&--variant-dashed {
|
|
240
|
+
@include button-size(
|
|
241
|
+
$btn-height-default,
|
|
242
|
+
$btn-font-default,
|
|
243
|
+
$btn-icon-size-default,
|
|
244
|
+
$btn-padding-horizontal-default
|
|
245
|
+
);
|
|
246
|
+
@include button-attr-color(text, color);
|
|
247
|
+
@include button-attr-color(white-bg, background-color);
|
|
248
|
+
@include button-attr-color(border-gray, border-color);
|
|
249
|
+
|
|
250
|
+
border-style: dashed;
|
|
251
|
+
|
|
252
|
+
&.#{$prefix}-button--theme-primary {
|
|
253
|
+
@include button-attr-color("primary", color);
|
|
254
|
+
@include button-attr-color("primary", border-color);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
&.#{$prefix}-button--theme-success {
|
|
258
|
+
@include button-attr-color("success", color);
|
|
259
|
+
@include button-attr-color("success", border-color);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
&.#{$prefix}-button--theme-warning {
|
|
263
|
+
@include button-attr-color("warning", color);
|
|
264
|
+
@include button-attr-color("warning", border-color);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
&.#{$prefix}-button--theme-danger {
|
|
268
|
+
@include button-attr-color("danger", color);
|
|
269
|
+
@include button-attr-color("danger", border-color);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
&.#{$prefix}-button--ghost {
|
|
273
|
+
@include button-attr-color("none", background-color, true);
|
|
274
|
+
@include button-attr-color("white-ghost", color, true);
|
|
275
|
+
@include button-attr-color("white-ghost", border-color, true);
|
|
276
|
+
|
|
277
|
+
&.#{$prefix}-button--theme-primary {
|
|
278
|
+
@include button-attr-color("primary", color, true);
|
|
279
|
+
@include button-attr-color("primary", border-color, true);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&.#{$prefix}-button--theme-success {
|
|
283
|
+
@include button-attr-color("success", color, true);
|
|
284
|
+
@include button-attr-color("success", border-color, true);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
&.#{$prefix}-button--theme-warning {
|
|
288
|
+
@include button-attr-color("warning", color, true);
|
|
289
|
+
@include button-attr-color("warning", border-color, true);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
&.#{$prefix}-button--theme-danger {
|
|
293
|
+
@include button-attr-color("danger", color, true);
|
|
294
|
+
@include button-attr-color("danger", border-color, true);
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
&.#{$prefix}-is-loading:not(&.#{$prefix}-button--ghost) {
|
|
298
|
+
color: btn-color(text, default);
|
|
299
|
+
|
|
300
|
+
&.#{$prefix}-button--theme-primary {
|
|
301
|
+
color: btn-color(primary, default);
|
|
302
|
+
background-color: btn-color(text-bg, default);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
&.#{$prefix}-button--theme-success {
|
|
306
|
+
color: btn-color(success, default);
|
|
307
|
+
background-color: btn-color(text-bg, default);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
&.#{$prefix}-button--theme-warning {
|
|
311
|
+
color: btn-color(warning, default);
|
|
312
|
+
background-color: btn-color(text-bg, default);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
&.#{$prefix}-button--theme-danger {
|
|
316
|
+
color: btn-color(danger, default);
|
|
317
|
+
background-color: btn-color(text-bg, default);
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
// 文字按钮
|
|
323
|
+
&--variant-text {
|
|
324
|
+
@include button-size(
|
|
325
|
+
$btn-height-default,
|
|
326
|
+
$btn-font-default,
|
|
327
|
+
$btn-icon-size-default,
|
|
328
|
+
$btn-padding-horizontal-default
|
|
329
|
+
);
|
|
330
|
+
@include button-attr-color("text-gray", color);
|
|
331
|
+
@include button-attr-color("text-bg", background-color);
|
|
332
|
+
@include button-attr-color("text-bg", border-color);
|
|
333
|
+
|
|
334
|
+
&.#{$prefix}-button--theme-primary {
|
|
335
|
+
@include button-attr-color("primary", color);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
&.#{$prefix}-button--theme-success {
|
|
339
|
+
@include button-attr-color("success", color);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
&.#{$prefix}-button--theme-warning {
|
|
343
|
+
@include button-attr-color("warning", color);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
&.#{$prefix}-button--theme-danger {
|
|
347
|
+
@include button-attr-color("danger", color);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
&.#{$prefix}-button--ghost {
|
|
351
|
+
background: none;
|
|
352
|
+
|
|
353
|
+
@include button-attr-color("white-ghost", color, true);
|
|
354
|
+
|
|
355
|
+
&.#{$prefix}-button--theme-primary {
|
|
356
|
+
@include button-attr-color("primary", color, true);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
&.#{$prefix}-button--theme-success {
|
|
360
|
+
@include button-attr-color("success", color, true);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
&.#{$prefix}-button--theme-warning {
|
|
364
|
+
@include button-attr-color("warning", color, true);
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
&.#{$prefix}-button--theme-danger {
|
|
368
|
+
@include button-attr-color("danger", color, true);
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
&.#{$prefix}-is-loading:not(&.#{$prefix}-button--ghost) {
|
|
373
|
+
color: btn-color(text, default);
|
|
374
|
+
|
|
375
|
+
&.#{$prefix}-button--theme-primary {
|
|
376
|
+
color: btn-color(primary, default);
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
&.#{$prefix}-button--theme-success {
|
|
380
|
+
color: btn-color(success, default);
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
&.#{$prefix}-button--theme-warning {
|
|
384
|
+
color: btn-color(warning, default);
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
&.#{$prefix}-button--theme-danger {
|
|
388
|
+
color: btn-color(danger, default);
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
&.#{$prefix}-is-loading,
|
|
394
|
+
&.#{$prefix}-is-disabled {
|
|
395
|
+
cursor: not-allowed;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
&.#{$prefix}-size-s {
|
|
399
|
+
@include button-size($btn-height-s, $btn-font-s, $btn-icon-size-s, $btn-padding-horizontal-s);
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
&.#{$prefix}-size-l {
|
|
403
|
+
@include button-size($btn-height-l, $btn-font-l, $btn-icon-size-l, $btn-padding-horizontal-l);
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
&--shape-square {
|
|
407
|
+
width: $btn-height-default;
|
|
408
|
+
padding: 0;
|
|
409
|
+
|
|
410
|
+
&.#{$prefix}-size-s {
|
|
411
|
+
width: $btn-height-s;
|
|
412
|
+
padding: 0;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
&.#{$prefix}-size-l {
|
|
416
|
+
width: $btn-height-l;
|
|
417
|
+
padding: 0;
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
&--shape-round {
|
|
422
|
+
border-radius: $border-radius-round;
|
|
423
|
+
|
|
424
|
+
&.#{$prefix}-size-s {
|
|
425
|
+
border-radius: $btn-shape-border-radius-s;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
&.#{$prefix}-size-l {
|
|
429
|
+
border-radius: $btn-shape-border-radius-l;
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
&--shape-circle {
|
|
434
|
+
width: $btn-height-default;
|
|
435
|
+
padding: 0;
|
|
436
|
+
text-align: center;
|
|
437
|
+
border-radius: $btn-shape-border-radius-default;
|
|
438
|
+
|
|
439
|
+
.t-icon {
|
|
440
|
+
font-size: $btn-icon-size-default;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.#{$prefix}-loading {
|
|
444
|
+
font-size: $btn-loading-size;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
&.#{$prefix}-size-s {
|
|
448
|
+
width: $btn-height-s;
|
|
449
|
+
border-radius: $btn-shape-border-radius-s;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
&.#{$prefix}-size-l {
|
|
453
|
+
width: $btn-height-l;
|
|
454
|
+
padding: 0;
|
|
455
|
+
border-radius: $btn-shape-border-radius-l;
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
&.#{$prefix}-size-full-width {
|
|
460
|
+
display: flex;
|
|
461
|
+
width: 100%;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.#{$prefix}-button--ghost {
|
|
466
|
+
--ripple-color: @gray-color-10; // 幽灵按钮相当于按钮深色模式,因此固定为深色模式 token
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.#{$prefix}-button:not(.#{$prefix}-is-disabled):not(.#{$prefix}-button--ghost) {
|
|
470
|
+
--ripple-color: btn-color(white-bg, active);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.#{$prefix}-button--variant-base:not(.#{$prefix}-is-disabled):not(.#{$prefix}-button--ghost) {
|
|
474
|
+
--ripple-color: btn-color(gray-bg, active);
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.#{$prefix}-button--variant-base.#{$prefix}-button--theme-primary:not(.#{$prefix}-is-disabled):not(
|
|
478
|
+
.#{$prefix}-button--ghost
|
|
479
|
+
) {
|
|
480
|
+
--ripple-color: btn-color(primary, active);
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.#{$prefix}-button--variant-base.#{$prefix}-button--theme-success:not(.#{$prefix}-is-disabled):not(
|
|
484
|
+
.#{$prefix}-button--ghost
|
|
485
|
+
) {
|
|
486
|
+
--ripple-color: btn-color(success, default)-active;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.#{$prefix}-button--variant-base.#{$prefix}-button--theme-warning:not(.#{$prefix}-is-disabled):not(
|
|
490
|
+
.#{$prefix}-button--ghost
|
|
491
|
+
) {
|
|
492
|
+
--ripple-color: btn-color(warning, active);
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.#{$prefix}-button--variant-base.#{$prefix}-button--theme-danger:not(.#{$prefix}-is-disabled):not(
|
|
496
|
+
.#{$prefix}-button--ghost
|
|
497
|
+
) {
|
|
498
|
+
--ripple-color: btn-color(danger, active);
|
|
499
|
+
}
|