@etsoo/materialui 1.3.32 → 1.3.34

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.
@@ -1,13 +1,13 @@
1
- import { IAppSettings } from '@etsoo/appscript';
2
- import { DataTypes } from '@etsoo/shared';
1
+ import { IAppSettings } from "@etsoo/appscript";
2
+ import { IdType } from "@etsoo/shared";
3
3
 
4
4
  /**
5
5
  * Service app settings interface
6
6
  */
7
- export interface IServiceAppSettings<S extends DataTypes.IdType = number>
8
- extends IAppSettings {
9
- /**
10
- * Service id
11
- */
12
- readonly serviceId: S;
7
+ export interface IServiceAppSettings<S extends IdType = number>
8
+ extends IAppSettings {
9
+ /**
10
+ * Service id
11
+ */
12
+ readonly serviceId: S;
13
13
  }
@@ -1,4 +1,5 @@
1
- import { IActionResult, IUser } from "@etsoo/appscript";
1
+ import { IUser } from "@etsoo/appscript";
2
+ import { IActionResult } from "@etsoo/shared";
2
3
 
3
4
  /**
4
5
  * Service user interface
@@ -1,4 +1,5 @@
1
- import { IActionResult, IUser } from "@etsoo/appscript";
1
+ import { IUser } from "@etsoo/appscript";
2
+ import { IActionResult } from "@etsoo/shared";
2
3
 
3
4
  /**
4
5
  * SmartERP user interface
@@ -2,7 +2,6 @@ import {
2
2
  BridgeUtils,
3
3
  CoreApp,
4
4
  createClient,
5
- IActionResult,
6
5
  IApp,
7
6
  IAppSettings,
8
7
  ICoreApp,
@@ -14,7 +13,7 @@ import {
14
13
  NotificationRenderProps,
15
14
  NotificationReturn
16
15
  } from "@etsoo/notificationbase";
17
- import { DataTypes, WindowStorage } from "@etsoo/shared";
16
+ import { DataTypes, IActionResult, WindowStorage } from "@etsoo/shared";
18
17
  import React from "react";
19
18
  import { NotifierMU } from "../NotifierMU";
20
19
  import { ProgressCount } from "../ProgressCount";
@@ -1,7 +1,6 @@
1
1
  import {
2
2
  BridgeUtils,
3
3
  createClient,
4
- IActionResult,
5
4
  IApi,
6
5
  IApiPayload,
7
6
  RefreshTokenProps,
@@ -9,7 +8,7 @@ import {
9
8
  RefreshTokenRQ
10
9
  } from "@etsoo/appscript";
11
10
  import { CoreConstants } from "@etsoo/react";
12
- import { DomUtils } from "@etsoo/shared";
11
+ import { DomUtils, IActionResult } from "@etsoo/shared";
13
12
  import { IServiceApp } from "./IServiceApp";
14
13
  import { IServiceAppSettings } from "./IServiceAppSettings";
15
14
  import { IServicePageData } from "./IServicePage";
package/src/index.ts CHANGED
@@ -59,6 +59,7 @@ export * from "./DnDList";
59
59
  export * from "./DraggablePaperComponent";
60
60
  export * from "./EmailInput";
61
61
  export * from "./FabBox";
62
+ export * from "./FieldSetEx";
62
63
  export * from "./FileUploadButton";
63
64
  export * from "./FlexBox";
64
65
  export * from "./GridDataFormat";
@@ -86,6 +87,7 @@ export * from "./NotifierPopupProps";
86
87
  export * from "./NumberInputField";
87
88
  export * from "./OptionBool";
88
89
  export * from "./OptionGroup";
90
+ export * from "./OptionGroupFlag";
89
91
  export * from "./PercentCircularProgress";
90
92
  export * from "./PercentLinearProgress";
91
93
  export * from "./PList";