@coveo/atomic 3.53.2 → 3.54.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/custom-elements.json +1294 -1288
  2. package/dist/atomic/components/components/commerce/atomic-commerce-search-box/atomic-commerce-search-box.js +8 -3
  3. package/dist/atomic/components/components/common/atomic-generated-answer-thread/atomic-generated-answer-thread.js +2 -0
  4. package/dist/atomic/components/components/common/atomic-generated-answer-thread-item/atomic-generated-answer-thread-item.js +10 -5
  5. package/dist/atomic/components/components/common/atomic-smart-snippet-collapse-wrapper/atomic-smart-snippet-collapse-wrapper.js +1 -1
  6. package/dist/atomic/components/components/common/atomic-smart-snippet-expandable-answer/atomic-smart-snippet-expandable-answer.js +1 -1
  7. package/dist/atomic/components/components/insight/atomic-insight-facet/atomic-insight-facet.js +3 -1
  8. package/dist/atomic/components/components/insight/atomic-insight-numeric-facet/atomic-insight-numeric-facet.js +10 -11
  9. package/dist/atomic/components/components/insight/atomic-insight-result-children/atomic-insight-result-children.js +3 -3
  10. package/dist/atomic/components/components/insight/atomic-insight-search-box/atomic-insight-search-box.js +4 -0
  11. package/dist/atomic/components/components/insight/atomic-insight-smart-snippet-suggestions/atomic-insight-smart-snippet-suggestions.js +1 -1
  12. package/dist/atomic/components/components/insight/atomic-insight-user-actions-session/user-action.js +1 -1
  13. package/dist/atomic/components/components/insight/atomic-insight-user-actions-timeline/atomic-insight-user-actions-timeline.js +2 -0
  14. package/dist/atomic/components/components/ipx/atomic-ipx-recs-list/atomic-ipx-recs-list.js +1 -0
  15. package/dist/atomic/components/components/recommendations/atomic-recs-list/atomic-recs-list.js +2 -1
  16. package/dist/atomic/components/components/search/atomic-category-facet/atomic-category-facet.js +4 -5
  17. package/dist/atomic/components/components/search/atomic-color-facet/atomic-color-facet.js +3 -1
  18. package/dist/atomic/components/components/search/atomic-facet/atomic-facet.js +4 -3
  19. package/dist/atomic/components/components/search/atomic-notifications/atomic-notifications.js +1 -1
  20. package/dist/atomic/components/components/search/atomic-numeric-facet/atomic-numeric-facet.js +9 -10
  21. package/dist/atomic/components/components/search/atomic-rating-facet/atomic-rating-facet.js +3 -1
  22. package/dist/atomic/components/components/search/atomic-rating-range-facet/atomic-rating-range-facet.js +3 -1
  23. package/dist/atomic/components/components/search/atomic-result-list/atomic-result-list.js +3 -3
  24. package/dist/atomic/components/components/search/atomic-result-rating/atomic-result-rating.js +1 -1
  25. package/dist/atomic/components/components/search/atomic-result-template/atomic-result-template.js +1 -1
  26. package/dist/atomic/components/components/search/atomic-search-box/atomic-search-box.js +9 -4
  27. package/dist/atomic/components/components/search/atomic-segmented-facet/atomic-segmented-facet.js +3 -1
  28. package/dist/atomic/components/components/search/atomic-smart-snippet-suggestions/atomic-smart-snippet-suggestions.js +1 -1
  29. package/dist/atomic/components/global/environment.js +1 -1
  30. package/dist/atomic/components/utils/tailwind.global.tw.css.js +3 -3
  31. package/dist/cjs/version.cjs.js +2 -2
  32. package/dist/esm/version.js +2 -2
  33. package/dist/types/components/commerce/atomic-commerce-search-box/atomic-commerce-search-box.d.ts +8 -0
  34. package/dist/types/components/common/atomic-generated-answer-thread-item/atomic-generated-answer-thread-item.d.ts +8 -0
  35. package/dist/types/components/insight/atomic-insight-search-box/atomic-insight-search-box.d.ts +8 -0
  36. package/dist/types/components/insight/atomic-insight-user-actions-timeline/atomic-insight-user-actions-timeline.d.ts +2 -0
  37. package/dist/types/components/ipx/atomic-ipx-recs-list/atomic-ipx-recs-list.d.ts +1 -0
  38. package/dist/types/components/recommendations/atomic-recs-list/atomic-recs-list.d.ts +2 -1
  39. package/dist/types/components/search/atomic-facet/atomic-facet.d.ts +1 -3
  40. package/dist/types/components/search/atomic-result-list/atomic-result-list.d.ts +2 -2
  41. package/dist/types/components/search/atomic-result-template/atomic-result-template.d.ts +1 -1
  42. package/dist/types/components/search/atomic-search-box/atomic-search-box.d.ts +8 -0
  43. package/dist/types/components/search/atomic-segmented-facet/atomic-segmented-facet.d.ts +1 -1
  44. package/package.json +5 -5
@@ -1991,6 +1991,137 @@
1991
1991
  }
1992
1992
  ]
1993
1993
  },
1994
+ {
1995
+ "kind": "javascript-module",
1996
+ "path": "src/components/commerce/atomic-commerce-did-you-mean/atomic-commerce-did-you-mean.ts",
1997
+ "declarations": [
1998
+ {
1999
+ "kind": "class",
2000
+ "description": "The `atomic-commerce-did-you-mean` component is responsible for handling query corrections. When a query returns no products but finds a possible query correction, the component either suggests the correction or automatically triggers a new query with the suggested term.",
2001
+ "name": "AtomicCommerceDidYouMean",
2002
+ "cssParts": [
2003
+ {
2004
+ "description": "The text displayed when there are no products.",
2005
+ "name": "no-results"
2006
+ },
2007
+ {
2008
+ "description": "The text displayed for the automatically corrected query.",
2009
+ "name": "auto-corrected"
2010
+ },
2011
+ {
2012
+ "description": "The first paragraph of the text displayed when a query trigger changes a query.",
2013
+ "name": "showing-results-for"
2014
+ },
2015
+ {
2016
+ "description": "The second paragraph of the text displayed when a query trigger changes a query.",
2017
+ "name": "search-instead-for"
2018
+ },
2019
+ {
2020
+ "description": "The text displayed around the button to manually correct a query.",
2021
+ "name": "did-you-mean"
2022
+ },
2023
+ {
2024
+ "description": "The button used to manually correct a query.",
2025
+ "name": "correction-btn"
2026
+ },
2027
+ {
2028
+ "description": "The button used to undo a query changed by a query trigger.",
2029
+ "name": "undo-btn"
2030
+ },
2031
+ {
2032
+ "description": "The query highlights.",
2033
+ "name": "highlight"
2034
+ }
2035
+ ],
2036
+ "members": [
2037
+ {
2038
+ "kind": "field",
2039
+ "name": "bindings",
2040
+ "type": {
2041
+ "text": "CommerceBindings"
2042
+ },
2043
+ "privacy": "private"
2044
+ },
2045
+ {
2046
+ "kind": "field",
2047
+ "name": "didYouMean",
2048
+ "type": {
2049
+ "text": "DidYouMean"
2050
+ },
2051
+ "privacy": "private"
2052
+ },
2053
+ {
2054
+ "kind": "field",
2055
+ "name": "queryTrigger",
2056
+ "type": {
2057
+ "text": "QueryTrigger"
2058
+ },
2059
+ "privacy": "private"
2060
+ },
2061
+ {
2062
+ "kind": "field",
2063
+ "name": "didYouMeanState",
2064
+ "type": {
2065
+ "text": "DidYouMeanState"
2066
+ },
2067
+ "privacy": "private"
2068
+ },
2069
+ {
2070
+ "kind": "field",
2071
+ "name": "queryTriggerState",
2072
+ "type": {
2073
+ "text": "QueryTriggerState"
2074
+ },
2075
+ "privacy": "private"
2076
+ },
2077
+ {
2078
+ "kind": "field",
2079
+ "name": "error",
2080
+ "type": {
2081
+ "text": "Error"
2082
+ },
2083
+ "privacy": "private"
2084
+ },
2085
+ {
2086
+ "kind": "method",
2087
+ "name": "initialize",
2088
+ "privacy": "public"
2089
+ },
2090
+ {
2091
+ "kind": "field",
2092
+ "name": "content",
2093
+ "privacy": "private",
2094
+ "readonly": true
2095
+ }
2096
+ ],
2097
+ "superclass": {
2098
+ "name": "LitElement",
2099
+ "package": "lit"
2100
+ },
2101
+ "events": [],
2102
+ "tagName": "atomic-commerce-did-you-mean",
2103
+ "customElement": true
2104
+ }
2105
+ ],
2106
+ "exports": [
2107
+ {
2108
+ "kind": "js",
2109
+ "name": "AtomicCommerceDidYouMean",
2110
+ "declaration": {
2111
+ "name": "AtomicCommerceDidYouMean",
2112
+ "module": "src/components/commerce/atomic-commerce-did-you-mean/atomic-commerce-did-you-mean.ts"
2113
+ }
2114
+ },
2115
+ {
2116
+ "kind": "custom-element-definition",
2117
+ "name": "atomic-commerce-did-you-mean",
2118
+ "declaration": {
2119
+ "name": "AtomicCommerceDidYouMean",
2120
+ "module": "src/components/commerce/atomic-commerce-did-you-mean/atomic-commerce-did-you-mean.ts"
2121
+ }
2122
+ }
2123
+ ]
2124
+ },
1994
2125
  {
1995
2126
  "kind": "javascript-module",
1996
2127
  "path": "src/components/commerce/atomic-commerce-facet/atomic-commerce-facet.ts",
@@ -3190,137 +3321,6 @@
3190
3321
  "declarations": [],
3191
3322
  "exports": []
3192
3323
  },
3193
- {
3194
- "kind": "javascript-module",
3195
- "path": "src/components/commerce/atomic-commerce-did-you-mean/atomic-commerce-did-you-mean.ts",
3196
- "declarations": [
3197
- {
3198
- "kind": "class",
3199
- "description": "The `atomic-commerce-did-you-mean` component is responsible for handling query corrections. When a query returns no products but finds a possible query correction, the component either suggests the correction or automatically triggers a new query with the suggested term.",
3200
- "name": "AtomicCommerceDidYouMean",
3201
- "cssParts": [
3202
- {
3203
- "description": "The text displayed when there are no products.",
3204
- "name": "no-results"
3205
- },
3206
- {
3207
- "description": "The text displayed for the automatically corrected query.",
3208
- "name": "auto-corrected"
3209
- },
3210
- {
3211
- "description": "The first paragraph of the text displayed when a query trigger changes a query.",
3212
- "name": "showing-results-for"
3213
- },
3214
- {
3215
- "description": "The second paragraph of the text displayed when a query trigger changes a query.",
3216
- "name": "search-instead-for"
3217
- },
3218
- {
3219
- "description": "The text displayed around the button to manually correct a query.",
3220
- "name": "did-you-mean"
3221
- },
3222
- {
3223
- "description": "The button used to manually correct a query.",
3224
- "name": "correction-btn"
3225
- },
3226
- {
3227
- "description": "The button used to undo a query changed by a query trigger.",
3228
- "name": "undo-btn"
3229
- },
3230
- {
3231
- "description": "The query highlights.",
3232
- "name": "highlight"
3233
- }
3234
- ],
3235
- "members": [
3236
- {
3237
- "kind": "field",
3238
- "name": "bindings",
3239
- "type": {
3240
- "text": "CommerceBindings"
3241
- },
3242
- "privacy": "private"
3243
- },
3244
- {
3245
- "kind": "field",
3246
- "name": "didYouMean",
3247
- "type": {
3248
- "text": "DidYouMean"
3249
- },
3250
- "privacy": "private"
3251
- },
3252
- {
3253
- "kind": "field",
3254
- "name": "queryTrigger",
3255
- "type": {
3256
- "text": "QueryTrigger"
3257
- },
3258
- "privacy": "private"
3259
- },
3260
- {
3261
- "kind": "field",
3262
- "name": "didYouMeanState",
3263
- "type": {
3264
- "text": "DidYouMeanState"
3265
- },
3266
- "privacy": "private"
3267
- },
3268
- {
3269
- "kind": "field",
3270
- "name": "queryTriggerState",
3271
- "type": {
3272
- "text": "QueryTriggerState"
3273
- },
3274
- "privacy": "private"
3275
- },
3276
- {
3277
- "kind": "field",
3278
- "name": "error",
3279
- "type": {
3280
- "text": "Error"
3281
- },
3282
- "privacy": "private"
3283
- },
3284
- {
3285
- "kind": "method",
3286
- "name": "initialize",
3287
- "privacy": "public"
3288
- },
3289
- {
3290
- "kind": "field",
3291
- "name": "content",
3292
- "privacy": "private",
3293
- "readonly": true
3294
- }
3295
- ],
3296
- "superclass": {
3297
- "name": "LitElement",
3298
- "package": "lit"
3299
- },
3300
- "events": [],
3301
- "tagName": "atomic-commerce-did-you-mean",
3302
- "customElement": true
3303
- }
3304
- ],
3305
- "exports": [
3306
- {
3307
- "kind": "js",
3308
- "name": "AtomicCommerceDidYouMean",
3309
- "declaration": {
3310
- "name": "AtomicCommerceDidYouMean",
3311
- "module": "src/components/commerce/atomic-commerce-did-you-mean/atomic-commerce-did-you-mean.ts"
3312
- }
3313
- },
3314
- {
3315
- "kind": "custom-element-definition",
3316
- "name": "atomic-commerce-did-you-mean",
3317
- "declaration": {
3318
- "name": "AtomicCommerceDidYouMean",
3319
- "module": "src/components/commerce/atomic-commerce-did-you-mean/atomic-commerce-did-you-mean.ts"
3320
- }
3321
- }
3322
- ]
3323
- },
3324
3324
  {
3325
3325
  "kind": "javascript-module",
3326
3326
  "path": "src/components/commerce/atomic-commerce-layout/atomic-commerce-layout.ts",
@@ -6634,6 +6634,15 @@
6634
6634
  }
6635
6635
  ],
6636
6636
  "members": [
6637
+ {
6638
+ "kind": "field",
6639
+ "name": "shadowRootOptions",
6640
+ "type": {
6641
+ "text": "object"
6642
+ },
6643
+ "static": true,
6644
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true, }"
6645
+ },
6637
6646
  {
6638
6647
  "kind": "field",
6639
6648
  "name": "bindings",
@@ -12839,12 +12848,6 @@
12839
12848
  "declarations": [],
12840
12849
  "exports": []
12841
12850
  },
