@luscii-healthtech/web-ui 8.2.0 → 8.3.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/EyeIconSlashed.d.ts +4 -0
- package/dist/components/Icons/index.d.ts +1 -0
- package/dist/index.development.js +9 -0
- 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
|
@@ -17,6 +17,7 @@ export { default as EditIcon } from "./EditIcon";
|
|
|
17
17
|
export { default as EmptyIcon } from "./EmptyIcon";
|
|
18
18
|
export { default as EmptyStateDashboardIcon } from "./EmptyStateDashboardIcon";
|
|
19
19
|
export { default as ExclamationMarkIcon } from "./ExclamationMarkIcon";
|
|
20
|
+
export { default as EyeIconSlashed } from "./EyeIconSlashed";
|
|
20
21
|
export { default as EyeIcon } from "./EyeIcon";
|
|
21
22
|
export { default as GearColoredIcon } from "./GearColoredIcon";
|
|
22
23
|
export { default as GearIcon } from "./GearIcon";
|
|
@@ -450,6 +450,13 @@ const SvgExclamationMarkIcon = (props) => React__namespace.default.createElement
|
|
|
450
450
|
);
|
|
451
451
|
var ExclamationMarkIcon = IconWrapper(SvgExclamationMarkIcon);
|
|
452
452
|
|
|
453
|
+
const SvgEyeIconSlashed = (props) => React__namespace.default.createElement(
|
|
454
|
+
"svg",
|
|
455
|
+
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 22, height: 20, fill: "none", viewBox: "0 0 22 20" }, props),
|
|
456
|
+
React__namespace.default.createElement("path", { fill: "#9CA3AF", d: "M11 4.5c2.76 0 5 2.24 5 5 0 .51-.1 1-.24 1.46l3.06 3.06c1.39-1.23 2.49-2.77 3.18-4.53C20.27 5.11 16 2 11 2c-1.27 0-2.49.2-3.64.57l2.17 2.17c.47-.14.96-.24 1.47-.24ZM1.71 1.16a.996.996 0 0 0 0 1.41l1.97 1.97A11.892 11.892 0 0 0 0 9.5C1.73 13.89 6 17 11 17c1.52 0 2.97-.3 4.31-.82l2.72 2.72a.996.996 0 1 0 1.41-1.41L3.13 1.16c-.39-.39-1.03-.39-1.42 0ZM11 14.5c-2.76 0-5-2.24-5-5 0-.77.18-1.5.49-2.14l1.57 1.57c-.03.18-.06.37-.06.57 0 1.66 1.34 3 3 3 .2 0 .38-.03.57-.07L13.14 14c-.65.32-1.37.5-2.14.5Zm2.97-5.33a2.97 2.97 0 0 0-2.64-2.64l2.64 2.64Z" })
|
|
457
|
+
);
|
|
458
|
+
var EyeIconSlashed = IconWrapper(SvgEyeIconSlashed);
|
|
459
|
+
|
|
453
460
|
const SvgEyeIcon = (props) => React__namespace.default.createElement(
|
|
454
461
|
"svg",
|
|
455
462
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 22, height: 15, fill: "none", viewBox: "0 0 22 15" }, props),
|
|
@@ -687,6 +694,7 @@ var Icons = /*#__PURE__*/Object.freeze({
|
|
|
687
694
|
EmptyStateDashboardIcon: EmptyStateDashboardIcon,
|
|
688
695
|
ExclamationMarkIcon: ExclamationMarkIcon,
|
|
689
696
|
EyeIcon: EyeIcon,
|
|
697
|
+
EyeIconSlashed: EyeIconSlashed,
|
|
690
698
|
GearColoredIcon: GearColoredIcon,
|
|
691
699
|
GearIcon: GearIcon,
|
|
692
700
|
GroupColoredIcon: GroupColoredIcon,
|
|
@@ -5546,6 +5554,7 @@ exports.EmptyStateDashboardIcon = EmptyStateDashboardIcon;
|
|
|
5546
5554
|
exports.ErrorBlock = ErrorBlock;
|
|
5547
5555
|
exports.ExclamationMarkIcon = ExclamationMarkIcon;
|
|
5548
5556
|
exports.EyeIcon = EyeIcon;
|
|
5557
|
+
exports.EyeIconSlashed = EyeIconSlashed;
|
|
5549
5558
|
exports.FilterBar = FilterBar;
|
|
5550
5559
|
exports.FilterBarUtils = FilterBar_utils;
|
|
5551
5560
|
exports.FlexColumn = FlexColumn;
|