demio-ui 2.1.70 → 2.1.72
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 +3 -3
- package/dist/cjs/types/src/components/Input/Input.d.ts +1 -0
- package/dist/cjs/types/src/components/MultiSelect/MultiSelect.helper.d.ts +9 -0
- package/dist/cjs/types/src/components/Toast/Toast.d.ts +6 -0
- package/dist/cjs/types/src/components/Toast/index.d.ts +1 -0
- package/dist/cjs/types/src/icons/index.d.ts +2 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/types/src/components/Input/Input.d.ts +1 -0
- package/dist/esm/types/src/components/MultiSelect/MultiSelect.helper.d.ts +9 -0
- package/dist/esm/types/src/components/Toast/Toast.d.ts +6 -0
- package/dist/esm/types/src/components/Toast/index.d.ts +1 -0
- package/dist/esm/types/src/icons/index.d.ts +2 -1
- package/dist/types.d.ts +45 -33
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ type Props = {
|
|
|
24
24
|
startAdornment?: React.ReactNode;
|
|
25
25
|
type?: 'text' | 'password' | 'email' | 'number' | 'search' | 'tel' | 'url';
|
|
26
26
|
value?: string;
|
|
27
|
+
autoFocus?: boolean;
|
|
27
28
|
};
|
|
28
29
|
declare const Input: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
|
|
29
30
|
export default Input;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Toast';
|
|
@@ -6,6 +6,7 @@ import BlurOnIcon from './blur_on.svg';
|
|
|
6
6
|
import CachedIcon from './cached.svg';
|
|
7
7
|
import CalendarIcon from './calendar.svg';
|
|
8
8
|
import CalendarStarIcon from './calendar_star.svg';
|
|
9
|
+
import ChatIcon from './chat_icon.svg';
|
|
9
10
|
import CheckCircleIcon from './check_circle.svg';
|
|
10
11
|
import CheckCircleSolidIcon from './check-circle-solid.svg';
|
|
11
12
|
import CheckboxIcon from './checkbox.svg';
|
|
@@ -67,4 +68,4 @@ import VolumeUpSolidIcon from './volume_up.svg';
|
|
|
67
68
|
import VolumeUpIcon from './volume_up-1.svg';
|
|
68
69
|
import WarningSolidIcon from './warning.svg';
|
|
69
70
|
import WarningIcon from './warning-1.svg';
|
|
70
|
-
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BarChartIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, CheckCircleSolidIcon, ClockIcon, CloseIcon, CopyIcon, CustomizeIcon, DeleteIcon, DotsIcon, EditIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, ExternalLinkIcon, FileIcon, FilterListIcon, InfoCircleIcon, InfoCircleSolidIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, ListThIcon, LocationIcon, LockIcon, MagicIcon, MailIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeCrossedIcon, PasswordEyeIcon, Person, PlayIcon, PollIcon, ProgressIcon, ReplayDisabledIcon, RocketIcon, SearchIcon, SmileIcon, StackedEmailIcon, SyncIcon, TimesCircleIcon, TodayIcon, TrendingDownIcon, TrendingUpIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
|
71
|
+
export { AddIcon, ArrowDownIcon, ArrowLeftIcon, BarChartIcon, BlockIcon, BlurOnIcon, CachedIcon, CalendarIcon, CalendarStarIcon, ChatIcon, CheckboxIcon, CheckboxUncheckIcon, CheckCircleIcon, CheckCircleSolidIcon, ClockIcon, CloseIcon, CopyIcon, CustomizeIcon, DeleteIcon, DotsIcon, EditIcon, ElectricBoltIcon, EventDetailsIcon, EventRepeatIcon, ExclamationIcon, ExternalLinkIcon, FileIcon, FilterListIcon, InfoCircleIcon, InfoCircleSolidIcon, InfoIcon, InfoSolidIcon, ItemsIcon, ListIcon, ListThIcon, LocationIcon, LockIcon, MagicIcon, MailIcon, MaterialsIcon, MicOffIcon, MicOffSolidIcon, MicOnfIcon, MicOnSolidIcon, PasswordEyeCrossedIcon, PasswordEyeIcon, Person, PlayIcon, PollIcon, ProgressIcon, ReplayDisabledIcon, RocketIcon, SearchIcon, SmileIcon, StackedEmailIcon, SyncIcon, TimesCircleIcon, TodayIcon, TrendingDownIcon, TrendingUpIcon, VideoCamOffIcon, VideoCamOffSolidIcon, VideoCamOnIcon, VideoCamOnSolidIcon, VolumeOffIcon, VolumeOffSolidIcon, VolumeUpIcon, VolumeUpSolidIcon, WarningIcon, WarningSolidIcon, };
|
package/dist/types.d.ts
CHANGED
|
@@ -178,6 +178,7 @@ type Props$a = {
|
|
|
178
178
|
startAdornment?: React__default.ReactNode;
|
|
179
179
|
type?: 'text' | 'password' | 'email' | 'number' | 'search' | 'tel' | 'url';
|
|
180
180
|
value?: string;
|
|
181
|
+
autoFocus?: boolean;
|
|
181
182
|
};
|
|
182
183
|
declare const Input: React__default.ForwardRefExoticComponent<Props$a & React__default.RefAttributes<HTMLInputElement>>;
|
|
183
184
|
|
|
@@ -401,10 +402,10 @@ interface TypoProps extends PropsWithChildren {
|
|
|
401
402
|
}
|
|
402
403
|
declare const Typography: ({ tag, dataTestId, align, className, children, emphasis, title, variant, ...restProps }: TypoProps) => React__default.JSX.Element;
|
|
403
404
|
|
|
404
|
-
var _path$
|
|
405
|
-
function _extends$
|
|
405
|
+
var _path$15, _g$t;
|
|
406
|
+
function _extends$15() { _extends$15 = 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$15.apply(this, arguments); }
|
|
406
407
|
var SvgAdd = function SvgAdd(props) {
|
|
407
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
408
|
+
return /*#__PURE__*/React.createElement("svg", _extends$15({
|
|
408
409
|
xmlns: "http://www.w3.org/2000/svg",
|
|
409
410
|
width: 24,
|
|
410
411
|
height: 24,
|
|
@@ -419,7 +420,7 @@ var SvgAdd = function SvgAdd(props) {
|
|
|
419
420
|
style: {
|
|
420
421
|
maskType: "alpha"
|
|
421
422
|
}
|
|
422
|
-
}, _path$
|
|
423
|
+
}, _path$15 || (_path$15 = /*#__PURE__*/React.createElement("path", {
|
|
423
424
|
fill: "#D9D9D9",
|
|
424
425
|
d: "M0 0h24v24H0z"
|
|
425
426
|
}))), _g$t || (_g$t = /*#__PURE__*/React.createElement("g", {
|
|
@@ -430,36 +431,36 @@ var SvgAdd = function SvgAdd(props) {
|
|
|
430
431
|
}))));
|
|
431
432
|
};
|
|
432
433
|
|
|
433
|
-
var _path$
|
|
434
|
-
function _extends$
|
|
434
|
+
var _path$14;
|
|
435
|
+
function _extends$14() { _extends$14 = 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$14.apply(this, arguments); }
|
|
435
436
|
var SvgArrowLeft = function SvgArrowLeft(props) {
|
|
436
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
437
|
+
return /*#__PURE__*/React.createElement("svg", _extends$14({
|
|
437
438
|
xmlns: "http://www.w3.org/2000/svg",
|
|
438
439
|
fill: "none",
|
|
439
440
|
viewBox: "0 0 24 24"
|
|
440
|
-
}, props), _path$
|
|
441
|
+
}, props), _path$14 || (_path$14 = /*#__PURE__*/React.createElement("path", {
|
|
441
442
|
fill: "#2C3336",
|
|
442
443
|
d: "m12.277 22.093.928-.928a.56.56 0 0 0 0-.796l-7.272-7.271h16.005c.31 0 .562-.252.562-.563v-1.312a.563.563 0 0 0-.562-.563H5.933l7.272-7.272a.56.56 0 0 0 0-.795l-.928-.928a.563.563 0 0 0-.796 0L1.665 11.48a.563.563 0 0 0 0 .796l9.816 9.816c.22.22.576.22.796 0"
|
|
443
444
|
})));
|
|
444
445
|
};
|
|
445
446
|
|
|
446
|
-
var _path$
|
|
447
|
-
function _extends$
|
|
447
|
+
var _path$13;
|
|
448
|
+
function _extends$13() { _extends$13 = 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$13.apply(this, arguments); }
|
|
448
449
|
var SvgBarChart = function SvgBarChart(props) {
|
|
449
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
450
|
+
return /*#__PURE__*/React.createElement("svg", _extends$13({
|
|
450
451
|
xmlns: "http://www.w3.org/2000/svg",
|
|
451
452
|
fill: "none",
|
|
452
453
|
viewBox: "0 0 24 24"
|
|
453
|
-
}, props), _path$
|
|
454
|
+
}, props), _path$13 || (_path$13 = /*#__PURE__*/React.createElement("path", {
|
|
454
455
|
fill: "#000",
|
|
455
456
|
d: "M3 21a.97.97 0 0 1-.712-.288A.97.97 0 0 1 2 20q0-.424.288-.712A.97.97 0 0 1 3 19h18q.424 0 .712.288.288.287.288.712 0 .424-.288.712A.97.97 0 0 1 21 21zm1.5-3q-.625 0-1.062-.437A1.45 1.45 0 0 1 3 16.5v-4q0-.625.438-1.062A1.45 1.45 0 0 1 4.5 11q.624 0 1.063.438Q6 11.875 6 12.5v4q0 .625-.437 1.063A1.45 1.45 0 0 1 4.5 18m5 0q-.625 0-1.062-.437A1.45 1.45 0 0 1 8 16.5v-9q0-.625.438-1.062A1.45 1.45 0 0 1 9.5 6q.624 0 1.063.438Q11 6.874 11 7.5v9q0 .625-.437 1.063A1.45 1.45 0 0 1 9.5 18m5 0q-.625 0-1.062-.437A1.45 1.45 0 0 1 13 16.5v-6q0-.625.438-1.062A1.45 1.45 0 0 1 14.5 9q.624 0 1.063.438Q16 9.874 16 10.5v6q0 .625-.437 1.063A1.45 1.45 0 0 1 14.5 18m5 0q-.625 0-1.062-.437A1.45 1.45 0 0 1 18 16.5v-12q0-.625.438-1.062A1.45 1.45 0 0 1 19.5 3q.625 0 1.063.438Q21 3.874 21 4.5v12q0 .625-.437 1.063A1.45 1.45 0 0 1 19.5 18"
|
|
456
457
|
})));
|
|
457
458
|
};
|
|
458
459
|
|
|
459
|
-
var _path$
|
|
460
|
-
function _extends$
|
|
460
|
+
var _path$12, _g$s;
|
|
461
|
+
function _extends$12() { _extends$12 = 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$12.apply(this, arguments); }
|
|
461
462
|
var SvgBlock = function SvgBlock(props) {
|
|
462
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
463
|
+
return /*#__PURE__*/React.createElement("svg", _extends$12({
|
|
463
464
|
xmlns: "http://www.w3.org/2000/svg",
|
|
464
465
|
fill: "none",
|
|
465
466
|
viewBox: "0 0 24 24"
|
|
@@ -469,7 +470,7 @@ var SvgBlock = function SvgBlock(props) {
|
|
|
469
470
|
style: {
|
|
470
471
|
maskType: "alpha"
|
|
471
472
|
}
|
|
472
|
-
}, _path$
|
|
473
|
+
}, _path$12 || (_path$12 = /*#__PURE__*/React.createElement("path", {
|
|
473
474
|
fill: "#D9D9D9",
|
|
474
475
|
d: "M0 0h24v24H0z"
|
|
475
476
|
}))), _g$s || (_g$s = /*#__PURE__*/React.createElement("g", {
|
|
@@ -480,10 +481,10 @@ var SvgBlock = function SvgBlock(props) {
|
|
|
480
481
|
}))));
|
|
481
482
|
};
|
|
482
483
|
|
|
483
|
-
var _path$
|
|
484
|
-
function _extends$
|
|
484
|
+
var _path$11, _g$r;
|
|
485
|
+
function _extends$11() { _extends$11 = 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$11.apply(this, arguments); }
|
|
485
486
|
var SvgBlurOn = function SvgBlurOn(props) {
|
|
486
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
487
|
+
return /*#__PURE__*/React.createElement("svg", _extends$11({
|
|
487
488
|
xmlns: "http://www.w3.org/2000/svg",
|
|
488
489
|
width: 24,
|
|
489
490
|
height: 24,
|
|
@@ -498,7 +499,7 @@ var SvgBlurOn = function SvgBlurOn(props) {
|
|
|
498
499
|
style: {
|
|
499
500
|
maskType: "alpha"
|
|
500
501
|
}
|
|
501
|
-
}, _path$
|
|
502
|
+
}, _path$11 || (_path$11 = /*#__PURE__*/React.createElement("path", {
|
|
502
503
|
fill: "#D9D9D9",
|
|
503
504
|
d: "M0 0h24v24H0z"
|
|
504
505
|
}))), _g$r || (_g$r = /*#__PURE__*/React.createElement("g", {
|
|
@@ -509,10 +510,10 @@ var SvgBlurOn = function SvgBlurOn(props) {
|
|
|
509
510
|
}))));
|
|
510
511
|
};
|
|
511
512
|
|
|
512
|
-
var _path
|
|
513
|
-
function _extends
|
|
513
|
+
var _path$10, _g$q;
|
|
514
|
+
function _extends$10() { _extends$10 = 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$10.apply(this, arguments); }
|
|
514
515
|
var SvgCached = function SvgCached(props) {
|
|
515
|
-
return /*#__PURE__*/React.createElement("svg", _extends
|
|
516
|
+
return /*#__PURE__*/React.createElement("svg", _extends$10({
|
|
516
517
|
xmlns: "http://www.w3.org/2000/svg",
|
|
517
518
|
width: 24,
|
|
518
519
|
height: 24,
|
|
@@ -527,7 +528,7 @@ var SvgCached = function SvgCached(props) {
|
|
|
527
528
|
style: {
|
|
528
529
|
maskType: "alpha"
|
|
529
530
|
}
|
|
530
|
-
}, _path
|
|
531
|
+
}, _path$10 || (_path$10 = /*#__PURE__*/React.createElement("path", {
|
|
531
532
|
fill: "#D9D9D9",
|
|
532
533
|
d: "M0 0h24v24H0z"
|
|
533
534
|
}))), _g$q || (_g$q = /*#__PURE__*/React.createElement("g", {
|
|
@@ -538,10 +539,10 @@ var SvgCached = function SvgCached(props) {
|
|
|
538
539
|
}))));
|
|
539
540
|
};
|
|
540
541
|
|
|
541
|
-
var _path
|
|
542
|
-
function _extends
|
|
542
|
+
var _path$$, _g$p;
|
|
543
|
+
function _extends$$() { _extends$$ = 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$$.apply(this, arguments); }
|
|
543
544
|
var SvgCalendar = function SvgCalendar(props) {
|
|
544
|
-
return /*#__PURE__*/React.createElement("svg", _extends
|
|
545
|
+
return /*#__PURE__*/React.createElement("svg", _extends$$({
|
|
545
546
|
xmlns: "http://www.w3.org/2000/svg",
|
|
546
547
|
width: 24,
|
|
547
548
|
height: 24,
|
|
@@ -557,7 +558,7 @@ var SvgCalendar = function SvgCalendar(props) {
|
|
|
557
558
|
style: {
|
|
558
559
|
maskType: "alpha"
|
|
559
560
|
}
|
|
560
|
-
}, _path
|
|
561
|
+
}, _path$$ || (_path$$ = /*#__PURE__*/React.createElement("path", {
|
|
561
562
|
fill: "#D9D9D9",
|
|
562
563
|
d: "M0 0h32v32H0z"
|
|
563
564
|
}))), _g$p || (_g$p = /*#__PURE__*/React.createElement("g", {
|
|
@@ -568,14 +569,14 @@ var SvgCalendar = function SvgCalendar(props) {
|
|
|
568
569
|
}))));
|
|
569
570
|
};
|
|
570
571
|
|
|
571
|
-
var _path$
|
|
572
|
-
function _extends$
|
|
572
|
+
var _path$_, _path2$3;
|
|
573
|
+
function _extends$_() { _extends$_ = 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$_.apply(this, arguments); }
|
|
573
574
|
var SvgCalendarStar = function SvgCalendarStar(props) {
|
|
574
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
575
|
+
return /*#__PURE__*/React.createElement("svg", _extends$_({
|
|
575
576
|
xmlns: "http://www.w3.org/2000/svg",
|
|
576
577
|
fill: "none",
|
|
577
578
|
viewBox: "0 0 24 24"
|
|
578
|
-
}, props), _path$
|
|
579
|
+
}, props), _path$_ || (_path$_ = /*#__PURE__*/React.createElement("path", {
|
|
579
580
|
fill: "#2C3336",
|
|
580
581
|
d: "M1.2 9v12.75A2.25 2.25 0 0 0 3.45 24h16.5a2.25 2.25 0 0 0 2.25-2.25V9zm15.194 6.652a.56.56 0 0 1-.166.323l-1.856 1.81.44 2.559a.564.564 0 0 1-.815.59L11.7 19.725l-2.292 1.21a.563.563 0 0 1-.816-.591l.44-2.56-1.855-1.809a.562.562 0 0 1 .309-.96l2.564-.376 1.148-2.325a.562.562 0 0 1 1.008 0l1.149 2.325 2.564.375a.56.56 0 0 1 .474.638M15.45 6h1.5a.75.75 0 0 0 .75-.75V.75a.75.75 0 0 0-.75-.75h-1.5a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 .75.75m-9 0h1.5a.75.75 0 0 0 .75-.75V.75A.75.75 0 0 0 7.95 0h-1.5a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 .75.75",
|
|
581
582
|
opacity: 0.4
|
|
@@ -585,6 +586,17 @@ var SvgCalendarStar = function SvgCalendarStar(props) {
|
|
|
585
586
|
})));
|
|
586
587
|
};
|
|
587
588
|
|
|
589
|
+
var _path$Z;
|
|
590
|
+
function _extends$Z() { _extends$Z = 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$Z.apply(this, arguments); }
|
|
591
|
+
var SvgChatIcon = function SvgChatIcon(props) {
|
|
592
|
+
return /*#__PURE__*/React.createElement("svg", _extends$Z({
|
|
593
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
594
|
+
viewBox: "0 0 24 24"
|
|
595
|
+
}, props), _path$Z || (_path$Z = /*#__PURE__*/React.createElement("path", {
|
|
596
|
+
d: "M17.333 10.333V3.667A2.67 2.67 0 0 0 14.667 1h-12A2.67 2.67 0 0 0 0 3.667v6.666A2.67 2.67 0 0 0 2.667 13v2.258c0 .334.379.525.646.325l3.45-2.587h7.904a2.663 2.663 0 0 0 2.666-2.663m4-2.666h-2.666v2.666c0 2.204-1.796 4-4 4H8V17a2.67 2.67 0 0 0 2.667 2.667h5.237l3.45 2.587c.267.2.646.008.646-.325v-2.262h1.333A2.67 2.67 0 0 0 24 17v-6.667a2.67 2.67 0 0 0-2.667-2.666"
|
|
597
|
+
})));
|
|
598
|
+
};
|
|
599
|
+
|
|
588
600
|
var _path$Y, _g$o;
|
|
589
601
|
function _extends$Y() { _extends$Y = 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$Y.apply(this, arguments); }
|
|
590
602
|
var SvgCheckCircle = function SvgCheckCircle(props) {
|
|
@@ -1799,7 +1811,7 @@ var SvgWarning1 = function SvgWarning1(props) {
|
|
|
1799
1811
|
};
|
|
1800
1812
|
|
|
1801
1813
|
declare namespace index {
|
|
1802
|
-
export { SvgAdd as AddIcon, SvgKeyboardArrowDown as ArrowDownIcon, SvgArrowLeft as ArrowLeftIcon, SvgBarChart as BarChartIcon, SvgBlock as BlockIcon, SvgBlurOn as BlurOnIcon, SvgCached as CachedIcon, SvgCalendar as CalendarIcon, SvgCalendarStar as CalendarStarIcon, SvgCheckCircle as CheckCircleIcon, SvgCheckCircleSolid as CheckCircleSolidIcon, SvgCheckbox as CheckboxIcon, SvgCheckboxUncheck as CheckboxUncheckIcon, SvgClock as ClockIcon, SvgClose as CloseIcon, SvgCopy as CopyIcon, SvgCustomize as CustomizeIcon, SvgDelete as DeleteIcon, SvgDots as DotsIcon, SvgEdit as EditIcon, SvgElectricBolt as ElectricBoltIcon, SvgEventDetails as EventDetailsIcon, SvgEventRepeat as EventRepeatIcon, SvgExclamation as ExclamationIcon, SvgExternalLink as ExternalLinkIcon, SvgFile as FileIcon, SvgFilterList as FilterListIcon, SvgInfoCircle as InfoCircleIcon, SvgInfoCircleSolid as InfoCircleSolidIcon, SvgInfo as InfoIcon, SvgInfo1 as InfoSolidIcon, SvgItems as ItemsIcon, SvgList as ListIcon, SvgListTh as ListThIcon, SvgLocation as LocationIcon, SvgLock as LockIcon, SvgMagic as MagicIcon, SvgMail as MailIcon, SvgMaterials as MaterialsIcon, SvgMicOff1 as MicOffIcon, SvgMicOff as MicOffSolidIcon, SvgMic1 as MicOnSolidIcon, SvgMic as MicOnfIcon, SvgPasswordEyeCrossed as PasswordEyeCrossedIcon, SvgPasswordEye as PasswordEyeIcon, SvgPerson as Person, SvgPlay as PlayIcon, SvgPoll as PollIcon, SvgProgress as ProgressIcon, SvgReplayDisabled as ReplayDisabledIcon, SvgRocket as RocketIcon, SvgSearch as SearchIcon, SvgSmile as SmileIcon, SvgStackedEmail as StackedEmailIcon, SvgSync as SyncIcon, SvgTimesCircle as TimesCircleIcon, SvgToday as TodayIcon, SvgTrendingDown as TrendingDownIcon, SvgTrendingUp as TrendingUpIcon, SvgVideocamOff as VideoCamOffIcon, SvgVideocamOff1 as VideoCamOffSolidIcon, SvgVideocam as VideoCamOnIcon, SvgVideocam1 as VideoCamOnSolidIcon, SvgVolumeOff1 as VolumeOffIcon, SvgVolumeOff as VolumeOffSolidIcon, SvgVolumeUp1 as VolumeUpIcon, SvgVolumeUp as VolumeUpSolidIcon, SvgWarning1 as WarningIcon, SvgWarning as WarningSolidIcon };
|
|
1814
|
+
export { SvgAdd as AddIcon, SvgKeyboardArrowDown as ArrowDownIcon, SvgArrowLeft as ArrowLeftIcon, SvgBarChart as BarChartIcon, SvgBlock as BlockIcon, SvgBlurOn as BlurOnIcon, SvgCached as CachedIcon, SvgCalendar as CalendarIcon, SvgCalendarStar as CalendarStarIcon, SvgChatIcon as ChatIcon, SvgCheckCircle as CheckCircleIcon, SvgCheckCircleSolid as CheckCircleSolidIcon, SvgCheckbox as CheckboxIcon, SvgCheckboxUncheck as CheckboxUncheckIcon, SvgClock as ClockIcon, SvgClose as CloseIcon, SvgCopy as CopyIcon, SvgCustomize as CustomizeIcon, SvgDelete as DeleteIcon, SvgDots as DotsIcon, SvgEdit as EditIcon, SvgElectricBolt as ElectricBoltIcon, SvgEventDetails as EventDetailsIcon, SvgEventRepeat as EventRepeatIcon, SvgExclamation as ExclamationIcon, SvgExternalLink as ExternalLinkIcon, SvgFile as FileIcon, SvgFilterList as FilterListIcon, SvgInfoCircle as InfoCircleIcon, SvgInfoCircleSolid as InfoCircleSolidIcon, SvgInfo as InfoIcon, SvgInfo1 as InfoSolidIcon, SvgItems as ItemsIcon, SvgList as ListIcon, SvgListTh as ListThIcon, SvgLocation as LocationIcon, SvgLock as LockIcon, SvgMagic as MagicIcon, SvgMail as MailIcon, SvgMaterials as MaterialsIcon, SvgMicOff1 as MicOffIcon, SvgMicOff as MicOffSolidIcon, SvgMic1 as MicOnSolidIcon, SvgMic as MicOnfIcon, SvgPasswordEyeCrossed as PasswordEyeCrossedIcon, SvgPasswordEye as PasswordEyeIcon, SvgPerson as Person, SvgPlay as PlayIcon, SvgPoll as PollIcon, SvgProgress as ProgressIcon, SvgReplayDisabled as ReplayDisabledIcon, SvgRocket as RocketIcon, SvgSearch as SearchIcon, SvgSmile as SmileIcon, SvgStackedEmail as StackedEmailIcon, SvgSync as SyncIcon, SvgTimesCircle as TimesCircleIcon, SvgToday as TodayIcon, SvgTrendingDown as TrendingDownIcon, SvgTrendingUp as TrendingUpIcon, SvgVideocamOff as VideoCamOffIcon, SvgVideocamOff1 as VideoCamOffSolidIcon, SvgVideocam as VideoCamOnIcon, SvgVideocam1 as VideoCamOnSolidIcon, SvgVolumeOff1 as VolumeOffIcon, SvgVolumeOff as VolumeOffSolidIcon, SvgVolumeUp1 as VolumeUpIcon, SvgVolumeUp as VolumeUpSolidIcon, SvgWarning1 as WarningIcon, SvgWarning as WarningSolidIcon };
|
|
1803
1815
|
}
|
|
1804
1816
|
|
|
1805
1817
|
export { Alert, Avatar, Badge, Button$1 as Button, Button as ButtonNew, Card, Checkbox, Drawer, Dropdown, DropdownItem, FormGroup, InfoBanner, Input, InputHint, Label, Loader, Modal, MultiSelect, Popover, Progress, RadioGroup, Select, SelectItem, SelectItemText, Switch, Tab, TabsContent, TabsList, TabsRoot, Tag, Tooltip, Typography, index as icons };
|