12842
- {
12843
- "kind": "javascript-module",
12844
- "path": "src/components/common/atomic-generated-answer-thread/atomic-generated-answer-thread.ts",
12845
- "declarations": [],
12846
- "exports": []
12847
- },
12848
12851
  {
12849
12852
  "kind": "javascript-module",
12850
12853
  "path": "src/components/common/atomic-generated-answer-feedback-modal/atomic-generated-answer-feedback-modal.ts",
@@ -13234,6 +13237,12 @@
13234
13237
  }
13235
13238
  ]
13236
13239
  },
13240
+ {
13241
+ "kind": "javascript-module",
13242
+ "path": "src/components/common/atomic-generated-answer-thread/atomic-generated-answer-thread.ts",
13243
+ "declarations": [],
13244
+ "exports": []
13245
+ },
13237
13246
  {
13238
13247
  "kind": "javascript-module",
13239
13248
  "path": "src/components/common/atomic-generated-answer-thread-item/atomic-generated-answer-thread-item.ts",
@@ -14089,145 +14098,145 @@
14089
14098
  },
14090
14099
  {
14091
14100
  "kind": "javascript-module",
14092
- "path": "src/components/common/facets/depends-on.ts",
14101
+ "path": "src/components/common/formats/format-common.ts",
14093
14102
  "declarations": [],
14094
14103
  "exports": []
14095
14104
  },
14096
14105
  {
14097
14106
  "kind": "javascript-module",
14098
- "path": "src/components/common/facets/facet-common-store.ts",
14107
+ "path": "src/components/common/generated-answer/copy-button.ts",
14099
14108
  "declarations": [],
14100
14109
  "exports": []
14101
14110
  },
14102
14111
  {
14103
14112
  "kind": "javascript-module",
14104
- "path": "src/components/common/facets/facet-common.ts",
14113
+ "path": "src/components/common/generated-answer/feedback-button.ts",
14105
14114
  "declarations": [],
14106
14115
  "exports": []
14107
14116
  },
14108
14117
  {
14109
14118
  "kind": "javascript-module",
14110
- "path": "src/components/common/facets/facet-common.tw.css.ts",
14119
+ "path": "src/components/common/generated-answer/generated-answer-controller.ts",
14111
14120
  "declarations": [],
14112
14121
  "exports": []
14113
14122
  },
14114
14123
  {
14115
14124
  "kind": "javascript-module",
14116
- "path": "src/components/common/facets/numeric-facet-common.tw.css.ts",
14125
+ "path": "src/components/common/generated-answer/generated-answer-utils.ts",
14117
14126
  "declarations": [],
14118
14127
  "exports": []
14119
14128
  },
14120
14129
  {
14121
14130
  "kind": "javascript-module",
14122
- "path": "src/components/common/facets/timeframe-facet-common.ts",
14131
+ "path": "src/components/common/generated-answer/generated-content-container.ts",
14123
14132
  "declarations": [],
14124
14133
  "exports": []
14125
14134
  },
14126
14135
  {
14127
14136
  "kind": "javascript-module",
14128
- "path": "src/components/common/formats/format-common.ts",
14137
+ "path": "src/components/common/generated-answer/render-agent-generation-steps.ts",
14129
14138
  "declarations": [],
14130
14139
  "exports": []
14131
14140
  },
14132
14141
  {
14133
14142
  "kind": "javascript-module",
14134
- "path": "src/components/common/generated-answer/copy-button.ts",
14143
+ "path": "src/components/common/generated-answer/render-answer-content.ts",
14135
14144
  "declarations": [],
14136
14145
  "exports": []
14137
14146
  },
14138
14147
  {
14139
14148
  "kind": "javascript-module",
14140
- "path": "src/components/common/generated-answer/feedback-button.ts",
14149
+ "path": "src/components/common/generated-answer/render-card-header.ts",
14141
14150
  "declarations": [],
14142
14151
  "exports": []
14143
14152
  },
14144
14153
  {
14145
14154
  "kind": "javascript-module",
14146
- "path": "src/components/common/generated-answer/generated-answer-controller.ts",
14155
+ "path": "src/components/common/generated-answer/render-citations.ts",
14147
14156
  "declarations": [],
14148
14157
  "exports": []
14149
14158
  },
14150
14159
  {
14151
14160
  "kind": "javascript-module",
14152
- "path": "src/components/common/generated-answer/generated-answer-utils.ts",
14161
+ "path": "src/components/common/generated-answer/render-custom-no-answer-message.ts",
14153
14162
  "declarations": [],
14154
14163
  "exports": []
14155
14164
  },
14156
14165
  {
14157
14166
  "kind": "javascript-module",
14158
- "path": "src/components/common/generated-answer/generated-content-container.ts",
14167
+ "path": "src/components/common/generated-answer/render-disclaimer.ts",
14159
14168
  "declarations": [],
14160
14169
  "exports": []
14161
14170
  },
14162
14171
  {
14163
14172
  "kind": "javascript-module",
14164
- "path": "src/components/common/generated-answer/render-agent-generation-steps.ts",
14173
+ "path": "src/components/common/generated-answer/render-feedback-and-copy-buttons.ts",
14165
14174
  "declarations": [],
14166
14175
  "exports": []
14167
14176
  },
14168
14177
  {
14169
14178
  "kind": "javascript-module",
14170
- "path": "src/components/common/generated-answer/render-answer-content.ts",
14179
+ "path": "src/components/common/generated-answer/render-follow-up-input.ts",
14171
14180
  "declarations": [],
14172
14181
  "exports": []
14173
14182
  },
14174
14183
  {
14175
14184
  "kind": "javascript-module",
14176
- "path": "src/components/common/generated-answer/render-card-header.ts",
14185
+ "path": "src/components/common/generated-answer/render-generating-answer-label.ts",
14177
14186
  "declarations": [],
14178
14187
  "exports": []
14179
14188
  },
14180
14189
  {
14181
14190
  "kind": "javascript-module",
14182
- "path": "src/components/common/generated-answer/render-citations.ts",
14191
+ "path": "src/components/common/generated-answer/retry-prompt.ts",
14183
14192
  "declarations": [],
14184
14193
  "exports": []
14185
14194
  },
14186
14195
  {
14187
14196
  "kind": "javascript-module",
14188
- "path": "src/components/common/generated-answer/render-custom-no-answer-message.ts",
14197
+ "path": "src/components/common/generated-answer/show-button.ts",
14189
14198
  "declarations": [],
14190
14199
  "exports": []
14191
14200
  },
14192
14201
  {
14193
14202
  "kind": "javascript-module",
14194
- "path": "src/components/common/generated-answer/render-disclaimer.ts",
14203
+ "path": "src/components/common/generated-answer/source-citations.ts",
14195
14204
  "declarations": [],
14196
14205
  "exports": []
14197
14206
  },
14198
14207
  {
14199
14208
  "kind": "javascript-module",
14200
- "path": "src/components/common/generated-answer/render-feedback-and-copy-buttons.ts",
14209
+ "path": "src/components/common/facets/depends-on.ts",
14201
14210
  "declarations": [],
14202
14211
  "exports": []
14203
14212
  },
14204
14213
  {
14205
14214
  "kind": "javascript-module",
14206
- "path": "src/components/common/generated-answer/render-follow-up-input.ts",
14215
+ "path": "src/components/common/facets/facet-common-store.ts",
14207
14216
  "declarations": [],
14208
14217
  "exports": []
14209
14218
  },
14210
14219
  {
14211
14220
  "kind": "javascript-module",
14212
- "path": "src/components/common/generated-answer/render-generating-answer-label.ts",
14221
+ "path": "src/components/common/facets/facet-common.ts",
14213
14222
  "declarations": [],
14214
14223
  "exports": []
14215
14224
  },
14216
14225
  {
14217
14226
  "kind": "javascript-module",
14218
- "path": "src/components/common/generated-answer/retry-prompt.ts",
14227
+ "path": "src/components/common/facets/facet-common.tw.css.ts",
14219
14228
  "declarations": [],
14220
14229
  "exports": []
14221
14230
  },
14222
14231
  {
14223
14232
  "kind": "javascript-module",
14224
- "path": "src/components/common/generated-answer/show-button.ts",
14233
+ "path": "src/components/common/facets/numeric-facet-common.tw.css.ts",
14225
14234
  "declarations": [],
14226
14235
  "exports": []
14227
14236
  },
14228
14237
  {
14229
14238
  "kind": "javascript-module",
14230
- "path": "src/components/common/generated-answer/source-citations.ts",
14239
+ "path": "src/components/common/facets/timeframe-facet-common.ts",
14231
14240
  "declarations": [],
14232
14241
  "exports": []
14233
14242
  },
@@ -14393,12 +14402,6 @@
14393
14402
  "declarations": [],
14394
14403
  "exports": []
14395
14404
  },
14396
- {
14397
- "kind": "javascript-module",
14398
- "path": "src/components/common/layout/display-options.ts",
14399
- "declarations": [],
14400
- "exports": []
14401
- },
14402
14405
  {
14403
14406
  "kind": "javascript-module",
14404
14407
  "path": "src/components/common/layout/item-layout-controller.ts",
@@ -14521,73 +14524,73 @@
14521
14524
  },
14522
14525
  {
14523
14526
  "kind": "javascript-module",
14524
- "path": "src/components/common/query-error/container.ts",
14527
+ "path": "src/components/common/query-correction/auto-correction.ts",
14525
14528
  "declarations": [],
14526
14529
  "exports": []
14527
14530
  },
14528
14531
  {
14529
14532
  "kind": "javascript-module",
14530
- "path": "src/components/common/query-error/description.ts",
14533
+ "path": "src/components/common/query-correction/correction.ts",
14531
14534
  "declarations": [],
14532
14535
  "exports": []
14533
14536
  },
14534
14537
  {
14535
14538
  "kind": "javascript-module",
14536
- "path": "src/components/common/query-error/details.ts",
14539
+ "path": "src/components/common/query-correction/trigger-correction.ts",
14537
14540
  "declarations": [],
14538
14541
  "exports": []
14539
14542
  },
14540
14543
  {
14541
14544
  "kind": "javascript-module",
14542
- "path": "src/components/common/query-error/icon.ts",
14545
+ "path": "src/components/common/query-error/container.ts",
14543
14546
  "declarations": [],
14544
14547
  "exports": []
14545
14548
  },
14546
14549
  {
14547
14550
  "kind": "javascript-module",
14548
- "path": "src/components/common/query-error/known-error-types.ts",
14551
+ "path": "src/components/common/query-error/description.ts",
14549
14552
  "declarations": [],
14550
14553
  "exports": []
14551
14554
  },
14552
14555
  {
14553
14556
  "kind": "javascript-module",
14554
- "path": "src/components/common/query-error/link.ts",
14557
+ "path": "src/components/common/query-error/details.ts",
14555
14558
  "declarations": [],
14556
14559
  "exports": []
14557
14560
  },
14558
14561
  {
14559
14562
  "kind": "javascript-module",
14560
- "path": "src/components/common/query-error/show-more.ts",
14563
+ "path": "src/components/common/query-error/icon.ts",
14561
14564
  "declarations": [],
14562
14565
  "exports": []
14563
14566
  },
14564
14567
  {
14565
14568
  "kind": "javascript-module",
14566
- "path": "src/components/common/query-error/title.ts",
14569
+ "path": "src/components/common/query-error/known-error-types.ts",
14567
14570
  "declarations": [],
14568
14571
  "exports": []
14569
14572
  },
14570
14573
  {
14571
14574
  "kind": "javascript-module",
14572
- "path": "src/components/common/query-error/utils.ts",
14575
+ "path": "src/components/common/query-error/link.ts",
14573
14576
  "declarations": [],
14574
14577
  "exports": []
14575
14578
  },
14576
14579
  {
14577
14580
  "kind": "javascript-module",
14578
- "path": "src/components/common/query-correction/auto-correction.ts",
14581
+ "path": "src/components/common/query-error/show-more.ts",
14579
14582
  "declarations": [],
14580
14583
  "exports": []
14581
14584
  },
14582
14585
  {
14583
14586
  "kind": "javascript-module",
14584
- "path": "src/components/common/query-correction/correction.ts",
14587
+ "path": "src/components/common/query-error/title.ts",
14585
14588
  "declarations": [],
14586
14589
  "exports": []
14587
14590
  },
14588
14591
  {
14589
14592
  "kind": "javascript-module",
14590
- "path": "src/components/common/query-correction/trigger-correction.ts",
14593
+ "path": "src/components/common/query-error/utils.ts",
14591
14594
  "declarations": [],
14592
14595
  "exports": []
14593
14596
  },
@@ -18798,225 +18801,6 @@
18798
18801
  }
18799
18802
  ]
18800
18803
  },
