sevago-sso-fe 1.0.41 → 1.0.42
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/components/index.d.ts +0 -1
- package/dist/components/styles/typography.style.d.ts +1 -1
- package/dist/hooks/index.d.ts +0 -3
- package/dist/index.cjs.js +2837 -5861
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2840 -5864
- package/dist/index.esm.js.map +1 -1
- package/dist/pages/auth/index.d.ts +0 -1
- package/dist/pages/dashboard/index.d.ts +0 -1
- package/package.json +1 -1
- package/dist/components/avatar-user/avatar-user.component.d.ts +0 -4
- package/dist/components/avatar-user/index.d.ts +0 -1
- package/dist/hooks/use-snackbar.hook.d.ts +0 -19
- package/dist/hooks/use-tag-selector.hook.d.ts +0 -25
- package/dist/hooks/user-sidebar.d.ts +0 -1
- package/dist/pages/auth/parts/index.d.ts +0 -1
- package/dist/pages/auth/parts/otp/index.d.ts +0 -1
- package/dist/pages/auth/parts/otp/otp.part.d.ts +0 -6
- package/dist/pages/dashboard/sidebar/index.d.ts +0 -2
- package/dist/pages/dashboard/sidebar/sidebar.context.d.ts +0 -10
- package/dist/pages/dashboard/sidebar/sidebar.provider.d.ts +0 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const TypographyFilter: import('@emotion/styled').StyledComponent<import('@mui/material').TypographyOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "position" | "children" | "p" | "style" | "zIndex" | "typography" | "fontFamily" | "fontSize" | "fontWeight" | "textTransform" | "m" | "
|
|
1
|
+
export declare const TypographyFilter: import('@emotion/styled').StyledComponent<import('@mui/material').TypographyOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "position" | "children" | "p" | "style" | "zIndex" | "typography" | "fontFamily" | "fontSize" | "fontWeight" | "textTransform" | "m" | "align" | "bgcolor" | "border" | "className" | "classes" | "borderTop" | "borderRight" | "borderBottom" | "borderLeft" | "borderColor" | "borderRadius" | "display" | "displayPrint" | "overflow" | "textOverflow" | "visibility" | "whiteSpace" | "flexBasis" | "flexDirection" | "flexWrap" | "justifyContent" | "alignItems" | "alignContent" | "order" | "flex" | "flexGrow" | "flexShrink" | "alignSelf" | "justifyItems" | "justifySelf" | "gap" | "columnGap" | "rowGap" | "gridColumn" | "gridRow" | "gridAutoFlow" | "gridAutoColumns" | "gridAutoRows" | "gridTemplateColumns" | "gridTemplateRows" | "gridTemplateAreas" | "gridArea" | "color" | "top" | "right" | "bottom" | "left" | "boxShadow" | "width" | "maxWidth" | "minWidth" | "height" | "maxHeight" | "minHeight" | "boxSizing" | "mt" | "mr" | "mb" | "ml" | "mx" | "my" | "pt" | "pr" | "pb" | "pl" | "px" | "py" | "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft" | "marginX" | "marginY" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft" | "paddingX" | "paddingY" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "fontStyle" | "letterSpacing" | "lineHeight" | "textAlign" | "sx" | "variant" | "gutterBottom" | "noWrap" | "paragraph" | "variantMapping"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
1
|
export * from './use-apps.hook';
|
|
2
2
|
export { useActiveSidebar, useApps, useIsSystemMonitor, useSidebarState, } from './use-apps.hook';
|
|
3
|
-
export { SnackbarProvider, SnackbarType, useSnackbar, } from './use-snackbar.hook';
|
|
4
|
-
export { useTagSelector } from './use-tag-selector.hook';
|
|
5
3
|
export { useUpdateCurrentAccess } from './use-update-current-access.hook';
|
|
6
4
|
export { useVersionCheck } from './use-version-check.hook';
|
|
7
|
-
export { useSidebar } from './user-sidebar';
|