@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.
Files changed (67) hide show
  1. package/lib/cjs/components/app/AppSwitchPopover.d.ts +2 -1
  2. package/lib/cjs/components/app/ButtonIdentityTypes.d.ts +2 -1
  3. package/lib/cjs/components/app/IdentityFlagsList.d.ts +1 -1
  4. package/lib/cjs/components/app/IdentityTypeList.d.ts +1 -1
  5. package/lib/cjs/components/app/SearchDays.d.ts +1 -1
  6. package/lib/cjs/components/app/StatusList.d.ts +1 -1
  7. package/lib/cjs/components/app/UserRoleList.d.ts +1 -1
  8. package/lib/cjs/components/document/DocumentKindList.d.ts +1 -1
  9. package/lib/cjs/components/document/DocumentTiplist.d.ts +1 -1
  10. package/lib/cjs/components/org/ButtonApiServices.d.ts +2 -1
  11. package/lib/cjs/components/org/OrgSwitchPopover.d.ts +2 -1
  12. package/lib/cjs/components/org/OrgTiplist.d.ts +1 -1
  13. package/lib/cjs/components/public/AddressTiplist.d.ts +2 -1
  14. package/lib/cjs/components/public/ButtonCultures.d.ts +2 -1
  15. package/lib/cjs/components/public/ButtonCurrencies.d.ts +2 -1
  16. package/lib/cjs/components/public/ButtonRadioRegions.d.ts +2 -1
  17. package/lib/cjs/components/public/ButtonRegions.d.ts +2 -1
  18. package/lib/cjs/components/public/CultureList.d.ts +1 -1
  19. package/lib/cjs/components/public/ProductBaseUnits.d.ts +1 -1
  20. package/lib/cjs/components/user/UserTiplist.d.ts +1 -1
  21. package/lib/cjs/dto/document/DocumentKind.d.ts +1 -0
  22. package/lib/cjs/dto/document/DocumentKind.js +1 -0
  23. package/lib/cjs/dto/org/OrgReadDto.d.ts +4 -0
  24. package/lib/cjs/dto/org/OrgUpdateReadDto.d.ts +4 -0
  25. package/lib/cjs/i18n/en.json +1 -0
  26. package/lib/cjs/i18n/zh-Hans.json +1 -0
  27. package/lib/cjs/i18n/zh-Hant.json +1 -0
  28. package/lib/cjs/rq/org/OrgCreateRQ.d.ts +4 -0
  29. package/lib/cjs/rq/org/OrgUpdateRQ.d.ts +4 -0
  30. package/lib/mjs/components/app/AppSwitchPopover.d.ts +2 -1
  31. package/lib/mjs/components/app/ButtonIdentityTypes.d.ts +2 -1
  32. package/lib/mjs/components/app/IdentityFlagsList.d.ts +1 -1
  33. package/lib/mjs/components/app/IdentityTypeList.d.ts +1 -1
  34. package/lib/mjs/components/app/SearchDays.d.ts +1 -1
  35. package/lib/mjs/components/app/StatusList.d.ts +1 -1
  36. package/lib/mjs/components/app/UserRoleList.d.ts +1 -1
  37. package/lib/mjs/components/document/DocumentKindList.d.ts +1 -1
  38. package/lib/mjs/components/document/DocumentTiplist.d.ts +1 -1
  39. package/lib/mjs/components/org/ButtonApiServices.d.ts +2 -1
  40. package/lib/mjs/components/org/OrgSwitchPopover.d.ts +2 -1
  41. package/lib/mjs/components/org/OrgTiplist.d.ts +1 -1
  42. package/lib/mjs/components/public/AddressTiplist.d.ts +2 -1
  43. package/lib/mjs/components/public/ButtonCultures.d.ts +2 -1
  44. package/lib/mjs/components/public/ButtonCurrencies.d.ts +2 -1
  45. package/lib/mjs/components/public/ButtonRadioRegions.d.ts +2 -1
  46. package/lib/mjs/components/public/ButtonRegions.d.ts +2 -1
  47. package/lib/mjs/components/public/CultureList.d.ts +1 -1
  48. package/lib/mjs/components/public/ProductBaseUnits.d.ts +1 -1
  49. package/lib/mjs/components/user/UserTiplist.d.ts +1 -1
  50. package/lib/mjs/dto/document/DocumentKind.d.ts +1 -0
  51. package/lib/mjs/dto/document/DocumentKind.js +1 -0
  52. package/lib/mjs/dto/org/OrgReadDto.d.ts +4 -0
  53. package/lib/mjs/dto/org/OrgUpdateReadDto.d.ts +4 -0
  54. package/lib/mjs/i18n/en.json +1 -0
  55. package/lib/mjs/i18n/zh-Hans.json +1 -0
  56. package/lib/mjs/i18n/zh-Hant.json +1 -0
  57. package/lib/mjs/rq/org/OrgCreateRQ.d.ts +4 -0
  58. package/lib/mjs/rq/org/OrgUpdateRQ.d.ts +4 -0
  59. package/package.json +8 -8
  60. package/src/dto/document/DocumentKind.ts +1 -0
  61. package/src/dto/org/OrgReadDto.ts +5 -0
  62. package/src/dto/org/OrgUpdateReadDto.ts +5 -0
  63. package/src/i18n/en.json +1 -0
  64. package/src/i18n/zh-Hans.json +1 -0
  65. package/src/i18n/zh-Hant.json +1 -0
  66. package/src/rq/org/OrgCreateRQ.ts +5 -0
  67. 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): import("react/jsx-runtime").JSX.Element;
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): import("react/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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): import("react/jsx-runtime").JSX.Element;
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): import("react/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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): import("react/jsx-runtime").JSX.Element;
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
- export declare function ButtonCultures(props: Omit<ButtonPopupCheckboxProps<CultureItem>, "labelField" | "loadData">): import("react/jsx-runtime").JSX.Element;
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
- export declare function ButtonCurrencies(props: Omit<ButtonPopupCheckboxProps<CurrencyItem>, "labelField" | "loadData">): import("react/jsx-runtime").JSX.Element;
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">): import("react/jsx-runtime").JSX.Element;
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
- export declare function ButtonRegions(props: Omit<ButtonPopupCheckboxProps<RegionData>, "labelField" | "loadData">): import("react/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
33
+ export declare function UserTiplist(props: UserTiplistProps): import("react").JSX.Element;
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * Template document kind, the value should not exceed 20 characters
3
+ * @see PlatformShared.Dto.Document.DocumentKind
3
4
  * 模板文档类型,值不能超过20个字符
4
5
  */
5
6
  export declare enum DocumentKind {
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DocumentKind = void 0;
4
4
  /**
5
5
  * Template document kind, the value should not exceed 20 characters
6
+ * @see PlatformShared.Dto.Document.DocumentKind
6
7
  * 模板文档类型,值不能超过20个字符
7
8
  */
8
9
  var DocumentKind;
@@ -24,6 +24,10 @@ export type OrgReadDto = {
24
24
  * Brand
25
25
  */
26
26
  brand?: string;
27
+ /**
28
+ * Slogan
29
+ */
30
+ slogan?: string;
27
31
  /**
28
32
  * Logo
29
33
  */
@@ -16,6 +16,10 @@ export type OrgUpdateReadDto = {
16
16
  * Brand
17
17
  */
18
18
  brand?: string;
19
+ /**
20
+ * Slogan
21
+ */
22
+ slogan?: string;
19
23
  /**
20
24
  * PIN
21
25
  */
@@ -106,6 +106,7 @@
106
106
  "roleOperator": "Operator",
107
107
  "rolePartner": "Channel Partner",
108
108
  "roleUser": "User",
109
+ "slogan": "Slogan",
109
110
  "smarterp": "SmartERP Cloud",
110
111
  "signin": "Sign in",
111
112
  "signout": "Sign out",
@@ -106,6 +106,7 @@
106
106
  "roleOperator": "操作员",
107
107
  "rolePartner": "渠道伙伴",
108
108
  "roleUser": "用户",
109
+ "slogan": "标语",
109
110
  "smarterp": "司友®云ERP",
110
111
  "signin": "登录",
111
112
  "signout": "退出",
@@ -108,6 +108,7 @@
108
108
  "roleUser": "用戶",
109
109
  "signin": "登入",
110
110
  "signout": "登出",
111
+ "slogan": "標語",
111
112
  "smarterp": "司友®雲ERP",
112
113
  "signoutSuccess": "登出成功,請關閉目前視窗",
113
114
  "size": "大小",
@@ -14,6 +14,10 @@ export type OrgCreateRQ = {
14
14
  * 品牌
15
15
  */
16
16
  brand?: string;
17
+ /**
18
+ * Slogan
19
+ */
20
+ slogan?: string;
17
21
  /**
18
22
  * PIN, unique code
19
23
  * PIN,唯一代码
@@ -14,6 +14,10 @@ export interface OrgUpdateRQ extends UpdateModel {
14
14
  * 品牌
15
15
  */
16
16
  brand?: string;
17
+ /**
18
+ * Slogan
19
+ */
20
+ slogan?: string;
17
21
  /**
18
22
  * PIN, unique code
19
23
  * PIN,唯一代码
@@ -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): import("react/jsx-runtime").JSX.Element;
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): import("react/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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): import("react/jsx-runtime").JSX.Element;
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): import("react/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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): import("react/jsx-runtime").JSX.Element;
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
- export declare function ButtonCultures(props: Omit<ButtonPopupCheckboxProps<CultureItem>, "labelField" | "loadData">): import("react/jsx-runtime").JSX.Element;
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
- export declare function ButtonCurrencies(props: Omit<ButtonPopupCheckboxProps<CurrencyItem>, "labelField" | "loadData">): import("react/jsx-runtime").JSX.Element;
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">): import("react/jsx-runtime").JSX.Element;
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
- export declare function ButtonRegions(props: Omit<ButtonPopupCheckboxProps<RegionData>, "labelField" | "loadData">): import("react/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
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/jsx-runtime").JSX.Element;
33
+ export declare function UserTiplist(props: UserTiplistProps): import("react").JSX.Element;
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * Template document kind, the value should not exceed 20 characters
3
+ * @see PlatformShared.Dto.Document.DocumentKind
3
4
  * 模板文档类型,值不能超过20个字符
4
5
  */
5
6
  export declare enum DocumentKind {
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * Template document kind, the value should not exceed 20 characters
3
+ * @see PlatformShared.Dto.Document.DocumentKind
3
4
  * 模板文档类型,值不能超过20个字符
4
5
  */
5
6
  export var DocumentKind;
@@ -24,6 +24,10 @@ export type OrgReadDto = {
24
24
  * Brand
25
25
  */
26
26
  brand?: string;
27
+ /**
28
+ * Slogan
29
+ */
30
+ slogan?: string;
27
31
  /**
28
32
  * Logo
29
33
  */
@@ -16,6 +16,10 @@ export type OrgUpdateReadDto = {
16
16
  * Brand
17
17
  */
18
18
  brand?: string;
19
+ /**
20
+ * Slogan
21
+ */
22
+ slogan?: string;
19
23
  /**
20
24
  * PIN
21
25
  */
@@ -106,6 +106,7 @@
106
106
  "roleOperator": "Operator",
107
107
  "rolePartner": "Channel Partner",
108
108
  "roleUser": "User",
109
+ "slogan": "Slogan",
109
110
  "smarterp": "SmartERP Cloud",
110
111
  "signin": "Sign in",
111
112
  "signout": "Sign out",
@@ -106,6 +106,7 @@
106
106
  "roleOperator": "操作员",
107
107
  "rolePartner": "渠道伙伴",
108
108
  "roleUser": "用户",
109
+ "slogan": "标语",
109
110
  "smarterp": "司友®云ERP",
110
111
  "signin": "登录",
111
112
  "signout": "退出",
@@ -108,6 +108,7 @@
108
108
  "roleUser": "用戶",
109
109
  "signin": "登入",
110
110
  "signout": "登出",
111
+ "slogan": "標語",
111
112
  "smarterp": "司友®雲ERP",
112
113
  "signoutSuccess": "登出成功,請關閉目前視窗",
113
114
  "size": "大小",
@@ -14,6 +14,10 @@ export type OrgCreateRQ = {
14
14
  * 品牌
15
15
  */
16
16
  brand?: string;
17
+ /**
18
+ * Slogan
19
+ */
20
+ slogan?: string;
17
21
  /**
18
22
  * PIN, unique code
19
23
  * PIN,唯一代码
@@ -14,6 +14,10 @@ export interface OrgUpdateRQ extends UpdateModel {
14
14
  * 品牌
15
15
  */
16
16
  brand?: string;
17
+ /**
18
+ * Slogan
19
+ */
20
+ slogan?: string;
17
21
  /**
18
22
  * PIN, unique code
19
23
  * PIN,唯一代码
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/smarterp-core",
3
- "version": "1.1.55",
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.15",
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.7"
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.65",
60
- "@etsoo/materialui": "^1.6.68",
61
- "@etsoo/react": "^1.8.90",
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.6",
68
- "react-dom": "^19.2.6"
67
+ "react": "^19.2.7",
68
+ "react-dom": "^19.2.7"
69
69
  }
70
70
  }
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * Template document kind, the value should not exceed 20 characters
3
+ * @see PlatformShared.Dto.Document.DocumentKind
3
4
  * 模板文档类型,值不能超过20个字符
4
5
  */
5
6
  export enum DocumentKind {
@@ -30,6 +30,11 @@ export type OrgReadDto = {
30
30
  */
31
31
  brand?: string;
32
32
 
33
+ /**
34
+ * Slogan
35
+ */
36
+ slogan?: string;
37
+
33
38
  /**
34
39
  * Logo
35
40
  */
@@ -20,6 +20,11 @@ export type OrgUpdateReadDto = {
20
20
  */
21
21
  brand?: string;
22
22
 
23
+ /**
24
+ * Slogan
25
+ */
26
+ slogan?: string;
27
+
23
28
  /**
24
29
  * PIN
25
30
  */
package/src/i18n/en.json CHANGED
@@ -106,6 +106,7 @@
106
106
  "roleOperator": "Operator",
107
107
  "rolePartner": "Channel Partner",
108
108
  "roleUser": "User",
109
+ "slogan": "Slogan",
109
110
  "smarterp": "SmartERP Cloud",
110
111
  "signin": "Sign in",
111
112
  "signout": "Sign out",
@@ -106,6 +106,7 @@
106
106
  "roleOperator": "操作员",
107
107
  "rolePartner": "渠道伙伴",
108
108
  "roleUser": "用户",
109
+ "slogan": "标语",
109
110
  "smarterp": "司友®云ERP",
110
111
  "signin": "登录",
111
112
  "signout": "退出",
@@ -108,6 +108,7 @@
108
108
  "roleUser": "用戶",
109
109
  "signin": "登入",
110
110
  "signout": "登出",
111
+ "slogan": "標語",
111
112
  "smarterp": "司友®雲ERP",
112
113
  "signoutSuccess": "登出成功,請關閉目前視窗",
113
114
  "size": "大小",
@@ -17,6 +17,11 @@ export type OrgCreateRQ = {
17
17
  */
18
18
  brand?: string;
19
19
 
20
+ /**
21
+ * Slogan
22
+ */
23
+ slogan?: string;
24
+
20
25
  /**
21
26
  * PIN, unique code
22
27
  * PIN,唯一代码
@@ -17,6 +17,11 @@ export interface OrgUpdateRQ extends UpdateModel {
17
17
  */
18
18
  brand?: string;
19
19
 
20
+ /**
21
+ * Slogan
22
+ */
23
+ slogan?: string;
24
+
20
25
  /**
21
26
  * PIN, unique code
22
27
  * PIN,唯一代码