18801
- {
18802
- "kind": "javascript-module",
18803
- "path": "src/components/insight/atomic-insight-result/atomic-insight-result.ts",
18804
- "declarations": [
18805
- {
18806
- "kind": "class",
18807
- "description": "The `atomic-insight-result` component is used internally by the `atomic-insight-result-list` component.",
18808
- "name": "AtomicInsightResult",
18809
- "members": [
18810
- {
18811
- "kind": "field",
18812
- "name": "resultRootRef",
18813
- "type": {
18814
- "text": "Ref<HTMLElement>"
18815
- },
18816
- "privacy": "private"
18817
- },
18818
- {
18819
- "kind": "field",
18820
- "name": "itemLayoutController",
18821
- "type": {
18822
- "text": "ItemLayoutController"
18823
- },
18824
- "privacy": "private"
18825
- },
18826
- {
18827
- "kind": "field",
18828
- "name": "error",
18829
- "type": {
18830
- "text": "Error"
18831
- },
18832
- "privacy": "private"
18833
- },
18834
- {
18835
- "kind": "field",
18836
- "name": "stopPropagation",
18837
- "type": {
18838
- "text": "boolean"
18839
- },
18840
- "description": "Whether `atomic-result-link` components nested in the `atomic-insight-result` should stop click event propagation.",
18841
- "attribute": "stop-propagation",
18842
- "reflects": true
18843
- },
18844
- {
18845
- "kind": "field",
18846
- "name": "result",
18847
- "type": {
18848
- "text": "InsightResult | InsightFoldedResult"
18849
- },
18850
- "description": "The result item.",
18851
- "attribute": "result"
18852
- },
18853
- {
18854
- "kind": "field",
18855
- "name": "content",
18856
- "type": {
18857
- "text": "ParentNode"
18858
- },
18859
- "description": "The result content to display.",
18860
- "attribute": "content"
18861
- },
18862
- {
18863
- "kind": "field",
18864
- "name": "density",
18865
- "type": {
18866
- "text": "ItemDisplayDensity"
18867
- },
18868
- "default": "'normal'",
18869
- "description": "How large or small results should be.",
18870
- "attribute": "density",
18871
- "reflects": true
18872
- },
18873
- {
18874
- "kind": "field",
18875
- "name": "imageSize",
18876
- "type": {
18877
- "text": "ItemDisplayImageSize"
18878
- },
18879
- "default": "'icon'",
18880
- "description": "The size of the image section in result list items.\nThis is overwritten by the image size defined in the result content, if it exists.",
18881
- "attribute": "image-size",
18882
- "reflects": true
18883
- },
18884
- {
18885
- "kind": "field",
18886
- "name": "classes",
18887
- "type": {
18888
- "text": "string"
18889
- },
18890
- "default": "''",
18891
- "description": "The classes to add to the result element.",
18892
- "attribute": "classes"
18893
- },
18894
- {
18895
- "kind": "field",
18896
- "name": "resolveResult",
18897
- "privacy": "public"
18898
- },
18899
- {
18900
- "kind": "field",
18901
- "name": "resolveInteractiveResult",
18902
- "privacy": "public"
18903
- },
18904
- {
18905
- "kind": "field",
18906
- "name": "resolveStopPropagation",
18907
- "privacy": "public"
18908
- },
18909
- {
18910
- "kind": "field",
18911
- "name": "resolveResultDisplayConfig",
18912
- "privacy": "public"
18913
- },
18914
- {
18915
- "kind": "method",
18916
- "name": "getContentHTML",
18917
- "privacy": "private"
18918
- },
18919
- {
18920
- "kind": "method",
18921
- "name": "getUpdateComplete",
18922
- "return": {
18923
- "type": {
18924
- "text": "Promise<boolean>"
18925
- }
18926
- },
18927
- "inheritedFrom": {
18928
- "name": "ChildrenUpdateCompleteMixin",
18929
- "module": "src/mixins/children-update-complete-mixin.ts"
18930
- }
18931
- }
18932
- ],
18933
- "attributes": [
18934
- {
18935
- "name": "stop-propagation",
18936
- "type": {
18937
- "text": "boolean"
18938
- },
18939
- "description": "Whether `atomic-result-link` components nested in the `atomic-insight-result` should stop click event propagation.",
18940
- "fieldName": "stopPropagation"
18941
- },
18942
- {
18943
- "name": "result",
18944
- "type": {
18945
- "text": "InsightResult | InsightFoldedResult"
18946
- },
18947
- "description": "The result item.",
18948
- "fieldName": "result"
18949
- },
18950
- {
18951
- "name": "content",
18952
- "type": {
18953
- "text": "ParentNode"
18954
- },
18955
- "description": "The result content to display.",
18956
- "fieldName": "content"
18957
- },
18958
- {
18959
- "name": "density",
18960
- "type": {
18961
- "text": "ItemDisplayDensity"
18962
- },
18963
- "default": "'normal'",
18964
- "description": "How large or small results should be.",
18965
- "fieldName": "density"
18966
- },
18967
- {
18968
- "name": "image-size",
18969
- "type": {
18970
- "text": "ItemDisplayImageSize"
18971
- },
18972
- "default": "'icon'",
18973
- "description": "The size of the image section in result list items.\nThis is overwritten by the image size defined in the result content, if it exists.",
18974
- "fieldName": "imageSize"
18975
- },
18976
- {
18977
- "name": "classes",
18978
- "type": {
18979
- "text": "string"
18980
- },
18981
- "default": "''",
18982
- "description": "The classes to add to the result element.",
18983
- "fieldName": "classes"
18984
- }
18985
- ],
18986
- "mixins": [
18987
- {
18988
- "name": "ChildrenUpdateCompleteMixin",
18989
- "package": "@/src/mixins/children-update-complete-mixin"
18990
- }
18991
- ],
18992
- "superclass": {
18993
- "name": "LitElement",
18994
- "package": "lit"
18995
- },
18996
- "events": [],
18997
- "tagName": "atomic-insight-result",
18998
- "customElement": true
18999
- }
19000
- ],
19001
- "exports": [
19002
- {
19003
- "kind": "js",
19004
- "name": "AtomicInsightResult",
19005
- "declaration": {
19006
- "name": "AtomicInsightResult",
19007
- "module": "src/components/insight/atomic-insight-result/atomic-insight-result.ts"
19008
- }
19009
- },
19010
- {
19011
- "kind": "custom-element-definition",
19012
- "name": "atomic-insight-result",
19013
- "declaration": {
19014
- "name": "AtomicInsightResult",
19015
- "module": "src/components/insight/atomic-insight-result/atomic-insight-result.ts"
19016
- }
19017
- }
19018
- ]
19019
- },
19020
18804
  {
19021
18805
  "kind": "javascript-module",
19022
18806
  "path": "src/components/insight/atomic-insight-refine-toggle/atomic-insight-refine-toggle.ts",
@@ -19165,6 +18949,225 @@
19165
18949
  }
19166
18950
  ]
19167
18951
  },
18952
+ {
18953
+ "kind": "javascript-module",
18954
+ "path": "src/components/insight/atomic-insight-result/atomic-insight-result.ts",
18955
+ "declarations": [
18956
+ {
18957
+ "kind": "class",
18958
+ "description": "The `atomic-insight-result` component is used internally by the `atomic-insight-result-list` component.",
18959
+ "name": "AtomicInsightResult",
18960
+ "members": [
18961
+ {
18962
+ "kind": "field",
18963
+ "name": "resultRootRef",
18964
+ "type": {
18965
+ "text": "Ref<HTMLElement>"
18966
+ },
18967
+ "privacy": "private"
18968
+ },
18969
+ {
18970
+ "kind": "field",
18971
+ "name": "itemLayoutController",
18972
+ "type": {
18973
+ "text": "ItemLayoutController"
18974
+ },
18975
+ "privacy": "private"
18976
+ },
18977
+ {
18978
+ "kind": "field",
18979
+ "name": "error",
18980
+ "type": {
18981
+ "text": "Error"
18982
+ },
18983
+ "privacy": "private"
18984
+ },
18985
+ {
18986
+ "kind": "field",
18987
+ "name": "stopPropagation",
18988
+ "type": {
18989
+ "text": "boolean"
18990
+ },
18991
+ "description": "Whether `atomic-result-link` components nested in the `atomic-insight-result` should stop click event propagation.",
18992
+ "attribute": "stop-propagation",
18993
+ "reflects": true
18994
+ },
18995
+ {
18996
+ "kind": "field",
18997
+ "name": "result",
18998
+ "type": {
18999
+ "text": "InsightResult | InsightFoldedResult"
19000
+ },
19001
+ "description": "The result item.",
19002
+ "attribute": "result"
19003
+ },
19004
+ {
19005
+ "kind": "field",
19006
+ "name": "content",
19007
+ "type": {
19008
+ "text": "ParentNode"
19009
+ },
19010
+ "description": "The result content to display.",
19011
+ "attribute": "content"
19012
+ },
19013
+ {
19014
+ "kind": "field",
19015
+ "name": "density",
19016
+ "type": {
19017
+ "text": "ItemDisplayDensity"
19018
+ },
19019
+ "default": "'normal'",
19020
+ "description": "How large or small results should be.",
19021
+ "attribute": "density",
19022
+ "reflects": true
19023
+ },
19024
+ {
19025
+ "kind": "field",
19026
+ "name": "imageSize",
19027
+ "type": {
19028
+ "text": "ItemDisplayImageSize"
19029
+ },
19030
+ "default": "'icon'",
19031
+ "description": "The size of the image section in result list items.\nThis is overwritten by the image size defined in the result content, if it exists.",
19032
+ "attribute": "image-size",
19033
+ "reflects": true
19034
+ },
19035
+ {
19036
+ "kind": "field",
19037
+ "name": "classes",
19038
+ "type": {
19039
+ "text": "string"
19040
+ },
19041
+ "default": "''",
19042
+ "description": "The classes to add to the result element.",
19043
+ "attribute": "classes"
19044
+ },
19045
+ {
19046
+ "kind": "field",
19047
+ "name": "resolveResult",
19048
+ "privacy": "public"
19049
+ },
19050
+ {
19051
+ "kind": "field",
19052
+ "name": "resolveInteractiveResult",
19053
+ "privacy": "public"
19054
+ },
19055
+ {
19056
+ "kind": "field",
19057
+ "name": "resolveStopPropagation",
19058
+ "privacy": "public"
19059
+ },
19060
+ {
19061
+ "kind": "field",
19062
+ "name": "resolveResultDisplayConfig",
19063
+ "privacy": "public"
19064
+ },
19065
+ {
19066
+ "kind": "method",
19067
+ "name": "getContentHTML",
19068
+ "privacy": "private"
19069
+ },
19070
+ {
19071
+ "kind": "method",
19072
+ "name": "getUpdateComplete",
19073
+ "return": {
19074
+ "type": {
19075
+ "text": "Promise<boolean>"
19076
+ }
19077
+ },
19078
+ "inheritedFrom": {
19079
+ "name": "ChildrenUpdateCompleteMixin",
19080
+ "module": "src/mixins/children-update-complete-mixin.ts"
19081
+ }
19082
+ }
19083
+ ],
19084
+ "attributes": [
19085
+ {
19086
+ "name": "stop-propagation",
19087
+ "type": {
19088
+ "text": "boolean"
19089
+ },
19090
+ "description": "Whether `atomic-result-link` components nested in the `atomic-insight-result` should stop click event propagation.",
19091
+ "fieldName": "stopPropagation"
19092
+ },
19093
+ {
19094
+ "name": "result",
19095
+ "type": {
19096
+ "text": "InsightResult | InsightFoldedResult"
19097
+ },
19098
+ "description": "The result item.",
19099
+ "fieldName": "result"
19100
+ },
19101
+ {
19102
+ "name": "content",
19103
+ "type": {
19104
+ "text": "ParentNode"
19105
+ },
19106
+ "description": "The result content to display.",
19107
+ "fieldName": "content"
19108
+ },
19109
+ {
19110
+ "name": "density",
19111
+ "type": {
19112
+ "text": "ItemDisplayDensity"
19113
+ },
19114
+ "default": "'normal'",
19115
+ "description": "How large or small results should be.",
19116
+ "fieldName": "density"
19117
+ },
19118
+ {
19119
+ "name": "image-size",
19120
+ "type": {
19121
+ "text": "ItemDisplayImageSize"
19122
+ },
19123
+ "default": "'icon'",
19124
+ "description": "The size of the image section in result list items.\nThis is overwritten by the image size defined in the result content, if it exists.",
19125
+ "fieldName": "imageSize"
19126
+ },
19127
+ {
19128
+ "name": "classes",
19129
+ "type": {
19130
+ "text": "string"
19131
+ },
19132
+ "default": "''",
19133
+ "description": "The classes to add to the result element.",
19134
+ "fieldName": "classes"
19135
+ }
19136
+ ],
19137
+ "mixins": [
19138
+ {
19139
+ "name": "ChildrenUpdateCompleteMixin",
19140
+ "package": "@/src/mixins/children-update-complete-mixin"
19141
+ }
19142
+ ],
19143
+ "superclass": {
19144
+ "name": "LitElement",
19145
+ "package": "lit"
19146
+ },
19147
+ "events": [],
19148
+ "tagName": "atomic-insight-result",
19149
+ "customElement": true
19150
+ }
19151
+ ],
19152
+ "exports": [
19153
+ {
19154
+ "kind": "js",
19155
+ "name": "AtomicInsightResult",
19156
+ "declaration": {
19157
+ "name": "AtomicInsightResult",
19158
+ "module": "src/components/insight/atomic-insight-result/atomic-insight-result.ts"
19159
+ }
19160
+ },
19161
+ {
19162
+ "kind": "custom-element-definition",
19163
+ "name": "atomic-insight-result",
19164
+ "declaration": {
19165
+ "name": "AtomicInsightResult",
19166
+ "module": "src/components/insight/atomic-insight-result/atomic-insight-result.ts"
19167
+ }
19168
+ }
19169
+ ]
19170
+ },
19168
19171
  {
19169
19172
  "kind": "javascript-module",
19170
19173
  "path": "src/components/insight/atomic-insight-result-action/atomic-insight-result-action.ts",
@@ -21036,6 +21039,15 @@
21036
21039
  }
21037
21040
  ],
21038
21041
  "members": [
21042
+ {
21043
+ "kind": "field",
21044
+ "name": "shadowRootOptions",
21045
+ "type": {
21046
+ "text": "object"
21047
+ },
21048
+ "static": true,
21049
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true, }"
21050
+ },
21039
21051
  {
21040
21052
  "kind": "field",
21041
21053
  "name": "bindings",
@@ -29651,15 +29663,6 @@
29651
29663
  },
29652
29664
  "privacy": "private",
29653
29665
  "readonly": true
29654
- },
29655
- {
29656
- "kind": "method",
29657
- "name": "initBindings",
29658
- "privacy": "private",
29659
- "inheritedFrom": {
29660
- "name": "InitializeBindingsMixin",
29661
- "module": "src/mixins/bindings-mixin.ts"
29662
- }
29663
29666
  }
29664
29667
  ],
29665
29668
  "attributes": [
@@ -29819,12 +29822,6 @@
29819
29822
  "fieldName": "dependsOn"
29820
29823
  }
29821
29824
  ],
29822
- "mixins": [
29823
- {
29824
- "name": "InitializeBindingsMixin",
29825
- "package": "@/src/mixins/bindings-mixin"
29826
- }
29827
- ],
29828
29825
  "superclass": {
29829
29826
  "name": "LitElement",
29830
29827
  "package": "lit"
@@ -41717,6 +41714,209 @@
41717
41714
  }
41718
41715
  ]
41719
41716
  },
