@solace-health/ui 0.7.4 → 0.7.5
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 +104 -88
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +98 -82
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -227,6 +227,7 @@ declare type ContainerProps = {
|
|
|
227
227
|
onMenuChange?: (e: any) => void;
|
|
228
228
|
className?: string;
|
|
229
229
|
menuProps?: MenuProps;
|
|
230
|
+
caretColor?: string;
|
|
230
231
|
};
|
|
231
232
|
declare type ButtonProps = {
|
|
232
233
|
label: string | JSX.Element;
|
|
@@ -251,7 +252,7 @@ declare type HeaderProps = {
|
|
|
251
252
|
};
|
|
252
253
|
declare const _default$2: {
|
|
253
254
|
Button: ({ label, className }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
254
|
-
Container: ({ children, cta, onItemClick, onMenuChange, className, menuProps, }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
255
|
+
Container: ({ children, cta, onItemClick, onMenuChange, className, menuProps, caretColor, }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
255
256
|
Search: ({ value, onChange, className, }: SearchProps) => react_jsx_runtime.JSX.Element;
|
|
256
257
|
Divider: ({ className }: {
|
|
257
258
|
className?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -227,6 +227,7 @@ declare type ContainerProps = {
|
|
|
227
227
|
onMenuChange?: (e: any) => void;
|
|
228
228
|
className?: string;
|
|
229
229
|
menuProps?: MenuProps;
|
|
230
|
+
caretColor?: string;
|
|
230
231
|
};
|
|
231
232
|
declare type ButtonProps = {
|
|
232
233
|
label: string | JSX.Element;
|
|
@@ -251,7 +252,7 @@ declare type HeaderProps = {
|
|
|
251
252
|
};
|
|
252
253
|
declare const _default$2: {
|
|
253
254
|
Button: ({ label, className }: ButtonProps) => react_jsx_runtime.JSX.Element;
|
|
254
|
-
Container: ({ children, cta, onItemClick, onMenuChange, className, menuProps, }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
255
|
+
Container: ({ children, cta, onItemClick, onMenuChange, className, menuProps, caretColor, }: ContainerProps) => react_jsx_runtime.JSX.Element;
|
|
255
256
|
Search: ({ value, onChange, className, }: SearchProps) => react_jsx_runtime.JSX.Element;
|
|
256
257
|
Divider: ({ className }: {
|
|
257
258
|
className?: string | undefined;
|