@solace-health/ui 0.7.8 → 0.7.10
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 +42 -42
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +40 -40
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -148,7 +148,8 @@ declare type Props$7 = {
|
|
|
148
148
|
declare const LoadingSpinner: ({ color, size, }: Props$7) => react_jsx_runtime.JSX.Element;
|
|
149
149
|
|
|
150
150
|
declare enum ContentfulLottieFileSlug {
|
|
151
|
-
LOADING_LISTINGS = "loadingListings"
|
|
151
|
+
LOADING_LISTINGS = "loadingListings",
|
|
152
|
+
LOADING_ACCOUNT = "loadingAccount"
|
|
152
153
|
}
|
|
153
154
|
declare type ContentfulConfig = {
|
|
154
155
|
space: string;
|
|
@@ -213,8 +214,9 @@ declare const SolaceLogo: ({ color }: Props$3) => react_jsx_runtime.JSX.Element;
|
|
|
213
214
|
declare type Props$2 = {
|
|
214
215
|
className?: string;
|
|
215
216
|
navigate?: (url: string) => void;
|
|
217
|
+
pathname?: string;
|
|
216
218
|
} & TabsProps;
|
|
217
|
-
declare const Tabs: ({ className, items, navigate, activeKey, ...otherProps }: Props$2) => react_jsx_runtime.JSX.Element;
|
|
219
|
+
declare const Tabs: ({ className, items, navigate, activeKey, pathname, ...otherProps }: Props$2) => react_jsx_runtime.JSX.Element;
|
|
218
220
|
|
|
219
221
|
declare type ContainerProps = {
|
|
220
222
|
cta: string | JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -148,7 +148,8 @@ declare type Props$7 = {
|
|
|
148
148
|
declare const LoadingSpinner: ({ color, size, }: Props$7) => react_jsx_runtime.JSX.Element;
|
|
149
149
|
|
|
150
150
|
declare enum ContentfulLottieFileSlug {
|
|
151
|
-
LOADING_LISTINGS = "loadingListings"
|
|
151
|
+
LOADING_LISTINGS = "loadingListings",
|
|
152
|
+
LOADING_ACCOUNT = "loadingAccount"
|
|
152
153
|
}
|
|
153
154
|
declare type ContentfulConfig = {
|
|
154
155
|
space: string;
|
|
@@ -213,8 +214,9 @@ declare const SolaceLogo: ({ color }: Props$3) => react_jsx_runtime.JSX.Element;
|
|
|
213
214
|
declare type Props$2 = {
|
|
214
215
|
className?: string;
|
|
215
216
|
navigate?: (url: string) => void;
|
|
217
|
+
pathname?: string;
|
|
216
218
|
} & TabsProps;
|
|
217
|
-
declare const Tabs: ({ className, items, navigate, activeKey, ...otherProps }: Props$2) => react_jsx_runtime.JSX.Element;
|
|
219
|
+
declare const Tabs: ({ className, items, navigate, activeKey, pathname, ...otherProps }: Props$2) => react_jsx_runtime.JSX.Element;
|
|
218
220
|
|
|
219
221
|
declare type ContainerProps = {
|
|
220
222
|
cta: string | JSX.Element;
|