@qualcomm-ui/angular 1.5.0 → 1.7.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/button/index.d.ts +7 -3
- package/button/index.d.ts.map +1 -1
- package/combobox/index.d.ts +6 -2
- package/combobox/index.d.ts.map +1 -1
- package/fesm2022/qualcomm-ui-angular-button.mjs +26 -2
- package/fesm2022/qualcomm-ui-angular-button.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-combobox.mjs +42 -18
- package/fesm2022/qualcomm-ui-angular-combobox.mjs.map +1 -1
- package/fesm2022/qualcomm-ui-angular-header-bar.mjs +548 -0
- package/fesm2022/qualcomm-ui-angular-header-bar.mjs.map +1 -0
- package/header-bar/index.d.ts +207 -0
- package/header-bar/index.d.ts.map +1 -0
- package/package.json +7 -3
|
@@ -0,0 +1,207 @@
|
|
|
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_qds_core_header_bar from '@qualcomm-ui/qds-core/header-bar';
|
|
4
|
+
import { QdsHeaderBarNavItemProps, QdsHeaderBarApi, QdsHeaderBarRootProps, QdsHeaderBarSize, QdsHeaderSurface } from '@qualcomm-ui/qds-core/header-bar';
|
|
5
|
+
import * as i0 from '@angular/core';
|
|
6
|
+
import { OnInit } from '@angular/core';
|
|
7
|
+
import * as _qualcomm_ui_qds_core_button from '@qualcomm-ui/qds-core/button';
|
|
8
|
+
import { LucideIconOrString } from '@qualcomm-ui/angular-core/lucide';
|
|
9
|
+
import * as i1 from '@qualcomm-ui/angular/transitions';
|
|
10
|
+
import * as _qualcomm_ui_qds_core_menu from '@qualcomm-ui/qds-core/menu';
|
|
11
|
+
import * as _qualcomm_ui_core_menu from '@qualcomm-ui/core/menu';
|
|
12
|
+
import { SignalifyInput } from '@qualcomm-ui/angular-core/signals';
|
|
13
|
+
import { Booleanish } from '@qualcomm-ui/utils/coercion';
|
|
14
|
+
import * as i12 from '@qualcomm-ui/angular/icon';
|
|
15
|
+
|
|
16
|
+
declare class HeaderBarActionBarDirective implements OnInit {
|
|
17
|
+
protected readonly qdsHeaderBarContext: () => _qualcomm_ui_qds_core_header_bar.QdsHeaderBarApi;
|
|
18
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
19
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
20
|
+
setDisabled: (disabled: boolean) => void;
|
|
21
|
+
};
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarActionBarDirective, never>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderBarActionBarDirective, "[q-header-bar-action-bar]", never, {}, {}, never, never, false, never>;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
declare class HeaderBarActionButtonDirective {
|
|
28
|
+
/**
|
|
29
|
+
* {@link https://lucide.dev/icons lucide-angular} icon, positioned after the label.
|
|
30
|
+
*
|
|
31
|
+
* @remarks
|
|
32
|
+
* To customize the element, provide it using the directive instead:
|
|
33
|
+
* ```angular-html
|
|
34
|
+
* <svg q-end-icon icon="..."></svg>
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
readonly endIcon: i0.InputSignal<LucideIconOrString | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* {@link https://lucide.dev/icons lucide-angular} icon, positioned before the label.
|
|
40
|
+
*
|
|
41
|
+
* @remarks
|
|
42
|
+
* To customize the element, provide it using the directive instead:
|
|
43
|
+
* ```angular-html
|
|
44
|
+
* <svg q-start-icon icon="..."></svg>
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
readonly startIcon: i0.InputSignal<LucideIconOrString | undefined>;
|
|
48
|
+
protected readonly buttonApi: i0.Signal<_qualcomm_ui_qds_core_button.QdsButtonApi>;
|
|
49
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
50
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
51
|
+
setDisabled: (disabled: boolean) => void;
|
|
52
|
+
};
|
|
53
|
+
constructor();
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarActionButtonDirective, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderBarActionButtonDirective, "[q-header-bar-action-button]", never, { "endIcon": { "alias": "endIcon"; "required": false; "isSignal": true; }; "startIcon": { "alias": "startIcon"; "required": false; "isSignal": true; }; }, {}, never, ["[q-start-icon]", "*", "[q-end-icon]"], false, [{ directive: typeof i1.QuiPreloadDirective; inputs: {}; outputs: {}; }]>;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
declare class HeaderBarActionIconButtonDirective {
|
|
59
|
+
/**
|
|
60
|
+
* {@link https://lucide.dev/icons lucide-angular} icon.
|
|
61
|
+
*/
|
|
62
|
+
readonly icon: i0.InputSignal<LucideIconOrString | undefined>;
|
|
63
|
+
protected readonly iconButtonApi: i0.Signal<_qualcomm_ui_qds_core_button.QdsIconButtonApi>;
|
|
64
|
+
protected readonly iconProps: i0.Signal<_qualcomm_ui_qds_core_button.QdsIconButtonIconBindings>;
|
|
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
|
+
constructor();
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarActionIconButtonDirective, never>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderBarActionIconButtonDirective, "[q-header-bar-action-icon-button]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, ["svg[qIcon]"], false, [{ directive: typeof i1.QuiPreloadDirective; inputs: {}; outputs: {}; }]>;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
declare class HeaderBarAppTitleDirective implements OnInit {
|
|
75
|
+
protected readonly qdsHeaderBarContext: () => _qualcomm_ui_qds_core_header_bar.QdsHeaderBarApi;
|
|
76
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
77
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
78
|
+
setDisabled: (disabled: boolean) => void;
|
|
79
|
+
};
|
|
80
|
+
ngOnInit(): void;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarAppTitleDirective, never>;
|
|
82
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderBarAppTitleDirective, "[q-header-bar-app-title]", never, {}, {}, never, never, false, never>;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
declare class HeaderBarDividerDirective implements OnInit {
|
|
86
|
+
protected readonly qdsHeaderBarContext: () => _qualcomm_ui_qds_core_header_bar.QdsHeaderBarApi;
|
|
87
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
88
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
89
|
+
setDisabled: (disabled: boolean) => void;
|
|
90
|
+
};
|
|
91
|
+
ngOnInit(): void;
|
|
92
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarDividerDirective, never>;
|
|
93
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderBarDividerDirective, "[q-header-bar-divider]", never, {}, {}, never, never, false, never>;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
declare class HeaderBarLogoDirective implements OnInit {
|
|
97
|
+
protected readonly qdsHeaderBarContext: () => _qualcomm_ui_qds_core_header_bar.QdsHeaderBarApi;
|
|
98
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
99
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
100
|
+
setDisabled: (disabled: boolean) => void;
|
|
101
|
+
};
|
|
102
|
+
ngOnInit(): void;
|
|
103
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarLogoDirective, never>;
|
|
104
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderBarLogoDirective, "[q-header-bar-logo]", never, {}, {}, never, never, false, never>;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
declare class HeaderBarMenuItemDirective implements OnInit {
|
|
108
|
+
/**
|
|
109
|
+
* {@link https://lucide.dev lucide-angular} icon.
|
|
110
|
+
*/
|
|
111
|
+
readonly icon: i0.InputSignal<LucideIconOrString | undefined>;
|
|
112
|
+
protected readonly menuContext: (() => _qualcomm_ui_core_menu.MenuApi) | null;
|
|
113
|
+
protected readonly qdsMenuContext: (() => _qualcomm_ui_qds_core_menu.QdsMenuApi) | null;
|
|
114
|
+
protected readonly qdsHeaderBarContext: () => _qualcomm_ui_qds_core_header_bar.QdsHeaderBarApi;
|
|
115
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
116
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
117
|
+
setDisabled: (disabled: boolean) => void;
|
|
118
|
+
};
|
|
119
|
+
ngOnInit(): void;
|
|
120
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarMenuItemDirective, never>;
|
|
121
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderBarMenuItemDirective, "[q-header-bar-menu-item]", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
declare class HeaderBarNavItemDirective implements OnInit, SignalifyInput<QdsHeaderBarNavItemProps> {
|
|
125
|
+
/**
|
|
126
|
+
* Whether the nav item is the current active route.
|
|
127
|
+
*/
|
|
128
|
+
readonly active: i0.InputSignalWithTransform<boolean | undefined, Booleanish>;
|
|
129
|
+
/**
|
|
130
|
+
* Lucide icon rendered before the item label.
|
|
131
|
+
*/
|
|
132
|
+
readonly startIcon: i0.InputSignal<LucideIconOrString | undefined>;
|
|
133
|
+
/**
|
|
134
|
+
* Lucide icon rendered after the item label.
|
|
135
|
+
*/
|
|
136
|
+
readonly endIcon: i0.InputSignal<LucideIconOrString | undefined>;
|
|
137
|
+
protected readonly qdsHeaderBarContext: () => _qualcomm_ui_qds_core_header_bar.QdsHeaderBarApi;
|
|
138
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
139
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
140
|
+
setDisabled: (disabled: boolean) => void;
|
|
141
|
+
};
|
|
142
|
+
ngOnInit(): void;
|
|
143
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarNavItemDirective, never>;
|
|
144
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderBarNavItemDirective, "[q-header-bar-nav-item]", never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; "startIcon": { "alias": "startIcon"; "required": false; "isSignal": true; }; "endIcon": { "alias": "endIcon"; "required": false; "isSignal": true; }; }, {}, never, ["[q-start-icon]", "*", "[q-end-icon]"], false, never>;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
declare class HeaderBarNavDirective implements OnInit {
|
|
148
|
+
protected readonly qdsHeaderBarContext: () => _qualcomm_ui_qds_core_header_bar.QdsHeaderBarApi;
|
|
149
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
150
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
151
|
+
setDisabled: (disabled: boolean) => void;
|
|
152
|
+
};
|
|
153
|
+
ngOnInit(): void;
|
|
154
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarNavDirective, never>;
|
|
155
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderBarNavDirective, "[q-header-bar-nav]", never, {}, {}, never, never, false, never>;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
declare class QdsHeaderBarContextService extends BaseApiContextService<QdsHeaderBarApi> {
|
|
159
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QdsHeaderBarContextService, never>;
|
|
160
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<QdsHeaderBarContextService>;
|
|
161
|
+
}
|
|
162
|
+
declare const QDS_HEADER_BAR_CONTEXT: i0.InjectionToken<() => QdsHeaderBarApi>;
|
|
163
|
+
declare const useQdsHeaderBarContext: <Optional extends boolean = false>(opts?: _qualcomm_ui_angular_core_machine.UseContextOpts<Optional> | undefined) => Optional extends true ? (() => QdsHeaderBarApi) | null : () => QdsHeaderBarApi;
|
|
164
|
+
declare const provideQdsHeaderBarContext: () => i0.Provider[];
|
|
165
|
+
|
|
166
|
+
declare class HeaderBarRootDirective implements OnInit, SignalifyInput<QdsHeaderBarRootProps> {
|
|
167
|
+
/**
|
|
168
|
+
* The size of the component and its elements. Governs padding, element spacing,
|
|
169
|
+
* and height.
|
|
170
|
+
*
|
|
171
|
+
* @default 'sm'
|
|
172
|
+
*/
|
|
173
|
+
readonly size: i0.InputSignal<QdsHeaderBarSize | undefined>;
|
|
174
|
+
/**
|
|
175
|
+
* The background color of the component.
|
|
176
|
+
*/
|
|
177
|
+
readonly surface: i0.InputSignal<QdsHeaderSurface | undefined>;
|
|
178
|
+
readonly qdsHeaderBarService: QdsHeaderBarContextService;
|
|
179
|
+
protected readonly api: i0.WritableSignal<_qualcomm_ui_qds_core_header_bar.QdsHeaderBarApi>;
|
|
180
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
181
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
182
|
+
setDisabled: (disabled: boolean) => void;
|
|
183
|
+
};
|
|
184
|
+
ngOnInit(): void;
|
|
185
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarRootDirective, never>;
|
|
186
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderBarRootDirective, "[q-header-bar-root]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "surface": { "alias": "surface"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
declare class HeaderBarWindowControlsDirective implements OnInit {
|
|
190
|
+
protected readonly qdsHeaderBarContext: () => _qualcomm_ui_qds_core_header_bar.QdsHeaderBarApi;
|
|
191
|
+
protected readonly trackBindings: ((opts?: _qualcomm_ui_angular_core_machine.TrackBindingsConfig) => void) & {
|
|
192
|
+
extendWith: (computedProps: () => _qualcomm_ui_angular_core_machine.Dict) => void;
|
|
193
|
+
setDisabled: (disabled: boolean) => void;
|
|
194
|
+
};
|
|
195
|
+
ngOnInit(): void;
|
|
196
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarWindowControlsDirective, never>;
|
|
197
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderBarWindowControlsDirective, "[q-header-bar-window-controls]", never, {}, {}, never, never, false, never>;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
declare class HeaderBarModule {
|
|
201
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderBarModule, never>;
|
|
202
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HeaderBarModule, [typeof HeaderBarActionButtonDirective, typeof HeaderBarActionIconButtonDirective, typeof HeaderBarActionBarDirective, typeof HeaderBarAppTitleDirective, typeof HeaderBarDividerDirective, typeof HeaderBarLogoDirective, typeof HeaderBarMenuItemDirective, typeof HeaderBarNavDirective, typeof HeaderBarNavItemDirective, typeof HeaderBarRootDirective, typeof HeaderBarWindowControlsDirective], [typeof i12.EndIconDirective, typeof i12.IconDirective, typeof _qualcomm_ui_angular_core_machine.QBindDirective, typeof i12.StartIconDirective], [typeof HeaderBarActionButtonDirective, typeof HeaderBarActionIconButtonDirective, typeof HeaderBarActionBarDirective, typeof HeaderBarAppTitleDirective, typeof HeaderBarDividerDirective, typeof HeaderBarLogoDirective, typeof HeaderBarMenuItemDirective, typeof HeaderBarNavDirective, typeof HeaderBarNavItemDirective, typeof HeaderBarRootDirective, typeof HeaderBarWindowControlsDirective]>;
|
|
203
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HeaderBarModule>;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
export { HeaderBarActionBarDirective, HeaderBarActionButtonDirective, HeaderBarActionIconButtonDirective, HeaderBarAppTitleDirective, HeaderBarDividerDirective, HeaderBarLogoDirective, HeaderBarMenuItemDirective, HeaderBarModule, HeaderBarNavDirective, HeaderBarNavItemDirective, HeaderBarRootDirective, HeaderBarWindowControlsDirective, QDS_HEADER_BAR_CONTEXT, QdsHeaderBarContextService, provideQdsHeaderBarContext, useQdsHeaderBarContext };
|
|
207
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sources":["../../src/header-bar/header-bar-action-bar.directive.ts","../../src/header-bar/header-bar-action-button.directive.ts","../../src/header-bar/header-bar-action-icon-button.directive.ts","../../src/header-bar/header-bar-app-title.directive.ts","../../src/header-bar/header-bar-divider.directive.ts","../../src/header-bar/header-bar-logo.directive.ts","../../src/header-bar/header-bar-menu-item.directive.ts","../../src/header-bar/header-bar-nav-item.directive.ts","../../src/header-bar/header-bar-nav.directive.ts","../../src/header-bar/qds-header-bar-context.service.ts","../../src/header-bar/header-bar-root.directive.ts","../../src/header-bar/header-bar-window-controls.directive.ts","../../src/header-bar/header-bar.module.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null],"names":["_angular_core"],"mappings":";;;;;;;;;;;;;;;AASA,cAAA,2BAAA,YAAA,MAAA;AAKE,kDAAsC,gCAAA,CAAA,eAAA;+CAEN,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACRD,cAAA,8BAAA;AA2CE;;;;;;;;AAQG;sBACaA,EAAA,CAAA,WAAA,CAAA,kBAAA;AAEhB;;;;;;;;AAQG;wBACeA,EAAA,CAAA,WAAA,CAAA,kBAAA;AAElB,kCAA4BA,EAAA,QAAA,4BAAA,CAAA,YAAA;+CAMI,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACnFD,cAAA,kCAAA;AAYE;;AAEG;mBACUA,EAAA,CAAA,WAAA,CAAA,kBAAA;AAEb,sCAAgCA,EAAA,QAAA,4BAAA,CAAA,gBAAA;AAMhC,kCAA4BA,EAAA,QAAA,4BAAA,CAAA,yBAAA;+CAII,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACnCD,cAAA,0BAAA,YAAA,MAAA;AAKE,kDAAsC,gCAAA,CAAA,eAAA;+CAEN,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACdD,cAAA,yBAAA,YAAA,MAAA;AAKE,kDAAsC,gCAAA,CAAA,eAAA;+CAEN,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACdD,cAAA,sBAAA,YAAA,MAAA;AAKE,kDAAsC,gCAAA,CAAA,eAAA;+CAEN,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACND,cAAA,0BAAA,YAAA,MAAA;AAaE;;AAEG;mBACUA,EAAA,CAAA,WAAA,CAAA,kBAAA;AAEb,2CAA8B,sBAAA,CAAA,OAAA;AAC9B,8CAAiC,0BAAA,CAAA,UAAA;AACjC,kDAAsC,gCAAA,CAAA,eAAA;+CAEN,iCAAA,CAAA,mBAAA;;;AAS9B;;;;AAKH;;AC1BD,cAAA,yBAAA,YAAA,MAAA,EAAA,cAAA,CAAA,wBAAA;AA0CE;;AAEG;qBACYA,EAAA,CAAA,wBAAA,sBAAA,UAAA;AAIf;;AAEG;wBACeA,EAAA,CAAA,WAAA,CAAA,kBAAA;AAElB;;AAEG;sBACaA,EAAA,CAAA,WAAA,CAAA,kBAAA;AAEhB,kDAAsC,gCAAA,CAAA,eAAA;+CAEN,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACtFD,cAAA,qBAAA,YAAA,MAAA;AAKE,kDAAsC,gCAAA,CAAA,eAAA;+CAEN,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACXD,cAAA,0BAAA,SAAA,qBAAA,CAAA,eAAA;;;AACyF;AAEzF,cAAA,sBAAA,EACwBA,EAAA,CAAA,cAAA,OAAA,eAAA;AAAA,cACtB,kEAAsB,iCAAA,CAAA,cAAA,0DAAA,eAAA,iBAAA,eAAA;AAAA,cACtB;;ACIF,cAAA,sBAAA,YAAA,MAAA,EAAA,cAAA,CAAA,qBAAA;AAQE;;;;;AAKG;mBACUA,EAAA,CAAA,WAAA,CAAA,gBAAA;AAEb;;AAEG;sBACaA,EAAA,CAAA,WAAA,CAAA,gBAAA;;AAIhB,4BAAsBA,EAAA,gBAAA,gCAAA,CAAA,eAAA;+CAEU,iCAAA,CAAA,mBAAA;;;AAK/B;;;;AAOF;;AClDD,cAAA,gCAAA,YAAA,MAAA;AAKE,kDAAsC,gCAAA,CAAA,eAAA;+CAEN,iCAAA,CAAA,mBAAA;;;AAE/B;;;;AAKF;;ACCD,cAAA,eAAA;;;;AAkC+B;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qualcomm-ui/angular",
|
|
3
3
|
"description": "QUI Angular Components",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.7.0",
|
|
5
5
|
"author": "Ryan Bower",
|
|
6
6
|
"license": "BSD-3-Clause-Clear",
|
|
7
7
|
"repository": "https://github.com/qualcomm/qualcomm-ui",
|
|
@@ -77,6 +77,10 @@
|
|
|
77
77
|
"types": "./header/index.d.ts",
|
|
78
78
|
"default": "./fesm2022/qualcomm-ui-angular-header.mjs"
|
|
79
79
|
},
|
|
80
|
+
"./header-bar": {
|
|
81
|
+
"types": "./header-bar/index.d.ts",
|
|
82
|
+
"default": "./fesm2022/qualcomm-ui-angular-header-bar.mjs"
|
|
83
|
+
},
|
|
80
84
|
"./icon": {
|
|
81
85
|
"types": "./icon/index.d.ts",
|
|
82
86
|
"default": "./fesm2022/qualcomm-ui-angular-icon.mjs"
|
|
@@ -201,9 +205,9 @@
|
|
|
201
205
|
"@angular/forms": ">=20.1.0 <21",
|
|
202
206
|
"@angular/platform-browser": ">=20.1.0 <21",
|
|
203
207
|
"@angular/platform-browser-dynamic": ">=20.1.0 <21",
|
|
204
|
-
"@qualcomm-ui/angular-core": "^1.0
|
|
208
|
+
"@qualcomm-ui/angular-core": "^1.1.0",
|
|
205
209
|
"@qualcomm-ui/core": "^1.0.8",
|
|
206
|
-
"@qualcomm-ui/qds-core": "^1.6.
|
|
210
|
+
"@qualcomm-ui/qds-core": "^1.6.1",
|
|
207
211
|
"@qualcomm-ui/utils": "^1.0.3",
|
|
208
212
|
"@tanstack/virtual-core": ">=3.13.12",
|
|
209
213
|
"lucide-angular": ">=0.487.0 <1",
|