41717
+ {
41718
+ "kind": "javascript-module",
41719
+ "path": "src/components/search/atomic-results-per-page/atomic-results-per-page.ts",
41720
+ "declarations": [
41721
+ {
41722
+ "kind": "class",
41723
+ "description": "The `atomic-results-per-page` component determines how many results to display per page.",
41724
+ "name": "AtomicResultsPerPage",
41725
+ "cssParts": [
41726
+ {
41727
+ "description": "The \"Results per page\" label.",
41728
+ "name": "label"
41729
+ },
41730
+ {
41731
+ "description": "The list of buttons.",
41732
+ "name": "buttons"
41733
+ },
41734
+ {
41735
+ "description": "The result per page button.",
41736
+ "name": "button"
41737
+ },
41738
+ {
41739
+ "description": "The active result per page button.",
41740
+ "name": "active-button"
41741
+ }
41742
+ ],
41743
+ "members": [
41744
+ {
41745
+ "kind": "field",
41746
+ "name": "bindings",
41747
+ "type": {
41748
+ "text": "Bindings"
41749
+ },
41750
+ "privacy": "private"
41751
+ },
41752
+ {
41753
+ "kind": "field",
41754
+ "name": "error",
41755
+ "type": {
41756
+ "text": "Error"
41757
+ },
41758
+ "privacy": "private"
41759
+ },
41760
+ {
41761
+ "kind": "field",
41762
+ "name": "resultPerPage",
41763
+ "type": {
41764
+ "text": "ResultsPerPage"
41765
+ },
41766
+ "privacy": "private"
41767
+ },
41768
+ {
41769
+ "kind": "field",
41770
+ "name": "searchStatus",
41771
+ "type": {
41772
+ "text": "SearchStatus"
41773
+ },
41774
+ "privacy": "private"
41775
+ },
41776
+ {
41777
+ "kind": "field",
41778
+ "name": "choices",
41779
+ "type": {
41780
+ "text": "number[]"
41781
+ },
41782
+ "privacy": "private"
41783
+ },
41784
+ {
41785
+ "kind": "field",
41786
+ "name": "radioGroupName",
41787
+ "privacy": "private",
41788
+ "readonly": true
41789
+ },
41790
+ {
41791
+ "kind": "field",
41792
+ "name": "resultPerPageState",
41793
+ "type": {
41794
+ "text": "ResultsPerPageState"
41795
+ },
41796
+ "privacy": "private"
41797
+ },
41798
+ {
41799
+ "kind": "field",
41800
+ "name": "searchStatusState",
41801
+ "type": {
41802
+ "text": "SearchStatusState"
41803
+ },
41804
+ "privacy": "private"
41805
+ },
41806
+ {
41807
+ "kind": "field",
41808
+ "name": "isAppLoaded",
41809
+ "type": {
41810
+ "text": "boolean"
41811
+ },
41812
+ "privacy": "public",
41813
+ "default": "false"
41814
+ },
41815
+ {
41816
+ "kind": "field",
41817
+ "name": "choicesDisplayed",
41818
+ "type": {
41819
+ "text": "string"
41820
+ },
41821
+ "default": "'10,25,50,100'",
41822
+ "description": "A list of choices for the number of results to display per page, separated by commas.",
41823
+ "attribute": "choices-displayed",
41824
+ "reflects": true
41825
+ },
41826
+ {
41827
+ "kind": "field",
41828
+ "name": "initialChoice",
41829
+ "type": {
41830
+ "text": "number"
41831
+ },
41832
+ "description": "The initial selection for the number of result per page. This should be part of the `choicesDisplayed` option. By default, this is set to the first value in `choicesDisplayed`.",
41833
+ "attribute": "initial-choice",
41834
+ "reflects": true
41835
+ },
41836
+ {
41837
+ "kind": "method",
41838
+ "name": "initialize",
41839
+ "privacy": "public"
41840
+ },
41841
+ {
41842
+ "kind": "method",
41843
+ "name": "scrollToTopEvent",
41844
+ "privacy": "private"
41845
+ },
41846
+ {
41847
+ "kind": "field",
41848
+ "name": "label",
41849
+ "privacy": "private",
41850
+ "readonly": true
41851
+ },
41852
+ {
41853
+ "kind": "method",
41854
+ "name": "initBindings",
41855
+ "privacy": "private",
41856
+ "inheritedFrom": {
41857
+ "name": "InitializeBindingsMixin",
41858
+ "module": "src/mixins/bindings-mixin.ts"
41859
+ }
41860
+ }
41861
+ ],
41862
+ "events": [
41863
+ {
41864
+ "description": "Emitted when the page should scroll to top after changing results per page.",
41865
+ "name": "atomic/scrollToTop"
41866
+ }
41867
+ ],
41868
+ "attributes": [
41869
+ {
41870
+ "name": "choices-displayed",
41871
+ "type": {
41872
+ "text": "string"
41873
+ },
41874
+ "default": "'10,25,50,100'",
41875
+ "description": "A list of choices for the number of results to display per page, separated by commas.",
41876
+ "fieldName": "choicesDisplayed"
41877
+ },
41878
+ {
41879
+ "name": "initial-choice",
41880
+ "type": {
41881
+ "text": "number"
41882
+ },
41883
+ "description": "The initial selection for the number of result per page. This should be part of the `choicesDisplayed` option. By default, this is set to the first value in `choicesDisplayed`.",
41884
+ "fieldName": "initialChoice"
41885
+ }
41886
+ ],
41887
+ "mixins": [
41888
+ {
41889
+ "name": "InitializeBindingsMixin",
41890
+ "package": "@/src/mixins/bindings-mixin.js"
41891
+ }
41892
+ ],
41893
+ "superclass": {
41894
+ "name": "LitElement",
41895
+ "package": "lit"
41896
+ },
41897
+ "tagName": "atomic-results-per-page",
41898
+ "customElement": true
41899
+ }
41900
+ ],
41901
+ "exports": [
41902
+ {
41903
+ "kind": "js",
41904
+ "name": "AtomicResultsPerPage",
41905
+ "declaration": {
41906
+ "name": "AtomicResultsPerPage",
41907
+ "module": "src/components/search/atomic-results-per-page/atomic-results-per-page.ts"
41908
+ }
41909
+ },
41910
+ {
41911
+ "kind": "custom-element-definition",
41912
+ "name": "atomic-results-per-page",
41913
+ "declaration": {
41914
+ "name": "AtomicResultsPerPage",
41915
+ "module": "src/components/search/atomic-results-per-page/atomic-results-per-page.ts"
41916
+ }
41917
+ }
41918
+ ]
41919
+ },
41720
41920
  {
41721
41921
  "kind": "javascript-module",
41722
41922
  "path": "src/components/search/atomic-search-box/atomic-search-box.ts",
@@ -41866,6 +42066,15 @@
41866
42066
  }
41867
42067
  ],
41868
42068
  "members": [
42069
+ {
42070
+ "kind": "field",
42071
+ "name": "shadowRootOptions",
42072
+ "type": {
42073
+ "text": "object"
42074
+ },
42075
+ "static": true,
42076
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true, }"
42077
+ },
41869
42078
  {
41870
42079
  "kind": "field",
41871
42080
  "name": "bindings",
@@ -42383,209 +42592,6 @@
42383
42592
  }
42384
42593
  ]
42385
42594
  },
42386
- {
42387
- "kind": "javascript-module",
42388
- "path": "src/components/search/atomic-results-per-page/atomic-results-per-page.ts",
42389
- "declarations": [
42390
- {
42391
- "kind": "class",
42392
- "description": "The `atomic-results-per-page` component determines how many results to display per page.",
42393
- "name": "AtomicResultsPerPage",
42394
- "cssParts": [
42395
- {
42396
- "description": "The \"Results per page\" label.",
42397
- "name": "label"
42398
- },
42399
- {
42400
- "description": "The list of buttons.",
42401
- "name": "buttons"
42402
- },
42403
- {
42404
- "description": "The result per page button.",
42405
- "name": "button"
42406
- },
42407
- {
42408
- "description": "The active result per page button.",
42409
- "name": "active-button"
42410
- }
42411
- ],
42412
- "members": [
42413
- {
42414
- "kind": "field",
42415
- "name": "bindings",
42416
- "type": {
42417
- "text": "Bindings"
42418
- },
42419
- "privacy": "private"
42420
- },
42421
- {
42422
- "kind": "field",
42423
- "name": "error",
42424
- "type": {
42425
- "text": "Error"
42426
- },
42427
- "privacy": "private"
42428
- },
42429
- {
42430
- "kind": "field",
42431
- "name": "resultPerPage",
42432
- "type": {
42433
- "text": "ResultsPerPage"
42434
- },
42435
- "privacy": "private"
42436
- },
42437
- {
42438
- "kind": "field",
42439
- "name": "searchStatus",
42440
- "type": {
42441
- "text": "SearchStatus"
42442
- },
42443
- "privacy": "private"
42444
- },
42445
- {
42446
- "kind": "field",
42447
- "name": "choices",
42448
- "type": {
42449
- "text": "number[]"
42450
- },
42451
- "privacy": "private"
42452
- },
42453
- {
42454
- "kind": "field",
42455
- "name": "radioGroupName",
42456
- "privacy": "private",
42457
- "readonly": true
42458
- },
42459
- {
42460
- "kind": "field",
42461
- "name": "resultPerPageState",
42462
- "type": {
42463
- "text": "ResultsPerPageState"
42464
- },
42465
- "privacy": "private"
42466
- },
42467
- {
42468
- "kind": "field",
42469
- "name": "searchStatusState",
42470
- "type": {
42471
- "text": "SearchStatusState"
42472
- },
42473
- "privacy": "private"
42474
- },
42475
- {
42476
- "kind": "field",
42477
- "name": "isAppLoaded",
42478
- "type": {
42479
- "text": "boolean"
42480
- },
42481
- "privacy": "public",
42482
- "default": "false"
42483
- },
42484
- {
42485
- "kind": "field",
42486
- "name": "choicesDisplayed",
42487
- "type": {
42488
- "text": "string"
42489
- },
42490
- "default": "'10,25,50,100'",
42491
- "description": "A list of choices for the number of results to display per page, separated by commas.",
42492
- "attribute": "choices-displayed",
42493
- "reflects": true
42494
- },
42495
- {
42496
- "kind": "field",
42497
- "name": "initialChoice",
42498
- "type": {
42499
- "text": "number"
42500
- },
42501
- "description": "The initial selection for the number of result per page. This should be part of the `choicesDisplayed` option. By default, this is set to the first value in `choicesDisplayed`.",
42502
- "attribute": "initial-choice",
42503
- "reflects": true
42504
- },
42505
- {
42506
- "kind": "method",
42507
- "name": "initialize",
42508
- "privacy": "public"
42509
- },
42510
- {
42511
- "kind": "method",
42512
- "name": "scrollToTopEvent",
42513
- "privacy": "private"
42514
- },
42515
- {
42516
- "kind": "field",
42517
- "name": "label",
42518
- "privacy": "private",
42519
- "readonly": true
42520
- },
42521
- {
42522
- "kind": "method",
42523
- "name": "initBindings",
42524
- "privacy": "private",
42525
- "inheritedFrom": {
42526
- "name": "InitializeBindingsMixin",
42527
- "module": "src/mixins/bindings-mixin.ts"
42528
- }
42529
- }
42530
- ],
42531
- "events": [
42532
- {
42533
- "description": "Emitted when the page should scroll to top after changing results per page.",
42534
- "name": "atomic/scrollToTop"
42535
- }
42536
- ],
42537
- "attributes": [
42538
- {
42539
- "name": "choices-displayed",
42540
- "type": {
42541
- "text": "string"
42542
- },
42543
- "default": "'10,25,50,100'",
42544
- "description": "A list of choices for the number of results to display per page, separated by commas.",
42545
- "fieldName": "choicesDisplayed"
42546
- },
42547
- {
42548
- "name": "initial-choice",
42549
- "type": {
42550
- "text": "number"
42551
- },
42552
- "description": "The initial selection for the number of result per page. This should be part of the `choicesDisplayed` option. By default, this is set to the first value in `choicesDisplayed`.",
42553
- "fieldName": "initialChoice"
42554
- }
42555
- ],
42556
- "mixins": [
42557
- {
42558
- "name": "InitializeBindingsMixin",
42559
- "package": "@/src/mixins/bindings-mixin.js"
42560
- }
42561
- ],
42562
- "superclass": {
42563
- "name": "LitElement",
42564
- "package": "lit"
42565
- },
42566
- "tagName": "atomic-results-per-page",
42567
- "customElement": true
42568
- }
42569
- ],
42570
- "exports": [
42571
- {
42572
- "kind": "js",
42573
- "name": "AtomicResultsPerPage",
42574
- "declaration": {
42575
- "name": "AtomicResultsPerPage",
42576
- "module": "src/components/search/atomic-results-per-page/atomic-results-per-page.ts"
42577
- }
42578
- },
42579
- {
42580
- "kind": "custom-element-definition",
42581
- "name": "atomic-results-per-page",
42582
- "declaration": {
42583
- "name": "AtomicResultsPerPage",
42584
- "module": "src/components/search/atomic-results-per-page/atomic-results-per-page.ts"
42585
- }
42586
- }
42587
- ]
42588
- },
42589
42595
  {
42590
42596
  "kind": "javascript-module",
42591
42597
  "path": "src/components/search/atomic-search-box-instant-results/atomic-search-box-instant-results.ts",
@@ -43208,185 +43214,6 @@
43208
43214
  }
43209
43215
  ]
43210
43216
  },
