@moser-inc/moser-labs-react 1.11.1 → 1.12.1
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/_dev/views/FAQ.view.d.ts +2 -0
- package/dist/components/LabsIcon.d.ts +3 -1
- package/dist/components/LabsMainDesktopNav.d.ts +1 -1
- package/dist/components/LabsMainMobileNav.d.ts +1 -1
- package/dist/layouts/Base.layout.d.ts +1 -1
- package/dist/moser-labs-react.cjs +53 -73
- package/dist/moser-labs-react.js +5635 -6131
- package/dist/style.css +1 -1
- package/package.json +17 -16
- package/dist/_dev/utils/icons.d.ts +0 -1
|
@@ -3,7 +3,9 @@ export declare const LABS_ICONS: {
|
|
|
3
3
|
readonly BARS: "pi-bars";
|
|
4
4
|
readonly CHEVRON_DOWN: "mdi-chevron-down";
|
|
5
5
|
readonly CHEVRON_UP: "mdi-chevron-up";
|
|
6
|
-
readonly CLOSE: "
|
|
6
|
+
readonly CLOSE: "pi-times";
|
|
7
|
+
readonly FAQ: "pi-question-circle";
|
|
8
|
+
readonly HOME: "pi-home";
|
|
7
9
|
readonly ICON_EATS: "mli-eats";
|
|
8
10
|
readonly ICON_ENGAGEMENTS: "mli-engagements";
|
|
9
11
|
readonly ICON_IDEALAB: "mli-idealab";
|
|
@@ -6,4 +6,4 @@ export type LabsMainDesktopNavProps = Omit<LabsMenuNavProps, 'renderItem'> & {
|
|
|
6
6
|
isMenuOpen: boolean;
|
|
7
7
|
}) => MenuItem;
|
|
8
8
|
};
|
|
9
|
-
export declare const LabsMainDesktopNav: ({ className, items, renderItem, ...rest }: LabsMainDesktopNavProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const LabsMainDesktopNav: ({ className, items, renderItem, pt, ...rest }: LabsMainDesktopNavProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -6,4 +6,4 @@ export type LabsMainMobileNavProps = Omit<LabsSpeedDialNavProps, 'renderItem'> &
|
|
|
6
6
|
isMenuOpen: boolean;
|
|
7
7
|
}) => MenuItem;
|
|
8
8
|
};
|
|
9
|
-
export declare const LabsMainMobileNav: ({ className, items, renderItem, ...rest }: LabsMainMobileNavProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const LabsMainMobileNav: ({ className, items, renderItem, pt, ...rest }: LabsMainMobileNavProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,4 +10,4 @@ export type LayoutBaseProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
10
10
|
light: string;
|
|
11
11
|
};
|
|
12
12
|
};
|
|
13
|
-
export declare const LayoutBase: ({ appName, favicon, theme, children, ...rest }: LayoutBaseProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare const LayoutBase: ({ appName, favicon, theme, className, children, ...rest }: LayoutBaseProps) => import("react/jsx-runtime").JSX.Element;
|