@payfit/unity-icons 2.60.16 → 2.60.18
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/dist/esm/components/icon/Icon.d.ts +215 -215
- package/package.json +10 -10
|
@@ -3,239 +3,239 @@ import { HTMLAttributes } from 'react';
|
|
|
3
3
|
import { UnityIcon } from '../../generated/index.js';
|
|
4
4
|
declare const icon: import('tailwind-variants').TVReturnType<{
|
|
5
5
|
size: {
|
|
6
|
-
20:
|
|
7
|
-
24:
|
|
6
|
+
20: "uy:w-250 uy:h-250";
|
|
7
|
+
24: "uy:w-300 uy:h-300";
|
|
8
8
|
};
|
|
9
9
|
color: {
|
|
10
|
-
'content.primary':
|
|
11
|
-
'content.primary.enabled':
|
|
12
|
-
'content.primary.hover':
|
|
13
|
-
'content.primary.pressed':
|
|
14
|
-
'content.primary.focus':
|
|
15
|
-
'content.primary.active':
|
|
16
|
-
'content.primary.disabled':
|
|
17
|
-
'content.neutral':
|
|
18
|
-
'content.neutral.enabled':
|
|
19
|
-
'content.neutral.hover':
|
|
20
|
-
'content.neutral.pressed':
|
|
21
|
-
'content.neutral.focus':
|
|
22
|
-
'content.neutral.active':
|
|
23
|
-
'content.neutral.disabled':
|
|
24
|
-
'content.neutral.low':
|
|
25
|
-
'content.neutral.lowest':
|
|
26
|
-
'content.neutral.lowest.enabled':
|
|
27
|
-
'content.neutral.lowest.hover':
|
|
28
|
-
'content.neutral.lowest.pressed':
|
|
29
|
-
'content.neutral.lowest.focus':
|
|
30
|
-
'content.neutral.lowest.active':
|
|
31
|
-
'content.neutral.lowest.disabled':
|
|
32
|
-
'content.danger':
|
|
33
|
-
'content.danger.enabled':
|
|
34
|
-
'content.danger.hover':
|
|
35
|
-
'content.danger.pressed':
|
|
36
|
-
'content.danger.focus':
|
|
37
|
-
'content.danger.active':
|
|
38
|
-
'content.danger.disabled':
|
|
39
|
-
'content.warning':
|
|
40
|
-
'content.warning.enabled':
|
|
41
|
-
'content.warning.hover':
|
|
42
|
-
'content.warning.pressed':
|
|
43
|
-
'content.warning.focus':
|
|
44
|
-
'content.warning.active':
|
|
45
|
-
'content.warning.disabled':
|
|
46
|
-
'content.success':
|
|
47
|
-
'content.success.enabled':
|
|
48
|
-
'content.success.hover':
|
|
49
|
-
'content.success.pressed':
|
|
50
|
-
'content.success.focus':
|
|
51
|
-
'content.success.active':
|
|
52
|
-
'content.success.disabled':
|
|
53
|
-
'content.info':
|
|
54
|
-
'content.info.enabled':
|
|
55
|
-
'content.info.hover':
|
|
56
|
-
'content.info.pressed':
|
|
57
|
-
'content.info.focus':
|
|
58
|
-
'content.info.active':
|
|
59
|
-
'content.info.disabled':
|
|
60
|
-
'content.promo':
|
|
61
|
-
'content.form.enabled':
|
|
62
|
-
'content.form.hover':
|
|
63
|
-
'content.form.pressed':
|
|
64
|
-
'content.form.focus':
|
|
65
|
-
'content.form.active':
|
|
66
|
-
'content.form.disabled':
|
|
67
|
-
'content.form.read-only':
|
|
68
|
-
'content.form.invalid':
|
|
69
|
-
'content.inverted':
|
|
70
|
-
'content.inverted.enabled':
|
|
71
|
-
'content.inverted.hover':
|
|
72
|
-
'content.inverted.pressed':
|
|
73
|
-
'content.inverted.focus':
|
|
74
|
-
'content.inverted.active':
|
|
75
|
-
'content.inverted.disabled':
|
|
76
|
-
inherit:
|
|
10
|
+
'content.primary': "uy:text-content-primary";
|
|
11
|
+
'content.primary.enabled': "uy:text-content-primary-enabled";
|
|
12
|
+
'content.primary.hover': "uy:text-content-primary-hover";
|
|
13
|
+
'content.primary.pressed': "uy:text-content-primary-pressed";
|
|
14
|
+
'content.primary.focus': "uy:text-content-primary-focus";
|
|
15
|
+
'content.primary.active': "uy:text-content-primary-active";
|
|
16
|
+
'content.primary.disabled': "uy:text-content-primary-disabled";
|
|
17
|
+
'content.neutral': "uy:text-content-neutral";
|
|
18
|
+
'content.neutral.enabled': "uy:text-content-neutral-enabled";
|
|
19
|
+
'content.neutral.hover': "uy:text-content-neutral-hover";
|
|
20
|
+
'content.neutral.pressed': "uy:text-content-neutral-pressed";
|
|
21
|
+
'content.neutral.focus': "uy:text-content-neutral-focus";
|
|
22
|
+
'content.neutral.active': "uy:text-content-neutral-active";
|
|
23
|
+
'content.neutral.disabled': "uy:text-content-neutral-disabled";
|
|
24
|
+
'content.neutral.low': "uy:text-content-neutral-low";
|
|
25
|
+
'content.neutral.lowest': "uy:text-content-neutral-lowest";
|
|
26
|
+
'content.neutral.lowest.enabled': "uy:text-content-neutral-lowest-enabled";
|
|
27
|
+
'content.neutral.lowest.hover': "uy:text-content-neutral-lowest-hover";
|
|
28
|
+
'content.neutral.lowest.pressed': "uy:text-content-neutral-lowest-pressed";
|
|
29
|
+
'content.neutral.lowest.focus': "uy:text-content-neutral-lowest-focus";
|
|
30
|
+
'content.neutral.lowest.active': "uy:text-content-neutral-lowest-active";
|
|
31
|
+
'content.neutral.lowest.disabled': "uy:text-content-neutral-lowest-disabled";
|
|
32
|
+
'content.danger': "uy:text-content-danger";
|
|
33
|
+
'content.danger.enabled': "uy:text-content-danger-enabled";
|
|
34
|
+
'content.danger.hover': "uy:text-content-danger-hover";
|
|
35
|
+
'content.danger.pressed': "uy:text-content-danger-pressed";
|
|
36
|
+
'content.danger.focus': "uy:text-content-danger-focus";
|
|
37
|
+
'content.danger.active': "uy:text-content-danger-active";
|
|
38
|
+
'content.danger.disabled': "uy:text-content-danger-disabled";
|
|
39
|
+
'content.warning': "uy:text-content-warning";
|
|
40
|
+
'content.warning.enabled': "uy:text-content-warning-enabled";
|
|
41
|
+
'content.warning.hover': "uy:text-content-warning-hover";
|
|
42
|
+
'content.warning.pressed': "uy:text-content-warning-pressed";
|
|
43
|
+
'content.warning.focus': "uy:text-content-warning-focus";
|
|
44
|
+
'content.warning.active': "uy:text-content-warning-active";
|
|
45
|
+
'content.warning.disabled': "uy:text-content-warning-disabled";
|
|
46
|
+
'content.success': "uy:text-content-success";
|
|
47
|
+
'content.success.enabled': "uy:text-content-success-enabled";
|
|
48
|
+
'content.success.hover': "uy:text-content-success-hover";
|
|
49
|
+
'content.success.pressed': "uy:text-content-success-pressed";
|
|
50
|
+
'content.success.focus': "uy:text-content-success-focus";
|
|
51
|
+
'content.success.active': "uy:text-content-success-active";
|
|
52
|
+
'content.success.disabled': "uy:text-content-success-disabled";
|
|
53
|
+
'content.info': "uy:text-content-info";
|
|
54
|
+
'content.info.enabled': "uy:text-content-info-enabled";
|
|
55
|
+
'content.info.hover': "uy:text-content-info-hover";
|
|
56
|
+
'content.info.pressed': "uy:text-content-info-pressed";
|
|
57
|
+
'content.info.focus': "uy:text-content-info-focus";
|
|
58
|
+
'content.info.active': "uy:text-content-info-active";
|
|
59
|
+
'content.info.disabled': "uy:text-content-info-disabled";
|
|
60
|
+
'content.promo': "uy:text-content-promo";
|
|
61
|
+
'content.form.enabled': "uy:text-content-form";
|
|
62
|
+
'content.form.hover': "uy:text-content-form-hover";
|
|
63
|
+
'content.form.pressed': "uy:text-content-form-pressed";
|
|
64
|
+
'content.form.focus': "uy:text-content-form-focus";
|
|
65
|
+
'content.form.active': "uy:text-content-form-active";
|
|
66
|
+
'content.form.disabled': "uy:text-content-form-disabled";
|
|
67
|
+
'content.form.read-only': "uy:text-content-form-read-only";
|
|
68
|
+
'content.form.invalid': "uy:text-content-form-invalid";
|
|
69
|
+
'content.inverted': "uy:text-content-inverted";
|
|
70
|
+
'content.inverted.enabled': "uy:text-content-inverted-enabled";
|
|
71
|
+
'content.inverted.hover': "uy:text-content-inverted-hover";
|
|
72
|
+
'content.inverted.pressed': "uy:text-content-inverted-pressed";
|
|
73
|
+
'content.inverted.focus': "uy:text-content-inverted-focus";
|
|
74
|
+
'content.inverted.active': "uy:text-content-inverted-active";
|
|
75
|
+
'content.inverted.disabled': "uy:text-content-inverted-disabled";
|
|
76
|
+
inherit: "uy:text-inherit";
|
|
77
77
|
};
|
|
78
78
|
display: {
|
|
79
|
-
block:
|
|
80
|
-
inline:
|
|
79
|
+
block: "uy:block";
|
|
80
|
+
inline: "uy:inline-block";
|
|
81
81
|
};
|
|
82
82
|
}, undefined, undefined, {
|
|
83
83
|
size: {
|
|
84
|
-
20:
|
|
85
|
-
24:
|
|
84
|
+
20: "uy:w-250 uy:h-250";
|
|
85
|
+
24: "uy:w-300 uy:h-300";
|
|
86
86
|
};
|
|
87
87
|
color: {
|
|
88
|
-
'content.primary':
|
|
89
|
-
'content.primary.enabled':
|
|
90
|
-
'content.primary.hover':
|
|
91
|
-
'content.primary.pressed':
|
|
92
|
-
'content.primary.focus':
|
|
93
|
-
'content.primary.active':
|
|
94
|
-
'content.primary.disabled':
|
|
95
|
-
'content.neutral':
|
|
96
|
-
'content.neutral.enabled':
|
|
97
|
-
'content.neutral.hover':
|
|
98
|
-
'content.neutral.pressed':
|
|
99
|
-
'content.neutral.focus':
|
|
100
|
-
'content.neutral.active':
|
|
101
|
-
'content.neutral.disabled':
|
|
102
|
-
'content.neutral.low':
|
|
103
|
-
'content.neutral.lowest':
|
|
104
|
-
'content.neutral.lowest.enabled':
|
|
105
|
-
'content.neutral.lowest.hover':
|
|
106
|
-
'content.neutral.lowest.pressed':
|
|
107
|
-
'content.neutral.lowest.focus':
|
|
108
|
-
'content.neutral.lowest.active':
|
|
109
|
-
'content.neutral.lowest.disabled':
|
|
110
|
-
'content.danger':
|
|
111
|
-
'content.danger.enabled':
|
|
112
|
-
'content.danger.hover':
|
|
113
|
-
'content.danger.pressed':
|
|
114
|
-
'content.danger.focus':
|
|
115
|
-
'content.danger.active':
|
|
116
|
-
'content.danger.disabled':
|
|
117
|
-
'content.warning':
|
|
118
|
-
'content.warning.enabled':
|
|
119
|
-
'content.warning.hover':
|
|
120
|
-
'content.warning.pressed':
|
|
121
|
-
'content.warning.focus':
|
|
122
|
-
'content.warning.active':
|
|
123
|
-
'content.warning.disabled':
|
|
124
|
-
'content.success':
|
|
125
|
-
'content.success.enabled':
|
|
126
|
-
'content.success.hover':
|
|
127
|
-
'content.success.pressed':
|
|
128
|
-
'content.success.focus':
|
|
129
|
-
'content.success.active':
|
|
130
|
-
'content.success.disabled':
|
|
131
|
-
'content.info':
|
|
132
|
-
'content.info.enabled':
|
|
133
|
-
'content.info.hover':
|
|
134
|
-
'content.info.pressed':
|
|
135
|
-
'content.info.focus':
|
|
136
|
-
'content.info.active':
|
|
137
|
-
'content.info.disabled':
|
|
138
|
-
'content.promo':
|
|
139
|
-
'content.form.enabled':
|
|
140
|
-
'content.form.hover':
|
|
141
|
-
'content.form.pressed':
|
|
142
|
-
'content.form.focus':
|
|
143
|
-
'content.form.active':
|
|
144
|
-
'content.form.disabled':
|
|
145
|
-
'content.form.read-only':
|
|
146
|
-
'content.form.invalid':
|
|
147
|
-
'content.inverted':
|
|
148
|
-
'content.inverted.enabled':
|
|
149
|
-
'content.inverted.hover':
|
|
150
|
-
'content.inverted.pressed':
|
|
151
|
-
'content.inverted.focus':
|
|
152
|
-
'content.inverted.active':
|
|
153
|
-
'content.inverted.disabled':
|
|
154
|
-
inherit:
|
|
88
|
+
'content.primary': "uy:text-content-primary";
|
|
89
|
+
'content.primary.enabled': "uy:text-content-primary-enabled";
|
|
90
|
+
'content.primary.hover': "uy:text-content-primary-hover";
|
|
91
|
+
'content.primary.pressed': "uy:text-content-primary-pressed";
|
|
92
|
+
'content.primary.focus': "uy:text-content-primary-focus";
|
|
93
|
+
'content.primary.active': "uy:text-content-primary-active";
|
|
94
|
+
'content.primary.disabled': "uy:text-content-primary-disabled";
|
|
95
|
+
'content.neutral': "uy:text-content-neutral";
|
|
96
|
+
'content.neutral.enabled': "uy:text-content-neutral-enabled";
|
|
97
|
+
'content.neutral.hover': "uy:text-content-neutral-hover";
|
|
98
|
+
'content.neutral.pressed': "uy:text-content-neutral-pressed";
|
|
99
|
+
'content.neutral.focus': "uy:text-content-neutral-focus";
|
|
100
|
+
'content.neutral.active': "uy:text-content-neutral-active";
|
|
101
|
+
'content.neutral.disabled': "uy:text-content-neutral-disabled";
|
|
102
|
+
'content.neutral.low': "uy:text-content-neutral-low";
|
|
103
|
+
'content.neutral.lowest': "uy:text-content-neutral-lowest";
|
|
104
|
+
'content.neutral.lowest.enabled': "uy:text-content-neutral-lowest-enabled";
|
|
105
|
+
'content.neutral.lowest.hover': "uy:text-content-neutral-lowest-hover";
|
|
106
|
+
'content.neutral.lowest.pressed': "uy:text-content-neutral-lowest-pressed";
|
|
107
|
+
'content.neutral.lowest.focus': "uy:text-content-neutral-lowest-focus";
|
|
108
|
+
'content.neutral.lowest.active': "uy:text-content-neutral-lowest-active";
|
|
109
|
+
'content.neutral.lowest.disabled': "uy:text-content-neutral-lowest-disabled";
|
|
110
|
+
'content.danger': "uy:text-content-danger";
|
|
111
|
+
'content.danger.enabled': "uy:text-content-danger-enabled";
|
|
112
|
+
'content.danger.hover': "uy:text-content-danger-hover";
|
|
113
|
+
'content.danger.pressed': "uy:text-content-danger-pressed";
|
|
114
|
+
'content.danger.focus': "uy:text-content-danger-focus";
|
|
115
|
+
'content.danger.active': "uy:text-content-danger-active";
|
|
116
|
+
'content.danger.disabled': "uy:text-content-danger-disabled";
|
|
117
|
+
'content.warning': "uy:text-content-warning";
|
|
118
|
+
'content.warning.enabled': "uy:text-content-warning-enabled";
|
|
119
|
+
'content.warning.hover': "uy:text-content-warning-hover";
|
|
120
|
+
'content.warning.pressed': "uy:text-content-warning-pressed";
|
|
121
|
+
'content.warning.focus': "uy:text-content-warning-focus";
|
|
122
|
+
'content.warning.active': "uy:text-content-warning-active";
|
|
123
|
+
'content.warning.disabled': "uy:text-content-warning-disabled";
|
|
124
|
+
'content.success': "uy:text-content-success";
|
|
125
|
+
'content.success.enabled': "uy:text-content-success-enabled";
|
|
126
|
+
'content.success.hover': "uy:text-content-success-hover";
|
|
127
|
+
'content.success.pressed': "uy:text-content-success-pressed";
|
|
128
|
+
'content.success.focus': "uy:text-content-success-focus";
|
|
129
|
+
'content.success.active': "uy:text-content-success-active";
|
|
130
|
+
'content.success.disabled': "uy:text-content-success-disabled";
|
|
131
|
+
'content.info': "uy:text-content-info";
|
|
132
|
+
'content.info.enabled': "uy:text-content-info-enabled";
|
|
133
|
+
'content.info.hover': "uy:text-content-info-hover";
|
|
134
|
+
'content.info.pressed': "uy:text-content-info-pressed";
|
|
135
|
+
'content.info.focus': "uy:text-content-info-focus";
|
|
136
|
+
'content.info.active': "uy:text-content-info-active";
|
|
137
|
+
'content.info.disabled': "uy:text-content-info-disabled";
|
|
138
|
+
'content.promo': "uy:text-content-promo";
|
|
139
|
+
'content.form.enabled': "uy:text-content-form";
|
|
140
|
+
'content.form.hover': "uy:text-content-form-hover";
|
|
141
|
+
'content.form.pressed': "uy:text-content-form-pressed";
|
|
142
|
+
'content.form.focus': "uy:text-content-form-focus";
|
|
143
|
+
'content.form.active': "uy:text-content-form-active";
|
|
144
|
+
'content.form.disabled': "uy:text-content-form-disabled";
|
|
145
|
+
'content.form.read-only': "uy:text-content-form-read-only";
|
|
146
|
+
'content.form.invalid': "uy:text-content-form-invalid";
|
|
147
|
+
'content.inverted': "uy:text-content-inverted";
|
|
148
|
+
'content.inverted.enabled': "uy:text-content-inverted-enabled";
|
|
149
|
+
'content.inverted.hover': "uy:text-content-inverted-hover";
|
|
150
|
+
'content.inverted.pressed': "uy:text-content-inverted-pressed";
|
|
151
|
+
'content.inverted.focus': "uy:text-content-inverted-focus";
|
|
152
|
+
'content.inverted.active': "uy:text-content-inverted-active";
|
|
153
|
+
'content.inverted.disabled': "uy:text-content-inverted-disabled";
|
|
154
|
+
inherit: "uy:text-inherit";
|
|
155
155
|
};
|
|
156
156
|
display: {
|
|
157
|
-
block:
|
|
158
|
-
inline:
|
|
157
|
+
block: "uy:block";
|
|
158
|
+
inline: "uy:inline-block";
|
|
159
159
|
};
|
|
160
|
-
}, undefined, import('tailwind-variants').
|
|
160
|
+
}, undefined, import('tailwind-variants').TVReturnTypeLike<{
|
|
161
161
|
size: {
|
|
162
|
-
20:
|
|
163
|
-
24:
|
|
162
|
+
20: "uy:w-250 uy:h-250";
|
|
163
|
+
24: "uy:w-300 uy:h-300";
|
|
164
164
|
};
|
|
165
165
|
color: {
|
|
166
|
-
'content.primary':
|
|
167
|
-
'content.primary.enabled':
|
|
168
|
-
'content.primary.hover':
|
|
169
|
-
'content.primary.pressed':
|
|
170
|
-
'content.primary.focus':
|
|
171
|
-
'content.primary.active':
|
|
172
|
-
'content.primary.disabled':
|
|
173
|
-
'content.neutral':
|
|
174
|
-
'content.neutral.enabled':
|
|
175
|
-
'content.neutral.hover':
|
|
176
|
-
'content.neutral.pressed':
|
|
177
|
-
'content.neutral.focus':
|
|
178
|
-
'content.neutral.active':
|
|
179
|
-
'content.neutral.disabled':
|
|
180
|
-
'content.neutral.low':
|
|
181
|
-
'content.neutral.lowest':
|
|
182
|
-
'content.neutral.lowest.enabled':
|
|
183
|
-
'content.neutral.lowest.hover':
|
|
184
|
-
'content.neutral.lowest.pressed':
|
|
185
|
-
'content.neutral.lowest.focus':
|
|
186
|
-
'content.neutral.lowest.active':
|
|
187
|
-
'content.neutral.lowest.disabled':
|
|
188
|
-
'content.danger':
|
|
189
|
-
'content.danger.enabled':
|
|
190
|
-
'content.danger.hover':
|
|
191
|
-
'content.danger.pressed':
|
|
192
|
-
'content.danger.focus':
|
|
193
|
-
'content.danger.active':
|
|
194
|
-
'content.danger.disabled':
|
|
195
|
-
'content.warning':
|
|
196
|
-
'content.warning.enabled':
|
|
197
|
-
'content.warning.hover':
|
|
198
|
-
'content.warning.pressed':
|
|
199
|
-
'content.warning.focus':
|
|
200
|
-
'content.warning.active':
|
|
201
|
-
'content.warning.disabled':
|
|
202
|
-
'content.success':
|
|
203
|
-
'content.success.enabled':
|
|
204
|
-
'content.success.hover':
|
|
205
|
-
'content.success.pressed':
|
|
206
|
-
'content.success.focus':
|
|
207
|
-
'content.success.active':
|
|
208
|
-
'content.success.disabled':
|
|
209
|
-
'content.info':
|
|
210
|
-
'content.info.enabled':
|
|
211
|
-
'content.info.hover':
|
|
212
|
-
'content.info.pressed':
|
|
213
|
-
'content.info.focus':
|
|
214
|
-
'content.info.active':
|
|
215
|
-
'content.info.disabled':
|
|
216
|
-
'content.promo':
|
|
217
|
-
'content.form.enabled':
|
|
218
|
-
'content.form.hover':
|
|
219
|
-
'content.form.pressed':
|
|
220
|
-
'content.form.focus':
|
|
221
|
-
'content.form.active':
|
|
222
|
-
'content.form.disabled':
|
|
223
|
-
'content.form.read-only':
|
|
224
|
-
'content.form.invalid':
|
|
225
|
-
'content.inverted':
|
|
226
|
-
'content.inverted.enabled':
|
|
227
|
-
'content.inverted.hover':
|
|
228
|
-
'content.inverted.pressed':
|
|
229
|
-
'content.inverted.focus':
|
|
230
|
-
'content.inverted.active':
|
|
231
|
-
'content.inverted.disabled':
|
|
232
|
-
inherit:
|
|
166
|
+
'content.primary': "uy:text-content-primary";
|
|
167
|
+
'content.primary.enabled': "uy:text-content-primary-enabled";
|
|
168
|
+
'content.primary.hover': "uy:text-content-primary-hover";
|
|
169
|
+
'content.primary.pressed': "uy:text-content-primary-pressed";
|
|
170
|
+
'content.primary.focus': "uy:text-content-primary-focus";
|
|
171
|
+
'content.primary.active': "uy:text-content-primary-active";
|
|
172
|
+
'content.primary.disabled': "uy:text-content-primary-disabled";
|
|
173
|
+
'content.neutral': "uy:text-content-neutral";
|
|
174
|
+
'content.neutral.enabled': "uy:text-content-neutral-enabled";
|
|
175
|
+
'content.neutral.hover': "uy:text-content-neutral-hover";
|
|
176
|
+
'content.neutral.pressed': "uy:text-content-neutral-pressed";
|
|
177
|
+
'content.neutral.focus': "uy:text-content-neutral-focus";
|
|
178
|
+
'content.neutral.active': "uy:text-content-neutral-active";
|
|
179
|
+
'content.neutral.disabled': "uy:text-content-neutral-disabled";
|
|
180
|
+
'content.neutral.low': "uy:text-content-neutral-low";
|
|
181
|
+
'content.neutral.lowest': "uy:text-content-neutral-lowest";
|
|
182
|
+
'content.neutral.lowest.enabled': "uy:text-content-neutral-lowest-enabled";
|
|
183
|
+
'content.neutral.lowest.hover': "uy:text-content-neutral-lowest-hover";
|
|
184
|
+
'content.neutral.lowest.pressed': "uy:text-content-neutral-lowest-pressed";
|
|
185
|
+
'content.neutral.lowest.focus': "uy:text-content-neutral-lowest-focus";
|
|
186
|
+
'content.neutral.lowest.active': "uy:text-content-neutral-lowest-active";
|
|
187
|
+
'content.neutral.lowest.disabled': "uy:text-content-neutral-lowest-disabled";
|
|
188
|
+
'content.danger': "uy:text-content-danger";
|
|
189
|
+
'content.danger.enabled': "uy:text-content-danger-enabled";
|
|
190
|
+
'content.danger.hover': "uy:text-content-danger-hover";
|
|
191
|
+
'content.danger.pressed': "uy:text-content-danger-pressed";
|
|
192
|
+
'content.danger.focus': "uy:text-content-danger-focus";
|
|
193
|
+
'content.danger.active': "uy:text-content-danger-active";
|
|
194
|
+
'content.danger.disabled': "uy:text-content-danger-disabled";
|
|
195
|
+
'content.warning': "uy:text-content-warning";
|
|
196
|
+
'content.warning.enabled': "uy:text-content-warning-enabled";
|
|
197
|
+
'content.warning.hover': "uy:text-content-warning-hover";
|
|
198
|
+
'content.warning.pressed': "uy:text-content-warning-pressed";
|
|
199
|
+
'content.warning.focus': "uy:text-content-warning-focus";
|
|
200
|
+
'content.warning.active': "uy:text-content-warning-active";
|
|
201
|
+
'content.warning.disabled': "uy:text-content-warning-disabled";
|
|
202
|
+
'content.success': "uy:text-content-success";
|
|
203
|
+
'content.success.enabled': "uy:text-content-success-enabled";
|
|
204
|
+
'content.success.hover': "uy:text-content-success-hover";
|
|
205
|
+
'content.success.pressed': "uy:text-content-success-pressed";
|
|
206
|
+
'content.success.focus': "uy:text-content-success-focus";
|
|
207
|
+
'content.success.active': "uy:text-content-success-active";
|
|
208
|
+
'content.success.disabled': "uy:text-content-success-disabled";
|
|
209
|
+
'content.info': "uy:text-content-info";
|
|
210
|
+
'content.info.enabled': "uy:text-content-info-enabled";
|
|
211
|
+
'content.info.hover': "uy:text-content-info-hover";
|
|
212
|
+
'content.info.pressed': "uy:text-content-info-pressed";
|
|
213
|
+
'content.info.focus': "uy:text-content-info-focus";
|
|
214
|
+
'content.info.active': "uy:text-content-info-active";
|
|
215
|
+
'content.info.disabled': "uy:text-content-info-disabled";
|
|
216
|
+
'content.promo': "uy:text-content-promo";
|
|
217
|
+
'content.form.enabled': "uy:text-content-form";
|
|
218
|
+
'content.form.hover': "uy:text-content-form-hover";
|
|
219
|
+
'content.form.pressed': "uy:text-content-form-pressed";
|
|
220
|
+
'content.form.focus': "uy:text-content-form-focus";
|
|
221
|
+
'content.form.active': "uy:text-content-form-active";
|
|
222
|
+
'content.form.disabled': "uy:text-content-form-disabled";
|
|
223
|
+
'content.form.read-only': "uy:text-content-form-read-only";
|
|
224
|
+
'content.form.invalid': "uy:text-content-form-invalid";
|
|
225
|
+
'content.inverted': "uy:text-content-inverted";
|
|
226
|
+
'content.inverted.enabled': "uy:text-content-inverted-enabled";
|
|
227
|
+
'content.inverted.hover': "uy:text-content-inverted-hover";
|
|
228
|
+
'content.inverted.pressed': "uy:text-content-inverted-pressed";
|
|
229
|
+
'content.inverted.focus': "uy:text-content-inverted-focus";
|
|
230
|
+
'content.inverted.active': "uy:text-content-inverted-active";
|
|
231
|
+
'content.inverted.disabled': "uy:text-content-inverted-disabled";
|
|
232
|
+
inherit: "uy:text-inherit";
|
|
233
233
|
};
|
|
234
234
|
display: {
|
|
235
|
-
block:
|
|
236
|
-
inline:
|
|
235
|
+
block: "uy:block";
|
|
236
|
+
inline: "uy:inline-block";
|
|
237
237
|
};
|
|
238
|
-
}, undefined
|
|
238
|
+
}, undefined>>;
|
|
239
239
|
export type IconProps = VariantProps<typeof icon> & Pick<HTMLAttributes<HTMLSpanElement>, 'className' | 'role' | 'aria-labelledby' | 'aria-hidden'> & {
|
|
240
240
|
/** The icon to render from the Unity icon set */
|
|
241
241
|
src: UnityIcon;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@payfit/unity-icons",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.18",
|
|
4
4
|
"module": "./dist/esm/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
"@figma/code-connect": "1.5.1",
|
|
56
56
|
"@fontsource/inter": "5.0.19",
|
|
57
57
|
"@fontsource/source-serif-4": "5.0.19",
|
|
58
|
-
"@storybook/addon-a11y": "10.5.
|
|
59
|
-
"@storybook/addon-docs": "10.5.
|
|
60
|
-
"@storybook/addon-links": "10.5.
|
|
58
|
+
"@storybook/addon-a11y": "10.5.5",
|
|
59
|
+
"@storybook/addon-docs": "10.5.5",
|
|
60
|
+
"@storybook/addon-links": "10.5.5",
|
|
61
61
|
"@storybook/addon-mcp": "0.7.0",
|
|
62
|
-
"@storybook/addon-themes": "10.5.
|
|
63
|
-
"@storybook/addon-vitest": "10.5.
|
|
64
|
-
"@storybook/react-vite": "10.5.
|
|
62
|
+
"@storybook/addon-themes": "10.5.5",
|
|
63
|
+
"@storybook/addon-vitest": "10.5.5",
|
|
64
|
+
"@storybook/react-vite": "10.5.5",
|
|
65
65
|
"@svgr/cli": "8.1.0",
|
|
66
66
|
"@tailwindcss/vite": "4.3.3",
|
|
67
67
|
"@types/libsodium-wrappers": "0.7.14",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"glob": "11.1.0",
|
|
72
72
|
"libsodium-wrappers": "0.7.15",
|
|
73
73
|
"playwright": "1.55.1",
|
|
74
|
-
"storybook": "10.5.
|
|
74
|
+
"storybook": "10.5.5",
|
|
75
75
|
"tailwindcss": "4.3.3",
|
|
76
76
|
"tsx": "4.20.5",
|
|
77
77
|
"vite": "8.1.4",
|
|
@@ -80,13 +80,13 @@
|
|
|
80
80
|
"@payfit/hr-app-eslint": "0.0.0-use.local",
|
|
81
81
|
"@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
|
|
82
82
|
"@payfit/storybook-config": "0.0.0-use.local",
|
|
83
|
-
"@payfit/unity-themes": "2.60.
|
|
83
|
+
"@payfit/unity-themes": "2.60.18",
|
|
84
84
|
"@payfit/vite-configs": "0.0.0-use.local"
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
87
|
"react": "18.3.1",
|
|
88
88
|
"react-dom": "18.3.1",
|
|
89
|
-
"@payfit/unity-themes": "2.60.
|
|
89
|
+
"@payfit/unity-themes": "2.60.18"
|
|
90
90
|
},
|
|
91
91
|
"peerDependenciesMeta": {
|
|
92
92
|
"storybook": {
|