@backstage/ui 0.15.0-next.3 → 0.15.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +188 -0
- package/dist/components/Combobox/Combobox.module.css.esm.js +2 -2
- package/dist/components/DatePicker/DatePicker.module.css.esm.js +2 -2
- package/dist/components/DateRangePicker/DateRangePicker.module.css.esm.js +2 -2
- package/dist/components/Header/Header.esm.js +48 -32
- package/dist/components/Header/Header.esm.js.map +1 -1
- package/dist/components/Header/Header.module.css.esm.js +2 -2
- package/dist/components/NumberField/NumberField.esm.js +113 -0
- package/dist/components/NumberField/NumberField.esm.js.map +1 -0
- package/dist/components/NumberField/NumberField.module.css.esm.js +8 -0
- package/dist/components/NumberField/NumberField.module.css.esm.js.map +1 -0
- package/dist/components/NumberField/definition.esm.js +34 -0
- package/dist/components/NumberField/definition.esm.js.map +1 -0
- package/dist/components/PasswordField/PasswordField.module.css.esm.js +2 -2
- package/dist/components/PasswordField/definition.esm.js +1 -0
- package/dist/components/PasswordField/definition.esm.js.map +1 -1
- package/dist/components/SearchField/SearchField.module.css.esm.js +2 -2
- package/dist/components/Select/Select.module.css.esm.js +2 -2
- package/dist/components/Switch/Switch.esm.js +17 -5
- package/dist/components/Switch/Switch.esm.js.map +1 -1
- package/dist/components/Switch/Switch.module.css.esm.js +2 -2
- package/dist/components/Switch/definition.esm.js +1 -0
- package/dist/components/Switch/definition.esm.js.map +1 -1
- package/dist/components/TextField/TextField.module.css.esm.js +2 -2
- package/dist/css/styles.css +184 -68
- package/dist/index.d.ts +67 -3
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.map +1 -1
- package/package.json +6 -6
package/dist/css/styles.css
CHANGED
|
@@ -85,150 +85,266 @@
|
|
|
85
85
|
--bui-radius-6: calc(1.25rem);
|
|
86
86
|
--bui-radius-full: 9999px;
|
|
87
87
|
|
|
88
|
+
/* Animations */
|
|
89
|
+
--bui-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
90
|
+
|
|
88
91
|
/* Base Colors */
|
|
89
92
|
--bui-black: #000000;
|
|
90
93
|
--bui-white: #ffffff;
|
|
94
|
+
--bui-ring: #1f5493;
|
|
95
|
+
--bui-scrollbar: #a0a0a03b;
|
|
96
|
+
--bui-scrollbar-thumb: #a0a0a0;
|
|
97
|
+
|
|
98
|
+
/* Gray scale */
|
|
99
|
+
--bui-gray-1: #fafafa;
|
|
100
|
+
--bui-gray-2: #f5f5f5;
|
|
101
|
+
--bui-gray-3: #e5e5e5;
|
|
102
|
+
--bui-gray-4: #d4d4d4;
|
|
103
|
+
--bui-gray-5: #a1a1a1;
|
|
104
|
+
--bui-gray-6: #737373;
|
|
105
|
+
--bui-gray-7: #525252;
|
|
106
|
+
--bui-gray-8: #404040;
|
|
107
|
+
--bui-gray-9: #262626;
|
|
108
|
+
--bui-gray-10: #171717;
|
|
109
|
+
--bui-gray-11: #0a0a0a;
|
|
110
|
+
|
|
111
|
+
/* Neutral background colors */
|
|
112
|
+
--bui-bg-app: #f5f5f5;
|
|
113
|
+
--bui-bg-neutral-1: var(--bui-white);
|
|
114
|
+
--bui-bg-neutral-2: #f7f7f7;
|
|
115
|
+
--bui-bg-neutral-3: var(--bui-white);
|
|
116
|
+
--bui-bg-neutral-4: #f7f7f7;
|
|
91
117
|
|
|
92
|
-
/*
|
|
118
|
+
/* Foreground colors */
|
|
119
|
+
--bui-fg-primary: var(--bui-black);
|
|
120
|
+
--bui-fg-secondary: #696969;
|
|
121
|
+
--bui-fg-disabled: #aaaaaa;
|
|
122
|
+
--bui-fg-positive: #1abc54;
|
|
123
|
+
--bui-fg-negative: #ee3a4c;
|
|
124
|
+
--bui-fg-warning: #f18900;
|
|
125
|
+
--bui-fg-announcement: #2a86f3;
|
|
126
|
+
|
|
127
|
+
/* Border colors */
|
|
128
|
+
--bui-border-1: var(--bui-gray-3);
|
|
129
|
+
--bui-border-2: var(--bui-gray-6);
|
|
130
|
+
|
|
131
|
+
/* Accent */
|
|
132
|
+
--bui-accent-bg: #1f5493;
|
|
133
|
+
--bui-accent-bg-hover: #163a66;
|
|
134
|
+
--bui-accent-bg-disabled: #163a66;
|
|
135
|
+
--bui-accent-fg: #ffffff;
|
|
136
|
+
--bui-accent-fg-disabled: #98a8bc;
|
|
137
|
+
|
|
138
|
+
/* Announcement */
|
|
139
|
+
--bui-announcement-bg: #0d72ea;
|
|
140
|
+
--bui-announcement-bg-hover: #2b88f5;
|
|
141
|
+
--bui-announcement-bg-disabled: #0d72ea;
|
|
142
|
+
--bui-announcement-bg-subdued: #c8e0fc;
|
|
143
|
+
--bui-announcement-bg-subdued-hover: #e0edfd;
|
|
144
|
+
--bui-announcement-bg-subdued-disabled: #c8e0fc;
|
|
145
|
+
--bui-announcement-border: #549ef4;
|
|
146
|
+
--bui-announcement-fg: #ffffff;
|
|
147
|
+
--bui-announcement-fg-disabled: #a4ccfb;
|
|
148
|
+
--bui-announcement-fg-subdued: #173da6;
|
|
149
|
+
--bui-announcement-fg-subdued-disabled: #7391e3;
|
|
150
|
+
|
|
151
|
+
/* Warning */
|
|
152
|
+
--bui-warning-bg: #ff9400;
|
|
153
|
+
--bui-warning-bg-hover: #ffb656;
|
|
154
|
+
--bui-warning-bg-disabled: #ff9400;
|
|
155
|
+
--bui-warning-bg-subdued: #ffedd5;
|
|
156
|
+
--bui-warning-bg-subdued-hover: #f8ddb9;
|
|
157
|
+
--bui-warning-bg-subdued-disabled: #f8ddb9;
|
|
158
|
+
--bui-warning-border: #ff9400;
|
|
159
|
+
--bui-warning-fg: #000000;
|
|
160
|
+
--bui-warning-fg-disabled: #aa4d00;
|
|
161
|
+
--bui-warning-fg-subdued: #aa4d00;
|
|
162
|
+
--bui-warning-fg-subdued-disabled: #e3a572;
|
|
163
|
+
|
|
164
|
+
/* Negative */
|
|
165
|
+
--bui-negative-bg: #dc2626;
|
|
166
|
+
--bui-negative-bg-hover: #f44b4b;
|
|
167
|
+
--bui-negative-bg-disabled: #ff8686;
|
|
168
|
+
--bui-negative-bg-subdued: #ffcbcb;
|
|
169
|
+
--bui-negative-bg-subdued-hover: #f7b6b6;
|
|
170
|
+
--bui-negative-bg-subdued-disabled: #f7b6b6;
|
|
171
|
+
--bui-negative-border: #d06565;
|
|
172
|
+
--bui-negative-fg: #ffffff;
|
|
173
|
+
--bui-negative-fg-disabled: #f7b6b6;
|
|
174
|
+
--bui-negative-fg-subdued: #991919;
|
|
175
|
+
--bui-negative-fg-subdued-disabled: #bb7272;
|
|
176
|
+
|
|
177
|
+
/* Positive */
|
|
178
|
+
--bui-positive-bg: #1ed760;
|
|
179
|
+
--bui-positive-bg-hover: #3be477;
|
|
180
|
+
--bui-positive-bg-disabled: #1abc54;
|
|
181
|
+
--bui-positive-bg-subdued: #96f0b6;
|
|
182
|
+
--bui-positive-bg-subdued-hover: #c5f7d7;
|
|
183
|
+
--bui-positive-bg-subdued-disabled: #96f0b6;
|
|
184
|
+
--bui-positive-border: #54a671;
|
|
185
|
+
--bui-positive-fg: #000000;
|
|
186
|
+
--bui-positive-fg-disabled: #0c632b;
|
|
187
|
+
--bui-positive-fg-subdued: #0c632b;
|
|
188
|
+
--bui-positive-fg-subdued-disabled: #4b9666;
|
|
189
|
+
|
|
190
|
+
/* Deprecated tokens */
|
|
93
191
|
--bui-bg-solid: #1f5493;
|
|
94
192
|
--bui-bg-solid-hover: #163a66;
|
|
95
193
|
--bui-bg-solid-pressed: #0f2b4e;
|
|
96
194
|
--bui-bg-solid-disabled: #163a66;
|
|
97
|
-
|
|
98
|
-
/* Neutral background colors */
|
|
99
|
-
--bui-bg-app: #f8f8f8;
|
|
100
|
-
|
|
101
|
-
--bui-bg-neutral-1: #fff;
|
|
102
195
|
--bui-bg-neutral-1-hover: oklch(0% 0 0 / 6%);
|
|
103
196
|
--bui-bg-neutral-1-pressed: oklch(0% 0 0 / 12%);
|
|
104
197
|
--bui-bg-neutral-1-disabled: oklch(0% 0 0 / 6%);
|
|
105
|
-
|
|
106
|
-
--bui-bg-neutral-2: oklch(0% 0 0 / 6%);
|
|
107
198
|
--bui-bg-neutral-2-hover: oklch(0% 0 0 / 12%);
|
|
108
199
|
--bui-bg-neutral-2-pressed: oklch(0% 0 0 / 16%);
|
|
109
200
|
--bui-bg-neutral-2-disabled: oklch(0% 0 0 / 6%);
|
|
110
|
-
|
|
111
|
-
--bui-bg-neutral-3: oklch(0% 0 0 / 6%);
|
|
112
201
|
--bui-bg-neutral-3-hover: oklch(0% 0 0 / 12%);
|
|
113
202
|
--bui-bg-neutral-3-pressed: oklch(0% 0 0 / 16%);
|
|
114
203
|
--bui-bg-neutral-3-disabled: oklch(0% 0 0 / 6%);
|
|
115
|
-
|
|
116
|
-
--bui-bg-neutral-4: oklch(0% 0 0 / 6%);
|
|
117
204
|
--bui-bg-neutral-4-hover: oklch(0% 0 0 / 12%);
|
|
118
205
|
--bui-bg-neutral-4-pressed: oklch(0% 0 0 / 16%);
|
|
119
206
|
--bui-bg-neutral-4-disabled: oklch(0% 0 0 / 6%);
|
|
120
|
-
|
|
121
|
-
/* Status background colors */
|
|
122
207
|
--bui-bg-danger: #ffe2e2;
|
|
123
208
|
--bui-bg-warning: #ffedd5;
|
|
124
209
|
--bui-bg-success: #dcfce7;
|
|
125
210
|
--bui-bg-info: #dbeafe;
|
|
126
|
-
|
|
127
|
-
/* Foreground colors */
|
|
128
|
-
--bui-fg-primary: var(--bui-black);
|
|
129
|
-
--bui-fg-secondary: oklch(0% 0 0 / 50%);
|
|
130
|
-
--bui-fg-disabled: oklch(0% 0 0 / 28%);
|
|
131
211
|
--bui-fg-solid: var(--bui-white);
|
|
132
212
|
--bui-fg-solid-disabled: #98a8bc;
|
|
133
|
-
|
|
134
|
-
/* Foreground Statuses */
|
|
135
213
|
--bui-fg-danger-on-bg: #991919;
|
|
136
214
|
--bui-fg-warning-on-bg: #92310a;
|
|
137
215
|
--bui-fg-success-on-bg: #116932;
|
|
138
216
|
--bui-fg-info-on-bg: #173da6;
|
|
139
217
|
--bui-fg-danger: #ec3b18;
|
|
140
|
-
--bui-fg-warning: #ef7a32;
|
|
141
218
|
--bui-fg-success: #1aaf4f;
|
|
142
219
|
--bui-fg-info: #0d74ce;
|
|
143
|
-
|
|
144
|
-
/* Border colors */
|
|
145
|
-
--bui-border-1: #d5d5d5;
|
|
146
|
-
--bui-border-2: #bababa;
|
|
147
220
|
--bui-border-info: #7ea9d6;
|
|
148
221
|
--bui-border-danger: #f87a7a;
|
|
149
222
|
--bui-border-warning: #e36d05;
|
|
150
223
|
--bui-border-success: #53db83;
|
|
151
|
-
|
|
152
|
-
/* Special colors */
|
|
153
|
-
--bui-ring: #1f5493;
|
|
154
|
-
--bui-scrollbar: #a0a0a03b;
|
|
155
|
-
--bui-scrollbar-thumb: #a0a0a0;
|
|
156
|
-
|
|
157
|
-
/* Shadows */
|
|
158
224
|
--bui-shadow: 0 10px 15px -3px rgba(0 0 0 / 0.1),
|
|
159
225
|
0 4px 6px -4px rgba(0 0 0 / 0.1);
|
|
160
|
-
|
|
161
|
-
--bui-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
162
226
|
}
|
|
163
227
|
|
|
164
228
|
/* Dark theme tokens */
|
|
165
229
|
[data-theme-mode='dark'] {
|
|
166
|
-
/*
|
|
167
|
-
--bui-
|
|
168
|
-
--bui-
|
|
169
|
-
--bui-
|
|
170
|
-
--bui-bg-solid-disabled: #1b3d68;
|
|
230
|
+
/* Base colors */
|
|
231
|
+
--bui-ring: #1f5493;
|
|
232
|
+
--bui-scrollbar: #3636363a;
|
|
233
|
+
--bui-scrollbar-thumb: #575757;
|
|
171
234
|
|
|
172
235
|
/* Neutral background colors */
|
|
173
236
|
--bui-bg-app: #333333;
|
|
237
|
+
--bui-bg-neutral-1: #1a1a1a;
|
|
238
|
+
--bui-bg-neutral-2: #282828;
|
|
239
|
+
--bui-bg-neutral-3: #393939;
|
|
240
|
+
--bui-bg-neutral-4: #474747;
|
|
174
241
|
|
|
175
|
-
|
|
242
|
+
/* Foreground colors */
|
|
243
|
+
--bui-fg-primary: var(--bui-white);
|
|
244
|
+
--bui-fg-secondary: #a3a3a3;
|
|
245
|
+
--bui-fg-disabled: #707070;
|
|
246
|
+
--bui-fg-positive: #21b656;
|
|
247
|
+
--bui-fg-negative: #ee3a4c;
|
|
248
|
+
--bui-fg-warning: #f18900;
|
|
249
|
+
--bui-fg-announcement: #2a86f3;
|
|
250
|
+
|
|
251
|
+
/* Border colors */
|
|
252
|
+
--bui-border-1: var(--bui-gray-6);
|
|
253
|
+
--bui-border-2: var(--bui-gray-5);
|
|
254
|
+
|
|
255
|
+
/* Accent */
|
|
256
|
+
--bui-accent-bg: #9cc9ff;
|
|
257
|
+
--bui-accent-bg-hover: #83b9fd;
|
|
258
|
+
--bui-accent-bg-disabled: #3b6293;
|
|
259
|
+
--bui-accent-fg: #101821;
|
|
260
|
+
--bui-accent-fg-disabled: #6191cc;
|
|
261
|
+
|
|
262
|
+
/* Announcement */
|
|
263
|
+
--bui-announcement-bg: #0d72ea;
|
|
264
|
+
--bui-announcement-bg-hover: #2b88f5;
|
|
265
|
+
--bui-announcement-bg-disabled: #0d72ea;
|
|
266
|
+
--bui-announcement-bg-subdued: #052a56;
|
|
267
|
+
--bui-announcement-bg-subdued-hover: #0c3d77;
|
|
268
|
+
--bui-announcement-bg-subdued-disabled: #052a56;
|
|
269
|
+
--bui-announcement-border: #2363af;
|
|
270
|
+
--bui-announcement-fg: #ffffff;
|
|
271
|
+
--bui-announcement-fg-disabled: #70b8ff;
|
|
272
|
+
--bui-announcement-fg-subdued: #70b8ff;
|
|
273
|
+
--bui-announcement-fg-subdued-disabled: #4275a6;
|
|
274
|
+
|
|
275
|
+
/* Warning */
|
|
276
|
+
--bui-warning-bg: #ffa42c;
|
|
277
|
+
--bui-warning-bg-hover: #ffb656;
|
|
278
|
+
--bui-warning-bg-disabled: #ffb656;
|
|
279
|
+
--bui-warning-bg-subdued: #491e00;
|
|
280
|
+
--bui-warning-bg-subdued-hover: #612901;
|
|
281
|
+
--bui-warning-bg-subdued-disabled: #582400;
|
|
282
|
+
--bui-warning-border: #7c4903;
|
|
283
|
+
--bui-warning-fg: #000000;
|
|
284
|
+
--bui-warning-fg-disabled: #aa4d00;
|
|
285
|
+
--bui-warning-fg-subdued: #f2ab4a;
|
|
286
|
+
--bui-warning-fg-subdued-disabled: #aa4d00;
|
|
287
|
+
|
|
288
|
+
/* Negative */
|
|
289
|
+
--bui-negative-bg: #dc2626;
|
|
290
|
+
--bui-negative-bg-hover: #f44b4b;
|
|
291
|
+
--bui-negative-bg-disabled: #dc2626;
|
|
292
|
+
--bui-negative-bg-subdued: #350708;
|
|
293
|
+
--bui-negative-bg-subdued-hover: #5e1a1b;
|
|
294
|
+
--bui-negative-bg-subdued-disabled: #5e1a1b;
|
|
295
|
+
--bui-negative-border: #6f101c;
|
|
296
|
+
--bui-negative-fg: #ffffff;
|
|
297
|
+
--bui-negative-fg-disabled: #f7b6b6;
|
|
298
|
+
--bui-negative-fg-subdued: #fca5a5;
|
|
299
|
+
--bui-negative-fg-subdued-disabled: #bb7272;
|
|
300
|
+
|
|
301
|
+
/* Positive */
|
|
302
|
+
--bui-positive-bg: #1ed760;
|
|
303
|
+
--bui-positive-bg-hover: #3be477;
|
|
304
|
+
--bui-positive-bg-disabled: #1abc54;
|
|
305
|
+
--bui-positive-bg-subdued: #073116;
|
|
306
|
+
--bui-positive-bg-subdued-hover: #0b431f;
|
|
307
|
+
--bui-positive-bg-subdued-disabled: #073116;
|
|
308
|
+
--bui-positive-border: #136d33;
|
|
309
|
+
--bui-positive-fg: #000000;
|
|
310
|
+
--bui-positive-fg-disabled: #0c632b;
|
|
311
|
+
--bui-positive-fg-subdued: #8ddeaa;
|
|
312
|
+
--bui-positive-fg-subdued-disabled: #509c6b;
|
|
313
|
+
|
|
314
|
+
/* Deprecated tokens */
|
|
315
|
+
--bui-bg-solid: #9cc9ff;
|
|
316
|
+
--bui-bg-solid-hover: #83b9fd;
|
|
317
|
+
--bui-bg-solid-pressed: #83b9fd;
|
|
318
|
+
--bui-bg-solid-disabled: #1b3d68;
|
|
176
319
|
--bui-bg-neutral-1-hover: oklch(100% 0 0 / 14%);
|
|
177
320
|
--bui-bg-neutral-1-pressed: oklch(100% 0 0 / 20%);
|
|
178
321
|
--bui-bg-neutral-1-disabled: oklch(100% 0 0 / 10%);
|
|
179
|
-
|
|
180
|
-
--bui-bg-neutral-2: oklch(100% 0 0 / 6%);
|
|
181
322
|
--bui-bg-neutral-2-hover: oklch(100% 0 0 / 10%);
|
|
182
323
|
--bui-bg-neutral-2-pressed: oklch(100% 0 0 / 16%);
|
|
183
324
|
--bui-bg-neutral-2-disabled: oklch(100% 0 0 / 6%);
|
|
184
|
-
|
|
185
|
-
--bui-bg-neutral-3: oklch(100% 0 0 / 8%);
|
|
186
325
|
--bui-bg-neutral-3-hover: oklch(100% 0 0 / 12%);
|
|
187
326
|
--bui-bg-neutral-3-pressed: oklch(100% 0 0 / 20%);
|
|
188
327
|
--bui-bg-neutral-3-disabled: oklch(100% 0 0 / 8%);
|
|
189
|
-
|
|
190
|
-
--bui-bg-neutral-4: oklch(100% 0 0 / 8%);
|
|
191
328
|
--bui-bg-neutral-4-hover: oklch(100% 0 0 / 12%);
|
|
192
329
|
--bui-bg-neutral-4-pressed: oklch(100% 0 0 / 20%);
|
|
193
330
|
--bui-bg-neutral-4-disabled: oklch(100% 0 0 / 8%);
|
|
194
|
-
|
|
195
|
-
/* Status background colors */
|
|
196
331
|
--bui-bg-danger: #300c0c;
|
|
197
332
|
--bui-bg-warning: #302008;
|
|
198
333
|
--bui-bg-success: #042713;
|
|
199
334
|
--bui-bg-info: #132049;
|
|
200
|
-
|
|
201
|
-
/* Foreground colors */
|
|
202
|
-
--bui-fg-primary: var(--bui-white);
|
|
203
|
-
--bui-fg-secondary: oklch(100% 0 0 / 50%);
|
|
204
|
-
--bui-fg-disabled: oklch(100% 0 0 / 28%);
|
|
205
335
|
--bui-fg-solid: #101821;
|
|
206
336
|
--bui-fg-solid-disabled: #6191cc;
|
|
207
|
-
|
|
208
|
-
/* Foreground statuses */
|
|
209
337
|
--bui-fg-danger-on-bg: #fca5a5;
|
|
210
338
|
--bui-fg-warning-on-bg: #fdba74;
|
|
211
339
|
--bui-fg-success-on-bg: #86efac;
|
|
212
340
|
--bui-fg-info-on-bg: #a3cfff;
|
|
213
341
|
--bui-fg-danger: #ff5a30;
|
|
214
|
-
--bui-fg-warning: #ffa057;
|
|
215
342
|
--bui-fg-success: #1ed760;
|
|
216
343
|
--bui-fg-info: #70b8ff;
|
|
217
|
-
|
|
218
|
-
/* Border colors */
|
|
219
|
-
--bui-border-1: #434343;
|
|
220
|
-
--bui-border-2: #585858;
|
|
221
344
|
--bui-border-info: #7ea9d6;
|
|
222
345
|
--bui-border-danger: #f87a7a;
|
|
223
346
|
--bui-border-warning: #e36d05;
|
|
224
347
|
--bui-border-success: #53db83;
|
|
225
|
-
|
|
226
|
-
/* Special colors */
|
|
227
|
-
--bui-ring: #1f5493;
|
|
228
|
-
--bui-scrollbar: #3636363a;
|
|
229
|
-
--bui-scrollbar-thumb: #575757;
|
|
230
|
-
|
|
231
|
-
/* Shadows */
|
|
232
348
|
--bui-shadow: none;
|
|
233
349
|
}
|
|
234
350
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { CSSProperties, ReactNode, HTMLAttributes, ComponentPropsWithoutRef, ReactElement, ElementType, ComponentPropsWithRef, ComponentProps } from 'react';
|
|
3
|
-
import { DisclosureProps, DisclosureGroupProps, DisclosurePanelProps, HeadingProps, ButtonProps as ButtonProps$1, DatePickerProps as DatePickerProps$1, DateRangePickerProps as DateRangePickerProps$1, ModalOverlayProps, DialogTriggerProps as DialogTriggerProps$1, TabProps as TabProps$1, TabListProps as TabListProps$1, TabPanelProps as TabPanelProps$1, TabsProps as TabsProps$1, LinkProps as LinkProps$1, CheckboxProps as CheckboxProps$1, CheckboxGroupProps as CheckboxGroupProps$1, SelectProps as SelectProps$1, ComboBoxProps, RadioProps as RadioProps$1, RadioGroupProps as RadioGroupProps$1, SliderProps as SliderProps$1, CellProps as CellProps$1, ColumnProps as ColumnProps$1, RowProps as RowProps$1, TableProps as TableProps$1, TableBodyProps as TableBodyProps$1, TableHeaderProps as TableHeaderProps$1, TagProps as TagProps$1, TagListProps, TagGroupProps as TagGroupProps$1, TextFieldProps as TextFieldProps$1, TooltipProps as TooltipProps$1, TooltipTriggerComponentProps, PopoverProps as PopoverProps$1, MenuProps as MenuProps$1, ListBoxProps, MenuItemProps as MenuItemProps$1, ListBoxItemProps, MenuSectionProps as MenuSectionProps$1, SeparatorProps, MenuTriggerProps as MenuTriggerProps$1, SubmenuTriggerProps as SubmenuTriggerProps$1, SearchFieldProps as SearchFieldProps$1, GridListProps, GridListItemProps, SwitchProps as SwitchProps$1, ToggleButtonProps as ToggleButtonProps$1, ToggleButtonGroupProps as ToggleButtonGroupProps$1 } from 'react-aria-components';
|
|
3
|
+
import { DisclosureProps, DisclosureGroupProps, DisclosurePanelProps, HeadingProps, ButtonProps as ButtonProps$1, DatePickerProps as DatePickerProps$1, DateRangePickerProps as DateRangePickerProps$1, ModalOverlayProps, DialogTriggerProps as DialogTriggerProps$1, TabProps as TabProps$1, TabListProps as TabListProps$1, TabPanelProps as TabPanelProps$1, TabsProps as TabsProps$1, LinkProps as LinkProps$1, CheckboxProps as CheckboxProps$1, CheckboxGroupProps as CheckboxGroupProps$1, SelectProps as SelectProps$1, ComboBoxProps, RadioProps as RadioProps$1, RadioGroupProps as RadioGroupProps$1, SliderProps as SliderProps$1, CellProps as CellProps$1, ColumnProps as ColumnProps$1, RowProps as RowProps$1, TableProps as TableProps$1, TableBodyProps as TableBodyProps$1, TableHeaderProps as TableHeaderProps$1, TagProps as TagProps$1, TagListProps, TagGroupProps as TagGroupProps$1, TextFieldProps as TextFieldProps$1, NumberFieldProps as NumberFieldProps$1, TooltipProps as TooltipProps$1, TooltipTriggerComponentProps, PopoverProps as PopoverProps$1, MenuProps as MenuProps$1, ListBoxProps, MenuItemProps as MenuItemProps$1, ListBoxItemProps, MenuSectionProps as MenuSectionProps$1, SeparatorProps, MenuTriggerProps as MenuTriggerProps$1, SubmenuTriggerProps as SubmenuTriggerProps$1, SearchFieldProps as SearchFieldProps$1, GridListProps, GridListItemProps, SwitchProps as SwitchProps$1, ToggleButtonProps as ToggleButtonProps$1, ToggleButtonGroupProps as ToggleButtonGroupProps$1 } from 'react-aria-components';
|
|
4
4
|
import { DateValue } from '@internationalized/date';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
import { NavigateOptions } from 'react-router-dom';
|
|
@@ -3148,6 +3148,68 @@ declare const TextFieldDefinition: {
|
|
|
3148
3148
|
};
|
|
3149
3149
|
};
|
|
3150
3150
|
|
|
3151
|
+
/** @public */
|
|
3152
|
+
type NumberFieldOwnProps = {
|
|
3153
|
+
/**
|
|
3154
|
+
* The size of the number field
|
|
3155
|
+
* @defaultValue 'small'
|
|
3156
|
+
*/
|
|
3157
|
+
size?: 'small' | 'medium' | Partial<Record<Breakpoint, 'small' | 'medium'>>;
|
|
3158
|
+
className?: string;
|
|
3159
|
+
/**
|
|
3160
|
+
* An icon to render before the input
|
|
3161
|
+
*/
|
|
3162
|
+
icon?: ReactNode;
|
|
3163
|
+
/**
|
|
3164
|
+
* Text to display in the input when it has no value
|
|
3165
|
+
*/
|
|
3166
|
+
placeholder?: string;
|
|
3167
|
+
label?: FieldLabelProps['label'];
|
|
3168
|
+
description?: FieldLabelProps['description'];
|
|
3169
|
+
secondaryLabel?: FieldLabelProps['secondaryLabel'];
|
|
3170
|
+
};
|
|
3171
|
+
/** @public */
|
|
3172
|
+
interface NumberFieldProps extends Omit<NumberFieldProps$1, 'className' | 'description'>, NumberFieldOwnProps {
|
|
3173
|
+
}
|
|
3174
|
+
|
|
3175
|
+
/**
|
|
3176
|
+
* A numeric input with an integrated label, optional icon, and inline error display.
|
|
3177
|
+
*
|
|
3178
|
+
* @public
|
|
3179
|
+
*/
|
|
3180
|
+
declare const NumberField: react.ForwardRefExoticComponent<NumberFieldProps & react.RefAttributes<HTMLDivElement>>;
|
|
3181
|
+
|
|
3182
|
+
/**
|
|
3183
|
+
* Component definition for NumberField
|
|
3184
|
+
* @public
|
|
3185
|
+
*/
|
|
3186
|
+
declare const NumberFieldDefinition: {
|
|
3187
|
+
readonly styles: {
|
|
3188
|
+
readonly [key: string]: string;
|
|
3189
|
+
};
|
|
3190
|
+
readonly classNames: {
|
|
3191
|
+
readonly root: "bui-NumberField";
|
|
3192
|
+
readonly inputWrapper: "bui-InputWrapper";
|
|
3193
|
+
readonly input: "bui-Input";
|
|
3194
|
+
readonly inputIcon: "bui-InputIcon";
|
|
3195
|
+
readonly stepperButtons: "bui-StepperButtons";
|
|
3196
|
+
readonly stepperButton: "bui-StepperButton";
|
|
3197
|
+
};
|
|
3198
|
+
readonly bg: "consumer";
|
|
3199
|
+
readonly propDefs: {
|
|
3200
|
+
readonly size: {
|
|
3201
|
+
readonly dataAttribute: true;
|
|
3202
|
+
readonly default: "small";
|
|
3203
|
+
};
|
|
3204
|
+
readonly className: {};
|
|
3205
|
+
readonly icon: {};
|
|
3206
|
+
readonly placeholder: {};
|
|
3207
|
+
readonly label: {};
|
|
3208
|
+
readonly description: {};
|
|
3209
|
+
readonly secondaryLabel: {};
|
|
3210
|
+
};
|
|
3211
|
+
};
|
|
3212
|
+
|
|
3151
3213
|
/** @public */
|
|
3152
3214
|
type PasswordFieldOwnProps = {
|
|
3153
3215
|
/**
|
|
@@ -3194,6 +3256,7 @@ declare const PasswordFieldDefinition: {
|
|
|
3194
3256
|
readonly inputIcon: "bui-PasswordFieldIcon";
|
|
3195
3257
|
readonly inputVisibility: "bui-PasswordFieldVisibility";
|
|
3196
3258
|
};
|
|
3259
|
+
readonly bg: "consumer";
|
|
3197
3260
|
readonly propDefs: {
|
|
3198
3261
|
readonly size: {
|
|
3199
3262
|
readonly dataAttribute: true;
|
|
@@ -3946,6 +4009,7 @@ declare const SwitchDefinition: {
|
|
|
3946
4009
|
readonly root: "bui-Switch";
|
|
3947
4010
|
readonly indicator: "bui-SwitchIndicator";
|
|
3948
4011
|
};
|
|
4012
|
+
readonly bg: "consumer";
|
|
3949
4013
|
readonly propDefs: {
|
|
3950
4014
|
readonly label: {};
|
|
3951
4015
|
readonly className: {};
|
|
@@ -4205,5 +4269,5 @@ declare function useAnalytics(): AnalyticsTracker;
|
|
|
4205
4269
|
*/
|
|
4206
4270
|
declare function getNodeText(node: ReactNode | ((...args: any[]) => ReactNode)): string | undefined;
|
|
4207
4271
|
|
|
4208
|
-
export { Accordion, AccordionDefinition, AccordionGroup, AccordionGroupDefinition, AccordionPanel, AccordionPanelDefinition, AccordionTrigger, AccordionTriggerDefinition, Alert, AlertDefinition, Avatar, AvatarDefinition, BUIProvider, Badge, BadgeDefinition, BgProvider, Box, BoxDefinition, Button, ButtonDefinition, ButtonIcon, ButtonIconDefinition, ButtonLink, ButtonLinkDefinition, Card, CardBody, CardBodyDefinition, CardDefinition, CardFooter, CardFooterDefinition, CardHeader, CardHeaderDefinition, Cell, CellProfile, CellText, Checkbox, CheckboxDefinition, CheckboxGroup, CheckboxGroupDefinition, Column, Combobox, ComboboxDefinition, ComboboxInputDefinition, ComboboxListBoxDefinition, ComboboxListBoxItemDefinition, ComboboxSectionDefinition, Container, ContainerDefinition, DatePicker, DatePickerCalendarDefinition, DatePickerDefinition, DatePickerGroupDefinition, DateRangePicker, DateRangePickerDefinition, Dialog, DialogBody, DialogBodyDefinition, DialogDefinition, DialogFooter, DialogFooterDefinition, DialogHeader, DialogHeaderDefinition, DialogTrigger, FieldLabel, FieldLabelDefinition, Flex, FlexDefinition, FullPage, FullPageDefinition, Grid, GridDefinition, GridItemDefinition, Header, HeaderDefinition, HeaderMetadataStatus, HeaderMetadataUsers, HeaderNavDefinition, HeaderNavGroupDefinition, HeaderNavItemDefinition, HeaderPage, HeaderPageDefinition, Link, LinkDefinition, List, ListDefinition, ListRow, ListRowDefinition, Menu, MenuAutocomplete, MenuAutocompleteListbox, MenuDefinition, MenuItem, MenuListBox, MenuListBoxItem, MenuSection, MenuSeparator, MenuTrigger, PasswordField, PasswordFieldDefinition, PluginHeader, PluginHeaderDefinition, Popover, PopoverDefinition, Radio, RadioDefinition, RadioGroup, RadioGroupDefinition, Row, SearchAutocomplete, SearchAutocompleteDefinition, SearchAutocompleteItem, SearchField, SearchFieldDefinition, Select, SelectDefinition, Skeleton, SkeletonDefinition, Slider, SliderDefinition, SubmenuTrigger, Switch, SwitchDefinition, Tab, TabList, TabPanel, Table, TableBody, TableBodySkeleton, TableDefinition, TableHeader, TablePagination, TablePaginationDefinition, TableRoot, Tabs, TabsDefinition, Tag, TagGroup, TagGroupDefinition, Text, TextDefinition, TextField, TextFieldDefinition, ToggleButton, ToggleButtonDefinition, ToggleButtonGroup, ToggleButtonGroupDefinition, Tooltip, TooltipDefinition, TooltipTrigger, VisuallyHidden, VisuallyHiddenDefinition, getNodeText, useAnalytics, useBgConsumer, useBgProvider, useBreakpoint, useTable };
|
|
4209
|
-
export type { AccordionGroupOwnProps, AccordionGroupProps, AccordionOwnProps, AccordionPanelOwnProps, AccordionPanelProps, AccordionProps, AccordionTriggerOwnProps, AccordionTriggerProps, AlertOwnProps, AlertProps, AlignItems, AnalyticsEventAttributes, AnalyticsTracker, AvatarOwnProps, AvatarProps, BUIProviderProps, BadgeOwnProps, BadgeProps, BgContextValue, BgProviderProps, Border, BorderRadius, BoxOwnProps, BoxProps, BoxUtilityProps, Breakpoint, ButtonIconOwnProps, ButtonIconProps, ButtonLinkOwnProps, ButtonLinkProps, ButtonOwnProps, ButtonProps, CardBaseProps, CardBodyOwnProps, CardBodyProps, CardButtonVariant, CardFooterOwnProps, CardFooterProps, CardHeaderOwnProps, CardHeaderProps, CardLinkVariant, CardOwnProps, CardProps, CardStaticVariant, CellOwnProps, CellProfileOwnProps, CellProfileProps, CellProps, CellTextOwnProps, CellTextProps, CheckboxGroupOwnProps, CheckboxGroupProps, CheckboxOwnProps, CheckboxProps, ColumnConfig, ColumnOwnProps, ColumnProps, Columns, ComboboxOwnProps, ComboboxProps, CompletePaginationOptions, ContainerBg, ContainerOwnProps, ContainerProps, CursorParams, CursorResponse, DatePickerOwnProps, DatePickerProps, DateRangePickerOwnProps, DateRangePickerProps, DialogBodyOwnProps, DialogBodyProps, DialogFooterOwnProps, DialogFooterProps, DialogHeaderOwnProps, DialogHeaderProps, DialogOwnProps, DialogProps, DialogTriggerProps, Display, FieldLabelOwnProps, FieldLabelProps, FilterState, FlexDirection, FlexItemProps, FlexOwnProps, FlexProps, FlexWrap, FullPageOwnProps, FullPageProps, GridItemOwnProps, GridItemProps, GridOwnProps, GridProps, HeaderBreadcrumb, HeaderMetadataItem, HeaderMetadataStatusProps, HeaderMetadataUser, HeaderNavTab, HeaderNavTabGroup, HeaderNavTabItem, HeaderOwnProps, HeaderPageBreadcrumb, HeaderPageOwnProps, HeaderPageProps, HeaderProps, HeaderTab, HeaderTag, JustifyContent, LinkOwnProps, LinkProps, ListOwnProps, ListProps, ListRowOwnProps, ListRowProps, MarginProps, MenuAutocompleteListBoxOwnProps, MenuAutocompleteListBoxProps, MenuAutocompleteOwnProps, MenuAutocompleteProps, MenuItemOwnProps, MenuItemProps, MenuListBoxItemOwnProps, MenuListBoxItemProps, MenuListBoxOwnProps, MenuListBoxProps, MenuOwnProps, MenuPopoverOwnProps, MenuProps, MenuSectionOwnProps, MenuSectionProps, MenuSeparatorOwnProps, MenuSeparatorProps, MenuTriggerProps, NoPagination, OffsetParams, OffsetResponse, Option, OptionSection, PaddingProps, PagePagination, PageSizeOption, PaginationOptions, PasswordFieldOwnProps, PasswordFieldProps, PluginHeaderOwnProps, PluginHeaderProps, PopoverOwnProps, PopoverProps, ProviderBg, QueryOptions, RadioGroupOwnProps, RadioGroupProps, RadioOwnProps, RadioProps, Responsive, RowConfig, RowOwnProps, RowProps, RowRenderFn, SearchAutocompleteItemOwnProps, SearchAutocompleteItemProps, SearchAutocompleteOwnProps, SearchAutocompleteProps, SearchFieldOwnProps, SearchFieldProps, SearchState, SelectOwnProps, SelectProps, SkeletonOwnProps, SkeletonProps, SliderOwnProps, SliderProps, SortDescriptor, SortState, Space, SpaceProps, SubmenuTriggerProps, SwitchOwnProps, SwitchProps, TabListOwnProps, TabListProps, TabMatchStrategy, TabOwnProps, TabPanelOwnProps, TabPanelProps, TabProps, TableBodyOwnProps, TableBodyProps, TableHeaderOwnProps, TableHeaderProps, TableItem, TablePaginationOwnProps, TablePaginationProps, TablePaginationType, TableProps, TableRootOwnProps, TableRootProps, TableSelection, TabsOwnProps, TabsProps, TagGroupOwnProps, TagGroupProps, TagOwnProps, TagProps, TextColorStatus, TextColors, TextFieldOwnProps, TextFieldProps, TextOwnProps, TextProps, TextVariants, TextWeights, ToggleButtonGroupOwnProps, ToggleButtonGroupProps, ToggleButtonOwnProps, ToggleButtonProps, TooltipOwnProps, TooltipProps, UseAnalyticsFn, UseTableCompleteOptions, UseTableCursorOptions, UseTableOffsetOptions, UseTableOptions, UseTableResult, UtilityProps, VirtualizedProp, VisuallyHiddenOwnProps, VisuallyHiddenProps };
|
|
4272
|
+
export { Accordion, AccordionDefinition, AccordionGroup, AccordionGroupDefinition, AccordionPanel, AccordionPanelDefinition, AccordionTrigger, AccordionTriggerDefinition, Alert, AlertDefinition, Avatar, AvatarDefinition, BUIProvider, Badge, BadgeDefinition, BgProvider, Box, BoxDefinition, Button, ButtonDefinition, ButtonIcon, ButtonIconDefinition, ButtonLink, ButtonLinkDefinition, Card, CardBody, CardBodyDefinition, CardDefinition, CardFooter, CardFooterDefinition, CardHeader, CardHeaderDefinition, Cell, CellProfile, CellText, Checkbox, CheckboxDefinition, CheckboxGroup, CheckboxGroupDefinition, Column, Combobox, ComboboxDefinition, ComboboxInputDefinition, ComboboxListBoxDefinition, ComboboxListBoxItemDefinition, ComboboxSectionDefinition, Container, ContainerDefinition, DatePicker, DatePickerCalendarDefinition, DatePickerDefinition, DatePickerGroupDefinition, DateRangePicker, DateRangePickerDefinition, Dialog, DialogBody, DialogBodyDefinition, DialogDefinition, DialogFooter, DialogFooterDefinition, DialogHeader, DialogHeaderDefinition, DialogTrigger, FieldLabel, FieldLabelDefinition, Flex, FlexDefinition, FullPage, FullPageDefinition, Grid, GridDefinition, GridItemDefinition, Header, HeaderDefinition, HeaderMetadataStatus, HeaderMetadataUsers, HeaderNavDefinition, HeaderNavGroupDefinition, HeaderNavItemDefinition, HeaderPage, HeaderPageDefinition, Link, LinkDefinition, List, ListDefinition, ListRow, ListRowDefinition, Menu, MenuAutocomplete, MenuAutocompleteListbox, MenuDefinition, MenuItem, MenuListBox, MenuListBoxItem, MenuSection, MenuSeparator, MenuTrigger, NumberField, NumberFieldDefinition, PasswordField, PasswordFieldDefinition, PluginHeader, PluginHeaderDefinition, Popover, PopoverDefinition, Radio, RadioDefinition, RadioGroup, RadioGroupDefinition, Row, SearchAutocomplete, SearchAutocompleteDefinition, SearchAutocompleteItem, SearchField, SearchFieldDefinition, Select, SelectDefinition, Skeleton, SkeletonDefinition, Slider, SliderDefinition, SubmenuTrigger, Switch, SwitchDefinition, Tab, TabList, TabPanel, Table, TableBody, TableBodySkeleton, TableDefinition, TableHeader, TablePagination, TablePaginationDefinition, TableRoot, Tabs, TabsDefinition, Tag, TagGroup, TagGroupDefinition, Text, TextDefinition, TextField, TextFieldDefinition, ToggleButton, ToggleButtonDefinition, ToggleButtonGroup, ToggleButtonGroupDefinition, Tooltip, TooltipDefinition, TooltipTrigger, VisuallyHidden, VisuallyHiddenDefinition, getNodeText, useAnalytics, useBgConsumer, useBgProvider, useBreakpoint, useTable };
|
|
4273
|
+
export type { AccordionGroupOwnProps, AccordionGroupProps, AccordionOwnProps, AccordionPanelOwnProps, AccordionPanelProps, AccordionProps, AccordionTriggerOwnProps, AccordionTriggerProps, AlertOwnProps, AlertProps, AlignItems, AnalyticsEventAttributes, AnalyticsTracker, AvatarOwnProps, AvatarProps, BUIProviderProps, BadgeOwnProps, BadgeProps, BgContextValue, BgProviderProps, Border, BorderRadius, BoxOwnProps, BoxProps, BoxUtilityProps, Breakpoint, ButtonIconOwnProps, ButtonIconProps, ButtonLinkOwnProps, ButtonLinkProps, ButtonOwnProps, ButtonProps, CardBaseProps, CardBodyOwnProps, CardBodyProps, CardButtonVariant, CardFooterOwnProps, CardFooterProps, CardHeaderOwnProps, CardHeaderProps, CardLinkVariant, CardOwnProps, CardProps, CardStaticVariant, CellOwnProps, CellProfileOwnProps, CellProfileProps, CellProps, CellTextOwnProps, CellTextProps, CheckboxGroupOwnProps, CheckboxGroupProps, CheckboxOwnProps, CheckboxProps, ColumnConfig, ColumnOwnProps, ColumnProps, Columns, ComboboxOwnProps, ComboboxProps, CompletePaginationOptions, ContainerBg, ContainerOwnProps, ContainerProps, CursorParams, CursorResponse, DatePickerOwnProps, DatePickerProps, DateRangePickerOwnProps, DateRangePickerProps, DialogBodyOwnProps, DialogBodyProps, DialogFooterOwnProps, DialogFooterProps, DialogHeaderOwnProps, DialogHeaderProps, DialogOwnProps, DialogProps, DialogTriggerProps, Display, FieldLabelOwnProps, FieldLabelProps, FilterState, FlexDirection, FlexItemProps, FlexOwnProps, FlexProps, FlexWrap, FullPageOwnProps, FullPageProps, GridItemOwnProps, GridItemProps, GridOwnProps, GridProps, HeaderBreadcrumb, HeaderMetadataItem, HeaderMetadataStatusProps, HeaderMetadataUser, HeaderNavTab, HeaderNavTabGroup, HeaderNavTabItem, HeaderOwnProps, HeaderPageBreadcrumb, HeaderPageOwnProps, HeaderPageProps, HeaderProps, HeaderTab, HeaderTag, JustifyContent, LinkOwnProps, LinkProps, ListOwnProps, ListProps, ListRowOwnProps, ListRowProps, MarginProps, MenuAutocompleteListBoxOwnProps, MenuAutocompleteListBoxProps, MenuAutocompleteOwnProps, MenuAutocompleteProps, MenuItemOwnProps, MenuItemProps, MenuListBoxItemOwnProps, MenuListBoxItemProps, MenuListBoxOwnProps, MenuListBoxProps, MenuOwnProps, MenuPopoverOwnProps, MenuProps, MenuSectionOwnProps, MenuSectionProps, MenuSeparatorOwnProps, MenuSeparatorProps, MenuTriggerProps, NoPagination, NumberFieldOwnProps, NumberFieldProps, OffsetParams, OffsetResponse, Option, OptionSection, PaddingProps, PagePagination, PageSizeOption, PaginationOptions, PasswordFieldOwnProps, PasswordFieldProps, PluginHeaderOwnProps, PluginHeaderProps, PopoverOwnProps, PopoverProps, ProviderBg, QueryOptions, RadioGroupOwnProps, RadioGroupProps, RadioOwnProps, RadioProps, Responsive, RowConfig, RowOwnProps, RowProps, RowRenderFn, SearchAutocompleteItemOwnProps, SearchAutocompleteItemProps, SearchAutocompleteOwnProps, SearchAutocompleteProps, SearchFieldOwnProps, SearchFieldProps, SearchState, SelectOwnProps, SelectProps, SkeletonOwnProps, SkeletonProps, SliderOwnProps, SliderProps, SortDescriptor, SortState, Space, SpaceProps, SubmenuTriggerProps, SwitchOwnProps, SwitchProps, TabListOwnProps, TabListProps, TabMatchStrategy, TabOwnProps, TabPanelOwnProps, TabPanelProps, TabProps, TableBodyOwnProps, TableBodyProps, TableHeaderOwnProps, TableHeaderProps, TableItem, TablePaginationOwnProps, TablePaginationProps, TablePaginationType, TableProps, TableRootOwnProps, TableRootProps, TableSelection, TabsOwnProps, TabsProps, TagGroupOwnProps, TagGroupProps, TagOwnProps, TagProps, TextColorStatus, TextColors, TextFieldOwnProps, TextFieldProps, TextOwnProps, TextProps, TextVariants, TextWeights, ToggleButtonGroupOwnProps, ToggleButtonGroupProps, ToggleButtonOwnProps, ToggleButtonProps, TooltipOwnProps, TooltipProps, UseAnalyticsFn, UseTableCompleteOptions, UseTableCursorOptions, UseTableOffsetOptions, UseTableOptions, UseTableResult, UtilityProps, VirtualizedProp, VisuallyHiddenOwnProps, VisuallyHiddenProps };
|
package/dist/index.esm.js
CHANGED
|
@@ -71,6 +71,8 @@ export { Text } from './components/Text/Text.esm.js';
|
|
|
71
71
|
export { TextDefinition } from './components/Text/definition.esm.js';
|
|
72
72
|
export { TextField } from './components/TextField/TextField.esm.js';
|
|
73
73
|
export { TextFieldDefinition } from './components/TextField/definition.esm.js';
|
|
74
|
+
export { NumberField } from './components/NumberField/NumberField.esm.js';
|
|
75
|
+
export { NumberFieldDefinition } from './components/NumberField/definition.esm.js';
|
|
74
76
|
export { PasswordField } from './components/PasswordField/PasswordField.esm.js';
|
|
75
77
|
export { PasswordFieldDefinition } from './components/PasswordField/definition.esm.js';
|
|
76
78
|
export { Tooltip, TooltipTrigger } from './components/Tooltip/Tooltip.esm.js';
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/ui",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.1-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "web-library"
|
|
6
6
|
},
|
|
@@ -63,21 +63,21 @@
|
|
|
63
63
|
"use-sync-external-store": "^1.4.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@backstage/cli": "0.36.
|
|
67
|
-
"@backstage/core-components": "0.18.
|
|
68
|
-
"@storybook/react-vite": "^10.
|
|
66
|
+
"@backstage/cli": "0.36.3-next.1",
|
|
67
|
+
"@backstage/core-components": "0.18.11-next.1",
|
|
68
|
+
"@storybook/react-vite": "^10.4.0",
|
|
69
69
|
"@testing-library/jest-dom": "^6.0.0",
|
|
70
70
|
"@testing-library/react": "^16.0.0",
|
|
71
71
|
"@types/react": "^18.0.0",
|
|
72
72
|
"@types/react-dom": "^18.0.0",
|
|
73
73
|
"@types/use-sync-external-store": "^1.0.0",
|
|
74
|
-
"eslint-plugin-storybook": "^10.
|
|
74
|
+
"eslint-plugin-storybook": "^10.4.0",
|
|
75
75
|
"glob": "^13.0.0",
|
|
76
76
|
"globals": "^17.0.0",
|
|
77
77
|
"react": "^18.0.2",
|
|
78
78
|
"react-dom": "^18.0.2",
|
|
79
79
|
"react-router-dom": "^6.30.2",
|
|
80
|
-
"storybook": "^10.
|
|
80
|
+
"storybook": "^10.4.0"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
83
|
"@types/react": "^18.0.0",
|