@unifiedsoftware/react-ui 1.0.1 → 1.0.3
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.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +18 -1100
- package/dist/index.mjs +26 -1108
- package/package.json +4 -3
package/dist/index.d.mts
CHANGED
|
@@ -156,11 +156,12 @@ interface Props$1 {
|
|
|
156
156
|
}[];
|
|
157
157
|
}
|
|
158
158
|
declare const AppBreadCrumb: ({ title, paths }: Props$1) => react_jsx_runtime.JSX.Element;
|
|
159
|
-
declare const AppBreadCrumbNav: ({ paths }: {
|
|
159
|
+
declare const AppBreadCrumbNav: ({ paths, onPush, }: {
|
|
160
160
|
paths?: {
|
|
161
161
|
route: string;
|
|
162
162
|
title: string;
|
|
163
163
|
}[] | undefined;
|
|
164
|
+
onPush: (to: string | number) => void;
|
|
164
165
|
}) => react_jsx_runtime.JSX.Element;
|
|
165
166
|
|
|
166
167
|
type LoadingType = 'window' | 'page' | 'grid' | 'button' | 'card' | 'div' | 'none';
|
package/dist/index.d.ts
CHANGED
|
@@ -156,11 +156,12 @@ interface Props$1 {
|
|
|
156
156
|
}[];
|
|
157
157
|
}
|
|
158
158
|
declare const AppBreadCrumb: ({ title, paths }: Props$1) => react_jsx_runtime.JSX.Element;
|
|
159
|
-
declare const AppBreadCrumbNav: ({ paths }: {
|
|
159
|
+
declare const AppBreadCrumbNav: ({ paths, onPush, }: {
|
|
160
160
|
paths?: {
|
|
161
161
|
route: string;
|
|
162
162
|
title: string;
|
|
163
163
|
}[] | undefined;
|
|
164
|
+
onPush: (to: string | number) => void;
|
|
164
165
|
}) => react_jsx_runtime.JSX.Element;
|
|
165
166
|
|
|
166
167
|
type LoadingType = 'window' | 'page' | 'grid' | 'button' | 'card' | 'div' | 'none';
|