@luscii-healthtech/web-ui 20.5.6 → 20.6.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/dist/components/Icons/BrushIcon.d.ts +4 -0
- package/dist/components/Icons/EarthIcon.d.ts +4 -0
- package/dist/components/Icons/LogInIcon.d.ts +4 -0
- package/dist/components/Icons/TreeIcon.d.ts +4 -0
- package/dist/components/Icons/index.d.ts +4 -0
- package/dist/index.development.js +38 -2
- package/dist/index.development.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./special-icons";
|
|
2
2
|
export { default as BellIcon } from "./BellIcon";
|
|
3
3
|
export { default as BluetoothIcon } from "./BluetoothIcon";
|
|
4
|
+
export { default as BrushIcon } from "./BrushIcon";
|
|
4
5
|
export { default as CalendarDayIcon } from "./CalendarDayIcon";
|
|
5
6
|
export { default as CalendarMonthIcon } from "./CalendarMonthIcon";
|
|
6
7
|
export { default as CalendarRepeatIcon } from "./CalendarRepeatIcon";
|
|
@@ -21,6 +22,7 @@ export { default as CrossInCircleIcon } from "./CrossInCircleIcon";
|
|
|
21
22
|
export { default as CrossInFilledCircleIcon } from "./CrossInFilledCircleIcon";
|
|
22
23
|
export { default as DatabaseIcon } from "./DatabaseIcon";
|
|
23
24
|
export { default as DragIndicatorIcon } from "./DragIndicatorIcon";
|
|
25
|
+
export { default as EarthIcon } from "./EarthIcon";
|
|
24
26
|
export { default as EmailIcon } from "./EmailIcon";
|
|
25
27
|
export { default as EmptyIcon } from "./EmptyIcon";
|
|
26
28
|
export { default as ExclamationMarkIcon } from "./ExclamationMarkIcon";
|
|
@@ -44,6 +46,7 @@ export { default as LifebuoyIcon } from "./LifebuoyIcon";
|
|
|
44
46
|
export { default as LightBulbIcon } from "./LightBulbIcon";
|
|
45
47
|
export { default as LinkIcon } from "./LinkIcon";
|
|
46
48
|
export { default as LockIcon } from "./LockIcon";
|
|
49
|
+
export { default as LogInIcon } from "./LogInIcon";
|
|
47
50
|
export { default as LogOutIcon } from "./LogOutIcon";
|
|
48
51
|
export { default as MessageWithArrowIcon } from "./MessageWithArrowIcon";
|
|
49
52
|
export { default as MoreIcon } from "./MoreIcon";
|
|
@@ -66,6 +69,7 @@ export { default as SmallDiamondIcon } from "./SmallDiamondIcon";
|
|
|
66
69
|
export { default as SmallSquareIcon } from "./SmallSquareIcon";
|
|
67
70
|
export { default as StarIcon } from "./StarIcon";
|
|
68
71
|
export { default as TrashBinIcon } from "./TrashBinIcon";
|
|
72
|
+
export { default as TreeIcon } from "./TreeIcon";
|
|
69
73
|
/**
|
|
70
74
|
* These exports are to ensure backwards compatibility with the
|
|
71
75
|
* old icon names, until we are ready to make the breaking change
|
|
@@ -295,6 +295,13 @@ const SvgBluetoothIcon = (props) => React__namespace.default.createElement(
|
|
|
295
295
|
);
|
|
296
296
|
var BluetoothIcon = IconWrapper(SvgBluetoothIcon);
|
|
297
297
|
|
|
298
|
+
const SvgBrushIcon = (props) => React__namespace.default.createElement(
|
|
299
|
+
"svg",
|
|
300
|
+
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
301
|
+
React__namespace.default.createElement("path", { fill: "currentColor", d: "M6.192 20.308a4.107 4.107 0 0 1-1.697-.377 4.066 4.066 0 0 1-1.399-1.008c.382-.109.744-.34 1.085-.695.34-.355.511-.828.511-1.42 0-.699.242-1.29.726-1.774a2.413 2.413 0 0 1 1.774-.726c.699 0 1.29.242 1.774.726s.726 1.075.726 1.774c0 .962-.342 1.786-1.028 2.471-.685.686-1.51 1.029-2.472 1.029Zm0-1.5c.55 0 1.021-.196 1.413-.588.391-.392.587-.862.587-1.412a.967.967 0 0 0-.287-.713.967.967 0 0 0-.713-.287.967.967 0 0 0-.712.287.967.967 0 0 0-.288.713c0 .383-.046.733-.137 1.05a4.73 4.73 0 0 1-.363.9.67.67 0 0 0 .25.05h.25ZM11.5 14.75l-2.23-2.23 8.565-8.566a.977.977 0 0 1 .687-.288.93.93 0 0 1 .713.288l.83.83c.2.2.3.434.3.7 0 .267-.1.5-.3.7L11.5 14.75Z" })
|
|
302
|
+
);
|
|
303
|
+
var BrushIcon = IconWrapper(SvgBrushIcon);
|
|
304
|
+
|
|
298
305
|
const SvgCalendarDayIcon = (props) => React__namespace.default.createElement(
|
|
299
306
|
"svg",
|
|
300
307
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
@@ -436,6 +443,13 @@ const SvgDragIndicatorIcon = (props) => React__namespace.default.createElement(
|
|
|
436
443
|
);
|
|
437
444
|
var DragIndicatorIcon = IconWrapper(SvgDragIndicatorIcon);
|
|
438
445
|
|
|
446
|
+
const SvgEarthIcon = (props) => React__namespace.default.createElement(
|
|
447
|
+
"svg",
|
|
448
|
+
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
449
|
+
React__namespace.default.createElement("path", { fill: "currentColor", d: "M12.002 21.5a9.255 9.255 0 0 1-3.705-.748 9.596 9.596 0 0 1-3.018-2.03 9.591 9.591 0 0 1-2.03-3.016 9.245 9.245 0 0 1-.749-3.704c0-1.314.25-2.55.748-3.705a9.597 9.597 0 0 1 2.03-3.017 9.592 9.592 0 0 1 3.016-2.032 9.245 9.245 0 0 1 3.704-.748c1.314 0 2.55.25 3.705.748a9.597 9.597 0 0 1 3.018 2.03 9.592 9.592 0 0 1 2.03 3.016 9.245 9.245 0 0 1 .749 3.704c0 1.314-.25 2.55-.748 3.705a9.597 9.597 0 0 1-2.03 3.018 9.592 9.592 0 0 1-3.016 2.03 9.247 9.247 0 0 1-3.704.749ZM11 19.95V18c-.55 0-1.02-.196-1.413-.587A1.926 1.926 0 0 1 9 16v-1l-4.8-4.8c-.05.3-.096.6-.138.9-.041.3-.062.6-.062.9 0 2.017.662 3.783 1.987 5.3 1.325 1.517 2.996 2.4 5.013 2.65Zm6.9-2.55c.333-.367.633-.762.9-1.188a7.45 7.45 0 0 0 .662-1.325c.175-.458.309-.929.4-1.412.092-.483.138-.975.138-1.475a7.904 7.904 0 0 0-1.358-4.488A7.656 7.656 0 0 0 15 4.58V5c0 .55-.196 1.02-.588 1.413A1.926 1.926 0 0 1 13 7h-2v2c0 .283-.096.52-.287.713A.968.968 0 0 1 10 10H8v2h6c.283 0 .52.096.713.287.191.192.287.43.287.713v3h1c.433 0 .825.13 1.175.387.35.259.592.596.725 1.013Z" })
|
|
450
|
+
);
|
|
451
|
+
var EarthIcon = IconWrapper(SvgEarthIcon);
|
|
452
|
+
|
|
439
453
|
const SvgEmailIcon = (props) => React__namespace.default.createElement(
|
|
440
454
|
"svg",
|
|
441
455
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
@@ -598,6 +612,13 @@ const SvgLockIcon = (props) => React__namespace.default.createElement(
|
|
|
598
612
|
);
|
|
599
613
|
var LockIcon = IconWrapper(SvgLockIcon);
|
|
600
614
|
|
|
615
|
+
const SvgLogInIcon = (props) => React__namespace.default.createElement(
|
|
616
|
+
"svg",
|
|
617
|
+
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
618
|
+
React__namespace.default.createElement("path", { fill: "currentColor", d: "M12.74 20.5a.726.726 0 0 1-.534-.215.726.726 0 0 1-.216-.535c0-.213.072-.391.216-.535A.726.726 0 0 1 12.74 19h5.952a.294.294 0 0 0 .212-.096.294.294 0 0 0 .096-.212V5.308a.294.294 0 0 0-.096-.212.294.294 0 0 0-.212-.096H12.74a.726.726 0 0 1-.534-.215.726.726 0 0 1-.216-.535c0-.213.072-.391.216-.535a.726.726 0 0 1 .534-.215h5.952c.505 0 .933.175 1.283.525.35.35.525.778.525 1.283v13.384c0 .505-.175.933-.525 1.283-.35.35-.778.525-1.283.525H12.74Zm-.71-7.75H4.25a.726.726 0 0 1-.535-.215A.726.726 0 0 1 3.5 12a.73.73 0 0 1 .215-.535.726.726 0 0 1 .535-.215h7.78l-1.922-1.923a.707.707 0 0 1-.213-.507.739.739 0 0 1 .213-.531.72.72 0 0 1 .527-.24.716.716 0 0 1 .542.224l3.094 3.094c.18.181.271.392.271.633s-.09.452-.27.633l-3.095 3.094a.714.714 0 0 1-.53.22.752.752 0 0 1-.54-.236.731.731 0 0 1-.209-.534.736.736 0 0 1 .225-.52l1.908-1.907Z" })
|
|
619
|
+
);
|
|
620
|
+
var LogInIcon = IconWrapper(SvgLogInIcon);
|
|
621
|
+
|
|
601
622
|
const SvgLogOutIcon = (props) => React__namespace.default.createElement(
|
|
602
623
|
"svg",
|
|
603
624
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
@@ -755,12 +776,20 @@ const SvgTrashBinIcon = (props) => React__namespace.default.createElement(
|
|
|
755
776
|
);
|
|
756
777
|
var DeleteIcon = IconWrapper(SvgTrashBinIcon);
|
|
757
778
|
|
|
779
|
+
const SvgTreeIcon = (props) => React__namespace.default.createElement(
|
|
780
|
+
"svg",
|
|
781
|
+
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
782
|
+
React__namespace.default.createElement("path", { fill: "currentColor", d: "M10.53 17.5H5.636c-.359 0-.628-.159-.807-.477a.817.817 0 0 1 .043-.929l3.07-4.594h-.238a.86.86 0 0 1-.808-.485c-.174-.323-.154-.635.06-.936l4.296-6.154a.92.92 0 0 1 .344-.288.93.93 0 0 1 .406-.098.91.91 0 0 1 .405.098.925.925 0 0 1 .341.288l4.296 6.154c.214.301.234.613.06.936a.86.86 0 0 1-.808.485h-.238l3.07 4.594a.818.818 0 0 1 .044.93c-.18.317-.448.476-.807.476H13.47v3.135c0 .245-.083.45-.249.616a.838.838 0 0 1-.616.249h-1.17a.874.874 0 0 1-.643-.26.875.875 0 0 1-.26-.644V17.5ZM6.75 16h4-1.9 6.3-1.9 4-10.5Zm0 0h10.5l-4-6h1.9L12 5.5 8.85 10h1.9l-4 6Z" })
|
|
783
|
+
);
|
|
784
|
+
var TreeIcon = IconWrapper(SvgTreeIcon);
|
|
785
|
+
|
|
758
786
|
var Icons = /*#__PURE__*/Object.freeze({
|
|
759
787
|
__proto__: null,
|
|
760
788
|
AddIcon: AddIcon,
|
|
761
789
|
AlertsIcon: BellIcon,
|
|
762
790
|
BellIcon: BellIcon,
|
|
763
791
|
BluetoothIcon: BluetoothIcon,
|
|
792
|
+
BrushIcon: BrushIcon,
|
|
764
793
|
CalendarDayIcon: CalendarDayIcon,
|
|
765
794
|
CalendarMonthIcon: CalendarMonthIcon,
|
|
766
795
|
CalendarRepeatIcon: CalendarRepeatIcon,
|
|
@@ -787,6 +816,7 @@ var Icons = /*#__PURE__*/Object.freeze({
|
|
|
787
816
|
DownArrowIcon: ChevronDownIcon,
|
|
788
817
|
DragIcon: DragIndicatorIcon,
|
|
789
818
|
DragIndicatorIcon: DragIndicatorIcon,
|
|
819
|
+
EarthIcon: EarthIcon,
|
|
790
820
|
EditIcon: EditIcon,
|
|
791
821
|
EmailIcon: EmailIcon,
|
|
792
822
|
EmptyIcon: EmptyIcon,
|
|
@@ -817,6 +847,7 @@ var Icons = /*#__PURE__*/Object.freeze({
|
|
|
817
847
|
LightBulbIcon: LightBulbIcon,
|
|
818
848
|
LinkIcon: LinkIcon,
|
|
819
849
|
LockIcon: LockIcon,
|
|
850
|
+
LogInIcon: LogInIcon,
|
|
820
851
|
LogOutIcon: LogOutIcon,
|
|
821
852
|
MessageWithArrowIcon: MessageWithArrowIcon,
|
|
822
853
|
MessagesIcon: MessageWithArrowIcon,
|
|
@@ -846,6 +877,7 @@ var Icons = /*#__PURE__*/Object.freeze({
|
|
|
846
877
|
StarIcon: StarIcon,
|
|
847
878
|
StatusColoredIcon: StatusColoredIcon,
|
|
848
879
|
TrashBinIcon: DeleteIcon,
|
|
880
|
+
TreeIcon: TreeIcon,
|
|
849
881
|
WarningIcon: ExclamationMarkIcon
|
|
850
882
|
});
|
|
851
883
|
|
|
@@ -2196,12 +2228,12 @@ const GliderContainer = (props) => React__namespace.default.createElement(
|
|
|
2196
2228
|
React__namespace.default.createElement(
|
|
2197
2229
|
"div",
|
|
2198
2230
|
{ className: "entity-preview-left ui-absolute ui-left-0 ui-top-1/2" },
|
|
2199
|
-
React__namespace.default.createElement(Button, { iconName: "chevron-left-blue", role: BUTTON_ROLES.QUATERNARY })
|
|
2231
|
+
React__namespace.default.createElement(Button, { iconName: "chevron-left-blue", role: BUTTON_ROLES.QUATERNARY, title: "previous slide" })
|
|
2200
2232
|
),
|
|
2201
2233
|
React__namespace.default.createElement(
|
|
2202
2234
|
"div",
|
|
2203
2235
|
{ className: "entity-preview-right ui-absolute ui-right-0 ui-top-1/2" },
|
|
2204
|
-
React__namespace.default.createElement(Button, { iconName: "chevron-right-blue", role: BUTTON_ROLES.QUATERNARY })
|
|
2236
|
+
React__namespace.default.createElement(Button, { iconName: "chevron-right-blue", role: BUTTON_ROLES.QUATERNARY, title: "next slide" })
|
|
2205
2237
|
),
|
|
2206
2238
|
React__namespace.default.createElement("div", { className: "entity-preview-dots" })
|
|
2207
2239
|
);
|
|
@@ -5920,6 +5952,7 @@ exports.Badge = Badge;
|
|
|
5920
5952
|
exports.BellIcon = BellIcon;
|
|
5921
5953
|
exports.BluetoothIcon = BluetoothIcon;
|
|
5922
5954
|
exports.Breadcrumbs = Breadcrumbs;
|
|
5955
|
+
exports.BrushIcon = BrushIcon;
|
|
5923
5956
|
exports.CRUDPage = CRUDPage;
|
|
5924
5957
|
exports.CalendarDayIcon = CalendarDayIcon;
|
|
5925
5958
|
exports.CalendarMonthIcon = CalendarMonthIcon;
|
|
@@ -5959,6 +5992,7 @@ exports.DragIcon = DragIndicatorIcon;
|
|
|
5959
5992
|
exports.DragIndicatorIcon = DragIndicatorIcon;
|
|
5960
5993
|
exports.Dropdown = Dropdown;
|
|
5961
5994
|
exports.Dropzone = Dropzone;
|
|
5995
|
+
exports.EarthIcon = EarthIcon;
|
|
5962
5996
|
exports.EditIcon = EditIcon;
|
|
5963
5997
|
exports.EmailIcon = EmailIcon;
|
|
5964
5998
|
exports.EmptyIcon = EmptyIcon;
|
|
@@ -6006,6 +6040,7 @@ exports.List = List;
|
|
|
6006
6040
|
exports.ListItem = ListItem;
|
|
6007
6041
|
exports.LoadingIndicator = LoadingIndicator;
|
|
6008
6042
|
exports.LockIcon = LockIcon;
|
|
6043
|
+
exports.LogInIcon = LogInIcon;
|
|
6009
6044
|
exports.LogOutIcon = LogOutIcon;
|
|
6010
6045
|
exports.MediaPicker = MediaPicker;
|
|
6011
6046
|
exports.Menu = Menu;
|
|
@@ -6073,6 +6108,7 @@ exports.Timeline = Timeline;
|
|
|
6073
6108
|
exports.Title = Title;
|
|
6074
6109
|
exports.Toaster = Toaster;
|
|
6075
6110
|
exports.TrashBinIcon = DeleteIcon;
|
|
6111
|
+
exports.TreeIcon = TreeIcon;
|
|
6076
6112
|
exports.UList = UnorderedList;
|
|
6077
6113
|
exports.UnorderedList = UnorderedList;
|
|
6078
6114
|
exports.VerticalMenu = VerticalMenu;
|