43211
- {
43212
- "kind": "javascript-module",
43213
- "path": "src/components/search/atomic-search-layout/atomic-search-layout.ts",
43214
- "declarations": [
43215
- {
43216
- "kind": "class",
43217
- "description": "The `atomic-search-layout` helps organize elements in the page.",
43218
- "name": "AtomicSearchLayout",
43219
- "cssProperties": [
43220
- {
43221
- "description": "The maximum width that the search box input will take.",
43222
- "name": "--atomic-layout-max-search-box-input-width:"
43223
- },
43224
- {
43225
- "description": "The maximum width that the search box suggestions will take when displaying a double list.",
43226
- "name": "--atomic-layout-max-search-box-double-suggestions-width:"
43227
- },
43228
- {
43229
- "description": "The width of the left list when displaying a double list.",
43230
- "name": "--atomic-layout-search-box-left-suggestions-width:"
43231
- }
43232
- ],
43233
- "members": [
43234
- {
43235
- "kind": "field",
43236
- "name": "error",
43237
- "type": {
43238
- "text": "Error"
43239
- },
43240
- "privacy": "private"
43241
- },
43242
- {
43243
- "kind": "field",
43244
- "name": "mobileBreakpoint",
43245
- "type": {
43246
- "text": "string"
43247
- },
43248
- "default": "DEFAULT_MOBILE_BREAKPOINT",
43249
- "description": "The viewport width at which the layout goes from desktop to mobile.\nFor example: 800px, 65rem.",
43250
- "attribute": "mobile-breakpoint",
43251
- "reflects": true
43252
- },
43253
- {
43254
- "kind": "field",
43255
- "name": "layoutStylesController",
43256
- "privacy": "private",
43257
- "default": "new LayoutStylesController( this, buildSearchLayout, 'atomic-search-layout-' )"
43258
- },
43259
- {
43260
- "kind": "method",
43261
- "name": "emitBreakpointChangeEvent",
43262
- "privacy": "private"
43263
- },
43264
- {
43265
- "kind": "method",
43266
- "name": "onMobileBreakpointChange",
43267
- "privacy": "public"
43268
- },
43269
- {
43270
- "kind": "method",
43271
- "name": "injectStyles",
43272
- "parameters": [
43273
- {
43274
- "name": "dynamicStyles",
43275
- "optional": true,
43276
- "type": {
43277
- "text": "CSSResultGroup"
43278
- },
43279
- "description": "Optional dynamic styles to inject along with static styles"
43280
- }
43281
- ],
43282
- "description": "Injects styles into the document or shadow root.\n\nWhen called without arguments, injects the component's static styles.\nWhen called with dynamic styles, injects both static and dynamic styles.",
43283
- "inheritedFrom": {
43284
- "name": "LightDomMixin",
43285
- "module": "src/mixins/light-dom.ts"
43286
- }
43287
- },
43288
- {
43289
- "kind": "method",
43290
- "name": "getStyleSheet",
43291
- "privacy": "private",
43292
- "return": {
43293
- "type": {
43294
- "text": "CSSStyleSheet | null"
43295
- }
43296
- },
43297
- "parameters": [
43298
- {
43299
- "name": "style",
43300
- "type": {
43301
- "text": "CSSResultOrNative | CSSResultArray | null | undefined"
43302
- }
43303
- }
43304
- ],
43305
- "inheritedFrom": {
43306
- "name": "LightDomMixin",
43307
- "module": "src/mixins/light-dom.ts"
43308
- }
43309
- },
43310
- {
43311
- "kind": "method",
43312
- "name": "getUpdateComplete",
43313
- "return": {
43314
- "type": {
43315
- "text": "Promise<boolean>"
43316
- }
43317
- },
43318
- "inheritedFrom": {
43319
- "name": "ChildrenUpdateCompleteMixin",
43320
- "module": "src/mixins/children-update-complete-mixin.ts"
43321
- }
43322
- }
43323
- ],
43324
- "events": [
43325
- {
43326
- "description": "Emitted when the mobile breakpoint changes. The event detail contains `{ breakpoint: string }`.",
43327
- "name": "atomic-layout-breakpoint-change"
43328
- }
43329
- ],
43330
- "attributes": [
43331
- {
43332
- "name": "mobile-breakpoint",
43333
- "type": {
43334
- "text": "string"
43335
- },
43336
- "default": "DEFAULT_MOBILE_BREAKPOINT",
43337
- "description": "The viewport width at which the layout goes from desktop to mobile.\nFor example: 800px, 65rem.",
43338
- "fieldName": "mobileBreakpoint"
43339
- }
43340
- ],
43341
- "mixins": [
43342
- {
43343
- "name": "LightDomMixin",
43344
- "package": "@/src/mixins/light-dom"
43345
- },
43346
- {
43347
- "name": "ChildrenUpdateCompleteMixin",
43348
- "package": "@/src/mixins/children-update-complete-mixin"
43349
- }
43350
- ],
43351
- "superclass": {
43352
- "name": "LitElement",
43353
- "package": "lit"
43354
- },
43355
- "tagName": "atomic-search-layout",
43356
- "customElement": true
43357
- }
43358
- ],
43359
- "exports": [
43360
- {
43361
- "kind": "js",
43362
- "name": "AtomicSearchLayout",
43363
- "declaration": {
43364
- "name": "AtomicSearchLayout",
43365
- "module": "src/components/search/atomic-search-layout/atomic-search-layout.ts"
43366
- }
43367
- },
43368
- {
43369
- "kind": "custom-element-definition",
43370
- "name": "atomic-search-layout",
43371
- "declaration": {
43372
- "name": "AtomicSearchLayout",
43373
- "module": "src/components/search/atomic-search-layout/atomic-search-layout.ts"
43374
- }
43375
- }
43376
- ]
43377
- },
43378
- {
43379
- "kind": "javascript-module",
43380
- "path": "src/components/search/atomic-search-layout/atomic-search-layout.tw.css.ts",
43381
- "declarations": [],
43382
- "exports": []
43383
- },
43384
- {
43385
- "kind": "javascript-module",
43386
- "path": "src/components/search/atomic-search-layout/search-layout.ts",
43387
- "declarations": [],
43388
- "exports": []
43389
- },
43390
43217
  {
43391
43218
  "kind": "javascript-module",
43392
43219
  "path": "src/components/search/atomic-search-interface/analytics-config.ts",
@@ -44072,6 +43899,185 @@
44072
43899
  "declarations": [],
44073
43900
  "exports": []
44074
43901
  },
43902
+ {
43903
+ "kind": "javascript-module",
43904
+ "path": "src/components/search/atomic-search-layout/atomic-search-layout.ts",
43905
+ "declarations": [
43906
+ {
43907
+ "kind": "class",
43908
+ "description": "The `atomic-search-layout` helps organize elements in the page.",
43909
+ "name": "AtomicSearchLayout",
43910
+ "cssProperties": [
43911
+ {
43912
+ "description": "The maximum width that the search box input will take.",
43913
+ "name": "--atomic-layout-max-search-box-input-width:"
43914
+ },
43915
+ {
43916
+ "description": "The maximum width that the search box suggestions will take when displaying a double list.",
43917
+ "name": "--atomic-layout-max-search-box-double-suggestions-width:"
43918
+ },
43919
+ {
43920
+ "description": "The width of the left list when displaying a double list.",
43921
+ "name": "--atomic-layout-search-box-left-suggestions-width:"
43922
+ }
43923
+ ],
43924
+ "members": [
43925
+ {
43926
+ "kind": "field",
43927
+ "name": "error",
43928
+ "type": {
43929
+ "text": "Error"
43930
+ },
43931
+ "privacy": "private"
43932
+ },
43933
+ {
43934
+ "kind": "field",
43935
+ "name": "mobileBreakpoint",
43936
+ "type": {
43937
+ "text": "string"
43938
+ },
43939
+ "default": "DEFAULT_MOBILE_BREAKPOINT",
43940
+ "description": "The viewport width at which the layout goes from desktop to mobile.\nFor example: 800px, 65rem.",
43941
+ "attribute": "mobile-breakpoint",
43942
+ "reflects": true
43943
+ },
43944
+ {
43945
+ "kind": "field",
43946
+ "name": "layoutStylesController",
43947
+ "privacy": "private",
43948
+ "default": "new LayoutStylesController( this, buildSearchLayout, 'atomic-search-layout-' )"
43949
+ },
43950
+ {
43951
+ "kind": "method",
43952
+ "name": "emitBreakpointChangeEvent",
43953
+ "privacy": "private"
43954
+ },
43955
+ {
43956
+ "kind": "method",
43957
+ "name": "onMobileBreakpointChange",
43958
+ "privacy": "public"
43959
+ },
43960
+ {
43961
+ "kind": "method",
43962
+ "name": "injectStyles",
43963
+ "parameters": [
43964
+ {
43965
+ "name": "dynamicStyles",
43966
+ "optional": true,
43967
+ "type": {
43968
+ "text": "CSSResultGroup"
43969
+ },
43970
+ "description": "Optional dynamic styles to inject along with static styles"
43971
+ }
43972
+ ],
43973
+ "description": "Injects styles into the document or shadow root.\n\nWhen called without arguments, injects the component's static styles.\nWhen called with dynamic styles, injects both static and dynamic styles.",
43974
+ "inheritedFrom": {
43975
+ "name": "LightDomMixin",
43976
+ "module": "src/mixins/light-dom.ts"
43977
+ }
43978
+ },
43979
+ {
43980
+ "kind": "method",
43981
+ "name": "getStyleSheet",
43982
+ "privacy": "private",
43983
+ "return": {
43984
+ "type": {
43985
+ "text": "CSSStyleSheet | null"
43986
+ }
43987
+ },
43988
+ "parameters": [
43989
+ {
43990
+ "name": "style",
43991
+ "type": {
43992
+ "text": "CSSResultOrNative | CSSResultArray | null | undefined"
43993
+ }
43994
+ }
43995
+ ],
43996
+ "inheritedFrom": {
43997
+ "name": "LightDomMixin",
43998
+ "module": "src/mixins/light-dom.ts"
43999
+ }
44000
+ },
44001
+ {
44002
+ "kind": "method",
44003
+ "name": "getUpdateComplete",
44004
+ "return": {
44005
+ "type": {
44006
+ "text": "Promise<boolean>"
44007
+ }
44008
+ },
44009
+ "inheritedFrom": {
44010
+ "name": "ChildrenUpdateCompleteMixin",
44011
+ "module": "src/mixins/children-update-complete-mixin.ts"
44012
+ }
44013
+ }
44014
+ ],
44015
+ "events": [
44016
+ {
44017
+ "description": "Emitted when the mobile breakpoint changes. The event detail contains `{ breakpoint: string }`.",
44018
+ "name": "atomic-layout-breakpoint-change"
44019
+ }
44020
+ ],
44021
+ "attributes": [
44022
+ {
44023
+ "name": "mobile-breakpoint",
44024
+ "type": {
44025
+ "text": "string"
44026
+ },
44027
+ "default": "DEFAULT_MOBILE_BREAKPOINT",
44028
+ "description": "The viewport width at which the layout goes from desktop to mobile.\nFor example: 800px, 65rem.",
44029
+ "fieldName": "mobileBreakpoint"
44030
+ }
44031
+ ],
44032
+ "mixins": [
44033
+ {
44034
+ "name": "LightDomMixin",
44035
+ "package": "@/src/mixins/light-dom"
44036
+ },
44037
+ {
44038
+ "name": "ChildrenUpdateCompleteMixin",
44039
+ "package": "@/src/mixins/children-update-complete-mixin"
44040
+ }
44041
+ ],
44042
+ "superclass": {
44043
+ "name": "LitElement",
44044
+ "package": "lit"
44045
+ },
44046
+ "tagName": "atomic-search-layout",
44047
+ "customElement": true
44048
+ }
44049
+ ],
44050
+ "exports": [
44051
+ {
44052
+ "kind": "js",
44053
+ "name": "AtomicSearchLayout",
44054
+ "declaration": {
44055
+ "name": "AtomicSearchLayout",
44056
+ "module": "src/components/search/atomic-search-layout/atomic-search-layout.ts"
44057
+ }
44058
+ },
44059
+ {
44060
+ "kind": "custom-element-definition",
44061
+ "name": "atomic-search-layout",
44062
+ "declaration": {
44063
+ "name": "AtomicSearchLayout",
44064
+ "module": "src/components/search/atomic-search-layout/atomic-search-layout.ts"
44065
+ }
44066
+ }
44067
+ ]
44068
+ },
44069
+ {
44070
+ "kind": "javascript-module",
44071
+ "path": "src/components/search/atomic-search-layout/atomic-search-layout.tw.css.ts",
44072
+ "declarations": [],
44073
+ "exports": []
44074
+ },
44075
+ {
44076
+ "kind": "javascript-module",
44077
+ "path": "src/components/search/atomic-search-layout/search-layout.ts",
44078
+ "declarations": [],
44079
+ "exports": []
44080
+ },
44075
44081
  {
44076
44082
  "kind": "javascript-module",
44077
44083
  "path": "src/components/search/atomic-segmented-facet/atomic-segmented-facet.ts",
@@ -44306,7 +44312,7 @@
44306
44312
  "kind": "field",
44307
44313
  "name": "dependenciesManager",
44308
44314
  "type": {
44309
- "text": "FacetConditionsManager"
44315
+ "text": "FacetConditionsManager | undefined"
44310
44316
  },
44311
44317
  "privacy": "private"
44312
44318
  },
@@ -44692,235 +44698,6 @@
44692
44698
  }
44693
44699
  ]
44694
44700
  },
