@arsedizioni/ars-utils 19.4.76 → 19.4.77
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/fesm2022/arsedizioni-ars-utils-ui.application.mjs +11 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +5 -5
- package/ui.application/ui/components/file-input/file-input.component.d.ts +1 -1
- package/ui.application/ui/components/filter-bar/filter-bar.component.d.ts +1 -1
- package/ui.application/ui/dialogs/select-tree/select-tree-dialog.component.d.ts +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arsedizioni/ars-utils",
|
|
3
|
-
"version": "19.4.
|
|
3
|
+
"version": "19.4.77",
|
|
4
4
|
"author": {
|
|
5
5
|
"email": "software@arsedizioni.it",
|
|
6
6
|
"name": "Fabio Buscaroli, Alberto Doria"
|
|
@@ -64,14 +64,14 @@
|
|
|
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"
|
|
@@ -35,7 +35,7 @@ export declare class FileInputComponent implements OnInit, OnDestroy, DoCheck, O
|
|
|
35
35
|
readonly minSizeMb: import("@angular/core").InputSignal<number>;
|
|
36
36
|
readonly isNew: import("@angular/core").InputSignal<boolean>;
|
|
37
37
|
readonly canPreview: import("@angular/core").InputSignal<boolean>;
|
|
38
|
-
readonly appearance: import("@angular/core").InputSignal<"
|
|
38
|
+
readonly appearance: import("@angular/core").InputSignal<"outline" | "fill">;
|
|
39
39
|
readonly accept: import("@angular/core").InputSignal<string>;
|
|
40
40
|
get empty(): boolean;
|
|
41
41
|
get errorState(): boolean;
|
|
@@ -23,7 +23,7 @@ export declare class FilterBarComponent implements OnInit {
|
|
|
23
23
|
readonly text2Length: import("@angular/core").InputSignal<string>;
|
|
24
24
|
readonly text3Length: import("@angular/core").InputSignal<string>;
|
|
25
25
|
readonly showTextSearchButton: import("@angular/core").InputSignal<boolean>;
|
|
26
|
-
readonly appearance: import("@angular/core").InputSignal<"
|
|
26
|
+
readonly appearance: import("@angular/core").InputSignal<"outline" | "fill">;
|
|
27
27
|
protected text?: string;
|
|
28
28
|
protected text2?: string;
|
|
29
29
|
protected text3?: string;
|
|
@@ -43,8 +43,7 @@ export declare class TreeDataSource implements OnDestroy {
|
|
|
43
43
|
static ɵprov: i0.ɵɵInjectableDeclaration<TreeDataSource>;
|
|
44
44
|
}
|
|
45
45
|
export interface SelectTreeDialogAppend {
|
|
46
|
-
parent?:
|
|
47
|
-
tree: TreeDataSource;
|
|
46
|
+
parent?: SelectableNode;
|
|
48
47
|
owner?: any;
|
|
49
48
|
}
|
|
50
49
|
export declare class SelectTreeDialogComponent implements OnInit, OnDestroy {
|
|
@@ -99,7 +98,12 @@ export declare class SelectTreeDialogComponent implements OnInit, OnDestroy {
|
|
|
99
98
|
* Expand a node and all its parents
|
|
100
99
|
* @param node : the selectable node to expand
|
|
101
100
|
*/
|
|
102
|
-
|
|
101
|
+
expand(node: SelectableNode): boolean;
|
|
102
|
+
/**
|
|
103
|
+
* Append a node to the tree
|
|
104
|
+
* @param node : the nodo to append
|
|
105
|
+
*/
|
|
106
|
+
appendNode(node: SelectableNode): void;
|
|
103
107
|
/**
|
|
104
108
|
* Append
|
|
105
109
|
*/
|