@popmenu/admin-ui 0.25.0 → 0.28.0
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/build/components/Page/Page.d.ts +2 -4
- package/build/components/PageBody/PageBody.d.ts +2 -0
- package/build/components/PageBody/index.d.ts +1 -0
- package/build/components/PageSection/PageSection.d.ts +2 -4
- package/build/components/PageSectionTitle/PageSectionTitle.d.ts +2 -0
- package/build/components/PageSectionTitle/index.d.ts +1 -0
- package/build/components/PageSections/PageSections.d.ts +2 -0
- package/build/components/PageSections/index.d.ts +1 -0
- package/build/components/SettingsIndexCard/SettingsIndexCard.d.ts +3 -0
- package/build/components/SettingsIndexCard/SettingsIndexCardProps.d.ts +17 -0
- package/build/components/SettingsIndexCard/SettingsIndexCardStyles.d.ts +2 -0
- package/build/components/SettingsIndexCard/index.d.ts +2 -0
- package/build/components/SettingsIndexCardGroup/SettingsIndexCardGroup.d.ts +3 -0
- package/build/components/SettingsIndexCardGroup/index.d.ts +1 -0
- package/build/components/index.d.ts +5 -1
- package/build/index.es.js +293 -186
- package/build/index.es.js.map +1 -1
- package/build/index.js +297 -186
- package/build/index.js.map +1 -1
- package/build/theme/adminDarkTheme.d.ts +5 -0
- package/build/theme/adminLightTheme.d.ts +5 -0
- package/build/theme/typography.d.ts +5 -0
- package/package.json +2 -2
- package/build/components/PageContent/PageContent.d.ts +0 -4
- package/build/components/PageContent/index.d.ts +0 -1
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const Page: (props:
|
|
3
|
-
children?: React.ReactNode;
|
|
4
|
-
}) => JSX.Element;
|
|
1
|
+
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const Page: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PageBody } from './PageBody';
|
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
export declare const PageSection: (props:
|
|
3
|
-
children?: React.ReactNode;
|
|
4
|
-
}) => JSX.Element;
|
|
1
|
+
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const PageSection: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PageSectionTitle } from './PageSectionTitle';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { PageSections } from './PageSections';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ThemeColors } from '@popmenu/common-ui/build/components/Typography/TypographyProps';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
|
+
export interface SettingsIndexCardProps {
|
|
4
|
+
/** The icon from @popmenu/web-icons to be rendered */
|
|
5
|
+
Icon?: ReactNode;
|
|
6
|
+
/** Sets the title of the card */
|
|
7
|
+
title: string;
|
|
8
|
+
/** Displays the given card description */
|
|
9
|
+
description?: string;
|
|
10
|
+
/** Event callback for the Card click event */
|
|
11
|
+
onClick?: (event: any) => void;
|
|
12
|
+
/** Sets the text and color of the label */
|
|
13
|
+
statusLabel?: {
|
|
14
|
+
text: string;
|
|
15
|
+
color: ThemeColors;
|
|
16
|
+
};
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SettingsIndexCardGroup } from './SettingsIndexCardGroup';
|
|
@@ -14,5 +14,9 @@ export { DialogActions, DialogActionsProps } from './DialogActions';
|
|
|
14
14
|
export { Dialog, DialogProps } from './Dialog';
|
|
15
15
|
export { DialogContent, DialogContentProps } from './DialogContent';
|
|
16
16
|
export { Page } from './Page';
|
|
17
|
-
export {
|
|
17
|
+
export { PageBody } from './PageBody';
|
|
18
18
|
export { PageSection } from './PageSection';
|
|
19
|
+
export { SettingsIndexCardGroup } from './SettingsIndexCardGroup';
|
|
20
|
+
export { SettingsIndexCard, SettingsIndexCardProps } from './SettingsIndexCard';
|
|
21
|
+
export { PageSections } from './PageSections';
|
|
22
|
+
export { PageSectionTitle } from './PageSectionTitle';
|