@qualcomm-ui/angular-core 1.1.0 → 1.2.0
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/dialog/index.d.ts.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-dialog.mjs +2 -1
- package/fesm2022/qualcomm-ui-angular-core-dialog.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-machine.mjs +4 -1
- package/fesm2022/qualcomm-ui-angular-core-machine.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-menu.mjs +2 -1
- package/fesm2022/qualcomm-ui-angular-core-menu.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-side-nav.mjs +4 -0
- package/fesm2022/qualcomm-ui-angular-core-side-nav.mjs.map +1 -0
- package/fesm2022/qualcomm-ui-angular-core-tooltip.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-core-tree.mjs +478 -0
- package/fesm2022/qualcomm-ui-angular-core-tree.mjs.map +1 -0
- package/machine/index.d.ts +10 -2
- package/machine/index.d.ts.map +1 -1
- package/menu/index.d.ts.map +1 -1
- package/package.json +12 -4
- package/side-nav/index.d.ts +3 -0
- package/side-nav/index.d.ts.map +1 -0
- package/tooltip/index.d.ts +9 -6
- package/tooltip/index.d.ts.map +1 -1
- package/tree/index.d.ts +327 -0
- package/tree/index.d.ts.map +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qualcomm-ui/angular-core",
|
|
3
3
|
"description": "Design-agnostic Angular building blocks and utilities.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"author": "Ryan Bower",
|
|
6
6
|
"license": "BSD-3-Clause-Clear",
|
|
7
7
|
"sideEffects": false,
|
|
@@ -144,6 +144,10 @@
|
|
|
144
144
|
"types": "./select/index.d.ts",
|
|
145
145
|
"default": "./fesm2022/qualcomm-ui-angular-core-select.mjs"
|
|
146
146
|
},
|
|
147
|
+
"./side-nav": {
|
|
148
|
+
"types": "./side-nav/index.d.ts",
|
|
149
|
+
"default": "./fesm2022/qualcomm-ui-angular-core-side-nav.mjs"
|
|
150
|
+
},
|
|
147
151
|
"./signals": {
|
|
148
152
|
"types": "./signals/index.d.ts",
|
|
149
153
|
"default": "./fesm2022/qualcomm-ui-angular-core-signals.mjs"
|
|
@@ -180,6 +184,10 @@
|
|
|
180
184
|
"types": "./tooltip/index.d.ts",
|
|
181
185
|
"default": "./fesm2022/qualcomm-ui-angular-core-tooltip.mjs"
|
|
182
186
|
},
|
|
187
|
+
"./tree": {
|
|
188
|
+
"types": "./tree/index.d.ts",
|
|
189
|
+
"default": "./fesm2022/qualcomm-ui-angular-core-tree.mjs"
|
|
190
|
+
},
|
|
183
191
|
"./virtual": {
|
|
184
192
|
"types": "./virtual/index.d.ts",
|
|
185
193
|
"default": "./fesm2022/qualcomm-ui-angular-core-virtual.mjs"
|
|
@@ -196,9 +204,9 @@
|
|
|
196
204
|
"@angular/forms": ">=20 <22",
|
|
197
205
|
"@angular/platform-browser": ">=20 <22",
|
|
198
206
|
"@angular/platform-browser-dynamic": ">=20 <22",
|
|
199
|
-
"@qualcomm-ui/core": "^1.0.
|
|
200
|
-
"@qualcomm-ui/dom": "^1.0.
|
|
201
|
-
"@qualcomm-ui/utils": "^1.0.
|
|
207
|
+
"@qualcomm-ui/core": "^1.0.10",
|
|
208
|
+
"@qualcomm-ui/dom": "^1.0.6",
|
|
209
|
+
"@qualcomm-ui/utils": "^1.0.4",
|
|
202
210
|
"@tanstack/virtual-core": ">=3.13.12",
|
|
203
211
|
"lucide-angular": ">=0.487.0 <1",
|
|
204
212
|
"typescript": ">=5.2.0 <6"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/tooltip/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { OnInit } from '@angular/core';
|
|
2
|
+
import { OnInit, Injector } from '@angular/core';
|
|
3
|
+
import * as _qualcomm_ui_angular_core_machine from '@qualcomm-ui/angular-core/machine';
|
|
4
|
+
import { BaseApiContextService } from '@qualcomm-ui/angular-core/machine';
|
|
3
5
|
import { SignalifyInput } from '@qualcomm-ui/angular-core/signals';
|
|
4
6
|
import { TooltipApi, TooltipApiProps, TooltipPositioningOptions } from '@qualcomm-ui/core/tooltip';
|
|
5
7
|
import { Booleanish } from '@qualcomm-ui/utils/coercion';
|
|
6
8
|
import { Direction } from '@qualcomm-ui/utils/direction';
|
|
7
|
-
import * as _qualcomm_ui_angular_core_machine from '@qualcomm-ui/angular-core/machine';
|
|
8
|
-
import { BaseApiContextService } from '@qualcomm-ui/angular-core/machine';
|
|
9
9
|
|
|
10
10
|
declare class CoreTooltipArrowTipDirective implements OnInit {
|
|
11
11
|
private readonly tooltipContext;
|
|
@@ -121,9 +121,12 @@ declare class CoreTooltipRootDirective implements SignalifyInput<TooltipApiProps
|
|
|
121
121
|
readonly openChanged: _angular_core.OutputEmitterRef<boolean>;
|
|
122
122
|
protected readonly tooltipContext: TooltipContextService;
|
|
123
123
|
readonly hostId: _angular_core.Signal<string>;
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
124
|
+
protected readonly isMounted: () => boolean;
|
|
125
|
+
protected readonly injector: Injector;
|
|
126
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
127
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
128
|
+
setDisabled: (disabled: boolean) => void;
|
|
129
|
+
};
|
|
127
130
|
ngOnInit(): void;
|
|
128
131
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTooltipRootDirective, never>;
|
|
129
132
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTooltipRootDirective, never, never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "dir": { "alias": "dir"; "required": false; "isSignal": true; }; "closeOnClick": { "alias": "closeOnClick"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "positioning": { "alias": "positioning"; "required": false; "isSignal": true; }; }, { "openChanged": "openChanged"; }, never, never, true, never>;
|
package/tooltip/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../../src/tooltip/core-tooltip-arrow-tip.directive.ts","../../src/tooltip/core-tooltip-arrow.directive.ts","../../src/tooltip/core-tooltip-content.directive.ts","../../src/tooltip/core-tooltip-positioner.directive.ts","../../src/tooltip/core-tooltip-trigger.directive.ts","../../src/tooltip/tooltip-context.service.ts","../../src/tooltip/core-tooltip-root.directive.ts"],"sourcesContent":[null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;;;;AASA,cAAA,4BAAA,YAAA,MAAA;AAEE;AAEA;;;;AAOD;;ACVD,cAAA,yBAAA,YAAA,MAAA;AAEE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;AAEA;AAEA;AAEA;;;;AAUD;;ACxBD,cAAA,2BAAA,YAAA,MAAA;AAEE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;AAEA;AAEA;AAEA;;;;AAUD;;ACxBD,cAAA,8BAAA,YAAA,MAAA;AAEE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;AAEA;AAEA;AAEA;;;;AAUD;;ACxBD,cAAA,2BAAA,YAAA,MAAA;AAEE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;AAEA;AAEA;AAEA;;;;AAUD;;ACvBD,cAAA,qBAAA,SAAA,qBAAA,CAAA,UAAA;;;AAC+E;AAE/E,cAAA,eAAA,EAA6B,aAAA,CAAA,cAAA,OAAA,UAAA;AAAA,cAAE,6DAAiB,iCAAA,CAAA,cAAA,0DAAA,UAAA,iBAAA,UAAA;AAAA,cAAE;;ACmBlD,cAAA,wBAAA,YAAA,cAAA,CAAA,eAAA,GAAA,MAAA;AAIE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;;AAEG;kBACS,aAAA,CAAA,WAAA,CAAA,SAAA;AAEZ;;AAEG;2BACkB,aAAA,CAAA,wBAAA,sBAAA,UAAA;AAIrB;;AAEG;4BACmB,aAAA,CAAA,wBAAA,sBAAA,UAAA;AAItB;;AAEG;uBACc,aAAA,CAAA,wBAAA,sBAAA,UAAA;AAIjB;;AAEG;mBACU,aAAA,CAAA,wBAAA,sBAAA,UAAA;AAIb;;;;AAIG;0BACiB,aAAA,CAAA,WAAA,CAAA,yBAAA;AAEpB;;AAEG;0BACiB,aAAA,CAAA,gBAAA;AAEpB,uCAAA,qBAAA;qBAEe,aAAA,CAAA,MAAA;AAEf;AAEA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sources":["../../src/tooltip/core-tooltip-arrow-tip.directive.ts","../../src/tooltip/core-tooltip-arrow.directive.ts","../../src/tooltip/core-tooltip-content.directive.ts","../../src/tooltip/core-tooltip-positioner.directive.ts","../../src/tooltip/core-tooltip-trigger.directive.ts","../../src/tooltip/tooltip-context.service.ts","../../src/tooltip/core-tooltip-root.directive.ts"],"sourcesContent":[null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;;;;AASA,cAAA,4BAAA,YAAA,MAAA;AAEE;AAEA;;;;AAOD;;ACVD,cAAA,yBAAA,YAAA,MAAA;AAEE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;AAEA;AAEA;AAEA;;;;AAUD;;ACxBD,cAAA,2BAAA,YAAA,MAAA;AAEE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;AAEA;AAEA;AAEA;;;;AAUD;;ACxBD,cAAA,8BAAA,YAAA,MAAA;AAEE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;AAEA;AAEA;AAEA;;;;AAUD;;ACxBD,cAAA,2BAAA,YAAA,MAAA;AAEE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;AAEA;AAEA;AAEA;;;;AAUD;;ACvBD,cAAA,qBAAA,SAAA,qBAAA,CAAA,UAAA;;;AAC+E;AAE/E,cAAA,eAAA,EAA6B,aAAA,CAAA,cAAA,OAAA,UAAA;AAAA,cAAE,6DAAiB,iCAAA,CAAA,cAAA,0DAAA,UAAA,iBAAA,UAAA;AAAA,cAAE;;ACmBlD,cAAA,wBAAA,YAAA,cAAA,CAAA,eAAA,GAAA,MAAA;AAIE;;;AAGG;iBACQ,aAAA,CAAA,WAAA;AAEX;;AAEG;kBACS,aAAA,CAAA,WAAA,CAAA,SAAA;AAEZ;;AAEG;2BACkB,aAAA,CAAA,wBAAA,sBAAA,UAAA;AAIrB;;AAEG;4BACmB,aAAA,CAAA,wBAAA,sBAAA,UAAA;AAItB;;AAEG;uBACc,aAAA,CAAA,wBAAA,sBAAA,UAAA;AAIjB;;AAEG;mBACU,aAAA,CAAA,wBAAA,sBAAA,UAAA;AAIb;;;;AAIG;0BACiB,aAAA,CAAA,WAAA,CAAA,yBAAA;AAEpB;;AAEG;0BACiB,aAAA,CAAA,gBAAA;AAEpB,uCAAA,qBAAA;qBAEe,aAAA,CAAA,MAAA;AAEf;AAEA,iCAAA,QAAA;+CAEgC,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AA4BF;;;;"}
|
package/tree/index.d.ts
ADDED
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
import * as _qualcomm_ui_angular_core_machine from '@qualcomm-ui/angular-core/machine';
|
|
2
|
+
import { BaseApiContextService } from '@qualcomm-ui/angular-core/machine';
|
|
3
|
+
import * as _qualcomm_ui_core_tree from '@qualcomm-ui/core/tree';
|
|
4
|
+
import { TreeApi, TreeApiProps, LoadChildrenDetails, NodeState, CheckedChangeDetails, ExpandedChangeDetails, FocusChangeDetails, LoadChildrenCompleteDetails, LoadChildrenErrorDetails, SelectionChangeDetails, NodeProps } from '@qualcomm-ui/core/tree';
|
|
5
|
+
import * as _angular_core from '@angular/core';
|
|
6
|
+
import { OnInit, Injector } from '@angular/core';
|
|
7
|
+
import { RenderStrategyContextService } from '@qualcomm-ui/angular-core/presence';
|
|
8
|
+
import { SignalifyInput } from '@qualcomm-ui/angular-core/signals';
|
|
9
|
+
import { RenderStrategyApiProps } from '@qualcomm-ui/core/presence';
|
|
10
|
+
import { Booleanish } from '@qualcomm-ui/utils/coercion';
|
|
11
|
+
import { TreeNode, TreeCollection } from '@qualcomm-ui/utils/collection';
|
|
12
|
+
import { Direction } from '@qualcomm-ui/utils/direction';
|
|
13
|
+
|
|
14
|
+
declare class CoreTreeBranchContentDirective implements OnInit {
|
|
15
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
16
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
17
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
18
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
19
|
+
setDisabled: (disabled: boolean) => void;
|
|
20
|
+
};
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeBranchContentDirective, never>;
|
|
23
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeBranchContentDirective, never, never, {}, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
declare class CoreTreeBranchIndentGuideDirective implements OnInit {
|
|
27
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
28
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
29
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
30
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
31
|
+
setDisabled: (disabled: boolean) => void;
|
|
32
|
+
};
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeBranchIndentGuideDirective, never>;
|
|
35
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeBranchIndentGuideDirective, never, never, {}, {}, never, never, true, never>;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
declare class CoreTreeBranchNodeDirective implements OnInit {
|
|
39
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
40
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
41
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
42
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
43
|
+
setDisabled: (disabled: boolean) => void;
|
|
44
|
+
};
|
|
45
|
+
ngOnInit(): void;
|
|
46
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeBranchNodeDirective, never>;
|
|
47
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeBranchNodeDirective, never, never, {}, {}, never, never, true, never>;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
declare class CoreTreeBranchTriggerDirective implements OnInit {
|
|
51
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
52
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
53
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
54
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
55
|
+
setDisabled: (disabled: boolean) => void;
|
|
56
|
+
};
|
|
57
|
+
ngOnInit(): void;
|
|
58
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeBranchTriggerDirective, never>;
|
|
59
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeBranchTriggerDirective, never, never, {}, {}, never, never, true, never>;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
declare class CoreTreeBranchDirective implements OnInit {
|
|
63
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
64
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
65
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
66
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
67
|
+
setDisabled: (disabled: boolean) => void;
|
|
68
|
+
};
|
|
69
|
+
ngOnInit(): void;
|
|
70
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeBranchDirective, never>;
|
|
71
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeBranchDirective, never, never, {}, {}, never, never, true, never>;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
declare class CoreTreeLabelDirective implements OnInit {
|
|
75
|
+
/**
|
|
76
|
+
* {@link https://www.w3schools.com/html/html_id.asp id attribute}. If
|
|
77
|
+
* omitted, a unique identifier will be generated for accessibility.
|
|
78
|
+
*/
|
|
79
|
+
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
80
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
81
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
82
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
83
|
+
setDisabled: (disabled: boolean) => void;
|
|
84
|
+
};
|
|
85
|
+
protected readonly onDestroy: (callback: () => void) => void;
|
|
86
|
+
private readonly hostId;
|
|
87
|
+
ngOnInit(): void;
|
|
88
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeLabelDirective, never>;
|
|
89
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeLabelDirective, never, never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
declare class CoreTreeLeafNodeDirective implements OnInit {
|
|
93
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
94
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
95
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
96
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
97
|
+
setDisabled: (disabled: boolean) => void;
|
|
98
|
+
};
|
|
99
|
+
ngOnInit(): void;
|
|
100
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeLeafNodeDirective, never>;
|
|
101
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeLeafNodeDirective, never, never, {}, {}, never, never, true, never>;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
declare class CoreTreeNodeActionDirective implements OnInit {
|
|
105
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
106
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
107
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
108
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
109
|
+
setDisabled: (disabled: boolean) => void;
|
|
110
|
+
};
|
|
111
|
+
ngOnInit(): void;
|
|
112
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeNodeActionDirective, never>;
|
|
113
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeNodeActionDirective, never, never, {}, {}, never, never, true, never>;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
declare class CoreTreeNodeCheckboxDirective implements OnInit {
|
|
117
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
118
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
119
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
120
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
121
|
+
setDisabled: (disabled: boolean) => void;
|
|
122
|
+
};
|
|
123
|
+
ngOnInit(): void;
|
|
124
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeNodeCheckboxDirective, never>;
|
|
125
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeNodeCheckboxDirective, never, never, {}, {}, never, never, true, never>;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
declare class CoreTreeNodeIconDirective implements OnInit {
|
|
129
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
130
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
131
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
132
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
133
|
+
setDisabled: (disabled: boolean) => void;
|
|
134
|
+
};
|
|
135
|
+
ngOnInit(): void;
|
|
136
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeNodeIconDirective, never>;
|
|
137
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeNodeIconDirective, never, never, {}, {}, never, never, true, never>;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
declare class CoreTreeNodeIndicatorDirective implements OnInit {
|
|
141
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
142
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
143
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
144
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
145
|
+
setDisabled: (disabled: boolean) => void;
|
|
146
|
+
};
|
|
147
|
+
ngOnInit(): void;
|
|
148
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeNodeIndicatorDirective, never>;
|
|
149
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeNodeIndicatorDirective, never, never, {}, {}, never, never, true, never>;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
declare class CoreTreeNodeTextDirective implements OnInit {
|
|
153
|
+
protected readonly treeContext: () => _qualcomm_ui_core_tree.TreeApi<any>;
|
|
154
|
+
protected readonly treeNodePropsContext: () => _qualcomm_ui_core_tree.NodeProps<any>;
|
|
155
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
156
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
157
|
+
setDisabled: (disabled: boolean) => void;
|
|
158
|
+
};
|
|
159
|
+
ngOnInit(): void;
|
|
160
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeNodeTextDirective, never>;
|
|
161
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeNodeTextDirective, never, never, {}, {}, never, never, true, never>;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
declare class TreeContextService<T extends TreeNode> extends BaseApiContextService<TreeApi<T>> {
|
|
165
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TreeContextService<any>, never>;
|
|
166
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TreeContextService<any>>;
|
|
167
|
+
}
|
|
168
|
+
declare const TREE_CONTEXT: _angular_core.InjectionToken<() => TreeApi<any>>;
|
|
169
|
+
declare const useTreeContext: <Optional extends boolean = false>(opts?: _qualcomm_ui_angular_core_machine.UseContextOpts<Optional> | undefined) => Optional extends true ? (() => TreeApi<any>) | null : () => TreeApi<any>;
|
|
170
|
+
declare const provideTreeContext: () => _angular_core.Provider[];
|
|
171
|
+
|
|
172
|
+
declare class CoreTreeRootDirective<T extends TreeNode = TreeNode> implements SignalifyInput<TreeApiProps<T>>, SignalifyInput<RenderStrategyApiProps>, OnInit {
|
|
173
|
+
/**
|
|
174
|
+
* The controlled checked node value
|
|
175
|
+
*/
|
|
176
|
+
readonly checkedValue: _angular_core.InputSignal<string[] | undefined>;
|
|
177
|
+
/**
|
|
178
|
+
* The tree collection data
|
|
179
|
+
* @inheritDoc
|
|
180
|
+
*/
|
|
181
|
+
readonly collection: _angular_core.InputSignal<TreeCollection<T> | undefined>;
|
|
182
|
+
/**
|
|
183
|
+
* The initial checked node value when rendered.
|
|
184
|
+
* Use when you don't need to control the checked node value.
|
|
185
|
+
*/
|
|
186
|
+
readonly defaultCheckedValue: _angular_core.InputSignal<string[] | undefined>;
|
|
187
|
+
/**
|
|
188
|
+
* The initial expanded node ids when rendered.
|
|
189
|
+
* Use when you don't need to control the expanded node value.
|
|
190
|
+
*/
|
|
191
|
+
readonly defaultExpandedValue: _angular_core.InputSignal<string[] | undefined>;
|
|
192
|
+
/**
|
|
193
|
+
* The initial focused node value when rendered.
|
|
194
|
+
* Use when you don't need to control the focused node value.
|
|
195
|
+
*/
|
|
196
|
+
readonly defaultFocusedValue: _angular_core.InputSignal<string | null | undefined>;
|
|
197
|
+
/**
|
|
198
|
+
* The initial selected node value when rendered.
|
|
199
|
+
* Use when you don't need to control the selected node value.
|
|
200
|
+
*/
|
|
201
|
+
readonly defaultSelectedValue: _angular_core.InputSignal<string[] | undefined>;
|
|
202
|
+
/**
|
|
203
|
+
* The document's text/writing direction.
|
|
204
|
+
*/
|
|
205
|
+
readonly dir: _angular_core.InputSignal<Direction | undefined>;
|
|
206
|
+
/**
|
|
207
|
+
* The controlled expanded node ids
|
|
208
|
+
*/
|
|
209
|
+
readonly expandedValue: _angular_core.InputSignal<string[] | undefined>;
|
|
210
|
+
/**
|
|
211
|
+
* Whether clicking on a branch should open it or not
|
|
212
|
+
* @default true
|
|
213
|
+
*/
|
|
214
|
+
readonly expandOnClick: _angular_core.InputSignalWithTransform<boolean | undefined, Booleanish>;
|
|
215
|
+
/**
|
|
216
|
+
* The value of the focused node
|
|
217
|
+
*/
|
|
218
|
+
readonly focusedValue: _angular_core.InputSignal<string | null | undefined>;
|
|
219
|
+
/**
|
|
220
|
+
* A root node to correctly resolve the Document in custom environments. i.e.,
|
|
221
|
+
* Iframes, Electron.
|
|
222
|
+
*/
|
|
223
|
+
readonly getRootNode: _angular_core.InputSignal<(() => ShadowRoot | Document | Node) | undefined>;
|
|
224
|
+
/**
|
|
225
|
+
* HTML {@link https://www.w3schools.com/html/html_id.asp id attribute}. If
|
|
226
|
+
* omitted, a unique identifier will be generated for accessibility.)
|
|
227
|
+
*/
|
|
228
|
+
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
229
|
+
/**
|
|
230
|
+
* Function to load children for a node asynchronously.
|
|
231
|
+
* When provided, branches will wait for this promise to resolve before expanding.
|
|
232
|
+
*/
|
|
233
|
+
readonly loadChildren: _angular_core.InputSignal<((details: LoadChildrenDetails<T>) => Promise<T[]>) | undefined>;
|
|
234
|
+
/**
|
|
235
|
+
* When true, the component will not be rendered in the DOM until it becomes
|
|
236
|
+
* visible or active.
|
|
237
|
+
*
|
|
238
|
+
* @default false
|
|
239
|
+
*/
|
|
240
|
+
readonly lazyMount: _angular_core.InputSignalWithTransform<boolean | undefined, Booleanish>;
|
|
241
|
+
/**
|
|
242
|
+
* The controlled selected node value
|
|
243
|
+
*/
|
|
244
|
+
readonly selectedValue: _angular_core.InputSignal<string[] | undefined>;
|
|
245
|
+
/**
|
|
246
|
+
* Whether the tree supports multiple selection
|
|
247
|
+
* @option `'single'`: only one node can be selected
|
|
248
|
+
* @option `'multiple'`: multiple nodes can be selected
|
|
249
|
+
*
|
|
250
|
+
* @default 'single'
|
|
251
|
+
*/
|
|
252
|
+
readonly selectionMode: _angular_core.InputSignal<"single" | "multiple" | undefined>;
|
|
253
|
+
/**
|
|
254
|
+
* Callback function that determines whether a node should be hidden.
|
|
255
|
+
*
|
|
256
|
+
* @inheritDoc
|
|
257
|
+
*/
|
|
258
|
+
readonly shouldHideNode: _angular_core.InputSignal<((state: NodeState<T>) => boolean | undefined) | undefined>;
|
|
259
|
+
/**
|
|
260
|
+
* Whether the tree supports typeahead search
|
|
261
|
+
* @default true
|
|
262
|
+
*/
|
|
263
|
+
readonly typeahead: _angular_core.InputSignalWithTransform<boolean | undefined, Booleanish>;
|
|
264
|
+
/**
|
|
265
|
+
* When true, the component will be completely removed from the DOM when it
|
|
266
|
+
* becomes inactive or hidden, rather than just being hidden with CSS.
|
|
267
|
+
*
|
|
268
|
+
* @default false
|
|
269
|
+
*/
|
|
270
|
+
readonly unmountOnExit: _angular_core.InputSignalWithTransform<boolean | undefined, Booleanish>;
|
|
271
|
+
/**
|
|
272
|
+
* Called when the checked value changes
|
|
273
|
+
*/
|
|
274
|
+
readonly checkedValueChanged: _angular_core.OutputEmitterRef<CheckedChangeDetails<T>>;
|
|
275
|
+
/**
|
|
276
|
+
* Called when the tree is opened or closed
|
|
277
|
+
*/
|
|
278
|
+
readonly expandedValueChanged: _angular_core.OutputEmitterRef<ExpandedChangeDetails<T>>;
|
|
279
|
+
/**
|
|
280
|
+
* Called when the focused node changes
|
|
281
|
+
*/
|
|
282
|
+
readonly focusChanged: _angular_core.OutputEmitterRef<FocusChangeDetails<T>>;
|
|
283
|
+
/**
|
|
284
|
+
* Called when a node finishes loading children
|
|
285
|
+
*/
|
|
286
|
+
readonly loadChildrenComplete: _angular_core.OutputEmitterRef<LoadChildrenCompleteDetails<T>>;
|
|
287
|
+
/**
|
|
288
|
+
* Called when loading children fails for one or more nodes
|
|
289
|
+
*/
|
|
290
|
+
readonly loadChildrenError: _angular_core.OutputEmitterRef<LoadChildrenErrorDetails<T>>;
|
|
291
|
+
/**
|
|
292
|
+
* Called when the selection changes
|
|
293
|
+
*/
|
|
294
|
+
readonly selectedValueChanged: _angular_core.OutputEmitterRef<SelectionChangeDetails<T>>;
|
|
295
|
+
protected readonly document: Document;
|
|
296
|
+
protected readonly hostId: _angular_core.Signal<string>;
|
|
297
|
+
readonly injector: Injector;
|
|
298
|
+
protected readonly isMounted: () => boolean;
|
|
299
|
+
protected readonly renderStrategyContextService: RenderStrategyContextService;
|
|
300
|
+
protected readonly treeContextService: TreeContextService<any>;
|
|
301
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
302
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
303
|
+
setDisabled: (disabled: boolean) => void;
|
|
304
|
+
};
|
|
305
|
+
ngOnInit(): void;
|
|
306
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CoreTreeRootDirective<any>, never>;
|
|
307
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CoreTreeRootDirective<any>, never, never, { "checkedValue": { "alias": "checkedValue"; "required": false; "isSignal": true; }; "collection": { "alias": "collection"; "required": false; "isSignal": true; }; "defaultCheckedValue": { "alias": "defaultCheckedValue"; "required": false; "isSignal": true; }; "defaultExpandedValue": { "alias": "defaultExpandedValue"; "required": false; "isSignal": true; }; "defaultFocusedValue": { "alias": "defaultFocusedValue"; "required": false; "isSignal": true; }; "defaultSelectedValue": { "alias": "defaultSelectedValue"; "required": false; "isSignal": true; }; "dir": { "alias": "dir"; "required": false; "isSignal": true; }; "expandedValue": { "alias": "expandedValue"; "required": false; "isSignal": true; }; "expandOnClick": { "alias": "expandOnClick"; "required": false; "isSignal": true; }; "focusedValue": { "alias": "focusedValue"; "required": false; "isSignal": true; }; "getRootNode": { "alias": "getRootNode"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "loadChildren": { "alias": "loadChildren"; "required": false; "isSignal": true; }; "lazyMount": { "alias": "lazyMount"; "required": false; "isSignal": true; }; "selectedValue": { "alias": "selectedValue"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "shouldHideNode": { "alias": "shouldHideNode"; "required": false; "isSignal": true; }; "typeahead": { "alias": "typeahead"; "required": false; "isSignal": true; }; "unmountOnExit": { "alias": "unmountOnExit"; "required": false; "isSignal": true; }; }, { "checkedValueChanged": "checkedValueChanged"; "expandedValueChanged": "expandedValueChanged"; "focusChanged": "focusChanged"; "loadChildrenComplete": "loadChildrenComplete"; "loadChildrenError": "loadChildrenError"; "selectedValueChanged": "selectedValueChanged"; }, never, never, true, never>;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
declare class TreeNodePropsContextService extends BaseApiContextService<NodeProps> {
|
|
311
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TreeNodePropsContextService, never>;
|
|
312
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TreeNodePropsContextService>;
|
|
313
|
+
}
|
|
314
|
+
declare const TREE_NODE_PROPS_CONTEXT: _angular_core.InjectionToken<() => NodeProps<any>>;
|
|
315
|
+
declare const useTreeNodePropsContext: <Optional extends boolean = false>(opts?: _qualcomm_ui_angular_core_machine.UseContextOpts<Optional> | undefined) => Optional extends true ? (() => NodeProps<any>) | null : () => NodeProps<any>;
|
|
316
|
+
declare const provideTreeNodePropsContext: () => _angular_core.Provider[];
|
|
317
|
+
|
|
318
|
+
declare class TreeNodeStateContextService extends BaseApiContextService<NodeState> {
|
|
319
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TreeNodeStateContextService, never>;
|
|
320
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TreeNodeStateContextService>;
|
|
321
|
+
}
|
|
322
|
+
declare const TREE_NODE_STATE_CONTEXT: _angular_core.InjectionToken<() => NodeState<any>>;
|
|
323
|
+
declare const useTreeNodeStateContext: <Optional extends boolean = false>(opts?: _qualcomm_ui_angular_core_machine.UseContextOpts<Optional> | undefined) => Optional extends true ? (() => NodeState<any>) | null : () => NodeState<any>;
|
|
324
|
+
declare const provideTreeNodeStateContext: () => _angular_core.Provider[];
|
|
325
|
+
|
|
326
|
+
export { CoreTreeBranchContentDirective, CoreTreeBranchDirective, CoreTreeBranchIndentGuideDirective, CoreTreeBranchNodeDirective, CoreTreeBranchTriggerDirective, CoreTreeLabelDirective, CoreTreeLeafNodeDirective, CoreTreeNodeActionDirective, CoreTreeNodeCheckboxDirective, CoreTreeNodeIconDirective, CoreTreeNodeIndicatorDirective, CoreTreeNodeTextDirective, CoreTreeRootDirective, TREE_CONTEXT, TREE_NODE_PROPS_CONTEXT, TREE_NODE_STATE_CONTEXT, TreeContextService, TreeNodePropsContextService, TreeNodeStateContextService, provideTreeContext, provideTreeNodePropsContext, provideTreeNodeStateContext, useTreeContext, useTreeNodePropsContext, useTreeNodeStateContext };
|
|
327
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sources":["../../src/tree/core-tree-branch-content.directive.ts","../../src/tree/core-tree-branch-indent-guide.directive.ts","../../src/tree/core-tree-branch-node.directive.ts","../../src/tree/core-tree-branch-trigger.directive.ts","../../src/tree/core-tree-branch.directive.ts","../../src/tree/core-tree-label.directive.ts","../../src/tree/core-tree-leaf-node.directive.ts","../../src/tree/core-tree-node-action.directive.ts","../../src/tree/core-tree-node-checkbox.directive.ts","../../src/tree/core-tree-node-icon.directive.ts","../../src/tree/core-tree-node-indicator.directive.ts","../../src/tree/core-tree-node-text.directive.ts","../../src/tree/tree-context.service.ts","../../src/tree/core-tree-root.directive.ts","../../src/tree/tree-node-props-context.service.ts","../../src/tree/tree-node-state-context.service.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":"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"}
|