44695
- {
44696
- "kind": "javascript-module",
44697
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/atomic-smart-snippet-feedback-modal.ts",
44698
- "declarations": [
44699
- {
44700
- "kind": "class",
44701
- "description": "The `atomic-smart-snippet-feedback-modal` is automatically created as a child of the `atomic-search-interface` when the `atomic-smart-snippet` is initialized.\n\nWhen the modal is opened, the class `atomic-modal-opened` is added to the body, allowing further customization.",
44702
- "name": "AtomicSmartSnippetFeedbackModal",
44703
- "cssParts": [
44704
- {
44705
- "description": "The transparent backdrop hiding the content behind the modal.",
44706
- "name": "backdrop"
44707
- },
44708
- {
44709
- "description": "The modal's outermost container with the outline and background.",
44710
- "name": "container"
44711
- },
44712
- {
44713
- "description": "The wrapper around the header.",
44714
- "name": "header-wrapper"
44715
- },
44716
- {
44717
- "description": "The header of the modal, containing the title.",
44718
- "name": "header"
44719
- },
44720
- {
44721
- "description": "The horizontal ruler underneath the header.",
44722
- "name": "header-ruler"
44723
- },
44724
- {
44725
- "description": "The wrapper around the body.",
44726
- "name": "body-wrapper"
44727
- },
44728
- {
44729
- "description": "The body of the modal, between the header and the footer.",
44730
- "name": "body"
44731
- },
44732
- {
44733
- "description": "The wrapper around the reason and details.",
44734
- "name": "form"
44735
- },
44736
- {
44737
- "description": "The title above the reason radio buttons.",
44738
- "name": "reason-title"
44739
- },
44740
- {
44741
- "description": "A wrapper around the radio button and the label of a reason.",
44742
- "name": "reason"
44743
- },
44744
- {
44745
- "description": "A radio button representing a reason.",
44746
- "name": "reason-radio"
44747
- },
44748
- {
44749
- "description": "A label linked to a radio button representing a reason.",
44750
- "name": "reason-label"
44751
- },
44752
- {
44753
- "description": "The title above the details input.",
44754
- "name": "details-title"
44755
- },
44756
- {
44757
- "description": "The input to specify additional details.",
44758
- "name": "details-input"
44759
- },
44760
- {
44761
- "description": "The wrapper with a shadow around the footer.",
44762
- "name": "footer-wrapper"
44763
- },
44764
- {
44765
- "description": "The footer at the bottom of the modal.",
44766
- "name": "footer"
44767
- },
44768
- {
44769
- "description": "The wrapper around the cancel and submit buttons.",
44770
- "name": "buttons"
44771
- },
44772
- {
44773
- "description": "The cancel button.",
44774
- "name": "cancel-button"
44775
- },
44776
- {
44777
- "description": "The submit button.",
44778
- "name": "submit-button"
44779
- }
44780
- ],
44781
- "members": [
44782
- {
44783
- "kind": "field",
44784
- "name": "bindings",
44785
- "type": {
44786
- "text": "Bindings"
44787
- },
44788
- "privacy": "private"
44789
- },
44790
- {
44791
- "kind": "field",
44792
- "name": "error",
44793
- "type": {
44794
- "text": "Error"
44795
- },
44796
- "privacy": "private"
44797
- },
44798
- {
44799
- "kind": "field",
44800
- "name": "source",
44801
- "type": {
44802
- "text": "HTMLElement | undefined"
44803
- },
44804
- "description": "The element that triggers the feedback modal."
44805
- },
44806
- {
44807
- "kind": "field",
44808
- "name": "isOpen",
44809
- "type": {
44810
- "text": "boolean"
44811
- },
44812
- "privacy": "public",
44813
- "default": "false",
44814
- "description": "Whether the modal is open.",
44815
- "attribute": "is-open",
44816
- "reflects": true
44817
- },
44818
- {
44819
- "kind": "field",
44820
- "name": "currentAnswer",
44821
- "type": {
44822
- "text": "SmartSnippetFeedback | 'other' | undefined"
44823
- },
44824
- "privacy": "private"
44825
- },
44826
- {
44827
- "kind": "field",
44828
- "name": "detailsInputRef",
44829
- "type": {
44830
- "text": "Ref<HTMLTextAreaElement>"
44831
- },
44832
- "privacy": "private"
44833
- },
44834
- {
44835
- "kind": "field",
44836
- "name": "formId",
44837
- "privacy": "private",
44838
- "readonly": true
44839
- },
44840
- {
44841
- "kind": "field",
44842
- "name": "smartSnippet",
44843
- "type": {
44844
- "text": "SmartSnippet"
44845
- },
44846
- "privacy": "private"
44847
- },
44848
- {
44849
- "kind": "method",
44850
- "name": "initialize",
44851
- "privacy": "public"
44852
- },
44853
- {
44854
- "kind": "method",
44855
- "name": "close",
44856
- "privacy": "private"
44857
- },
44858
- {
44859
- "kind": "method",
44860
- "name": "sendFeedback",
44861
- "privacy": "private",
44862
- "parameters": [
44863
- {
44864
- "name": "e",
44865
- "type": {
44866
- "text": "Event"
44867
- }
44868
- }
44869
- ]
44870
- }
44871
- ],
44872
- "events": [
44873
- {
44874
- "name": "feedbackSent",
44875
- "type": {
44876
- "text": "Event"
44877
- }
44878
- }
44879
- ],
44880
- "attributes": [
44881
- {
44882
- "name": "is-open",
44883
- "type": {
44884
- "text": "boolean"
44885
- },
44886
- "default": "false",
44887
- "description": "Whether the modal is open.",
44888
- "fieldName": "isOpen"
44889
- }
44890
- ],
44891
- "superclass": {
44892
- "name": "LitElement",
44893
- "package": "lit"
44894
- },
44895
- "tagName": "atomic-smart-snippet-feedback-modal",
44896
- "customElement": true
44897
- }
44898
- ],
44899
- "exports": [
44900
- {
44901
- "kind": "js",
44902
- "name": "AtomicSmartSnippetFeedbackModal",
44903
- "declaration": {
44904
- "name": "AtomicSmartSnippetFeedbackModal",
44905
- "module": "src/components/search/atomic-smart-snippet-feedback-modal/atomic-smart-snippet-feedback-modal.ts"
44906
- }
44907
- },
44908
- {
44909
- "kind": "custom-element-definition",
44910
- "name": "atomic-smart-snippet-feedback-modal",
44911
- "declaration": {
44912
- "name": "AtomicSmartSnippetFeedbackModal",
44913
- "module": "src/components/search/atomic-smart-snippet-feedback-modal/atomic-smart-snippet-feedback-modal.ts"
44914
- }
44915
- }
44916
- ]
44917
- },
44918
- {
44919
- "kind": "javascript-module",
44920
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/atomic-smart-snippet-feedback-modal.tw.css.ts",
44921
- "declarations": [],
44922
- "exports": []
44923
- },
44924
44701
  {
44925
44702
  "kind": "javascript-module",
44926
44703
  "path": "src/components/search/atomic-smart-snippet/atomic-smart-snippet.ts",
@@ -45362,6 +45139,235 @@
45362
45139
  "declarations": [],
45363
45140
  "exports": []
45364
45141
  },
45142
+ {
45143
+ "kind": "javascript-module",
45144
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/atomic-smart-snippet-feedback-modal.ts",
45145
+ "declarations": [
45146
+ {
45147
+ "kind": "class",
45148
+ "description": "The `atomic-smart-snippet-feedback-modal` is automatically created as a child of the `atomic-search-interface` when the `atomic-smart-snippet` is initialized.\n\nWhen the modal is opened, the class `atomic-modal-opened` is added to the body, allowing further customization.",
45149
+ "name": "AtomicSmartSnippetFeedbackModal",
45150
+ "cssParts": [
45151
+ {
45152
+ "description": "The transparent backdrop hiding the content behind the modal.",
45153
+ "name": "backdrop"
45154
+ },
45155
+ {
45156
+ "description": "The modal's outermost container with the outline and background.",
45157
+ "name": "container"
45158
+ },
45159
+ {
45160
+ "description": "The wrapper around the header.",
45161
+ "name": "header-wrapper"
45162
+ },
45163
+ {
45164
+ "description": "The header of the modal, containing the title.",
45165
+ "name": "header"
45166
+ },
45167
+ {
45168
+ "description": "The horizontal ruler underneath the header.",
45169
+ "name": "header-ruler"
45170
+ },
45171
+ {
45172
+ "description": "The wrapper around the body.",
45173
+ "name": "body-wrapper"
45174
+ },
45175
+ {
45176
+ "description": "The body of the modal, between the header and the footer.",
45177
+ "name": "body"
45178
+ },
45179
+ {
45180
+ "description": "The wrapper around the reason and details.",
45181
+ "name": "form"
45182
+ },
45183
+ {
45184
+ "description": "The title above the reason radio buttons.",
45185
+ "name": "reason-title"
45186
+ },
45187
+ {
45188
+ "description": "A wrapper around the radio button and the label of a reason.",
45189
+ "name": "reason"
45190
+ },
45191
+ {
45192
+ "description": "A radio button representing a reason.",
45193
+ "name": "reason-radio"
45194
+ },
45195
+ {
45196
+ "description": "A label linked to a radio button representing a reason.",
45197
+ "name": "reason-label"
45198
+ },
45199
+ {
45200
+ "description": "The title above the details input.",
45201
+ "name": "details-title"
45202
+ },
45203
+ {
45204
+ "description": "The input to specify additional details.",
45205
+ "name": "details-input"
45206
+ },
45207
+ {
45208
+ "description": "The wrapper with a shadow around the footer.",
45209
+ "name": "footer-wrapper"
45210
+ },
45211
+ {
45212
+ "description": "The footer at the bottom of the modal.",
45213
+ "name": "footer"
45214
+ },
45215
+ {
45216
+ "description": "The wrapper around the cancel and submit buttons.",
45217
+ "name": "buttons"
45218
+ },
45219
+ {
45220
+ "description": "The cancel button.",
45221
+ "name": "cancel-button"
45222
+ },
45223
+ {
45224
+ "description": "The submit button.",
45225
+ "name": "submit-button"
45226
+ }
45227
+ ],
45228
+ "members": [
45229
+ {
45230
+ "kind": "field",
45231
+ "name": "bindings",
45232
+ "type": {
45233
+ "text": "Bindings"
45234
+ },
45235
+ "privacy": "private"
45236
+ },
45237
+ {
45238
+ "kind": "field",
45239
+ "name": "error",
45240
+ "type": {
45241
+ "text": "Error"
45242
+ },
45243
+ "privacy": "private"
45244
+ },
45245
+ {
45246
+ "kind": "field",
45247
+ "name": "source",
45248
+ "type": {
45249
+ "text": "HTMLElement | undefined"
45250
+ },
45251
+ "description": "The element that triggers the feedback modal."
45252
+ },
45253
+ {
45254
+ "kind": "field",
45255
+ "name": "isOpen",
45256
+ "type": {
45257
+ "text": "boolean"
45258
+ },
45259
+ "privacy": "public",
45260
+ "default": "false",
45261
+ "description": "Whether the modal is open.",
45262
+ "attribute": "is-open",
45263
+ "reflects": true
45264
+ },
45265
+ {
45266
+ "kind": "field",
45267
+ "name": "currentAnswer",
45268
+ "type": {
45269
+ "text": "SmartSnippetFeedback | 'other' | undefined"
45270
+ },
45271
+ "privacy": "private"
45272
+ },
45273
+ {
45274
+ "kind": "field",
45275
+ "name": "detailsInputRef",
45276
+ "type": {
45277
+ "text": "Ref<HTMLTextAreaElement>"
45278
+ },
45279
+ "privacy": "private"
45280
+ },
45281
+ {
45282
+ "kind": "field",
45283
+ "name": "formId",
45284
+ "privacy": "private",
45285
+ "readonly": true
45286
+ },
45287
+ {
45288
+ "kind": "field",
45289
+ "name": "smartSnippet",
45290
+ "type": {
45291
+ "text": "SmartSnippet"
45292
+ },
45293
+ "privacy": "private"
45294
+ },
45295
+ {
45296
+ "kind": "method",
45297
+ "name": "initialize",
45298
+ "privacy": "public"
45299
+ },
45300
+ {
45301
+ "kind": "method",
45302
+ "name": "close",
45303
+ "privacy": "private"
45304
+ },
45305
+ {
45306
+ "kind": "method",
45307
+ "name": "sendFeedback",
45308
+ "privacy": "private",
45309
+ "parameters": [
45310
+ {
45311
+ "name": "e",
45312
+ "type": {
45313
+ "text": "Event"
45314
+ }
45315
+ }
45316
+ ]
45317
+ }
45318
+ ],
45319
+ "events": [
45320
+ {
45321
+ "name": "feedbackSent",
45322
+ "type": {
45323
+ "text": "Event"
45324
+ }
45325
+ }
45326
+ ],
45327
+ "attributes": [
45328
+ {
45329
+ "name": "is-open",
45330
+ "type": {
45331
+ "text": "boolean"
45332
+ },
45333
+ "default": "false",
45334
+ "description": "Whether the modal is open.",
45335
+ "fieldName": "isOpen"
45336
+ }
45337
+ ],
45338
+ "superclass": {
45339
+ "name": "LitElement",
45340
+ "package": "lit"
45341
+ },
45342
+ "tagName": "atomic-smart-snippet-feedback-modal",
45343
+ "customElement": true
45344
+ }
45345
+ ],
45346
+ "exports": [
45347
+ {
45348
+ "kind": "js",
45349
+ "name": "AtomicSmartSnippetFeedbackModal",
45350
+ "declaration": {
45351
+ "name": "AtomicSmartSnippetFeedbackModal",
45352
+ "module": "src/components/search/atomic-smart-snippet-feedback-modal/atomic-smart-snippet-feedback-modal.ts"
45353
+ }
45354
+ },
45355
+ {
45356
+ "kind": "custom-element-definition",
45357
+ "name": "atomic-smart-snippet-feedback-modal",
45358
+ "declaration": {
45359
+ "name": "AtomicSmartSnippetFeedbackModal",
45360
+ "module": "src/components/search/atomic-smart-snippet-feedback-modal/atomic-smart-snippet-feedback-modal.ts"
45361
+ }
45362
+ }
45363
+ ]
45364
+ },
45365
+ {
45366
+ "kind": "javascript-module",
45367
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/atomic-smart-snippet-feedback-modal.tw.css.ts",
45368
+ "declarations": [],
45369
+ "exports": []
45370
+ },
45365
45371
  {
45366
45372
  "kind": "javascript-module",
45367
45373
  "path": "src/components/search/atomic-smart-snippet-suggestions/atomic-smart-snippet-suggestions.ts",
@@ -47137,73 +47143,73 @@
47137
47143
  },
47138
47144
  {
47139
47145
  "kind": "javascript-module",
47140
- "path": "src/components/commerce/atomic-commerce-facet/e2e/atomic-commerce-facet.e2e.ts",
47146
+ "path": "src/components/commerce/atomic-commerce-did-you-mean/e2e/atomic-commerce-did-you-mean.e2e.ts",
47141
47147
  "declarations": [],
47142
47148
  "exports": []
47143
47149
  },
47144
47150
  {
47145
47151
  "kind": "javascript-module",
47146
- "path": "src/components/commerce/atomic-commerce-facet/e2e/fixture.ts",
47152
+ "path": "src/components/commerce/atomic-commerce-did-you-mean/e2e/fixture.ts",
47147
47153
  "declarations": [],
47148
47154
  "exports": []
47149
47155
  },
47150
47156
  {
47151
47157
  "kind": "javascript-module",
47152
- "path": "src/components/commerce/atomic-commerce-facet/e2e/page-object.ts",
47158
+ "path": "src/components/commerce/atomic-commerce-did-you-mean/e2e/page-object.ts",
47153
47159
  "declarations": [],
47154
47160
  "exports": []
47155
47161
  },
47156
47162
  {
47157
47163
  "kind": "javascript-module",
47158
- "path": "src/components/commerce/atomic-commerce-facets/e2e/atomic-commerce-facets.e2e.ts",
47164
+ "path": "src/components/commerce/atomic-commerce-facet/e2e/atomic-commerce-facet.e2e.ts",
47159
47165
  "declarations": [],
47160
47166
  "exports": []
47161
47167
  },
47162
47168
  {
47163
47169
  "kind": "javascript-module",
47164
- "path": "src/components/commerce/atomic-commerce-facets/e2e/fixture.ts",
47170
+ "path": "src/components/commerce/atomic-commerce-facet/e2e/fixture.ts",
47165
47171
  "declarations": [],
47166
47172
  "exports": []
47167
47173
  },
