@coveo/atomic-angular 3.10.9 → 3.10.12
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/CHANGELOG.md +1952 -0
- package/dist/LICENSE +201 -0
- package/dist/README.md +25 -0
- package/{fesm2022 → dist/fesm2022}/coveo-atomic-angular.mjs +7 -7
- package/dist/fesm2022/coveo-atomic-angular.mjs.map +1 -0
- package/{index.d.ts → dist/index.d.ts} +1 -1
- package/ng-package.json +8 -0
- package/package.json +6 -19
- package/src/lib/generated/atomic-angular.module.ts +375 -0
- package/src/lib/generated/components.ts +4761 -0
- package/src/public-api.ts +8 -0
- package/src/utils.ts +108 -0
- package/tsconfig.lib.json +13 -0
- package/tsconfig.lib.prod.json +10 -0
- package/fesm2022/coveo-atomic-angular.mjs.map +0 -1
|
@@ -0,0 +1,4761 @@
|
|
|
1
|
+
|
|
2
|
+
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
3
|
+
import { ProxyCmp, proxyOutputs, proxyInputs, proxyMethods, defineCustomElement } from '../../utils';
|
|
4
|
+
|
|
5
|
+
@ProxyCmp({
|
|
6
|
+
inputs: ['pathLimit'],
|
|
7
|
+
methods: ['initialize'],
|
|
8
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-breadbox') || customElements.define('atomic-commerce-breadbox', LitAtomicCommerceBreadbox);}
|
|
9
|
+
})
|
|
10
|
+
@Component({
|
|
11
|
+
selector: 'atomic-commerce-breadbox',
|
|
12
|
+
standalone: false,
|
|
13
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
14
|
+
template: '<ng-content></ng-content>',
|
|
15
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
16
|
+
inputs: ['pathLimit']
|
|
17
|
+
})
|
|
18
|
+
export class AtomicCommerceBreadbox {
|
|
19
|
+
protected readonly el: HTMLElement;
|
|
20
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
21
|
+
c.detach();
|
|
22
|
+
this.el = el.nativeElement;
|
|
23
|
+
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export declare interface AtomicCommerceBreadbox extends LitAtomicCommerceBreadbox {
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@ProxyCmp({
|
|
32
|
+
inputs: ['isCollapsed', 'field'],
|
|
33
|
+
methods: ['initialize'],
|
|
34
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-category-facet') || customElements.define('atomic-commerce-category-facet', LitAtomicCommerceCategoryFacet);}
|
|
35
|
+
})
|
|
36
|
+
@Component({
|
|
37
|
+
selector: 'atomic-commerce-category-facet',
|
|
38
|
+
standalone: false,
|
|
39
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
40
|
+
template: '<ng-content></ng-content>',
|
|
41
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
42
|
+
inputs: ['isCollapsed', 'field']
|
|
43
|
+
})
|
|
44
|
+
export class AtomicCommerceCategoryFacet {
|
|
45
|
+
protected readonly el: HTMLElement;
|
|
46
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
47
|
+
c.detach();
|
|
48
|
+
this.el = el.nativeElement;
|
|
49
|
+
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export declare interface AtomicCommerceCategoryFacet extends LitAtomicCommerceCategoryFacet {
|
|
54
|
+
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@ProxyCmp({
|
|
58
|
+
inputs: [],
|
|
59
|
+
methods: ['initialize'],
|
|
60
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-did-you-mean') || customElements.define('atomic-commerce-did-you-mean', LitAtomicCommerceDidYouMean);}
|
|
61
|
+
})
|
|
62
|
+
@Component({
|
|
63
|
+
selector: 'atomic-commerce-did-you-mean',
|
|
64
|
+
standalone: false,
|
|
65
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
66
|
+
template: '<ng-content></ng-content>',
|
|
67
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
68
|
+
inputs: []
|
|
69
|
+
})
|
|
70
|
+
export class AtomicCommerceDidYouMean {
|
|
71
|
+
protected readonly el: HTMLElement;
|
|
72
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
73
|
+
c.detach();
|
|
74
|
+
this.el = el.nativeElement;
|
|
75
|
+
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export declare interface AtomicCommerceDidYouMean extends LitAtomicCommerceDidYouMean {
|
|
80
|
+
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
@ProxyCmp({
|
|
84
|
+
inputs: ['isCollapsed', 'field'],
|
|
85
|
+
methods: ['initialize'],
|
|
86
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-facet') || customElements.define('atomic-commerce-facet', LitAtomicCommerceFacet);}
|
|
87
|
+
})
|
|
88
|
+
@Component({
|
|
89
|
+
selector: 'atomic-commerce-facet',
|
|
90
|
+
standalone: false,
|
|
91
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
92
|
+
template: '<ng-content></ng-content>',
|
|
93
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
94
|
+
inputs: ['isCollapsed', 'field']
|
|
95
|
+
})
|
|
96
|
+
export class AtomicCommerceFacet {
|
|
97
|
+
protected readonly el: HTMLElement;
|
|
98
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
99
|
+
c.detach();
|
|
100
|
+
this.el = el.nativeElement;
|
|
101
|
+
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export declare interface AtomicCommerceFacet extends LitAtomicCommerceFacet {
|
|
106
|
+
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
@ProxyCmp({
|
|
110
|
+
inputs: ['collapseFacetsAfter'],
|
|
111
|
+
methods: ['initialize'],
|
|
112
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-facets') || customElements.define('atomic-commerce-facets', LitAtomicCommerceFacets);}
|
|
113
|
+
})
|
|
114
|
+
@Component({
|
|
115
|
+
selector: 'atomic-commerce-facets',
|
|
116
|
+
standalone: false,
|
|
117
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
118
|
+
template: '<ng-content></ng-content>',
|
|
119
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
120
|
+
inputs: ['collapseFacetsAfter']
|
|
121
|
+
})
|
|
122
|
+
export class AtomicCommerceFacets {
|
|
123
|
+
protected readonly el: HTMLElement;
|
|
124
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
125
|
+
c.detach();
|
|
126
|
+
this.el = el.nativeElement;
|
|
127
|
+
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export declare interface AtomicCommerceFacets extends LitAtomicCommerceFacets {
|
|
132
|
+
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
@ProxyCmp({
|
|
136
|
+
inputs: ['type', 'analytics', 'logLevel', 'language', 'reflectStateInUrl', 'disableStateReflectionInUrl', 'scrollContainer', 'languageAssetsPath', 'iconAssetsPath'],
|
|
137
|
+
methods: ['initialize', 'initializeWithEngine', 'executeFirstRequest', 'updateLocale', 'toggleAnalytics', 'updateLanguage', 'updateIconAssetsPath', 'scrollToTop'],
|
|
138
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-interface') || customElements.define('atomic-commerce-interface', LitAtomicCommerceInterface);}
|
|
139
|
+
})
|
|
140
|
+
@Component({
|
|
141
|
+
selector: 'atomic-commerce-interface',
|
|
142
|
+
standalone: false,
|
|
143
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
144
|
+
template: '<ng-content></ng-content>',
|
|
145
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
146
|
+
inputs: ['type', 'analytics', 'logLevel', 'language', 'reflectStateInUrl', 'disableStateReflectionInUrl', 'scrollContainer', 'languageAssetsPath', 'iconAssetsPath']
|
|
147
|
+
})
|
|
148
|
+
export class AtomicCommerceInterface {
|
|
149
|
+
protected readonly el: HTMLElement;
|
|
150
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
151
|
+
c.detach();
|
|
152
|
+
this.el = el.nativeElement;
|
|
153
|
+
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export declare interface AtomicCommerceInterface extends LitAtomicCommerceInterface {
|
|
158
|
+
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
@ProxyCmp({
|
|
162
|
+
inputs: ['mobileBreakpoint'],
|
|
163
|
+
methods: ['onMobileBreakpointChange'],
|
|
164
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-layout') || customElements.define('atomic-commerce-layout', LitAtomicCommerceLayout);}
|
|
165
|
+
})
|
|
166
|
+
@Component({
|
|
167
|
+
selector: 'atomic-commerce-layout',
|
|
168
|
+
standalone: false,
|
|
169
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
170
|
+
template: '<ng-content></ng-content>',
|
|
171
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
172
|
+
inputs: ['mobileBreakpoint']
|
|
173
|
+
})
|
|
174
|
+
export class AtomicCommerceLayout {
|
|
175
|
+
protected readonly el: HTMLElement;
|
|
176
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
177
|
+
c.detach();
|
|
178
|
+
this.el = el.nativeElement;
|
|
179
|
+
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
export declare interface AtomicCommerceLayout extends LitAtomicCommerceLayout {
|
|
184
|
+
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
@ProxyCmp({
|
|
188
|
+
inputs: [],
|
|
189
|
+
methods: ['initialize'],
|
|
190
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-load-more-products') || customElements.define('atomic-commerce-load-more-products', LitAtomicCommerceLoadMoreProducts);}
|
|
191
|
+
})
|
|
192
|
+
@Component({
|
|
193
|
+
selector: 'atomic-commerce-load-more-products',
|
|
194
|
+
standalone: false,
|
|
195
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
196
|
+
template: '<ng-content></ng-content>',
|
|
197
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
198
|
+
inputs: []
|
|
199
|
+
})
|
|
200
|
+
export class AtomicCommerceLoadMoreProducts {
|
|
201
|
+
protected readonly el: HTMLElement;
|
|
202
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
203
|
+
c.detach();
|
|
204
|
+
this.el = el.nativeElement;
|
|
205
|
+
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
export declare interface AtomicCommerceLoadMoreProducts extends LitAtomicCommerceLoadMoreProducts {
|
|
210
|
+
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
@ProxyCmp({
|
|
214
|
+
inputs: [],
|
|
215
|
+
methods: ['initialize'],
|
|
216
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-no-products') || customElements.define('atomic-commerce-no-products', LitAtomicCommerceNoProducts);}
|
|
217
|
+
})
|
|
218
|
+
@Component({
|
|
219
|
+
selector: 'atomic-commerce-no-products',
|
|
220
|
+
standalone: false,
|
|
221
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
222
|
+
template: '<ng-content></ng-content>',
|
|
223
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
224
|
+
inputs: []
|
|
225
|
+
})
|
|
226
|
+
export class AtomicCommerceNoProducts {
|
|
227
|
+
protected readonly el: HTMLElement;
|
|
228
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
229
|
+
c.detach();
|
|
230
|
+
this.el = el.nativeElement;
|
|
231
|
+
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
export declare interface AtomicCommerceNoProducts extends LitAtomicCommerceNoProducts {
|
|
236
|
+
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
@ProxyCmp({
|
|
240
|
+
inputs: ['isCollapsed', 'field'],
|
|
241
|
+
methods: ['initialize'],
|
|
242
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-numeric-facet') || customElements.define('atomic-commerce-numeric-facet', LitAtomicCommerceNumericFacet);}
|
|
243
|
+
})
|
|
244
|
+
@Component({
|
|
245
|
+
selector: 'atomic-commerce-numeric-facet',
|
|
246
|
+
standalone: false,
|
|
247
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
248
|
+
template: '<ng-content></ng-content>',
|
|
249
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
250
|
+
inputs: ['isCollapsed', 'field']
|
|
251
|
+
})
|
|
252
|
+
export class AtomicCommerceNumericFacet {
|
|
253
|
+
protected readonly el: HTMLElement;
|
|
254
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
255
|
+
c.detach();
|
|
256
|
+
this.el = el.nativeElement;
|
|
257
|
+
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
export declare interface AtomicCommerceNumericFacet extends LitAtomicCommerceNumericFacet {
|
|
262
|
+
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
@ProxyCmp({
|
|
266
|
+
inputs: ['numberOfPages', 'previousButtonIcon', 'nextButtonIcon'],
|
|
267
|
+
methods: ['initialize'],
|
|
268
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-pager') || customElements.define('atomic-commerce-pager', LitAtomicCommercePager);}
|
|
269
|
+
})
|
|
270
|
+
@Component({
|
|
271
|
+
selector: 'atomic-commerce-pager',
|
|
272
|
+
standalone: false,
|
|
273
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
274
|
+
template: '<ng-content></ng-content>',
|
|
275
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
276
|
+
inputs: ['numberOfPages', 'previousButtonIcon', 'nextButtonIcon']
|
|
277
|
+
})
|
|
278
|
+
export class AtomicCommercePager {
|
|
279
|
+
protected readonly el: HTMLElement;
|
|
280
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
281
|
+
c.detach();
|
|
282
|
+
this.el = el.nativeElement;
|
|
283
|
+
proxyOutputs(this, this.el, ['atomic/scrollToTop']);
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export declare interface AtomicCommercePager extends LitAtomicCommercePager {
|
|
288
|
+
'atomic/scrollToTop': EventEmitter<CustomEvent<any>>;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
@ProxyCmp({
|
|
292
|
+
inputs: ['density', 'display', 'imageSize', 'numberOfPlaceholders'],
|
|
293
|
+
methods: ['setRenderFunction', 'initialize'],
|
|
294
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-product-list') || customElements.define('atomic-commerce-product-list', LitAtomicCommerceProductList);}
|
|
295
|
+
})
|
|
296
|
+
@Component({
|
|
297
|
+
selector: 'atomic-commerce-product-list',
|
|
298
|
+
standalone: false,
|
|
299
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
300
|
+
template: '<ng-content></ng-content>',
|
|
301
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
302
|
+
inputs: ['density', 'display', 'imageSize', 'numberOfPlaceholders']
|
|
303
|
+
})
|
|
304
|
+
export class AtomicCommerceProductList {
|
|
305
|
+
protected readonly el: HTMLElement;
|
|
306
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
307
|
+
c.detach();
|
|
308
|
+
this.el = el.nativeElement;
|
|
309
|
+
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
export declare interface AtomicCommerceProductList extends LitAtomicCommerceProductList {
|
|
314
|
+
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
@ProxyCmp({
|
|
318
|
+
inputs: ['choicesDisplayed', 'initialChoice'],
|
|
319
|
+
methods: ['initialize'],
|
|
320
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-products-per-page') || customElements.define('atomic-commerce-products-per-page', LitAtomicCommerceProductsPerPage);}
|
|
321
|
+
})
|
|
322
|
+
@Component({
|
|
323
|
+
selector: 'atomic-commerce-products-per-page',
|
|
324
|
+
standalone: false,
|
|
325
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
326
|
+
template: '<ng-content></ng-content>',
|
|
327
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
328
|
+
inputs: ['choicesDisplayed', 'initialChoice']
|
|
329
|
+
})
|
|
330
|
+
export class AtomicCommerceProductsPerPage {
|
|
331
|
+
protected readonly el: HTMLElement;
|
|
332
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
333
|
+
c.detach();
|
|
334
|
+
this.el = el.nativeElement;
|
|
335
|
+
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
export declare interface AtomicCommerceProductsPerPage extends LitAtomicCommerceProductsPerPage {
|
|
340
|
+
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
@ProxyCmp({
|
|
344
|
+
inputs: [],
|
|
345
|
+
methods: ['initialize'],
|
|
346
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-query-error') || customElements.define('atomic-commerce-query-error', LitAtomicCommerceQueryError);}
|
|
347
|
+
})
|
|
348
|
+
@Component({
|
|
349
|
+
selector: 'atomic-commerce-query-error',
|
|
350
|
+
standalone: false,
|
|
351
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
352
|
+
template: '<ng-content></ng-content>',
|
|
353
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
354
|
+
inputs: []
|
|
355
|
+
})
|
|
356
|
+
export class AtomicCommerceQueryError {
|
|
357
|
+
protected readonly el: HTMLElement;
|
|
358
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
359
|
+
c.detach();
|
|
360
|
+
this.el = el.nativeElement;
|
|
361
|
+
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
export declare interface AtomicCommerceQueryError extends LitAtomicCommerceQueryError {
|
|
366
|
+
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
@ProxyCmp({
|
|
370
|
+
inputs: [],
|
|
371
|
+
methods: ['initialize'],
|
|
372
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-query-summary') || customElements.define('atomic-commerce-query-summary', LitAtomicCommerceQuerySummary);}
|
|
373
|
+
})
|
|
374
|
+
@Component({
|
|
375
|
+
selector: 'atomic-commerce-query-summary',
|
|
376
|
+
standalone: false,
|
|
377
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
378
|
+
template: '<ng-content></ng-content>',
|
|
379
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
380
|
+
inputs: []
|
|
381
|
+
})
|
|
382
|
+
export class AtomicCommerceQuerySummary {
|
|
383
|
+
protected readonly el: HTMLElement;
|
|
384
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
385
|
+
c.detach();
|
|
386
|
+
this.el = el.nativeElement;
|
|
387
|
+
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
export declare interface AtomicCommerceQuerySummary extends LitAtomicCommerceQuerySummary {
|
|
392
|
+
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
@ProxyCmp({
|
|
396
|
+
inputs: ['scrollContainer', 'languageAssetsPath', 'iconAssetsPath', 'language', 'analytics'],
|
|
397
|
+
methods: ['initializeWithEngine', 'updateLocale', 'toggleAnalytics', 'updateIconAssetsPath', 'updateLanguage'],
|
|
398
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-recommendation-interface') || customElements.define('atomic-commerce-recommendation-interface', LitAtomicCommerceRecommendationInterface);}
|
|
399
|
+
})
|
|
400
|
+
@Component({
|
|
401
|
+
selector: 'atomic-commerce-recommendation-interface',
|
|
402
|
+
standalone: false,
|
|
403
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
404
|
+
template: '<ng-content></ng-content>',
|
|
405
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
406
|
+
inputs: ['scrollContainer', 'languageAssetsPath', 'iconAssetsPath', 'language', 'analytics']
|
|
407
|
+
})
|
|
408
|
+
export class AtomicCommerceRecommendationInterface {
|
|
409
|
+
protected readonly el: HTMLElement;
|
|
410
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
411
|
+
c.detach();
|
|
412
|
+
this.el = el.nativeElement;
|
|
413
|
+
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
export declare interface AtomicCommerceRecommendationInterface extends LitAtomicCommerceRecommendationInterface {
|
|
418
|
+
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
@ProxyCmp({
|
|
422
|
+
inputs: ['slotId', 'productId', 'display', 'density', 'imageSize', 'productsPerPage', 'headingLevel'],
|
|
423
|
+
methods: ['watchNumberOfRecommendationsPerPage', 'setRenderFunction', 'previousPage', 'nextPage', 'initialize'],
|
|
424
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-recommendation-list') || customElements.define('atomic-commerce-recommendation-list', LitAtomicCommerceRecommendationList);}
|
|
425
|
+
})
|
|
426
|
+
@Component({
|
|
427
|
+
selector: 'atomic-commerce-recommendation-list',
|
|
428
|
+
standalone: false,
|
|
429
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
430
|
+
template: '<ng-content></ng-content>',
|
|
431
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
432
|
+
inputs: ['slotId', 'productId', 'display', 'density', 'imageSize', 'productsPerPage', 'headingLevel']
|
|
433
|
+
})
|
|
434
|
+
export class AtomicCommerceRecommendationList {
|
|
435
|
+
protected readonly el: HTMLElement;
|
|
436
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
437
|
+
c.detach();
|
|
438
|
+
this.el = el.nativeElement;
|
|
439
|
+
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
export declare interface AtomicCommerceRecommendationList extends LitAtomicCommerceRecommendationList {
|
|
444
|
+
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
@ProxyCmp({
|
|
448
|
+
inputs: ['openButton', 'isOpen', 'collapseFacetsAfter'],
|
|
449
|
+
methods: ['initialize'],
|
|
450
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-refine-modal') || customElements.define('atomic-commerce-refine-modal', LitAtomicCommerceRefineModal);}
|
|
451
|
+
})
|
|
452
|
+
@Component({
|
|
453
|
+
selector: 'atomic-commerce-refine-modal',
|
|
454
|
+
standalone: false,
|
|
455
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
456
|
+
template: '<ng-content></ng-content>',
|
|
457
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
458
|
+
inputs: ['openButton', 'isOpen', 'collapseFacetsAfter']
|
|
459
|
+
})
|
|
460
|
+
export class AtomicCommerceRefineModal {
|
|
461
|
+
protected readonly el: HTMLElement;
|
|
462
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
463
|
+
c.detach();
|
|
464
|
+
this.el = el.nativeElement;
|
|
465
|
+
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
export declare interface AtomicCommerceRefineModal extends LitAtomicCommerceRefineModal {
|
|
470
|
+
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
@ProxyCmp({
|
|
474
|
+
inputs: [],
|
|
475
|
+
methods: ['initialize'],
|
|
476
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-refine-toggle') || customElements.define('atomic-commerce-refine-toggle', LitAtomicCommerceRefineToggle);}
|
|
477
|
+
})
|
|
478
|
+
@Component({
|
|
479
|
+
selector: 'atomic-commerce-refine-toggle',
|
|
480
|
+
standalone: false,
|
|
481
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
482
|
+
template: '<ng-content></ng-content>',
|
|
483
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
484
|
+
inputs: []
|
|
485
|
+
})
|
|
486
|
+
export class AtomicCommerceRefineToggle {
|
|
487
|
+
protected readonly el: HTMLElement;
|
|
488
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
489
|
+
c.detach();
|
|
490
|
+
this.el = el.nativeElement;
|
|
491
|
+
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
export declare interface AtomicCommerceRefineToggle extends LitAtomicCommerceRefineToggle {
|
|
496
|
+
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
@ProxyCmp({
|
|
500
|
+
inputs: ['density', 'imageSize', 'ariaLabelGenerator'],
|
|
501
|
+
methods: ['setRenderFunction', 'initialize'],
|
|
502
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-search-box-instant-products') || customElements.define('atomic-commerce-search-box-instant-products', LitAtomicCommerceSearchBoxInstantProducts);}
|
|
503
|
+
})
|
|
504
|
+
@Component({
|
|
505
|
+
selector: 'atomic-commerce-search-box-instant-products',
|
|
506
|
+
standalone: false,
|
|
507
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
508
|
+
template: '<ng-content></ng-content>',
|
|
509
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
510
|
+
inputs: ['density', 'imageSize', 'ariaLabelGenerator']
|
|
511
|
+
})
|
|
512
|
+
export class AtomicCommerceSearchBoxInstantProducts {
|
|
513
|
+
protected readonly el: HTMLElement;
|
|
514
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
515
|
+
c.detach();
|
|
516
|
+
this.el = el.nativeElement;
|
|
517
|
+
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
export declare interface AtomicCommerceSearchBoxInstantProducts extends LitAtomicCommerceSearchBoxInstantProducts {
|
|
522
|
+
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
@ProxyCmp({
|
|
526
|
+
inputs: ['icon', 'maxWithQuery', 'maxWithoutQuery'],
|
|
527
|
+
methods: ['initialize'],
|
|
528
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-search-box-query-suggestions') || customElements.define('atomic-commerce-search-box-query-suggestions', LitAtomicCommerceSearchBoxQuerySuggestions);}
|
|
529
|
+
})
|
|
530
|
+
@Component({
|
|
531
|
+
selector: 'atomic-commerce-search-box-query-suggestions',
|
|
532
|
+
standalone: false,
|
|
533
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
534
|
+
template: '<ng-content></ng-content>',
|
|
535
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
536
|
+
inputs: ['icon', 'maxWithQuery', 'maxWithoutQuery']
|
|
537
|
+
})
|
|
538
|
+
export class AtomicCommerceSearchBoxQuerySuggestions {
|
|
539
|
+
protected readonly el: HTMLElement;
|
|
540
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
541
|
+
c.detach();
|
|
542
|
+
this.el = el.nativeElement;
|
|
543
|
+
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
export declare interface AtomicCommerceSearchBoxQuerySuggestions extends LitAtomicCommerceSearchBoxQuerySuggestions {
|
|
548
|
+
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
@ProxyCmp({
|
|
552
|
+
inputs: ['icon', 'maxWithQuery', 'maxWithoutQuery'],
|
|
553
|
+
methods: ['initialize'],
|
|
554
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-search-box-recent-queries') || customElements.define('atomic-commerce-search-box-recent-queries', LitAtomicCommerceSearchBoxRecentQueries);}
|
|
555
|
+
})
|
|
556
|
+
@Component({
|
|
557
|
+
selector: 'atomic-commerce-search-box-recent-queries',
|
|
558
|
+
standalone: false,
|
|
559
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
560
|
+
template: '<ng-content></ng-content>',
|
|
561
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
562
|
+
inputs: ['icon', 'maxWithQuery', 'maxWithoutQuery']
|
|
563
|
+
})
|
|
564
|
+
export class AtomicCommerceSearchBoxRecentQueries {
|
|
565
|
+
protected readonly el: HTMLElement;
|
|
566
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
567
|
+
c.detach();
|
|
568
|
+
this.el = el.nativeElement;
|
|
569
|
+
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
export declare interface AtomicCommerceSearchBoxRecentQueries extends LitAtomicCommerceSearchBoxRecentQueries {
|
|
574
|
+
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
@ProxyCmp({
|
|
578
|
+
inputs: ['numberOfQueries', 'redirectionUrl', 'suggestionTimeout', 'suggestionDelay', 'disableSearch', 'minimumQueryLength', 'clearFilters'],
|
|
579
|
+
methods: ['initialize'],
|
|
580
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-search-box') || customElements.define('atomic-commerce-search-box', LitAtomicCommerceSearchBox);}
|
|
581
|
+
})
|
|
582
|
+
@Component({
|
|
583
|
+
selector: 'atomic-commerce-search-box',
|
|
584
|
+
standalone: false,
|
|
585
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
586
|
+
template: '<ng-content></ng-content>',
|
|
587
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
588
|
+
inputs: ['numberOfQueries', 'redirectionUrl', 'suggestionTimeout', 'suggestionDelay', 'disableSearch', 'minimumQueryLength', 'clearFilters']
|
|
589
|
+
})
|
|
590
|
+
export class AtomicCommerceSearchBox {
|
|
591
|
+
protected readonly el: HTMLElement;
|
|
592
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
593
|
+
c.detach();
|
|
594
|
+
this.el = el.nativeElement;
|
|
595
|
+
proxyOutputs(this, this.el, ['redirect']);
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
export declare interface AtomicCommerceSearchBox extends LitAtomicCommerceSearchBox {
|
|
600
|
+
'redirect': EventEmitter<CustomEvent<any>>;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
@ProxyCmp({
|
|
604
|
+
inputs: [],
|
|
605
|
+
methods: ['initialize'],
|
|
606
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-sort-dropdown') || customElements.define('atomic-commerce-sort-dropdown', LitAtomicCommerceSortDropdown);}
|
|
607
|
+
})
|
|
608
|
+
@Component({
|
|
609
|
+
selector: 'atomic-commerce-sort-dropdown',
|
|
610
|
+
standalone: false,
|
|
611
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
612
|
+
template: '<ng-content></ng-content>',
|
|
613
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
614
|
+
inputs: []
|
|
615
|
+
})
|
|
616
|
+
export class AtomicCommerceSortDropdown {
|
|
617
|
+
protected readonly el: HTMLElement;
|
|
618
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
619
|
+
c.detach();
|
|
620
|
+
this.el = el.nativeElement;
|
|
621
|
+
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
export declare interface AtomicCommerceSortDropdown extends LitAtomicCommerceSortDropdown {
|
|
626
|
+
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
@ProxyCmp({
|
|
630
|
+
inputs: ['value', 'count'],
|
|
631
|
+
methods: ['initialize'],
|
|
632
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-text') || customElements.define('atomic-commerce-text', LitAtomicCommerceText);}
|
|
633
|
+
})
|
|
634
|
+
@Component({
|
|
635
|
+
selector: 'atomic-commerce-text',
|
|
636
|
+
standalone: false,
|
|
637
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
638
|
+
template: '<ng-content></ng-content>',
|
|
639
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
640
|
+
inputs: ['value', 'count']
|
|
641
|
+
})
|
|
642
|
+
export class AtomicCommerceText {
|
|
643
|
+
protected readonly el: HTMLElement;
|
|
644
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
645
|
+
c.detach();
|
|
646
|
+
this.el = el.nativeElement;
|
|
647
|
+
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
export declare interface AtomicCommerceText extends LitAtomicCommerceText {
|
|
652
|
+
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
@ProxyCmp({
|
|
656
|
+
inputs: ['isCollapsed', 'field'],
|
|
657
|
+
methods: ['initialize'],
|
|
658
|
+
defineCustomElementFn: () => {customElements.get('atomic-commerce-timeframe-facet') || customElements.define('atomic-commerce-timeframe-facet', LitAtomicCommerceTimeframeFacet);}
|
|
659
|
+
})
|
|
660
|
+
@Component({
|
|
661
|
+
selector: 'atomic-commerce-timeframe-facet',
|
|
662
|
+
standalone: false,
|
|
663
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
664
|
+
template: '<ng-content></ng-content>',
|
|
665
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
666
|
+
inputs: ['isCollapsed', 'field']
|
|
667
|
+
})
|
|
668
|
+
export class AtomicCommerceTimeframeFacet {
|
|
669
|
+
protected readonly el: HTMLElement;
|
|
670
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
671
|
+
c.detach();
|
|
672
|
+
this.el = el.nativeElement;
|
|
673
|
+
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
export declare interface AtomicCommerceTimeframeFacet extends LitAtomicCommerceTimeframeFacet {
|
|
678
|
+
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
@ProxyCmp({
|
|
682
|
+
inputs: ['label', 'field', 'fallback'],
|
|
683
|
+
methods: [],
|
|
684
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-children') || customElements.define('atomic-product-children', LitAtomicProductChildren);}
|
|
685
|
+
})
|
|
686
|
+
@Component({
|
|
687
|
+
selector: 'atomic-product-children',
|
|
688
|
+
standalone: false,
|
|
689
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
690
|
+
template: '<ng-content></ng-content>',
|
|
691
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
692
|
+
inputs: ['label', 'field', 'fallback']
|
|
693
|
+
})
|
|
694
|
+
export class AtomicProductChildren {
|
|
695
|
+
protected readonly el: HTMLElement;
|
|
696
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
697
|
+
c.detach();
|
|
698
|
+
this.el = el.nativeElement;
|
|
699
|
+
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
export declare interface AtomicProductChildren extends LitAtomicProductChildren {
|
|
704
|
+
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
@ProxyCmp({
|
|
708
|
+
inputs: ['truncateAfter', 'field', 'isCollapsible'],
|
|
709
|
+
methods: [],
|
|
710
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-description') || customElements.define('atomic-product-description', LitAtomicProductDescription);}
|
|
711
|
+
})
|
|
712
|
+
@Component({
|
|
713
|
+
selector: 'atomic-product-description',
|
|
714
|
+
standalone: false,
|
|
715
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
716
|
+
template: '<ng-content></ng-content>',
|
|
717
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
718
|
+
inputs: ['truncateAfter', 'field', 'isCollapsible']
|
|
719
|
+
})
|
|
720
|
+
export class AtomicProductDescription {
|
|
721
|
+
protected readonly el: HTMLElement;
|
|
722
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
723
|
+
c.detach();
|
|
724
|
+
this.el = el.nativeElement;
|
|
725
|
+
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
export declare interface AtomicProductDescription extends LitAtomicProductDescription {
|
|
730
|
+
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
@ProxyCmp({
|
|
734
|
+
inputs: ['truncateAfter', 'isCollapsible'],
|
|
735
|
+
methods: ['initialize'],
|
|
736
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-excerpt') || customElements.define('atomic-product-excerpt', LitAtomicProductExcerpt);}
|
|
737
|
+
})
|
|
738
|
+
@Component({
|
|
739
|
+
selector: 'atomic-product-excerpt',
|
|
740
|
+
standalone: false,
|
|
741
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
742
|
+
template: '<ng-content></ng-content>',
|
|
743
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
744
|
+
inputs: ['truncateAfter', 'isCollapsible']
|
|
745
|
+
})
|
|
746
|
+
export class AtomicProductExcerpt {
|
|
747
|
+
protected readonly el: HTMLElement;
|
|
748
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
749
|
+
c.detach();
|
|
750
|
+
this.el = el.nativeElement;
|
|
751
|
+
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
export declare interface AtomicProductExcerpt extends LitAtomicProductExcerpt {
|
|
756
|
+
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
@ProxyCmp({
|
|
760
|
+
inputs: ['ifDefined', 'ifNotDefined', 'mustMatch', 'mustNotMatch'],
|
|
761
|
+
methods: [],
|
|
762
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-field-condition') || customElements.define('atomic-product-field-condition', LitAtomicProductFieldCondition);}
|
|
763
|
+
})
|
|
764
|
+
@Component({
|
|
765
|
+
selector: 'atomic-product-field-condition',
|
|
766
|
+
standalone: false,
|
|
767
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
768
|
+
template: '<ng-content></ng-content>',
|
|
769
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
770
|
+
inputs: ['ifDefined', 'ifNotDefined', 'mustMatch', 'mustNotMatch']
|
|
771
|
+
})
|
|
772
|
+
export class AtomicProductFieldCondition {
|
|
773
|
+
protected readonly el: HTMLElement;
|
|
774
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
775
|
+
c.detach();
|
|
776
|
+
this.el = el.nativeElement;
|
|
777
|
+
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
export declare interface AtomicProductFieldCondition extends LitAtomicProductFieldCondition {
|
|
782
|
+
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
@ProxyCmp({
|
|
786
|
+
inputs: ['field', 'imageAltField', 'fallback'],
|
|
787
|
+
methods: ['initialize'],
|
|
788
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-image') || customElements.define('atomic-product-image', LitAtomicProductImage);}
|
|
789
|
+
})
|
|
790
|
+
@Component({
|
|
791
|
+
selector: 'atomic-product-image',
|
|
792
|
+
standalone: false,
|
|
793
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
794
|
+
template: '<ng-content></ng-content>',
|
|
795
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
796
|
+
inputs: ['field', 'imageAltField', 'fallback']
|
|
797
|
+
})
|
|
798
|
+
export class AtomicProductImage {
|
|
799
|
+
protected readonly el: HTMLElement;
|
|
800
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
801
|
+
c.detach();
|
|
802
|
+
this.el = el.nativeElement;
|
|
803
|
+
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
export declare interface AtomicProductImage extends LitAtomicProductImage {
|
|
808
|
+
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
@ProxyCmp({
|
|
812
|
+
inputs: ['hrefTemplate'],
|
|
813
|
+
methods: ['renderDefaultSlotContent'],
|
|
814
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-link') || customElements.define('atomic-product-link', LitAtomicProductLink);}
|
|
815
|
+
})
|
|
816
|
+
@Component({
|
|
817
|
+
selector: 'atomic-product-link',
|
|
818
|
+
standalone: false,
|
|
819
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
820
|
+
template: '<ng-content></ng-content>',
|
|
821
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
822
|
+
inputs: ['hrefTemplate']
|
|
823
|
+
})
|
|
824
|
+
export class AtomicProductLink {
|
|
825
|
+
protected readonly el: HTMLElement;
|
|
826
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
827
|
+
c.detach();
|
|
828
|
+
this.el = el.nativeElement;
|
|
829
|
+
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
export declare interface AtomicProductLink extends LitAtomicProductLink {
|
|
834
|
+
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
@ProxyCmp({
|
|
838
|
+
inputs: ['field', 'maxValuesToDisplay', 'delimiter'],
|
|
839
|
+
methods: ['initialize'],
|
|
840
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-multi-value-text') || customElements.define('atomic-product-multi-value-text', LitAtomicProductMultiValueText);}
|
|
841
|
+
})
|
|
842
|
+
@Component({
|
|
843
|
+
selector: 'atomic-product-multi-value-text',
|
|
844
|
+
standalone: false,
|
|
845
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
846
|
+
template: '<ng-content></ng-content>',
|
|
847
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
848
|
+
inputs: ['field', 'maxValuesToDisplay', 'delimiter']
|
|
849
|
+
})
|
|
850
|
+
export class AtomicProductMultiValueText {
|
|
851
|
+
protected readonly el: HTMLElement;
|
|
852
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
853
|
+
c.detach();
|
|
854
|
+
this.el = el.nativeElement;
|
|
855
|
+
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
export declare interface AtomicProductMultiValueText extends LitAtomicProductMultiValueText {
|
|
860
|
+
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
@ProxyCmp({
|
|
864
|
+
inputs: ['field'],
|
|
865
|
+
methods: [],
|
|
866
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-numeric-field-value') || customElements.define('atomic-product-numeric-field-value', LitAtomicProductNumericFieldValue);}
|
|
867
|
+
})
|
|
868
|
+
@Component({
|
|
869
|
+
selector: 'atomic-product-numeric-field-value',
|
|
870
|
+
standalone: false,
|
|
871
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
872
|
+
template: '<ng-content></ng-content>',
|
|
873
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
874
|
+
inputs: ['field']
|
|
875
|
+
})
|
|
876
|
+
export class AtomicProductNumericFieldValue {
|
|
877
|
+
protected readonly el: HTMLElement;
|
|
878
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
879
|
+
c.detach();
|
|
880
|
+
this.el = el.nativeElement;
|
|
881
|
+
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
export declare interface AtomicProductNumericFieldValue extends LitAtomicProductNumericFieldValue {
|
|
886
|
+
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
@ProxyCmp({
|
|
890
|
+
inputs: [],
|
|
891
|
+
methods: [],
|
|
892
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-price') || customElements.define('atomic-product-price', LitAtomicProductPrice);}
|
|
893
|
+
})
|
|
894
|
+
@Component({
|
|
895
|
+
selector: 'atomic-product-price',
|
|
896
|
+
standalone: false,
|
|
897
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
898
|
+
template: '<ng-content></ng-content>',
|
|
899
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
900
|
+
inputs: []
|
|
901
|
+
})
|
|
902
|
+
export class AtomicProductPrice {
|
|
903
|
+
protected readonly el: HTMLElement;
|
|
904
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
905
|
+
c.detach();
|
|
906
|
+
this.el = el.nativeElement;
|
|
907
|
+
|
|
908
|
+
}
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
export declare interface AtomicProductPrice extends LitAtomicProductPrice {
|
|
912
|
+
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
@ProxyCmp({
|
|
916
|
+
inputs: ['field', 'ratingDetailsField', 'maxValueInIndex', 'icon'],
|
|
917
|
+
methods: ['initialize'],
|
|
918
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-rating') || customElements.define('atomic-product-rating', LitAtomicProductRating);}
|
|
919
|
+
})
|
|
920
|
+
@Component({
|
|
921
|
+
selector: 'atomic-product-rating',
|
|
922
|
+
standalone: false,
|
|
923
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
924
|
+
template: '<ng-content></ng-content>',
|
|
925
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
926
|
+
inputs: ['field', 'ratingDetailsField', 'maxValueInIndex', 'icon']
|
|
927
|
+
})
|
|
928
|
+
export class AtomicProductRating {
|
|
929
|
+
protected readonly el: HTMLElement;
|
|
930
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
931
|
+
c.detach();
|
|
932
|
+
this.el = el.nativeElement;
|
|
933
|
+
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
export declare interface AtomicProductRating extends LitAtomicProductRating {
|
|
938
|
+
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
@ProxyCmp({
|
|
942
|
+
inputs: [],
|
|
943
|
+
methods: [],
|
|
944
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-section-actions') || customElements.define('atomic-product-section-actions', LitAtomicProductSectionActions);}
|
|
945
|
+
})
|
|
946
|
+
@Component({
|
|
947
|
+
selector: 'atomic-product-section-actions',
|
|
948
|
+
standalone: false,
|
|
949
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
950
|
+
template: '<ng-content></ng-content>',
|
|
951
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
952
|
+
inputs: []
|
|
953
|
+
})
|
|
954
|
+
export class AtomicProductSectionActions {
|
|
955
|
+
protected readonly el: HTMLElement;
|
|
956
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
957
|
+
c.detach();
|
|
958
|
+
this.el = el.nativeElement;
|
|
959
|
+
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
export declare interface AtomicProductSectionActions extends LitAtomicProductSectionActions {
|
|
964
|
+
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
@ProxyCmp({
|
|
968
|
+
inputs: [],
|
|
969
|
+
methods: [],
|
|
970
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-section-badges') || customElements.define('atomic-product-section-badges', LitAtomicProductSectionBadges);}
|
|
971
|
+
})
|
|
972
|
+
@Component({
|
|
973
|
+
selector: 'atomic-product-section-badges',
|
|
974
|
+
standalone: false,
|
|
975
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
976
|
+
template: '<ng-content></ng-content>',
|
|
977
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
978
|
+
inputs: []
|
|
979
|
+
})
|
|
980
|
+
export class AtomicProductSectionBadges {
|
|
981
|
+
protected readonly el: HTMLElement;
|
|
982
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
983
|
+
c.detach();
|
|
984
|
+
this.el = el.nativeElement;
|
|
985
|
+
|
|
986
|
+
}
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
export declare interface AtomicProductSectionBadges extends LitAtomicProductSectionBadges {
|
|
990
|
+
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
@ProxyCmp({
|
|
994
|
+
inputs: [],
|
|
995
|
+
methods: [],
|
|
996
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-section-bottom-metadata') || customElements.define('atomic-product-section-bottom-metadata', LitAtomicProductSectionBottomMetadata);}
|
|
997
|
+
})
|
|
998
|
+
@Component({
|
|
999
|
+
selector: 'atomic-product-section-bottom-metadata',
|
|
1000
|
+
standalone: false,
|
|
1001
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1002
|
+
template: '<ng-content></ng-content>',
|
|
1003
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1004
|
+
inputs: []
|
|
1005
|
+
})
|
|
1006
|
+
export class AtomicProductSectionBottomMetadata {
|
|
1007
|
+
protected readonly el: HTMLElement;
|
|
1008
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1009
|
+
c.detach();
|
|
1010
|
+
this.el = el.nativeElement;
|
|
1011
|
+
|
|
1012
|
+
}
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
export declare interface AtomicProductSectionBottomMetadata extends LitAtomicProductSectionBottomMetadata {
|
|
1016
|
+
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
@ProxyCmp({
|
|
1020
|
+
inputs: [],
|
|
1021
|
+
methods: [],
|
|
1022
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-section-children') || customElements.define('atomic-product-section-children', LitAtomicProductSectionChildren);}
|
|
1023
|
+
})
|
|
1024
|
+
@Component({
|
|
1025
|
+
selector: 'atomic-product-section-children',
|
|
1026
|
+
standalone: false,
|
|
1027
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1028
|
+
template: '<ng-content></ng-content>',
|
|
1029
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1030
|
+
inputs: []
|
|
1031
|
+
})
|
|
1032
|
+
export class AtomicProductSectionChildren {
|
|
1033
|
+
protected readonly el: HTMLElement;
|
|
1034
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1035
|
+
c.detach();
|
|
1036
|
+
this.el = el.nativeElement;
|
|
1037
|
+
|
|
1038
|
+
}
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
export declare interface AtomicProductSectionChildren extends LitAtomicProductSectionChildren {
|
|
1042
|
+
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
@ProxyCmp({
|
|
1046
|
+
inputs: [],
|
|
1047
|
+
methods: [],
|
|
1048
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-section-description') || customElements.define('atomic-product-section-description', LitAtomicProductSectionDescription);}
|
|
1049
|
+
})
|
|
1050
|
+
@Component({
|
|
1051
|
+
selector: 'atomic-product-section-description',
|
|
1052
|
+
standalone: false,
|
|
1053
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1054
|
+
template: '<ng-content></ng-content>',
|
|
1055
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1056
|
+
inputs: []
|
|
1057
|
+
})
|
|
1058
|
+
export class AtomicProductSectionDescription {
|
|
1059
|
+
protected readonly el: HTMLElement;
|
|
1060
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1061
|
+
c.detach();
|
|
1062
|
+
this.el = el.nativeElement;
|
|
1063
|
+
|
|
1064
|
+
}
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
export declare interface AtomicProductSectionDescription extends LitAtomicProductSectionDescription {
|
|
1068
|
+
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
@ProxyCmp({
|
|
1072
|
+
inputs: [],
|
|
1073
|
+
methods: [],
|
|
1074
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-section-emphasized') || customElements.define('atomic-product-section-emphasized', LitAtomicProductSectionEmphasized);}
|
|
1075
|
+
})
|
|
1076
|
+
@Component({
|
|
1077
|
+
selector: 'atomic-product-section-emphasized',
|
|
1078
|
+
standalone: false,
|
|
1079
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1080
|
+
template: '<ng-content></ng-content>',
|
|
1081
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1082
|
+
inputs: []
|
|
1083
|
+
})
|
|
1084
|
+
export class AtomicProductSectionEmphasized {
|
|
1085
|
+
protected readonly el: HTMLElement;
|
|
1086
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1087
|
+
c.detach();
|
|
1088
|
+
this.el = el.nativeElement;
|
|
1089
|
+
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
export declare interface AtomicProductSectionEmphasized extends LitAtomicProductSectionEmphasized {
|
|
1094
|
+
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
@ProxyCmp({
|
|
1098
|
+
inputs: [],
|
|
1099
|
+
methods: [],
|
|
1100
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-section-metadata') || customElements.define('atomic-product-section-metadata', LitAtomicProductSectionMetadata);}
|
|
1101
|
+
})
|
|
1102
|
+
@Component({
|
|
1103
|
+
selector: 'atomic-product-section-metadata',
|
|
1104
|
+
standalone: false,
|
|
1105
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1106
|
+
template: '<ng-content></ng-content>',
|
|
1107
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1108
|
+
inputs: []
|
|
1109
|
+
})
|
|
1110
|
+
export class AtomicProductSectionMetadata {
|
|
1111
|
+
protected readonly el: HTMLElement;
|
|
1112
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1113
|
+
c.detach();
|
|
1114
|
+
this.el = el.nativeElement;
|
|
1115
|
+
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
export declare interface AtomicProductSectionMetadata extends LitAtomicProductSectionMetadata {
|
|
1120
|
+
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
@ProxyCmp({
|
|
1124
|
+
inputs: [],
|
|
1125
|
+
methods: [],
|
|
1126
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-section-name') || customElements.define('atomic-product-section-name', LitAtomicProductSectionName);}
|
|
1127
|
+
})
|
|
1128
|
+
@Component({
|
|
1129
|
+
selector: 'atomic-product-section-name',
|
|
1130
|
+
standalone: false,
|
|
1131
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1132
|
+
template: '<ng-content></ng-content>',
|
|
1133
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1134
|
+
inputs: []
|
|
1135
|
+
})
|
|
1136
|
+
export class AtomicProductSectionName {
|
|
1137
|
+
protected readonly el: HTMLElement;
|
|
1138
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1139
|
+
c.detach();
|
|
1140
|
+
this.el = el.nativeElement;
|
|
1141
|
+
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
export declare interface AtomicProductSectionName extends LitAtomicProductSectionName {
|
|
1146
|
+
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
@ProxyCmp({
|
|
1150
|
+
inputs: ['imageSize'],
|
|
1151
|
+
methods: [],
|
|
1152
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-section-visual') || customElements.define('atomic-product-section-visual', LitAtomicProductSectionVisual);}
|
|
1153
|
+
})
|
|
1154
|
+
@Component({
|
|
1155
|
+
selector: 'atomic-product-section-visual',
|
|
1156
|
+
standalone: false,
|
|
1157
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1158
|
+
template: '<ng-content></ng-content>',
|
|
1159
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1160
|
+
inputs: ['imageSize']
|
|
1161
|
+
})
|
|
1162
|
+
export class AtomicProductSectionVisual {
|
|
1163
|
+
protected readonly el: HTMLElement;
|
|
1164
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1165
|
+
c.detach();
|
|
1166
|
+
this.el = el.nativeElement;
|
|
1167
|
+
|
|
1168
|
+
}
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
export declare interface AtomicProductSectionVisual extends LitAtomicProductSectionVisual {
|
|
1172
|
+
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
@ProxyCmp({
|
|
1176
|
+
inputs: ['mustMatch', 'mustNotMatch'],
|
|
1177
|
+
methods: ['getTemplate'],
|
|
1178
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-template') || customElements.define('atomic-product-template', LitAtomicProductTemplate);}
|
|
1179
|
+
})
|
|
1180
|
+
@Component({
|
|
1181
|
+
selector: 'atomic-product-template',
|
|
1182
|
+
standalone: false,
|
|
1183
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1184
|
+
template: '<ng-content></ng-content>',
|
|
1185
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1186
|
+
inputs: ['mustMatch', 'mustNotMatch']
|
|
1187
|
+
})
|
|
1188
|
+
export class AtomicProductTemplate {
|
|
1189
|
+
protected readonly el: HTMLElement;
|
|
1190
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1191
|
+
c.detach();
|
|
1192
|
+
this.el = el.nativeElement;
|
|
1193
|
+
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
export declare interface AtomicProductTemplate extends LitAtomicProductTemplate {
|
|
1198
|
+
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
@ProxyCmp({
|
|
1202
|
+
inputs: ['field', 'shouldHighlight', 'disableHighlight', 'default'],
|
|
1203
|
+
methods: [],
|
|
1204
|
+
defineCustomElementFn: () => {customElements.get('atomic-product-text') || customElements.define('atomic-product-text', LitAtomicProductText);}
|
|
1205
|
+
})
|
|
1206
|
+
@Component({
|
|
1207
|
+
selector: 'atomic-product-text',
|
|
1208
|
+
standalone: false,
|
|
1209
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1210
|
+
template: '<ng-content></ng-content>',
|
|
1211
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1212
|
+
inputs: ['field', 'shouldHighlight', 'disableHighlight', 'default']
|
|
1213
|
+
})
|
|
1214
|
+
export class AtomicProductText {
|
|
1215
|
+
protected readonly el: HTMLElement;
|
|
1216
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1217
|
+
c.detach();
|
|
1218
|
+
this.el = el.nativeElement;
|
|
1219
|
+
|
|
1220
|
+
}
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
export declare interface AtomicProductText extends LitAtomicProductText {
|
|
1224
|
+
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
@ProxyCmp({
|
|
1228
|
+
inputs: ['stopPropagation', 'product', 'interactiveProduct', 'store', 'content', 'linkContent', 'display', 'density', 'imageSize', 'classes'],
|
|
1229
|
+
methods: [],
|
|
1230
|
+
defineCustomElementFn: () => {customElements.get('atomic-product') || customElements.define('atomic-product', LitAtomicProduct);}
|
|
1231
|
+
})
|
|
1232
|
+
@Component({
|
|
1233
|
+
selector: 'atomic-product',
|
|
1234
|
+
standalone: false,
|
|
1235
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1236
|
+
template: '<ng-content></ng-content>',
|
|
1237
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1238
|
+
inputs: ['stopPropagation', 'product', 'interactiveProduct', 'store', 'content', 'linkContent', 'display', 'density', 'imageSize', 'classes']
|
|
1239
|
+
})
|
|
1240
|
+
export class AtomicProduct {
|
|
1241
|
+
protected readonly el: HTMLElement;
|
|
1242
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1243
|
+
c.detach();
|
|
1244
|
+
this.el = el.nativeElement;
|
|
1245
|
+
|
|
1246
|
+
}
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
export declare interface AtomicProduct extends LitAtomicProduct {
|
|
1250
|
+
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
@ProxyCmp({
|
|
1254
|
+
inputs: [],
|
|
1255
|
+
methods: ['updateMessage', 'registerRegion'],
|
|
1256
|
+
defineCustomElementFn: () => {customElements.get('atomic-aria-live') || customElements.define('atomic-aria-live', LitAtomicAriaLive);}
|
|
1257
|
+
})
|
|
1258
|
+
@Component({
|
|
1259
|
+
selector: 'atomic-aria-live',
|
|
1260
|
+
standalone: false,
|
|
1261
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1262
|
+
template: '<ng-content></ng-content>',
|
|
1263
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1264
|
+
inputs: []
|
|
1265
|
+
})
|
|
1266
|
+
export class AtomicAriaLive {
|
|
1267
|
+
protected readonly el: HTMLElement;
|
|
1268
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1269
|
+
c.detach();
|
|
1270
|
+
this.el = el.nativeElement;
|
|
1271
|
+
proxyOutputs(this, this.el, ['atomic/accessibility/findAriaLive']);
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
export declare interface AtomicAriaLive extends LitAtomicAriaLive {
|
|
1276
|
+
'atomic/accessibility/findAriaLive': EventEmitter<CustomEvent<any>>;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
@ProxyCmp({
|
|
1280
|
+
inputs: ['element'],
|
|
1281
|
+
methods: [],
|
|
1282
|
+
defineCustomElementFn: () => {customElements.get('atomic-component-error') || customElements.define('atomic-component-error', LitAtomicComponentError);}
|
|
1283
|
+
})
|
|
1284
|
+
@Component({
|
|
1285
|
+
selector: 'atomic-component-error',
|
|
1286
|
+
standalone: false,
|
|
1287
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1288
|
+
template: '<ng-content></ng-content>',
|
|
1289
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1290
|
+
inputs: ['element']
|
|
1291
|
+
})
|
|
1292
|
+
export class AtomicComponentError {
|
|
1293
|
+
protected readonly el: HTMLElement;
|
|
1294
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1295
|
+
c.detach();
|
|
1296
|
+
this.el = el.nativeElement;
|
|
1297
|
+
|
|
1298
|
+
}
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
export declare interface AtomicComponentError extends LitAtomicComponentError {
|
|
1302
|
+
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
@ProxyCmp({
|
|
1306
|
+
inputs: ['active', 'source', 'container', 'shouldHideSelf', 'scope'],
|
|
1307
|
+
methods: [],
|
|
1308
|
+
defineCustomElementFn: () => {customElements.get('atomic-focus-trap') || customElements.define('atomic-focus-trap', LitAtomicFocusTrap);}
|
|
1309
|
+
})
|
|
1310
|
+
@Component({
|
|
1311
|
+
selector: 'atomic-focus-trap',
|
|
1312
|
+
standalone: false,
|
|
1313
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1314
|
+
template: '<ng-content></ng-content>',
|
|
1315
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1316
|
+
inputs: ['active', 'source', 'container', 'shouldHideSelf', 'scope']
|
|
1317
|
+
})
|
|
1318
|
+
export class AtomicFocusTrap {
|
|
1319
|
+
protected readonly el: HTMLElement;
|
|
1320
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1321
|
+
c.detach();
|
|
1322
|
+
this.el = el.nativeElement;
|
|
1323
|
+
|
|
1324
|
+
}
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
export declare interface AtomicFocusTrap extends LitAtomicFocusTrap {
|
|
1328
|
+
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
@ProxyCmp({
|
|
1332
|
+
inputs: ['isOpen', 'helpful'],
|
|
1333
|
+
methods: ['sendFeedback'],
|
|
1334
|
+
defineCustomElementFn: () => {customElements.get('atomic-generated-answer-feedback-modal') || customElements.define('atomic-generated-answer-feedback-modal', LitAtomicGeneratedAnswerFeedbackModal);}
|
|
1335
|
+
})
|
|
1336
|
+
@Component({
|
|
1337
|
+
selector: 'atomic-generated-answer-feedback-modal',
|
|
1338
|
+
standalone: false,
|
|
1339
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1340
|
+
template: '<ng-content></ng-content>',
|
|
1341
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1342
|
+
inputs: ['isOpen', 'helpful']
|
|
1343
|
+
})
|
|
1344
|
+
export class AtomicGeneratedAnswerFeedbackModal {
|
|
1345
|
+
protected readonly el: HTMLElement;
|
|
1346
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1347
|
+
c.detach();
|
|
1348
|
+
this.el = el.nativeElement;
|
|
1349
|
+
proxyOutputs(this, this.el, ['feedbackSent']);
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
export declare interface AtomicGeneratedAnswerFeedbackModal extends LitAtomicGeneratedAnswerFeedbackModal {
|
|
1354
|
+
'feedbackSent': EventEmitter<CustomEvent<any>>;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
@ProxyCmp({
|
|
1358
|
+
inputs: ['icon'],
|
|
1359
|
+
methods: ['updateIcon', 'initialize'],
|
|
1360
|
+
defineCustomElementFn: () => {customElements.get('atomic-icon') || customElements.define('atomic-icon', LitAtomicIcon);}
|
|
1361
|
+
})
|
|
1362
|
+
@Component({
|
|
1363
|
+
selector: 'atomic-icon',
|
|
1364
|
+
standalone: false,
|
|
1365
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1366
|
+
template: '<ng-content></ng-content>',
|
|
1367
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1368
|
+
inputs: ['icon']
|
|
1369
|
+
})
|
|
1370
|
+
export class AtomicIcon {
|
|
1371
|
+
protected readonly el: HTMLElement;
|
|
1372
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1373
|
+
c.detach();
|
|
1374
|
+
this.el = el.nativeElement;
|
|
1375
|
+
|
|
1376
|
+
}
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
export declare interface AtomicIcon extends LitAtomicIcon {
|
|
1380
|
+
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
@ProxyCmp({
|
|
1384
|
+
inputs: ['section', 'minWidth', 'maxWidth'],
|
|
1385
|
+
methods: [],
|
|
1386
|
+
defineCustomElementFn: () => {customElements.get('atomic-layout-section') || customElements.define('atomic-layout-section', LitAtomicLayoutSection);}
|
|
1387
|
+
})
|
|
1388
|
+
@Component({
|
|
1389
|
+
selector: 'atomic-layout-section',
|
|
1390
|
+
standalone: false,
|
|
1391
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1392
|
+
template: '<ng-content></ng-content>',
|
|
1393
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1394
|
+
inputs: ['section', 'minWidth', 'maxWidth']
|
|
1395
|
+
})
|
|
1396
|
+
export class AtomicLayoutSection {
|
|
1397
|
+
protected readonly el: HTMLElement;
|
|
1398
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1399
|
+
c.detach();
|
|
1400
|
+
this.el = el.nativeElement;
|
|
1401
|
+
|
|
1402
|
+
}
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
export declare interface AtomicLayoutSection extends LitAtomicLayoutSection {
|
|
1406
|
+
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
@ProxyCmp({
|
|
1410
|
+
inputs: ['label', 'start', 'end', 'endInclusive'],
|
|
1411
|
+
methods: [],
|
|
1412
|
+
defineCustomElementFn: () => {customElements.get('atomic-numeric-range') || customElements.define('atomic-numeric-range', LitAtomicNumericRange);}
|
|
1413
|
+
})
|
|
1414
|
+
@Component({
|
|
1415
|
+
selector: 'atomic-numeric-range',
|
|
1416
|
+
standalone: false,
|
|
1417
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1418
|
+
template: '<ng-content></ng-content>',
|
|
1419
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1420
|
+
inputs: ['label', 'start', 'end', 'endInclusive']
|
|
1421
|
+
})
|
|
1422
|
+
export class AtomicNumericRange {
|
|
1423
|
+
protected readonly el: HTMLElement;
|
|
1424
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1425
|
+
c.detach();
|
|
1426
|
+
this.el = el.nativeElement;
|
|
1427
|
+
|
|
1428
|
+
}
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
export declare interface AtomicNumericRange extends LitAtomicNumericRange {
|
|
1432
|
+
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
@ProxyCmp({
|
|
1436
|
+
inputs: ['period', 'unit', 'amount', 'label'],
|
|
1437
|
+
methods: [],
|
|
1438
|
+
defineCustomElementFn: () => {customElements.get('atomic-timeframe') || customElements.define('atomic-timeframe', LitAtomicTimeframe);}
|
|
1439
|
+
})
|
|
1440
|
+
@Component({
|
|
1441
|
+
selector: 'atomic-timeframe',
|
|
1442
|
+
standalone: false,
|
|
1443
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1444
|
+
template: '<ng-content></ng-content>',
|
|
1445
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1446
|
+
inputs: ['period', 'unit', 'amount', 'label']
|
|
1447
|
+
})
|
|
1448
|
+
export class AtomicTimeframe {
|
|
1449
|
+
protected readonly el: HTMLElement;
|
|
1450
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1451
|
+
c.detach();
|
|
1452
|
+
this.el = el.nativeElement;
|
|
1453
|
+
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
export declare interface AtomicTimeframe extends LitAtomicTimeframe {
|
|
1458
|
+
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
@ProxyCmp({
|
|
1462
|
+
inputs: ['clickCallback', 'tooltip'],
|
|
1463
|
+
methods: [],
|
|
1464
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-edit-toggle') || customElements.define('atomic-insight-edit-toggle', LitAtomicInsightEditToggle);}
|
|
1465
|
+
})
|
|
1466
|
+
@Component({
|
|
1467
|
+
selector: 'atomic-insight-edit-toggle',
|
|
1468
|
+
standalone: false,
|
|
1469
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1470
|
+
template: '<ng-content></ng-content>',
|
|
1471
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1472
|
+
inputs: ['clickCallback', 'tooltip']
|
|
1473
|
+
})
|
|
1474
|
+
export class AtomicInsightEditToggle {
|
|
1475
|
+
protected readonly el: HTMLElement;
|
|
1476
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1477
|
+
c.detach();
|
|
1478
|
+
this.el = el.nativeElement;
|
|
1479
|
+
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
export declare interface AtomicInsightEditToggle extends LitAtomicInsightEditToggle {
|
|
1484
|
+
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
@ProxyCmp({
|
|
1488
|
+
inputs: ['label', 'field', 'numberOfValues', 'sortCriteria', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'enableExclusion', 'facetId'],
|
|
1489
|
+
methods: ['initialize'],
|
|
1490
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-facet') || customElements.define('atomic-insight-facet', LitAtomicInsightFacet);}
|
|
1491
|
+
})
|
|
1492
|
+
@Component({
|
|
1493
|
+
selector: 'atomic-insight-facet',
|
|
1494
|
+
standalone: false,
|
|
1495
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1496
|
+
template: '<ng-content></ng-content>',
|
|
1497
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1498
|
+
inputs: ['label', 'field', 'numberOfValues', 'sortCriteria', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'enableExclusion', 'facetId']
|
|
1499
|
+
})
|
|
1500
|
+
export class AtomicInsightFacet {
|
|
1501
|
+
protected readonly el: HTMLElement;
|
|
1502
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1503
|
+
c.detach();
|
|
1504
|
+
this.el = el.nativeElement;
|
|
1505
|
+
|
|
1506
|
+
}
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
export declare interface AtomicInsightFacet extends LitAtomicInsightFacet {
|
|
1510
|
+
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
@ProxyCmp({
|
|
1514
|
+
inputs: ['density', 'imageSize', 'collectionField', 'parentField', 'childField', 'numberOfFoldedResults'],
|
|
1515
|
+
methods: ['initialize', 'setRenderFunction'],
|
|
1516
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-folded-result-list') || customElements.define('atomic-insight-folded-result-list', LitAtomicInsightFoldedResultList);}
|
|
1517
|
+
})
|
|
1518
|
+
@Component({
|
|
1519
|
+
selector: 'atomic-insight-folded-result-list',
|
|
1520
|
+
standalone: false,
|
|
1521
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1522
|
+
template: '<ng-content></ng-content>',
|
|
1523
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1524
|
+
inputs: ['density', 'imageSize', 'collectionField', 'parentField', 'childField', 'numberOfFoldedResults']
|
|
1525
|
+
})
|
|
1526
|
+
export class AtomicInsightFoldedResultList {
|
|
1527
|
+
protected readonly el: HTMLElement;
|
|
1528
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1529
|
+
c.detach();
|
|
1530
|
+
this.el = el.nativeElement;
|
|
1531
|
+
|
|
1532
|
+
}
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
export declare interface AtomicInsightFoldedResultList extends LitAtomicInsightFoldedResultList {
|
|
1536
|
+
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
@ProxyCmp({
|
|
1540
|
+
inputs: ['tooltip'],
|
|
1541
|
+
methods: ['initialize'],
|
|
1542
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-full-search-button') || customElements.define('atomic-insight-full-search-button', LitAtomicInsightFullSearchButton);}
|
|
1543
|
+
})
|
|
1544
|
+
@Component({
|
|
1545
|
+
selector: 'atomic-insight-full-search-button',
|
|
1546
|
+
standalone: false,
|
|
1547
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1548
|
+
template: '<ng-content></ng-content>',
|
|
1549
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1550
|
+
inputs: ['tooltip']
|
|
1551
|
+
})
|
|
1552
|
+
export class AtomicInsightFullSearchButton {
|
|
1553
|
+
protected readonly el: HTMLElement;
|
|
1554
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1555
|
+
c.detach();
|
|
1556
|
+
this.el = el.nativeElement;
|
|
1557
|
+
|
|
1558
|
+
}
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
export declare interface AtomicInsightFullSearchButton extends LitAtomicInsightFullSearchButton {
|
|
1562
|
+
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
@ProxyCmp({
|
|
1566
|
+
inputs: ['tooltip'],
|
|
1567
|
+
methods: ['initialize'],
|
|
1568
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-generate-answer-button') || customElements.define('atomic-insight-generate-answer-button', LitAtomicInsightGenerateAnswerButton);}
|
|
1569
|
+
})
|
|
1570
|
+
@Component({
|
|
1571
|
+
selector: 'atomic-insight-generate-answer-button',
|
|
1572
|
+
standalone: false,
|
|
1573
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1574
|
+
template: '<ng-content></ng-content>',
|
|
1575
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1576
|
+
inputs: ['tooltip']
|
|
1577
|
+
})
|
|
1578
|
+
export class AtomicInsightGenerateAnswerButton {
|
|
1579
|
+
protected readonly el: HTMLElement;
|
|
1580
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1581
|
+
c.detach();
|
|
1582
|
+
this.el = el.nativeElement;
|
|
1583
|
+
|
|
1584
|
+
}
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
export declare interface AtomicInsightGenerateAnswerButton extends LitAtomicInsightGenerateAnswerButton {
|
|
1588
|
+
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
@ProxyCmp({
|
|
1592
|
+
inputs: ['withToggle', 'collapsible', 'maxCollapsedHeight', 'fieldsToIncludeInCitations', 'disableCitationAnchoring'],
|
|
1593
|
+
methods: ['initialize'],
|
|
1594
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-generated-answer') || customElements.define('atomic-insight-generated-answer', LitAtomicInsightGeneratedAnswer);}
|
|
1595
|
+
})
|
|
1596
|
+
@Component({
|
|
1597
|
+
selector: 'atomic-insight-generated-answer',
|
|
1598
|
+
standalone: false,
|
|
1599
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1600
|
+
template: '<ng-content></ng-content>',
|
|
1601
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1602
|
+
inputs: ['withToggle', 'collapsible', 'maxCollapsedHeight', 'fieldsToIncludeInCitations', 'disableCitationAnchoring']
|
|
1603
|
+
})
|
|
1604
|
+
export class AtomicInsightGeneratedAnswer {
|
|
1605
|
+
protected readonly el: HTMLElement;
|
|
1606
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1607
|
+
c.detach();
|
|
1608
|
+
this.el = el.nativeElement;
|
|
1609
|
+
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
export declare interface AtomicInsightGeneratedAnswer extends LitAtomicInsightGeneratedAnswer {
|
|
1614
|
+
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
@ProxyCmp({
|
|
1618
|
+
inputs: ['engine', 'analytics', 'i18n', 'logLevel', 'language', 'languageAssetsPath', 'iconAssetsPath', 'fieldsToInclude'],
|
|
1619
|
+
methods: ['initialize', 'initializeWithInsightEngine', 'executeFirstSearch', 'toggleAnalytics', 'updateIconAssetsPath', 'updateLanguage', 'registerFieldsToInclude'],
|
|
1620
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-interface') || customElements.define('atomic-insight-interface', LitAtomicInsightInterface);}
|
|
1621
|
+
})
|
|
1622
|
+
@Component({
|
|
1623
|
+
selector: 'atomic-insight-interface',
|
|
1624
|
+
standalone: false,
|
|
1625
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1626
|
+
template: '<ng-content></ng-content>',
|
|
1627
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1628
|
+
inputs: ['engine', 'analytics', 'i18n', 'logLevel', 'language', 'languageAssetsPath', 'iconAssetsPath', 'fieldsToInclude']
|
|
1629
|
+
})
|
|
1630
|
+
export class AtomicInsightInterface {
|
|
1631
|
+
protected readonly el: HTMLElement;
|
|
1632
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1633
|
+
c.detach();
|
|
1634
|
+
this.el = el.nativeElement;
|
|
1635
|
+
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
export declare interface AtomicInsightInterface extends LitAtomicInsightInterface {
|
|
1640
|
+
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
@ProxyCmp({
|
|
1644
|
+
inputs: ['widget', 'mobileBreakpoint'],
|
|
1645
|
+
methods: ['onMobileBreakpointChange', 'onWidgetChange'],
|
|
1646
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-layout') || customElements.define('atomic-insight-layout', LitAtomicInsightLayout);}
|
|
1647
|
+
})
|
|
1648
|
+
@Component({
|
|
1649
|
+
selector: 'atomic-insight-layout',
|
|
1650
|
+
standalone: false,
|
|
1651
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1652
|
+
template: '<ng-content></ng-content>',
|
|
1653
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1654
|
+
inputs: ['widget', 'mobileBreakpoint']
|
|
1655
|
+
})
|
|
1656
|
+
export class AtomicInsightLayout {
|
|
1657
|
+
protected readonly el: HTMLElement;
|
|
1658
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1659
|
+
c.detach();
|
|
1660
|
+
this.el = el.nativeElement;
|
|
1661
|
+
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
export declare interface AtomicInsightLayout extends LitAtomicInsightLayout {
|
|
1666
|
+
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
@ProxyCmp({
|
|
1670
|
+
inputs: [],
|
|
1671
|
+
methods: ['initialize'],
|
|
1672
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-no-results') || customElements.define('atomic-insight-no-results', LitAtomicInsightNoResults);}
|
|
1673
|
+
})
|
|
1674
|
+
@Component({
|
|
1675
|
+
selector: 'atomic-insight-no-results',
|
|
1676
|
+
standalone: false,
|
|
1677
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1678
|
+
template: '<ng-content></ng-content>',
|
|
1679
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1680
|
+
inputs: []
|
|
1681
|
+
})
|
|
1682
|
+
export class AtomicInsightNoResults {
|
|
1683
|
+
protected readonly el: HTMLElement;
|
|
1684
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1685
|
+
c.detach();
|
|
1686
|
+
this.el = el.nativeElement;
|
|
1687
|
+
|
|
1688
|
+
}
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
export declare interface AtomicInsightNoResults extends LitAtomicInsightNoResults {
|
|
1692
|
+
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
@ProxyCmp({
|
|
1696
|
+
inputs: ['facetId', 'label', 'field', 'numberOfValues', 'withInput', 'sortCriteria', 'rangeAlgorithm', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn'],
|
|
1697
|
+
methods: ['initialize'],
|
|
1698
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-numeric-facet') || customElements.define('atomic-insight-numeric-facet', LitAtomicInsightNumericFacet);}
|
|
1699
|
+
})
|
|
1700
|
+
@Component({
|
|
1701
|
+
selector: 'atomic-insight-numeric-facet',
|
|
1702
|
+
standalone: false,
|
|
1703
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1704
|
+
template: '<ng-content></ng-content>',
|
|
1705
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1706
|
+
inputs: ['facetId', 'label', 'field', 'numberOfValues', 'withInput', 'sortCriteria', 'rangeAlgorithm', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn']
|
|
1707
|
+
})
|
|
1708
|
+
export class AtomicInsightNumericFacet {
|
|
1709
|
+
protected readonly el: HTMLElement;
|
|
1710
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1711
|
+
c.detach();
|
|
1712
|
+
this.el = el.nativeElement;
|
|
1713
|
+
|
|
1714
|
+
}
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
export declare interface AtomicInsightNumericFacet extends LitAtomicInsightNumericFacet {
|
|
1718
|
+
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
@ProxyCmp({
|
|
1722
|
+
inputs: ['numberOfPages'],
|
|
1723
|
+
methods: ['initialize'],
|
|
1724
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-pager') || customElements.define('atomic-insight-pager', LitAtomicInsightPager);}
|
|
1725
|
+
})
|
|
1726
|
+
@Component({
|
|
1727
|
+
selector: 'atomic-insight-pager',
|
|
1728
|
+
standalone: false,
|
|
1729
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1730
|
+
template: '<ng-content></ng-content>',
|
|
1731
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1732
|
+
inputs: ['numberOfPages']
|
|
1733
|
+
})
|
|
1734
|
+
export class AtomicInsightPager {
|
|
1735
|
+
protected readonly el: HTMLElement;
|
|
1736
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1737
|
+
c.detach();
|
|
1738
|
+
this.el = el.nativeElement;
|
|
1739
|
+
proxyOutputs(this, this.el, ['atomic/scrollToTop']);
|
|
1740
|
+
}
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
export declare interface AtomicInsightPager extends LitAtomicInsightPager {
|
|
1744
|
+
'atomic/scrollToTop': EventEmitter<CustomEvent<any>>;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
@ProxyCmp({
|
|
1748
|
+
inputs: [],
|
|
1749
|
+
methods: ['initialize'],
|
|
1750
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-query-error') || customElements.define('atomic-insight-query-error', LitAtomicInsightQueryError);}
|
|
1751
|
+
})
|
|
1752
|
+
@Component({
|
|
1753
|
+
selector: 'atomic-insight-query-error',
|
|
1754
|
+
standalone: false,
|
|
1755
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1756
|
+
template: '<ng-content></ng-content>',
|
|
1757
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1758
|
+
inputs: []
|
|
1759
|
+
})
|
|
1760
|
+
export class AtomicInsightQueryError {
|
|
1761
|
+
protected readonly el: HTMLElement;
|
|
1762
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1763
|
+
c.detach();
|
|
1764
|
+
this.el = el.nativeElement;
|
|
1765
|
+
|
|
1766
|
+
}
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
export declare interface AtomicInsightQueryError extends LitAtomicInsightQueryError {
|
|
1770
|
+
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
@ProxyCmp({
|
|
1774
|
+
inputs: [],
|
|
1775
|
+
methods: ['initialize'],
|
|
1776
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-query-summary') || customElements.define('atomic-insight-query-summary', LitAtomicInsightQuerySummary);}
|
|
1777
|
+
})
|
|
1778
|
+
@Component({
|
|
1779
|
+
selector: 'atomic-insight-query-summary',
|
|
1780
|
+
standalone: false,
|
|
1781
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1782
|
+
template: '<ng-content></ng-content>',
|
|
1783
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1784
|
+
inputs: []
|
|
1785
|
+
})
|
|
1786
|
+
export class AtomicInsightQuerySummary {
|
|
1787
|
+
protected readonly el: HTMLElement;
|
|
1788
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1789
|
+
c.detach();
|
|
1790
|
+
this.el = el.nativeElement;
|
|
1791
|
+
|
|
1792
|
+
}
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
export declare interface AtomicInsightQuerySummary extends LitAtomicInsightQuerySummary {
|
|
1796
|
+
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
@ProxyCmp({
|
|
1800
|
+
inputs: ['openButton', 'isOpen'],
|
|
1801
|
+
methods: ['initialize', 'updateDimensions'],
|
|
1802
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-refine-modal') || customElements.define('atomic-insight-refine-modal', LitAtomicInsightRefineModal);}
|
|
1803
|
+
})
|
|
1804
|
+
@Component({
|
|
1805
|
+
selector: 'atomic-insight-refine-modal',
|
|
1806
|
+
standalone: false,
|
|
1807
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1808
|
+
template: '<ng-content></ng-content>',
|
|
1809
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1810
|
+
inputs: ['openButton', 'isOpen']
|
|
1811
|
+
})
|
|
1812
|
+
export class AtomicInsightRefineModal {
|
|
1813
|
+
protected readonly el: HTMLElement;
|
|
1814
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1815
|
+
c.detach();
|
|
1816
|
+
this.el = el.nativeElement;
|
|
1817
|
+
|
|
1818
|
+
}
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
export declare interface AtomicInsightRefineModal extends LitAtomicInsightRefineModal {
|
|
1822
|
+
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
@ProxyCmp({
|
|
1826
|
+
inputs: [],
|
|
1827
|
+
methods: ['initialize'],
|
|
1828
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-refine-toggle') || customElements.define('atomic-insight-refine-toggle', LitAtomicInsightRefineToggle);}
|
|
1829
|
+
})
|
|
1830
|
+
@Component({
|
|
1831
|
+
selector: 'atomic-insight-refine-toggle',
|
|
1832
|
+
standalone: false,
|
|
1833
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1834
|
+
template: '<ng-content></ng-content>',
|
|
1835
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1836
|
+
inputs: []
|
|
1837
|
+
})
|
|
1838
|
+
export class AtomicInsightRefineToggle {
|
|
1839
|
+
protected readonly el: HTMLElement;
|
|
1840
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1841
|
+
c.detach();
|
|
1842
|
+
this.el = el.nativeElement;
|
|
1843
|
+
|
|
1844
|
+
}
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
export declare interface AtomicInsightRefineToggle extends LitAtomicInsightRefineToggle {
|
|
1848
|
+
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
@ProxyCmp({
|
|
1852
|
+
inputs: [],
|
|
1853
|
+
methods: [],
|
|
1854
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result-action-bar') || customElements.define('atomic-insight-result-action-bar', LitAtomicInsightResultActionBar);}
|
|
1855
|
+
})
|
|
1856
|
+
@Component({
|
|
1857
|
+
selector: 'atomic-insight-result-action-bar',
|
|
1858
|
+
standalone: false,
|
|
1859
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1860
|
+
template: '<ng-content></ng-content>',
|
|
1861
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1862
|
+
inputs: []
|
|
1863
|
+
})
|
|
1864
|
+
export class AtomicInsightResultActionBar {
|
|
1865
|
+
protected readonly el: HTMLElement;
|
|
1866
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1867
|
+
c.detach();
|
|
1868
|
+
this.el = el.nativeElement;
|
|
1869
|
+
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
export declare interface AtomicInsightResultActionBar extends LitAtomicInsightResultActionBar {
|
|
1874
|
+
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
@ProxyCmp({
|
|
1878
|
+
inputs: ['icon', 'tooltip', 'tooltipOnClick', 'action'],
|
|
1879
|
+
methods: ['initialize'],
|
|
1880
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result-action') || customElements.define('atomic-insight-result-action', LitAtomicInsightResultAction);}
|
|
1881
|
+
})
|
|
1882
|
+
@Component({
|
|
1883
|
+
selector: 'atomic-insight-result-action',
|
|
1884
|
+
standalone: false,
|
|
1885
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1886
|
+
template: '<ng-content></ng-content>',
|
|
1887
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1888
|
+
inputs: ['icon', 'tooltip', 'tooltipOnClick', 'action']
|
|
1889
|
+
})
|
|
1890
|
+
export class AtomicInsightResultAction {
|
|
1891
|
+
protected readonly el: HTMLElement;
|
|
1892
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1893
|
+
c.detach();
|
|
1894
|
+
this.el = el.nativeElement;
|
|
1895
|
+
proxyOutputs(this, this.el, ['atomicInsightResultActionClicked']);
|
|
1896
|
+
}
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1899
|
+
export declare interface AtomicInsightResultAction extends LitAtomicInsightResultAction {
|
|
1900
|
+
'atomicInsightResultActionClicked': EventEmitter<CustomEvent<any>>;
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
@ProxyCmp({
|
|
1904
|
+
inputs: [],
|
|
1905
|
+
methods: ['initialize'],
|
|
1906
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result-attach-to-case-action') || customElements.define('atomic-insight-result-attach-to-case-action', LitAtomicInsightResultAttachToCaseAction);}
|
|
1907
|
+
})
|
|
1908
|
+
@Component({
|
|
1909
|
+
selector: 'atomic-insight-result-attach-to-case-action',
|
|
1910
|
+
standalone: false,
|
|
1911
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1912
|
+
template: '<ng-content></ng-content>',
|
|
1913
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1914
|
+
inputs: []
|
|
1915
|
+
})
|
|
1916
|
+
export class AtomicInsightResultAttachToCaseAction {
|
|
1917
|
+
protected readonly el: HTMLElement;
|
|
1918
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1919
|
+
c.detach();
|
|
1920
|
+
this.el = el.nativeElement;
|
|
1921
|
+
proxyOutputs(this, this.el, ['atomic/insight/attachToCase/detach', 'atomic/insight/attachToCase/attach']);
|
|
1922
|
+
}
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
export declare interface AtomicInsightResultAttachToCaseAction extends LitAtomicInsightResultAttachToCaseAction {
|
|
1926
|
+
'atomic/insight/attachToCase/detach': EventEmitter<CustomEvent<any>>;
|
|
1927
|
+
'atomic/insight/attachToCase/attach': EventEmitter<CustomEvent<any>>;
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
@ProxyCmp({
|
|
1931
|
+
inputs: [],
|
|
1932
|
+
methods: ['initialize'],
|
|
1933
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result-attach-to-case-indicator') || customElements.define('atomic-insight-result-attach-to-case-indicator', LitAtomicInsightResultAttachToCaseIndicator);}
|
|
1934
|
+
})
|
|
1935
|
+
@Component({
|
|
1936
|
+
selector: 'atomic-insight-result-attach-to-case-indicator',
|
|
1937
|
+
standalone: false,
|
|
1938
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1939
|
+
template: '<ng-content></ng-content>',
|
|
1940
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1941
|
+
inputs: []
|
|
1942
|
+
})
|
|
1943
|
+
export class AtomicInsightResultAttachToCaseIndicator {
|
|
1944
|
+
protected readonly el: HTMLElement;
|
|
1945
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1946
|
+
c.detach();
|
|
1947
|
+
this.el = el.nativeElement;
|
|
1948
|
+
|
|
1949
|
+
}
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
export declare interface AtomicInsightResultAttachToCaseIndicator extends LitAtomicInsightResultAttachToCaseIndicator {
|
|
1953
|
+
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
@ProxyCmp({
|
|
1957
|
+
inputs: ['ifDefined', 'ifNotDefined', 'mustMatch', 'mustNotMatch'],
|
|
1958
|
+
methods: ['getTemplate'],
|
|
1959
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result-children-template') || customElements.define('atomic-insight-result-children-template', LitAtomicInsightResultChildrenTemplate);}
|
|
1960
|
+
})
|
|
1961
|
+
@Component({
|
|
1962
|
+
selector: 'atomic-insight-result-children-template',
|
|
1963
|
+
standalone: false,
|
|
1964
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1965
|
+
template: '<ng-content></ng-content>',
|
|
1966
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1967
|
+
inputs: ['ifDefined', 'ifNotDefined', 'mustMatch', 'mustNotMatch']
|
|
1968
|
+
})
|
|
1969
|
+
export class AtomicInsightResultChildrenTemplate {
|
|
1970
|
+
protected readonly el: HTMLElement;
|
|
1971
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1972
|
+
c.detach();
|
|
1973
|
+
this.el = el.nativeElement;
|
|
1974
|
+
|
|
1975
|
+
}
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
export declare interface AtomicInsightResultChildrenTemplate extends LitAtomicInsightResultChildrenTemplate {
|
|
1979
|
+
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
@ProxyCmp({
|
|
1983
|
+
inputs: ['inheritTemplates', 'imageSize', 'noResultText'],
|
|
1984
|
+
methods: ['initialize'],
|
|
1985
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result-children') || customElements.define('atomic-insight-result-children', LitAtomicInsightResultChildren);}
|
|
1986
|
+
})
|
|
1987
|
+
@Component({
|
|
1988
|
+
selector: 'atomic-insight-result-children',
|
|
1989
|
+
standalone: false,
|
|
1990
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1991
|
+
template: '<ng-content></ng-content>',
|
|
1992
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1993
|
+
inputs: ['inheritTemplates', 'imageSize', 'noResultText']
|
|
1994
|
+
})
|
|
1995
|
+
export class AtomicInsightResultChildren {
|
|
1996
|
+
protected readonly el: HTMLElement;
|
|
1997
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
1998
|
+
c.detach();
|
|
1999
|
+
this.el = el.nativeElement;
|
|
2000
|
+
|
|
2001
|
+
}
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
export declare interface AtomicInsightResultChildren extends LitAtomicInsightResultChildren {
|
|
2005
|
+
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
@ProxyCmp({
|
|
2009
|
+
inputs: ['density', 'imageSize'],
|
|
2010
|
+
methods: ['setRenderFunction', 'initialize'],
|
|
2011
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result-list') || customElements.define('atomic-insight-result-list', LitAtomicInsightResultList);}
|
|
2012
|
+
})
|
|
2013
|
+
@Component({
|
|
2014
|
+
selector: 'atomic-insight-result-list',
|
|
2015
|
+
standalone: false,
|
|
2016
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2017
|
+
template: '<ng-content></ng-content>',
|
|
2018
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2019
|
+
inputs: ['density', 'imageSize']
|
|
2020
|
+
})
|
|
2021
|
+
export class AtomicInsightResultList {
|
|
2022
|
+
protected readonly el: HTMLElement;
|
|
2023
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2024
|
+
c.detach();
|
|
2025
|
+
this.el = el.nativeElement;
|
|
2026
|
+
|
|
2027
|
+
}
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
export declare interface AtomicInsightResultList extends LitAtomicInsightResultList {
|
|
2031
|
+
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
@ProxyCmp({
|
|
2035
|
+
inputs: ['sandbox'],
|
|
2036
|
+
methods: ['initialize'],
|
|
2037
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result-quickview-action') || customElements.define('atomic-insight-result-quickview-action', LitAtomicInsightResultQuickviewAction);}
|
|
2038
|
+
})
|
|
2039
|
+
@Component({
|
|
2040
|
+
selector: 'atomic-insight-result-quickview-action',
|
|
2041
|
+
standalone: false,
|
|
2042
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2043
|
+
template: '<ng-content></ng-content>',
|
|
2044
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2045
|
+
inputs: ['sandbox']
|
|
2046
|
+
})
|
|
2047
|
+
export class AtomicInsightResultQuickviewAction {
|
|
2048
|
+
protected readonly el: HTMLElement;
|
|
2049
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2050
|
+
c.detach();
|
|
2051
|
+
this.el = el.nativeElement;
|
|
2052
|
+
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
export declare interface AtomicInsightResultQuickviewAction extends LitAtomicInsightResultQuickviewAction {
|
|
2057
|
+
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
@ProxyCmp({
|
|
2061
|
+
inputs: ['mustMatch', 'mustNotMatch'],
|
|
2062
|
+
methods: ['getTemplate'],
|
|
2063
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result-template') || customElements.define('atomic-insight-result-template', LitAtomicInsightResultTemplate);}
|
|
2064
|
+
})
|
|
2065
|
+
@Component({
|
|
2066
|
+
selector: 'atomic-insight-result-template',
|
|
2067
|
+
standalone: false,
|
|
2068
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2069
|
+
template: '<ng-content></ng-content>',
|
|
2070
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2071
|
+
inputs: ['mustMatch', 'mustNotMatch']
|
|
2072
|
+
})
|
|
2073
|
+
export class AtomicInsightResultTemplate {
|
|
2074
|
+
protected readonly el: HTMLElement;
|
|
2075
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2076
|
+
c.detach();
|
|
2077
|
+
this.el = el.nativeElement;
|
|
2078
|
+
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
export declare interface AtomicInsightResultTemplate extends LitAtomicInsightResultTemplate {
|
|
2083
|
+
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
@ProxyCmp({
|
|
2087
|
+
inputs: ['stopPropagation', 'result', 'content', 'density', 'imageSize', 'classes'],
|
|
2088
|
+
methods: [],
|
|
2089
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-result') || customElements.define('atomic-insight-result', LitAtomicInsightResult);}
|
|
2090
|
+
})
|
|
2091
|
+
@Component({
|
|
2092
|
+
selector: 'atomic-insight-result',
|
|
2093
|
+
standalone: false,
|
|
2094
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2095
|
+
template: '<ng-content></ng-content>',
|
|
2096
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2097
|
+
inputs: ['stopPropagation', 'result', 'content', 'density', 'imageSize', 'classes']
|
|
2098
|
+
})
|
|
2099
|
+
export class AtomicInsightResult {
|
|
2100
|
+
protected readonly el: HTMLElement;
|
|
2101
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2102
|
+
c.detach();
|
|
2103
|
+
this.el = el.nativeElement;
|
|
2104
|
+
|
|
2105
|
+
}
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
export declare interface AtomicInsightResult extends LitAtomicInsightResult {
|
|
2109
|
+
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
@ProxyCmp({
|
|
2113
|
+
inputs: ['disableSearch', 'numberOfSuggestions'],
|
|
2114
|
+
methods: ['initialize'],
|
|
2115
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-search-box') || customElements.define('atomic-insight-search-box', LitAtomicInsightSearchBox);}
|
|
2116
|
+
})
|
|
2117
|
+
@Component({
|
|
2118
|
+
selector: 'atomic-insight-search-box',
|
|
2119
|
+
standalone: false,
|
|
2120
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2121
|
+
template: '<ng-content></ng-content>',
|
|
2122
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2123
|
+
inputs: ['disableSearch', 'numberOfSuggestions']
|
|
2124
|
+
})
|
|
2125
|
+
export class AtomicInsightSearchBox {
|
|
2126
|
+
protected readonly el: HTMLElement;
|
|
2127
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2128
|
+
c.detach();
|
|
2129
|
+
this.el = el.nativeElement;
|
|
2130
|
+
|
|
2131
|
+
}
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2134
|
+
export declare interface AtomicInsightSearchBox extends LitAtomicInsightSearchBox {
|
|
2135
|
+
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
@ProxyCmp({
|
|
2139
|
+
inputs: ['headingLevel', 'snippetStyle'],
|
|
2140
|
+
methods: ['initialize'],
|
|
2141
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-smart-snippet-suggestions') || customElements.define('atomic-insight-smart-snippet-suggestions', LitAtomicInsightSmartSnippetSuggestions);}
|
|
2142
|
+
})
|
|
2143
|
+
@Component({
|
|
2144
|
+
selector: 'atomic-insight-smart-snippet-suggestions',
|
|
2145
|
+
standalone: false,
|
|
2146
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2147
|
+
template: '<ng-content></ng-content>',
|
|
2148
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2149
|
+
inputs: ['headingLevel', 'snippetStyle']
|
|
2150
|
+
})
|
|
2151
|
+
export class AtomicInsightSmartSnippetSuggestions {
|
|
2152
|
+
protected readonly el: HTMLElement;
|
|
2153
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2154
|
+
c.detach();
|
|
2155
|
+
this.el = el.nativeElement;
|
|
2156
|
+
|
|
2157
|
+
}
|
|
2158
|
+
}
|
|
2159
|
+
|
|
2160
|
+
export declare interface AtomicInsightSmartSnippetSuggestions extends LitAtomicInsightSmartSnippetSuggestions {
|
|
2161
|
+
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
@ProxyCmp({
|
|
2165
|
+
inputs: ['headingLevel', 'maximumHeight', 'collapsedHeight', 'snippetStyle'],
|
|
2166
|
+
methods: ['initialize'],
|
|
2167
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-smart-snippet') || customElements.define('atomic-insight-smart-snippet', LitAtomicInsightSmartSnippet);}
|
|
2168
|
+
})
|
|
2169
|
+
@Component({
|
|
2170
|
+
selector: 'atomic-insight-smart-snippet',
|
|
2171
|
+
standalone: false,
|
|
2172
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2173
|
+
template: '<ng-content></ng-content>',
|
|
2174
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2175
|
+
inputs: ['headingLevel', 'maximumHeight', 'collapsedHeight', 'snippetStyle']
|
|
2176
|
+
})
|
|
2177
|
+
export class AtomicInsightSmartSnippet {
|
|
2178
|
+
protected readonly el: HTMLElement;
|
|
2179
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2180
|
+
c.detach();
|
|
2181
|
+
this.el = el.nativeElement;
|
|
2182
|
+
|
|
2183
|
+
}
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
export declare interface AtomicInsightSmartSnippet extends LitAtomicInsightSmartSnippet {
|
|
2187
|
+
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
@ProxyCmp({
|
|
2191
|
+
inputs: ['label', 'field', 'withDatePicker', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'sortCriteria', 'facetId', 'dependsOn'],
|
|
2192
|
+
methods: ['initialize'],
|
|
2193
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-timeframe-facet') || customElements.define('atomic-insight-timeframe-facet', LitAtomicInsightTimeframeFacet);}
|
|
2194
|
+
})
|
|
2195
|
+
@Component({
|
|
2196
|
+
selector: 'atomic-insight-timeframe-facet',
|
|
2197
|
+
standalone: false,
|
|
2198
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2199
|
+
template: '<ng-content></ng-content>',
|
|
2200
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2201
|
+
inputs: ['label', 'field', 'withDatePicker', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'sortCriteria', 'facetId', 'dependsOn']
|
|
2202
|
+
})
|
|
2203
|
+
export class AtomicInsightTimeframeFacet {
|
|
2204
|
+
protected readonly el: HTMLElement;
|
|
2205
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2206
|
+
c.detach();
|
|
2207
|
+
this.el = el.nativeElement;
|
|
2208
|
+
|
|
2209
|
+
}
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
export declare interface AtomicInsightTimeframeFacet extends LitAtomicInsightTimeframeFacet {
|
|
2213
|
+
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
@ProxyCmp({
|
|
2217
|
+
inputs: ['userId', 'ticketCreationDateTime', 'excludedCustomActions'],
|
|
2218
|
+
methods: ['initialize'],
|
|
2219
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-user-actions-timeline') || customElements.define('atomic-insight-user-actions-timeline', LitAtomicInsightUserActionsTimeline);}
|
|
2220
|
+
})
|
|
2221
|
+
@Component({
|
|
2222
|
+
selector: 'atomic-insight-user-actions-timeline',
|
|
2223
|
+
standalone: false,
|
|
2224
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2225
|
+
template: '<ng-content></ng-content>',
|
|
2226
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2227
|
+
inputs: ['userId', 'ticketCreationDateTime', 'excludedCustomActions']
|
|
2228
|
+
})
|
|
2229
|
+
export class AtomicInsightUserActionsTimeline {
|
|
2230
|
+
protected readonly el: HTMLElement;
|
|
2231
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2232
|
+
c.detach();
|
|
2233
|
+
this.el = el.nativeElement;
|
|
2234
|
+
|
|
2235
|
+
}
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
export declare interface AtomicInsightUserActionsTimeline extends LitAtomicInsightUserActionsTimeline {
|
|
2239
|
+
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
@ProxyCmp({
|
|
2243
|
+
inputs: ['userId', 'ticketCreationDateTime', 'excludedCustomActions'],
|
|
2244
|
+
methods: ['initialize'],
|
|
2245
|
+
defineCustomElementFn: () => {customElements.get('atomic-insight-user-actions-toggle') || customElements.define('atomic-insight-user-actions-toggle', LitAtomicInsightUserActionsToggle);}
|
|
2246
|
+
})
|
|
2247
|
+
@Component({
|
|
2248
|
+
selector: 'atomic-insight-user-actions-toggle',
|
|
2249
|
+
standalone: false,
|
|
2250
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2251
|
+
template: '<ng-content></ng-content>',
|
|
2252
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2253
|
+
inputs: ['userId', 'ticketCreationDateTime', 'excludedCustomActions']
|
|
2254
|
+
})
|
|
2255
|
+
export class AtomicInsightUserActionsToggle {
|
|
2256
|
+
protected readonly el: HTMLElement;
|
|
2257
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2258
|
+
c.detach();
|
|
2259
|
+
this.el = el.nativeElement;
|
|
2260
|
+
|
|
2261
|
+
}
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
export declare interface AtomicInsightUserActionsToggle extends LitAtomicInsightUserActionsToggle {
|
|
2265
|
+
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
@ProxyCmp({
|
|
2269
|
+
inputs: ['label', 'closeIcon', 'openIcon', 'isModalOpen'],
|
|
2270
|
+
methods: ['initialize'],
|
|
2271
|
+
defineCustomElementFn: () => {customElements.get('atomic-ipx-button') || customElements.define('atomic-ipx-button', LitAtomicIpxButton);}
|
|
2272
|
+
})
|
|
2273
|
+
@Component({
|
|
2274
|
+
selector: 'atomic-ipx-button',
|
|
2275
|
+
standalone: false,
|
|
2276
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2277
|
+
template: '<ng-content></ng-content>',
|
|
2278
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2279
|
+
inputs: ['label', 'closeIcon', 'openIcon', 'isModalOpen']
|
|
2280
|
+
})
|
|
2281
|
+
export class AtomicIpxButton {
|
|
2282
|
+
protected readonly el: HTMLElement;
|
|
2283
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2284
|
+
c.detach();
|
|
2285
|
+
this.el = el.nativeElement;
|
|
2286
|
+
|
|
2287
|
+
}
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
export declare interface AtomicIpxButton extends LitAtomicIpxButton {
|
|
2291
|
+
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
@ProxyCmp({
|
|
2295
|
+
inputs: ['container'],
|
|
2296
|
+
methods: ['initialize'],
|
|
2297
|
+
defineCustomElementFn: () => {customElements.get('atomic-ipx-embedded') || customElements.define('atomic-ipx-embedded', LitAtomicIpxEmbedded);}
|
|
2298
|
+
})
|
|
2299
|
+
@Component({
|
|
2300
|
+
selector: 'atomic-ipx-embedded',
|
|
2301
|
+
standalone: false,
|
|
2302
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2303
|
+
template: '<ng-content></ng-content>',
|
|
2304
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2305
|
+
inputs: ['container']
|
|
2306
|
+
})
|
|
2307
|
+
export class AtomicIpxEmbedded {
|
|
2308
|
+
protected readonly el: HTMLElement;
|
|
2309
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2310
|
+
c.detach();
|
|
2311
|
+
this.el = el.nativeElement;
|
|
2312
|
+
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
export declare interface AtomicIpxEmbedded extends LitAtomicIpxEmbedded {
|
|
2317
|
+
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
@ProxyCmp({
|
|
2321
|
+
inputs: ['isOpen'],
|
|
2322
|
+
methods: ['initialize'],
|
|
2323
|
+
defineCustomElementFn: () => {customElements.get('atomic-ipx-modal') || customElements.define('atomic-ipx-modal', LitAtomicIpxModal);}
|
|
2324
|
+
})
|
|
2325
|
+
@Component({
|
|
2326
|
+
selector: 'atomic-ipx-modal',
|
|
2327
|
+
standalone: false,
|
|
2328
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2329
|
+
template: '<ng-content></ng-content>',
|
|
2330
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2331
|
+
inputs: ['isOpen']
|
|
2332
|
+
})
|
|
2333
|
+
export class AtomicIpxModal {
|
|
2334
|
+
protected readonly el: HTMLElement;
|
|
2335
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2336
|
+
c.detach();
|
|
2337
|
+
this.el = el.nativeElement;
|
|
2338
|
+
proxyOutputs(this, this.el, ['animationEnded']);
|
|
2339
|
+
}
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
export declare interface AtomicIpxModal extends LitAtomicIpxModal {
|
|
2343
|
+
'animationEnded': EventEmitter<CustomEvent<any>>;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
@ProxyCmp({
|
|
2347
|
+
inputs: ['recommendation', 'display', 'density', 'imageSize', 'numberOfRecommendations', 'numberOfRecommendationsPerPage', 'label', 'headingLevel'],
|
|
2348
|
+
methods: ['setRenderFunction', 'previousPage', 'nextPage', 'initialize'],
|
|
2349
|
+
defineCustomElementFn: () => {customElements.get('atomic-ipx-recs-list') || customElements.define('atomic-ipx-recs-list', LitAtomicIpxRecsList);}
|
|
2350
|
+
})
|
|
2351
|
+
@Component({
|
|
2352
|
+
selector: 'atomic-ipx-recs-list',
|
|
2353
|
+
standalone: false,
|
|
2354
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2355
|
+
template: '<ng-content></ng-content>',
|
|
2356
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2357
|
+
inputs: ['recommendation', 'display', 'density', 'imageSize', 'numberOfRecommendations', 'numberOfRecommendationsPerPage', 'label', 'headingLevel']
|
|
2358
|
+
})
|
|
2359
|
+
export class AtomicIpxRecsList {
|
|
2360
|
+
protected readonly el: HTMLElement;
|
|
2361
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2362
|
+
c.detach();
|
|
2363
|
+
this.el = el.nativeElement;
|
|
2364
|
+
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2367
|
+
|
|
2368
|
+
export declare interface AtomicIpxRecsList extends LitAtomicIpxRecsList {
|
|
2369
|
+
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
@ProxyCmp({
|
|
2373
|
+
inputs: ['openButton', 'isOpen', 'collapseFacetsAfter'],
|
|
2374
|
+
methods: ['initialize'],
|
|
2375
|
+
defineCustomElementFn: () => {customElements.get('atomic-ipx-refine-modal') || customElements.define('atomic-ipx-refine-modal', LitAtomicIpxRefineModal);}
|
|
2376
|
+
})
|
|
2377
|
+
@Component({
|
|
2378
|
+
selector: 'atomic-ipx-refine-modal',
|
|
2379
|
+
standalone: false,
|
|
2380
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2381
|
+
template: '<ng-content></ng-content>',
|
|
2382
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2383
|
+
inputs: ['openButton', 'isOpen', 'collapseFacetsAfter']
|
|
2384
|
+
})
|
|
2385
|
+
export class AtomicIpxRefineModal {
|
|
2386
|
+
protected readonly el: HTMLElement;
|
|
2387
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2388
|
+
c.detach();
|
|
2389
|
+
this.el = el.nativeElement;
|
|
2390
|
+
|
|
2391
|
+
}
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
export declare interface AtomicIpxRefineModal extends LitAtomicIpxRefineModal {
|
|
2395
|
+
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
@ProxyCmp({
|
|
2399
|
+
inputs: ['collapseFacetsAfter'],
|
|
2400
|
+
methods: ['initialize'],
|
|
2401
|
+
defineCustomElementFn: () => {customElements.get('atomic-ipx-refine-toggle') || customElements.define('atomic-ipx-refine-toggle', LitAtomicIpxRefineToggle);}
|
|
2402
|
+
})
|
|
2403
|
+
@Component({
|
|
2404
|
+
selector: 'atomic-ipx-refine-toggle',
|
|
2405
|
+
standalone: false,
|
|
2406
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2407
|
+
template: '<ng-content></ng-content>',
|
|
2408
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2409
|
+
inputs: ['collapseFacetsAfter']
|
|
2410
|
+
})
|
|
2411
|
+
export class AtomicIpxRefineToggle {
|
|
2412
|
+
protected readonly el: HTMLElement;
|
|
2413
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2414
|
+
c.detach();
|
|
2415
|
+
this.el = el.nativeElement;
|
|
2416
|
+
|
|
2417
|
+
}
|
|
2418
|
+
}
|
|
2419
|
+
|
|
2420
|
+
export declare interface AtomicIpxRefineToggle extends LitAtomicIpxRefineToggle {
|
|
2421
|
+
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
@ProxyCmp({
|
|
2425
|
+
inputs: ['hrefTemplate'],
|
|
2426
|
+
methods: ['initialize', 'renderDefaultSlotContent'],
|
|
2427
|
+
defineCustomElementFn: () => {customElements.get('atomic-ipx-result-link') || customElements.define('atomic-ipx-result-link', LitAtomicIpxResultLink);}
|
|
2428
|
+
})
|
|
2429
|
+
@Component({
|
|
2430
|
+
selector: 'atomic-ipx-result-link',
|
|
2431
|
+
standalone: false,
|
|
2432
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2433
|
+
template: '<ng-content></ng-content>',
|
|
2434
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2435
|
+
inputs: ['hrefTemplate']
|
|
2436
|
+
})
|
|
2437
|
+
export class AtomicIpxResultLink {
|
|
2438
|
+
protected readonly el: HTMLElement;
|
|
2439
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2440
|
+
c.detach();
|
|
2441
|
+
this.el = el.nativeElement;
|
|
2442
|
+
|
|
2443
|
+
}
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2446
|
+
export declare interface AtomicIpxResultLink extends LitAtomicIpxResultLink {
|
|
2447
|
+
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
@ProxyCmp({
|
|
2451
|
+
inputs: [],
|
|
2452
|
+
methods: ['initialize'],
|
|
2453
|
+
defineCustomElementFn: () => {customElements.get('atomic-recs-error') || customElements.define('atomic-recs-error', LitAtomicRecsError);}
|
|
2454
|
+
})
|
|
2455
|
+
@Component({
|
|
2456
|
+
selector: 'atomic-recs-error',
|
|
2457
|
+
standalone: false,
|
|
2458
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2459
|
+
template: '<ng-content></ng-content>',
|
|
2460
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2461
|
+
inputs: []
|
|
2462
|
+
})
|
|
2463
|
+
export class AtomicRecsError {
|
|
2464
|
+
protected readonly el: HTMLElement;
|
|
2465
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2466
|
+
c.detach();
|
|
2467
|
+
this.el = el.nativeElement;
|
|
2468
|
+
|
|
2469
|
+
}
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
export declare interface AtomicRecsError extends LitAtomicRecsError {
|
|
2473
|
+
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
@ProxyCmp({
|
|
2477
|
+
inputs: ['fieldsToInclude', 'pipeline', 'searchHub', 'analytics', 'timezone', 'logLevel', 'language', 'languageAssetsPath', 'iconAssetsPath'],
|
|
2478
|
+
methods: ['initialize', 'initializeWithRecommendationEngine', 'getRecommendations', 'registerFieldsToInclude', 'toggleAnalytics', 'updateLanguage', 'updateIconAssetsPath'],
|
|
2479
|
+
defineCustomElementFn: () => {customElements.get('atomic-recs-interface') || customElements.define('atomic-recs-interface', LitAtomicRecsInterface);}
|
|
2480
|
+
})
|
|
2481
|
+
@Component({
|
|
2482
|
+
selector: 'atomic-recs-interface',
|
|
2483
|
+
standalone: false,
|
|
2484
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2485
|
+
template: '<ng-content></ng-content>',
|
|
2486
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2487
|
+
inputs: ['fieldsToInclude', 'pipeline', 'searchHub', 'analytics', 'timezone', 'logLevel', 'language', 'languageAssetsPath', 'iconAssetsPath']
|
|
2488
|
+
})
|
|
2489
|
+
export class AtomicRecsInterface {
|
|
2490
|
+
protected readonly el: HTMLElement;
|
|
2491
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2492
|
+
c.detach();
|
|
2493
|
+
this.el = el.nativeElement;
|
|
2494
|
+
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2498
|
+
export declare interface AtomicRecsInterface extends LitAtomicRecsInterface {
|
|
2499
|
+
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
@ProxyCmp({
|
|
2503
|
+
inputs: ['recommendation', 'display', 'density', 'imageSize', 'numberOfRecommendations', 'numberOfRecommendationsPerPage', 'label', 'headingLevel'],
|
|
2504
|
+
methods: ['setRenderFunction', 'previousPage', 'nextPage', 'initialize'],
|
|
2505
|
+
defineCustomElementFn: () => {customElements.get('atomic-recs-list') || customElements.define('atomic-recs-list', LitAtomicRecsList);}
|
|
2506
|
+
})
|
|
2507
|
+
@Component({
|
|
2508
|
+
selector: 'atomic-recs-list',
|
|
2509
|
+
standalone: false,
|
|
2510
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2511
|
+
template: '<ng-content></ng-content>',
|
|
2512
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2513
|
+
inputs: ['recommendation', 'display', 'density', 'imageSize', 'numberOfRecommendations', 'numberOfRecommendationsPerPage', 'label', 'headingLevel']
|
|
2514
|
+
})
|
|
2515
|
+
export class AtomicRecsList {
|
|
2516
|
+
protected readonly el: HTMLElement;
|
|
2517
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2518
|
+
c.detach();
|
|
2519
|
+
this.el = el.nativeElement;
|
|
2520
|
+
|
|
2521
|
+
}
|
|
2522
|
+
}
|
|
2523
|
+
|
|
2524
|
+
export declare interface AtomicRecsList extends LitAtomicRecsList {
|
|
2525
|
+
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
@ProxyCmp({
|
|
2529
|
+
inputs: ['mustMatch', 'mustNotMatch'],
|
|
2530
|
+
methods: ['getTemplate'],
|
|
2531
|
+
defineCustomElementFn: () => {customElements.get('atomic-recs-result-template') || customElements.define('atomic-recs-result-template', LitAtomicRecsResultTemplate);}
|
|
2532
|
+
})
|
|
2533
|
+
@Component({
|
|
2534
|
+
selector: 'atomic-recs-result-template',
|
|
2535
|
+
standalone: false,
|
|
2536
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2537
|
+
template: '<ng-content></ng-content>',
|
|
2538
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2539
|
+
inputs: ['mustMatch', 'mustNotMatch']
|
|
2540
|
+
})
|
|
2541
|
+
export class AtomicRecsResultTemplate {
|
|
2542
|
+
protected readonly el: HTMLElement;
|
|
2543
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2544
|
+
c.detach();
|
|
2545
|
+
this.el = el.nativeElement;
|
|
2546
|
+
|
|
2547
|
+
}
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
export declare interface AtomicRecsResultTemplate extends LitAtomicRecsResultTemplate {
|
|
2551
|
+
|
|
2552
|
+
}
|
|
2553
|
+
|
|
2554
|
+
@ProxyCmp({
|
|
2555
|
+
inputs: ['stopPropagation', 'result', 'interactiveResult', 'store', 'content', 'linkContent', 'display', 'density', 'imageSize', 'classes'],
|
|
2556
|
+
methods: [],
|
|
2557
|
+
defineCustomElementFn: () => {customElements.get('atomic-recs-result') || customElements.define('atomic-recs-result', LitAtomicRecsResult);}
|
|
2558
|
+
})
|
|
2559
|
+
@Component({
|
|
2560
|
+
selector: 'atomic-recs-result',
|
|
2561
|
+
standalone: false,
|
|
2562
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2563
|
+
template: '<ng-content></ng-content>',
|
|
2564
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2565
|
+
inputs: ['stopPropagation', 'result', 'interactiveResult', 'store', 'content', 'linkContent', 'display', 'density', 'imageSize', 'classes']
|
|
2566
|
+
})
|
|
2567
|
+
export class AtomicRecsResult {
|
|
2568
|
+
protected readonly el: HTMLElement;
|
|
2569
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2570
|
+
c.detach();
|
|
2571
|
+
this.el = el.nativeElement;
|
|
2572
|
+
|
|
2573
|
+
}
|
|
2574
|
+
}
|
|
2575
|
+
|
|
2576
|
+
export declare interface AtomicRecsResult extends LitAtomicRecsResult {
|
|
2577
|
+
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
@ProxyCmp({
|
|
2581
|
+
inputs: ['desiredCount', 'numberOfValues'],
|
|
2582
|
+
methods: ['initialize', 'updateCollapseFacetsDependingOnFacetsVisibility'],
|
|
2583
|
+
defineCustomElementFn: () => {customElements.get('atomic-automatic-facet-generator') || customElements.define('atomic-automatic-facet-generator', LitAtomicAutomaticFacetGenerator);}
|
|
2584
|
+
})
|
|
2585
|
+
@Component({
|
|
2586
|
+
selector: 'atomic-automatic-facet-generator',
|
|
2587
|
+
standalone: false,
|
|
2588
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2589
|
+
template: '<ng-content></ng-content>',
|
|
2590
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2591
|
+
inputs: ['desiredCount', 'numberOfValues']
|
|
2592
|
+
})
|
|
2593
|
+
export class AtomicAutomaticFacetGenerator {
|
|
2594
|
+
protected readonly el: HTMLElement;
|
|
2595
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2596
|
+
c.detach();
|
|
2597
|
+
this.el = el.nativeElement;
|
|
2598
|
+
|
|
2599
|
+
}
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
export declare interface AtomicAutomaticFacetGenerator extends LitAtomicAutomaticFacetGenerator {
|
|
2603
|
+
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
@ProxyCmp({
|
|
2607
|
+
inputs: [],
|
|
2608
|
+
methods: ['initialize'],
|
|
2609
|
+
defineCustomElementFn: () => {customElements.get('atomic-automatic-facet') || customElements.define('atomic-automatic-facet', LitAtomicAutomaticFacet);}
|
|
2610
|
+
})
|
|
2611
|
+
@Component({
|
|
2612
|
+
selector: 'atomic-automatic-facet',
|
|
2613
|
+
standalone: false,
|
|
2614
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2615
|
+
template: '<ng-content></ng-content>',
|
|
2616
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2617
|
+
inputs: []
|
|
2618
|
+
})
|
|
2619
|
+
export class AtomicAutomaticFacet {
|
|
2620
|
+
protected readonly el: HTMLElement;
|
|
2621
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2622
|
+
c.detach();
|
|
2623
|
+
this.el = el.nativeElement;
|
|
2624
|
+
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
export declare interface AtomicAutomaticFacet extends LitAtomicAutomaticFacet {
|
|
2629
|
+
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
@ProxyCmp({
|
|
2633
|
+
inputs: ['pathLimit'],
|
|
2634
|
+
methods: ['initialize'],
|
|
2635
|
+
defineCustomElementFn: () => {customElements.get('atomic-breadbox') || customElements.define('atomic-breadbox', LitAtomicBreadbox);}
|
|
2636
|
+
})
|
|
2637
|
+
@Component({
|
|
2638
|
+
selector: 'atomic-breadbox',
|
|
2639
|
+
standalone: false,
|
|
2640
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2641
|
+
template: '<ng-content></ng-content>',
|
|
2642
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2643
|
+
inputs: ['pathLimit']
|
|
2644
|
+
})
|
|
2645
|
+
export class AtomicBreadbox {
|
|
2646
|
+
protected readonly el: HTMLElement;
|
|
2647
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2648
|
+
c.detach();
|
|
2649
|
+
this.el = el.nativeElement;
|
|
2650
|
+
|
|
2651
|
+
}
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2654
|
+
export declare interface AtomicBreadbox extends LitAtomicBreadbox {
|
|
2655
|
+
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
@ProxyCmp({
|
|
2659
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfValues', 'withSearch', 'sortCriteria', 'delimitingCharacter', 'basePath', 'filterByBasePath', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn'],
|
|
2660
|
+
methods: ['initialize'],
|
|
2661
|
+
defineCustomElementFn: () => {customElements.get('atomic-category-facet') || customElements.define('atomic-category-facet', LitAtomicCategoryFacet);}
|
|
2662
|
+
})
|
|
2663
|
+
@Component({
|
|
2664
|
+
selector: 'atomic-category-facet',
|
|
2665
|
+
standalone: false,
|
|
2666
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2667
|
+
template: '<ng-content></ng-content>',
|
|
2668
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2669
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfValues', 'withSearch', 'sortCriteria', 'delimitingCharacter', 'basePath', 'filterByBasePath', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn']
|
|
2670
|
+
})
|
|
2671
|
+
export class AtomicCategoryFacet {
|
|
2672
|
+
protected readonly el: HTMLElement;
|
|
2673
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2674
|
+
c.detach();
|
|
2675
|
+
this.el = el.nativeElement;
|
|
2676
|
+
|
|
2677
|
+
}
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
export declare interface AtomicCategoryFacet extends LitAtomicCategoryFacet {
|
|
2681
|
+
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
@ProxyCmp({
|
|
2685
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfValues', 'withSearch', 'sortCriteria', 'resultsMustMatch', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'allowedValues', 'customSort', 'dependsOn'],
|
|
2686
|
+
methods: ['initialize'],
|
|
2687
|
+
defineCustomElementFn: () => {customElements.get('atomic-color-facet') || customElements.define('atomic-color-facet', LitAtomicColorFacet);}
|
|
2688
|
+
})
|
|
2689
|
+
@Component({
|
|
2690
|
+
selector: 'atomic-color-facet',
|
|
2691
|
+
standalone: false,
|
|
2692
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2693
|
+
template: '<ng-content></ng-content>',
|
|
2694
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2695
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfValues', 'withSearch', 'sortCriteria', 'resultsMustMatch', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'allowedValues', 'customSort', 'dependsOn']
|
|
2696
|
+
})
|
|
2697
|
+
export class AtomicColorFacet {
|
|
2698
|
+
protected readonly el: HTMLElement;
|
|
2699
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2700
|
+
c.detach();
|
|
2701
|
+
this.el = el.nativeElement;
|
|
2702
|
+
|
|
2703
|
+
}
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
export declare interface AtomicColorFacet extends LitAtomicColorFacet {
|
|
2707
|
+
|
|
2708
|
+
}
|
|
2709
|
+
|
|
2710
|
+
@ProxyCmp({
|
|
2711
|
+
inputs: ['automaticallyCorrectQuery', 'queryCorrectionMode'],
|
|
2712
|
+
methods: ['initialize'],
|
|
2713
|
+
defineCustomElementFn: () => {customElements.get('atomic-did-you-mean') || customElements.define('atomic-did-you-mean', LitAtomicDidYouMean);}
|
|
2714
|
+
})
|
|
2715
|
+
@Component({
|
|
2716
|
+
selector: 'atomic-did-you-mean',
|
|
2717
|
+
standalone: false,
|
|
2718
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2719
|
+
template: '<ng-content></ng-content>',
|
|
2720
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2721
|
+
inputs: ['automaticallyCorrectQuery', 'queryCorrectionMode']
|
|
2722
|
+
})
|
|
2723
|
+
export class AtomicDidYouMean {
|
|
2724
|
+
protected readonly el: HTMLElement;
|
|
2725
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2726
|
+
c.detach();
|
|
2727
|
+
this.el = el.nativeElement;
|
|
2728
|
+
|
|
2729
|
+
}
|
|
2730
|
+
}
|
|
2731
|
+
|
|
2732
|
+
export declare interface AtomicDidYouMean extends LitAtomicDidYouMean {
|
|
2733
|
+
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
@ProxyCmp({
|
|
2737
|
+
inputs: ['selector'],
|
|
2738
|
+
methods: [],
|
|
2739
|
+
defineCustomElementFn: () => {customElements.get('atomic-external') || customElements.define('atomic-external', LitAtomicExternal);}
|
|
2740
|
+
})
|
|
2741
|
+
@Component({
|
|
2742
|
+
selector: 'atomic-external',
|
|
2743
|
+
standalone: false,
|
|
2744
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2745
|
+
template: '<ng-content></ng-content>',
|
|
2746
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2747
|
+
inputs: ['selector']
|
|
2748
|
+
})
|
|
2749
|
+
export class AtomicExternal {
|
|
2750
|
+
protected readonly el: HTMLElement;
|
|
2751
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2752
|
+
c.detach();
|
|
2753
|
+
this.el = el.nativeElement;
|
|
2754
|
+
|
|
2755
|
+
}
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2758
|
+
export declare interface AtomicExternal extends LitAtomicExternal {
|
|
2759
|
+
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
@ProxyCmp({
|
|
2763
|
+
inputs: ['collapseFacetsAfter'],
|
|
2764
|
+
methods: ['initialize'],
|
|
2765
|
+
defineCustomElementFn: () => {customElements.get('atomic-facet-manager') || customElements.define('atomic-facet-manager', LitAtomicFacetManager);}
|
|
2766
|
+
})
|
|
2767
|
+
@Component({
|
|
2768
|
+
selector: 'atomic-facet-manager',
|
|
2769
|
+
standalone: false,
|
|
2770
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2771
|
+
template: '<ng-content></ng-content>',
|
|
2772
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2773
|
+
inputs: ['collapseFacetsAfter']
|
|
2774
|
+
})
|
|
2775
|
+
export class AtomicFacetManager {
|
|
2776
|
+
protected readonly el: HTMLElement;
|
|
2777
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2778
|
+
c.detach();
|
|
2779
|
+
this.el = el.nativeElement;
|
|
2780
|
+
|
|
2781
|
+
}
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2784
|
+
export declare interface AtomicFacetManager extends LitAtomicFacetManager {
|
|
2785
|
+
|
|
2786
|
+
}
|
|
2787
|
+
|
|
2788
|
+
@ProxyCmp({
|
|
2789
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfValues', 'withSearch', 'sortCriteria', 'resultsMustMatch', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'enableExclusion', 'injectionDepth', 'allowedValues', 'customSort', 'dependsOn'],
|
|
2790
|
+
methods: ['initialize'],
|
|
2791
|
+
defineCustomElementFn: () => {customElements.get('atomic-facet') || customElements.define('atomic-facet', LitAtomicFacet);}
|
|
2792
|
+
})
|
|
2793
|
+
@Component({
|
|
2794
|
+
selector: 'atomic-facet',
|
|
2795
|
+
standalone: false,
|
|
2796
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2797
|
+
template: '<ng-content></ng-content>',
|
|
2798
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2799
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfValues', 'withSearch', 'sortCriteria', 'resultsMustMatch', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'enableExclusion', 'injectionDepth', 'allowedValues', 'customSort', 'dependsOn']
|
|
2800
|
+
})
|
|
2801
|
+
export class AtomicFacet {
|
|
2802
|
+
protected readonly el: HTMLElement;
|
|
2803
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2804
|
+
c.detach();
|
|
2805
|
+
this.el = el.nativeElement;
|
|
2806
|
+
|
|
2807
|
+
}
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
export declare interface AtomicFacet extends LitAtomicFacet {
|
|
2811
|
+
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
@ProxyCmp({
|
|
2815
|
+
inputs: ['ifDefined', 'ifNotDefined', 'mustMatch', 'mustNotMatch'],
|
|
2816
|
+
methods: [],
|
|
2817
|
+
defineCustomElementFn: () => {customElements.get('atomic-field-condition') || customElements.define('atomic-field-condition', LitAtomicFieldCondition);}
|
|
2818
|
+
})
|
|
2819
|
+
@Component({
|
|
2820
|
+
selector: 'atomic-field-condition',
|
|
2821
|
+
standalone: false,
|
|
2822
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2823
|
+
template: '<ng-content></ng-content>',
|
|
2824
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2825
|
+
inputs: ['ifDefined', 'ifNotDefined', 'mustMatch', 'mustNotMatch']
|
|
2826
|
+
})
|
|
2827
|
+
export class AtomicFieldCondition {
|
|
2828
|
+
protected readonly el: HTMLElement;
|
|
2829
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2830
|
+
c.detach();
|
|
2831
|
+
this.el = el.nativeElement;
|
|
2832
|
+
|
|
2833
|
+
}
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
export declare interface AtomicFieldCondition extends LitAtomicFieldCondition {
|
|
2837
|
+
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
@ProxyCmp({
|
|
2841
|
+
inputs: ['density', 'imageSize', 'tabsIncluded', 'tabsExcluded', 'collectionField', 'parentField', 'childField', 'numberOfFoldedResults'],
|
|
2842
|
+
methods: ['initialize', 'setRenderFunction'],
|
|
2843
|
+
defineCustomElementFn: () => {customElements.get('atomic-folded-result-list') || customElements.define('atomic-folded-result-list', LitAtomicFoldedResultList);}
|
|
2844
|
+
})
|
|
2845
|
+
@Component({
|
|
2846
|
+
selector: 'atomic-folded-result-list',
|
|
2847
|
+
standalone: false,
|
|
2848
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2849
|
+
template: '<ng-content></ng-content>',
|
|
2850
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2851
|
+
inputs: ['density', 'imageSize', 'tabsIncluded', 'tabsExcluded', 'collectionField', 'parentField', 'childField', 'numberOfFoldedResults']
|
|
2852
|
+
})
|
|
2853
|
+
export class AtomicFoldedResultList {
|
|
2854
|
+
protected readonly el: HTMLElement;
|
|
2855
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2856
|
+
c.detach();
|
|
2857
|
+
this.el = el.nativeElement;
|
|
2858
|
+
|
|
2859
|
+
}
|
|
2860
|
+
}
|
|
2861
|
+
|
|
2862
|
+
export declare interface AtomicFoldedResultList extends LitAtomicFoldedResultList {
|
|
2863
|
+
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
@ProxyCmp({
|
|
2867
|
+
inputs: ['currency'],
|
|
2868
|
+
methods: [],
|
|
2869
|
+
defineCustomElementFn: () => {customElements.get('atomic-format-currency') || customElements.define('atomic-format-currency', LitAtomicFormatCurrency);}
|
|
2870
|
+
})
|
|
2871
|
+
@Component({
|
|
2872
|
+
selector: 'atomic-format-currency',
|
|
2873
|
+
standalone: false,
|
|
2874
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2875
|
+
template: '<ng-content></ng-content>',
|
|
2876
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2877
|
+
inputs: ['currency']
|
|
2878
|
+
})
|
|
2879
|
+
export class AtomicFormatCurrency {
|
|
2880
|
+
protected readonly el: HTMLElement;
|
|
2881
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2882
|
+
c.detach();
|
|
2883
|
+
this.el = el.nativeElement;
|
|
2884
|
+
|
|
2885
|
+
}
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
export declare interface AtomicFormatCurrency extends LitAtomicFormatCurrency {
|
|
2889
|
+
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2892
|
+
@ProxyCmp({
|
|
2893
|
+
inputs: ['minimumIntegerDigits', 'minimumFractionDigits', 'maximumFractionDigits', 'minimumSignificantDigits', 'maximumSignificantDigits'],
|
|
2894
|
+
methods: [],
|
|
2895
|
+
defineCustomElementFn: () => {customElements.get('atomic-format-number') || customElements.define('atomic-format-number', LitAtomicFormatNumber);}
|
|
2896
|
+
})
|
|
2897
|
+
@Component({
|
|
2898
|
+
selector: 'atomic-format-number',
|
|
2899
|
+
standalone: false,
|
|
2900
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2901
|
+
template: '<ng-content></ng-content>',
|
|
2902
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2903
|
+
inputs: ['minimumIntegerDigits', 'minimumFractionDigits', 'maximumFractionDigits', 'minimumSignificantDigits', 'maximumSignificantDigits']
|
|
2904
|
+
})
|
|
2905
|
+
export class AtomicFormatNumber {
|
|
2906
|
+
protected readonly el: HTMLElement;
|
|
2907
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2908
|
+
c.detach();
|
|
2909
|
+
this.el = el.nativeElement;
|
|
2910
|
+
|
|
2911
|
+
}
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
export declare interface AtomicFormatNumber extends LitAtomicFormatNumber {
|
|
2915
|
+
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
@ProxyCmp({
|
|
2919
|
+
inputs: ['unit', 'unitDisplay'],
|
|
2920
|
+
methods: [],
|
|
2921
|
+
defineCustomElementFn: () => {customElements.get('atomic-format-unit') || customElements.define('atomic-format-unit', LitAtomicFormatUnit);}
|
|
2922
|
+
})
|
|
2923
|
+
@Component({
|
|
2924
|
+
selector: 'atomic-format-unit',
|
|
2925
|
+
standalone: false,
|
|
2926
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2927
|
+
template: '<ng-content></ng-content>',
|
|
2928
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2929
|
+
inputs: ['unit', 'unitDisplay']
|
|
2930
|
+
})
|
|
2931
|
+
export class AtomicFormatUnit {
|
|
2932
|
+
protected readonly el: HTMLElement;
|
|
2933
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2934
|
+
c.detach();
|
|
2935
|
+
this.el = el.nativeElement;
|
|
2936
|
+
|
|
2937
|
+
}
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
export declare interface AtomicFormatUnit extends LitAtomicFormatUnit {
|
|
2941
|
+
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2944
|
+
@ProxyCmp({
|
|
2945
|
+
inputs: ['withToggle', 'collapsible', 'maxCollapsedHeight', 'answerConfigurationId', 'agentId', 'fieldsToIncludeInCitations', 'disableCitationAnchoring', 'tabsIncluded', 'tabsExcluded'],
|
|
2946
|
+
methods: ['initialize'],
|
|
2947
|
+
defineCustomElementFn: () => {customElements.get('atomic-generated-answer') || customElements.define('atomic-generated-answer', LitAtomicGeneratedAnswer);}
|
|
2948
|
+
})
|
|
2949
|
+
@Component({
|
|
2950
|
+
selector: 'atomic-generated-answer',
|
|
2951
|
+
standalone: false,
|
|
2952
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2953
|
+
template: '<ng-content></ng-content>',
|
|
2954
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2955
|
+
inputs: ['withToggle', 'collapsible', 'maxCollapsedHeight', 'answerConfigurationId', 'agentId', 'fieldsToIncludeInCitations', 'disableCitationAnchoring', 'tabsIncluded', 'tabsExcluded']
|
|
2956
|
+
})
|
|
2957
|
+
export class AtomicGeneratedAnswer {
|
|
2958
|
+
protected readonly el: HTMLElement;
|
|
2959
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2960
|
+
c.detach();
|
|
2961
|
+
this.el = el.nativeElement;
|
|
2962
|
+
|
|
2963
|
+
}
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2966
|
+
export declare interface AtomicGeneratedAnswer extends LitAtomicGeneratedAnswer {
|
|
2967
|
+
|
|
2968
|
+
}
|
|
2969
|
+
|
|
2970
|
+
@ProxyCmp({
|
|
2971
|
+
inputs: ['value', 'sanitize'],
|
|
2972
|
+
methods: ['initialize'],
|
|
2973
|
+
defineCustomElementFn: () => {customElements.get('atomic-html') || customElements.define('atomic-html', LitAtomicHtml);}
|
|
2974
|
+
})
|
|
2975
|
+
@Component({
|
|
2976
|
+
selector: 'atomic-html',
|
|
2977
|
+
standalone: false,
|
|
2978
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2979
|
+
template: '<ng-content></ng-content>',
|
|
2980
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2981
|
+
inputs: ['value', 'sanitize']
|
|
2982
|
+
})
|
|
2983
|
+
export class AtomicHtml {
|
|
2984
|
+
protected readonly el: HTMLElement;
|
|
2985
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
2986
|
+
c.detach();
|
|
2987
|
+
this.el = el.nativeElement;
|
|
2988
|
+
|
|
2989
|
+
}
|
|
2990
|
+
}
|
|
2991
|
+
|
|
2992
|
+
export declare interface AtomicHtml extends LitAtomicHtml {
|
|
2993
|
+
|
|
2994
|
+
}
|
|
2995
|
+
|
|
2996
|
+
@ProxyCmp({
|
|
2997
|
+
inputs: [],
|
|
2998
|
+
methods: ['initialize'],
|
|
2999
|
+
defineCustomElementFn: () => {customElements.get('atomic-load-more-results') || customElements.define('atomic-load-more-results', LitAtomicLoadMoreResults);}
|
|
3000
|
+
})
|
|
3001
|
+
@Component({
|
|
3002
|
+
selector: 'atomic-load-more-results',
|
|
3003
|
+
standalone: false,
|
|
3004
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3005
|
+
template: '<ng-content></ng-content>',
|
|
3006
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3007
|
+
inputs: []
|
|
3008
|
+
})
|
|
3009
|
+
export class AtomicLoadMoreResults {
|
|
3010
|
+
protected readonly el: HTMLElement;
|
|
3011
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3012
|
+
c.detach();
|
|
3013
|
+
this.el = el.nativeElement;
|
|
3014
|
+
|
|
3015
|
+
}
|
|
3016
|
+
}
|
|
3017
|
+
|
|
3018
|
+
export declare interface AtomicLoadMoreResults extends LitAtomicLoadMoreResults {
|
|
3019
|
+
|
|
3020
|
+
}
|
|
3021
|
+
|
|
3022
|
+
@ProxyCmp({
|
|
3023
|
+
inputs: ['enableCancelLastAction', 'hideCancelLastAction'],
|
|
3024
|
+
methods: ['initialize'],
|
|
3025
|
+
defineCustomElementFn: () => {customElements.get('atomic-no-results') || customElements.define('atomic-no-results', LitAtomicNoResults);}
|
|
3026
|
+
})
|
|
3027
|
+
@Component({
|
|
3028
|
+
selector: 'atomic-no-results',
|
|
3029
|
+
standalone: false,
|
|
3030
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3031
|
+
template: '<ng-content></ng-content>',
|
|
3032
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3033
|
+
inputs: ['enableCancelLastAction', 'hideCancelLastAction']
|
|
3034
|
+
})
|
|
3035
|
+
export class AtomicNoResults {
|
|
3036
|
+
protected readonly el: HTMLElement;
|
|
3037
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3038
|
+
c.detach();
|
|
3039
|
+
this.el = el.nativeElement;
|
|
3040
|
+
|
|
3041
|
+
}
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
export declare interface AtomicNoResults extends LitAtomicNoResults {
|
|
3045
|
+
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
@ProxyCmp({
|
|
3049
|
+
inputs: ['headingLevel', 'icon'],
|
|
3050
|
+
methods: ['initialize'],
|
|
3051
|
+
defineCustomElementFn: () => {customElements.get('atomic-notifications') || customElements.define('atomic-notifications', LitAtomicNotifications);}
|
|
3052
|
+
})
|
|
3053
|
+
@Component({
|
|
3054
|
+
selector: 'atomic-notifications',
|
|
3055
|
+
standalone: false,
|
|
3056
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3057
|
+
template: '<ng-content></ng-content>',
|
|
3058
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3059
|
+
inputs: ['headingLevel', 'icon']
|
|
3060
|
+
})
|
|
3061
|
+
export class AtomicNotifications {
|
|
3062
|
+
protected readonly el: HTMLElement;
|
|
3063
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3064
|
+
c.detach();
|
|
3065
|
+
this.el = el.nativeElement;
|
|
3066
|
+
|
|
3067
|
+
}
|
|
3068
|
+
}
|
|
3069
|
+
|
|
3070
|
+
export declare interface AtomicNotifications extends LitAtomicNotifications {
|
|
3071
|
+
|
|
3072
|
+
}
|
|
3073
|
+
|
|
3074
|
+
@ProxyCmp({
|
|
3075
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfValues', 'withInput', 'sortCriteria', 'rangeAlgorithm', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn'],
|
|
3076
|
+
methods: ['initialize'],
|
|
3077
|
+
defineCustomElementFn: () => {customElements.get('atomic-numeric-facet') || customElements.define('atomic-numeric-facet', LitAtomicNumericFacet);}
|
|
3078
|
+
})
|
|
3079
|
+
@Component({
|
|
3080
|
+
selector: 'atomic-numeric-facet',
|
|
3081
|
+
standalone: false,
|
|
3082
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3083
|
+
template: '<ng-content></ng-content>',
|
|
3084
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3085
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfValues', 'withInput', 'sortCriteria', 'rangeAlgorithm', 'displayValuesAs', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn']
|
|
3086
|
+
})
|
|
3087
|
+
export class AtomicNumericFacet {
|
|
3088
|
+
protected readonly el: HTMLElement;
|
|
3089
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3090
|
+
c.detach();
|
|
3091
|
+
this.el = el.nativeElement;
|
|
3092
|
+
|
|
3093
|
+
}
|
|
3094
|
+
}
|
|
3095
|
+
|
|
3096
|
+
export declare interface AtomicNumericFacet extends LitAtomicNumericFacet {
|
|
3097
|
+
|
|
3098
|
+
}
|
|
3099
|
+
|
|
3100
|
+
@ProxyCmp({
|
|
3101
|
+
inputs: ['numberOfPages', 'previousButtonIcon', 'nextButtonIcon'],
|
|
3102
|
+
methods: ['initialize'],
|
|
3103
|
+
defineCustomElementFn: () => {customElements.get('atomic-pager') || customElements.define('atomic-pager', LitAtomicPager);}
|
|
3104
|
+
})
|
|
3105
|
+
@Component({
|
|
3106
|
+
selector: 'atomic-pager',
|
|
3107
|
+
standalone: false,
|
|
3108
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3109
|
+
template: '<ng-content></ng-content>',
|
|
3110
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3111
|
+
inputs: ['numberOfPages', 'previousButtonIcon', 'nextButtonIcon']
|
|
3112
|
+
})
|
|
3113
|
+
export class AtomicPager {
|
|
3114
|
+
protected readonly el: HTMLElement;
|
|
3115
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3116
|
+
c.detach();
|
|
3117
|
+
this.el = el.nativeElement;
|
|
3118
|
+
proxyOutputs(this, this.el, ['atomic/scrollToTop']);
|
|
3119
|
+
}
|
|
3120
|
+
}
|
|
3121
|
+
|
|
3122
|
+
export declare interface AtomicPager extends LitAtomicPager {
|
|
3123
|
+
'atomic/scrollToTop': EventEmitter<CustomEvent<any>>;
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
@ProxyCmp({
|
|
3127
|
+
inputs: [],
|
|
3128
|
+
methods: ['initialize'],
|
|
3129
|
+
defineCustomElementFn: () => {customElements.get('atomic-popover') || customElements.define('atomic-popover', LitAtomicPopover);}
|
|
3130
|
+
})
|
|
3131
|
+
@Component({
|
|
3132
|
+
selector: 'atomic-popover',
|
|
3133
|
+
standalone: false,
|
|
3134
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3135
|
+
template: '<ng-content></ng-content>',
|
|
3136
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3137
|
+
inputs: []
|
|
3138
|
+
})
|
|
3139
|
+
export class AtomicPopover {
|
|
3140
|
+
protected readonly el: HTMLElement;
|
|
3141
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3142
|
+
c.detach();
|
|
3143
|
+
this.el = el.nativeElement;
|
|
3144
|
+
|
|
3145
|
+
}
|
|
3146
|
+
}
|
|
3147
|
+
|
|
3148
|
+
export declare interface AtomicPopover extends LitAtomicPopover {
|
|
3149
|
+
|
|
3150
|
+
}
|
|
3151
|
+
|
|
3152
|
+
@ProxyCmp({
|
|
3153
|
+
inputs: [],
|
|
3154
|
+
methods: ['initialize'],
|
|
3155
|
+
defineCustomElementFn: () => {customElements.get('atomic-query-error') || customElements.define('atomic-query-error', LitAtomicQueryError);}
|
|
3156
|
+
})
|
|
3157
|
+
@Component({
|
|
3158
|
+
selector: 'atomic-query-error',
|
|
3159
|
+
standalone: false,
|
|
3160
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3161
|
+
template: '<ng-content></ng-content>',
|
|
3162
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3163
|
+
inputs: []
|
|
3164
|
+
})
|
|
3165
|
+
export class AtomicQueryError {
|
|
3166
|
+
protected readonly el: HTMLElement;
|
|
3167
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3168
|
+
c.detach();
|
|
3169
|
+
this.el = el.nativeElement;
|
|
3170
|
+
|
|
3171
|
+
}
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3174
|
+
export declare interface AtomicQueryError extends LitAtomicQueryError {
|
|
3175
|
+
|
|
3176
|
+
}
|
|
3177
|
+
|
|
3178
|
+
@ProxyCmp({
|
|
3179
|
+
inputs: [],
|
|
3180
|
+
methods: ['initialize'],
|
|
3181
|
+
defineCustomElementFn: () => {customElements.get('atomic-query-summary') || customElements.define('atomic-query-summary', LitAtomicQuerySummary);}
|
|
3182
|
+
})
|
|
3183
|
+
@Component({
|
|
3184
|
+
selector: 'atomic-query-summary',
|
|
3185
|
+
standalone: false,
|
|
3186
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3187
|
+
template: '<ng-content></ng-content>',
|
|
3188
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3189
|
+
inputs: []
|
|
3190
|
+
})
|
|
3191
|
+
export class AtomicQuerySummary {
|
|
3192
|
+
protected readonly el: HTMLElement;
|
|
3193
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3194
|
+
c.detach();
|
|
3195
|
+
this.el = el.nativeElement;
|
|
3196
|
+
|
|
3197
|
+
}
|
|
3198
|
+
}
|
|
3199
|
+
|
|
3200
|
+
export declare interface AtomicQuerySummary extends LitAtomicQuerySummary {
|
|
3201
|
+
|
|
3202
|
+
}
|
|
3203
|
+
|
|
3204
|
+
@ProxyCmp({
|
|
3205
|
+
inputs: ['current', 'total', 'sandbox'],
|
|
3206
|
+
methods: ['initialize', 'reset'],
|
|
3207
|
+
defineCustomElementFn: () => {customElements.get('atomic-quickview-modal') || customElements.define('atomic-quickview-modal', LitAtomicQuickviewModal);}
|
|
3208
|
+
})
|
|
3209
|
+
@Component({
|
|
3210
|
+
selector: 'atomic-quickview-modal',
|
|
3211
|
+
standalone: false,
|
|
3212
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3213
|
+
template: '<ng-content></ng-content>',
|
|
3214
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3215
|
+
inputs: ['current', 'total', 'sandbox']
|
|
3216
|
+
})
|
|
3217
|
+
export class AtomicQuickviewModal {
|
|
3218
|
+
protected readonly el: HTMLElement;
|
|
3219
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3220
|
+
c.detach();
|
|
3221
|
+
this.el = el.nativeElement;
|
|
3222
|
+
proxyOutputs(this, this.el, ['atomic/quickview/next', 'atomic/quickview/previous']);
|
|
3223
|
+
}
|
|
3224
|
+
}
|
|
3225
|
+
|
|
3226
|
+
export declare interface AtomicQuickviewModal extends LitAtomicQuickviewModal {
|
|
3227
|
+
'atomic/quickview/next': EventEmitter<CustomEvent<any>>;
|
|
3228
|
+
'atomic/quickview/previous': EventEmitter<CustomEvent<any>>;
|
|
3229
|
+
}
|
|
3230
|
+
|
|
3231
|
+
@ProxyCmp({
|
|
3232
|
+
inputs: ['sandbox'],
|
|
3233
|
+
methods: ['initialize'],
|
|
3234
|
+
defineCustomElementFn: () => {customElements.get('atomic-quickview') || customElements.define('atomic-quickview', LitAtomicQuickview);}
|
|
3235
|
+
})
|
|
3236
|
+
@Component({
|
|
3237
|
+
selector: 'atomic-quickview',
|
|
3238
|
+
standalone: false,
|
|
3239
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3240
|
+
template: '<ng-content></ng-content>',
|
|
3241
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3242
|
+
inputs: ['sandbox']
|
|
3243
|
+
})
|
|
3244
|
+
export class AtomicQuickview {
|
|
3245
|
+
protected readonly el: HTMLElement;
|
|
3246
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3247
|
+
c.detach();
|
|
3248
|
+
this.el = el.nativeElement;
|
|
3249
|
+
|
|
3250
|
+
}
|
|
3251
|
+
}
|
|
3252
|
+
|
|
3253
|
+
export declare interface AtomicQuickview extends LitAtomicQuickview {
|
|
3254
|
+
|
|
3255
|
+
}
|
|
3256
|
+
|
|
3257
|
+
@ProxyCmp({
|
|
3258
|
+
inputs: ['facetId', 'label', 'field', 'numberOfIntervals', 'tabsIncluded', 'tabsExcluded', 'maxValueInIndex', 'minValueInIndex', 'displayValuesAs', 'icon', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn'],
|
|
3259
|
+
methods: ['initialize'],
|
|
3260
|
+
defineCustomElementFn: () => {customElements.get('atomic-rating-facet') || customElements.define('atomic-rating-facet', LitAtomicRatingFacet);}
|
|
3261
|
+
})
|
|
3262
|
+
@Component({
|
|
3263
|
+
selector: 'atomic-rating-facet',
|
|
3264
|
+
standalone: false,
|
|
3265
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3266
|
+
template: '<ng-content></ng-content>',
|
|
3267
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3268
|
+
inputs: ['facetId', 'label', 'field', 'numberOfIntervals', 'tabsIncluded', 'tabsExcluded', 'maxValueInIndex', 'minValueInIndex', 'displayValuesAs', 'icon', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn']
|
|
3269
|
+
})
|
|
3270
|
+
export class AtomicRatingFacet {
|
|
3271
|
+
protected readonly el: HTMLElement;
|
|
3272
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3273
|
+
c.detach();
|
|
3274
|
+
this.el = el.nativeElement;
|
|
3275
|
+
|
|
3276
|
+
}
|
|
3277
|
+
}
|
|
3278
|
+
|
|
3279
|
+
export declare interface AtomicRatingFacet extends LitAtomicRatingFacet {
|
|
3280
|
+
|
|
3281
|
+
}
|
|
3282
|
+
|
|
3283
|
+
@ProxyCmp({
|
|
3284
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfIntervals', 'maxValueInIndex', 'minValueInIndex', 'icon', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn'],
|
|
3285
|
+
methods: ['initialize'],
|
|
3286
|
+
defineCustomElementFn: () => {customElements.get('atomic-rating-range-facet') || customElements.define('atomic-rating-range-facet', LitAtomicRatingRangeFacet);}
|
|
3287
|
+
})
|
|
3288
|
+
@Component({
|
|
3289
|
+
selector: 'atomic-rating-range-facet',
|
|
3290
|
+
standalone: false,
|
|
3291
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3292
|
+
template: '<ng-content></ng-content>',
|
|
3293
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3294
|
+
inputs: ['facetId', 'label', 'field', 'tabsIncluded', 'tabsExcluded', 'numberOfIntervals', 'maxValueInIndex', 'minValueInIndex', 'icon', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'dependsOn']
|
|
3295
|
+
})
|
|
3296
|
+
export class AtomicRatingRangeFacet {
|
|
3297
|
+
protected readonly el: HTMLElement;
|
|
3298
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3299
|
+
c.detach();
|
|
3300
|
+
this.el = el.nativeElement;
|
|
3301
|
+
|
|
3302
|
+
}
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
export declare interface AtomicRatingRangeFacet extends LitAtomicRatingRangeFacet {
|
|
3306
|
+
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
@ProxyCmp({
|
|
3310
|
+
inputs: ['openButton', 'isOpen', 'collapseFacetsAfter'],
|
|
3311
|
+
methods: ['initialize'],
|
|
3312
|
+
defineCustomElementFn: () => {customElements.get('atomic-refine-modal') || customElements.define('atomic-refine-modal', LitAtomicRefineModal);}
|
|
3313
|
+
})
|
|
3314
|
+
@Component({
|
|
3315
|
+
selector: 'atomic-refine-modal',
|
|
3316
|
+
standalone: false,
|
|
3317
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3318
|
+
template: '<ng-content></ng-content>',
|
|
3319
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3320
|
+
inputs: ['openButton', 'isOpen', 'collapseFacetsAfter']
|
|
3321
|
+
})
|
|
3322
|
+
export class AtomicRefineModal {
|
|
3323
|
+
protected readonly el: HTMLElement;
|
|
3324
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3325
|
+
c.detach();
|
|
3326
|
+
this.el = el.nativeElement;
|
|
3327
|
+
|
|
3328
|
+
}
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
export declare interface AtomicRefineModal extends LitAtomicRefineModal {
|
|
3332
|
+
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
@ProxyCmp({
|
|
3336
|
+
inputs: ['collapseFacetsAfter'],
|
|
3337
|
+
methods: ['initialize'],
|
|
3338
|
+
defineCustomElementFn: () => {customElements.get('atomic-refine-toggle') || customElements.define('atomic-refine-toggle', LitAtomicRefineToggle);}
|
|
3339
|
+
})
|
|
3340
|
+
@Component({
|
|
3341
|
+
selector: 'atomic-refine-toggle',
|
|
3342
|
+
standalone: false,
|
|
3343
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3344
|
+
template: '<ng-content></ng-content>',
|
|
3345
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3346
|
+
inputs: ['collapseFacetsAfter']
|
|
3347
|
+
})
|
|
3348
|
+
export class AtomicRefineToggle {
|
|
3349
|
+
protected readonly el: HTMLElement;
|
|
3350
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3351
|
+
c.detach();
|
|
3352
|
+
this.el = el.nativeElement;
|
|
3353
|
+
|
|
3354
|
+
}
|
|
3355
|
+
}
|
|
3356
|
+
|
|
3357
|
+
export declare interface AtomicRefineToggle extends LitAtomicRefineToggle {
|
|
3358
|
+
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
@ProxyCmp({
|
|
3362
|
+
inputs: ['field', 'label', 'icon'],
|
|
3363
|
+
methods: [],
|
|
3364
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-badge') || customElements.define('atomic-result-badge', LitAtomicResultBadge);}
|
|
3365
|
+
})
|
|
3366
|
+
@Component({
|
|
3367
|
+
selector: 'atomic-result-badge',
|
|
3368
|
+
standalone: false,
|
|
3369
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3370
|
+
template: '<ng-content></ng-content>',
|
|
3371
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3372
|
+
inputs: ['field', 'label', 'icon']
|
|
3373
|
+
})
|
|
3374
|
+
export class AtomicResultBadge {
|
|
3375
|
+
protected readonly el: HTMLElement;
|
|
3376
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3377
|
+
c.detach();
|
|
3378
|
+
this.el = el.nativeElement;
|
|
3379
|
+
|
|
3380
|
+
}
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
export declare interface AtomicResultBadge extends LitAtomicResultBadge {
|
|
3384
|
+
|
|
3385
|
+
}
|
|
3386
|
+
|
|
3387
|
+
@ProxyCmp({
|
|
3388
|
+
inputs: ['mustMatch', 'mustNotMatch'],
|
|
3389
|
+
methods: ['getTemplate'],
|
|
3390
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-children-template') || customElements.define('atomic-result-children-template', LitAtomicResultChildrenTemplate);}
|
|
3391
|
+
})
|
|
3392
|
+
@Component({
|
|
3393
|
+
selector: 'atomic-result-children-template',
|
|
3394
|
+
standalone: false,
|
|
3395
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3396
|
+
template: '<ng-content></ng-content>',
|
|
3397
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3398
|
+
inputs: ['mustMatch', 'mustNotMatch']
|
|
3399
|
+
})
|
|
3400
|
+
export class AtomicResultChildrenTemplate {
|
|
3401
|
+
protected readonly el: HTMLElement;
|
|
3402
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3403
|
+
c.detach();
|
|
3404
|
+
this.el = el.nativeElement;
|
|
3405
|
+
|
|
3406
|
+
}
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3409
|
+
export declare interface AtomicResultChildrenTemplate extends LitAtomicResultChildrenTemplate {
|
|
3410
|
+
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
@ProxyCmp({
|
|
3414
|
+
inputs: ['inheritTemplates', 'imageSize', 'noResultText'],
|
|
3415
|
+
methods: ['initialize'],
|
|
3416
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-children') || customElements.define('atomic-result-children', LitAtomicResultChildren);}
|
|
3417
|
+
})
|
|
3418
|
+
@Component({
|
|
3419
|
+
selector: 'atomic-result-children',
|
|
3420
|
+
standalone: false,
|
|
3421
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3422
|
+
template: '<ng-content></ng-content>',
|
|
3423
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3424
|
+
inputs: ['inheritTemplates', 'imageSize', 'noResultText']
|
|
3425
|
+
})
|
|
3426
|
+
export class AtomicResultChildren {
|
|
3427
|
+
protected readonly el: HTMLElement;
|
|
3428
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3429
|
+
c.detach();
|
|
3430
|
+
this.el = el.nativeElement;
|
|
3431
|
+
|
|
3432
|
+
}
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3435
|
+
export declare interface AtomicResultChildren extends LitAtomicResultChildren {
|
|
3436
|
+
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3439
|
+
@ProxyCmp({
|
|
3440
|
+
inputs: ['field', 'format', 'relativeTime'],
|
|
3441
|
+
methods: ['initialize'],
|
|
3442
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-date') || customElements.define('atomic-result-date', LitAtomicResultDate);}
|
|
3443
|
+
})
|
|
3444
|
+
@Component({
|
|
3445
|
+
selector: 'atomic-result-date',
|
|
3446
|
+
standalone: false,
|
|
3447
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3448
|
+
template: '<ng-content></ng-content>',
|
|
3449
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3450
|
+
inputs: ['field', 'format', 'relativeTime']
|
|
3451
|
+
})
|
|
3452
|
+
export class AtomicResultDate {
|
|
3453
|
+
protected readonly el: HTMLElement;
|
|
3454
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3455
|
+
c.detach();
|
|
3456
|
+
this.el = el.nativeElement;
|
|
3457
|
+
|
|
3458
|
+
}
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3461
|
+
export declare interface AtomicResultDate extends LitAtomicResultDate {
|
|
3462
|
+
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3465
|
+
@ProxyCmp({
|
|
3466
|
+
inputs: [],
|
|
3467
|
+
methods: ['initialize', 'renderDefaultSlotContent'],
|
|
3468
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-fields-list') || customElements.define('atomic-result-fields-list', LitAtomicResultFieldsList);}
|
|
3469
|
+
})
|
|
3470
|
+
@Component({
|
|
3471
|
+
selector: 'atomic-result-fields-list',
|
|
3472
|
+
standalone: false,
|
|
3473
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3474
|
+
template: '<ng-content></ng-content>',
|
|
3475
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3476
|
+
inputs: []
|
|
3477
|
+
})
|
|
3478
|
+
export class AtomicResultFieldsList {
|
|
3479
|
+
protected readonly el: HTMLElement;
|
|
3480
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3481
|
+
c.detach();
|
|
3482
|
+
this.el = el.nativeElement;
|
|
3483
|
+
|
|
3484
|
+
}
|
|
3485
|
+
}
|
|
3486
|
+
|
|
3487
|
+
export declare interface AtomicResultFieldsList extends LitAtomicResultFieldsList {
|
|
3488
|
+
|
|
3489
|
+
}
|
|
3490
|
+
|
|
3491
|
+
@ProxyCmp({
|
|
3492
|
+
inputs: ['field', 'sanitize'],
|
|
3493
|
+
methods: ['initialize'],
|
|
3494
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-html') || customElements.define('atomic-result-html', LitAtomicResultHtml);}
|
|
3495
|
+
})
|
|
3496
|
+
@Component({
|
|
3497
|
+
selector: 'atomic-result-html',
|
|
3498
|
+
standalone: false,
|
|
3499
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3500
|
+
template: '<ng-content></ng-content>',
|
|
3501
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3502
|
+
inputs: ['field', 'sanitize']
|
|
3503
|
+
})
|
|
3504
|
+
export class AtomicResultHtml {
|
|
3505
|
+
protected readonly el: HTMLElement;
|
|
3506
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3507
|
+
c.detach();
|
|
3508
|
+
this.el = el.nativeElement;
|
|
3509
|
+
|
|
3510
|
+
}
|
|
3511
|
+
}
|
|
3512
|
+
|
|
3513
|
+
export declare interface AtomicResultHtml extends LitAtomicResultHtml {
|
|
3514
|
+
|
|
3515
|
+
}
|
|
3516
|
+
|
|
3517
|
+
@ProxyCmp({
|
|
3518
|
+
inputs: [],
|
|
3519
|
+
methods: ['initialize'],
|
|
3520
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-icon') || customElements.define('atomic-result-icon', LitAtomicResultIcon);}
|
|
3521
|
+
})
|
|
3522
|
+
@Component({
|
|
3523
|
+
selector: 'atomic-result-icon',
|
|
3524
|
+
standalone: false,
|
|
3525
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3526
|
+
template: '<ng-content></ng-content>',
|
|
3527
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3528
|
+
inputs: []
|
|
3529
|
+
})
|
|
3530
|
+
export class AtomicResultIcon {
|
|
3531
|
+
protected readonly el: HTMLElement;
|
|
3532
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3533
|
+
c.detach();
|
|
3534
|
+
this.el = el.nativeElement;
|
|
3535
|
+
|
|
3536
|
+
}
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
export declare interface AtomicResultIcon extends LitAtomicResultIcon {
|
|
3540
|
+
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
@ProxyCmp({
|
|
3544
|
+
inputs: ['field', 'imageAltField', 'fallback'],
|
|
3545
|
+
methods: ['initialize'],
|
|
3546
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-image') || customElements.define('atomic-result-image', LitAtomicResultImage);}
|
|
3547
|
+
})
|
|
3548
|
+
@Component({
|
|
3549
|
+
selector: 'atomic-result-image',
|
|
3550
|
+
standalone: false,
|
|
3551
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3552
|
+
template: '<ng-content></ng-content>',
|
|
3553
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3554
|
+
inputs: ['field', 'imageAltField', 'fallback']
|
|
3555
|
+
})
|
|
3556
|
+
export class AtomicResultImage {
|
|
3557
|
+
protected readonly el: HTMLElement;
|
|
3558
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3559
|
+
c.detach();
|
|
3560
|
+
this.el = el.nativeElement;
|
|
3561
|
+
|
|
3562
|
+
}
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3565
|
+
export declare interface AtomicResultImage extends LitAtomicResultImage {
|
|
3566
|
+
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
@ProxyCmp({
|
|
3570
|
+
inputs: ['hrefTemplate'],
|
|
3571
|
+
methods: ['initialize', 'renderDefaultSlotContent'],
|
|
3572
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-link') || customElements.define('atomic-result-link', LitAtomicResultLink);}
|
|
3573
|
+
})
|
|
3574
|
+
@Component({
|
|
3575
|
+
selector: 'atomic-result-link',
|
|
3576
|
+
standalone: false,
|
|
3577
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3578
|
+
template: '<ng-content></ng-content>',
|
|
3579
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3580
|
+
inputs: ['hrefTemplate']
|
|
3581
|
+
})
|
|
3582
|
+
export class AtomicResultLink {
|
|
3583
|
+
protected readonly el: HTMLElement;
|
|
3584
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3585
|
+
c.detach();
|
|
3586
|
+
this.el = el.nativeElement;
|
|
3587
|
+
|
|
3588
|
+
}
|
|
3589
|
+
}
|
|
3590
|
+
|
|
3591
|
+
export declare interface AtomicResultLink extends LitAtomicResultLink {
|
|
3592
|
+
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3595
|
+
@ProxyCmp({
|
|
3596
|
+
inputs: ['density', 'display', 'imageSize', 'tabsIncluded', 'tabsExcluded'],
|
|
3597
|
+
methods: ['setRenderFunction', 'initialize'],
|
|
3598
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-list') || customElements.define('atomic-result-list', LitAtomicResultList);}
|
|
3599
|
+
})
|
|
3600
|
+
@Component({
|
|
3601
|
+
selector: 'atomic-result-list',
|
|
3602
|
+
standalone: false,
|
|
3603
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3604
|
+
template: '<ng-content></ng-content>',
|
|
3605
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3606
|
+
inputs: ['density', 'display', 'imageSize', 'tabsIncluded', 'tabsExcluded']
|
|
3607
|
+
})
|
|
3608
|
+
export class AtomicResultList {
|
|
3609
|
+
protected readonly el: HTMLElement;
|
|
3610
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3611
|
+
c.detach();
|
|
3612
|
+
this.el = el.nativeElement;
|
|
3613
|
+
|
|
3614
|
+
}
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
export declare interface AtomicResultList extends LitAtomicResultList {
|
|
3618
|
+
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3621
|
+
@ProxyCmp({
|
|
3622
|
+
inputs: ['localeKey', 'fieldCount', 'field'],
|
|
3623
|
+
methods: ['initialize'],
|
|
3624
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-localized-text') || customElements.define('atomic-result-localized-text', LitAtomicResultLocalizedText);}
|
|
3625
|
+
})
|
|
3626
|
+
@Component({
|
|
3627
|
+
selector: 'atomic-result-localized-text',
|
|
3628
|
+
standalone: false,
|
|
3629
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3630
|
+
template: '<ng-content></ng-content>',
|
|
3631
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3632
|
+
inputs: ['localeKey', 'fieldCount', 'field']
|
|
3633
|
+
})
|
|
3634
|
+
export class AtomicResultLocalizedText {
|
|
3635
|
+
protected readonly el: HTMLElement;
|
|
3636
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3637
|
+
c.detach();
|
|
3638
|
+
this.el = el.nativeElement;
|
|
3639
|
+
|
|
3640
|
+
}
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
export declare interface AtomicResultLocalizedText extends LitAtomicResultLocalizedText {
|
|
3644
|
+
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3647
|
+
@ProxyCmp({
|
|
3648
|
+
inputs: ['field', 'maxValuesToDisplay', 'delimiter'],
|
|
3649
|
+
methods: ['initialize'],
|
|
3650
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-multi-value-text') || customElements.define('atomic-result-multi-value-text', LitAtomicResultMultiValueText);}
|
|
3651
|
+
})
|
|
3652
|
+
@Component({
|
|
3653
|
+
selector: 'atomic-result-multi-value-text',
|
|
3654
|
+
standalone: false,
|
|
3655
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3656
|
+
template: '<ng-content></ng-content>',
|
|
3657
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3658
|
+
inputs: ['field', 'maxValuesToDisplay', 'delimiter']
|
|
3659
|
+
})
|
|
3660
|
+
export class AtomicResultMultiValueText {
|
|
3661
|
+
protected readonly el: HTMLElement;
|
|
3662
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3663
|
+
c.detach();
|
|
3664
|
+
this.el = el.nativeElement;
|
|
3665
|
+
|
|
3666
|
+
}
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
export declare interface AtomicResultMultiValueText extends LitAtomicResultMultiValueText {
|
|
3670
|
+
|
|
3671
|
+
}
|
|
3672
|
+
|
|
3673
|
+
@ProxyCmp({
|
|
3674
|
+
inputs: ['field'],
|
|
3675
|
+
methods: ['initialize'],
|
|
3676
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-number') || customElements.define('atomic-result-number', LitAtomicResultNumber);}
|
|
3677
|
+
})
|
|
3678
|
+
@Component({
|
|
3679
|
+
selector: 'atomic-result-number',
|
|
3680
|
+
standalone: false,
|
|
3681
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3682
|
+
template: '<ng-content></ng-content>',
|
|
3683
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3684
|
+
inputs: ['field']
|
|
3685
|
+
})
|
|
3686
|
+
export class AtomicResultNumber {
|
|
3687
|
+
protected readonly el: HTMLElement;
|
|
3688
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3689
|
+
c.detach();
|
|
3690
|
+
this.el = el.nativeElement;
|
|
3691
|
+
|
|
3692
|
+
}
|
|
3693
|
+
}
|
|
3694
|
+
|
|
3695
|
+
export declare interface AtomicResultNumber extends LitAtomicResultNumber {
|
|
3696
|
+
|
|
3697
|
+
}
|
|
3698
|
+
|
|
3699
|
+
@ProxyCmp({
|
|
3700
|
+
inputs: ['maxNumberOfParts'],
|
|
3701
|
+
methods: ['initialize'],
|
|
3702
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-printable-uri') || customElements.define('atomic-result-printable-uri', LitAtomicResultPrintableUri);}
|
|
3703
|
+
})
|
|
3704
|
+
@Component({
|
|
3705
|
+
selector: 'atomic-result-printable-uri',
|
|
3706
|
+
standalone: false,
|
|
3707
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3708
|
+
template: '<ng-content></ng-content>',
|
|
3709
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3710
|
+
inputs: ['maxNumberOfParts']
|
|
3711
|
+
})
|
|
3712
|
+
export class AtomicResultPrintableUri {
|
|
3713
|
+
protected readonly el: HTMLElement;
|
|
3714
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3715
|
+
c.detach();
|
|
3716
|
+
this.el = el.nativeElement;
|
|
3717
|
+
|
|
3718
|
+
}
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3721
|
+
export declare interface AtomicResultPrintableUri extends LitAtomicResultPrintableUri {
|
|
3722
|
+
|
|
3723
|
+
}
|
|
3724
|
+
|
|
3725
|
+
@ProxyCmp({
|
|
3726
|
+
inputs: ['field', 'maxValueInIndex', 'icon'],
|
|
3727
|
+
methods: ['initialize'],
|
|
3728
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-rating') || customElements.define('atomic-result-rating', LitAtomicResultRating);}
|
|
3729
|
+
})
|
|
3730
|
+
@Component({
|
|
3731
|
+
selector: 'atomic-result-rating',
|
|
3732
|
+
standalone: false,
|
|
3733
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3734
|
+
template: '<ng-content></ng-content>',
|
|
3735
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3736
|
+
inputs: ['field', 'maxValueInIndex', 'icon']
|
|
3737
|
+
})
|
|
3738
|
+
export class AtomicResultRating {
|
|
3739
|
+
protected readonly el: HTMLElement;
|
|
3740
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3741
|
+
c.detach();
|
|
3742
|
+
this.el = el.nativeElement;
|
|
3743
|
+
|
|
3744
|
+
}
|
|
3745
|
+
}
|
|
3746
|
+
|
|
3747
|
+
export declare interface AtomicResultRating extends LitAtomicResultRating {
|
|
3748
|
+
|
|
3749
|
+
}
|
|
3750
|
+
|
|
3751
|
+
@ProxyCmp({
|
|
3752
|
+
inputs: [],
|
|
3753
|
+
methods: [],
|
|
3754
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-section-actions') || customElements.define('atomic-result-section-actions', LitAtomicResultSectionActions);}
|
|
3755
|
+
})
|
|
3756
|
+
@Component({
|
|
3757
|
+
selector: 'atomic-result-section-actions',
|
|
3758
|
+
standalone: false,
|
|
3759
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3760
|
+
template: '<ng-content></ng-content>',
|
|
3761
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3762
|
+
inputs: []
|
|
3763
|
+
})
|
|
3764
|
+
export class AtomicResultSectionActions {
|
|
3765
|
+
protected readonly el: HTMLElement;
|
|
3766
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3767
|
+
c.detach();
|
|
3768
|
+
this.el = el.nativeElement;
|
|
3769
|
+
|
|
3770
|
+
}
|
|
3771
|
+
}
|
|
3772
|
+
|
|
3773
|
+
export declare interface AtomicResultSectionActions extends LitAtomicResultSectionActions {
|
|
3774
|
+
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
@ProxyCmp({
|
|
3778
|
+
inputs: [],
|
|
3779
|
+
methods: [],
|
|
3780
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-section-badges') || customElements.define('atomic-result-section-badges', LitAtomicResultSectionBadges);}
|
|
3781
|
+
})
|
|
3782
|
+
@Component({
|
|
3783
|
+
selector: 'atomic-result-section-badges',
|
|
3784
|
+
standalone: false,
|
|
3785
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3786
|
+
template: '<ng-content></ng-content>',
|
|
3787
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3788
|
+
inputs: []
|
|
3789
|
+
})
|
|
3790
|
+
export class AtomicResultSectionBadges {
|
|
3791
|
+
protected readonly el: HTMLElement;
|
|
3792
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3793
|
+
c.detach();
|
|
3794
|
+
this.el = el.nativeElement;
|
|
3795
|
+
|
|
3796
|
+
}
|
|
3797
|
+
}
|
|
3798
|
+
|
|
3799
|
+
export declare interface AtomicResultSectionBadges extends LitAtomicResultSectionBadges {
|
|
3800
|
+
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3803
|
+
@ProxyCmp({
|
|
3804
|
+
inputs: [],
|
|
3805
|
+
methods: [],
|
|
3806
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-section-bottom-metadata') || customElements.define('atomic-result-section-bottom-metadata', LitAtomicResultSectionBottomMetadata);}
|
|
3807
|
+
})
|
|
3808
|
+
@Component({
|
|
3809
|
+
selector: 'atomic-result-section-bottom-metadata',
|
|
3810
|
+
standalone: false,
|
|
3811
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3812
|
+
template: '<ng-content></ng-content>',
|
|
3813
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3814
|
+
inputs: []
|
|
3815
|
+
})
|
|
3816
|
+
export class AtomicResultSectionBottomMetadata {
|
|
3817
|
+
protected readonly el: HTMLElement;
|
|
3818
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3819
|
+
c.detach();
|
|
3820
|
+
this.el = el.nativeElement;
|
|
3821
|
+
|
|
3822
|
+
}
|
|
3823
|
+
}
|
|
3824
|
+
|
|
3825
|
+
export declare interface AtomicResultSectionBottomMetadata extends LitAtomicResultSectionBottomMetadata {
|
|
3826
|
+
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
@ProxyCmp({
|
|
3830
|
+
inputs: [],
|
|
3831
|
+
methods: [],
|
|
3832
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-section-children') || customElements.define('atomic-result-section-children', LitAtomicResultSectionChildren);}
|
|
3833
|
+
})
|
|
3834
|
+
@Component({
|
|
3835
|
+
selector: 'atomic-result-section-children',
|
|
3836
|
+
standalone: false,
|
|
3837
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3838
|
+
template: '<ng-content></ng-content>',
|
|
3839
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3840
|
+
inputs: []
|
|
3841
|
+
})
|
|
3842
|
+
export class AtomicResultSectionChildren {
|
|
3843
|
+
protected readonly el: HTMLElement;
|
|
3844
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3845
|
+
c.detach();
|
|
3846
|
+
this.el = el.nativeElement;
|
|
3847
|
+
|
|
3848
|
+
}
|
|
3849
|
+
}
|
|
3850
|
+
|
|
3851
|
+
export declare interface AtomicResultSectionChildren extends LitAtomicResultSectionChildren {
|
|
3852
|
+
|
|
3853
|
+
}
|
|
3854
|
+
|
|
3855
|
+
@ProxyCmp({
|
|
3856
|
+
inputs: [],
|
|
3857
|
+
methods: [],
|
|
3858
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-section-emphasized') || customElements.define('atomic-result-section-emphasized', LitAtomicResultSectionEmphasized);}
|
|
3859
|
+
})
|
|
3860
|
+
@Component({
|
|
3861
|
+
selector: 'atomic-result-section-emphasized',
|
|
3862
|
+
standalone: false,
|
|
3863
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3864
|
+
template: '<ng-content></ng-content>',
|
|
3865
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3866
|
+
inputs: []
|
|
3867
|
+
})
|
|
3868
|
+
export class AtomicResultSectionEmphasized {
|
|
3869
|
+
protected readonly el: HTMLElement;
|
|
3870
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3871
|
+
c.detach();
|
|
3872
|
+
this.el = el.nativeElement;
|
|
3873
|
+
|
|
3874
|
+
}
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3877
|
+
export declare interface AtomicResultSectionEmphasized extends LitAtomicResultSectionEmphasized {
|
|
3878
|
+
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
@ProxyCmp({
|
|
3882
|
+
inputs: [],
|
|
3883
|
+
methods: [],
|
|
3884
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-section-excerpt') || customElements.define('atomic-result-section-excerpt', LitAtomicResultSectionExcerpt);}
|
|
3885
|
+
})
|
|
3886
|
+
@Component({
|
|
3887
|
+
selector: 'atomic-result-section-excerpt',
|
|
3888
|
+
standalone: false,
|
|
3889
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3890
|
+
template: '<ng-content></ng-content>',
|
|
3891
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3892
|
+
inputs: []
|
|
3893
|
+
})
|
|
3894
|
+
export class AtomicResultSectionExcerpt {
|
|
3895
|
+
protected readonly el: HTMLElement;
|
|
3896
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3897
|
+
c.detach();
|
|
3898
|
+
this.el = el.nativeElement;
|
|
3899
|
+
|
|
3900
|
+
}
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
export declare interface AtomicResultSectionExcerpt extends LitAtomicResultSectionExcerpt {
|
|
3904
|
+
|
|
3905
|
+
}
|
|
3906
|
+
|
|
3907
|
+
@ProxyCmp({
|
|
3908
|
+
inputs: [],
|
|
3909
|
+
methods: [],
|
|
3910
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-section-title-metadata') || customElements.define('atomic-result-section-title-metadata', LitAtomicResultSectionTitleMetadata);}
|
|
3911
|
+
})
|
|
3912
|
+
@Component({
|
|
3913
|
+
selector: 'atomic-result-section-title-metadata',
|
|
3914
|
+
standalone: false,
|
|
3915
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3916
|
+
template: '<ng-content></ng-content>',
|
|
3917
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3918
|
+
inputs: []
|
|
3919
|
+
})
|
|
3920
|
+
export class AtomicResultSectionTitleMetadata {
|
|
3921
|
+
protected readonly el: HTMLElement;
|
|
3922
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3923
|
+
c.detach();
|
|
3924
|
+
this.el = el.nativeElement;
|
|
3925
|
+
|
|
3926
|
+
}
|
|
3927
|
+
}
|
|
3928
|
+
|
|
3929
|
+
export declare interface AtomicResultSectionTitleMetadata extends LitAtomicResultSectionTitleMetadata {
|
|
3930
|
+
|
|
3931
|
+
}
|
|
3932
|
+
|
|
3933
|
+
@ProxyCmp({
|
|
3934
|
+
inputs: [],
|
|
3935
|
+
methods: [],
|
|
3936
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-section-title') || customElements.define('atomic-result-section-title', LitAtomicResultSectionTitle);}
|
|
3937
|
+
})
|
|
3938
|
+
@Component({
|
|
3939
|
+
selector: 'atomic-result-section-title',
|
|
3940
|
+
standalone: false,
|
|
3941
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3942
|
+
template: '<ng-content></ng-content>',
|
|
3943
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3944
|
+
inputs: []
|
|
3945
|
+
})
|
|
3946
|
+
export class AtomicResultSectionTitle {
|
|
3947
|
+
protected readonly el: HTMLElement;
|
|
3948
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3949
|
+
c.detach();
|
|
3950
|
+
this.el = el.nativeElement;
|
|
3951
|
+
|
|
3952
|
+
}
|
|
3953
|
+
}
|
|
3954
|
+
|
|
3955
|
+
export declare interface AtomicResultSectionTitle extends LitAtomicResultSectionTitle {
|
|
3956
|
+
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
@ProxyCmp({
|
|
3960
|
+
inputs: ['imageSize'],
|
|
3961
|
+
methods: [],
|
|
3962
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-section-visual') || customElements.define('atomic-result-section-visual', LitAtomicResultSectionVisual);}
|
|
3963
|
+
})
|
|
3964
|
+
@Component({
|
|
3965
|
+
selector: 'atomic-result-section-visual',
|
|
3966
|
+
standalone: false,
|
|
3967
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3968
|
+
template: '<ng-content></ng-content>',
|
|
3969
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3970
|
+
inputs: ['imageSize']
|
|
3971
|
+
})
|
|
3972
|
+
export class AtomicResultSectionVisual {
|
|
3973
|
+
protected readonly el: HTMLElement;
|
|
3974
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
3975
|
+
c.detach();
|
|
3976
|
+
this.el = el.nativeElement;
|
|
3977
|
+
|
|
3978
|
+
}
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
export declare interface AtomicResultSectionVisual extends LitAtomicResultSectionVisual {
|
|
3982
|
+
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
@ProxyCmp({
|
|
3986
|
+
inputs: ['mustMatch', 'mustNotMatch'],
|
|
3987
|
+
methods: ['getTemplate'],
|
|
3988
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-template') || customElements.define('atomic-result-template', LitAtomicResultTemplate);}
|
|
3989
|
+
})
|
|
3990
|
+
@Component({
|
|
3991
|
+
selector: 'atomic-result-template',
|
|
3992
|
+
standalone: false,
|
|
3993
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3994
|
+
template: '<ng-content></ng-content>',
|
|
3995
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
3996
|
+
inputs: ['mustMatch', 'mustNotMatch']
|
|
3997
|
+
})
|
|
3998
|
+
export class AtomicResultTemplate {
|
|
3999
|
+
protected readonly el: HTMLElement;
|
|
4000
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4001
|
+
c.detach();
|
|
4002
|
+
this.el = el.nativeElement;
|
|
4003
|
+
|
|
4004
|
+
}
|
|
4005
|
+
}
|
|
4006
|
+
|
|
4007
|
+
export declare interface AtomicResultTemplate extends LitAtomicResultTemplate {
|
|
4008
|
+
|
|
4009
|
+
}
|
|
4010
|
+
|
|
4011
|
+
@ProxyCmp({
|
|
4012
|
+
inputs: ['field', 'shouldHighlight', 'disableHighlight', 'default'],
|
|
4013
|
+
methods: ['initialize'],
|
|
4014
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-text') || customElements.define('atomic-result-text', LitAtomicResultText);}
|
|
4015
|
+
})
|
|
4016
|
+
@Component({
|
|
4017
|
+
selector: 'atomic-result-text',
|
|
4018
|
+
standalone: false,
|
|
4019
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4020
|
+
template: '<ng-content></ng-content>',
|
|
4021
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4022
|
+
inputs: ['field', 'shouldHighlight', 'disableHighlight', 'default']
|
|
4023
|
+
})
|
|
4024
|
+
export class AtomicResultText {
|
|
4025
|
+
protected readonly el: HTMLElement;
|
|
4026
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4027
|
+
c.detach();
|
|
4028
|
+
this.el = el.nativeElement;
|
|
4029
|
+
|
|
4030
|
+
}
|
|
4031
|
+
}
|
|
4032
|
+
|
|
4033
|
+
export declare interface AtomicResultText extends LitAtomicResultText {
|
|
4034
|
+
|
|
4035
|
+
}
|
|
4036
|
+
|
|
4037
|
+
@ProxyCmp({
|
|
4038
|
+
inputs: ['field', 'unit', 'format'],
|
|
4039
|
+
methods: ['initialize'],
|
|
4040
|
+
defineCustomElementFn: () => {customElements.get('atomic-result-timespan') || customElements.define('atomic-result-timespan', LitAtomicResultTimespan);}
|
|
4041
|
+
})
|
|
4042
|
+
@Component({
|
|
4043
|
+
selector: 'atomic-result-timespan',
|
|
4044
|
+
standalone: false,
|
|
4045
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4046
|
+
template: '<ng-content></ng-content>',
|
|
4047
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4048
|
+
inputs: ['field', 'unit', 'format']
|
|
4049
|
+
})
|
|
4050
|
+
export class AtomicResultTimespan {
|
|
4051
|
+
protected readonly el: HTMLElement;
|
|
4052
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4053
|
+
c.detach();
|
|
4054
|
+
this.el = el.nativeElement;
|
|
4055
|
+
|
|
4056
|
+
}
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4059
|
+
export declare interface AtomicResultTimespan extends LitAtomicResultTimespan {
|
|
4060
|
+
|
|
4061
|
+
}
|
|
4062
|
+
|
|
4063
|
+
@ProxyCmp({
|
|
4064
|
+
inputs: ['stopPropagation', 'result', 'interactiveResult', 'store', 'content', 'linkContent', 'display', 'density', 'imageSize', 'classes'],
|
|
4065
|
+
methods: [],
|
|
4066
|
+
defineCustomElementFn: () => {customElements.get('atomic-result') || customElements.define('atomic-result', LitAtomicResult);}
|
|
4067
|
+
})
|
|
4068
|
+
@Component({
|
|
4069
|
+
selector: 'atomic-result',
|
|
4070
|
+
standalone: false,
|
|
4071
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4072
|
+
template: '<ng-content></ng-content>',
|
|
4073
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4074
|
+
inputs: ['stopPropagation', 'result', 'interactiveResult', 'store', 'content', 'linkContent', 'display', 'density', 'imageSize', 'classes']
|
|
4075
|
+
})
|
|
4076
|
+
export class AtomicResult {
|
|
4077
|
+
protected readonly el: HTMLElement;
|
|
4078
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4079
|
+
c.detach();
|
|
4080
|
+
this.el = el.nativeElement;
|
|
4081
|
+
|
|
4082
|
+
}
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
export declare interface AtomicResult extends LitAtomicResult {
|
|
4086
|
+
|
|
4087
|
+
}
|
|
4088
|
+
|
|
4089
|
+
@ProxyCmp({
|
|
4090
|
+
inputs: ['choicesDisplayed', 'initialChoice'],
|
|
4091
|
+
methods: ['initialize'],
|
|
4092
|
+
defineCustomElementFn: () => {customElements.get('atomic-results-per-page') || customElements.define('atomic-results-per-page', LitAtomicResultsPerPage);}
|
|
4093
|
+
})
|
|
4094
|
+
@Component({
|
|
4095
|
+
selector: 'atomic-results-per-page',
|
|
4096
|
+
standalone: false,
|
|
4097
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4098
|
+
template: '<ng-content></ng-content>',
|
|
4099
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4100
|
+
inputs: ['choicesDisplayed', 'initialChoice']
|
|
4101
|
+
})
|
|
4102
|
+
export class AtomicResultsPerPage {
|
|
4103
|
+
protected readonly el: HTMLElement;
|
|
4104
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4105
|
+
c.detach();
|
|
4106
|
+
this.el = el.nativeElement;
|
|
4107
|
+
proxyOutputs(this, this.el, ['atomic/scrollToTop']);
|
|
4108
|
+
}
|
|
4109
|
+
}
|
|
4110
|
+
|
|
4111
|
+
export declare interface AtomicResultsPerPage extends LitAtomicResultsPerPage {
|
|
4112
|
+
'atomic/scrollToTop': EventEmitter<CustomEvent<any>>;
|
|
4113
|
+
}
|
|
4114
|
+
|
|
4115
|
+
@ProxyCmp({
|
|
4116
|
+
inputs: ['maxResultsPerQuery', 'density', 'imageSize', 'ariaLabelGenerator'],
|
|
4117
|
+
methods: ['setRenderFunction', 'initialize'],
|
|
4118
|
+
defineCustomElementFn: () => {customElements.get('atomic-search-box-instant-results') || customElements.define('atomic-search-box-instant-results', LitAtomicSearchBoxInstantResults);}
|
|
4119
|
+
})
|
|
4120
|
+
@Component({
|
|
4121
|
+
selector: 'atomic-search-box-instant-results',
|
|
4122
|
+
standalone: false,
|
|
4123
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4124
|
+
template: '<ng-content></ng-content>',
|
|
4125
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4126
|
+
inputs: ['maxResultsPerQuery', 'density', 'imageSize', 'ariaLabelGenerator']
|
|
4127
|
+
})
|
|
4128
|
+
export class AtomicSearchBoxInstantResults {
|
|
4129
|
+
protected readonly el: HTMLElement;
|
|
4130
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4131
|
+
c.detach();
|
|
4132
|
+
this.el = el.nativeElement;
|
|
4133
|
+
|
|
4134
|
+
}
|
|
4135
|
+
}
|
|
4136
|
+
|
|
4137
|
+
export declare interface AtomicSearchBoxInstantResults extends LitAtomicSearchBoxInstantResults {
|
|
4138
|
+
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
@ProxyCmp({
|
|
4142
|
+
inputs: ['icon', 'maxWithQuery', 'maxWithoutQuery'],
|
|
4143
|
+
methods: ['initialize'],
|
|
4144
|
+
defineCustomElementFn: () => {customElements.get('atomic-search-box-query-suggestions') || customElements.define('atomic-search-box-query-suggestions', LitAtomicSearchBoxQuerySuggestions);}
|
|
4145
|
+
})
|
|
4146
|
+
@Component({
|
|
4147
|
+
selector: 'atomic-search-box-query-suggestions',
|
|
4148
|
+
standalone: false,
|
|
4149
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4150
|
+
template: '<ng-content></ng-content>',
|
|
4151
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4152
|
+
inputs: ['icon', 'maxWithQuery', 'maxWithoutQuery']
|
|
4153
|
+
})
|
|
4154
|
+
export class AtomicSearchBoxQuerySuggestions {
|
|
4155
|
+
protected readonly el: HTMLElement;
|
|
4156
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4157
|
+
c.detach();
|
|
4158
|
+
this.el = el.nativeElement;
|
|
4159
|
+
|
|
4160
|
+
}
|
|
4161
|
+
}
|
|
4162
|
+
|
|
4163
|
+
export declare interface AtomicSearchBoxQuerySuggestions extends LitAtomicSearchBoxQuerySuggestions {
|
|
4164
|
+
|
|
4165
|
+
}
|
|
4166
|
+
|
|
4167
|
+
@ProxyCmp({
|
|
4168
|
+
inputs: ['icon', 'maxWithQuery', 'maxWithoutQuery'],
|
|
4169
|
+
methods: ['initialize'],
|
|
4170
|
+
defineCustomElementFn: () => {customElements.get('atomic-search-box-recent-queries') || customElements.define('atomic-search-box-recent-queries', LitAtomicSearchBoxRecentQueries);}
|
|
4171
|
+
})
|
|
4172
|
+
@Component({
|
|
4173
|
+
selector: 'atomic-search-box-recent-queries',
|
|
4174
|
+
standalone: false,
|
|
4175
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4176
|
+
template: '<ng-content></ng-content>',
|
|
4177
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4178
|
+
inputs: ['icon', 'maxWithQuery', 'maxWithoutQuery']
|
|
4179
|
+
})
|
|
4180
|
+
export class AtomicSearchBoxRecentQueries {
|
|
4181
|
+
protected readonly el: HTMLElement;
|
|
4182
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4183
|
+
c.detach();
|
|
4184
|
+
this.el = el.nativeElement;
|
|
4185
|
+
|
|
4186
|
+
}
|
|
4187
|
+
}
|
|
4188
|
+
|
|
4189
|
+
export declare interface AtomicSearchBoxRecentQueries extends LitAtomicSearchBoxRecentQueries {
|
|
4190
|
+
|
|
4191
|
+
}
|
|
4192
|
+
|
|
4193
|
+
@ProxyCmp({
|
|
4194
|
+
inputs: ['numberOfQueries', 'redirectionUrl', 'suggestionTimeout', 'suggestionDelay', 'disableSearch', 'minimumQueryLength', 'clearFilters', 'enableQuerySyntax'],
|
|
4195
|
+
methods: ['initialize'],
|
|
4196
|
+
defineCustomElementFn: () => {customElements.get('atomic-search-box') || customElements.define('atomic-search-box', LitAtomicSearchBox);}
|
|
4197
|
+
})
|
|
4198
|
+
@Component({
|
|
4199
|
+
selector: 'atomic-search-box',
|
|
4200
|
+
standalone: false,
|
|
4201
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4202
|
+
template: '<ng-content></ng-content>',
|
|
4203
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4204
|
+
inputs: ['numberOfQueries', 'redirectionUrl', 'suggestionTimeout', 'suggestionDelay', 'disableSearch', 'minimumQueryLength', 'clearFilters', 'enableQuerySyntax']
|
|
4205
|
+
})
|
|
4206
|
+
export class AtomicSearchBox {
|
|
4207
|
+
protected readonly el: HTMLElement;
|
|
4208
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4209
|
+
c.detach();
|
|
4210
|
+
this.el = el.nativeElement;
|
|
4211
|
+
proxyOutputs(this, this.el, ['redirect']);
|
|
4212
|
+
}
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
export declare interface AtomicSearchBox extends LitAtomicSearchBox {
|
|
4216
|
+
'redirect': EventEmitter<CustomEvent<any>>;
|
|
4217
|
+
}
|
|
4218
|
+
|
|
4219
|
+
@ProxyCmp({
|
|
4220
|
+
inputs: ['fieldsToInclude', 'pipeline', 'searchHub', 'analytics', 'timezone', 'logLevel', 'language', 'reflectStateInUrl', 'disableStateReflectionInUrl', 'scrollContainer', 'languageAssetsPath', 'iconAssetsPath', 'enableRelevanceInspector', 'disableRelevanceInspector'],
|
|
4221
|
+
methods: ['scrollToTop', 'closeRelevanceInspector', 'initialize', 'initializeWithSearchEngine', 'executeFirstSearch', 'updateSearchConfiguration', 'registerFieldsToInclude', 'updateSearchHub', 'updatePipeline', 'toggleAnalytics', 'updateLanguage', 'updateIconAssetsPath'],
|
|
4222
|
+
defineCustomElementFn: () => {customElements.get('atomic-search-interface') || customElements.define('atomic-search-interface', LitAtomicSearchInterface);}
|
|
4223
|
+
})
|
|
4224
|
+
@Component({
|
|
4225
|
+
selector: 'atomic-search-interface',
|
|
4226
|
+
standalone: false,
|
|
4227
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4228
|
+
template: '<ng-content></ng-content>',
|
|
4229
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4230
|
+
inputs: ['fieldsToInclude', 'pipeline', 'searchHub', 'analytics', 'timezone', 'logLevel', 'language', 'reflectStateInUrl', 'disableStateReflectionInUrl', 'scrollContainer', 'languageAssetsPath', 'iconAssetsPath', 'enableRelevanceInspector', 'disableRelevanceInspector']
|
|
4231
|
+
})
|
|
4232
|
+
export class AtomicSearchInterface {
|
|
4233
|
+
protected readonly el: HTMLElement;
|
|
4234
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4235
|
+
c.detach();
|
|
4236
|
+
this.el = el.nativeElement;
|
|
4237
|
+
|
|
4238
|
+
}
|
|
4239
|
+
}
|
|
4240
|
+
|
|
4241
|
+
export declare interface AtomicSearchInterface extends LitAtomicSearchInterface {
|
|
4242
|
+
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
@ProxyCmp({
|
|
4246
|
+
inputs: ['mobileBreakpoint'],
|
|
4247
|
+
methods: ['onMobileBreakpointChange'],
|
|
4248
|
+
defineCustomElementFn: () => {customElements.get('atomic-search-layout') || customElements.define('atomic-search-layout', LitAtomicSearchLayout);}
|
|
4249
|
+
})
|
|
4250
|
+
@Component({
|
|
4251
|
+
selector: 'atomic-search-layout',
|
|
4252
|
+
standalone: false,
|
|
4253
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4254
|
+
template: '<ng-content></ng-content>',
|
|
4255
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4256
|
+
inputs: ['mobileBreakpoint']
|
|
4257
|
+
})
|
|
4258
|
+
export class AtomicSearchLayout {
|
|
4259
|
+
protected readonly el: HTMLElement;
|
|
4260
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4261
|
+
c.detach();
|
|
4262
|
+
this.el = el.nativeElement;
|
|
4263
|
+
proxyOutputs(this, this.el, ['atomic-layout-breakpoint-change']);
|
|
4264
|
+
}
|
|
4265
|
+
}
|
|
4266
|
+
|
|
4267
|
+
export declare interface AtomicSearchLayout extends LitAtomicSearchLayout {
|
|
4268
|
+
'atomic-layout-breakpoint-change': EventEmitter<CustomEvent<any>>;
|
|
4269
|
+
}
|
|
4270
|
+
|
|
4271
|
+
@ProxyCmp({
|
|
4272
|
+
inputs: [],
|
|
4273
|
+
methods: ['initialize'],
|
|
4274
|
+
defineCustomElementFn: () => {customElements.get('atomic-segmented-facet-scrollable') || customElements.define('atomic-segmented-facet-scrollable', LitAtomicSegmentedFacetScrollable);}
|
|
4275
|
+
})
|
|
4276
|
+
@Component({
|
|
4277
|
+
selector: 'atomic-segmented-facet-scrollable',
|
|
4278
|
+
standalone: false,
|
|
4279
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4280
|
+
template: '<ng-content></ng-content>',
|
|
4281
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4282
|
+
inputs: []
|
|
4283
|
+
})
|
|
4284
|
+
export class AtomicSegmentedFacetScrollable {
|
|
4285
|
+
protected readonly el: HTMLElement;
|
|
4286
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4287
|
+
c.detach();
|
|
4288
|
+
this.el = el.nativeElement;
|
|
4289
|
+
|
|
4290
|
+
}
|
|
4291
|
+
}
|
|
4292
|
+
|
|
4293
|
+
export declare interface AtomicSegmentedFacetScrollable extends LitAtomicSegmentedFacetScrollable {
|
|
4294
|
+
|
|
4295
|
+
}
|
|
4296
|
+
|
|
4297
|
+
@ProxyCmp({
|
|
4298
|
+
inputs: ['facetId', 'field', 'label', 'tabsIncluded', 'tabsExcluded', 'filterFacetCount', 'injectionDepth', 'numberOfValues', 'sortCriteria', 'allowedValues', 'customSort', 'dependsOn'],
|
|
4299
|
+
methods: [],
|
|
4300
|
+
defineCustomElementFn: () => {customElements.get('atomic-segmented-facet') || customElements.define('atomic-segmented-facet', LitAtomicSegmentedFacet);}
|
|
4301
|
+
})
|
|
4302
|
+
@Component({
|
|
4303
|
+
selector: 'atomic-segmented-facet',
|
|
4304
|
+
standalone: false,
|
|
4305
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4306
|
+
template: '<ng-content></ng-content>',
|
|
4307
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4308
|
+
inputs: ['facetId', 'field', 'label', 'tabsIncluded', 'tabsExcluded', 'filterFacetCount', 'injectionDepth', 'numberOfValues', 'sortCriteria', 'allowedValues', 'customSort', 'dependsOn']
|
|
4309
|
+
})
|
|
4310
|
+
export class AtomicSegmentedFacet {
|
|
4311
|
+
protected readonly el: HTMLElement;
|
|
4312
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4313
|
+
c.detach();
|
|
4314
|
+
this.el = el.nativeElement;
|
|
4315
|
+
|
|
4316
|
+
}
|
|
4317
|
+
}
|
|
4318
|
+
|
|
4319
|
+
export declare interface AtomicSegmentedFacet extends LitAtomicSegmentedFacet {
|
|
4320
|
+
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
@ProxyCmp({
|
|
4324
|
+
inputs: ['isOpen'],
|
|
4325
|
+
methods: ['initialize'],
|
|
4326
|
+
defineCustomElementFn: () => {customElements.get('atomic-smart-snippet-feedback-modal') || customElements.define('atomic-smart-snippet-feedback-modal', LitAtomicSmartSnippetFeedbackModal);}
|
|
4327
|
+
})
|
|
4328
|
+
@Component({
|
|
4329
|
+
selector: 'atomic-smart-snippet-feedback-modal',
|
|
4330
|
+
standalone: false,
|
|
4331
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4332
|
+
template: '<ng-content></ng-content>',
|
|
4333
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4334
|
+
inputs: ['isOpen']
|
|
4335
|
+
})
|
|
4336
|
+
export class AtomicSmartSnippetFeedbackModal {
|
|
4337
|
+
protected readonly el: HTMLElement;
|
|
4338
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4339
|
+
c.detach();
|
|
4340
|
+
this.el = el.nativeElement;
|
|
4341
|
+
proxyOutputs(this, this.el, ['feedbackSent']);
|
|
4342
|
+
}
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4345
|
+
export declare interface AtomicSmartSnippetFeedbackModal extends LitAtomicSmartSnippetFeedbackModal {
|
|
4346
|
+
'feedbackSent': EventEmitter<CustomEvent<any>>;
|
|
4347
|
+
}
|
|
4348
|
+
|
|
4349
|
+
@ProxyCmp({
|
|
4350
|
+
inputs: ['headingLevel', 'snippetStyle'],
|
|
4351
|
+
methods: ['initialize'],
|
|
4352
|
+
defineCustomElementFn: () => {customElements.get('atomic-smart-snippet-suggestions') || customElements.define('atomic-smart-snippet-suggestions', LitAtomicSmartSnippetSuggestions);}
|
|
4353
|
+
})
|
|
4354
|
+
@Component({
|
|
4355
|
+
selector: 'atomic-smart-snippet-suggestions',
|
|
4356
|
+
standalone: false,
|
|
4357
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4358
|
+
template: '<ng-content></ng-content>',
|
|
4359
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4360
|
+
inputs: ['headingLevel', 'snippetStyle']
|
|
4361
|
+
})
|
|
4362
|
+
export class AtomicSmartSnippetSuggestions {
|
|
4363
|
+
protected readonly el: HTMLElement;
|
|
4364
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4365
|
+
c.detach();
|
|
4366
|
+
this.el = el.nativeElement;
|
|
4367
|
+
|
|
4368
|
+
}
|
|
4369
|
+
}
|
|
4370
|
+
|
|
4371
|
+
export declare interface AtomicSmartSnippetSuggestions extends LitAtomicSmartSnippetSuggestions {
|
|
4372
|
+
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
@ProxyCmp({
|
|
4376
|
+
inputs: ['headingLevel', 'maximumHeight', 'collapsedHeight', 'snippetStyle', 'tabsIncluded', 'tabsExcluded', 'snippetMaximumHeight', 'snippetCollapsedHeight'],
|
|
4377
|
+
methods: ['initialize'],
|
|
4378
|
+
defineCustomElementFn: () => {customElements.get('atomic-smart-snippet') || customElements.define('atomic-smart-snippet', LitAtomicSmartSnippet);}
|
|
4379
|
+
})
|
|
4380
|
+
@Component({
|
|
4381
|
+
selector: 'atomic-smart-snippet',
|
|
4382
|
+
standalone: false,
|
|
4383
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4384
|
+
template: '<ng-content></ng-content>',
|
|
4385
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4386
|
+
inputs: ['headingLevel', 'maximumHeight', 'collapsedHeight', 'snippetStyle', 'tabsIncluded', 'tabsExcluded', 'snippetMaximumHeight', 'snippetCollapsedHeight']
|
|
4387
|
+
})
|
|
4388
|
+
export class AtomicSmartSnippet {
|
|
4389
|
+
protected readonly el: HTMLElement;
|
|
4390
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4391
|
+
c.detach();
|
|
4392
|
+
this.el = el.nativeElement;
|
|
4393
|
+
|
|
4394
|
+
}
|
|
4395
|
+
}
|
|
4396
|
+
|
|
4397
|
+
export declare interface AtomicSmartSnippet extends LitAtomicSmartSnippet {
|
|
4398
|
+
|
|
4399
|
+
}
|
|
4400
|
+
|
|
4401
|
+
@ProxyCmp({
|
|
4402
|
+
inputs: [],
|
|
4403
|
+
methods: ['initialize'],
|
|
4404
|
+
defineCustomElementFn: () => {customElements.get('atomic-sort-dropdown') || customElements.define('atomic-sort-dropdown', LitAtomicSortDropdown);}
|
|
4405
|
+
})
|
|
4406
|
+
@Component({
|
|
4407
|
+
selector: 'atomic-sort-dropdown',
|
|
4408
|
+
standalone: false,
|
|
4409
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4410
|
+
template: '<ng-content></ng-content>',
|
|
4411
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4412
|
+
inputs: []
|
|
4413
|
+
})
|
|
4414
|
+
export class AtomicSortDropdown {
|
|
4415
|
+
protected readonly el: HTMLElement;
|
|
4416
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4417
|
+
c.detach();
|
|
4418
|
+
this.el = el.nativeElement;
|
|
4419
|
+
|
|
4420
|
+
}
|
|
4421
|
+
}
|
|
4422
|
+
|
|
4423
|
+
export declare interface AtomicSortDropdown extends LitAtomicSortDropdown {
|
|
4424
|
+
|
|
4425
|
+
}
|
|
4426
|
+
|
|
4427
|
+
@ProxyCmp({
|
|
4428
|
+
inputs: ['label', 'expression', 'tabsIncluded', 'tabsExcluded'],
|
|
4429
|
+
methods: [],
|
|
4430
|
+
defineCustomElementFn: () => {customElements.get('atomic-sort-expression') || customElements.define('atomic-sort-expression', LitAtomicSortExpression);}
|
|
4431
|
+
})
|
|
4432
|
+
@Component({
|
|
4433
|
+
selector: 'atomic-sort-expression',
|
|
4434
|
+
standalone: false,
|
|
4435
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4436
|
+
template: '<ng-content></ng-content>',
|
|
4437
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4438
|
+
inputs: ['label', 'expression', 'tabsIncluded', 'tabsExcluded']
|
|
4439
|
+
})
|
|
4440
|
+
export class AtomicSortExpression {
|
|
4441
|
+
protected readonly el: HTMLElement;
|
|
4442
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4443
|
+
c.detach();
|
|
4444
|
+
this.el = el.nativeElement;
|
|
4445
|
+
|
|
4446
|
+
}
|
|
4447
|
+
}
|
|
4448
|
+
|
|
4449
|
+
export declare interface AtomicSortExpression extends LitAtomicSortExpression {
|
|
4450
|
+
|
|
4451
|
+
}
|
|
4452
|
+
|
|
4453
|
+
@ProxyCmp({
|
|
4454
|
+
inputs: ['clearFiltersOnTabChange'],
|
|
4455
|
+
methods: ['initialize'],
|
|
4456
|
+
defineCustomElementFn: () => {customElements.get('atomic-tab-manager') || customElements.define('atomic-tab-manager', LitAtomicTabManager);}
|
|
4457
|
+
})
|
|
4458
|
+
@Component({
|
|
4459
|
+
selector: 'atomic-tab-manager',
|
|
4460
|
+
standalone: false,
|
|
4461
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4462
|
+
template: '<ng-content></ng-content>',
|
|
4463
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4464
|
+
inputs: ['clearFiltersOnTabChange']
|
|
4465
|
+
})
|
|
4466
|
+
export class AtomicTabManager {
|
|
4467
|
+
protected readonly el: HTMLElement;
|
|
4468
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4469
|
+
c.detach();
|
|
4470
|
+
this.el = el.nativeElement;
|
|
4471
|
+
|
|
4472
|
+
}
|
|
4473
|
+
}
|
|
4474
|
+
|
|
4475
|
+
export declare interface AtomicTabManager extends LitAtomicTabManager {
|
|
4476
|
+
|
|
4477
|
+
}
|
|
4478
|
+
|
|
4479
|
+
@ProxyCmp({
|
|
4480
|
+
inputs: ['label', 'name', 'expression'],
|
|
4481
|
+
methods: [],
|
|
4482
|
+
defineCustomElementFn: () => {customElements.get('atomic-tab') || customElements.define('atomic-tab', LitAtomicTab);}
|
|
4483
|
+
})
|
|
4484
|
+
@Component({
|
|
4485
|
+
selector: 'atomic-tab',
|
|
4486
|
+
standalone: false,
|
|
4487
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4488
|
+
template: '<ng-content></ng-content>',
|
|
4489
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4490
|
+
inputs: ['label', 'name', 'expression']
|
|
4491
|
+
})
|
|
4492
|
+
export class AtomicTab {
|
|
4493
|
+
protected readonly el: HTMLElement;
|
|
4494
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4495
|
+
c.detach();
|
|
4496
|
+
this.el = el.nativeElement;
|
|
4497
|
+
|
|
4498
|
+
}
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
export declare interface AtomicTab extends LitAtomicTab {
|
|
4502
|
+
|
|
4503
|
+
}
|
|
4504
|
+
|
|
4505
|
+
@ProxyCmp({
|
|
4506
|
+
inputs: ['label'],
|
|
4507
|
+
methods: [],
|
|
4508
|
+
defineCustomElementFn: () => {customElements.get('atomic-table-element') || customElements.define('atomic-table-element', LitAtomicTableElement);}
|
|
4509
|
+
})
|
|
4510
|
+
@Component({
|
|
4511
|
+
selector: 'atomic-table-element',
|
|
4512
|
+
standalone: false,
|
|
4513
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4514
|
+
template: '<ng-content></ng-content>',
|
|
4515
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4516
|
+
inputs: ['label']
|
|
4517
|
+
})
|
|
4518
|
+
export class AtomicTableElement {
|
|
4519
|
+
protected readonly el: HTMLElement;
|
|
4520
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4521
|
+
c.detach();
|
|
4522
|
+
this.el = el.nativeElement;
|
|
4523
|
+
|
|
4524
|
+
}
|
|
4525
|
+
}
|
|
4526
|
+
|
|
4527
|
+
export declare interface AtomicTableElement extends LitAtomicTableElement {
|
|
4528
|
+
|
|
4529
|
+
}
|
|
4530
|
+
|
|
4531
|
+
@ProxyCmp({
|
|
4532
|
+
inputs: ['value', 'count'],
|
|
4533
|
+
methods: ['initialize'],
|
|
4534
|
+
defineCustomElementFn: () => {customElements.get('atomic-text') || customElements.define('atomic-text', LitAtomicText);}
|
|
4535
|
+
})
|
|
4536
|
+
@Component({
|
|
4537
|
+
selector: 'atomic-text',
|
|
4538
|
+
standalone: false,
|
|
4539
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4540
|
+
template: '<ng-content></ng-content>',
|
|
4541
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4542
|
+
inputs: ['value', 'count']
|
|
4543
|
+
})
|
|
4544
|
+
export class AtomicText {
|
|
4545
|
+
protected readonly el: HTMLElement;
|
|
4546
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4547
|
+
c.detach();
|
|
4548
|
+
this.el = el.nativeElement;
|
|
4549
|
+
|
|
4550
|
+
}
|
|
4551
|
+
}
|
|
4552
|
+
|
|
4553
|
+
export declare interface AtomicText extends LitAtomicText {
|
|
4554
|
+
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4557
|
+
@ProxyCmp({
|
|
4558
|
+
inputs: ['label', 'field', 'tabsIncluded', 'tabsExcluded', 'withDatePicker', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'min', 'max', 'sortCriteria', 'facetId', 'dependsOn'],
|
|
4559
|
+
methods: ['initialize'],
|
|
4560
|
+
defineCustomElementFn: () => {customElements.get('atomic-timeframe-facet') || customElements.define('atomic-timeframe-facet', LitAtomicTimeframeFacet);}
|
|
4561
|
+
})
|
|
4562
|
+
@Component({
|
|
4563
|
+
selector: 'atomic-timeframe-facet',
|
|
4564
|
+
standalone: false,
|
|
4565
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4566
|
+
template: '<ng-content></ng-content>',
|
|
4567
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
4568
|
+
inputs: ['label', 'field', 'tabsIncluded', 'tabsExcluded', 'withDatePicker', 'isCollapsed', 'headingLevel', 'filterFacetCount', 'injectionDepth', 'min', 'max', 'sortCriteria', 'facetId', 'dependsOn']
|
|
4569
|
+
})
|
|
4570
|
+
export class AtomicTimeframeFacet {
|
|
4571
|
+
protected readonly el: HTMLElement;
|
|
4572
|
+
constructor(c: ChangeDetectorRef, el: ElementRef, protected z: NgZone) {
|
|
4573
|
+
c.detach();
|
|
4574
|
+
this.el = el.nativeElement;
|
|
4575
|
+
|
|
4576
|
+
}
|
|
4577
|
+
}
|
|
4578
|
+
|
|
4579
|
+
export declare interface AtomicTimeframeFacet extends LitAtomicTimeframeFacet {
|
|
4580
|
+
|
|
4581
|
+
}
|
|
4582
|
+
|
|
4583
|
+
|
|
4584
|
+
import {
|
|
4585
|
+
AtomicAriaLive as LitAtomicAriaLive,
|
|
4586
|
+
AtomicAutomaticFacet as LitAtomicAutomaticFacet,
|
|
4587
|
+
AtomicAutomaticFacetGenerator as LitAtomicAutomaticFacetGenerator,
|
|
4588
|
+
AtomicBreadbox as LitAtomicBreadbox,
|
|
4589
|
+
AtomicCategoryFacet as LitAtomicCategoryFacet,
|
|
4590
|
+
AtomicColorFacet as LitAtomicColorFacet,
|
|
4591
|
+
AtomicCommerceBreadbox as LitAtomicCommerceBreadbox,
|
|
4592
|
+
AtomicCommerceCategoryFacet as LitAtomicCommerceCategoryFacet,
|
|
4593
|
+
AtomicCommerceDidYouMean as LitAtomicCommerceDidYouMean,
|
|
4594
|
+
AtomicCommerceFacet as LitAtomicCommerceFacet,
|
|
4595
|
+
AtomicCommerceFacets as LitAtomicCommerceFacets,
|
|
4596
|
+
AtomicCommerceInterface as LitAtomicCommerceInterface,
|
|
4597
|
+
AtomicCommerceLayout as LitAtomicCommerceLayout,
|
|
4598
|
+
AtomicCommerceLoadMoreProducts as LitAtomicCommerceLoadMoreProducts,
|
|
4599
|
+
AtomicCommerceNoProducts as LitAtomicCommerceNoProducts,
|
|
4600
|
+
AtomicCommerceNumericFacet as LitAtomicCommerceNumericFacet,
|
|
4601
|
+
AtomicCommercePager as LitAtomicCommercePager,
|
|
4602
|
+
AtomicCommerceProductList as LitAtomicCommerceProductList,
|
|
4603
|
+
AtomicCommerceProductsPerPage as LitAtomicCommerceProductsPerPage,
|
|
4604
|
+
AtomicCommerceQueryError as LitAtomicCommerceQueryError,
|
|
4605
|
+
AtomicCommerceQuerySummary as LitAtomicCommerceQuerySummary,
|
|
4606
|
+
AtomicCommerceRecommendationInterface as LitAtomicCommerceRecommendationInterface,
|
|
4607
|
+
AtomicCommerceRecommendationList as LitAtomicCommerceRecommendationList,
|
|
4608
|
+
AtomicCommerceRefineModal as LitAtomicCommerceRefineModal,
|
|
4609
|
+
AtomicCommerceRefineToggle as LitAtomicCommerceRefineToggle,
|
|
4610
|
+
AtomicCommerceSearchBox as LitAtomicCommerceSearchBox,
|
|
4611
|
+
AtomicCommerceSearchBoxInstantProducts as LitAtomicCommerceSearchBoxInstantProducts,
|
|
4612
|
+
AtomicCommerceSearchBoxQuerySuggestions as LitAtomicCommerceSearchBoxQuerySuggestions,
|
|
4613
|
+
AtomicCommerceSearchBoxRecentQueries as LitAtomicCommerceSearchBoxRecentQueries,
|
|
4614
|
+
AtomicCommerceSortDropdown as LitAtomicCommerceSortDropdown,
|
|
4615
|
+
AtomicCommerceText as LitAtomicCommerceText,
|
|
4616
|
+
AtomicCommerceTimeframeFacet as LitAtomicCommerceTimeframeFacet,
|
|
4617
|
+
AtomicComponentError as LitAtomicComponentError,
|
|
4618
|
+
AtomicDidYouMean as LitAtomicDidYouMean,
|
|
4619
|
+
AtomicExternal as LitAtomicExternal,
|
|
4620
|
+
AtomicFacet as LitAtomicFacet,
|
|
4621
|
+
AtomicFacetManager as LitAtomicFacetManager,
|
|
4622
|
+
AtomicFieldCondition as LitAtomicFieldCondition,
|
|
4623
|
+
AtomicFocusTrap as LitAtomicFocusTrap,
|
|
4624
|
+
AtomicFoldedResultList as LitAtomicFoldedResultList,
|
|
4625
|
+
AtomicFormatCurrency as LitAtomicFormatCurrency,
|
|
4626
|
+
AtomicFormatNumber as LitAtomicFormatNumber,
|
|
4627
|
+
AtomicFormatUnit as LitAtomicFormatUnit,
|
|
4628
|
+
AtomicGeneratedAnswer as LitAtomicGeneratedAnswer,
|
|
4629
|
+
AtomicGeneratedAnswerFeedbackModal as LitAtomicGeneratedAnswerFeedbackModal,
|
|
4630
|
+
AtomicHtml as LitAtomicHtml,
|
|
4631
|
+
AtomicIcon as LitAtomicIcon,
|
|
4632
|
+
AtomicInsightEditToggle as LitAtomicInsightEditToggle,
|
|
4633
|
+
AtomicInsightFacet as LitAtomicInsightFacet,
|
|
4634
|
+
AtomicInsightFoldedResultList as LitAtomicInsightFoldedResultList,
|
|
4635
|
+
AtomicInsightFullSearchButton as LitAtomicInsightFullSearchButton,
|
|
4636
|
+
AtomicInsightGenerateAnswerButton as LitAtomicInsightGenerateAnswerButton,
|
|
4637
|
+
AtomicInsightGeneratedAnswer as LitAtomicInsightGeneratedAnswer,
|
|
4638
|
+
AtomicInsightInterface as LitAtomicInsightInterface,
|
|
4639
|
+
AtomicInsightLayout as LitAtomicInsightLayout,
|
|
4640
|
+
AtomicInsightNoResults as LitAtomicInsightNoResults,
|
|
4641
|
+
AtomicInsightNumericFacet as LitAtomicInsightNumericFacet,
|
|
4642
|
+
AtomicInsightPager as LitAtomicInsightPager,
|
|
4643
|
+
AtomicInsightQueryError as LitAtomicInsightQueryError,
|
|
4644
|
+
AtomicInsightQuerySummary as LitAtomicInsightQuerySummary,
|
|
4645
|
+
AtomicInsightRefineModal as LitAtomicInsightRefineModal,
|
|
4646
|
+
AtomicInsightRefineToggle as LitAtomicInsightRefineToggle,
|
|
4647
|
+
AtomicInsightResult as LitAtomicInsightResult,
|
|
4648
|
+
AtomicInsightResultAction as LitAtomicInsightResultAction,
|
|
4649
|
+
AtomicInsightResultActionBar as LitAtomicInsightResultActionBar,
|
|
4650
|
+
AtomicInsightResultAttachToCaseAction as LitAtomicInsightResultAttachToCaseAction,
|
|
4651
|
+
AtomicInsightResultAttachToCaseIndicator as LitAtomicInsightResultAttachToCaseIndicator,
|
|
4652
|
+
AtomicInsightResultChildren as LitAtomicInsightResultChildren,
|
|
4653
|
+
AtomicInsightResultChildrenTemplate as LitAtomicInsightResultChildrenTemplate,
|
|
4654
|
+
AtomicInsightResultList as LitAtomicInsightResultList,
|
|
4655
|
+
AtomicInsightResultQuickviewAction as LitAtomicInsightResultQuickviewAction,
|
|
4656
|
+
AtomicInsightResultTemplate as LitAtomicInsightResultTemplate,
|
|
4657
|
+
AtomicInsightSearchBox as LitAtomicInsightSearchBox,
|
|
4658
|
+
AtomicInsightSmartSnippet as LitAtomicInsightSmartSnippet,
|
|
4659
|
+
AtomicInsightSmartSnippetSuggestions as LitAtomicInsightSmartSnippetSuggestions,
|
|
4660
|
+
AtomicInsightTimeframeFacet as LitAtomicInsightTimeframeFacet,
|
|
4661
|
+
AtomicInsightUserActionsTimeline as LitAtomicInsightUserActionsTimeline,
|
|
4662
|
+
AtomicInsightUserActionsToggle as LitAtomicInsightUserActionsToggle,
|
|
4663
|
+
AtomicIpxButton as LitAtomicIpxButton,
|
|
4664
|
+
AtomicIpxEmbedded as LitAtomicIpxEmbedded,
|
|
4665
|
+
AtomicIpxModal as LitAtomicIpxModal,
|
|
4666
|
+
AtomicIpxRecsList as LitAtomicIpxRecsList,
|
|
4667
|
+
AtomicIpxRefineModal as LitAtomicIpxRefineModal,
|
|
4668
|
+
AtomicIpxRefineToggle as LitAtomicIpxRefineToggle,
|
|
4669
|
+
AtomicIpxResultLink as LitAtomicIpxResultLink,
|
|
4670
|
+
AtomicLayoutSection as LitAtomicLayoutSection,
|
|
4671
|
+
AtomicLoadMoreResults as LitAtomicLoadMoreResults,
|
|
4672
|
+
AtomicNoResults as LitAtomicNoResults,
|
|
4673
|
+
AtomicNotifications as LitAtomicNotifications,
|
|
4674
|
+
AtomicNumericFacet as LitAtomicNumericFacet,
|
|
4675
|
+
AtomicNumericRange as LitAtomicNumericRange,
|
|
4676
|
+
AtomicPager as LitAtomicPager,
|
|
4677
|
+
AtomicPopover as LitAtomicPopover,
|
|
4678
|
+
AtomicProduct as LitAtomicProduct,
|
|
4679
|
+
AtomicProductChildren as LitAtomicProductChildren,
|
|
4680
|
+
AtomicProductDescription as LitAtomicProductDescription,
|
|
4681
|
+
AtomicProductExcerpt as LitAtomicProductExcerpt,
|
|
4682
|
+
AtomicProductFieldCondition as LitAtomicProductFieldCondition,
|
|
4683
|
+
AtomicProductImage as LitAtomicProductImage,
|
|
4684
|
+
AtomicProductLink as LitAtomicProductLink,
|
|
4685
|
+
AtomicProductMultiValueText as LitAtomicProductMultiValueText,
|
|
4686
|
+
AtomicProductNumericFieldValue as LitAtomicProductNumericFieldValue,
|
|
4687
|
+
AtomicProductPrice as LitAtomicProductPrice,
|
|
4688
|
+
AtomicProductRating as LitAtomicProductRating,
|
|
4689
|
+
AtomicProductSectionActions as LitAtomicProductSectionActions,
|
|
4690
|
+
AtomicProductSectionBadges as LitAtomicProductSectionBadges,
|
|
4691
|
+
AtomicProductSectionBottomMetadata as LitAtomicProductSectionBottomMetadata,
|
|
4692
|
+
AtomicProductSectionChildren as LitAtomicProductSectionChildren,
|
|
4693
|
+
AtomicProductSectionDescription as LitAtomicProductSectionDescription,
|
|
4694
|
+
AtomicProductSectionEmphasized as LitAtomicProductSectionEmphasized,
|
|
4695
|
+
AtomicProductSectionMetadata as LitAtomicProductSectionMetadata,
|
|
4696
|
+
AtomicProductSectionName as LitAtomicProductSectionName,
|
|
4697
|
+
AtomicProductSectionVisual as LitAtomicProductSectionVisual,
|
|
4698
|
+
AtomicProductTemplate as LitAtomicProductTemplate,
|
|
4699
|
+
AtomicProductText as LitAtomicProductText,
|
|
4700
|
+
AtomicQueryError as LitAtomicQueryError,
|
|
4701
|
+
AtomicQuerySummary as LitAtomicQuerySummary,
|
|
4702
|
+
AtomicQuickview as LitAtomicQuickview,
|
|
4703
|
+
AtomicQuickviewModal as LitAtomicQuickviewModal,
|
|
4704
|
+
AtomicRatingFacet as LitAtomicRatingFacet,
|
|
4705
|
+
AtomicRatingRangeFacet as LitAtomicRatingRangeFacet,
|
|
4706
|
+
AtomicRecsError as LitAtomicRecsError,
|
|
4707
|
+
AtomicRecsInterface as LitAtomicRecsInterface,
|
|
4708
|
+
AtomicRecsList as LitAtomicRecsList,
|
|
4709
|
+
AtomicRecsResult as LitAtomicRecsResult,
|
|
4710
|
+
AtomicRecsResultTemplate as LitAtomicRecsResultTemplate,
|
|
4711
|
+
AtomicRefineModal as LitAtomicRefineModal,
|
|
4712
|
+
AtomicRefineToggle as LitAtomicRefineToggle,
|
|
4713
|
+
AtomicResult as LitAtomicResult,
|
|
4714
|
+
AtomicResultBadge as LitAtomicResultBadge,
|
|
4715
|
+
AtomicResultChildren as LitAtomicResultChildren,
|
|
4716
|
+
AtomicResultChildrenTemplate as LitAtomicResultChildrenTemplate,
|
|
4717
|
+
AtomicResultDate as LitAtomicResultDate,
|
|
4718
|
+
AtomicResultFieldsList as LitAtomicResultFieldsList,
|
|
4719
|
+
AtomicResultHtml as LitAtomicResultHtml,
|
|
4720
|
+
AtomicResultIcon as LitAtomicResultIcon,
|
|
4721
|
+
AtomicResultImage as LitAtomicResultImage,
|
|
4722
|
+
AtomicResultLink as LitAtomicResultLink,
|
|
4723
|
+
AtomicResultList as LitAtomicResultList,
|
|
4724
|
+
AtomicResultLocalizedText as LitAtomicResultLocalizedText,
|
|
4725
|
+
AtomicResultMultiValueText as LitAtomicResultMultiValueText,
|
|
4726
|
+
AtomicResultNumber as LitAtomicResultNumber,
|
|
4727
|
+
AtomicResultPrintableUri as LitAtomicResultPrintableUri,
|
|
4728
|
+
AtomicResultRating as LitAtomicResultRating,
|
|
4729
|
+
AtomicResultSectionActions as LitAtomicResultSectionActions,
|
|
4730
|
+
AtomicResultSectionBadges as LitAtomicResultSectionBadges,
|
|
4731
|
+
AtomicResultSectionBottomMetadata as LitAtomicResultSectionBottomMetadata,
|
|
4732
|
+
AtomicResultSectionChildren as LitAtomicResultSectionChildren,
|
|
4733
|
+
AtomicResultSectionEmphasized as LitAtomicResultSectionEmphasized,
|
|
4734
|
+
AtomicResultSectionExcerpt as LitAtomicResultSectionExcerpt,
|
|
4735
|
+
AtomicResultSectionTitle as LitAtomicResultSectionTitle,
|
|
4736
|
+
AtomicResultSectionTitleMetadata as LitAtomicResultSectionTitleMetadata,
|
|
4737
|
+
AtomicResultSectionVisual as LitAtomicResultSectionVisual,
|
|
4738
|
+
AtomicResultTemplate as LitAtomicResultTemplate,
|
|
4739
|
+
AtomicResultText as LitAtomicResultText,
|
|
4740
|
+
AtomicResultTimespan as LitAtomicResultTimespan,
|
|
4741
|
+
AtomicResultsPerPage as LitAtomicResultsPerPage,
|
|
4742
|
+
AtomicSearchBox as LitAtomicSearchBox,
|
|
4743
|
+
AtomicSearchBoxInstantResults as LitAtomicSearchBoxInstantResults,
|
|
4744
|
+
AtomicSearchBoxQuerySuggestions as LitAtomicSearchBoxQuerySuggestions,
|
|
4745
|
+
AtomicSearchBoxRecentQueries as LitAtomicSearchBoxRecentQueries,
|
|
4746
|
+
AtomicSearchInterface as LitAtomicSearchInterface,
|
|
4747
|
+
AtomicSearchLayout as LitAtomicSearchLayout,
|
|
4748
|
+
AtomicSegmentedFacet as LitAtomicSegmentedFacet,
|
|
4749
|
+
AtomicSegmentedFacetScrollable as LitAtomicSegmentedFacetScrollable,
|
|
4750
|
+
AtomicSmartSnippet as LitAtomicSmartSnippet,
|
|
4751
|
+
AtomicSmartSnippetFeedbackModal as LitAtomicSmartSnippetFeedbackModal,
|
|
4752
|
+
AtomicSmartSnippetSuggestions as LitAtomicSmartSnippetSuggestions,
|
|
4753
|
+
AtomicSortDropdown as LitAtomicSortDropdown,
|
|
4754
|
+
AtomicSortExpression as LitAtomicSortExpression,
|
|
4755
|
+
AtomicTab as LitAtomicTab,
|
|
4756
|
+
AtomicTabManager as LitAtomicTabManager,
|
|
4757
|
+
AtomicTableElement as LitAtomicTableElement,
|
|
4758
|
+
AtomicText as LitAtomicText,
|
|
4759
|
+
AtomicTimeframe as LitAtomicTimeframe,
|
|
4760
|
+
AtomicTimeframeFacet as LitAtomicTimeframeFacet
|
|
4761
|
+
} from '@coveo/atomic/components';
|