@luscii-healthtech/web-ui 38.1.0 → 38.2.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/SummaryIcon.d.ts +3 -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
|
@@ -92,6 +92,7 @@ export { default as SmallSquareIcon } from "./SmallSquareIcon";
|
|
|
92
92
|
export { default as SmallUpsideDownTriangleIcon } from "./SmallUpsideDownTriangleIcon";
|
|
93
93
|
export { default as StarIcon } from "./StarIcon";
|
|
94
94
|
export { default as StopwatchIcon } from "./StopwatchIcon";
|
|
95
|
+
export { default as SummaryIcon } from "./SummaryIcon";
|
|
95
96
|
export { default as TadaIcon } from "./TadaIcon";
|
|
96
97
|
export { default as TrashBinIcon } from "./TrashBinIcon";
|
|
97
98
|
export { default as TreeIcon } from "./TreeIcon";
|
|
@@ -1182,6 +1182,13 @@ const SvgStopwatchIcon = (props) => React__namespace.default.createElement(
|
|
|
1182
1182
|
);
|
|
1183
1183
|
var StopwatchIcon = IconWrapper(SvgStopwatchIcon);
|
|
1184
1184
|
|
|
1185
|
+
const SvgSummaryIcon = (props) => React__namespace.default.createElement(
|
|
1186
|
+
"svg",
|
|
1187
|
+
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
1188
|
+
React__namespace.default.createElement("path", { fill: "currentColor", d: "M8 8.904a.87.87 0 0 0 .64-.264.87.87 0 0 0 .264-.64.87.87 0 0 0-.264-.64.87.87 0 0 0-.64-.264.87.87 0 0 0-.64.263.87.87 0 0 0-.264.641q0 .377.263.64.264.264.641.264m0 4a.87.87 0 0 0 .64-.264.87.87 0 0 0 .264-.64.87.87 0 0 0-.264-.64.87.87 0 0 0-.64-.264.87.87 0 0 0-.64.264.87.87 0 0 0-.264.64q0 .377.263.64.264.264.641.264m0 4a.87.87 0 0 0 .64-.264.87.87 0 0 0 .264-.64.87.87 0 0 0-.264-.64.87.87 0 0 0-.64-.264.87.87 0 0 0-.64.264.87.87 0 0 0-.264.64q0 .377.263.64.264.264.641.264M5.308 20.5q-.758 0-1.283-.525a1.75 1.75 0 0 1-.525-1.283V5.308q0-.758.525-1.283T5.308 3.5h9.732q.362 0 .696.14t.58.387l3.657 3.658q.246.246.387.58.14.333.14.695v9.732q0 .758-.525 1.283t-1.283.525zm0-1.5h13.384a.3.3 0 0 0 .221-.087.3.3 0 0 0 .087-.22V9h-3.096a.88.88 0 0 1-.645-.259.88.88 0 0 1-.259-.645V5H5.308a.3.3 0 0 0-.221.087.3.3 0 0 0-.087.22v13.385a.3.3 0 0 0 .087.221.3.3 0 0 0 .22.087" })
|
|
1189
|
+
);
|
|
1190
|
+
var SummaryIcon = IconWrapper(SvgSummaryIcon);
|
|
1191
|
+
|
|
1185
1192
|
const SvgTadaIcon = (props) => React__namespace.default.createElement(
|
|
1186
1193
|
"svg",
|
|
1187
1194
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
@@ -1346,6 +1353,7 @@ var Icons = /*#__PURE__*/Object.freeze({
|
|
|
1346
1353
|
StarIcon: StarIcon,
|
|
1347
1354
|
StatusColoredIcon: StatusColoredIcon,
|
|
1348
1355
|
StopwatchIcon: StopwatchIcon,
|
|
1356
|
+
SummaryIcon: SummaryIcon,
|
|
1349
1357
|
TadaIcon: TadaIcon,
|
|
1350
1358
|
TrashBinIcon: TrashBinIcon,
|
|
1351
1359
|
TreeIcon: TreeIcon,
|
|
@@ -7651,6 +7659,7 @@ exports.StyledInput = StyledInput;
|
|
|
7651
7659
|
exports.StyledOrderedList = StyledOrderedList;
|
|
7652
7660
|
exports.StyledRadio = StyledRadio;
|
|
7653
7661
|
exports.StyledUnorderedList = StyledUnorderedList;
|
|
7662
|
+
exports.SummaryIcon = SummaryIcon;
|
|
7654
7663
|
exports.Switch = Switch;
|
|
7655
7664
|
exports.Switcher = Switcher;
|
|
7656
7665
|
exports.TOASTER_TYPE_OPTIONS = TOASTER_TYPE_OPTIONS;
|