47168
47174
  {
47169
47175
  "kind": "javascript-module",
47170
- "path": "src/components/commerce/atomic-commerce-facets/e2e/page-object.ts",
47176
+ "path": "src/components/commerce/atomic-commerce-facet/e2e/page-object.ts",
47171
47177
  "declarations": [],
47172
47178
  "exports": []
47173
47179
  },
47174
47180
  {
47175
47181
  "kind": "javascript-module",
47176
- "path": "src/components/commerce/atomic-commerce-interface/e2e/atomic-commerce-interface.e2e.ts",
47182
+ "path": "src/components/commerce/atomic-commerce-facets/e2e/atomic-commerce-facets.e2e.ts",
47177
47183
  "declarations": [],
47178
47184
  "exports": []
47179
47185
  },
47180
47186
  {
47181
47187
  "kind": "javascript-module",
47182
- "path": "src/components/commerce/atomic-commerce-interface/e2e/fixture.ts",
47188
+ "path": "src/components/commerce/atomic-commerce-facets/e2e/fixture.ts",
47183
47189
  "declarations": [],
47184
47190
  "exports": []
47185
47191
  },
47186
47192
  {
47187
47193
  "kind": "javascript-module",
47188
- "path": "src/components/commerce/atomic-commerce-interface/e2e/page-object.ts",
47194
+ "path": "src/components/commerce/atomic-commerce-facets/e2e/page-object.ts",
47189
47195
  "declarations": [],
47190
47196
  "exports": []
47191
47197
  },
47192
47198
  {
47193
47199
  "kind": "javascript-module",
47194
- "path": "src/components/commerce/atomic-commerce-did-you-mean/e2e/atomic-commerce-did-you-mean.e2e.ts",
47200
+ "path": "src/components/commerce/atomic-commerce-interface/e2e/atomic-commerce-interface.e2e.ts",
47195
47201
  "declarations": [],
47196
47202
  "exports": []
47197
47203
  },
47198
47204
  {
47199
47205
  "kind": "javascript-module",
47200
- "path": "src/components/commerce/atomic-commerce-did-you-mean/e2e/fixture.ts",
47206
+ "path": "src/components/commerce/atomic-commerce-interface/e2e/fixture.ts",
47201
47207
  "declarations": [],
47202
47208
  "exports": []
47203
47209
  },
47204
47210
  {
47205
47211
  "kind": "javascript-module",
47206
- "path": "src/components/commerce/atomic-commerce-did-you-mean/e2e/page-object.ts",
47212
+ "path": "src/components/commerce/atomic-commerce-interface/e2e/page-object.ts",
47207
47213
  "declarations": [],
47208
47214
  "exports": []
47209
47215
  },
@@ -47807,227 +47813,6 @@
47807
47813
  "declarations": [],
47808
47814
  "exports": []
47809
47815
  },
47810
- {
47811
- "kind": "javascript-module",
47812
- "path": "src/components/common/facets/category-facet/all-categories-button.ts",
47813
- "declarations": [],
47814
- "exports": []
47815
- },
47816
- {
47817
- "kind": "javascript-module",
47818
- "path": "src/components/common/facets/category-facet/all-categories-localized-label.ts",
47819
- "declarations": [],
47820
- "exports": []
47821
- },
47822
- {
47823
- "kind": "javascript-module",
47824
- "path": "src/components/common/facets/category-facet/children-as-tree-container.ts",
47825
- "declarations": [],
47826
- "exports": []
47827
- },
47828
- {
47829
- "kind": "javascript-module",
47830
- "path": "src/components/common/facets/category-facet/parent-as-tree-container.ts",
47831
- "declarations": [],
47832
- "exports": []
47833
- },
47834
- {
47835
- "kind": "javascript-module",
47836
- "path": "src/components/common/facets/category-facet/parent-button.ts",
47837
- "declarations": [],
47838
- "exports": []
47839
- },
47840
- {
47841
- "kind": "javascript-module",
47842
- "path": "src/components/common/facets/category-facet/parent-value-link.ts",
47843
- "declarations": [],
47844
- "exports": []
47845
- },
47846
- {
47847
- "kind": "javascript-module",
47848
- "path": "src/components/common/facets/category-facet/search-results-container.ts",
47849
- "declarations": [],
47850
- "exports": []
47851
- },
47852
- {
47853
- "kind": "javascript-module",
47854
- "path": "src/components/common/facets/category-facet/search-value.ts",
47855
- "declarations": [],
47856
- "exports": []
47857
- },
47858
- {
47859
- "kind": "javascript-module",
47860
- "path": "src/components/common/facets/category-facet/value-as-tree-container.ts",
47861
- "declarations": [],
47862
- "exports": []
47863
- },
47864
- {
47865
- "kind": "javascript-module",
47866
- "path": "src/components/common/facets/category-facet/value-link.ts",
47867
- "declarations": [],
47868
- "exports": []
47869
- },
47870
- {
47871
- "kind": "javascript-module",
47872
- "path": "src/components/common/facets/e2e/page-object.ts",
47873
- "declarations": [],
47874
- "exports": []
47875
- },
47876
- {
47877
- "kind": "javascript-module",
47878
- "path": "src/components/common/facets/facet-container/facet-container.ts",
47879
- "declarations": [],
47880
- "exports": []
47881
- },
47882
- {
47883
- "kind": "javascript-module",
47884
- "path": "src/components/common/facets/facet-header/facet-header.ts",
47885
- "declarations": [],
47886
- "exports": []
47887
- },
47888
- {
47889
- "kind": "javascript-module",
47890
- "path": "src/components/common/facets/facet-number-input/number-input-type.ts",
47891
- "declarations": [],
47892
- "exports": []
47893
- },
47894
- {
47895
- "kind": "javascript-module",
47896
- "path": "src/components/common/facets/facet-show-more-less/facet-show-more-less.ts",
47897
- "declarations": [],
47898
- "exports": []
47899
- },
47900
- {
47901
- "kind": "javascript-module",
47902
- "path": "src/components/common/facets/facet-search/facet-search-aria-live.ts",
47903
- "declarations": [],
47904
- "exports": []
47905
- },
47906
- {
47907
- "kind": "javascript-module",
47908
- "path": "src/components/common/facets/facet-search/facet-search-input-guard.ts",
47909
- "declarations": [],
47910
- "exports": []
47911
- },
47912
- {
47913
- "kind": "javascript-module",
47914
- "path": "src/components/common/facets/facet-search/facet-search-input.ts",
47915
- "declarations": [],
47916
- "exports": []
47917
- },
47918
- {
47919
- "kind": "javascript-module",
47920
- "path": "src/components/common/facets/facet-search/facet-search-matches.ts",
47921
- "declarations": [],
47922
- "exports": []
47923
- },
47924
- {
47925
- "kind": "javascript-module",
47926
- "path": "src/components/common/facets/facet-search/facet-search-utils.ts",
47927
- "declarations": [],
47928
- "exports": []
47929
- },
47930
- {
47931
- "kind": "javascript-module",
47932
- "path": "src/components/common/facets/facet-search/facet-search.tw.css.ts",
47933
- "declarations": [],
47934
- "exports": []
47935
- },
47936
- {
47937
- "kind": "javascript-module",
47938
- "path": "src/components/common/facets/facet-placeholder/facet-placeholder.ts",
47939
- "declarations": [],
47940
- "exports": []
47941
- },
47942
- {
47943
- "kind": "javascript-module",
47944
- "path": "src/components/common/facets/facet-value/facet-value.ts",
47945
- "declarations": [],
47946
- "exports": []
47947
- },
47948
- {
47949
- "kind": "javascript-module",
47950
- "path": "src/components/common/facets/facet-value-box/facet-value-box.ts",
47951
- "declarations": [],
47952
- "exports": []
47953
- },
47954
- {
47955
- "kind": "javascript-module",
47956
- "path": "src/components/common/facets/facet-value-box/facet-value-box.tw.css.ts",
47957
- "declarations": [],
47958
- "exports": []
47959
- },
47960
- {
47961
- "kind": "javascript-module",
47962
- "path": "src/components/common/facets/facet-value-checkbox/facet-value-checkbox.ts",
47963
- "declarations": [
47964
- {
47965
- "kind": "variable",
47966
- "name": "id"
47967
- }
47968
- ],
47969
- "exports": []
47970
- },
47971
- {
47972
- "kind": "javascript-module",
47973
- "path": "src/components/common/facets/facet-value-checkbox/facet-value-checkbox.tw.css.ts",
47974
- "declarations": [],
47975
- "exports": []
47976
- },
47977
- {
47978
- "kind": "javascript-module",
47979
- "path": "src/components/common/facets/facet-value-exclude/facet-value-exclude.ts",
47980
- "declarations": [],
47981
- "exports": []
47982
- },
47983
- {
47984
- "kind": "javascript-module",
47985
- "path": "src/components/common/facets/facet-value-exclude/facet-value-exclude.tw.css.ts",
47986
- "declarations": [],
47987
- "exports": []
47988
- },
47989
- {
47990
- "kind": "javascript-module",
47991
- "path": "src/components/common/facets/facet-value-label-highlight/facet-value-label-highlight.ts",
47992
- "declarations": [],
47993
- "exports": []
47994
- },
47995
- {
47996
- "kind": "javascript-module",
47997
- "path": "src/components/common/facets/facet-value-link/facet-value-link.ts",
47998
- "declarations": [],
47999
- "exports": []
48000
- },
48001
- {
48002
- "kind": "javascript-module",
48003
- "path": "src/components/common/facets/facet-values-group/facet-values-group.ts",
48004
- "declarations": [],
48005
- "exports": []
48006
- },
48007
- {
48008
- "kind": "javascript-module",
48009
- "path": "src/components/common/facets/numeric-facet/formatter.ts",
48010
- "declarations": [],
48011
- "exports": []
48012
- },
48013
- {
48014
- "kind": "javascript-module",
48015
- "path": "src/components/common/facets/numeric-facet/value-link.ts",
48016
- "declarations": [],
48017
- "exports": []
48018
- },
48019
- {
48020
- "kind": "javascript-module",
48021
- "path": "src/components/common/facets/numeric-facet/values-container.ts",
48022
- "declarations": [],
48023
- "exports": []
48024
- },
48025
- {
48026
- "kind": "javascript-module",
48027
- "path": "src/components/common/facets/popover/popover-type.ts",
48028
- "declarations": [],
48029
- "exports": []
48030
- },
48031
47816
  {
48032
47817
  "kind": "javascript-module",
48033
47818
  "path": "src/components/common/generated-answer/generated-content/generated-markdown-content.ts",
@@ -48076,6 +47861,227 @@
48076
47861
  "declarations": [],
48077
47862
  "exports": []
48078
47863
  },
