@solace-health/ui 0.10.26 → 0.10.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/index.cjs +227 -209
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +30 -2
- package/dist/index.d.ts +30 -2
- package/dist/index.js +188 -171
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -261,8 +261,10 @@ declare const _default$5: {
|
|
|
261
261
|
}) => react_jsx_runtime.JSX.Element;
|
|
262
262
|
LightBulb: () => react_jsx_runtime.JSX.Element;
|
|
263
263
|
ColorInvoice: () => react_jsx_runtime.JSX.Element;
|
|
264
|
-
LocationPin: ({ className }: {
|
|
264
|
+
LocationPin: ({ className, color, size, }: {
|
|
265
265
|
className?: string | undefined;
|
|
266
|
+
color?: string | undefined;
|
|
267
|
+
size?: number | undefined;
|
|
266
268
|
}) => react_jsx_runtime.JSX.Element;
|
|
267
269
|
Message: ({ active, color }: {
|
|
268
270
|
active?: boolean | undefined;
|
|
@@ -323,6 +325,18 @@ declare const _default$5: {
|
|
|
323
325
|
Wallet: ({ color, }: {
|
|
324
326
|
color?: string | undefined;
|
|
325
327
|
}) => JSX.Element;
|
|
328
|
+
Login: ({ color, size, }: {
|
|
329
|
+
color?: string | undefined;
|
|
330
|
+
size?: number | undefined;
|
|
331
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
332
|
+
Email: ({ color, size, }: {
|
|
333
|
+
color?: string | undefined;
|
|
334
|
+
size?: number | undefined;
|
|
335
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
336
|
+
Pencil: ({ color, size, }: {
|
|
337
|
+
color?: string | undefined;
|
|
338
|
+
size?: number | undefined;
|
|
339
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
326
340
|
};
|
|
327
341
|
|
|
328
342
|
declare enum Size {
|
|
@@ -478,6 +492,20 @@ declare type Props$6 = {
|
|
|
478
492
|
};
|
|
479
493
|
declare const Segmented: ({ onChange, options, size, defaultValue, block, }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
480
494
|
|
|
495
|
+
declare type Element = {
|
|
496
|
+
id: string;
|
|
497
|
+
children: JSX.Element;
|
|
498
|
+
};
|
|
499
|
+
declare type SortableListProps = {
|
|
500
|
+
id: string;
|
|
501
|
+
elements: Element[];
|
|
502
|
+
onChange: (elements: Element[]) => void;
|
|
503
|
+
onDragOver?: (elements: Element[]) => void;
|
|
504
|
+
onClickElement?: (elementId: string) => void;
|
|
505
|
+
className: string;
|
|
506
|
+
};
|
|
507
|
+
declare function SortableList({ id, onClickElement, elements, onChange, onDragOver, className, }: SortableListProps): react_jsx_runtime.JSX.Element;
|
|
508
|
+
|
|
481
509
|
declare type Props$5 = {
|
|
482
510
|
color: string;
|
|
483
511
|
};
|
|
@@ -880,4 +908,4 @@ declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
|
880
908
|
size?: number | undefined;
|
|
881
909
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
882
910
|
|
|
883
|
-
export { Avatar, _default$8 as Button, _default$7 as Card, Collapse, Contentful, ContentfulLottieFileSlug, DateSelect, Divider, Drawer, Dropdown, ErrorTypography, _default$6 as File, _default$2 as Form, FormatType, _default$5 as Icons, LoadingSpinner, LottieAnimation, _default$4 as Menu, Modal, _default$1 as NavigationMenu, _default$3 as NumberedProgressSteps, Pill, Progress, SearchInput, Segmented, Size, SolaceLogo, SolaceThemeProvider, Table, Tabs, TimePicker, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|
|
911
|
+
export { Avatar, _default$8 as Button, _default$7 as Card, Collapse, Contentful, ContentfulLottieFileSlug, DateSelect, Divider, Drawer, Dropdown, ErrorTypography, _default$6 as File, _default$2 as Form, FormatType, _default$5 as Icons, LoadingSpinner, LottieAnimation, _default$4 as Menu, Modal, _default$1 as NavigationMenu, _default$3 as NumberedProgressSteps, Pill, Progress, SearchInput, Segmented, Size, SolaceLogo, SolaceThemeProvider, SortableList, Table, Tabs, TimePicker, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|
package/dist/index.d.ts
CHANGED
|
@@ -261,8 +261,10 @@ declare const _default$5: {
|
|
|
261
261
|
}) => react_jsx_runtime.JSX.Element;
|
|
262
262
|
LightBulb: () => react_jsx_runtime.JSX.Element;
|
|
263
263
|
ColorInvoice: () => react_jsx_runtime.JSX.Element;
|
|
264
|
-
LocationPin: ({ className }: {
|
|
264
|
+
LocationPin: ({ className, color, size, }: {
|
|
265
265
|
className?: string | undefined;
|
|
266
|
+
color?: string | undefined;
|
|
267
|
+
size?: number | undefined;
|
|
266
268
|
}) => react_jsx_runtime.JSX.Element;
|
|
267
269
|
Message: ({ active, color }: {
|
|
268
270
|
active?: boolean | undefined;
|
|
@@ -323,6 +325,18 @@ declare const _default$5: {
|
|
|
323
325
|
Wallet: ({ color, }: {
|
|
324
326
|
color?: string | undefined;
|
|
325
327
|
}) => JSX.Element;
|
|
328
|
+
Login: ({ color, size, }: {
|
|
329
|
+
color?: string | undefined;
|
|
330
|
+
size?: number | undefined;
|
|
331
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
332
|
+
Email: ({ color, size, }: {
|
|
333
|
+
color?: string | undefined;
|
|
334
|
+
size?: number | undefined;
|
|
335
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
336
|
+
Pencil: ({ color, size, }: {
|
|
337
|
+
color?: string | undefined;
|
|
338
|
+
size?: number | undefined;
|
|
339
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
326
340
|
};
|
|
327
341
|
|
|
328
342
|
declare enum Size {
|
|
@@ -478,6 +492,20 @@ declare type Props$6 = {
|
|
|
478
492
|
};
|
|
479
493
|
declare const Segmented: ({ onChange, options, size, defaultValue, block, }: Props$6) => react_jsx_runtime.JSX.Element;
|
|
480
494
|
|
|
495
|
+
declare type Element = {
|
|
496
|
+
id: string;
|
|
497
|
+
children: JSX.Element;
|
|
498
|
+
};
|
|
499
|
+
declare type SortableListProps = {
|
|
500
|
+
id: string;
|
|
501
|
+
elements: Element[];
|
|
502
|
+
onChange: (elements: Element[]) => void;
|
|
503
|
+
onDragOver?: (elements: Element[]) => void;
|
|
504
|
+
onClickElement?: (elementId: string) => void;
|
|
505
|
+
className: string;
|
|
506
|
+
};
|
|
507
|
+
declare function SortableList({ id, onClickElement, elements, onChange, onDragOver, className, }: SortableListProps): react_jsx_runtime.JSX.Element;
|
|
508
|
+
|
|
481
509
|
declare type Props$5 = {
|
|
482
510
|
color: string;
|
|
483
511
|
};
|
|
@@ -880,4 +908,4 @@ declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
|
880
908
|
size?: number | undefined;
|
|
881
909
|
}) => react_jsx_runtime.JSX.Element | null;
|
|
882
910
|
|
|
883
|
-
export { Avatar, _default$8 as Button, _default$7 as Card, Collapse, Contentful, ContentfulLottieFileSlug, DateSelect, Divider, Drawer, Dropdown, ErrorTypography, _default$6 as File, _default$2 as Form, FormatType, _default$5 as Icons, LoadingSpinner, LottieAnimation, _default$4 as Menu, Modal, _default$1 as NavigationMenu, _default$3 as NumberedProgressSteps, Pill, Progress, SearchInput, Segmented, Size, SolaceLogo, SolaceThemeProvider, Table, Tabs, TimePicker, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|
|
911
|
+
export { Avatar, _default$8 as Button, _default$7 as Card, Collapse, Contentful, ContentfulLottieFileSlug, DateSelect, Divider, Drawer, Dropdown, ErrorTypography, _default$6 as File, _default$2 as Form, FormatType, _default$5 as Icons, LoadingSpinner, LottieAnimation, _default$4 as Menu, Modal, _default$1 as NavigationMenu, _default$3 as NumberedProgressSteps, Pill, Progress, SearchInput, Segmented, Size, SolaceLogo, SolaceThemeProvider, SortableList, Table, Tabs, TimePicker, TimeSelect, Toggle, Tooltip, _default as Typography, VantaLogo };
|