demio-ui 1.0.26 → 1.0.28
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/cjs/index.css +1 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/types/src/components/Checkbox/Checkbox.d.ts +15 -0
- package/dist/cjs/types/src/components/Checkbox/index.d.ts +1 -0
- package/dist/cjs/types/src/components/InputHint/InputHint.d.ts +7 -0
- package/dist/cjs/types/src/components/InputHint/index.d.ts +1 -0
- package/dist/cjs/types/src/components/Label/Label.d.ts +3 -1
- package/dist/cjs/types/src/components/RadioGroup/RadioGroup.d.ts +18 -0
- package/dist/cjs/types/src/components/RadioGroup/index.d.ts +1 -0
- package/dist/cjs/types/src/icons/index.d.ts +3 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/src/components/Checkbox/Checkbox.d.ts +15 -0
- package/dist/esm/types/src/components/Checkbox/index.d.ts +1 -0
- package/dist/esm/types/src/components/InputHint/InputHint.d.ts +7 -0
- package/dist/esm/types/src/components/InputHint/index.d.ts +1 -0
- package/dist/esm/types/src/components/Label/Label.d.ts +3 -1
- package/dist/esm/types/src/components/RadioGroup/RadioGroup.d.ts +18 -0
- package/dist/esm/types/src/components/RadioGroup/index.d.ts +1 -0
- package/dist/esm/types/src/icons/index.d.ts +3 -1
- package/dist/types.d.ts +88 -26
- package/package.json +3 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
id: string;
|
|
6
|
+
defaultChecked?: boolean;
|
|
7
|
+
checked?: boolean;
|
|
8
|
+
onChange?: (checked: boolean) => void;
|
|
9
|
+
name?: string;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Checkbox component documentation.
|
|
13
|
+
**/
|
|
14
|
+
declare function Checkbox({ children, id, checked, onChange, disabled, defaultChecked, name, ...props }: Props): React.JSX.Element;
|
|
15
|
+
export default Checkbox;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Checkbox';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './InputHint';
|
|
@@ -2,6 +2,8 @@ import React from 'react';
|
|
|
2
2
|
type Props = {
|
|
3
3
|
htmlFor: string;
|
|
4
4
|
children: React.ReactNode;
|
|
5
|
+
className?: string;
|
|
6
|
+
weight?: 'regular' | 'semiBold';
|
|
5
7
|
};
|
|
6
|
-
declare function Label({ htmlFor, children }: Props): React.JSX.Element;
|
|
8
|
+
declare function Label({ htmlFor, children, className, weight }: Props): React.JSX.Element;
|
|
7
9
|
export default Label;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
items: {
|
|
4
|
+
id: string;
|
|
5
|
+
label: string;
|
|
6
|
+
value: string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
}[];
|
|
9
|
+
error?: string;
|
|
10
|
+
defaultValue?: string;
|
|
11
|
+
ariaLabel?: string;
|
|
12
|
+
hint?: string;
|
|
13
|
+
onChange?: (value: string) => void;
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
value?: string;
|
|
16
|
+
};
|
|
17
|
+
declare function RadioGroup({ items, error, defaultValue, ariaLabel, hint, onChange, disabled, value, ...props }: Props): React.JSX.Element;
|
|
18
|
+
export default RadioGroup;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './RadioGroup';
|
|
@@ -3,6 +3,8 @@ import ArrowDownIcon from './keyboard_arrow_down.svg';
|
|
|
3
3
|
import BlockIcon from './block.svg';
|
|
4
4
|
import BlurOnIcon from './blur_on.svg';
|
|
5
5
|
import CachedIcon from './cached.svg';
|
|
6
|
+
import CheckboxIcon from './checkbox.svg';
|
|
7
|
+
import CheckboxUncheckIcon from './checkbox_uncheck.svg';
|
|
6
8
|
import CheckCircleIcon from './check_circle.svg';
|
|
7
9
|
import CloseIcon from './close.svg';
|
|
8
10
|
import DeleteIcon from './delete.svg';
|
|
@@ -23,4 +25,4 @@ import VolumeUpIcon from './volume_up-1.svg';
|
|
|
23
25
|
import VolumeUpSolidIcon from './volume_up.svg';
|
|
24
26
|
import WarningIcon from './warning-1.svg';
|
|
25
27
|
import WarningSolidIcon from './warning.svg';
|
|
26
|
-
export { AddIcon, ArrowDownIcon, BlockIcon, BlurOnIcon, CachedIcon, CheckCircleIcon, CloseIcon, DeleteIcon, InfoIcon, InfoSolidIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PlayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
|
28
|
+
export { AddIcon, ArrowDownIcon, BlockIcon, BlurOnIcon, CachedIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, CloseIcon, DeleteIcon, InfoIcon, InfoSolidIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PlayIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
package/dist/types.d.ts
CHANGED
|
@@ -125,8 +125,10 @@ declare const SelectItemText: React__default.ForwardRefExoticComponent<SelectPri
|
|
|
125
125
|
type Props$3 = {
|
|
126
126
|
htmlFor: string;
|
|
127
127
|
children: React__default.ReactNode;
|
|
128
|
+
className?: string;
|
|
129
|
+
weight?: 'regular' | 'semiBold';
|
|
128
130
|
};
|
|
129
|
-
declare function Label({ htmlFor, children }: Props$3): React__default.JSX.Element;
|
|
131
|
+
declare function Label({ htmlFor, children, className, weight }: Props$3): React__default.JSX.Element;
|
|
130
132
|
|
|
131
133
|
type Props$2 = {
|
|
132
134
|
children: React__default.ReactNode;
|
|
@@ -158,10 +160,10 @@ type Props = {
|
|
|
158
160
|
};
|
|
159
161
|
declare function Alert({ onOpenChange, open, actionText, onActionClick, cancelText, onCancelClick, title, description, }: Props): React__default.JSX.Element;
|
|
160
162
|
|
|
161
|
-
var _path$
|
|
162
|
-
function _extends$
|
|
163
|
+
var _path$q, _g$p;
|
|
164
|
+
function _extends$q() { _extends$q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$q.apply(this, arguments); }
|
|
163
165
|
var SvgAdd = function SvgAdd(props) {
|
|
164
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
166
|
+
return /*#__PURE__*/React.createElement("svg", _extends$q({
|
|
165
167
|
xmlns: "http://www.w3.org/2000/svg",
|
|
166
168
|
width: 24,
|
|
167
169
|
height: 24,
|
|
@@ -176,10 +178,10 @@ var SvgAdd = function SvgAdd(props) {
|
|
|
176
178
|
style: {
|
|
177
179
|
maskType: "alpha"
|
|
178
180
|
}
|
|
179
|
-
}, _path$
|
|
181
|
+
}, _path$q || (_path$q = /*#__PURE__*/React.createElement("path", {
|
|
180
182
|
fill: "#D9D9D9",
|
|
181
183
|
d: "M0 0h24v24H0z"
|
|
182
|
-
}))), _g$
|
|
184
|
+
}))), _g$p || (_g$p = /*#__PURE__*/React.createElement("g", {
|
|
183
185
|
mask: "url(#add_svg__a)"
|
|
184
186
|
}, /*#__PURE__*/React.createElement("path", {
|
|
185
187
|
fill: "#2C3336",
|
|
@@ -187,10 +189,10 @@ var SvgAdd = function SvgAdd(props) {
|
|
|
187
189
|
}))));
|
|
188
190
|
};
|
|
189
191
|
|
|
190
|
-
var _path$
|
|
191
|
-
function _extends$
|
|
192
|
+
var _path$p, _g$o;
|
|
193
|
+
function _extends$p() { _extends$p = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$p.apply(this, arguments); }
|
|
192
194
|
var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
|
|
193
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
195
|
+
return /*#__PURE__*/React.createElement("svg", _extends$p({
|
|
194
196
|
xmlns: "http://www.w3.org/2000/svg",
|
|
195
197
|
fill: "none",
|
|
196
198
|
viewBox: "0 0 24 24"
|
|
@@ -204,10 +206,10 @@ var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
|
|
|
204
206
|
style: {
|
|
205
207
|
maskType: "alpha"
|
|
206
208
|
}
|
|
207
|
-
}, _path$
|
|
209
|
+
}, _path$p || (_path$p = /*#__PURE__*/React.createElement("path", {
|
|
208
210
|
fill: "#D9D9D9",
|
|
209
211
|
d: "M0 0h24v24H0z"
|
|
210
|
-
}))), _g$
|
|
212
|
+
}))), _g$o || (_g$o = /*#__PURE__*/React.createElement("g", {
|
|
211
213
|
mask: "url(#keyboard_arrow_down_svg__a)"
|
|
212
214
|
}, /*#__PURE__*/React.createElement("path", {
|
|
213
215
|
fill: "#2C3336",
|
|
@@ -215,10 +217,10 @@ var SvgKeyboardArrowDown = function SvgKeyboardArrowDown(props) {
|
|
|
215
217
|
}))));
|
|
216
218
|
};
|
|
217
219
|
|
|
218
|
-
var _path$
|
|
219
|
-
function _extends$
|
|
220
|
+
var _path$o, _g$n;
|
|
221
|
+
function _extends$o() { _extends$o = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$o.apply(this, arguments); }
|
|
220
222
|
var SvgBlock = function SvgBlock(props) {
|
|
221
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
223
|
+
return /*#__PURE__*/React.createElement("svg", _extends$o({
|
|
222
224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
223
225
|
width: 24,
|
|
224
226
|
height: 24,
|
|
@@ -233,10 +235,10 @@ var SvgBlock = function SvgBlock(props) {
|
|
|
233
235
|
style: {
|
|
234
236
|
maskType: "alpha"
|
|
235
237
|
}
|
|
236
|
-
}, _path$
|
|
238
|
+
}, _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
|
|
237
239
|
fill: "#D9D9D9",
|
|
238
240
|
d: "M0 0h24v24H0z"
|
|
239
|
-
}))), _g$
|
|
241
|
+
}))), _g$n || (_g$n = /*#__PURE__*/React.createElement("g", {
|
|
240
242
|
mask: "url(#block_svg__a)"
|
|
241
243
|
}, /*#__PURE__*/React.createElement("path", {
|
|
242
244
|
fill: "#42454B",
|
|
@@ -244,10 +246,10 @@ var SvgBlock = function SvgBlock(props) {
|
|
|
244
246
|
}))));
|
|
245
247
|
};
|
|
246
248
|
|
|
247
|
-
var _path$
|
|
248
|
-
function _extends$
|
|
249
|
+
var _path$n, _g$m;
|
|
250
|
+
function _extends$n() { _extends$n = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$n.apply(this, arguments); }
|
|
249
251
|
var SvgBlurOn = function SvgBlurOn(props) {
|
|
250
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
252
|
+
return /*#__PURE__*/React.createElement("svg", _extends$n({
|
|
251
253
|
xmlns: "http://www.w3.org/2000/svg",
|
|
252
254
|
width: 24,
|
|
253
255
|
height: 24,
|
|
@@ -262,10 +264,10 @@ var SvgBlurOn = function SvgBlurOn(props) {
|
|
|
262
264
|
style: {
|
|
263
265
|
maskType: "alpha"
|
|
264
266
|
}
|
|
265
|
-
}, _path$
|
|
267
|
+
}, _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
|
|
266
268
|
fill: "#D9D9D9",
|
|
267
269
|
d: "M0 0h24v24H0z"
|
|
268
|
-
}))), _g$
|
|
270
|
+
}))), _g$m || (_g$m = /*#__PURE__*/React.createElement("g", {
|
|
269
271
|
mask: "url(#blur_on_svg__a)"
|
|
270
272
|
}, /*#__PURE__*/React.createElement("path", {
|
|
271
273
|
fill: "#2C3336",
|
|
@@ -273,10 +275,10 @@ var SvgBlurOn = function SvgBlurOn(props) {
|
|
|
273
275
|
}))));
|
|
274
276
|
};
|
|
275
277
|
|
|
276
|
-
var _path$
|
|
277
|
-
function _extends$
|
|
278
|
+
var _path$m, _g$l;
|
|
279
|
+
function _extends$m() { _extends$m = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$m.apply(this, arguments); }
|
|
278
280
|
var SvgCached = function SvgCached(props) {
|
|
279
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
281
|
+
return /*#__PURE__*/React.createElement("svg", _extends$m({
|
|
280
282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
281
283
|
width: 24,
|
|
282
284
|
height: 24,
|
|
@@ -291,10 +293,10 @@ var SvgCached = function SvgCached(props) {
|
|
|
291
293
|
style: {
|
|
292
294
|
maskType: "alpha"
|
|
293
295
|
}
|
|
294
|
-
}, _path$
|
|
296
|
+
}, _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
|
|
295
297
|
fill: "#D9D9D9",
|
|
296
298
|
d: "M0 0h24v24H0z"
|
|
297
|
-
}))), _g$
|
|
299
|
+
}))), _g$l || (_g$l = /*#__PURE__*/React.createElement("g", {
|
|
298
300
|
mask: "url(#cached_svg__a)"
|
|
299
301
|
}, /*#__PURE__*/React.createElement("path", {
|
|
300
302
|
fill: "#2C3336",
|
|
@@ -302,6 +304,64 @@ var SvgCached = function SvgCached(props) {
|
|
|
302
304
|
}))));
|
|
303
305
|
};
|
|
304
306
|
|
|
307
|
+
var _path$l, _g$k;
|
|
308
|
+
function _extends$l() { _extends$l = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$l.apply(this, arguments); }
|
|
309
|
+
var SvgCheckbox = function SvgCheckbox(props) {
|
|
310
|
+
return /*#__PURE__*/React.createElement("svg", _extends$l({
|
|
311
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
312
|
+
width: 24,
|
|
313
|
+
height: 24,
|
|
314
|
+
fill: "none"
|
|
315
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
316
|
+
id: "checkbox_svg__a",
|
|
317
|
+
width: 24,
|
|
318
|
+
height: 24,
|
|
319
|
+
x: 0,
|
|
320
|
+
y: 0,
|
|
321
|
+
maskUnits: "userSpaceOnUse",
|
|
322
|
+
style: {
|
|
323
|
+
maskType: "alpha"
|
|
324
|
+
}
|
|
325
|
+
}, _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
|
|
326
|
+
fill: "#D9D9D9",
|
|
327
|
+
d: "M0 0h24v24H0z"
|
|
328
|
+
}))), _g$k || (_g$k = /*#__PURE__*/React.createElement("g", {
|
|
329
|
+
mask: "url(#checkbox_svg__a)"
|
|
330
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
331
|
+
fill: "#02BF6F",
|
|
332
|
+
d: "m10.6 13.4-2.15-2.15a.948.948 0 0 0-.7-.275.948.948 0 0 0-.7.275.948.948 0 0 0-.275.7c0 .283.092.517.275.7L9.9 15.5c.2.2.433.3.7.3.267 0 .5-.1.7-.3l5.65-5.65a.948.948 0 0 0 .275-.7.948.948 0 0 0-.275-.7.948.948 0 0 0-.7-.275.948.948 0 0 0-.7.275L10.6 13.4ZM5 21c-.55 0-1.02-.196-1.413-.587A1.926 1.926 0 0 1 3 19V5c0-.55.196-1.02.587-1.413A1.926 1.926 0 0 1 5 3h14c.55 0 1.02.196 1.413.587C20.803 3.98 21 4.45 21 5v14c0 .55-.196 1.02-.587 1.413A1.926 1.926 0 0 1 19 21H5Z"
|
|
333
|
+
}))));
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
var _path$k, _g$j;
|
|
337
|
+
function _extends$k() { _extends$k = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$k.apply(this, arguments); }
|
|
338
|
+
var SvgCheckboxUncheck = function SvgCheckboxUncheck(props) {
|
|
339
|
+
return /*#__PURE__*/React.createElement("svg", _extends$k({
|
|
340
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
341
|
+
width: 24,
|
|
342
|
+
height: 24,
|
|
343
|
+
fill: "none"
|
|
344
|
+
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
345
|
+
id: "checkbox_uncheck_svg__a",
|
|
346
|
+
width: 24,
|
|
347
|
+
height: 24,
|
|
348
|
+
x: 0,
|
|
349
|
+
y: 0,
|
|
350
|
+
maskUnits: "userSpaceOnUse",
|
|
351
|
+
style: {
|
|
352
|
+
maskType: "alpha"
|
|
353
|
+
}
|
|
354
|
+
}, _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
|
|
355
|
+
fill: "#D9D9D9",
|
|
356
|
+
d: "M0 0h24v24H0z"
|
|
357
|
+
}))), _g$j || (_g$j = /*#__PURE__*/React.createElement("g", {
|
|
358
|
+
mask: "url(#checkbox_uncheck_svg__a)"
|
|
359
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
360
|
+
fill: "#838B97",
|
|
361
|
+
d: "M5 21c-.55 0-1.02-.196-1.413-.587A1.926 1.926 0 0 1 3 19V5c0-.55.196-1.02.587-1.413A1.926 1.926 0 0 1 5 3h14c.55 0 1.02.196 1.413.587C20.803 3.98 21 4.45 21 5v14c0 .55-.196 1.02-.587 1.413A1.926 1.926 0 0 1 19 21H5Zm0-2h14V5H5v14Z"
|
|
362
|
+
}))));
|
|
363
|
+
};
|
|
364
|
+
|
|
305
365
|
var _path$j, _g$i;
|
|
306
366
|
function _extends$j() { _extends$j = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$j.apply(this, arguments); }
|
|
307
367
|
var SvgCheckCircle = function SvgCheckCircle(props) {
|
|
@@ -869,6 +929,8 @@ declare namespace index {
|
|
|
869
929
|
SvgBlurOn as BlurOnIcon,
|
|
870
930
|
SvgCached as CachedIcon,
|
|
871
931
|
SvgCheckCircle as CheckCircleIcon,
|
|
932
|
+
SvgCheckbox as CheckboxIcon,
|
|
933
|
+
SvgCheckboxUncheck as CheckboxUncheckIcon,
|
|
872
934
|
SvgClose as CloseIcon,
|
|
873
935
|
SvgDelete as DeleteIcon,
|
|
874
936
|
SvgInfo as InfoIcon,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "demio-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.28",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -45,9 +45,11 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@radix-ui/react-alert-dialog": "^1.0.4",
|
|
48
|
+
"@radix-ui/react-checkbox": "^1.0.4",
|
|
48
49
|
"@radix-ui/react-dialog": "^1.0.4",
|
|
49
50
|
"@radix-ui/react-label": "^2.0.2",
|
|
50
51
|
"@radix-ui/react-progress": "^1.0.3",
|
|
52
|
+
"@radix-ui/react-radio-group": "^1.1.3",
|
|
51
53
|
"@radix-ui/react-select": "^1.2.2",
|
|
52
54
|
"@radix-ui/react-switch": "^1.0.3",
|
|
53
55
|
"@radix-ui/react-tabs": "^1.0.4",
|