@fluentui/react-button 9.0.0-alpha.10 → 9.0.0-alpha.100
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.json +2418 -1
- package/CHANGELOG.md +920 -2
- package/README.md +19 -108
- package/dist/demo/index.html +71 -0
- package/dist/demo/react-dom.development.js +21413 -0
- package/dist/demo/react.development.js +3155 -0
- package/dist/react-button.d.ts +204 -82
- package/lib/Button.js.map +1 -1
- package/lib/CompoundButton.d.ts +1 -0
- package/lib/CompoundButton.js +2 -0
- package/lib/CompoundButton.js.map +1 -0
- package/lib/MenuButton.d.ts +1 -0
- package/lib/MenuButton.js +2 -0
- package/lib/MenuButton.js.map +1 -0
- package/lib/SplitButton.d.ts +1 -0
- package/lib/SplitButton.js +2 -0
- package/lib/SplitButton.js.map +1 -0
- package/lib/ToggleButton.d.ts +1 -0
- package/lib/ToggleButton.js +2 -0
- package/lib/ToggleButton.js.map +1 -0
- package/lib/common/isConformant.d.ts +4 -2
- package/lib/common/isConformant.js +9 -6
- package/lib/common/isConformant.js.map +1 -1
- package/lib/components/Button/Button.d.ts +4 -11
- package/lib/components/Button/Button.js +7 -16
- package/lib/components/Button/Button.js.map +1 -1
- package/lib/components/Button/Button.types.d.ts +57 -60
- package/lib/components/Button/Button.types.js +1 -0
- package/lib/components/Button/Button.types.js.map +1 -1
- package/lib/components/Button/index.d.ts +1 -2
- package/lib/components/Button/index.js +1 -1
- package/lib/components/Button/index.js.map +1 -1
- package/lib/components/Button/renderButton.d.ts +2 -2
- package/lib/components/Button/renderButton.js +9 -8
- package/lib/components/Button/renderButton.js.map +1 -1
- package/lib/components/Button/useButton.d.ts +5 -7
- package/lib/components/Button/useButton.js +49 -23
- package/lib/components/Button/useButton.js.map +1 -1
- package/lib/components/Button/useButtonStyles.d.ts +10 -4
- package/lib/components/Button/useButtonStyles.js +350 -378
- package/lib/components/Button/useButtonStyles.js.map +1 -1
- package/lib/components/CompoundButton/CompoundButton.d.ts +6 -0
- package/lib/components/CompoundButton/CompoundButton.js +15 -0
- package/lib/components/CompoundButton/CompoundButton.js.map +1 -0
- package/lib/components/CompoundButton/CompoundButton.types.d.ts +14 -0
- package/lib/components/CompoundButton/CompoundButton.types.js +2 -0
- package/lib/components/CompoundButton/CompoundButton.types.js.map +1 -0
- package/lib/components/CompoundButton/index.d.ts +5 -0
- package/lib/components/CompoundButton/index.js +6 -0
- package/lib/components/CompoundButton/index.js.map +1 -0
- package/lib/components/CompoundButton/renderCompoundButton.d.ts +5 -0
- package/lib/components/CompoundButton/renderCompoundButton.js +17 -0
- package/lib/components/CompoundButton/renderCompoundButton.js.map +1 -0
- package/lib/components/CompoundButton/useCompoundButton.d.ts +8 -0
- package/lib/components/CompoundButton/useCompoundButton.js +29 -0
- package/lib/components/CompoundButton/useCompoundButton.js.map +1 -0
- package/lib/components/CompoundButton/useCompoundButtonStyles.d.ts +2 -0
- package/lib/components/CompoundButton/useCompoundButtonStyles.js +164 -0
- package/lib/components/CompoundButton/useCompoundButtonStyles.js.map +1 -0
- package/lib/components/MenuButton/MenuButton.d.ts +6 -0
- package/lib/components/MenuButton/MenuButton.js +15 -0
- package/lib/components/MenuButton/MenuButton.js.map +1 -0
- package/lib/components/MenuButton/MenuButton.types.d.ts +11 -0
- package/lib/components/MenuButton/MenuButton.types.js +2 -0
- package/lib/components/MenuButton/MenuButton.types.js.map +1 -0
- package/lib/components/MenuButton/index.d.ts +5 -0
- package/lib/components/MenuButton/index.js +6 -0
- package/lib/components/MenuButton/index.js.map +1 -0
- package/lib/components/MenuButton/renderMenuButton.d.ts +5 -0
- package/lib/components/MenuButton/renderMenuButton.js +17 -0
- package/lib/components/MenuButton/renderMenuButton.js.map +1 -0
- package/lib/components/MenuButton/useMenuButton.d.ts +6 -0
- package/lib/components/MenuButton/useMenuButton.js +32 -0
- package/lib/components/MenuButton/useMenuButton.js.map +1 -0
- package/lib/components/MenuButton/useMenuButtonStyles.d.ts +2 -0
- package/lib/components/MenuButton/useMenuButtonStyles.js +34 -0
- package/lib/components/MenuButton/useMenuButtonStyles.js.map +1 -0
- package/lib/components/SplitButton/SplitButton.d.ts +7 -0
- package/lib/components/SplitButton/SplitButton.js +16 -0
- package/lib/components/SplitButton/SplitButton.js.map +1 -0
- package/lib/components/SplitButton/SplitButton.types.d.ts +19 -0
- package/lib/components/SplitButton/SplitButton.types.js +2 -0
- package/lib/components/SplitButton/SplitButton.types.js.map +1 -0
- package/lib/components/SplitButton/index.d.ts +5 -0
- package/lib/components/SplitButton/index.js +6 -0
- package/lib/components/SplitButton/index.js.map +1 -0
- package/lib/components/SplitButton/renderSplitButton.d.ts +5 -0
- package/lib/components/SplitButton/renderSplitButton.js +15 -0
- package/lib/components/SplitButton/renderSplitButton.js.map +1 -0
- package/lib/components/SplitButton/useSplitButton.d.ts +8 -0
- package/lib/components/SplitButton/useSplitButton.js +73 -0
- package/lib/components/SplitButton/useSplitButton.js.map +1 -0
- package/lib/components/SplitButton/useSplitButtonStyles.d.ts +2 -0
- package/lib/components/SplitButton/useSplitButtonStyles.js +77 -0
- package/lib/components/SplitButton/useSplitButtonStyles.js.map +1 -0
- package/lib/components/ToggleButton/ToggleButton.d.ts +6 -0
- package/lib/components/ToggleButton/ToggleButton.js +15 -0
- package/lib/components/ToggleButton/ToggleButton.js.map +1 -0
- package/lib/components/ToggleButton/ToggleButton.types.d.ts +19 -0
- package/lib/components/ToggleButton/ToggleButton.types.js +2 -0
- package/lib/components/ToggleButton/ToggleButton.types.js.map +1 -0
- package/lib/components/ToggleButton/index.d.ts +5 -0
- package/lib/components/ToggleButton/index.js +6 -0
- package/lib/components/ToggleButton/index.js.map +1 -0
- package/lib/components/ToggleButton/renderToggleButton.d.ts +1 -0
- package/lib/components/ToggleButton/renderToggleButton.js +2 -0
- package/lib/components/ToggleButton/renderToggleButton.js.map +1 -0
- package/lib/components/ToggleButton/useToggleButton.d.ts +9 -0
- package/lib/components/ToggleButton/useToggleButton.js +50 -0
- package/lib/components/ToggleButton/useToggleButton.js.map +1 -0
- package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +2 -0
- package/lib/components/ToggleButton/useToggleButtonStyles.js +190 -0
- package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +4 -0
- package/lib/index.js.map +1 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/lib-commonjs/Button.js +7 -2
- package/lib-commonjs/Button.js.map +1 -1
- package/lib-commonjs/CompoundButton.d.ts +1 -0
- package/lib-commonjs/CompoundButton.js +10 -0
- package/lib-commonjs/CompoundButton.js.map +1 -0
- package/lib-commonjs/MenuButton.d.ts +1 -0
- package/lib-commonjs/MenuButton.js +10 -0
- package/lib-commonjs/MenuButton.js.map +1 -0
- package/lib-commonjs/SplitButton.d.ts +1 -0
- package/lib-commonjs/SplitButton.js +10 -0
- package/lib-commonjs/SplitButton.js.map +1 -0
- package/lib-commonjs/ToggleButton.d.ts +1 -0
- package/lib-commonjs/ToggleButton.js +10 -0
- package/lib-commonjs/ToggleButton.js.map +1 -0
- package/lib-commonjs/common/isConformant.d.ts +4 -2
- package/lib-commonjs/common/isConformant.js +19 -8
- package/lib-commonjs/common/isConformant.js.map +1 -1
- package/lib-commonjs/components/Button/Button.d.ts +4 -11
- package/lib-commonjs/components/Button/Button.js +20 -20
- package/lib-commonjs/components/Button/Button.js.map +1 -1
- package/lib-commonjs/components/Button/Button.types.d.ts +57 -60
- package/lib-commonjs/components/Button/Button.types.js +4 -1
- package/lib-commonjs/components/Button/Button.types.js.map +1 -1
- package/lib-commonjs/components/Button/index.d.ts +1 -2
- package/lib-commonjs/components/Button/index.js +21 -5
- package/lib-commonjs/components/Button/index.js.map +1 -1
- package/lib-commonjs/components/Button/renderButton.d.ts +2 -2
- package/lib-commonjs/components/Button/renderButton.js +24 -13
- package/lib-commonjs/components/Button/renderButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButton.d.ts +5 -7
- package/lib-commonjs/components/Button/useButton.js +59 -24
- package/lib-commonjs/components/Button/useButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButtonStyles.d.ts +10 -4
- package/lib-commonjs/components/Button/useButtonStyles.js +360 -379
- package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.d.ts +6 -0
- package/lib-commonjs/components/CompoundButton/CompoundButton.js +26 -0
- package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -0
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.d.ts +14 -0
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.js +6 -0
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.js.map +1 -0
- package/lib-commonjs/components/CompoundButton/index.d.ts +5 -0
- package/lib-commonjs/components/CompoundButton/index.js +26 -0
- package/lib-commonjs/components/CompoundButton/index.js.map +1 -0
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.d.ts +5 -0
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.js +29 -0
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.js.map +1 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButton.d.ts +8 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js +41 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js.map +1 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +2 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js +175 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -0
- package/lib-commonjs/components/MenuButton/MenuButton.d.ts +6 -0
- package/lib-commonjs/components/MenuButton/MenuButton.js +26 -0
- package/lib-commonjs/components/MenuButton/MenuButton.js.map +1 -0
- package/lib-commonjs/components/MenuButton/MenuButton.types.d.ts +11 -0
- package/lib-commonjs/components/MenuButton/MenuButton.types.js +6 -0
- package/lib-commonjs/components/MenuButton/MenuButton.types.js.map +1 -0
- package/lib-commonjs/components/MenuButton/index.d.ts +5 -0
- package/lib-commonjs/components/MenuButton/index.js +26 -0
- package/lib-commonjs/components/MenuButton/index.js.map +1 -0
- package/lib-commonjs/components/MenuButton/renderMenuButton.d.ts +5 -0
- package/lib-commonjs/components/MenuButton/renderMenuButton.js +29 -0
- package/lib-commonjs/components/MenuButton/renderMenuButton.js.map +1 -0
- package/lib-commonjs/components/MenuButton/useMenuButton.d.ts +6 -0
- package/lib-commonjs/components/MenuButton/useMenuButton.js +46 -0
- package/lib-commonjs/components/MenuButton/useMenuButton.js.map +1 -0
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +2 -0
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +44 -0
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -0
- package/lib-commonjs/components/SplitButton/SplitButton.d.ts +7 -0
- package/lib-commonjs/components/SplitButton/SplitButton.js +27 -0
- package/lib-commonjs/components/SplitButton/SplitButton.js.map +1 -0
- package/lib-commonjs/components/SplitButton/SplitButton.types.d.ts +19 -0
- package/lib-commonjs/components/SplitButton/SplitButton.types.js +6 -0
- package/lib-commonjs/components/SplitButton/SplitButton.types.js.map +1 -0
- package/lib-commonjs/components/SplitButton/index.d.ts +5 -0
- package/lib-commonjs/components/SplitButton/index.js +26 -0
- package/lib-commonjs/components/SplitButton/index.js.map +1 -0
- package/lib-commonjs/components/SplitButton/renderSplitButton.d.ts +5 -0
- package/lib-commonjs/components/SplitButton/renderSplitButton.js +27 -0
- package/lib-commonjs/components/SplitButton/renderSplitButton.js.map +1 -0
- package/lib-commonjs/components/SplitButton/useSplitButton.d.ts +8 -0
- package/lib-commonjs/components/SplitButton/useSplitButton.js +86 -0
- package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -0
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +2 -0
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +88 -0
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -0
- package/lib-commonjs/components/ToggleButton/ToggleButton.d.ts +6 -0
- package/lib-commonjs/components/ToggleButton/ToggleButton.js +26 -0
- package/lib-commonjs/components/ToggleButton/ToggleButton.js.map +1 -0
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.d.ts +19 -0
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.js +6 -0
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.js.map +1 -0
- package/lib-commonjs/components/ToggleButton/index.d.ts +5 -0
- package/lib-commonjs/components/ToggleButton/index.js +26 -0
- package/lib-commonjs/components/ToggleButton/index.js.map +1 -0
- package/lib-commonjs/components/ToggleButton/renderToggleButton.d.ts +1 -0
- package/lib-commonjs/components/ToggleButton/renderToggleButton.js +16 -0
- package/lib-commonjs/components/ToggleButton/renderToggleButton.js.map +1 -0
- package/lib-commonjs/components/ToggleButton/useToggleButton.d.ts +9 -0
- package/lib-commonjs/components/ToggleButton/useToggleButton.js +63 -0
- package/lib-commonjs/components/ToggleButton/useToggleButton.js.map +1 -0
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +2 -0
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js +200 -0
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
- package/lib-commonjs/index.d.ts +4 -0
- package/lib-commonjs/index.js +15 -2
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +21 -14
- package/config/api-extractor.json +0 -3
- package/config/pre-copy.json +0 -9
- package/config/tests.js +0 -6
- package/etc/react-button.api.md +0 -104
- package/just.config.ts +0 -3
- package/lib/components/Button/useButtonState.d.ts +0 -6
- package/lib/components/Button/useButtonState.js +0 -45
- package/lib/components/Button/useButtonState.js.map +0 -1
- package/lib-amd/Button.d.ts +0 -1
- package/lib-amd/Button.js +0 -6
- package/lib-amd/Button.js.map +0 -1
- package/lib-amd/common/isConformant.d.ts +0 -2
- package/lib-amd/common/isConformant.js +0 -14
- package/lib-amd/common/isConformant.js.map +0 -1
- package/lib-amd/components/Button/Button.d.ts +0 -13
- package/lib-amd/components/Button/Button.js +0 -24
- package/lib-amd/components/Button/Button.js.map +0 -1
- package/lib-amd/components/Button/Button.types.d.ts +0 -65
- package/lib-amd/components/Button/Button.types.js +0 -5
- package/lib-amd/components/Button/Button.types.js.map +0 -1
- package/lib-amd/components/Button/index.d.ts +0 -6
- package/lib-amd/components/Button/index.js +0 -10
- package/lib-amd/components/Button/index.js.map +0 -1
- package/lib-amd/components/Button/renderButton.d.ts +0 -5
- package/lib-amd/components/Button/renderButton.js +0 -16
- package/lib-amd/components/Button/renderButton.js.map +0 -1
- package/lib-amd/components/Button/useButton.d.ts +0 -10
- package/lib-amd/components/Button/useButton.js +0 -28
- package/lib-amd/components/Button/useButton.js.map +0 -1
- package/lib-amd/components/Button/useButtonState.d.ts +0 -6
- package/lib-amd/components/Button/useButtonState.js +0 -48
- package/lib-amd/components/Button/useButtonState.js.map +0 -1
- package/lib-amd/components/Button/useButtonStyles.d.ts +0 -4
- package/lib-amd/components/Button/useButtonStyles.js +0 -385
- package/lib-amd/components/Button/useButtonStyles.js.map +0 -1
- package/lib-amd/index.d.ts +0 -1
- package/lib-amd/index.js +0 -6
- package/lib-amd/index.js.map +0 -1
- package/lib-commonjs/components/Button/useButtonState.d.ts +0 -6
- package/lib-commonjs/components/Button/useButtonState.js +0 -47
- package/lib-commonjs/components/Button/useButtonState.js.map +0 -1
- package/src/components/Button/Button.types.ts +0 -120
@@ -1,384 +1,365 @@
|
|
1
1
|
"use strict";
|
2
|
-
|
3
|
-
|
4
|
-
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.useButtonStyles = exports.buttonSpacing = void 0;
|
7
|
+
|
8
|
+
var react_make_styles_1 = /*#__PURE__*/require("@fluentui/react-make-styles");
|
9
|
+
|
10
|
+
var react_tabster_1 = /*#__PURE__*/require("@fluentui/react-tabster"); // TODO: These are named in design specs but not hoisted to global/alias yet.
|
5
11
|
// We're tracking these here to determine how we can hoist them.
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
12
|
+
|
13
|
+
|
14
|
+
exports.buttonSpacing = {
|
15
|
+
smallest: '2px',
|
16
|
+
smaller: '4px',
|
17
|
+
small: '6px',
|
18
|
+
medium: '8px',
|
19
|
+
large: '12px',
|
20
|
+
larger: '16px'
|
13
21
|
};
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
[
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
],
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
[
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
var
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
[
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
return {
|
355
|
-
display: 'inline-flex',
|
356
|
-
alignItems: 'center',
|
357
|
-
justifyContent: 'center',
|
358
|
-
height: buttonTokens.base.iconHeight,
|
359
|
-
width: buttonTokens.base.iconWidth,
|
360
|
-
};
|
361
|
-
},
|
362
|
-
],
|
363
|
-
[
|
364
|
-
function (_a) {
|
365
|
-
var size = _a.size;
|
366
|
-
return size === 'large';
|
367
|
-
},
|
368
|
-
function (theme) {
|
369
|
-
var buttonTokens = exports.makeButtonTokens(theme);
|
370
|
-
return {
|
371
|
-
width: buttonTokens.large.iconWidth,
|
372
|
-
height: buttonTokens.large.iconHeight,
|
373
|
-
};
|
374
|
-
},
|
375
|
-
],
|
376
|
-
]);
|
377
|
-
exports.useButtonStyles = function (state, selectors) {
|
378
|
-
state.className = react_make_styles_1.ax(state.className, useRootStyles(selectors));
|
379
|
-
state.children = state.children || { className: '' };
|
380
|
-
state.icon = state.icon || { className: '' };
|
381
|
-
state.children.className = react_make_styles_1.ax(state.children.className, useChildrenStyles(selectors));
|
382
|
-
state.icon.className = react_make_styles_1.ax(state.icon.className, useIconStyles(selectors));
|
22
|
+
|
23
|
+
var useRootStyles = /*#__PURE__*/react_make_styles_1.__styles({
|
24
|
+
"base": {
|
25
|
+
"Bt984gj": "f122n59",
|
26
|
+
"mc9l5x": "ftuwxu6",
|
27
|
+
"Brf1p80": "f4d9j23",
|
28
|
+
"ha4doy": "fmrv4ls",
|
29
|
+
"B6of3ja": "f1hu3pq6",
|
30
|
+
"t21cq0": ["f11qmguv", "f1tyq0we"],
|
31
|
+
"jrapky": "f19f4twv",
|
32
|
+
"Frg6f3": ["f1tyq0we", "f11qmguv"],
|
33
|
+
"B2u0y6b": "f1n52uh2",
|
34
|
+
"Bpg54ce": "f1a3p1vp",
|
35
|
+
"ygn44y": "f1cmbuwj",
|
36
|
+
"Huce71": "fz5stix",
|
37
|
+
"ayd6f0": "fcm7iae",
|
38
|
+
"sj55zd": "f19n0e5",
|
39
|
+
"g2u3we": "fj3muxo",
|
40
|
+
"h3c5rm": ["f1akhkt", "f1lxtadh"],
|
41
|
+
"B9xav0g": "f1aperda",
|
42
|
+
"zhjwy3": ["f1lxtadh", "f1akhkt"],
|
43
|
+
"icvyot": "fzkkow9",
|
44
|
+
"vrafjx": ["fcdblym", "fjik90z"],
|
45
|
+
"oivjwe": "fg706s2",
|
46
|
+
"wvpqe5": ["fjik90z", "fcdblym"],
|
47
|
+
"B4j52fo": "f192inf7",
|
48
|
+
"Bekrc4i": ["f5tn483", "f1ojsxk5"],
|
49
|
+
"Bn0qgzm": "f1vxd6vx",
|
50
|
+
"ibv6hh": ["f1ojsxk5", "f5tn483"],
|
51
|
+
"Bahqtrf": "fk6fouc",
|
52
|
+
"oeaueh": "f1s6fcnf",
|
53
|
+
"v4pbla": "f56u8ty",
|
54
|
+
"Bgoe8wy": "fvcxoqz",
|
55
|
+
"Bwzppfd": ["f1ub3y4t", "f1m52nbi"],
|
56
|
+
"oetu4i": "f1xlaoq0",
|
57
|
+
"gg5e9n": ["f1m52nbi", "f1ub3y4t"],
|
58
|
+
"Bi91k9c": "fax3udt",
|
59
|
+
"eoavqd": "f8491dx",
|
60
|
+
"vv34bc": "fzgy25m",
|
61
|
+
"B6oc9vd": "fvs00aa",
|
62
|
+
"ak43y8": ["f1assf6x", "f4ruux4"],
|
63
|
+
"wmxk5l": "fumykes",
|
64
|
+
"B50zh58": ["f4ruux4", "f1assf6x"],
|
65
|
+
"lj723h": "f1r2dosr",
|
66
|
+
"zwc60e": "fb0xa7e"
|
67
|
+
},
|
68
|
+
"block": {
|
69
|
+
"B2u0y6b": "f6dzj5z",
|
70
|
+
"a9b677": "fly5x3f"
|
71
|
+
},
|
72
|
+
"outline": {
|
73
|
+
"ayd6f0": "f1gjiv6l",
|
74
|
+
"v4pbla": "f62j56f",
|
75
|
+
"vv34bc": "flt377r"
|
76
|
+
},
|
77
|
+
"primary": {
|
78
|
+
"ayd6f0": "f1tdnksq",
|
79
|
+
"g2u3we": "f1p3nwhy",
|
80
|
+
"h3c5rm": ["f11589ue", "f1pdflbu"],
|
81
|
+
"B9xav0g": "f1q5o8ev",
|
82
|
+
"zhjwy3": ["f1pdflbu", "f11589ue"],
|
83
|
+
"sj55zd": "f1phragk",
|
84
|
+
"v4pbla": "f1fitrdm",
|
85
|
+
"Bgoe8wy": "f1s2uweq",
|
86
|
+
"Bwzppfd": ["fr80ssc", "fecsdlb"],
|
87
|
+
"oetu4i": "f1ukrpxl",
|
88
|
+
"gg5e9n": ["fecsdlb", "fr80ssc"],
|
89
|
+
"Bi91k9c": "f1rq72xc",
|
90
|
+
"vv34bc": "f4ihffn",
|
91
|
+
"B6oc9vd": "ff472gp",
|
92
|
+
"ak43y8": ["f4yyc7m", "ft2aflc"],
|
93
|
+
"wmxk5l": "fggejwh",
|
94
|
+
"B50zh58": ["ft2aflc", "f4yyc7m"],
|
95
|
+
"lj723h": "f18otbis"
|
96
|
+
},
|
97
|
+
"subtle": {
|
98
|
+
"ayd6f0": "f11q0hf9",
|
99
|
+
"g2u3we": "f1p3nwhy",
|
100
|
+
"h3c5rm": ["f11589ue", "f1pdflbu"],
|
101
|
+
"B9xav0g": "f1q5o8ev",
|
102
|
+
"zhjwy3": ["f1pdflbu", "f11589ue"],
|
103
|
+
"sj55zd": "fkfq4zb",
|
104
|
+
"v4pbla": "f4wzgrt",
|
105
|
+
"Bgoe8wy": "f1s2uweq",
|
106
|
+
"Bwzppfd": ["fr80ssc", "fecsdlb"],
|
107
|
+
"oetu4i": "f1ukrpxl",
|
108
|
+
"gg5e9n": ["fecsdlb", "fr80ssc"],
|
109
|
+
"Bi91k9c": "f139oj5f",
|
110
|
+
"vv34bc": "f1be4e1d",
|
111
|
+
"B6oc9vd": "ff472gp",
|
112
|
+
"ak43y8": ["f4yyc7m", "ft2aflc"],
|
113
|
+
"wmxk5l": "fggejwh",
|
114
|
+
"B50zh58": ["ft2aflc", "f4yyc7m"],
|
115
|
+
"lj723h": "f19au66r"
|
116
|
+
},
|
117
|
+
"transparent": {
|
118
|
+
"ayd6f0": "f1gjiv6l",
|
119
|
+
"g2u3we": "f1p3nwhy",
|
120
|
+
"h3c5rm": ["f11589ue", "f1pdflbu"],
|
121
|
+
"B9xav0g": "f1q5o8ev",
|
122
|
+
"zhjwy3": ["f1pdflbu", "f11589ue"],
|
123
|
+
"sj55zd": "fkfq4zb",
|
124
|
+
"v4pbla": "f62j56f",
|
125
|
+
"Bgoe8wy": "f1s2uweq",
|
126
|
+
"Bwzppfd": ["fr80ssc", "fecsdlb"],
|
127
|
+
"oetu4i": "f1ukrpxl",
|
128
|
+
"gg5e9n": ["fecsdlb", "fr80ssc"],
|
129
|
+
"Bi91k9c": "f139oj5f",
|
130
|
+
"vv34bc": "flt377r",
|
131
|
+
"B6oc9vd": "ff472gp",
|
132
|
+
"ak43y8": ["f4yyc7m", "ft2aflc"],
|
133
|
+
"wmxk5l": "fggejwh",
|
134
|
+
"B50zh58": ["ft2aflc", "f4yyc7m"],
|
135
|
+
"lj723h": "f19au66r"
|
136
|
+
},
|
137
|
+
"circular": {
|
138
|
+
"Dimara": "f44lkw9"
|
139
|
+
},
|
140
|
+
"rounded": {},
|
141
|
+
"square": {
|
142
|
+
"Dimara": "f1fabniw"
|
143
|
+
},
|
144
|
+
"small": {
|
145
|
+
"rmohyg": "f4xv25i",
|
146
|
+
"z8tnut": "f1g0x7ka",
|
147
|
+
"z189sj": ["f19lj068", "f177v4lu"],
|
148
|
+
"Byoj8tv": "f1qch9an",
|
149
|
+
"uwmqm3": ["f177v4lu", "f19lj068"],
|
150
|
+
"Bqenvij": "frvgh55",
|
151
|
+
"Bf4jedk": "fh7ncta",
|
152
|
+
"Dimara": "fq9zq91",
|
153
|
+
"Be2twd7": "fy9rknc",
|
154
|
+
"Bhrd7zp": "figsok6",
|
155
|
+
"Bg96gwp": "fwrc4pm"
|
156
|
+
},
|
157
|
+
"medium": {
|
158
|
+
"rmohyg": "f19jf40t",
|
159
|
+
"z8tnut": "f1g0x7ka",
|
160
|
+
"z189sj": ["f11qrl6u", "fjlbh76"],
|
161
|
+
"Byoj8tv": "f1qch9an",
|
162
|
+
"uwmqm3": ["fjlbh76", "f11qrl6u"],
|
163
|
+
"Bqenvij": "f1d2rq10",
|
164
|
+
"Bf4jedk": "f14es27b",
|
165
|
+
"Dimara": "ft85np5",
|
166
|
+
"Be2twd7": "fkhj508",
|
167
|
+
"Bhrd7zp": "fl43uef",
|
168
|
+
"Bg96gwp": "f1i3iumi"
|
169
|
+
},
|
170
|
+
"large": {
|
171
|
+
"rmohyg": "f19jf40t",
|
172
|
+
"z8tnut": "f1g0x7ka",
|
173
|
+
"z189sj": ["f1gbmcue", "f1rh9g5y"],
|
174
|
+
"Byoj8tv": "f1qch9an",
|
175
|
+
"uwmqm3": ["f1rh9g5y", "f1gbmcue"],
|
176
|
+
"Bqenvij": "fbhnoac",
|
177
|
+
"Bf4jedk": "f14es27b",
|
178
|
+
"Dimara": "ft85np5",
|
179
|
+
"Be2twd7": "fod5ikn",
|
180
|
+
"Bhrd7zp": "fl43uef",
|
181
|
+
"Bg96gwp": "faaz57k"
|
182
|
+
}
|
183
|
+
}, {
|
184
|
+
"d": [".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}", ".ftuwxu6{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}", ".f4d9j23{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}", ".fmrv4ls{vertical-align:middle;}", ".f1hu3pq6{margin-top:0;}", ".f11qmguv{margin-right:0;}", ".f1tyq0we{margin-left:0;}", ".f19f4twv{margin-bottom:0;}", ".f1n52uh2{max-width:280px;}", ".f1a3p1vp{overflow:hidden;}", ".f1cmbuwj{text-overflow:ellipsis;}", ".fz5stix{white-space:nowrap;}", ".fcm7iae{background:var(--colorNeutralBackground1);}", ".f19n0e5{color:var(--colorNeutralForeground1);}", ".fj3muxo{border-top-color:var(--colorNeutralStroke1);}", ".f1akhkt{border-right-color:var(--colorNeutralStroke1);}", ".f1lxtadh{border-left-color:var(--colorNeutralStroke1);}", ".f1aperda{border-bottom-color:var(--colorNeutralStroke1);}", ".fzkkow9{border-top-style:solid;}", ".fcdblym{border-right-style:solid;}", ".fjik90z{border-left-style:solid;}", ".fg706s2{border-bottom-style:solid;}", ".f192inf7{border-top-width:var(--strokeWidthThin);}", ".f5tn483{border-right-width:var(--strokeWidthThin);}", ".f1ojsxk5{border-left-width:var(--strokeWidthThin);}", ".f1vxd6vx{border-bottom-width:var(--strokeWidthThin);}", ".fk6fouc{font-family:var(--fontFamilyBase);}", ".f1s6fcnf{outline-style:none;}", ".f6dzj5z{max-width:100%;}", ".fly5x3f{width:100%;}", ".f1gjiv6l{background:var(--colorTransparentBackground);}", ".f1tdnksq{background:var(--colorBrandBackground);}", ".f1p3nwhy{border-top-color:transparent;}", ".f11589ue{border-right-color:transparent;}", ".f1pdflbu{border-left-color:transparent;}", ".f1q5o8ev{border-bottom-color:transparent;}", ".f1phragk{color:var(--colorNeutralForegroundOnBrand);}", ".f11q0hf9{background:var(--colorSubtleBackground);}", ".fkfq4zb{color:var(--colorNeutralForeground2);}", ".f44lkw9{border-radius:var(--borderRadiusCircular);}", ".f1fabniw{border-radius:var(--borderRadiusNone);}", ".f4xv25i{gap:4px;}", ".f1g0x7ka{padding-top:0;}", ".f19lj068{padding-right:8px;}", ".f177v4lu{padding-left:8px;}", ".f1qch9an{padding-bottom:0;}", ".frvgh55{height:24px;}", ".fh7ncta{min-width:64px;}", ".fq9zq91{border-radius:var(--borderRadiusSmall);}", ".fy9rknc{font-size:var(--fontSizeBase200);}", ".figsok6{font-weight:var(--fontWeightRegular);}", ".fwrc4pm{line-height:var(--lineHeightBase200);}", ".f19jf40t{gap:6px;}", ".f11qrl6u{padding-right:12px;}", ".fjlbh76{padding-left:12px;}", ".f1d2rq10{height:32px;}", ".f14es27b{min-width:96px;}", ".ft85np5{border-radius:var(--borderRadiusMedium);}", ".fkhj508{font-size:var(--fontSizeBase300);}", ".fl43uef{font-weight:var(--fontWeightSemibold);}", ".f1i3iumi{line-height:var(--lineHeightBase300);}", ".f1gbmcue{padding-right:16px;}", ".f1rh9g5y{padding-left:16px;}", ".fbhnoac{height:40px;}", ".fod5ikn{font-size:var(--fontSizeBase400);}", ".faaz57k{line-height:var(--lineHeightBase400);}"],
|
185
|
+
"h": [".f56u8ty:hover{background:var(--colorNeutralBackground1Hover);}", ".fvcxoqz:hover{border-top-color:var(--colorNeutralStroke1Hover);}", ".f1ub3y4t:hover{border-right-color:var(--colorNeutralStroke1Hover);}", ".f1m52nbi:hover{border-left-color:var(--colorNeutralStroke1Hover);}", ".f1xlaoq0:hover{border-bottom-color:var(--colorNeutralStroke1Hover);}", ".fax3udt:hover{color:var(--colorNeutralForeground1);}", ".f8491dx:hover{cursor:pointer;}", ".f62j56f:hover{background:var(--colorTransparentBackgroundHover);}", ".f1fitrdm:hover{background:var(--colorBrandBackgroundHover);}", ".f1s2uweq:hover{border-top-color:transparent;}", ".fr80ssc:hover{border-right-color:transparent;}", ".fecsdlb:hover{border-left-color:transparent;}", ".f1ukrpxl:hover{border-bottom-color:transparent;}", ".f1rq72xc:hover{color:var(--colorNeutralForegroundOnBrand);}", ".f4wzgrt:hover{background:var(--colorSubtleBackgroundHover);}", ".f139oj5f:hover{color:var(--colorNeutralForeground2BrandHover);}"],
|
186
|
+
"a": [".fzgy25m:active{background:var(--colorNeutralBackground1Pressed);}", ".fvs00aa:active{border-top-color:var(--colorNeutralStroke1Pressed);}", ".f1assf6x:active{border-right-color:var(--colorNeutralStroke1Pressed);}", ".f4ruux4:active{border-left-color:var(--colorNeutralStroke1Pressed);}", ".fumykes:active{border-bottom-color:var(--colorNeutralStroke1Pressed);}", ".f1r2dosr:active{color:var(--colorNeutralForeground1);}", ".fb0xa7e:active{outline-style:none;}", ".flt377r:active{background:var(--colorTransparentBackgroundPressed);}", ".f4ihffn:active{background:var(--colorBrandBackgroundPressed);}", ".ff472gp:active{border-top-color:transparent;}", ".f4yyc7m:active{border-right-color:transparent;}", ".ft2aflc:active{border-left-color:transparent;}", ".fggejwh:active{border-bottom-color:transparent;}", ".f18otbis:active{color:var(--colorNeutralForegroundOnBrand);}", ".f1be4e1d:active{background:var(--colorSubtleBackgroundPressed);}", ".f19au66r:active{color:var(--colorNeutralForeground2BrandPressed);}"]
|
187
|
+
});
|
188
|
+
|
189
|
+
var useRootDisabledStyles = /*#__PURE__*/react_make_styles_1.__styles({
|
190
|
+
"base": {
|
191
|
+
"ayd6f0": "fqst6tg",
|
192
|
+
"g2u3we": "f1jj8ep1",
|
193
|
+
"h3c5rm": ["f15xbau", "fy0fskl"],
|
194
|
+
"B9xav0g": "f4ikngz",
|
195
|
+
"zhjwy3": ["fy0fskl", "f15xbau"],
|
196
|
+
"sj55zd": "f1s2aq7o",
|
197
|
+
"Bceei9c": "fdrzuqr",
|
198
|
+
"v4pbla": "f1nil5o8",
|
199
|
+
"Bgoe8wy": "f12mpcsy",
|
200
|
+
"Bwzppfd": ["f1gwvigk", "f18rmfxp"],
|
201
|
+
"oetu4i": "f1jnshp0",
|
202
|
+
"gg5e9n": ["f18rmfxp", "f1gwvigk"],
|
203
|
+
"Bi91k9c": "fvgxktp",
|
204
|
+
"eoavqd": "fphbwmw",
|
205
|
+
"vv34bc": "fkqx3al",
|
206
|
+
"B6oc9vd": "fdi4vxw",
|
207
|
+
"ak43y8": ["f4ryxzl", "fkdgpbx"],
|
208
|
+
"wmxk5l": "fcmhn06",
|
209
|
+
"B50zh58": ["fkdgpbx", "f4ryxzl"],
|
210
|
+
"lj723h": "f19wldhg",
|
211
|
+
"Bwh3duv": "fq67hom"
|
212
|
+
},
|
213
|
+
"outline": {
|
214
|
+
"ayd6f0": "f1gjiv6l",
|
215
|
+
"v4pbla": "f62j56f",
|
216
|
+
"vv34bc": "flt377r"
|
217
|
+
},
|
218
|
+
"primary": {
|
219
|
+
"g2u3we": "f1p3nwhy",
|
220
|
+
"h3c5rm": ["f11589ue", "f1pdflbu"],
|
221
|
+
"B9xav0g": "f1q5o8ev",
|
222
|
+
"zhjwy3": ["f1pdflbu", "f11589ue"],
|
223
|
+
"Bgoe8wy": "f1s2uweq",
|
224
|
+
"Bwzppfd": ["fr80ssc", "fecsdlb"],
|
225
|
+
"oetu4i": "f1ukrpxl",
|
226
|
+
"gg5e9n": ["fecsdlb", "fr80ssc"],
|
227
|
+
"B6oc9vd": "ff472gp",
|
228
|
+
"ak43y8": ["f4yyc7m", "ft2aflc"],
|
229
|
+
"wmxk5l": "fggejwh",
|
230
|
+
"B50zh58": ["ft2aflc", "f4yyc7m"]
|
231
|
+
},
|
232
|
+
"subtle": {
|
233
|
+
"ayd6f0": "f1k2sg7s",
|
234
|
+
"g2u3we": "f1p3nwhy",
|
235
|
+
"h3c5rm": ["f11589ue", "f1pdflbu"],
|
236
|
+
"B9xav0g": "f1q5o8ev",
|
237
|
+
"zhjwy3": ["f1pdflbu", "f11589ue"],
|
238
|
+
"v4pbla": "f1vc35iv",
|
239
|
+
"Bgoe8wy": "f1s2uweq",
|
240
|
+
"Bwzppfd": ["fr80ssc", "fecsdlb"],
|
241
|
+
"oetu4i": "f1ukrpxl",
|
242
|
+
"gg5e9n": ["fecsdlb", "fr80ssc"],
|
243
|
+
"vv34bc": "f17oliv9",
|
244
|
+
"B6oc9vd": "ff472gp",
|
245
|
+
"ak43y8": ["f4yyc7m", "ft2aflc"],
|
246
|
+
"wmxk5l": "fggejwh",
|
247
|
+
"B50zh58": ["ft2aflc", "f4yyc7m"]
|
248
|
+
},
|
249
|
+
"transparent": {
|
250
|
+
"ayd6f0": "f1k2sg7s",
|
251
|
+
"g2u3we": "f1p3nwhy",
|
252
|
+
"h3c5rm": ["f11589ue", "f1pdflbu"],
|
253
|
+
"B9xav0g": "f1q5o8ev",
|
254
|
+
"zhjwy3": ["f1pdflbu", "f11589ue"],
|
255
|
+
"v4pbla": "f1vc35iv",
|
256
|
+
"Bgoe8wy": "f1s2uweq",
|
257
|
+
"Bwzppfd": ["fr80ssc", "fecsdlb"],
|
258
|
+
"oetu4i": "f1ukrpxl",
|
259
|
+
"gg5e9n": ["fecsdlb", "fr80ssc"],
|
260
|
+
"vv34bc": "f17oliv9",
|
261
|
+
"B6oc9vd": "ff472gp",
|
262
|
+
"ak43y8": ["f4yyc7m", "ft2aflc"],
|
263
|
+
"wmxk5l": "fggejwh",
|
264
|
+
"B50zh58": ["ft2aflc", "f4yyc7m"]
|
265
|
+
}
|
266
|
+
}, {
|
267
|
+
"d": [".fqst6tg{background:var(--colorNeutralBackgroundDisabled);}", ".f1jj8ep1{border-top-color:var(--colorNeutralStrokeDisabled);}", ".f15xbau{border-right-color:var(--colorNeutralStrokeDisabled);}", ".fy0fskl{border-left-color:var(--colorNeutralStrokeDisabled);}", ".f4ikngz{border-bottom-color:var(--colorNeutralStrokeDisabled);}", ".f1s2aq7o{color:var(--colorNeutralForegroundDisabled);}", ".fdrzuqr{cursor:not-allowed;}", ".f1gjiv6l{background:var(--colorTransparentBackground);}", ".f1p3nwhy{border-top-color:transparent;}", ".f11589ue{border-right-color:transparent;}", ".f1pdflbu{border-left-color:transparent;}", ".f1q5o8ev{border-bottom-color:transparent;}", ".f1k2sg7s{background:none;}"],
|
268
|
+
"h": [".f1nil5o8:hover{background:var(--colorNeutralBackgroundDisabled);}", ".f12mpcsy:hover{border-top-color:var(--colorNeutralStrokeDisabled);}", ".f1gwvigk:hover{border-right-color:var(--colorNeutralStrokeDisabled);}", ".f18rmfxp:hover{border-left-color:var(--colorNeutralStrokeDisabled);}", ".f1jnshp0:hover{border-bottom-color:var(--colorNeutralStrokeDisabled);}", ".fvgxktp:hover{color:var(--colorNeutralForegroundDisabled);}", ".fphbwmw:hover{cursor:not-allowed;}", ".f62j56f:hover{background:var(--colorTransparentBackgroundHover);}", ".f1s2uweq:hover{border-top-color:transparent;}", ".fr80ssc:hover{border-right-color:transparent;}", ".fecsdlb:hover{border-left-color:transparent;}", ".f1ukrpxl:hover{border-bottom-color:transparent;}", ".f1vc35iv:hover{background:none;}"],
|
269
|
+
"a": [".fkqx3al:active{background:var(--colorNeutralBackgroundDisabled);}", ".fdi4vxw:active{border-top-color:var(--colorNeutralStrokeDisabled);}", ".f4ryxzl:active{border-right-color:var(--colorNeutralStrokeDisabled);}", ".fkdgpbx:active{border-left-color:var(--colorNeutralStrokeDisabled);}", ".fcmhn06:active{border-bottom-color:var(--colorNeutralStrokeDisabled);}", ".f19wldhg:active{color:var(--colorNeutralForegroundDisabled);}", ".fq67hom:active{cursor:not-allowed;}", ".flt377r:active{background:var(--colorTransparentBackgroundPressed);}", ".ff472gp:active{border-top-color:transparent;}", ".f4yyc7m:active{border-right-color:transparent;}", ".ft2aflc:active{border-left-color:transparent;}", ".fggejwh:active{border-bottom-color:transparent;}", ".f17oliv9:active{background:none;}"]
|
270
|
+
});
|
271
|
+
|
272
|
+
var useRootFocusStyles = /*#__PURE__*/react_make_styles_1.__styles({
|
273
|
+
"base": {},
|
274
|
+
"circular": {},
|
275
|
+
"rounded": {},
|
276
|
+
"primary": {},
|
277
|
+
"square": {},
|
278
|
+
"small": {},
|
279
|
+
"medium": {},
|
280
|
+
"large": {}
|
281
|
+
}, {});
|
282
|
+
|
283
|
+
var useRootIconOnlyStyles = /*#__PURE__*/react_make_styles_1.__styles({
|
284
|
+
"small": {
|
285
|
+
"z8tnut": "f10ra9hq",
|
286
|
+
"z189sj": ["f8wuabp", "fycuoez"],
|
287
|
+
"Byoj8tv": "f1y2xyjm",
|
288
|
+
"uwmqm3": ["fycuoez", "f8wuabp"],
|
289
|
+
"Bf4jedk": "f107v6xj",
|
290
|
+
"B2u0y6b": "f17iyk3w"
|
291
|
+
},
|
292
|
+
"medium": {
|
293
|
+
"z8tnut": "f10ra9hq",
|
294
|
+
"z189sj": ["f8wuabp", "fycuoez"],
|
295
|
+
"Byoj8tv": "f1y2xyjm",
|
296
|
+
"uwmqm3": ["fycuoez", "f8wuabp"],
|
297
|
+
"Bf4jedk": "fwbmr0d",
|
298
|
+
"B2u0y6b": "f44c6la"
|
299
|
+
},
|
300
|
+
"large": {
|
301
|
+
"z8tnut": "f1xp5gbu",
|
302
|
+
"z189sj": ["f1sgzk6v", "f1bg5zqg"],
|
303
|
+
"Byoj8tv": "f1d7kygh",
|
304
|
+
"uwmqm3": ["f1bg5zqg", "f1sgzk6v"],
|
305
|
+
"Bf4jedk": "f12clzc2",
|
306
|
+
"B2u0y6b": "fjy1crr"
|
307
|
+
}
|
308
|
+
}, {
|
309
|
+
"d": [".f10ra9hq{padding-top:4px;}", ".f8wuabp{padding-right:4px;}", ".fycuoez{padding-left:4px;}", ".f1y2xyjm{padding-bottom:4px;}", ".f107v6xj{min-width:28px;}", ".f17iyk3w{max-width:28px;}", ".fwbmr0d{min-width:32px;}", ".f44c6la{max-width:32px;}", ".f1xp5gbu{padding-top:6px;}", ".f1sgzk6v{padding-right:6px;}", ".f1bg5zqg{padding-left:6px;}", ".f1d7kygh{padding-bottom:6px;}", ".f12clzc2{min-width:40px;}", ".fjy1crr{max-width:40px;}"]
|
310
|
+
});
|
311
|
+
|
312
|
+
var useIconStyles = /*#__PURE__*/react_make_styles_1.__styles({
|
313
|
+
"base": {
|
314
|
+
"Bt984gj": "f122n59",
|
315
|
+
"mc9l5x": "ftuwxu6",
|
316
|
+
"Brf1p80": "f4d9j23"
|
317
|
+
},
|
318
|
+
"small": {
|
319
|
+
"Be2twd7": "fe5j1ua",
|
320
|
+
"Bqenvij": "fjamq6b",
|
321
|
+
"a9b677": "f64fuq3"
|
322
|
+
},
|
323
|
+
"medium": {
|
324
|
+
"Be2twd7": "fe5j1ua",
|
325
|
+
"Bqenvij": "fjamq6b",
|
326
|
+
"a9b677": "f64fuq3"
|
327
|
+
},
|
328
|
+
"large": {
|
329
|
+
"Be2twd7": "f1rt2boy",
|
330
|
+
"Bqenvij": "frvgh55",
|
331
|
+
"a9b677": "fq4mcun"
|
332
|
+
}
|
333
|
+
}, {
|
334
|
+
"d": [".f122n59{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}", ".ftuwxu6{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}", ".f4d9j23{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}", ".fe5j1ua{font-size:20px;}", ".fjamq6b{height:20px;}", ".f64fuq3{width:20px;}", ".f1rt2boy{font-size:24px;}", ".frvgh55{height:24px;}", ".fq4mcun{width:24px;}"]
|
335
|
+
});
|
336
|
+
|
337
|
+
var useButtonStyles = function (state) {
|
338
|
+
var rootStyles = useRootStyles();
|
339
|
+
var rootDisabledStyles = useRootDisabledStyles();
|
340
|
+
var rootFocusStyles = useRootFocusStyles();
|
341
|
+
var rootIconOnlyStyles = useRootIconOnlyStyles();
|
342
|
+
var iconStyles = useIconStyles();
|
343
|
+
var appearance = state.appearance,
|
344
|
+
block = state.block,
|
345
|
+
disabled = state.disabled,
|
346
|
+
disabledFocusable = state.disabledFocusable,
|
347
|
+
iconOnly = state.iconOnly,
|
348
|
+
shape = state.shape,
|
349
|
+
size = state.size;
|
350
|
+
state.root.className = react_make_styles_1.mergeClasses( // Root styles
|
351
|
+
rootStyles.base, block && rootStyles.block, appearance && rootStyles[appearance], rootStyles[size], rootStyles[shape], // Disabled styles
|
352
|
+
(disabled || disabledFocusable) && rootDisabledStyles.base, appearance && (disabled || disabledFocusable) && rootDisabledStyles[appearance], // Focus styles
|
353
|
+
rootFocusStyles.base, appearance === 'primary' && rootFocusStyles.primary, rootFocusStyles[size], rootFocusStyles[shape], // Icon-only styles
|
354
|
+
iconOnly && rootIconOnlyStyles[size], // User provided class name
|
355
|
+
state.root.className);
|
356
|
+
|
357
|
+
if (state.icon) {
|
358
|
+
state.icon.className = react_make_styles_1.mergeClasses(iconStyles.base, iconStyles[size], state.icon.className);
|
359
|
+
}
|
360
|
+
|
361
|
+
return state;
|
383
362
|
};
|
363
|
+
|
364
|
+
exports.useButtonStyles = useButtonStyles;
|
384
365
|
//# sourceMappingURL=useButtonStyles.js.map
|