47864
+ {
47865
+ "kind": "javascript-module",
47866
+ "path": "src/components/common/facets/category-facet/all-categories-button.ts",
47867
+ "declarations": [],
47868
+ "exports": []
47869
+ },
47870
+ {
47871
+ "kind": "javascript-module",
47872
+ "path": "src/components/common/facets/category-facet/all-categories-localized-label.ts",
47873
+ "declarations": [],
47874
+ "exports": []
47875
+ },
47876
+ {
47877
+ "kind": "javascript-module",
47878
+ "path": "src/components/common/facets/category-facet/children-as-tree-container.ts",
47879
+ "declarations": [],
47880
+ "exports": []
47881
+ },
47882
+ {
47883
+ "kind": "javascript-module",
47884
+ "path": "src/components/common/facets/category-facet/parent-as-tree-container.ts",
47885
+ "declarations": [],
47886
+ "exports": []
47887
+ },
47888
+ {
47889
+ "kind": "javascript-module",
47890
+ "path": "src/components/common/facets/category-facet/parent-button.ts",
47891
+ "declarations": [],
47892
+ "exports": []
47893
+ },
47894
+ {
47895
+ "kind": "javascript-module",
47896
+ "path": "src/components/common/facets/category-facet/parent-value-link.ts",
47897
+ "declarations": [],
47898
+ "exports": []
47899
+ },
47900
+ {
47901
+ "kind": "javascript-module",
47902
+ "path": "src/components/common/facets/category-facet/search-results-container.ts",
47903
+ "declarations": [],
47904
+ "exports": []
47905
+ },
47906
+ {
47907
+ "kind": "javascript-module",
47908
+ "path": "src/components/common/facets/category-facet/search-value.ts",
47909
+ "declarations": [],
47910
+ "exports": []
47911
+ },
47912
+ {
47913
+ "kind": "javascript-module",
47914
+ "path": "src/components/common/facets/category-facet/value-as-tree-container.ts",
47915
+ "declarations": [],
47916
+ "exports": []
47917
+ },
47918
+ {
47919
+ "kind": "javascript-module",
47920
+ "path": "src/components/common/facets/category-facet/value-link.ts",
47921
+ "declarations": [],
47922
+ "exports": []
47923
+ },
47924
+ {
47925
+ "kind": "javascript-module",
47926
+ "path": "src/components/common/facets/e2e/page-object.ts",
47927
+ "declarations": [],
47928
+ "exports": []
47929
+ },
47930
+ {
47931
+ "kind": "javascript-module",
47932
+ "path": "src/components/common/facets/facet-container/facet-container.ts",
47933
+ "declarations": [],
47934
+ "exports": []
47935
+ },
47936
+ {
47937
+ "kind": "javascript-module",
47938
+ "path": "src/components/common/facets/facet-header/facet-header.ts",
47939
+ "declarations": [],
47940
+ "exports": []
47941
+ },
47942
+ {
47943
+ "kind": "javascript-module",
47944
+ "path": "src/components/common/facets/facet-number-input/number-input-type.ts",
47945
+ "declarations": [],
47946
+ "exports": []
47947
+ },
47948
+ {
47949
+ "kind": "javascript-module",
47950
+ "path": "src/components/common/facets/facet-placeholder/facet-placeholder.ts",
47951
+ "declarations": [],
47952
+ "exports": []
47953
+ },
47954
+ {
47955
+ "kind": "javascript-module",
47956
+ "path": "src/components/common/facets/facet-search/facet-search-aria-live.ts",
47957
+ "declarations": [],
47958
+ "exports": []
47959
+ },
47960
+ {
47961
+ "kind": "javascript-module",
47962
+ "path": "src/components/common/facets/facet-search/facet-search-input-guard.ts",
47963
+ "declarations": [],
47964
+ "exports": []
47965
+ },
47966
+ {
47967
+ "kind": "javascript-module",
47968
+ "path": "src/components/common/facets/facet-search/facet-search-input.ts",
47969
+ "declarations": [],
47970
+ "exports": []
47971
+ },
47972
+ {
47973
+ "kind": "javascript-module",
47974
+ "path": "src/components/common/facets/facet-search/facet-search-matches.ts",
47975
+ "declarations": [],
47976
+ "exports": []
47977
+ },
47978
+ {
47979
+ "kind": "javascript-module",
47980
+ "path": "src/components/common/facets/facet-search/facet-search-utils.ts",
47981
+ "declarations": [],
47982
+ "exports": []
47983
+ },
47984
+ {
47985
+ "kind": "javascript-module",
47986
+ "path": "src/components/common/facets/facet-search/facet-search.tw.css.ts",
47987
+ "declarations": [],
47988
+ "exports": []
47989
+ },
47990
+ {
47991
+ "kind": "javascript-module",
47992
+ "path": "src/components/common/facets/facet-show-more-less/facet-show-more-less.ts",
47993
+ "declarations": [],
47994
+ "exports": []
47995
+ },
47996
+ {
47997
+ "kind": "javascript-module",
47998
+ "path": "src/components/common/facets/facet-value/facet-value.ts",
47999
+ "declarations": [],
48000
+ "exports": []
48001
+ },
48002
+ {
48003
+ "kind": "javascript-module",
48004
+ "path": "src/components/common/facets/facet-value-box/facet-value-box.ts",
48005
+ "declarations": [],
48006
+ "exports": []
48007
+ },
48008
+ {
48009
+ "kind": "javascript-module",
48010
+ "path": "src/components/common/facets/facet-value-box/facet-value-box.tw.css.ts",
48011
+ "declarations": [],
48012
+ "exports": []
48013
+ },
48014
+ {
48015
+ "kind": "javascript-module",
48016
+ "path": "src/components/common/facets/facet-value-checkbox/facet-value-checkbox.ts",
48017
+ "declarations": [
48018
+ {
48019
+ "kind": "variable",
48020
+ "name": "id"
48021
+ }
48022
+ ],
48023
+ "exports": []
48024
+ },
48025
+ {
48026
+ "kind": "javascript-module",
48027
+ "path": "src/components/common/facets/facet-value-checkbox/facet-value-checkbox.tw.css.ts",
48028
+ "declarations": [],
48029
+ "exports": []
48030
+ },
48031
+ {
48032
+ "kind": "javascript-module",
48033
+ "path": "src/components/common/facets/facet-value-exclude/facet-value-exclude.ts",
48034
+ "declarations": [],
48035
+ "exports": []
48036
+ },
48037
+ {
48038
+ "kind": "javascript-module",
48039
+ "path": "src/components/common/facets/facet-value-exclude/facet-value-exclude.tw.css.ts",
48040
+ "declarations": [],
48041
+ "exports": []
48042
+ },
48043
+ {
48044
+ "kind": "javascript-module",
48045
+ "path": "src/components/common/facets/facet-value-label-highlight/facet-value-label-highlight.ts",
48046
+ "declarations": [],
48047
+ "exports": []
48048
+ },
48049
+ {
48050
+ "kind": "javascript-module",
48051
+ "path": "src/components/common/facets/facet-value-link/facet-value-link.ts",
48052
+ "declarations": [],
48053
+ "exports": []
48054
+ },
48055
+ {
48056
+ "kind": "javascript-module",
48057
+ "path": "src/components/common/facets/facet-values-group/facet-values-group.ts",
48058
+ "declarations": [],
48059
+ "exports": []
48060
+ },
48061
+ {
48062
+ "kind": "javascript-module",
48063
+ "path": "src/components/common/facets/numeric-facet/formatter.ts",
48064
+ "declarations": [],
48065
+ "exports": []
48066
+ },
48067
+ {
48068
+ "kind": "javascript-module",
48069
+ "path": "src/components/common/facets/numeric-facet/value-link.ts",
48070
+ "declarations": [],
48071
+ "exports": []
48072
+ },
48073
+ {
48074
+ "kind": "javascript-module",
48075
+ "path": "src/components/common/facets/numeric-facet/values-container.ts",
48076
+ "declarations": [],
48077
+ "exports": []
48078
+ },
48079
+ {
48080
+ "kind": "javascript-module",
48081
+ "path": "src/components/common/facets/popover/popover-type.ts",
48082
+ "declarations": [],
48083
+ "exports": []
48084
+ },
48079
48085
  {
48080
48086
  "kind": "javascript-module",
48081
48087
  "path": "src/components/common/item-list/context/child-templates-context-controller.ts",
@@ -49446,73 +49452,73 @@
49446
49452
  },
49447
49453
  {
49448
49454
  "kind": "javascript-module",
49449
- "path": "src/components/search/atomic-result-children-template/e2e/atomic-result-children-template.e2e.ts",
49455
+ "path": "src/components/search/atomic-result-children/e2e/atomic-result-children.e2e.ts",
49450
49456
  "declarations": [],
49451
49457
  "exports": []
49452
49458
  },
49453
49459
  {
49454
49460
  "kind": "javascript-module",
49455
- "path": "src/components/search/atomic-result-children-template/e2e/fixture.ts",
49461
+ "path": "src/components/search/atomic-result-children/e2e/fixture.ts",
49456
49462
  "declarations": [],
49457
49463
  "exports": []
49458
49464
  },
49459
49465
  {
49460
49466
  "kind": "javascript-module",
49461
- "path": "src/components/search/atomic-result-children-template/e2e/page-object.ts",
49467
+ "path": "src/components/search/atomic-result-children/e2e/page-object.ts",
49462
49468
  "declarations": [],
49463
49469
  "exports": []
49464
49470
  },
49465
49471
  {
49466
49472
  "kind": "javascript-module",
49467
- "path": "src/components/search/atomic-result-date/e2e/atomic-result-date.e2e.ts",
49473
+ "path": "src/components/search/atomic-result-children-template/e2e/atomic-result-children-template.e2e.ts",
49468
49474
  "declarations": [],
49469
49475
  "exports": []
49470
49476
  },
49471
49477
  {
49472
49478
  "kind": "javascript-module",
49473
- "path": "src/components/search/atomic-result-date/e2e/fixture.ts",
49479
+ "path": "src/components/search/atomic-result-children-template/e2e/fixture.ts",
49474
49480
  "declarations": [],
49475
49481
  "exports": []
49476
49482
  },
49477
49483
  {
49478
49484
  "kind": "javascript-module",
49479
- "path": "src/components/search/atomic-result-date/e2e/page-object.ts",
49485
+ "path": "src/components/search/atomic-result-children-template/e2e/page-object.ts",
49480
49486
  "declarations": [],
49481
49487
  "exports": []
49482
49488
  },
49483
49489
  {
49484
49490
  "kind": "javascript-module",
49485
- "path": "src/components/search/atomic-result-fields-list/e2e/atomic-result-fields-list.e2e.ts",
49491
+ "path": "src/components/search/atomic-result-date/e2e/atomic-result-date.e2e.ts",
49486
49492
  "declarations": [],
49487
49493
  "exports": []
49488
49494
  },
49489
49495
  {
49490
49496
  "kind": "javascript-module",
49491
- "path": "src/components/search/atomic-result-fields-list/e2e/fixture.ts",
49497
+ "path": "src/components/search/atomic-result-date/e2e/fixture.ts",
49492
49498
  "declarations": [],
49493
49499
  "exports": []
49494
49500
  },
49495
49501
  {
49496
49502
  "kind": "javascript-module",
49497
- "path": "src/components/search/atomic-result-fields-list/e2e/page-object.ts",
49503
+ "path": "src/components/search/atomic-result-date/e2e/page-object.ts",
49498
49504
  "declarations": [],
49499
49505
  "exports": []
49500
49506
  },
49501
49507
  {
49502
49508
  "kind": "javascript-module",
49503
- "path": "src/components/search/atomic-result-children/e2e/atomic-result-children.e2e.ts",
49509
+ "path": "src/components/search/atomic-result-fields-list/e2e/atomic-result-fields-list.e2e.ts",
49504
49510
  "declarations": [],
49505
49511
  "exports": []
49506
49512
  },
49507
49513
  {
49508
49514
  "kind": "javascript-module",
49509
- "path": "src/components/search/atomic-result-children/e2e/fixture.ts",
49515
+ "path": "src/components/search/atomic-result-fields-list/e2e/fixture.ts",
49510
49516
  "declarations": [],
49511
49517
  "exports": []
49512
49518
  },
49513
49519
  {
49514
49520
  "kind": "javascript-module",
49515
- "path": "src/components/search/atomic-result-children/e2e/page-object.ts",
49521
+ "path": "src/components/search/atomic-result-fields-list/e2e/page-object.ts",
49516
49522
  "declarations": [],
49517
49523
  "exports": []
49518
49524
  },
@@ -49734,37 +49740,37 @@
49734
49740
  },
49735
49741
  {
49736
49742
  "kind": "javascript-module",
49737
- "path": "src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts",
49743
+ "path": "src/components/search/atomic-results-per-page/e2e/atomic-results-per-page.e2e.ts",
49738
49744
  "declarations": [],
49739
49745
  "exports": []
49740
49746
  },
49741
49747
  {
49742
49748
  "kind": "javascript-module",
49743
- "path": "src/components/search/atomic-search-box/e2e/fixture.ts",
49749
+ "path": "src/components/search/atomic-results-per-page/e2e/fixture.ts",
49744
49750
  "declarations": [],
49745
49751
  "exports": []
49746
49752
  },
49747
49753
  {
49748
49754
  "kind": "javascript-module",
49749
- "path": "src/components/search/atomic-search-box/e2e/page-object.ts",
49755
+ "path": "src/components/search/atomic-results-per-page/e2e/page-object.ts",
49750
49756
  "declarations": [],
49751
49757
  "exports": []
49752
49758
  },
49753
49759
  {
49754
49760
  "kind": "javascript-module",
49755
- "path": "src/components/search/atomic-results-per-page/e2e/atomic-results-per-page.e2e.ts",
49761
+ "path": "src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts",
49756
49762
  "declarations": [],
49757
49763
  "exports": []
49758
49764
  },
49759
49765
  {
49760
49766
  "kind": "javascript-module",
49761
- "path": "src/components/search/atomic-results-per-page/e2e/fixture.ts",
49767
+ "path": "src/components/search/atomic-search-box/e2e/fixture.ts",
49762
49768
  "declarations": [],
49763
49769
  "exports": []
49764
49770
  },
49765
49771
  {
49766
49772
  "kind": "javascript-module",
49767
- "path": "src/components/search/atomic-results-per-page/e2e/page-object.ts",
49773
+ "path": "src/components/search/atomic-search-box/e2e/page-object.ts",
49768
49774
  "declarations": [],
49769
49775
  "exports": []
49770
49776
  },
@@ -49878,37 +49884,37 @@
49878
49884
  },
49879
49885
  {
49880
49886
  "kind": "javascript-module",
49881
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/atomic-smart-snippet-feedback-modal.e2e.ts",
49887
+ "path": "src/components/search/atomic-smart-snippet/e2e/atomic-smart-snippet.e2e.ts",
49882
49888
  "declarations": [],
49883
49889
  "exports": []
49884
49890
  },
49885
49891
  {
49886
49892
  "kind": "javascript-module",
49887
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/fixture.ts",
49893
+ "path": "src/components/search/atomic-smart-snippet/e2e/fixture.ts",
49888
49894
  "declarations": [],
49889
49895
  "exports": []
49890
49896
  },
49891
49897
  {
49892
49898
  "kind": "javascript-module",
49893
- "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/page-object.ts",
49899
+ "path": "src/components/search/atomic-smart-snippet/e2e/page-object.ts",
49894
49900
  "declarations": [],
49895
49901
  "exports": []
49896
49902
  },
49897
49903
  {
49898
49904
  "kind": "javascript-module",
49899
- "path": "src/components/search/atomic-smart-snippet/e2e/atomic-smart-snippet.e2e.ts",
49905
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/atomic-smart-snippet-feedback-modal.e2e.ts",
49900
49906
  "declarations": [],
49901
49907
  "exports": []
49902
49908
  },
49903
49909
  {
49904
49910
  "kind": "javascript-module",
49905
- "path": "src/components/search/atomic-smart-snippet/e2e/fixture.ts",
49911
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/fixture.ts",
49906
49912
  "declarations": [],
49907
49913
  "exports": []
49908
49914
  },
49909
49915
  {
49910
49916
  "kind": "javascript-module",
49911
- "path": "src/components/search/atomic-smart-snippet/e2e/page-object.ts",
49917
+ "path": "src/components/search/atomic-smart-snippet-feedback-modal/e2e/page-object.ts",
49912
49918
  "declarations": [],
49913
49919
  "exports": []
49914
49920
  },
@@ -50022,37 +50028,37 @@
50022
50028
  },
50023
50029
  {
50024
50030
  "kind": "javascript-module",
50025
- "path": "src/components/search/result-template-components/quickview-iframe/quickview-iframe.ts",
50031
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/atomic-quickview-sidebar.ts",
50026
50032
  "declarations": [],
50027
50033
  "exports": []
50028
50034
  },
50029
50035
  {
50030
50036
  "kind": "javascript-module",
50031
- "path": "src/components/search/result-template-components/quickview-preview-bar/quickview-preview-bar.ts",
50037
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/highlight-keywords-checkbox.ts",
50032
50038
  "declarations": [],
50033
50039
  "exports": []
50034
50040
  },
50035
50041
  {
50036
50042
  "kind": "javascript-module",
50037
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/atomic-quickview-sidebar.ts",
50043
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/keywords.ts",
50038
50044
  "declarations": [],
50039
50045
  "exports": []
50040
50046
  },
50041
50047
  {
50042
50048
  "kind": "javascript-module",
50043
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/highlight-keywords-checkbox.ts",
50049
+ "path": "src/components/search/result-template-components/atomic-quickview-sidebar/minimize-button.ts",
50044
50050
  "declarations": [],
50045
50051
  "exports": []
50046
50052
  },
50047
50053
  {
50048
50054
  "kind": "javascript-module",
50049
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/keywords.ts",
50055
+ "path": "src/components/search/result-template-components/quickview-iframe/quickview-iframe.ts",
50050
50056
  "declarations": [],
50051
50057
  "exports": []
50052
50058
  },
50053
50059
  {
50054
50060
  "kind": "javascript-module",
50055
- "path": "src/components/search/result-template-components/atomic-quickview-sidebar/minimize-button.ts",
50061
+ "path": "src/components/search/result-template-components/quickview-preview-bar/quickview-preview-bar.ts",
50056
50062
  "declarations": [],
50057
50063
  "exports": []
50058
50064
  },