@arsedizioni/ars-utils 19.4.71 → 19.4.73

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": "19.4.71",
3
+ "version": "19.4.73",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -40,38 +40,38 @@
40
40
  "types": "./clipper.ui/index.d.ts",
41
41
  "default": "./fesm2022/arsedizioni-ars-utils-clipper.ui.mjs"
42
42
  },
43
- "./core": {
44
- "types": "./core/index.d.ts",
45
- "default": "./fesm2022/arsedizioni-ars-utils-core.mjs"
46
- },
47
43
  "./help": {
48
44
  "types": "./help/index.d.ts",
49
45
  "default": "./fesm2022/arsedizioni-ars-utils-help.mjs"
50
46
  },
47
+ "./core": {
48
+ "types": "./core/index.d.ts",
49
+ "default": "./fesm2022/arsedizioni-ars-utils-core.mjs"
50
+ },
51
51
  "./evolution.common": {
52
52
  "types": "./evolution.common/index.d.ts",
53
53
  "default": "./fesm2022/arsedizioni-ars-utils-evolution.common.mjs"
54
54
  },
55
- "./support.ui": {
56
- "types": "./support.ui/index.d.ts",
57
- "default": "./fesm2022/arsedizioni-ars-utils-support.ui.mjs"
58
- },
59
55
  "./support.common": {
60
56
  "types": "./support.common/index.d.ts",
61
57
  "default": "./fesm2022/arsedizioni-ars-utils-support.common.mjs"
62
58
  },
59
+ "./support.ui": {
60
+ "types": "./support.ui/index.d.ts",
61
+ "default": "./fesm2022/arsedizioni-ars-utils-support.ui.mjs"
62
+ },
63
63
  "./tinymce": {
64
64
  "types": "./tinymce/index.d.ts",
65
65
  "default": "./fesm2022/arsedizioni-ars-utils-tinymce.mjs"
66
66
  },
67
- "./ui": {
68
- "types": "./ui/index.d.ts",
69
- "default": "./fesm2022/arsedizioni-ars-utils-ui.mjs"
70
- },
71
67
  "./ui.application": {
72
68
  "types": "./ui.application/index.d.ts",
73
69
  "default": "./fesm2022/arsedizioni-ars-utils-ui.application.mjs"
74
70
  },
71
+ "./ui": {
72
+ "types": "./ui/index.d.ts",
73
+ "default": "./fesm2022/arsedizioni-ars-utils-ui.mjs"
74
+ },
75
75
  "./ui.oauth": {
76
76
  "types": "./ui.oauth/index.d.ts",
77
77
  "default": "./fesm2022/arsedizioni-ars-utils-ui.oauth.mjs"
@@ -79,10 +79,11 @@ export interface SelectTreeDialogData {
79
79
  title: string;
80
80
  description?: string;
81
81
  okCaption?: string;
82
- nodes?: any;
82
+ nodes?: ItemNode[];
83
83
  initialFilter?: string;
84
84
  appearance?: string;
85
85
  owner?: any;
86
+ canAppend?: boolean;
86
87
  }
87
88
  export interface SelectFileDialogData {
88
89
  title: string;
@@ -42,8 +42,14 @@ export declare class TreeDataSource implements OnDestroy {
42
42
  static ɵfac: i0.ɵɵFactoryDeclaration<TreeDataSource, never>;
43
43
  static ɵprov: i0.ɵɵInjectableDeclaration<TreeDataSource>;
44
44
  }
45
+ export interface SelectTreeDialogAppend {
46
+ parent?: ItemNode;
47
+ tree: TreeDataSource;
48
+ owner?: any;
49
+ }
45
50
  export declare class SelectTreeDialogComponent implements OnInit, OnDestroy {
46
51
  readonly done: import("@angular/core").OutputEmitterRef<SelectTreeDialogResult>;
52
+ readonly append: import("@angular/core").OutputEmitterRef<SelectTreeDialogAppend>;
47
53
  private unsubscribe;
48
54
  private dialogRef;
49
55
  protected dialogData: SelectTreeDialogData;
@@ -55,6 +61,7 @@ export declare class SelectTreeDialogComponent implements OnInit, OnDestroy {
55
61
  protected filterText: string;
56
62
  protected filteredItems: SelectableNode[];
57
63
  protected filterIndex: number;
64
+ protected canAppend: import("@angular/core").WritableSignal<boolean>;
58
65
  /**
59
66
  * Manage flat tree view
60
67
  */
@@ -93,6 +100,10 @@ export declare class SelectTreeDialogComponent implements OnInit, OnDestroy {
93
100
  * @param node : the selectable node to expand
94
101
  */
95
102
  protected expand(node: SelectableNode): boolean;
103
+ /**
104
+ * Append
105
+ */
106
+ protected doAppend(): void;
96
107
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectTreeDialogComponent, never>;
97
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectTreeDialogComponent, "ng-component", never, {}, { "done": "done"; }, never, never, true, never>;
108
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectTreeDialogComponent, "ng-component", never, {}, { "done": "done"; "append": "append"; }, never, never, true, never>;
98
109
  }