@coveo/atomic-angular 3.10.10 → 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
|
@@ -1036,7 +1036,7 @@ declare class AtomicGeneratedAnswer {
|
|
|
1036
1036
|
protected readonly el: HTMLElement;
|
|
1037
1037
|
constructor(c: ChangeDetectorRef, el: ElementRef, z: NgZone);
|
|
1038
1038
|
static ɵfac: i0.ɵɵFactoryDeclaration<AtomicGeneratedAnswer, never>;
|
|
1039
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AtomicGeneratedAnswer, "atomic-generated-answer", never, { "withToggle": { "alias": "withToggle"; "required": false; }; "collapsible": { "alias": "collapsible"; "required": false; }; "maxCollapsedHeight": { "alias": "maxCollapsedHeight"; "required": false; }; "answerConfigurationId": { "alias": "answerConfigurationId"; "required": false; }; "fieldsToIncludeInCitations": { "alias": "fieldsToIncludeInCitations"; "required": false; }; "disableCitationAnchoring": { "alias": "disableCitationAnchoring"; "required": false; }; "tabsIncluded": { "alias": "tabsIncluded"; "required": false; }; "tabsExcluded": { "alias": "tabsExcluded"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1039
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AtomicGeneratedAnswer, "atomic-generated-answer", never, { "withToggle": { "alias": "withToggle"; "required": false; }; "collapsible": { "alias": "collapsible"; "required": false; }; "maxCollapsedHeight": { "alias": "maxCollapsedHeight"; "required": false; }; "answerConfigurationId": { "alias": "answerConfigurationId"; "required": false; }; "agentId": { "alias": "agentId"; "required": false; }; "fieldsToIncludeInCitations": { "alias": "fieldsToIncludeInCitations"; "required": false; }; "disableCitationAnchoring": { "alias": "disableCitationAnchoring"; "required": false; }; "tabsIncluded": { "alias": "tabsIncluded"; "required": false; }; "tabsExcluded": { "alias": "tabsExcluded"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1040
1040
|
}
|
|
1041
1041
|
declare interface AtomicGeneratedAnswer extends AtomicGeneratedAnswer$1 {
|
|
1042
1042
|
}
|
package/ng-package.json
ADDED
package/package.json
CHANGED
|
@@ -1,32 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coveo/atomic-angular",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.12",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/coveo/ui-kit"
|
|
7
7
|
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@coveo/atomic": "3.55.1"
|
|
10
|
+
},
|
|
8
11
|
"peerDependencies": {
|
|
9
12
|
"@angular/common": "14 - 20",
|
|
10
13
|
"@angular/core": "14 - 20",
|
|
11
|
-
"@coveo/headless": "3.
|
|
12
|
-
},
|
|
13
|
-
"dependencies": {
|
|
14
|
-
"@coveo/atomic": "3.54.0",
|
|
15
|
-
"tslib": "^2.3.0"
|
|
14
|
+
"@coveo/headless": "3.49.0"
|
|
16
15
|
},
|
|
17
16
|
"engines": {
|
|
18
17
|
"node": "^20.9.0 || ^22.11.0 || ^24.11.0"
|
|
19
|
-
}
|
|
20
|
-
"module": "fesm2022/coveo-atomic-angular.mjs",
|
|
21
|
-
"typings": "index.d.ts",
|
|
22
|
-
"exports": {
|
|
23
|
-
"./package.json": {
|
|
24
|
-
"default": "./package.json"
|
|
25
|
-
},
|
|
26
|
-
".": {
|
|
27
|
-
"types": "./index.d.ts",
|
|
28
|
-
"default": "./fesm2022/coveo-atomic-angular.mjs"
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
"sideEffects": false
|
|
18
|
+
}
|
|
32
19
|
}
|
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
|
|
2
|
+
import {CommonModule} from '@angular/common';
|
|
3
|
+
import {ModuleWithProviders, NgModule} from '@angular/core';
|
|
4
|
+
|
|
5
|
+
import {
|
|
6
|
+
AtomicAriaLive,
|
|
7
|
+
AtomicAutomaticFacet,
|
|
8
|
+
AtomicAutomaticFacetGenerator,
|
|
9
|
+
AtomicBreadbox,
|
|
10
|
+
AtomicCategoryFacet,
|
|
11
|
+
AtomicColorFacet,
|
|
12
|
+
AtomicCommerceBreadbox,
|
|
13
|
+
AtomicCommerceCategoryFacet,
|
|
14
|
+
AtomicCommerceDidYouMean,
|
|
15
|
+
AtomicCommerceFacet,
|
|
16
|
+
AtomicCommerceFacets,
|
|
17
|
+
AtomicCommerceInterface,
|
|
18
|
+
AtomicCommerceLayout,
|
|
19
|
+
AtomicCommerceLoadMoreProducts,
|
|
20
|
+
AtomicCommerceNoProducts,
|
|
21
|
+
AtomicCommerceNumericFacet,
|
|
22
|
+
AtomicCommercePager,
|
|
23
|
+
AtomicCommerceProductList,
|
|
24
|
+
AtomicCommerceProductsPerPage,
|
|
25
|
+
AtomicCommerceQueryError,
|
|
26
|
+
AtomicCommerceQuerySummary,
|
|
27
|
+
AtomicCommerceRecommendationInterface,
|
|
28
|
+
AtomicCommerceRecommendationList,
|
|
29
|
+
AtomicCommerceRefineModal,
|
|
30
|
+
AtomicCommerceRefineToggle,
|
|
31
|
+
AtomicCommerceSearchBox,
|
|
32
|
+
AtomicCommerceSearchBoxInstantProducts,
|
|
33
|
+
AtomicCommerceSearchBoxQuerySuggestions,
|
|
34
|
+
AtomicCommerceSearchBoxRecentQueries,
|
|
35
|
+
AtomicCommerceSortDropdown,
|
|
36
|
+
AtomicCommerceText,
|
|
37
|
+
AtomicCommerceTimeframeFacet,
|
|
38
|
+
AtomicComponentError,
|
|
39
|
+
AtomicDidYouMean,
|
|
40
|
+
AtomicExternal,
|
|
41
|
+
AtomicFacet,
|
|
42
|
+
AtomicFacetManager,
|
|
43
|
+
AtomicFieldCondition,
|
|
44
|
+
AtomicFocusTrap,
|
|
45
|
+
AtomicFoldedResultList,
|
|
46
|
+
AtomicFormatCurrency,
|
|
47
|
+
AtomicFormatNumber,
|
|
48
|
+
AtomicFormatUnit,
|
|
49
|
+
AtomicGeneratedAnswer,
|
|
50
|
+
AtomicGeneratedAnswerFeedbackModal,
|
|
51
|
+
AtomicHtml,
|
|
52
|
+
AtomicIcon,
|
|
53
|
+
AtomicInsightEditToggle,
|
|
54
|
+
AtomicInsightFacet,
|
|
55
|
+
AtomicInsightFoldedResultList,
|
|
56
|
+
AtomicInsightFullSearchButton,
|
|
57
|
+
AtomicInsightGenerateAnswerButton,
|
|
58
|
+
AtomicInsightGeneratedAnswer,
|
|
59
|
+
AtomicInsightInterface,
|
|
60
|
+
AtomicInsightLayout,
|
|
61
|
+
AtomicInsightNoResults,
|
|
62
|
+
AtomicInsightNumericFacet,
|
|
63
|
+
AtomicInsightPager,
|
|
64
|
+
AtomicInsightQueryError,
|
|
65
|
+
AtomicInsightQuerySummary,
|
|
66
|
+
AtomicInsightRefineModal,
|
|
67
|
+
AtomicInsightRefineToggle,
|
|
68
|
+
AtomicInsightResult,
|
|
69
|
+
AtomicInsightResultAction,
|
|
70
|
+
AtomicInsightResultActionBar,
|
|
71
|
+
AtomicInsightResultAttachToCaseAction,
|
|
72
|
+
AtomicInsightResultAttachToCaseIndicator,
|
|
73
|
+
AtomicInsightResultChildren,
|
|
74
|
+
AtomicInsightResultChildrenTemplate,
|
|
75
|
+
AtomicInsightResultList,
|
|
76
|
+
AtomicInsightResultQuickviewAction,
|
|
77
|
+
AtomicInsightResultTemplate,
|
|
78
|
+
AtomicInsightSearchBox,
|
|
79
|
+
AtomicInsightSmartSnippet,
|
|
80
|
+
AtomicInsightSmartSnippetSuggestions,
|
|
81
|
+
AtomicInsightTimeframeFacet,
|
|
82
|
+
AtomicInsightUserActionsTimeline,
|
|
83
|
+
AtomicInsightUserActionsToggle,
|
|
84
|
+
AtomicIpxButton,
|
|
85
|
+
AtomicIpxEmbedded,
|
|
86
|
+
AtomicIpxModal,
|
|
87
|
+
AtomicIpxRecsList,
|
|
88
|
+
AtomicIpxRefineModal,
|
|
89
|
+
AtomicIpxRefineToggle,
|
|
90
|
+
AtomicIpxResultLink,
|
|
91
|
+
AtomicLayoutSection,
|
|
92
|
+
AtomicLoadMoreResults,
|
|
93
|
+
AtomicNoResults,
|
|
94
|
+
AtomicNotifications,
|
|
95
|
+
AtomicNumericFacet,
|
|
96
|
+
AtomicNumericRange,
|
|
97
|
+
AtomicPager,
|
|
98
|
+
AtomicPopover,
|
|
99
|
+
AtomicProduct,
|
|
100
|
+
AtomicProductChildren,
|
|
101
|
+
AtomicProductDescription,
|
|
102
|
+
AtomicProductExcerpt,
|
|
103
|
+
AtomicProductFieldCondition,
|
|
104
|
+
AtomicProductImage,
|
|
105
|
+
AtomicProductLink,
|
|
106
|
+
AtomicProductMultiValueText,
|
|
107
|
+
AtomicProductNumericFieldValue,
|
|
108
|
+
AtomicProductPrice,
|
|
109
|
+
AtomicProductRating,
|
|
110
|
+
AtomicProductSectionActions,
|
|
111
|
+
AtomicProductSectionBadges,
|
|
112
|
+
AtomicProductSectionBottomMetadata,
|
|
113
|
+
AtomicProductSectionChildren,
|
|
114
|
+
AtomicProductSectionDescription,
|
|
115
|
+
AtomicProductSectionEmphasized,
|
|
116
|
+
AtomicProductSectionMetadata,
|
|
117
|
+
AtomicProductSectionName,
|
|
118
|
+
AtomicProductSectionVisual,
|
|
119
|
+
AtomicProductTemplate,
|
|
120
|
+
AtomicProductText,
|
|
121
|
+
AtomicQueryError,
|
|
122
|
+
AtomicQuerySummary,
|
|
123
|
+
AtomicQuickview,
|
|
124
|
+
AtomicQuickviewModal,
|
|
125
|
+
AtomicRatingFacet,
|
|
126
|
+
AtomicRatingRangeFacet,
|
|
127
|
+
AtomicRecsError,
|
|
128
|
+
AtomicRecsInterface,
|
|
129
|
+
AtomicRecsList,
|
|
130
|
+
AtomicRecsResult,
|
|
131
|
+
AtomicRecsResultTemplate,
|
|
132
|
+
AtomicRefineModal,
|
|
133
|
+
AtomicRefineToggle,
|
|
134
|
+
AtomicResult,
|
|
135
|
+
AtomicResultBadge,
|
|
136
|
+
AtomicResultChildren,
|
|
137
|
+
AtomicResultChildrenTemplate,
|
|
138
|
+
AtomicResultDate,
|
|
139
|
+
AtomicResultFieldsList,
|
|
140
|
+
AtomicResultHtml,
|
|
141
|
+
AtomicResultIcon,
|
|
142
|
+
AtomicResultImage,
|
|
143
|
+
AtomicResultLink,
|
|
144
|
+
AtomicResultList,
|
|
145
|
+
AtomicResultLocalizedText,
|
|
146
|
+
AtomicResultMultiValueText,
|
|
147
|
+
AtomicResultNumber,
|
|
148
|
+
AtomicResultPrintableUri,
|
|
149
|
+
AtomicResultRating,
|
|
150
|
+
AtomicResultSectionActions,
|
|
151
|
+
AtomicResultSectionBadges,
|
|
152
|
+
AtomicResultSectionBottomMetadata,
|
|
153
|
+
AtomicResultSectionChildren,
|
|
154
|
+
AtomicResultSectionEmphasized,
|
|
155
|
+
AtomicResultSectionExcerpt,
|
|
156
|
+
AtomicResultSectionTitle,
|
|
157
|
+
AtomicResultSectionTitleMetadata,
|
|
158
|
+
AtomicResultSectionVisual,
|
|
159
|
+
AtomicResultTemplate,
|
|
160
|
+
AtomicResultText,
|
|
161
|
+
AtomicResultTimespan,
|
|
162
|
+
AtomicResultsPerPage,
|
|
163
|
+
AtomicSearchBox,
|
|
164
|
+
AtomicSearchBoxInstantResults,
|
|
165
|
+
AtomicSearchBoxQuerySuggestions,
|
|
166
|
+
AtomicSearchBoxRecentQueries,
|
|
167
|
+
AtomicSearchInterface,
|
|
168
|
+
AtomicSearchLayout,
|
|
169
|
+
AtomicSegmentedFacet,
|
|
170
|
+
AtomicSegmentedFacetScrollable,
|
|
171
|
+
AtomicSmartSnippet,
|
|
172
|
+
AtomicSmartSnippetFeedbackModal,
|
|
173
|
+
AtomicSmartSnippetSuggestions,
|
|
174
|
+
AtomicSortDropdown,
|
|
175
|
+
AtomicSortExpression,
|
|
176
|
+
AtomicTab,
|
|
177
|
+
AtomicTabManager,
|
|
178
|
+
AtomicTableElement,
|
|
179
|
+
AtomicText,
|
|
180
|
+
AtomicTimeframe,
|
|
181
|
+
AtomicTimeframeFacet
|
|
182
|
+
} from './components';
|
|
183
|
+
|
|
184
|
+
const DECLARATIONS = [
|
|
185
|
+
AtomicAriaLive,
|
|
186
|
+
AtomicAutomaticFacet,
|
|
187
|
+
AtomicAutomaticFacetGenerator,
|
|
188
|
+
AtomicBreadbox,
|
|
189
|
+
AtomicCategoryFacet,
|
|
190
|
+
AtomicColorFacet,
|
|
191
|
+
AtomicCommerceBreadbox,
|
|
192
|
+
AtomicCommerceCategoryFacet,
|
|
193
|
+
AtomicCommerceDidYouMean,
|
|
194
|
+
AtomicCommerceFacet,
|
|
195
|
+
AtomicCommerceFacets,
|
|
196
|
+
AtomicCommerceInterface,
|
|
197
|
+
AtomicCommerceLayout,
|
|
198
|
+
AtomicCommerceLoadMoreProducts,
|
|
199
|
+
AtomicCommerceNoProducts,
|
|
200
|
+
AtomicCommerceNumericFacet,
|
|
201
|
+
AtomicCommercePager,
|
|
202
|
+
AtomicCommerceProductList,
|
|
203
|
+
AtomicCommerceProductsPerPage,
|
|
204
|
+
AtomicCommerceQueryError,
|
|
205
|
+
AtomicCommerceQuerySummary,
|
|
206
|
+
AtomicCommerceRecommendationInterface,
|
|
207
|
+
AtomicCommerceRecommendationList,
|
|
208
|
+
AtomicCommerceRefineModal,
|
|
209
|
+
AtomicCommerceRefineToggle,
|
|
210
|
+
AtomicCommerceSearchBox,
|
|
211
|
+
AtomicCommerceSearchBoxInstantProducts,
|
|
212
|
+
AtomicCommerceSearchBoxQuerySuggestions,
|
|
213
|
+
AtomicCommerceSearchBoxRecentQueries,
|
|
214
|
+
AtomicCommerceSortDropdown,
|
|
215
|
+
AtomicCommerceText,
|
|
216
|
+
AtomicCommerceTimeframeFacet,
|
|
217
|
+
AtomicComponentError,
|
|
218
|
+
AtomicDidYouMean,
|
|
219
|
+
AtomicExternal,
|
|
220
|
+
AtomicFacet,
|
|
221
|
+
AtomicFacetManager,
|
|
222
|
+
AtomicFieldCondition,
|
|
223
|
+
AtomicFocusTrap,
|
|
224
|
+
AtomicFoldedResultList,
|
|
225
|
+
AtomicFormatCurrency,
|
|
226
|
+
AtomicFormatNumber,
|
|
227
|
+
AtomicFormatUnit,
|
|
228
|
+
AtomicGeneratedAnswer,
|
|
229
|
+
AtomicGeneratedAnswerFeedbackModal,
|
|
230
|
+
AtomicHtml,
|
|
231
|
+
AtomicIcon,
|
|
232
|
+
AtomicInsightEditToggle,
|
|
233
|
+
AtomicInsightFacet,
|
|
234
|
+
AtomicInsightFoldedResultList,
|
|
235
|
+
AtomicInsightFullSearchButton,
|
|
236
|
+
AtomicInsightGenerateAnswerButton,
|
|
237
|
+
AtomicInsightGeneratedAnswer,
|
|
238
|
+
AtomicInsightInterface,
|
|
239
|
+
AtomicInsightLayout,
|
|
240
|
+
AtomicInsightNoResults,
|
|
241
|
+
AtomicInsightNumericFacet,
|
|
242
|
+
AtomicInsightPager,
|
|
243
|
+
AtomicInsightQueryError,
|
|
244
|
+
AtomicInsightQuerySummary,
|
|
245
|
+
AtomicInsightRefineModal,
|
|
246
|
+
AtomicInsightRefineToggle,
|
|
247
|
+
AtomicInsightResult,
|
|
248
|
+
AtomicInsightResultAction,
|
|
249
|
+
AtomicInsightResultActionBar,
|
|
250
|
+
AtomicInsightResultAttachToCaseAction,
|
|
251
|
+
AtomicInsightResultAttachToCaseIndicator,
|
|
252
|
+
AtomicInsightResultChildren,
|
|
253
|
+
AtomicInsightResultChildrenTemplate,
|
|
254
|
+
AtomicInsightResultList,
|
|
255
|
+
AtomicInsightResultQuickviewAction,
|
|
256
|
+
AtomicInsightResultTemplate,
|
|
257
|
+
AtomicInsightSearchBox,
|
|
258
|
+
AtomicInsightSmartSnippet,
|
|
259
|
+
AtomicInsightSmartSnippetSuggestions,
|
|
260
|
+
AtomicInsightTimeframeFacet,
|
|
261
|
+
AtomicInsightUserActionsTimeline,
|
|
262
|
+
AtomicInsightUserActionsToggle,
|
|
263
|
+
AtomicIpxButton,
|
|
264
|
+
AtomicIpxEmbedded,
|
|
265
|
+
AtomicIpxModal,
|
|
266
|
+
AtomicIpxRecsList,
|
|
267
|
+
AtomicIpxRefineModal,
|
|
268
|
+
AtomicIpxRefineToggle,
|
|
269
|
+
AtomicIpxResultLink,
|
|
270
|
+
AtomicLayoutSection,
|
|
271
|
+
AtomicLoadMoreResults,
|
|
272
|
+
AtomicNoResults,
|
|
273
|
+
AtomicNotifications,
|
|
274
|
+
AtomicNumericFacet,
|
|
275
|
+
AtomicNumericRange,
|
|
276
|
+
AtomicPager,
|
|
277
|
+
AtomicPopover,
|
|
278
|
+
AtomicProduct,
|
|
279
|
+
AtomicProductChildren,
|
|
280
|
+
AtomicProductDescription,
|
|
281
|
+
AtomicProductExcerpt,
|
|
282
|
+
AtomicProductFieldCondition,
|
|
283
|
+
AtomicProductImage,
|
|
284
|
+
AtomicProductLink,
|
|
285
|
+
AtomicProductMultiValueText,
|
|
286
|
+
AtomicProductNumericFieldValue,
|
|
287
|
+
AtomicProductPrice,
|
|
288
|
+
AtomicProductRating,
|
|
289
|
+
AtomicProductSectionActions,
|
|
290
|
+
AtomicProductSectionBadges,
|
|
291
|
+
AtomicProductSectionBottomMetadata,
|
|
292
|
+
AtomicProductSectionChildren,
|
|
293
|
+
AtomicProductSectionDescription,
|
|
294
|
+
AtomicProductSectionEmphasized,
|
|
295
|
+
AtomicProductSectionMetadata,
|
|
296
|
+
AtomicProductSectionName,
|
|
297
|
+
AtomicProductSectionVisual,
|
|
298
|
+
AtomicProductTemplate,
|
|
299
|
+
AtomicProductText,
|
|
300
|
+
AtomicQueryError,
|
|
301
|
+
AtomicQuerySummary,
|
|
302
|
+
AtomicQuickview,
|
|
303
|
+
AtomicQuickviewModal,
|
|
304
|
+
AtomicRatingFacet,
|
|
305
|
+
AtomicRatingRangeFacet,
|
|
306
|
+
AtomicRecsError,
|
|
307
|
+
AtomicRecsInterface,
|
|
308
|
+
AtomicRecsList,
|
|
309
|
+
AtomicRecsResult,
|
|
310
|
+
AtomicRecsResultTemplate,
|
|
311
|
+
AtomicRefineModal,
|
|
312
|
+
AtomicRefineToggle,
|
|
313
|
+
AtomicResult,
|
|
314
|
+
AtomicResultBadge,
|
|
315
|
+
AtomicResultChildren,
|
|
316
|
+
AtomicResultChildrenTemplate,
|
|
317
|
+
AtomicResultDate,
|
|
318
|
+
AtomicResultFieldsList,
|
|
319
|
+
AtomicResultHtml,
|
|
320
|
+
AtomicResultIcon,
|
|
321
|
+
AtomicResultImage,
|
|
322
|
+
AtomicResultLink,
|
|
323
|
+
AtomicResultList,
|
|
324
|
+
AtomicResultLocalizedText,
|
|
325
|
+
AtomicResultMultiValueText,
|
|
326
|
+
AtomicResultNumber,
|
|
327
|
+
AtomicResultPrintableUri,
|
|
328
|
+
AtomicResultRating,
|
|
329
|
+
AtomicResultSectionActions,
|
|
330
|
+
AtomicResultSectionBadges,
|
|
331
|
+
AtomicResultSectionBottomMetadata,
|
|
332
|
+
AtomicResultSectionChildren,
|
|
333
|
+
AtomicResultSectionEmphasized,
|
|
334
|
+
AtomicResultSectionExcerpt,
|
|
335
|
+
AtomicResultSectionTitle,
|
|
336
|
+
AtomicResultSectionTitleMetadata,
|
|
337
|
+
AtomicResultSectionVisual,
|
|
338
|
+
AtomicResultTemplate,
|
|
339
|
+
AtomicResultText,
|
|
340
|
+
AtomicResultTimespan,
|
|
341
|
+
AtomicResultsPerPage,
|
|
342
|
+
AtomicSearchBox,
|
|
343
|
+
AtomicSearchBoxInstantResults,
|
|
344
|
+
AtomicSearchBoxQuerySuggestions,
|
|
345
|
+
AtomicSearchBoxRecentQueries,
|
|
346
|
+
AtomicSearchInterface,
|
|
347
|
+
AtomicSearchLayout,
|
|
348
|
+
AtomicSegmentedFacet,
|
|
349
|
+
AtomicSegmentedFacetScrollable,
|
|
350
|
+
AtomicSmartSnippet,
|
|
351
|
+
AtomicSmartSnippetFeedbackModal,
|
|
352
|
+
AtomicSmartSnippetSuggestions,
|
|
353
|
+
AtomicSortDropdown,
|
|
354
|
+
AtomicSortExpression,
|
|
355
|
+
AtomicTab,
|
|
356
|
+
AtomicTabManager,
|
|
357
|
+
AtomicTableElement,
|
|
358
|
+
AtomicText,
|
|
359
|
+
AtomicTimeframe,
|
|
360
|
+
AtomicTimeframeFacet
|
|
361
|
+
];
|
|
362
|
+
|
|
363
|
+
@NgModule({
|
|
364
|
+
declarations: DECLARATIONS,
|
|
365
|
+
exports: DECLARATIONS,
|
|
366
|
+
imports: [CommonModule],
|
|
367
|
+
})
|
|
368
|
+
export class AtomicAngularModule {
|
|
369
|
+
static forRoot(): ModuleWithProviders<AtomicAngularModule> {
|
|
370
|
+
return {
|
|
371
|
+
ngModule: AtomicAngularModule,
|
|
372
|
+
providers: [],
|
|
373
|
+
};
|
|
374
|
+
}
|
|
375
|
+
}
|