@etsoo/smarterp-core 1.1.55 → 1.1.57
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/AppSwitchPopover.d.ts +2 -1
- package/lib/cjs/components/app/ButtonIdentityTypes.d.ts +2 -1
- package/lib/cjs/components/app/IdentityFlagsList.d.ts +1 -1
- package/lib/cjs/components/app/IdentityTypeList.d.ts +1 -1
- package/lib/cjs/components/app/SearchDays.d.ts +1 -1
- package/lib/cjs/components/app/StatusList.d.ts +1 -1
- package/lib/cjs/components/app/UserRoleList.d.ts +1 -1
- package/lib/cjs/components/document/DocumentKindList.d.ts +1 -1
- package/lib/cjs/components/document/DocumentTiplist.d.ts +1 -1
- package/lib/cjs/components/org/ButtonApiServices.d.ts +2 -1
- package/lib/cjs/components/org/OrgSwitchPopover.d.ts +2 -1
- package/lib/cjs/components/org/OrgTiplist.d.ts +1 -1
- package/lib/cjs/components/public/AddressTiplist.d.ts +2 -1
- package/lib/cjs/components/public/ButtonCultures.d.ts +2 -1
- package/lib/cjs/components/public/ButtonCurrencies.d.ts +2 -1
- package/lib/cjs/components/public/ButtonRadioRegions.d.ts +2 -1
- package/lib/cjs/components/public/ButtonRegions.d.ts +2 -1
- package/lib/cjs/components/public/CultureList.d.ts +1 -1
- package/lib/cjs/components/public/ProductBaseUnits.d.ts +1 -1
- package/lib/cjs/components/user/UserTiplist.d.ts +1 -1
- package/lib/cjs/dto/document/DocumentKind.d.ts +1 -0
- package/lib/cjs/dto/document/DocumentKind.js +1 -0
- package/lib/cjs/dto/org/OrgReadDto.d.ts +4 -0
- package/lib/cjs/dto/org/OrgUpdateReadDto.d.ts +4 -0
- package/lib/cjs/i18n/en.json +1 -0
- package/lib/cjs/i18n/zh-Hans.json +1 -0
- package/lib/cjs/i18n/zh-Hant.json +1 -0
- package/lib/cjs/rq/org/OrgCreateRQ.d.ts +4 -0
- package/lib/cjs/rq/org/OrgUpdateRQ.d.ts +4 -0
- package/lib/mjs/components/app/AppSwitchPopover.d.ts +2 -1
- package/lib/mjs/components/app/ButtonIdentityTypes.d.ts +2 -1
- package/lib/mjs/components/app/IdentityFlagsList.d.ts +1 -1
- package/lib/mjs/components/app/IdentityTypeList.d.ts +1 -1
- package/lib/mjs/components/app/SearchDays.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/lib/mjs/components/document/DocumentKindList.d.ts +1 -1
- package/lib/mjs/components/document/DocumentTiplist.d.ts +1 -1
- package/lib/mjs/components/org/ButtonApiServices.d.ts +2 -1
- package/lib/mjs/components/org/OrgSwitchPopover.d.ts +2 -1
- package/lib/mjs/components/org/OrgTiplist.d.ts +1 -1
- package/lib/mjs/components/public/AddressTiplist.d.ts +2 -1
- package/lib/mjs/components/public/ButtonCultures.d.ts +2 -1
- package/lib/mjs/components/public/ButtonCurrencies.d.ts +2 -1
- package/lib/mjs/components/public/ButtonRadioRegions.d.ts +2 -1
- package/lib/mjs/components/public/ButtonRegions.d.ts +2 -1
- package/lib/mjs/components/public/CultureList.d.ts +1 -1
- package/lib/mjs/components/public/ProductBaseUnits.d.ts +1 -1
- package/lib/mjs/components/user/UserTiplist.d.ts +1 -1
- package/lib/mjs/dto/document/DocumentKind.d.ts +1 -0
- package/lib/mjs/dto/document/DocumentKind.js +1 -0
- package/lib/mjs/dto/org/OrgReadDto.d.ts +4 -0
- package/lib/mjs/dto/org/OrgUpdateReadDto.d.ts +4 -0
- package/lib/mjs/i18n/en.json +1 -0
- package/lib/mjs/i18n/zh-Hans.json +1 -0
- package/lib/mjs/i18n/zh-Hant.json +1 -0
- package/lib/mjs/rq/org/OrgCreateRQ.d.ts +4 -0
- package/lib/mjs/rq/org/OrgUpdateRQ.d.ts +4 -0
- package/package.json +8 -8
- package/src/dto/document/DocumentKind.ts +1 -0
- package/src/dto/org/OrgReadDto.ts +5 -0
- package/src/dto/org/OrgUpdateReadDto.ts +5 -0
- package/src/i18n/en.json +1 -0
- package/src/i18n/zh-Hans.json +1 -0
- package/src/i18n/zh-Hant.json +1 -0
- package/src/rq/org/OrgCreateRQ.ts +5 -0
- package/src/rq/org/OrgUpdateRQ.ts +5 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
export type AppSwitchPopoverProps = {
|
|
2
3
|
appName: string;
|
|
3
4
|
};
|
|
4
|
-
export declare function AppSwitchPopover(props: AppSwitchPopoverProps):
|
|
5
|
+
export declare function AppSwitchPopover(props: AppSwitchPopoverProps): React.JSX.Element;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ButtonPopupCheckboxProps } from "@etsoo/materialui";
|
|
2
2
|
import { ListType } from "@etsoo/shared";
|
|
3
3
|
import { IdentityTypeFlags } from "@etsoo/appscript";
|
|
4
|
+
import React from "react";
|
|
4
5
|
export type ButtonIdentityTypesProps = Omit<ButtonPopupCheckboxProps<ListType>, "labelField" | "loadData" | "value" | "onValueChange"> & {
|
|
5
6
|
/**
|
|
6
7
|
* Base identity type
|
|
@@ -17,4 +18,4 @@ export type ButtonIdentityTypesProps = Omit<ButtonPopupCheckboxProps<ListType>,
|
|
|
17
18
|
*/
|
|
18
19
|
onValueChange: (value: IdentityTypeFlags) => void;
|
|
19
20
|
};
|
|
20
|
-
export declare function ButtonIdentityTypes(props: ButtonIdentityTypesProps):
|
|
21
|
+
export declare function ButtonIdentityTypes(props: ButtonIdentityTypesProps): React.JSX.Element;
|
|
@@ -8,4 +8,4 @@ import { IdentityTypeFlags } from "@etsoo/appscript";
|
|
|
8
8
|
*/
|
|
9
9
|
export declare function IdentityFlagsList(props: Omit<SelectExProps<ListType>, "options"> & {
|
|
10
10
|
baseIdentity?: IdentityTypeFlags | true;
|
|
11
|
-
}): import("react
|
|
11
|
+
}): import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { ListType } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function IdentityTypeList(props: Omit<SelectExProps<ListType>, "options">): import("react
|
|
8
|
+
export declare function IdentityTypeList(props: Omit<SelectExProps<ListType>, "options">): import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { ListType } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function SearchDays(props: Omit<SelectExProps<ListType>, "options">): import("react
|
|
8
|
+
export declare function SearchDays(props: Omit<SelectExProps<ListType>, "options">): import("react").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" | "label">): import("react
|
|
8
|
+
export declare function StatusList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">): import("react").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" | "label">): import("react
|
|
8
|
+
export declare function UserRoleList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">): import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { ListType1 } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function DocumentKindList(props: Omit<SelectExProps<ListType1>, "options">): import("react
|
|
8
|
+
export declare function DocumentKindList(props: Omit<SelectExProps<ListType1>, "options">): import("react").JSX.Element;
|
|
@@ -34,4 +34,4 @@ export type DocumentTiplistProps = Omit<TiplistProps<DocumentListData, "id">, "l
|
|
|
34
34
|
* @param props Properties
|
|
35
35
|
* @returns Component
|
|
36
36
|
*/
|
|
37
|
-
export declare function DocumentTiplist(props: DocumentTiplistProps): import("react
|
|
37
|
+
export declare function DocumentTiplist(props: DocumentTiplistProps): import("react").JSX.Element;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ListType } from "@etsoo/shared";
|
|
2
|
+
import React from "react";
|
|
2
3
|
import { ButtonPopupRadioProps } from "@etsoo/materialui";
|
|
3
4
|
import { CoreApiService } from "../../dto/org/CoreApiService";
|
|
4
5
|
export type ButtonApiServicesProps = Omit<ButtonPopupRadioProps<ListType>, "labelField" | "loadData" | "value" | "onValueChange"> & {
|
|
@@ -13,4 +14,4 @@ export type ButtonApiServicesProps = Omit<ButtonPopupRadioProps<ListType>, "labe
|
|
|
13
14
|
*/
|
|
14
15
|
onValueChange: (value: CoreApiService) => void;
|
|
15
16
|
};
|
|
16
|
-
export declare function ButtonApiServices(props: ButtonApiServicesProps):
|
|
17
|
+
export declare function ButtonApiServices(props: ButtonApiServicesProps): React.JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
export type OrgSwitchPopoverProps = {
|
|
2
3
|
appId?: number;
|
|
3
4
|
organizationName?: string;
|
|
4
5
|
};
|
|
5
|
-
export declare function OrgSwitchPopover(props: OrgSwitchPopoverProps):
|
|
6
|
+
export declare function OrgSwitchPopover(props: OrgSwitchPopoverProps): React.JSX.Element;
|
|
@@ -30,4 +30,4 @@ export type OrgTiplistProps = Omit<TiplistProps<OrgListDto, "id">, "loadData" |
|
|
|
30
30
|
* @param props Properties
|
|
31
31
|
* @returns Component
|
|
32
32
|
*/
|
|
33
|
-
export declare function OrgTiplist(props: OrgTiplistProps): import("react
|
|
33
|
+
export declare function OrgTiplist(props: OrgTiplistProps): import("react").JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TiplistProps } from "@etsoo/materialui";
|
|
2
2
|
import { PlaceCommon } from "../../dto/public/PlaceCommon";
|
|
3
|
+
import React from "react";
|
|
3
4
|
import { MapApiProvider } from "@etsoo/appscript";
|
|
4
5
|
/**
|
|
5
6
|
* Address tiplist component props
|
|
@@ -17,4 +18,4 @@ export type AddressTiplistProps = Omit<TiplistProps<PlaceCommon, "placeId">, "id
|
|
|
17
18
|
* @param props Properties
|
|
18
19
|
* @returns Component
|
|
19
20
|
*/
|
|
20
|
-
export declare function AddressTiplist(props: AddressTiplistProps):
|
|
21
|
+
export declare function AddressTiplist(props: AddressTiplistProps): React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { ButtonPopupCheckboxProps } from "@etsoo/materialui";
|
|
2
2
|
import { CultureItem } from "@etsoo/appscript";
|
|
3
|
-
|
|
3
|
+
import React from "react";
|
|
4
|
+
export declare function ButtonCultures(props: Omit<ButtonPopupCheckboxProps<CultureItem>, "labelField" | "loadData">): React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { ButtonPopupCheckboxProps } from "@etsoo/materialui";
|
|
2
2
|
import { CurrencyItem } from "../../dto/public/CurrencyItem";
|
|
3
|
-
|
|
3
|
+
import React from "react";
|
|
4
|
+
export declare function ButtonCurrencies(props: Omit<ButtonPopupCheckboxProps<CurrencyItem>, "labelField" | "loadData">): React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { ButtonPopupRadioProps } from "@etsoo/materialui";
|
|
2
|
+
import React from "react";
|
|
2
3
|
import { RegionData } from "../../dto/public/RegionData";
|
|
3
|
-
export declare function ButtonRadioRegions(props: Omit<ButtonPopupRadioProps<RegionData>, "labelField" | "loadData">):
|
|
4
|
+
export declare function ButtonRadioRegions(props: Omit<ButtonPopupRadioProps<RegionData>, "labelField" | "loadData">): React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { ButtonPopupCheckboxProps } from "@etsoo/materialui";
|
|
2
2
|
import { RegionData } from "../../dto/public/RegionData";
|
|
3
|
-
|
|
3
|
+
import React from "react";
|
|
4
|
+
export declare function ButtonRegions(props: Omit<ButtonPopupCheckboxProps<RegionData>, "labelField" | "loadData">): React.JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { ListType1 } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function CultureList(props: Omit<SelectExProps<ListType1>, "options">): import("react
|
|
8
|
+
export declare function CultureList(props: Omit<SelectExProps<ListType1>, "options">): import("react").JSX.Element;
|
|
@@ -18,4 +18,4 @@ export type ProductBaseUnitsProps = DataTypes.Optional<Omit<ComboBoxProps<ListTy
|
|
|
18
18
|
* @param props Props
|
|
19
19
|
* @returns Component
|
|
20
20
|
*/
|
|
21
|
-
export declare function ProductBaseUnits(props: ProductBaseUnitsProps): import("react
|
|
21
|
+
export declare function ProductBaseUnits(props: ProductBaseUnitsProps): import("react").JSX.Element;
|
|
@@ -30,4 +30,4 @@ export type UserTiplistProps = Omit<TiplistProps<MemberListDto, "id">, "loadData
|
|
|
30
30
|
* @param props Properties
|
|
31
31
|
* @returns Component
|
|
32
32
|
*/
|
|
33
|
-
export declare function UserTiplist(props: UserTiplistProps): import("react
|
|
33
|
+
export declare function UserTiplist(props: UserTiplistProps): import("react").JSX.Element;
|
package/lib/cjs/i18n/en.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
export type AppSwitchPopoverProps = {
|
|
2
3
|
appName: string;
|
|
3
4
|
};
|
|
4
|
-
export declare function AppSwitchPopover(props: AppSwitchPopoverProps):
|
|
5
|
+
export declare function AppSwitchPopover(props: AppSwitchPopoverProps): React.JSX.Element;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ButtonPopupCheckboxProps } from "@etsoo/materialui";
|
|
2
2
|
import { ListType } from "@etsoo/shared";
|
|
3
3
|
import { IdentityTypeFlags } from "@etsoo/appscript";
|
|
4
|
+
import React from "react";
|
|
4
5
|
export type ButtonIdentityTypesProps = Omit<ButtonPopupCheckboxProps<ListType>, "labelField" | "loadData" | "value" | "onValueChange"> & {
|
|
5
6
|
/**
|
|
6
7
|
* Base identity type
|
|
@@ -17,4 +18,4 @@ export type ButtonIdentityTypesProps = Omit<ButtonPopupCheckboxProps<ListType>,
|
|
|
17
18
|
*/
|
|
18
19
|
onValueChange: (value: IdentityTypeFlags) => void;
|
|
19
20
|
};
|
|
20
|
-
export declare function ButtonIdentityTypes(props: ButtonIdentityTypesProps):
|
|
21
|
+
export declare function ButtonIdentityTypes(props: ButtonIdentityTypesProps): React.JSX.Element;
|
|
@@ -8,4 +8,4 @@ import { IdentityTypeFlags } from "@etsoo/appscript";
|
|
|
8
8
|
*/
|
|
9
9
|
export declare function IdentityFlagsList(props: Omit<SelectExProps<ListType>, "options"> & {
|
|
10
10
|
baseIdentity?: IdentityTypeFlags | true;
|
|
11
|
-
}): import("react
|
|
11
|
+
}): import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { ListType } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function IdentityTypeList(props: Omit<SelectExProps<ListType>, "options">): import("react
|
|
8
|
+
export declare function IdentityTypeList(props: Omit<SelectExProps<ListType>, "options">): import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { ListType } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function SearchDays(props: Omit<SelectExProps<ListType>, "options">): import("react
|
|
8
|
+
export declare function SearchDays(props: Omit<SelectExProps<ListType>, "options">): import("react").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" | "label">): import("react
|
|
8
|
+
export declare function StatusList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">): import("react").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" | "label">): import("react
|
|
8
|
+
export declare function UserRoleList(props: DataTypes.Optional<Omit<ComboBoxProps, "options">, "name" | "label">): import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { ListType1 } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function DocumentKindList(props: Omit<SelectExProps<ListType1>, "options">): import("react
|
|
8
|
+
export declare function DocumentKindList(props: Omit<SelectExProps<ListType1>, "options">): import("react").JSX.Element;
|
|
@@ -34,4 +34,4 @@ export type DocumentTiplistProps = Omit<TiplistProps<DocumentListData, "id">, "l
|
|
|
34
34
|
* @param props Properties
|
|
35
35
|
* @returns Component
|
|
36
36
|
*/
|
|
37
|
-
export declare function DocumentTiplist(props: DocumentTiplistProps): import("react
|
|
37
|
+
export declare function DocumentTiplist(props: DocumentTiplistProps): import("react").JSX.Element;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ListType } from "@etsoo/shared";
|
|
2
|
+
import React from "react";
|
|
2
3
|
import { ButtonPopupRadioProps } from "@etsoo/materialui";
|
|
3
4
|
import { CoreApiService } from "../../dto/org/CoreApiService";
|
|
4
5
|
export type ButtonApiServicesProps = Omit<ButtonPopupRadioProps<ListType>, "labelField" | "loadData" | "value" | "onValueChange"> & {
|
|
@@ -13,4 +14,4 @@ export type ButtonApiServicesProps = Omit<ButtonPopupRadioProps<ListType>, "labe
|
|
|
13
14
|
*/
|
|
14
15
|
onValueChange: (value: CoreApiService) => void;
|
|
15
16
|
};
|
|
16
|
-
export declare function ButtonApiServices(props: ButtonApiServicesProps):
|
|
17
|
+
export declare function ButtonApiServices(props: ButtonApiServicesProps): React.JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
export type OrgSwitchPopoverProps = {
|
|
2
3
|
appId?: number;
|
|
3
4
|
organizationName?: string;
|
|
4
5
|
};
|
|
5
|
-
export declare function OrgSwitchPopover(props: OrgSwitchPopoverProps):
|
|
6
|
+
export declare function OrgSwitchPopover(props: OrgSwitchPopoverProps): React.JSX.Element;
|
|
@@ -30,4 +30,4 @@ export type OrgTiplistProps = Omit<TiplistProps<OrgListDto, "id">, "loadData" |
|
|
|
30
30
|
* @param props Properties
|
|
31
31
|
* @returns Component
|
|
32
32
|
*/
|
|
33
|
-
export declare function OrgTiplist(props: OrgTiplistProps): import("react
|
|
33
|
+
export declare function OrgTiplist(props: OrgTiplistProps): import("react").JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TiplistProps } from "@etsoo/materialui";
|
|
2
2
|
import { PlaceCommon } from "../../dto/public/PlaceCommon";
|
|
3
|
+
import React from "react";
|
|
3
4
|
import { MapApiProvider } from "@etsoo/appscript";
|
|
4
5
|
/**
|
|
5
6
|
* Address tiplist component props
|
|
@@ -17,4 +18,4 @@ export type AddressTiplistProps = Omit<TiplistProps<PlaceCommon, "placeId">, "id
|
|
|
17
18
|
* @param props Properties
|
|
18
19
|
* @returns Component
|
|
19
20
|
*/
|
|
20
|
-
export declare function AddressTiplist(props: AddressTiplistProps):
|
|
21
|
+
export declare function AddressTiplist(props: AddressTiplistProps): React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { ButtonPopupCheckboxProps } from "@etsoo/materialui";
|
|
2
2
|
import { CultureItem } from "@etsoo/appscript";
|
|
3
|
-
|
|
3
|
+
import React from "react";
|
|
4
|
+
export declare function ButtonCultures(props: Omit<ButtonPopupCheckboxProps<CultureItem>, "labelField" | "loadData">): React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { ButtonPopupCheckboxProps } from "@etsoo/materialui";
|
|
2
2
|
import { CurrencyItem } from "../../dto/public/CurrencyItem";
|
|
3
|
-
|
|
3
|
+
import React from "react";
|
|
4
|
+
export declare function ButtonCurrencies(props: Omit<ButtonPopupCheckboxProps<CurrencyItem>, "labelField" | "loadData">): React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { ButtonPopupRadioProps } from "@etsoo/materialui";
|
|
2
|
+
import React from "react";
|
|
2
3
|
import { RegionData } from "../../dto/public/RegionData";
|
|
3
|
-
export declare function ButtonRadioRegions(props: Omit<ButtonPopupRadioProps<RegionData>, "labelField" | "loadData">):
|
|
4
|
+
export declare function ButtonRadioRegions(props: Omit<ButtonPopupRadioProps<RegionData>, "labelField" | "loadData">): React.JSX.Element;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { ButtonPopupCheckboxProps } from "@etsoo/materialui";
|
|
2
2
|
import { RegionData } from "../../dto/public/RegionData";
|
|
3
|
-
|
|
3
|
+
import React from "react";
|
|
4
|
+
export declare function ButtonRegions(props: Omit<ButtonPopupCheckboxProps<RegionData>, "labelField" | "loadData">): React.JSX.Element;
|
|
@@ -5,4 +5,4 @@ import { ListType1 } from "@etsoo/shared";
|
|
|
5
5
|
* @param props Props
|
|
6
6
|
* @returns Component
|
|
7
7
|
*/
|
|
8
|
-
export declare function CultureList(props: Omit<SelectExProps<ListType1>, "options">): import("react
|
|
8
|
+
export declare function CultureList(props: Omit<SelectExProps<ListType1>, "options">): import("react").JSX.Element;
|
|
@@ -18,4 +18,4 @@ export type ProductBaseUnitsProps = DataTypes.Optional<Omit<ComboBoxProps<ListTy
|
|
|
18
18
|
* @param props Props
|
|
19
19
|
* @returns Component
|
|
20
20
|
*/
|
|
21
|
-
export declare function ProductBaseUnits(props: ProductBaseUnitsProps): import("react
|
|
21
|
+
export declare function ProductBaseUnits(props: ProductBaseUnitsProps): import("react").JSX.Element;
|
|
@@ -30,4 +30,4 @@ export type UserTiplistProps = Omit<TiplistProps<MemberListDto, "id">, "loadData
|
|
|
30
30
|
* @param props Properties
|
|
31
31
|
* @returns Component
|
|
32
32
|
*/
|
|
33
|
-
export declare function UserTiplist(props: UserTiplistProps): import("react
|
|
33
|
+
export declare function UserTiplist(props: UserTiplistProps): import("react").JSX.Element;
|
package/lib/mjs/i18n/en.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/smarterp-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.57",
|
|
4
4
|
"description": "TypeScript APIs for SmartERP Core",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -44,27 +44,27 @@
|
|
|
44
44
|
"@babel/plugin-transform-runtime": "^7.29.7",
|
|
45
45
|
"@babel/preset-env": "^7.29.7",
|
|
46
46
|
"@babel/runtime-corejs3": "^7.29.7",
|
|
47
|
-
"@types/react": "^19.2.
|
|
47
|
+
"@types/react": "^19.2.17",
|
|
48
48
|
"@types/react-dom": "^19.2.3",
|
|
49
49
|
"@vitejs/plugin-react": "^6.0.2",
|
|
50
50
|
"jsdom": "^29.1.1",
|
|
51
51
|
"typescript": "^6.0.3",
|
|
52
|
-
"vitest": "^4.1.
|
|
52
|
+
"vitest": "^4.1.8"
|
|
53
53
|
},
|
|
54
54
|
"overrides": {
|
|
55
55
|
"react": "$react",
|
|
56
56
|
"react-dom": "$react-dom"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@etsoo/appscript": "^1.6.
|
|
60
|
-
"@etsoo/materialui": "^1.6.
|
|
61
|
-
"@etsoo/react": "^1.8.
|
|
59
|
+
"@etsoo/appscript": "^1.6.66",
|
|
60
|
+
"@etsoo/materialui": "^1.6.69",
|
|
61
|
+
"@etsoo/react": "^1.8.91",
|
|
62
62
|
"@etsoo/shared": "^1.2.84",
|
|
63
63
|
"@etsoo/toolpad": "^1.0.49",
|
|
64
64
|
"@mui/material": "^9.0.1",
|
|
65
65
|
"ajv": "^8.20.0",
|
|
66
66
|
"ajv-formats": "^3.0.1",
|
|
67
|
-
"react": "^19.2.
|
|
68
|
-
"react-dom": "^19.2.
|
|
67
|
+
"react": "^19.2.7",
|
|
68
|
+
"react-dom": "^19.2.7"
|
|
69
69
|
}
|
|
70
70
|
}
|
package/src/i18n/en.json
CHANGED
package/src/i18n/zh-Hans.json
CHANGED
package/src/i18n/zh-Hant.json
CHANGED