@popmenu/admin-ui 0.150.2 → 0.151.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/build/cjs/components/Alert/Alert.d.ts +1 -1
- package/build/cjs/components/AlertDialog/AlertDialog.d.ts +1 -1
- package/build/cjs/components/ButtonGroup/ButtonGroup.d.ts +1 -1
- package/build/cjs/components/List/List.d.ts +2 -1
- package/build/cjs/components/Page/Page.d.ts +2 -2
- package/build/cjs/components/PageBody/PageBody.d.ts +2 -2
- package/build/cjs/components/PageSectionHead/PageSectionHead.d.ts +2 -2
- package/build/cjs/components/PageSectionTitle/PageSectionTitle.d.ts +2 -1
- package/build/cjs/components/PageSections/PageSections.d.ts +2 -2
- package/build/cjs/components/SelectableCard/SelectableCard.d.ts +1 -1
- package/build/cjs/components/SettingsIndexCardGroup/SettingsIndexCardGroup.d.ts +2 -1
- package/build/cjs/components/StandardListItem/StandardListItem.d.ts +3 -2
- package/build/esm/components/Alert/Alert.d.ts +1 -1
- package/build/esm/components/AlertDialog/AlertDialog.d.ts +1 -1
- package/build/esm/components/ButtonGroup/ButtonGroup.d.ts +1 -1
- package/build/esm/components/List/List.d.ts +2 -1
- package/build/esm/components/Page/Page.d.ts +2 -2
- package/build/esm/components/PageBody/PageBody.d.ts +2 -2
- package/build/esm/components/PageSectionHead/PageSectionHead.d.ts +2 -2
- package/build/esm/components/PageSectionTitle/PageSectionTitle.d.ts +2 -1
- package/build/esm/components/PageSections/PageSections.d.ts +2 -2
- package/build/esm/components/SelectableCard/SelectableCard.d.ts +1 -1
- package/build/esm/components/SettingsIndexCardGroup/SettingsIndexCardGroup.d.ts +2 -1
- package/build/esm/components/StandardListItem/StandardListItem.d.ts +3 -2
- package/package.json +2 -2
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { AlertProps } from './AlertProps';
|
|
3
|
-
export declare const Alert: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Alert: React.ForwardRefExoticComponent<Omit<AlertProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { AlertDialogProps } from './AlertDialogProps';
|
|
3
|
-
export declare const AlertDialog: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const AlertDialog: React.ForwardRefExoticComponent<Omit<AlertDialogProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ButtonGroupProps } from './ButtonGroupProps';
|
|
3
|
-
export declare const ButtonGroup: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const ButtonGroup: React.ForwardRefExoticComponent<Omit<ButtonGroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
-
export declare const Page: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
1
|
+
import React, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const Page: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => React.JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
-
export declare const PageBody: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
1
|
+
import React, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const PageBody: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => React.JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
-
export declare const PageSectionHead: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
1
|
+
import React, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const PageSectionHead: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => React.JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
-
export declare const PageSections: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
1
|
+
import React, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const PageSections: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SelectableCardProps } from './SelectableCardProps';
|
|
3
|
-
export declare const SelectableCard: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const SelectableCard: React.ForwardRefExoticComponent<Omit<SelectableCardProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { StandardListItemProps } from './StandardListItemProps';
|
|
2
3
|
/**
|
|
3
4
|
* TODO
|
|
4
5
|
* - clean props util
|
|
5
6
|
* - Avatar size and shape
|
|
6
7
|
*/
|
|
7
|
-
export declare const StandardListItem: (props: StandardListItemProps) => JSX.Element;
|
|
8
|
-
export declare const Test: () => JSX.Element;
|
|
8
|
+
export declare const StandardListItem: (props: StandardListItemProps) => React.JSX.Element;
|
|
9
|
+
export declare const Test: () => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { AlertProps } from './AlertProps';
|
|
3
|
-
export declare const Alert: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const Alert: React.ForwardRefExoticComponent<Omit<AlertProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { AlertDialogProps } from './AlertDialogProps';
|
|
3
|
-
export declare const AlertDialog: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const AlertDialog: React.ForwardRefExoticComponent<Omit<AlertDialogProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ButtonGroupProps } from './ButtonGroupProps';
|
|
3
|
-
export declare const ButtonGroup: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const ButtonGroup: React.ForwardRefExoticComponent<Omit<ButtonGroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
-
export declare const Page: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
1
|
+
import React, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const Page: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => React.JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
-
export declare const PageBody: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
1
|
+
import React, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const PageBody: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => React.JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
-
export declare const PageSectionHead: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
1
|
+
import React, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const PageSectionHead: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => React.JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
-
export declare const PageSections: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => JSX.Element;
|
|
1
|
+
import React, { HTMLAttributes, PropsWithChildren } from 'react';
|
|
2
|
+
export declare const PageSections: (props: PropsWithChildren<HTMLAttributes<HTMLElement>>) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SelectableCardProps } from './SelectableCardProps';
|
|
3
|
-
export declare const SelectableCard: React.ForwardRefExoticComponent<
|
|
3
|
+
export declare const SelectableCard: React.ForwardRefExoticComponent<Omit<SelectableCardProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import { StandardListItemProps } from './StandardListItemProps';
|
|
2
3
|
/**
|
|
3
4
|
* TODO
|
|
4
5
|
* - clean props util
|
|
5
6
|
* - Avatar size and shape
|
|
6
7
|
*/
|
|
7
|
-
export declare const StandardListItem: (props: StandardListItemProps) => JSX.Element;
|
|
8
|
-
export declare const Test: () => JSX.Element;
|
|
8
|
+
export declare const StandardListItem: (props: StandardListItemProps) => React.JSX.Element;
|
|
9
|
+
export declare const Test: () => React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@popmenu/admin-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.151.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Popmenu Design System Team",
|
|
6
6
|
"description": "React components specifically for the MyPop web app.",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"react": "18.x || 19.x"
|
|
33
33
|
},
|
|
34
34
|
"sideEffects": false,
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "971a0722a2958765b47d1db068506cf55dc777c8"
|
|
36
36
|
}
|