@ticatec/uniface-element 0.1.32 → 0.1.33

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.
@@ -8,8 +8,8 @@ declare global {
8
8
  Dialog: IDialog;
9
9
  }
10
10
  }
11
+ export default Dialog;
11
12
  export { type IDialog };
12
13
  export { type DialogCloseConfirm };
13
14
  export { DialogBoard };
14
- export default Dialog;
15
15
  export { CommonDialog };
@@ -1,8 +1,8 @@
1
1
  import Dialog from "./Dialog.svelte";
2
2
  import DialogBoard from "./DialogBoard.svelte";
3
3
  import CommonDialog from "./CommonDialog.svelte";
4
+ export default Dialog;
4
5
  export {};
5
6
  export {};
6
7
  export { DialogBoard };
7
- export default Dialog;
8
8
  export { CommonDialog };
package/dist/index.d.ts CHANGED
@@ -1,15 +1,9 @@
1
1
  import { DateContext } from "./base-calendar";
2
- import type CardAction from "./card/CardAction";
3
- import type { DialogCloseConfirm, IDialog } from './dialog';
2
+ import type { IDialog } from './dialog';
4
3
  import { type IMessageBox, ModalResult } from "./message-box";
5
4
  import type { Toast } from "./toast";
6
5
  import type { Indicator } from "./indicator";
7
- import type { UnitOption } from "./unit-number-editor";
8
6
  import { DisplayMode } from "./common/DisplayMode.js";
9
- import type { FunFilter, LazyLoader, LoadResult } from "./list-box";
10
- import type { ActionsColumn, FormatCell, CellHint, IndicatorColumn, RowAction, GetRowActions, ActionFunction, DataColumn } from "./data-table";
11
- import type { ContextMenuItem, OnContextMenu, ActionCallback } from "./context-menu";
12
- import type { MouseClickHandler } from "./common/MouseClickHandler";
13
7
  export { DateContext, ModalResult, DisplayMode };
14
8
  declare global {
15
9
  interface Window {
@@ -19,8 +13,3 @@ declare global {
19
13
  Dialog: IDialog;
20
14
  }
21
15
  }
22
- export type { CardAction, IDialog, DialogCloseConfirm, IMessageBox, Toast, UnitOption };
23
- export type { MouseClickHandler };
24
- export type { LazyLoader, FunFilter, LoadResult };
25
- export type { ActionsColumn, FormatCell, CellHint, IndicatorColumn, RowAction, GetRowActions, ActionFunction, DataColumn };
26
- export type { ContextMenuItem, OnContextMenu, ActionCallback };
@@ -0,0 +1,7 @@
1
+ import type { OnChangeHandler } from "./common/OnChangeHandler";
2
+ import type { MouseClickHandler } from "./common/MouseClickHandler";
3
+ import { DisplayMode } from "./common/DisplayMode.js";
4
+ import { DateContext } from "./base-calendar";
5
+ import { ModalResult } from "./message-box";
6
+ export { DateContext, ModalResult, DisplayMode };
7
+ export type { OnChangeHandler, MouseClickHandler };
package/dist/types.js ADDED
@@ -0,0 +1,4 @@
1
+ import { DisplayMode } from "./common/DisplayMode.js";
2
+ import { DateContext } from "./base-calendar";
3
+ import { ModalResult } from "./message-box";
4
+ export { DateContext, ModalResult, DisplayMode };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ticatec/uniface-element",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "description": "uniface web elements",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -28,6 +28,10 @@
28
28
  "types": "./dist/index.d.ts",
29
29
  "import": "./dist/index.js"
30
30
  },
31
+ "./types": {
32
+ "types": "./dist/types.d.ts",
33
+ "import": "./dist/types.js"
34
+ },
31
35
  "./i18n_resources": {
32
36
  "types": "./dist/i18n_resources/index.d.ts",
33
37
  "import": "./dist/i18n_resources/index.js"