@arsedizioni/ars-utils 18.4.46 → 18.4.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arsedizioni/ars-utils",
3
- "version": "18.4.46",
3
+ "version": "18.4.48",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -46,18 +46,18 @@
46
46
  "esm": "./esm2022/clipper.ui/arsedizioni-ars-utils-clipper.ui.mjs",
47
47
  "default": "./fesm2022/arsedizioni-ars-utils-clipper.ui.mjs"
48
48
  },
49
- "./core": {
50
- "types": "./core/index.d.ts",
51
- "esm2022": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
52
- "esm": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
53
- "default": "./fesm2022/arsedizioni-ars-utils-core.mjs"
54
- },
55
49
  "./evolution.common": {
56
50
  "types": "./evolution.common/index.d.ts",
57
51
  "esm2022": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
58
52
  "esm": "./esm2022/evolution.common/arsedizioni-ars-utils-evolution.common.mjs",
59
53
  "default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
60
54
  },
55
+ "./core": {
56
+ "types": "./core/index.d.ts",
57
+ "esm2022": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
58
+ "esm": "./esm2022/core/arsedizioni-ars-utils-core.mjs",
59
+ "default": "./fesm2022/arsedizioni-ars-utils-core.mjs"
60
+ },
61
61
  "./help": {
62
62
  "types": "./help/index.d.ts",
63
63
  "esm2022": "./esm2022/help/arsedizioni-ars-utils-help.mjs",
@@ -4,13 +4,13 @@ export interface SelectDialogResult {
4
4
  }
5
5
  export interface SelectDialogLookup {
6
6
  items: any[];
7
- filter?: string;
7
+ filter?: string | null;
8
8
  params?: any;
9
9
  owner?: any;
10
10
  }
11
11
  export interface SelectDialogFilter {
12
12
  items: any[];
13
- filter?: string;
13
+ filter?: string | null;
14
14
  filterOption?: any;
15
15
  owner?: any;
16
16
  }
@@ -28,46 +28,46 @@ export interface SelectFile {
28
28
  }
29
29
  export interface SelectDialogData {
30
30
  title: string;
31
- description?: string;
32
- okCaption?: string;
33
- maxItems?: number;
34
- multi?: boolean;
35
- mustSelect?: boolean;
36
- width?: number;
37
- filter?: string;
31
+ description?: string | null;
32
+ okCaption?: string | null;
33
+ maxItems?: number | null;
34
+ multipleSelection?: boolean | null;
35
+ mustSelect?: boolean | null;
36
+ width?: number | null;
37
+ filter?: string | null;
38
38
  filters?: any;
39
39
  items?: any;
40
40
  lookupFields?: any;
41
- lookupOnInit?: boolean;
42
- emptyMessage?: string;
43
- canLookupWithOptions?: boolean;
44
- canLookup?: boolean;
45
- canDelete?: boolean;
46
- canAppend?: boolean;
47
- canEdit?: boolean;
48
- canView?: boolean;
49
- canFilter?: boolean;
50
- canPaginate?: boolean;
51
- pageSize?: number;
52
- appearance?: string;
53
- header?: string;
41
+ lookupOnInit?: boolean | null;
42
+ emptyMessage?: string | null;
43
+ canLookupWithOptions?: boolean | null;
44
+ canLookup?: boolean | null;
45
+ canDelete?: boolean | null;
46
+ canAppend?: boolean | null;
47
+ canEdit?: boolean | null;
48
+ canView?: boolean | null;
49
+ canFilter?: boolean | null;
50
+ canPaginate?: boolean | null;
51
+ pageSize?: number | null;
52
+ appearance?: string | null;
53
+ header?: string | null;
54
54
  }
55
55
  export interface SelectTreeDialogData {
56
56
  title: string;
57
- description?: string;
58
- okCaption?: string;
59
- nodes?: any;
60
- initialFilter?: string;
61
- appearance?: string;
57
+ description?: string | null;
58
+ okCaption?: string | null;
59
+ nodes?: any | null;
60
+ initialFilter?: string | null;
61
+ appearance?: string | null;
62
62
  }
63
63
  export interface SelectFileDialogData {
64
64
  title: string;
65
- description?: string;
66
- okCaption?: string;
67
- helpLink?: string;
68
- helpCaption?: string;
65
+ description?: string | null;
66
+ okCaption?: string | null;
67
+ helpLink?: string | null;
68
+ helpCaption?: string | null;
69
69
  options?: any;
70
- appearance?: string;
70
+ appearance?: string | null;
71
71
  }
72
72
  export declare class SelectableItem implements Searchable {
73
73
  bag: any;
@@ -80,9 +80,9 @@ export declare class SelectableItem implements Searchable {
80
80
  export declare class ItemNode {
81
81
  id: string;
82
82
  name: string;
83
- count?: number;
84
- parent?: ItemNode;
85
- children?: ItemNode[];
83
+ count?: number | null;
84
+ parent?: ItemNode | null;
85
+ children?: ItemNode[] | null;
86
86
  bag: any;
87
87
  }
88
88
  export declare class SelectableNode extends ItemNode implements Searchable {