@etsoo/smarterp-core 1.0.35 → 1.0.36
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/lib/cjs/components/app/StatusList.d.ts +1 -1
- package/lib/cjs/components/app/UserRoleList.d.ts +1 -1
- package/lib/mjs/components/app/StatusList.d.ts +1 -1
- package/lib/mjs/components/app/UserRoleList.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/app/StatusList.tsx +1 -1
- package/src/components/app/UserRoleList.tsx +1 -1
|
@@ -5,4 +5,4 @@ import { DataTypes } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function StatusList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name">): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function StatusList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">): import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { DataTypes } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function UserRoleList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name">): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function UserRoleList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">): import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { DataTypes } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function StatusList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name">): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function StatusList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">): import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { DataTypes } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function UserRoleList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name">): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare function UserRoleList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">): import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@ import { DataTypes } from "@etsoo/shared";
|
|
|
8
8
|
* @returns Component
|
|
9
9
|
*/
|
|
10
10
|
export function StatusList(
|
|
11
|
-
props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name">
|
|
11
|
+
props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">
|
|
12
12
|
) {
|
|
13
13
|
// App
|
|
14
14
|
const app = useRequiredAppContext();
|
|
@@ -8,7 +8,7 @@ import { DataTypes } from "@etsoo/shared";
|
|
|
8
8
|
* @returns Component
|
|
9
9
|
*/
|
|
10
10
|
export function UserRoleList(
|
|
11
|
-
props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name">
|
|
11
|
+
props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">
|
|
12
12
|
) {
|
|
13
13
|
// App
|
|
14
14
|
const app = useRequiredAppContext();
|