@coveo/atomic 3.59.3 → 3.59.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +978 -523
- package/dist/cjs/components/commerce/atomic-commerce-search-box/atomic-commerce-search-box.cjs +1 -0
- package/dist/cjs/components/insight/atomic-insight-search-box/atomic-insight-search-box.cjs +1 -0
- package/dist/cjs/components/search/atomic-search-box/atomic-search-box.cjs +1 -0
- package/dist/cjs/global/environment.cjs +1 -1
- package/dist/cjs/utils/hidden-state-controller.cjs +63 -0
- package/dist/cjs/versions.cjs +1 -1
- package/dist/esm/components/commerce/atomic-commerce-search-box/atomic-commerce-search-box.js +1 -0
- package/dist/esm/components/insight/atomic-insight-search-box/atomic-insight-search-box.js +1 -0
- package/dist/esm/components/search/atomic-search-box/atomic-search-box.js +1 -0
- package/dist/esm/global/environment.js +1 -1
- package/dist/esm/utils/hidden-state-controller.js +29 -0
- package/dist/esm/versions.js +1 -1
- package/dist/types/components/insight/atomic-insight-smart-snippet-feedback-modal/atomic-insight-smart-snippet-feedback-modal.d.ts +0 -2
- package/dist/types/components/insight/atomic-insight-user-actions-modal/atomic-insight-user-actions-modal.d.ts +0 -2
- package/package.json +4 -4
package/custom-elements.json
CHANGED
|
@@ -974,6 +974,12 @@
|
|
|
974
974
|
"declarations": [],
|
|
975
975
|
"exports": []
|
|
976
976
|
},
|
|
977
|
+
{
|
|
978
|
+
"kind": "javascript-module",
|
|
979
|
+
"path": "src/utils/hidden-state-controller.ts",
|
|
980
|
+
"declarations": [],
|
|
981
|
+
"exports": []
|
|
982
|
+
},
|
|
977
983
|
{
|
|
978
984
|
"kind": "javascript-module",
|
|
979
985
|
"path": "src/utils/init-queue.ts",
|
|
@@ -8048,319 +8054,6 @@
|
|
|
8048
8054
|
}
|
|
8049
8055
|
]
|
|
8050
8056
|
},
|
|
8051
|
-
{
|
|
8052
|
-
"kind": "javascript-module",
|
|
8053
|
-
"path": "src/components/commerce/atomic-product/atomic-product.ts",
|
|
8054
|
-
"declarations": [
|
|
8055
|
-
{
|
|
8056
|
-
"kind": "class",
|
|
8057
|
-
"description": "The `atomic-product` component is used internally by the `atomic-commerce-product-list` and `atomic-commerce-recommendation-list` components.",
|
|
8058
|
-
"name": "AtomicProduct",
|
|
8059
|
-
"members": [
|
|
8060
|
-
{
|
|
8061
|
-
"kind": "field",
|
|
8062
|
-
"name": "productRootRef",
|
|
8063
|
-
"type": {
|
|
8064
|
-
"text": "HTMLElement | undefined"
|
|
8065
|
-
},
|
|
8066
|
-
"privacy": "private"
|
|
8067
|
-
},
|
|
8068
|
-
{
|
|
8069
|
-
"kind": "field",
|
|
8070
|
-
"name": "linkContainerRef",
|
|
8071
|
-
"type": {
|
|
8072
|
-
"text": "HTMLElement | undefined"
|
|
8073
|
-
},
|
|
8074
|
-
"privacy": "private"
|
|
8075
|
-
},
|
|
8076
|
-
{
|
|
8077
|
-
"kind": "field",
|
|
8078
|
-
"name": "itemLayoutController",
|
|
8079
|
-
"type": {
|
|
8080
|
-
"text": "ItemLayoutController"
|
|
8081
|
-
},
|
|
8082
|
-
"privacy": "private"
|
|
8083
|
-
},
|
|
8084
|
-
{
|
|
8085
|
-
"kind": "field",
|
|
8086
|
-
"name": "stopPropagation",
|
|
8087
|
-
"type": {
|
|
8088
|
-
"text": "boolean"
|
|
8089
|
-
},
|
|
8090
|
-
"description": "Whether `atomic-product-link` components nested in the `atomic-product` should stop click event propagation.",
|
|
8091
|
-
"attribute": "stop-propagation",
|
|
8092
|
-
"reflects": true
|
|
8093
|
-
},
|
|
8094
|
-
{
|
|
8095
|
-
"kind": "field",
|
|
8096
|
-
"name": "product",
|
|
8097
|
-
"type": {
|
|
8098
|
-
"text": "Product"
|
|
8099
|
-
},
|
|
8100
|
-
"description": "The product item.",
|
|
8101
|
-
"attribute": "product"
|
|
8102
|
-
},
|
|
8103
|
-
{
|
|
8104
|
-
"kind": "field",
|
|
8105
|
-
"name": "interactiveProduct",
|
|
8106
|
-
"type": {
|
|
8107
|
-
"text": "InteractiveProduct"
|
|
8108
|
-
},
|
|
8109
|
-
"description": "The InteractiveProduct item.",
|
|
8110
|
-
"attribute": "interactive-product"
|
|
8111
|
-
},
|
|
8112
|
-
{
|
|
8113
|
-
"kind": "field",
|
|
8114
|
-
"name": "store",
|
|
8115
|
-
"type": {
|
|
8116
|
-
"text": "CommerceStore | CommerceRecommendationStore"
|
|
8117
|
-
},
|
|
8118
|
-
"description": "Global Atomic state.",
|
|
8119
|
-
"attribute": "store"
|
|
8120
|
-
},
|
|
8121
|
-
{
|
|
8122
|
-
"kind": "field",
|
|
8123
|
-
"name": "content",
|
|
8124
|
-
"type": {
|
|
8125
|
-
"text": "ParentNode"
|
|
8126
|
-
},
|
|
8127
|
-
"description": "The product content to display.",
|
|
8128
|
-
"attribute": "content"
|
|
8129
|
-
},
|
|
8130
|
-
{
|
|
8131
|
-
"kind": "field",
|
|
8132
|
-
"name": "linkContent",
|
|
8133
|
-
"type": {
|
|
8134
|
-
"text": "ParentNode"
|
|
8135
|
-
},
|
|
8136
|
-
"default": "new DocumentFragment()",
|
|
8137
|
-
"description": "The product link to use when the product is clicked in a grid layout.",
|
|
8138
|
-
"attribute": "link-content"
|
|
8139
|
-
},
|
|
8140
|
-
{
|
|
8141
|
-
"kind": "field",
|
|
8142
|
-
"name": "display",
|
|
8143
|
-
"type": {
|
|
8144
|
-
"text": "ItemDisplayLayout"
|
|
8145
|
-
},
|
|
8146
|
-
"default": "'list'",
|
|
8147
|
-
"description": "How products should be displayed.",
|
|
8148
|
-
"attribute": "display",
|
|
8149
|
-
"reflects": true
|
|
8150
|
-
},
|
|
8151
|
-
{
|
|
8152
|
-
"kind": "field",
|
|
8153
|
-
"name": "density",
|
|
8154
|
-
"type": {
|
|
8155
|
-
"text": "ItemDisplayDensity"
|
|
8156
|
-
},
|
|
8157
|
-
"default": "'normal'",
|
|
8158
|
-
"description": "How large or small products should be.",
|
|
8159
|
-
"attribute": "density",
|
|
8160
|
-
"reflects": true
|
|
8161
|
-
},
|
|
8162
|
-
{
|
|
8163
|
-
"kind": "field",
|
|
8164
|
-
"name": "imageSize",
|
|
8165
|
-
"type": {
|
|
8166
|
-
"text": "ItemDisplayImageSize"
|
|
8167
|
-
},
|
|
8168
|
-
"default": "'icon'",
|
|
8169
|
-
"description": "The size of the visual section in product list items.\n\nThis is overwritten by the image size defined in the product content, if it exists.",
|
|
8170
|
-
"attribute": "image-size",
|
|
8171
|
-
"reflects": true
|
|
8172
|
-
},
|
|
8173
|
-
{
|
|
8174
|
-
"kind": "field",
|
|
8175
|
-
"name": "classes",
|
|
8176
|
-
"type": {
|
|
8177
|
-
"text": "string"
|
|
8178
|
-
},
|
|
8179
|
-
"default": "''",
|
|
8180
|
-
"description": "The classes to add to the product element.",
|
|
8181
|
-
"attribute": "classes"
|
|
8182
|
-
},
|
|
8183
|
-
{
|
|
8184
|
-
"kind": "field",
|
|
8185
|
-
"name": "resolveProduct",
|
|
8186
|
-
"privacy": "public"
|
|
8187
|
-
},
|
|
8188
|
-
{
|
|
8189
|
-
"kind": "field",
|
|
8190
|
-
"name": "resolveInteractiveProduct",
|
|
8191
|
-
"privacy": "public"
|
|
8192
|
-
},
|
|
8193
|
-
{
|
|
8194
|
-
"kind": "field",
|
|
8195
|
-
"name": "resolveStopPropagation",
|
|
8196
|
-
"privacy": "public"
|
|
8197
|
-
},
|
|
8198
|
-
{
|
|
8199
|
-
"kind": "field",
|
|
8200
|
-
"name": "resolveProductDisplayConfig",
|
|
8201
|
-
"privacy": "public"
|
|
8202
|
-
},
|
|
8203
|
-
{
|
|
8204
|
-
"kind": "field",
|
|
8205
|
-
"name": "handleClick",
|
|
8206
|
-
"privacy": "public"
|
|
8207
|
-
},
|
|
8208
|
-
{
|
|
8209
|
-
"kind": "field",
|
|
8210
|
-
"name": "clickLinkContainer",
|
|
8211
|
-
"privacy": "public"
|
|
8212
|
-
},
|
|
8213
|
-
{
|
|
8214
|
-
"kind": "method",
|
|
8215
|
-
"name": "getContentHTML",
|
|
8216
|
-
"privacy": "private"
|
|
8217
|
-
},
|
|
8218
|
-
{
|
|
8219
|
-
"kind": "method",
|
|
8220
|
-
"name": "getLinkHTML",
|
|
8221
|
-
"privacy": "private"
|
|
8222
|
-
},
|
|
8223
|
-
{
|
|
8224
|
-
"kind": "method",
|
|
8225
|
-
"name": "getUpdateComplete",
|
|
8226
|
-
"return": {
|
|
8227
|
-
"type": {
|
|
8228
|
-
"text": "Promise<boolean>"
|
|
8229
|
-
}
|
|
8230
|
-
},
|
|
8231
|
-
"inheritedFrom": {
|
|
8232
|
-
"name": "ChildrenUpdateCompleteMixin",
|
|
8233
|
-
"module": "src/mixins/children-update-complete-mixin.ts"
|
|
8234
|
-
}
|
|
8235
|
-
}
|
|
8236
|
-
],
|
|
8237
|
-
"attributes": [
|
|
8238
|
-
{
|
|
8239
|
-
"name": "stop-propagation",
|
|
8240
|
-
"type": {
|
|
8241
|
-
"text": "boolean"
|
|
8242
|
-
},
|
|
8243
|
-
"description": "Whether `atomic-product-link` components nested in the `atomic-product` should stop click event propagation.",
|
|
8244
|
-
"fieldName": "stopPropagation"
|
|
8245
|
-
},
|
|
8246
|
-
{
|
|
8247
|
-
"name": "product",
|
|
8248
|
-
"type": {
|
|
8249
|
-
"text": "Product"
|
|
8250
|
-
},
|
|
8251
|
-
"description": "The product item.",
|
|
8252
|
-
"fieldName": "product"
|
|
8253
|
-
},
|
|
8254
|
-
{
|
|
8255
|
-
"name": "interactive-product",
|
|
8256
|
-
"type": {
|
|
8257
|
-
"text": "InteractiveProduct"
|
|
8258
|
-
},
|
|
8259
|
-
"description": "The InteractiveProduct item.",
|
|
8260
|
-
"fieldName": "interactiveProduct"
|
|
8261
|
-
},
|
|
8262
|
-
{
|
|
8263
|
-
"name": "store",
|
|
8264
|
-
"type": {
|
|
8265
|
-
"text": "CommerceStore | CommerceRecommendationStore"
|
|
8266
|
-
},
|
|
8267
|
-
"description": "Global Atomic state.",
|
|
8268
|
-
"fieldName": "store"
|
|
8269
|
-
},
|
|
8270
|
-
{
|
|
8271
|
-
"name": "content",
|
|
8272
|
-
"type": {
|
|
8273
|
-
"text": "ParentNode"
|
|
8274
|
-
},
|
|
8275
|
-
"description": "The product content to display.",
|
|
8276
|
-
"fieldName": "content"
|
|
8277
|
-
},
|
|
8278
|
-
{
|
|
8279
|
-
"name": "link-content",
|
|
8280
|
-
"type": {
|
|
8281
|
-
"text": "ParentNode"
|
|
8282
|
-
},
|
|
8283
|
-
"default": "new DocumentFragment()",
|
|
8284
|
-
"description": "The product link to use when the product is clicked in a grid layout.",
|
|
8285
|
-
"fieldName": "linkContent"
|
|
8286
|
-
},
|
|
8287
|
-
{
|
|
8288
|
-
"name": "display",
|
|
8289
|
-
"type": {
|
|
8290
|
-
"text": "ItemDisplayLayout"
|
|
8291
|
-
},
|
|
8292
|
-
"default": "'list'",
|
|
8293
|
-
"description": "How products should be displayed.",
|
|
8294
|
-
"fieldName": "display"
|
|
8295
|
-
},
|
|
8296
|
-
{
|
|
8297
|
-
"name": "density",
|
|
8298
|
-
"type": {
|
|
8299
|
-
"text": "ItemDisplayDensity"
|
|
8300
|
-
},
|
|
8301
|
-
"default": "'normal'",
|
|
8302
|
-
"description": "How large or small products should be.",
|
|
8303
|
-
"fieldName": "density"
|
|
8304
|
-
},
|
|
8305
|
-
{
|
|
8306
|
-
"name": "image-size",
|
|
8307
|
-
"type": {
|
|
8308
|
-
"text": "ItemDisplayImageSize"
|
|
8309
|
-
},
|
|
8310
|
-
"default": "'icon'",
|
|
8311
|
-
"description": "The size of the visual section in product list items.\n\nThis is overwritten by the image size defined in the product content, if it exists.",
|
|
8312
|
-
"fieldName": "imageSize"
|
|
8313
|
-
},
|
|
8314
|
-
{
|
|
8315
|
-
"name": "classes",
|
|
8316
|
-
"type": {
|
|
8317
|
-
"text": "string"
|
|
8318
|
-
},
|
|
8319
|
-
"default": "''",
|
|
8320
|
-
"description": "The classes to add to the product element.",
|
|
8321
|
-
"fieldName": "classes"
|
|
8322
|
-
}
|
|
8323
|
-
],
|
|
8324
|
-
"mixins": [
|
|
8325
|
-
{
|
|
8326
|
-
"name": "ChildrenUpdateCompleteMixin",
|
|
8327
|
-
"package": "@/src/mixins/children-update-complete-mixin"
|
|
8328
|
-
}
|
|
8329
|
-
],
|
|
8330
|
-
"superclass": {
|
|
8331
|
-
"name": "LitElement",
|
|
8332
|
-
"package": "lit"
|
|
8333
|
-
},
|
|
8334
|
-
"events": [],
|
|
8335
|
-
"tagName": "atomic-product",
|
|
8336
|
-
"customElement": true
|
|
8337
|
-
}
|
|
8338
|
-
],
|
|
8339
|
-
"exports": [
|
|
8340
|
-
{
|
|
8341
|
-
"kind": "js",
|
|
8342
|
-
"name": "AtomicProduct",
|
|
8343
|
-
"declaration": {
|
|
8344
|
-
"name": "AtomicProduct",
|
|
8345
|
-
"module": "src/components/commerce/atomic-product/atomic-product.ts"
|
|
8346
|
-
}
|
|
8347
|
-
},
|
|
8348
|
-
{
|
|
8349
|
-
"kind": "custom-element-definition",
|
|
8350
|
-
"name": "atomic-product",
|
|
8351
|
-
"declaration": {
|
|
8352
|
-
"name": "AtomicProduct",
|
|
8353
|
-
"module": "src/components/commerce/atomic-product/atomic-product.ts"
|
|
8354
|
-
}
|
|
8355
|
-
}
|
|
8356
|
-
]
|
|
8357
|
-
},
|
|
8358
|
-
{
|
|
8359
|
-
"kind": "javascript-module",
|
|
8360
|
-
"path": "src/components/commerce/atomic-product/atomic-product.tw.css.ts",
|
|
8361
|
-
"declarations": [],
|
|
8362
|
-
"exports": []
|
|
8363
|
-
},
|
|
8364
8057
|
{
|
|
8365
8058
|
"kind": "javascript-module",
|
|
8366
8059
|
"path": "src/components/commerce/atomic-commerce-timeframe-facet/atomic-commerce-timeframe-facet.ts",
|
|
@@ -8698,6 +8391,319 @@
|
|
|
8698
8391
|
}
|
|
8699
8392
|
]
|
|
8700
8393
|
},
|
|
8394
|
+
{
|
|
8395
|
+
"kind": "javascript-module",
|
|
8396
|
+
"path": "src/components/commerce/atomic-product/atomic-product.ts",
|
|
8397
|
+
"declarations": [
|
|
8398
|
+
{
|
|
8399
|
+
"kind": "class",
|
|
8400
|
+
"description": "The `atomic-product` component is used internally by the `atomic-commerce-product-list` and `atomic-commerce-recommendation-list` components.",
|
|
8401
|
+
"name": "AtomicProduct",
|
|
8402
|
+
"members": [
|
|
8403
|
+
{
|
|
8404
|
+
"kind": "field",
|
|
8405
|
+
"name": "productRootRef",
|
|
8406
|
+
"type": {
|
|
8407
|
+
"text": "HTMLElement | undefined"
|
|
8408
|
+
},
|
|
8409
|
+
"privacy": "private"
|
|
8410
|
+
},
|
|
8411
|
+
{
|
|
8412
|
+
"kind": "field",
|
|
8413
|
+
"name": "linkContainerRef",
|
|
8414
|
+
"type": {
|
|
8415
|
+
"text": "HTMLElement | undefined"
|
|
8416
|
+
},
|
|
8417
|
+
"privacy": "private"
|
|
8418
|
+
},
|
|
8419
|
+
{
|
|
8420
|
+
"kind": "field",
|
|
8421
|
+
"name": "itemLayoutController",
|
|
8422
|
+
"type": {
|
|
8423
|
+
"text": "ItemLayoutController"
|
|
8424
|
+
},
|
|
8425
|
+
"privacy": "private"
|
|
8426
|
+
},
|
|
8427
|
+
{
|
|
8428
|
+
"kind": "field",
|
|
8429
|
+
"name": "stopPropagation",
|
|
8430
|
+
"type": {
|
|
8431
|
+
"text": "boolean"
|
|
8432
|
+
},
|
|
8433
|
+
"description": "Whether `atomic-product-link` components nested in the `atomic-product` should stop click event propagation.",
|
|
8434
|
+
"attribute": "stop-propagation",
|
|
8435
|
+
"reflects": true
|
|
8436
|
+
},
|
|
8437
|
+
{
|
|
8438
|
+
"kind": "field",
|
|
8439
|
+
"name": "product",
|
|
8440
|
+
"type": {
|
|
8441
|
+
"text": "Product"
|
|
8442
|
+
},
|
|
8443
|
+
"description": "The product item.",
|
|
8444
|
+
"attribute": "product"
|
|
8445
|
+
},
|
|
8446
|
+
{
|
|
8447
|
+
"kind": "field",
|
|
8448
|
+
"name": "interactiveProduct",
|
|
8449
|
+
"type": {
|
|
8450
|
+
"text": "InteractiveProduct"
|
|
8451
|
+
},
|
|
8452
|
+
"description": "The InteractiveProduct item.",
|
|
8453
|
+
"attribute": "interactive-product"
|
|
8454
|
+
},
|
|
8455
|
+
{
|
|
8456
|
+
"kind": "field",
|
|
8457
|
+
"name": "store",
|
|
8458
|
+
"type": {
|
|
8459
|
+
"text": "CommerceStore | CommerceRecommendationStore"
|
|
8460
|
+
},
|
|
8461
|
+
"description": "Global Atomic state.",
|
|
8462
|
+
"attribute": "store"
|
|
8463
|
+
},
|
|
8464
|
+
{
|
|
8465
|
+
"kind": "field",
|
|
8466
|
+
"name": "content",
|
|
8467
|
+
"type": {
|
|
8468
|
+
"text": "ParentNode"
|
|
8469
|
+
},
|
|
8470
|
+
"description": "The product content to display.",
|
|
8471
|
+
"attribute": "content"
|
|
8472
|
+
},
|
|
8473
|
+
{
|
|
8474
|
+
"kind": "field",
|
|
8475
|
+
"name": "linkContent",
|
|
8476
|
+
"type": {
|
|
8477
|
+
"text": "ParentNode"
|
|
8478
|
+
},
|
|
8479
|
+
"default": "new DocumentFragment()",
|
|
8480
|
+
"description": "The product link to use when the product is clicked in a grid layout.",
|
|
8481
|
+
"attribute": "link-content"
|
|
8482
|
+
},
|
|
8483
|
+
{
|
|
8484
|
+
"kind": "field",
|
|
8485
|
+
"name": "display",
|
|
8486
|
+
"type": {
|
|
8487
|
+
"text": "ItemDisplayLayout"
|
|
8488
|
+
},
|
|
8489
|
+
"default": "'list'",
|
|
8490
|
+
"description": "How products should be displayed.",
|
|
8491
|
+
"attribute": "display",
|
|
8492
|
+
"reflects": true
|
|
8493
|
+
},
|
|
8494
|
+
{
|
|
8495
|
+
"kind": "field",
|
|
8496
|
+
"name": "density",
|
|
8497
|
+
"type": {
|
|
8498
|
+
"text": "ItemDisplayDensity"
|
|
8499
|
+
},
|
|
8500
|
+
"default": "'normal'",
|
|
8501
|
+
"description": "How large or small products should be.",
|
|
8502
|
+
"attribute": "density",
|
|
8503
|
+
"reflects": true
|
|
8504
|
+
},
|
|
8505
|
+
{
|
|
8506
|
+
"kind": "field",
|
|
8507
|
+
"name": "imageSize",
|
|
8508
|
+
"type": {
|
|
8509
|
+
"text": "ItemDisplayImageSize"
|
|
8510
|
+
},
|
|
8511
|
+
"default": "'icon'",
|
|
8512
|
+
"description": "The size of the visual section in product list items.\n\nThis is overwritten by the image size defined in the product content, if it exists.",
|
|
8513
|
+
"attribute": "image-size",
|
|
8514
|
+
"reflects": true
|
|
8515
|
+
},
|
|
8516
|
+
{
|
|
8517
|
+
"kind": "field",
|
|
8518
|
+
"name": "classes",
|
|
8519
|
+
"type": {
|
|
8520
|
+
"text": "string"
|
|
8521
|
+
},
|
|
8522
|
+
"default": "''",
|
|
8523
|
+
"description": "The classes to add to the product element.",
|
|
8524
|
+
"attribute": "classes"
|
|
8525
|
+
},
|
|
8526
|
+
{
|
|
8527
|
+
"kind": "field",
|
|
8528
|
+
"name": "resolveProduct",
|
|
8529
|
+
"privacy": "public"
|
|
8530
|
+
},
|
|
8531
|
+
{
|
|
8532
|
+
"kind": "field",
|
|
8533
|
+
"name": "resolveInteractiveProduct",
|
|
8534
|
+
"privacy": "public"
|
|
8535
|
+
},
|
|
8536
|
+
{
|
|
8537
|
+
"kind": "field",
|
|
8538
|
+
"name": "resolveStopPropagation",
|
|
8539
|
+
"privacy": "public"
|
|
8540
|
+
},
|
|
8541
|
+
{
|
|
8542
|
+
"kind": "field",
|
|
8543
|
+
"name": "resolveProductDisplayConfig",
|
|
8544
|
+
"privacy": "public"
|
|
8545
|
+
},
|
|
8546
|
+
{
|
|
8547
|
+
"kind": "field",
|
|
8548
|
+
"name": "handleClick",
|
|
8549
|
+
"privacy": "public"
|
|
8550
|
+
},
|
|
8551
|
+
{
|
|
8552
|
+
"kind": "field",
|
|
8553
|
+
"name": "clickLinkContainer",
|
|
8554
|
+
"privacy": "public"
|
|
8555
|
+
},
|
|
8556
|
+
{
|
|
8557
|
+
"kind": "method",
|
|
8558
|
+
"name": "getContentHTML",
|
|
8559
|
+
"privacy": "private"
|
|
8560
|
+
},
|
|
8561
|
+
{
|
|
8562
|
+
"kind": "method",
|
|
8563
|
+
"name": "getLinkHTML",
|
|
8564
|
+
"privacy": "private"
|
|
8565
|
+
},
|
|
8566
|
+
{
|
|
8567
|
+
"kind": "method",
|
|
8568
|
+
"name": "getUpdateComplete",
|
|
8569
|
+
"return": {
|
|
8570
|
+
"type": {
|
|
8571
|
+
"text": "Promise<boolean>"
|
|
8572
|
+
}
|
|
8573
|
+
},
|
|
8574
|
+
"inheritedFrom": {
|
|
8575
|
+
"name": "ChildrenUpdateCompleteMixin",
|
|
8576
|
+
"module": "src/mixins/children-update-complete-mixin.ts"
|
|
8577
|
+
}
|
|
8578
|
+
}
|
|
8579
|
+
],
|
|
8580
|
+
"attributes": [
|
|
8581
|
+
{
|
|
8582
|
+
"name": "stop-propagation",
|
|
8583
|
+
"type": {
|
|
8584
|
+
"text": "boolean"
|
|
8585
|
+
},
|
|
8586
|
+
"description": "Whether `atomic-product-link` components nested in the `atomic-product` should stop click event propagation.",
|
|
8587
|
+
"fieldName": "stopPropagation"
|
|
8588
|
+
},
|
|
8589
|
+
{
|
|
8590
|
+
"name": "product",
|
|
8591
|
+
"type": {
|
|
8592
|
+
"text": "Product"
|
|
8593
|
+
},
|
|
8594
|
+
"description": "The product item.",
|
|
8595
|
+
"fieldName": "product"
|
|
8596
|
+
},
|
|
8597
|
+
{
|
|
8598
|
+
"name": "interactive-product",
|
|
8599
|
+
"type": {
|
|
8600
|
+
"text": "InteractiveProduct"
|
|
8601
|
+
},
|
|
8602
|
+
"description": "The InteractiveProduct item.",
|
|
8603
|
+
"fieldName": "interactiveProduct"
|
|
8604
|
+
},
|
|
8605
|
+
{
|
|
8606
|
+
"name": "store",
|
|
8607
|
+
"type": {
|
|
8608
|
+
"text": "CommerceStore | CommerceRecommendationStore"
|
|
8609
|
+
},
|
|
8610
|
+
"description": "Global Atomic state.",
|
|
8611
|
+
"fieldName": "store"
|
|
8612
|
+
},
|
|
8613
|
+
{
|
|
8614
|
+
"name": "content",
|
|
8615
|
+
"type": {
|
|
8616
|
+
"text": "ParentNode"
|
|
8617
|
+
},
|
|
8618
|
+
"description": "The product content to display.",
|
|
8619
|
+
"fieldName": "content"
|
|
8620
|
+
},
|
|
8621
|
+
{
|
|
8622
|
+
"name": "link-content",
|
|
8623
|
+
"type": {
|
|
8624
|
+
"text": "ParentNode"
|
|
8625
|
+
},
|
|
8626
|
+
"default": "new DocumentFragment()",
|
|
8627
|
+
"description": "The product link to use when the product is clicked in a grid layout.",
|
|
8628
|
+
"fieldName": "linkContent"
|
|
8629
|
+
},
|
|
8630
|
+
{
|
|
8631
|
+
"name": "display",
|
|
8632
|
+
"type": {
|
|
8633
|
+
"text": "ItemDisplayLayout"
|
|
8634
|
+
},
|
|
8635
|
+
"default": "'list'",
|
|
8636
|
+
"description": "How products should be displayed.",
|
|
8637
|
+
"fieldName": "display"
|
|
8638
|
+
},
|
|
8639
|
+
{
|
|
8640
|
+
"name": "density",
|
|
8641
|
+
"type": {
|
|
8642
|
+
"text": "ItemDisplayDensity"
|
|
8643
|
+
},
|
|
8644
|
+
"default": "'normal'",
|
|
8645
|
+
"description": "How large or small products should be.",
|
|
8646
|
+
"fieldName": "density"
|
|
8647
|
+
},
|
|
8648
|
+
{
|
|
8649
|
+
"name": "image-size",
|
|
8650
|
+
"type": {
|
|
8651
|
+
"text": "ItemDisplayImageSize"
|
|
8652
|
+
},
|
|
8653
|
+
"default": "'icon'",
|
|
8654
|
+
"description": "The size of the visual section in product list items.\n\nThis is overwritten by the image size defined in the product content, if it exists.",
|
|
8655
|
+
"fieldName": "imageSize"
|
|
8656
|
+
},
|
|
8657
|
+
{
|
|
8658
|
+
"name": "classes",
|
|
8659
|
+
"type": {
|
|
8660
|
+
"text": "string"
|
|
8661
|
+
},
|
|
8662
|
+
"default": "''",
|
|
8663
|
+
"description": "The classes to add to the product element.",
|
|
8664
|
+
"fieldName": "classes"
|
|
8665
|
+
}
|
|
8666
|
+
],
|
|
8667
|
+
"mixins": [
|
|
8668
|
+
{
|
|
8669
|
+
"name": "ChildrenUpdateCompleteMixin",
|
|
8670
|
+
"package": "@/src/mixins/children-update-complete-mixin"
|
|
8671
|
+
}
|
|
8672
|
+
],
|
|
8673
|
+
"superclass": {
|
|
8674
|
+
"name": "LitElement",
|
|
8675
|
+
"package": "lit"
|
|
8676
|
+
},
|
|
8677
|
+
"events": [],
|
|
8678
|
+
"tagName": "atomic-product",
|
|
8679
|
+
"customElement": true
|
|
8680
|
+
}
|
|
8681
|
+
],
|
|
8682
|
+
"exports": [
|
|
8683
|
+
{
|
|
8684
|
+
"kind": "js",
|
|
8685
|
+
"name": "AtomicProduct",
|
|
8686
|
+
"declaration": {
|
|
8687
|
+
"name": "AtomicProduct",
|
|
8688
|
+
"module": "src/components/commerce/atomic-product/atomic-product.ts"
|
|
8689
|
+
}
|
|
8690
|
+
},
|
|
8691
|
+
{
|
|
8692
|
+
"kind": "custom-element-definition",
|
|
8693
|
+
"name": "atomic-product",
|
|
8694
|
+
"declaration": {
|
|
8695
|
+
"name": "AtomicProduct",
|
|
8696
|
+
"module": "src/components/commerce/atomic-product/atomic-product.ts"
|
|
8697
|
+
}
|
|
8698
|
+
}
|
|
8699
|
+
]
|
|
8700
|
+
},
|
|
8701
|
+
{
|
|
8702
|
+
"kind": "javascript-module",
|
|
8703
|
+
"path": "src/components/commerce/atomic-product/atomic-product.tw.css.ts",
|
|
8704
|
+
"declarations": [],
|
|
8705
|
+
"exports": []
|
|
8706
|
+
},
|
|
8701
8707
|
{
|
|
8702
8708
|
"kind": "javascript-module",
|
|
8703
8709
|
"path": "src/components/commerce/atomic-product-children/atomic-product-children.ts",
|
|
@@ -12322,19 +12328,19 @@
|
|
|
12322
12328
|
},
|
|
12323
12329
|
{
|
|
12324
12330
|
"kind": "javascript-module",
|
|
12325
|
-
"path": "src/components/commerce/
|
|
12331
|
+
"path": "src/components/commerce/product-template-component-utils/error.ts",
|
|
12326
12332
|
"declarations": [],
|
|
12327
12333
|
"exports": []
|
|
12328
12334
|
},
|
|
12329
12335
|
{
|
|
12330
12336
|
"kind": "javascript-module",
|
|
12331
|
-
"path": "src/components/commerce/product-template-component-utils/
|
|
12337
|
+
"path": "src/components/commerce/product-template-component-utils/product-utils.ts",
|
|
12332
12338
|
"declarations": [],
|
|
12333
12339
|
"exports": []
|
|
12334
12340
|
},
|
|
12335
12341
|
{
|
|
12336
12342
|
"kind": "javascript-module",
|
|
12337
|
-
"path": "src/components/commerce/
|
|
12343
|
+
"path": "src/components/commerce/sort/option.ts",
|
|
12338
12344
|
"declarations": [],
|
|
12339
12345
|
"exports": []
|
|
12340
12346
|
},
|
|
@@ -12520,31 +12526,37 @@
|
|
|
12520
12526
|
},
|
|
12521
12527
|
{
|
|
12522
12528
|
"kind": "javascript-module",
|
|
12523
|
-
"path": "src/components/common/atomic-
|
|
12529
|
+
"path": "src/components/common/atomic-citation/atomic-citation.ts",
|
|
12524
12530
|
"declarations": [],
|
|
12525
12531
|
"exports": []
|
|
12526
12532
|
},
|
|
12527
12533
|
{
|
|
12528
12534
|
"kind": "javascript-module",
|
|
12529
|
-
"path": "src/components/common/atomic-
|
|
12535
|
+
"path": "src/components/common/atomic-citation/atomic-citation.tw.css.ts",
|
|
12530
12536
|
"declarations": [],
|
|
12531
12537
|
"exports": []
|
|
12532
12538
|
},
|
|
12533
12539
|
{
|
|
12534
12540
|
"kind": "javascript-module",
|
|
12535
|
-
"path": "src/components/common/atomic-citation/
|
|
12541
|
+
"path": "src/components/common/atomic-citation/citation-anchoring-utils.ts",
|
|
12536
12542
|
"declarations": [],
|
|
12537
12543
|
"exports": []
|
|
12538
12544
|
},
|
|
12539
12545
|
{
|
|
12540
12546
|
"kind": "javascript-module",
|
|
12541
|
-
"path": "src/components/common/atomic-
|
|
12547
|
+
"path": "src/components/common/atomic-ask-follow-up-input/atomic-ask-follow-up-input.ts",
|
|
12542
12548
|
"declarations": [],
|
|
12543
12549
|
"exports": []
|
|
12544
12550
|
},
|
|
12545
12551
|
{
|
|
12546
12552
|
"kind": "javascript-module",
|
|
12547
|
-
"path": "src/components/common/atomic-
|
|
12553
|
+
"path": "src/components/common/atomic-ask-follow-up-input/atomic-ask-follow-up-input.tw.css.ts",
|
|
12554
|
+
"declarations": [],
|
|
12555
|
+
"exports": []
|
|
12556
|
+
},
|
|
12557
|
+
{
|
|
12558
|
+
"kind": "javascript-module",
|
|
12559
|
+
"path": "src/components/common/atomic-facet-date-input/atomic-facet-date-input.ts",
|
|
12548
12560
|
"declarations": [],
|
|
12549
12561
|
"exports": []
|
|
12550
12562
|
},
|
|
@@ -12612,12 +12624,6 @@
|
|
|
12612
12624
|
}
|
|
12613
12625
|
]
|
|
12614
12626
|
},
|
|
12615
|
-
{
|
|
12616
|
-
"kind": "javascript-module",
|
|
12617
|
-
"path": "src/components/common/atomic-facet-date-input/atomic-facet-date-input.ts",
|
|
12618
|
-
"declarations": [],
|
|
12619
|
-
"exports": []
|
|
12620
|
-
},
|
|
12621
12627
|
{
|
|
12622
12628
|
"kind": "javascript-module",
|
|
12623
12629
|
"path": "src/components/common/atomic-facet-number-input/atomic-facet-number-input.ts",
|
|
@@ -13706,24 +13712,6 @@
|
|
|
13706
13712
|
"declarations": [],
|
|
13707
13713
|
"exports": []
|
|
13708
13714
|
},
|
|
13709
|
-
{
|
|
13710
|
-
"kind": "javascript-module",
|
|
13711
|
-
"path": "src/components/common/atomic-rating/atomic-rating.tw.css.ts",
|
|
13712
|
-
"declarations": [],
|
|
13713
|
-
"exports": []
|
|
13714
|
-
},
|
|
13715
|
-
{
|
|
13716
|
-
"kind": "javascript-module",
|
|
13717
|
-
"path": "src/components/common/atomic-rating/rating-utils.ts",
|
|
13718
|
-
"declarations": [],
|
|
13719
|
-
"exports": []
|
|
13720
|
-
},
|
|
13721
|
-
{
|
|
13722
|
-
"kind": "javascript-module",
|
|
13723
|
-
"path": "src/components/common/atomic-rating/rating.ts",
|
|
13724
|
-
"declarations": [],
|
|
13725
|
-
"exports": []
|
|
13726
|
-
},
|
|
13727
13715
|
{
|
|
13728
13716
|
"kind": "javascript-module",
|
|
13729
13717
|
"path": "src/components/common/atomic-numeric-range/atomic-numeric-range.ts",
|
|
@@ -13889,6 +13877,24 @@
|
|
|
13889
13877
|
}
|
|
13890
13878
|
]
|
|
13891
13879
|
},
|
|
13880
|
+
{
|
|
13881
|
+
"kind": "javascript-module",
|
|
13882
|
+
"path": "src/components/common/atomic-rating/atomic-rating.tw.css.ts",
|
|
13883
|
+
"declarations": [],
|
|
13884
|
+
"exports": []
|
|
13885
|
+
},
|
|
13886
|
+
{
|
|
13887
|
+
"kind": "javascript-module",
|
|
13888
|
+
"path": "src/components/common/atomic-rating/rating-utils.ts",
|
|
13889
|
+
"declarations": [],
|
|
13890
|
+
"exports": []
|
|
13891
|
+
},
|
|
13892
|
+
{
|
|
13893
|
+
"kind": "javascript-module",
|
|
13894
|
+
"path": "src/components/common/atomic-rating/rating.ts",
|
|
13895
|
+
"declarations": [],
|
|
13896
|
+
"exports": []
|
|
13897
|
+
},
|
|
13892
13898
|
{
|
|
13893
13899
|
"kind": "javascript-module",
|
|
13894
13900
|
"path": "src/components/common/atomic-result-placeholder/atomic-result-placeholder.ts",
|
|
@@ -14240,6 +14246,18 @@
|
|
|
14240
14246
|
"declarations": [],
|
|
14241
14247
|
"exports": []
|
|
14242
14248
|
},
|
|
14249
|
+
{
|
|
14250
|
+
"kind": "javascript-module",
|
|
14251
|
+
"path": "src/components/common/image-carousel/image-carousel-indicators.ts",
|
|
14252
|
+
"declarations": [],
|
|
14253
|
+
"exports": []
|
|
14254
|
+
},
|
|
14255
|
+
{
|
|
14256
|
+
"kind": "javascript-module",
|
|
14257
|
+
"path": "src/components/common/image-carousel/image-carousel.ts",
|
|
14258
|
+
"declarations": [],
|
|
14259
|
+
"exports": []
|
|
14260
|
+
},
|
|
14243
14261
|
{
|
|
14244
14262
|
"kind": "javascript-module",
|
|
14245
14263
|
"path": "src/components/common/generated-answer/copy-button.ts",
|
|
@@ -14330,18 +14348,6 @@
|
|
|
14330
14348
|
"declarations": [],
|
|
14331
14349
|
"exports": []
|
|
14332
14350
|
},
|
|
14333
|
-
{
|
|
14334
|
-
"kind": "javascript-module",
|
|
14335
|
-
"path": "src/components/common/image-carousel/image-carousel-indicators.ts",
|
|
14336
|
-
"declarations": [],
|
|
14337
|
-
"exports": []
|
|
14338
|
-
},
|
|
14339
|
-
{
|
|
14340
|
-
"kind": "javascript-module",
|
|
14341
|
-
"path": "src/components/common/image-carousel/image-carousel.ts",
|
|
14342
|
-
"declarations": [],
|
|
14343
|
-
"exports": []
|
|
14344
|
-
},
|
|
14345
14351
|
{
|
|
14346
14352
|
"kind": "javascript-module",
|
|
14347
14353
|
"path": "src/components/common/interface/analytics-config.ts",
|
|
@@ -14818,67 +14824,67 @@
|
|
|
14818
14824
|
},
|
|
14819
14825
|
{
|
|
14820
14826
|
"kind": "javascript-module",
|
|
14821
|
-
"path": "src/components/common/
|
|
14827
|
+
"path": "src/components/common/sort/label.ts",
|
|
14822
14828
|
"declarations": [],
|
|
14823
14829
|
"exports": []
|
|
14824
14830
|
},
|
|
14825
14831
|
{
|
|
14826
14832
|
"kind": "javascript-module",
|
|
14827
|
-
"path": "src/components/common/
|
|
14833
|
+
"path": "src/components/common/sort/option.ts",
|
|
14828
14834
|
"declarations": [],
|
|
14829
14835
|
"exports": []
|
|
14830
14836
|
},
|
|
14831
14837
|
{
|
|
14832
14838
|
"kind": "javascript-module",
|
|
14833
|
-
"path": "src/components/common/
|
|
14839
|
+
"path": "src/components/common/sort/select.ts",
|
|
14834
14840
|
"declarations": [],
|
|
14835
14841
|
"exports": []
|
|
14836
14842
|
},
|
|
14837
14843
|
{
|
|
14838
14844
|
"kind": "javascript-module",
|
|
14839
|
-
"path": "src/components/common/
|
|
14845
|
+
"path": "src/components/common/sort/sort-guard.ts",
|
|
14840
14846
|
"declarations": [],
|
|
14841
14847
|
"exports": []
|
|
14842
14848
|
},
|
|
14843
14849
|
{
|
|
14844
14850
|
"kind": "javascript-module",
|
|
14845
|
-
"path": "src/components/common/suggestions/
|
|
14851
|
+
"path": "src/components/common/suggestions/instant-item.ts",
|
|
14846
14852
|
"declarations": [],
|
|
14847
14853
|
"exports": []
|
|
14848
14854
|
},
|
|
14849
14855
|
{
|
|
14850
14856
|
"kind": "javascript-module",
|
|
14851
|
-
"path": "src/components/common/suggestions/suggestions
|
|
14857
|
+
"path": "src/components/common/suggestions/query-suggestions.ts",
|
|
14852
14858
|
"declarations": [],
|
|
14853
14859
|
"exports": []
|
|
14854
14860
|
},
|
|
14855
14861
|
{
|
|
14856
14862
|
"kind": "javascript-module",
|
|
14857
|
-
"path": "src/components/common/suggestions/
|
|
14863
|
+
"path": "src/components/common/suggestions/recent-queries.ts",
|
|
14858
14864
|
"declarations": [],
|
|
14859
14865
|
"exports": []
|
|
14860
14866
|
},
|
|
14861
14867
|
{
|
|
14862
14868
|
"kind": "javascript-module",
|
|
14863
|
-
"path": "src/components/common/
|
|
14869
|
+
"path": "src/components/common/suggestions/suggestion-manager.ts",
|
|
14864
14870
|
"declarations": [],
|
|
14865
14871
|
"exports": []
|
|
14866
14872
|
},
|
|
14867
14873
|
{
|
|
14868
14874
|
"kind": "javascript-module",
|
|
14869
|
-
"path": "src/components/common/
|
|
14875
|
+
"path": "src/components/common/suggestions/suggestions-events.ts",
|
|
14870
14876
|
"declarations": [],
|
|
14871
14877
|
"exports": []
|
|
14872
14878
|
},
|
|
14873
14879
|
{
|
|
14874
14880
|
"kind": "javascript-module",
|
|
14875
|
-
"path": "src/components/common/
|
|
14881
|
+
"path": "src/components/common/suggestions/suggestions-types.ts",
|
|
14876
14882
|
"declarations": [],
|
|
14877
14883
|
"exports": []
|
|
14878
14884
|
},
|
|
14879
14885
|
{
|
|
14880
14886
|
"kind": "javascript-module",
|
|
14881
|
-
"path": "src/components/common/
|
|
14887
|
+
"path": "src/components/common/suggestions/suggestions-utils.ts",
|
|
14882
14888
|
"declarations": [],
|
|
14883
14889
|
"exports": []
|
|
14884
14890
|
},
|
|
@@ -21713,8 +21719,225 @@
|
|
|
21713
21719
|
{
|
|
21714
21720
|
"kind": "javascript-module",
|
|
21715
21721
|
"path": "src/components/insight/atomic-insight-smart-snippet-feedback-modal/atomic-insight-smart-snippet-feedback-modal.ts",
|
|
21716
|
-
"declarations": [
|
|
21717
|
-
|
|
21722
|
+
"declarations": [
|
|
21723
|
+
{
|
|
21724
|
+
"kind": "class",
|
|
21725
|
+
"description": "The `atomic-insight-smart-snippet-feedback-modal` is automatically created as a child of the `atomic-insight-interface` when the `atomic-insight-smart-snippet` is initialized.\n\nWhen the modal is opened, the class `atomic-modal-opened` is added to the body, allowing further customization.",
|
|
21726
|
+
"name": "AtomicInsightSmartSnippetFeedbackModal",
|
|
21727
|
+
"cssParts": [
|
|
21728
|
+
{
|
|
21729
|
+
"description": "The transparent backdrop hiding the content behind the modal.",
|
|
21730
|
+
"name": "backdrop"
|
|
21731
|
+
},
|
|
21732
|
+
{
|
|
21733
|
+
"description": "The modal's outermost container with the outline and background.",
|
|
21734
|
+
"name": "container"
|
|
21735
|
+
},
|
|
21736
|
+
{
|
|
21737
|
+
"description": "The wrapper around the header.",
|
|
21738
|
+
"name": "header-wrapper"
|
|
21739
|
+
},
|
|
21740
|
+
{
|
|
21741
|
+
"description": "The header of the modal, containing the title.",
|
|
21742
|
+
"name": "header"
|
|
21743
|
+
},
|
|
21744
|
+
{
|
|
21745
|
+
"description": "The horizontal ruler underneath the header.",
|
|
21746
|
+
"name": "header-ruler"
|
|
21747
|
+
},
|
|
21748
|
+
{
|
|
21749
|
+
"description": "The wrapper around the body.",
|
|
21750
|
+
"name": "body-wrapper"
|
|
21751
|
+
},
|
|
21752
|
+
{
|
|
21753
|
+
"description": "The body of the modal, between the header and the footer.",
|
|
21754
|
+
"name": "body"
|
|
21755
|
+
},
|
|
21756
|
+
{
|
|
21757
|
+
"description": "The wrapper around the reason and details.",
|
|
21758
|
+
"name": "form"
|
|
21759
|
+
},
|
|
21760
|
+
{
|
|
21761
|
+
"description": "The title above the reason radio buttons.",
|
|
21762
|
+
"name": "reason-title"
|
|
21763
|
+
},
|
|
21764
|
+
{
|
|
21765
|
+
"description": "A wrapper around the radio button and the label of a reason.",
|
|
21766
|
+
"name": "reason"
|
|
21767
|
+
},
|
|
21768
|
+
{
|
|
21769
|
+
"description": "A radio button representing a reason.",
|
|
21770
|
+
"name": "reason-radio"
|
|
21771
|
+
},
|
|
21772
|
+
{
|
|
21773
|
+
"description": "A label linked to a radio button representing a reason.",
|
|
21774
|
+
"name": "reason-label"
|
|
21775
|
+
},
|
|
21776
|
+
{
|
|
21777
|
+
"description": "The title above the details input.",
|
|
21778
|
+
"name": "details-title"
|
|
21779
|
+
},
|
|
21780
|
+
{
|
|
21781
|
+
"description": "The input to specify additional details.",
|
|
21782
|
+
"name": "details-input"
|
|
21783
|
+
},
|
|
21784
|
+
{
|
|
21785
|
+
"description": "The wrapper with a shadow around the footer.",
|
|
21786
|
+
"name": "footer-wrapper"
|
|
21787
|
+
},
|
|
21788
|
+
{
|
|
21789
|
+
"description": "The footer at the bottom of the modal.",
|
|
21790
|
+
"name": "footer"
|
|
21791
|
+
},
|
|
21792
|
+
{
|
|
21793
|
+
"description": "The wrapper around the cancel and submit buttons.",
|
|
21794
|
+
"name": "buttons"
|
|
21795
|
+
},
|
|
21796
|
+
{
|
|
21797
|
+
"description": "The cancel button.",
|
|
21798
|
+
"name": "cancel-button"
|
|
21799
|
+
},
|
|
21800
|
+
{
|
|
21801
|
+
"description": "The submit button.",
|
|
21802
|
+
"name": "submit-button"
|
|
21803
|
+
}
|
|
21804
|
+
],
|
|
21805
|
+
"members": [
|
|
21806
|
+
{
|
|
21807
|
+
"kind": "field",
|
|
21808
|
+
"name": "bindings",
|
|
21809
|
+
"type": {
|
|
21810
|
+
"text": "InsightBindings"
|
|
21811
|
+
},
|
|
21812
|
+
"privacy": "private"
|
|
21813
|
+
},
|
|
21814
|
+
{
|
|
21815
|
+
"kind": "field",
|
|
21816
|
+
"name": "error",
|
|
21817
|
+
"type": {
|
|
21818
|
+
"text": "Error"
|
|
21819
|
+
},
|
|
21820
|
+
"privacy": "private"
|
|
21821
|
+
},
|
|
21822
|
+
{
|
|
21823
|
+
"kind": "field",
|
|
21824
|
+
"name": "source",
|
|
21825
|
+
"type": {
|
|
21826
|
+
"text": "HTMLElement | undefined"
|
|
21827
|
+
},
|
|
21828
|
+
"description": "The element that triggers the feedback modal."
|
|
21829
|
+
},
|
|
21830
|
+
{
|
|
21831
|
+
"kind": "field",
|
|
21832
|
+
"name": "isOpen",
|
|
21833
|
+
"type": {
|
|
21834
|
+
"text": "boolean"
|
|
21835
|
+
},
|
|
21836
|
+
"privacy": "public",
|
|
21837
|
+
"default": "false",
|
|
21838
|
+
"description": "Whether the modal is open.",
|
|
21839
|
+
"attribute": "is-open",
|
|
21840
|
+
"reflects": true
|
|
21841
|
+
},
|
|
21842
|
+
{
|
|
21843
|
+
"kind": "field",
|
|
21844
|
+
"name": "currentAnswer",
|
|
21845
|
+
"type": {
|
|
21846
|
+
"text": "SmartSnippetFeedback | 'other' | undefined"
|
|
21847
|
+
},
|
|
21848
|
+
"privacy": "private"
|
|
21849
|
+
},
|
|
21850
|
+
{
|
|
21851
|
+
"kind": "field",
|
|
21852
|
+
"name": "detailsInputRef",
|
|
21853
|
+
"type": {
|
|
21854
|
+
"text": "Ref<HTMLTextAreaElement>"
|
|
21855
|
+
},
|
|
21856
|
+
"privacy": "private"
|
|
21857
|
+
},
|
|
21858
|
+
{
|
|
21859
|
+
"kind": "field",
|
|
21860
|
+
"name": "formId",
|
|
21861
|
+
"privacy": "private",
|
|
21862
|
+
"readonly": true
|
|
21863
|
+
},
|
|
21864
|
+
{
|
|
21865
|
+
"kind": "field",
|
|
21866
|
+
"name": "smartSnippet",
|
|
21867
|
+
"type": {
|
|
21868
|
+
"text": "SmartSnippet"
|
|
21869
|
+
},
|
|
21870
|
+
"privacy": "private"
|
|
21871
|
+
},
|
|
21872
|
+
{
|
|
21873
|
+
"kind": "method",
|
|
21874
|
+
"name": "initialize",
|
|
21875
|
+
"privacy": "public"
|
|
21876
|
+
},
|
|
21877
|
+
{
|
|
21878
|
+
"kind": "method",
|
|
21879
|
+
"name": "close",
|
|
21880
|
+
"privacy": "private"
|
|
21881
|
+
},
|
|
21882
|
+
{
|
|
21883
|
+
"kind": "method",
|
|
21884
|
+
"name": "sendFeedback",
|
|
21885
|
+
"privacy": "private",
|
|
21886
|
+
"parameters": [
|
|
21887
|
+
{
|
|
21888
|
+
"name": "e",
|
|
21889
|
+
"type": {
|
|
21890
|
+
"text": "Event"
|
|
21891
|
+
}
|
|
21892
|
+
}
|
|
21893
|
+
]
|
|
21894
|
+
}
|
|
21895
|
+
],
|
|
21896
|
+
"events": [
|
|
21897
|
+
{
|
|
21898
|
+
"name": "feedbackSent",
|
|
21899
|
+
"type": {
|
|
21900
|
+
"text": "Event"
|
|
21901
|
+
}
|
|
21902
|
+
}
|
|
21903
|
+
],
|
|
21904
|
+
"attributes": [
|
|
21905
|
+
{
|
|
21906
|
+
"name": "is-open",
|
|
21907
|
+
"type": {
|
|
21908
|
+
"text": "boolean"
|
|
21909
|
+
},
|
|
21910
|
+
"default": "false",
|
|
21911
|
+
"description": "Whether the modal is open.",
|
|
21912
|
+
"fieldName": "isOpen"
|
|
21913
|
+
}
|
|
21914
|
+
],
|
|
21915
|
+
"superclass": {
|
|
21916
|
+
"name": "LitElement",
|
|
21917
|
+
"package": "lit"
|
|
21918
|
+
},
|
|
21919
|
+
"tagName": "atomic-insight-smart-snippet-feedback-modal",
|
|
21920
|
+
"customElement": true
|
|
21921
|
+
}
|
|
21922
|
+
],
|
|
21923
|
+
"exports": [
|
|
21924
|
+
{
|
|
21925
|
+
"kind": "js",
|
|
21926
|
+
"name": "AtomicInsightSmartSnippetFeedbackModal",
|
|
21927
|
+
"declaration": {
|
|
21928
|
+
"name": "AtomicInsightSmartSnippetFeedbackModal",
|
|
21929
|
+
"module": "src/components/insight/atomic-insight-smart-snippet-feedback-modal/atomic-insight-smart-snippet-feedback-modal.ts"
|
|
21930
|
+
}
|
|
21931
|
+
},
|
|
21932
|
+
{
|
|
21933
|
+
"kind": "custom-element-definition",
|
|
21934
|
+
"name": "atomic-insight-smart-snippet-feedback-modal",
|
|
21935
|
+
"declaration": {
|
|
21936
|
+
"name": "AtomicInsightSmartSnippetFeedbackModal",
|
|
21937
|
+
"module": "src/components/insight/atomic-insight-smart-snippet-feedback-modal/atomic-insight-smart-snippet-feedback-modal.ts"
|
|
21938
|
+
}
|
|
21939
|
+
}
|
|
21940
|
+
]
|
|
21718
21941
|
},
|
|
21719
21942
|
{
|
|
21720
21943
|
"kind": "javascript-module",
|
|
@@ -22453,8 +22676,240 @@
|
|
|
22453
22676
|
{
|
|
22454
22677
|
"kind": "javascript-module",
|
|
22455
22678
|
"path": "src/components/insight/atomic-insight-user-actions-modal/atomic-insight-user-actions-modal.ts",
|
|
22456
|
-
"declarations": [
|
|
22457
|
-
|
|
22679
|
+
"declarations": [
|
|
22680
|
+
{
|
|
22681
|
+
"kind": "class",
|
|
22682
|
+
"description": "The `atomic-insight-user-actions-modal` is automatically created as a child of the `atomic-insight-interface` when the `atomic-insight-user-actions-toggle` is initialized.\n\nWhen the modal is opened, the CSS class `atomic-modal-opened` is added to the interface element and the body, allowing further customization.",
|
|
22683
|
+
"name": "AtomicInsightUserActionsModal",
|
|
22684
|
+
"cssParts": [
|
|
22685
|
+
{
|
|
22686
|
+
"description": "The title element displaying \"user-actions\" text.",
|
|
22687
|
+
"name": "title"
|
|
22688
|
+
},
|
|
22689
|
+
{
|
|
22690
|
+
"description": "The button used to close the modal.",
|
|
22691
|
+
"name": "close-button"
|
|
22692
|
+
},
|
|
22693
|
+
{
|
|
22694
|
+
"description": "The close icon within the close button.",
|
|
22695
|
+
"name": "close-icon"
|
|
22696
|
+
},
|
|
22697
|
+
{
|
|
22698
|
+
"description": "The transparent backdrop hiding the content behind the modal (inherited from atomic-modal).",
|
|
22699
|
+
"name": "backdrop"
|
|
22700
|
+
},
|
|
22701
|
+
{
|
|
22702
|
+
"description": "The modal's outermost container with the outline and background (inherited from atomic-modal).",
|
|
22703
|
+
"name": "container"
|
|
22704
|
+
},
|
|
22705
|
+
{
|
|
22706
|
+
"description": "The wrapper around the header (inherited from atomic-modal).",
|
|
22707
|
+
"name": "header-wrapper"
|
|
22708
|
+
},
|
|
22709
|
+
{
|
|
22710
|
+
"description": "The header at the top of the modal (inherited from atomic-modal).",
|
|
22711
|
+
"name": "header"
|
|
22712
|
+
},
|
|
22713
|
+
{
|
|
22714
|
+
"description": "The horizontal ruler underneath the header (inherited from atomic-modal).",
|
|
22715
|
+
"name": "header-ruler"
|
|
22716
|
+
},
|
|
22717
|
+
{
|
|
22718
|
+
"description": "The wrapper around the body (inherited from atomic-modal).",
|
|
22719
|
+
"name": "body-wrapper"
|
|
22720
|
+
},
|
|
22721
|
+
{
|
|
22722
|
+
"description": "The body of the modal, between the header and the footer (inherited from atomic-modal).",
|
|
22723
|
+
"name": "body"
|
|
22724
|
+
},
|
|
22725
|
+
{
|
|
22726
|
+
"description": "The wrapper with a shadow or background color around the footer (inherited from atomic-modal).",
|
|
22727
|
+
"name": "footer-wrapper"
|
|
22728
|
+
},
|
|
22729
|
+
{
|
|
22730
|
+
"description": "The footer at the bottom of the modal (inherited from atomic-modal).",
|
|
22731
|
+
"name": "footer"
|
|
22732
|
+
}
|
|
22733
|
+
],
|
|
22734
|
+
"members": [
|
|
22735
|
+
{
|
|
22736
|
+
"kind": "field",
|
|
22737
|
+
"name": "bindings",
|
|
22738
|
+
"type": {
|
|
22739
|
+
"text": "InsightBindings"
|
|
22740
|
+
},
|
|
22741
|
+
"privacy": "private"
|
|
22742
|
+
},
|
|
22743
|
+
{
|
|
22744
|
+
"kind": "field",
|
|
22745
|
+
"name": "error",
|
|
22746
|
+
"type": {
|
|
22747
|
+
"text": "Error"
|
|
22748
|
+
},
|
|
22749
|
+
"privacy": "private"
|
|
22750
|
+
},
|
|
22751
|
+
{
|
|
22752
|
+
"kind": "field",
|
|
22753
|
+
"name": "interfaceDimensions",
|
|
22754
|
+
"type": {
|
|
22755
|
+
"text": "DOMRect | undefined"
|
|
22756
|
+
},
|
|
22757
|
+
"privacy": "private"
|
|
22758
|
+
},
|
|
22759
|
+
{
|
|
22760
|
+
"kind": "field",
|
|
22761
|
+
"name": "openButton",
|
|
22762
|
+
"type": {
|
|
22763
|
+
"text": "HTMLElement | undefined"
|
|
22764
|
+
},
|
|
22765
|
+
"privacy": "public",
|
|
22766
|
+
"description": "The element that triggers the modal."
|
|
22767
|
+
},
|
|
22768
|
+
{
|
|
22769
|
+
"kind": "field",
|
|
22770
|
+
"name": "isOpen",
|
|
22771
|
+
"type": {
|
|
22772
|
+
"text": "boolean"
|
|
22773
|
+
},
|
|
22774
|
+
"privacy": "public",
|
|
22775
|
+
"default": "false",
|
|
22776
|
+
"description": "Whether the modal is open.",
|
|
22777
|
+
"attribute": "is-open",
|
|
22778
|
+
"reflects": true
|
|
22779
|
+
},
|
|
22780
|
+
{
|
|
22781
|
+
"kind": "field",
|
|
22782
|
+
"name": "userId",
|
|
22783
|
+
"type": {
|
|
22784
|
+
"text": "string"
|
|
22785
|
+
},
|
|
22786
|
+
"privacy": "public",
|
|
22787
|
+
"description": "The ID of the user whose actions are being displayed.",
|
|
22788
|
+
"attribute": "user-id"
|
|
22789
|
+
},
|
|
22790
|
+
{
|
|
22791
|
+
"kind": "field",
|
|
22792
|
+
"name": "ticketCreationDateTime",
|
|
22793
|
+
"type": {
|
|
22794
|
+
"text": "string"
|
|
22795
|
+
},
|
|
22796
|
+
"privacy": "public",
|
|
22797
|
+
"description": "The date and time when the case was created. For example \"2024-01-01T00:00:00Z\"",
|
|
22798
|
+
"attribute": "ticket-creation-date-time"
|
|
22799
|
+
},
|
|
22800
|
+
{
|
|
22801
|
+
"kind": "field",
|
|
22802
|
+
"name": "excludedCustomActions",
|
|
22803
|
+
"type": {
|
|
22804
|
+
"text": "string[]"
|
|
22805
|
+
},
|
|
22806
|
+
"privacy": "public",
|
|
22807
|
+
"default": "[]",
|
|
22808
|
+
"description": "The names of custom events to exclude.",
|
|
22809
|
+
"attribute": "excluded-custom-actions"
|
|
22810
|
+
},
|
|
22811
|
+
{
|
|
22812
|
+
"kind": "field",
|
|
22813
|
+
"name": "animationFrameId",
|
|
22814
|
+
"type": {
|
|
22815
|
+
"text": "number | undefined"
|
|
22816
|
+
},
|
|
22817
|
+
"privacy": "private"
|
|
22818
|
+
},
|
|
22819
|
+
{
|
|
22820
|
+
"kind": "method",
|
|
22821
|
+
"name": "initialize",
|
|
22822
|
+
"privacy": "public"
|
|
22823
|
+
},
|
|
22824
|
+
{
|
|
22825
|
+
"kind": "method",
|
|
22826
|
+
"name": "renderHeader",
|
|
22827
|
+
"privacy": "private"
|
|
22828
|
+
},
|
|
22829
|
+
{
|
|
22830
|
+
"kind": "method",
|
|
22831
|
+
"name": "renderBody",
|
|
22832
|
+
"privacy": "private"
|
|
22833
|
+
},
|
|
22834
|
+
{
|
|
22835
|
+
"kind": "method",
|
|
22836
|
+
"name": "onAnimationFrame",
|
|
22837
|
+
"privacy": "private"
|
|
22838
|
+
},
|
|
22839
|
+
{
|
|
22840
|
+
"kind": "method",
|
|
22841
|
+
"name": "dimensionChanged",
|
|
22842
|
+
"privacy": "private"
|
|
22843
|
+
},
|
|
22844
|
+
{
|
|
22845
|
+
"kind": "method",
|
|
22846
|
+
"name": "updateDimensions",
|
|
22847
|
+
"privacy": "private"
|
|
22848
|
+
}
|
|
22849
|
+
],
|
|
22850
|
+
"attributes": [
|
|
22851
|
+
{
|
|
22852
|
+
"name": "is-open",
|
|
22853
|
+
"type": {
|
|
22854
|
+
"text": "boolean"
|
|
22855
|
+
},
|
|
22856
|
+
"default": "false",
|
|
22857
|
+
"description": "Whether the modal is open.",
|
|
22858
|
+
"fieldName": "isOpen"
|
|
22859
|
+
},
|
|
22860
|
+
{
|
|
22861
|
+
"name": "user-id",
|
|
22862
|
+
"type": {
|
|
22863
|
+
"text": "string"
|
|
22864
|
+
},
|
|
22865
|
+
"description": "The ID of the user whose actions are being displayed.",
|
|
22866
|
+
"fieldName": "userId"
|
|
22867
|
+
},
|
|
22868
|
+
{
|
|
22869
|
+
"name": "ticket-creation-date-time",
|
|
22870
|
+
"type": {
|
|
22871
|
+
"text": "string"
|
|
22872
|
+
},
|
|
22873
|
+
"description": "The date and time when the case was created. For example \"2024-01-01T00:00:00Z\"",
|
|
22874
|
+
"fieldName": "ticketCreationDateTime"
|
|
22875
|
+
},
|
|
22876
|
+
{
|
|
22877
|
+
"name": "excluded-custom-actions",
|
|
22878
|
+
"type": {
|
|
22879
|
+
"text": "string[]"
|
|
22880
|
+
},
|
|
22881
|
+
"default": "[]",
|
|
22882
|
+
"description": "The names of custom events to exclude.",
|
|
22883
|
+
"fieldName": "excludedCustomActions"
|
|
22884
|
+
}
|
|
22885
|
+
],
|
|
22886
|
+
"superclass": {
|
|
22887
|
+
"name": "LitElement",
|
|
22888
|
+
"package": "lit"
|
|
22889
|
+
},
|
|
22890
|
+
"events": [],
|
|
22891
|
+
"tagName": "atomic-insight-user-actions-modal",
|
|
22892
|
+
"customElement": true
|
|
22893
|
+
}
|
|
22894
|
+
],
|
|
22895
|
+
"exports": [
|
|
22896
|
+
{
|
|
22897
|
+
"kind": "js",
|
|
22898
|
+
"name": "AtomicInsightUserActionsModal",
|
|
22899
|
+
"declaration": {
|
|
22900
|
+
"name": "AtomicInsightUserActionsModal",
|
|
22901
|
+
"module": "src/components/insight/atomic-insight-user-actions-modal/atomic-insight-user-actions-modal.ts"
|
|
22902
|
+
}
|
|
22903
|
+
},
|
|
22904
|
+
{
|
|
22905
|
+
"kind": "custom-element-definition",
|
|
22906
|
+
"name": "atomic-insight-user-actions-modal",
|
|
22907
|
+
"declaration": {
|
|
22908
|
+
"name": "AtomicInsightUserActionsModal",
|
|
22909
|
+
"module": "src/components/insight/atomic-insight-user-actions-modal/atomic-insight-user-actions-modal.ts"
|
|
22910
|
+
}
|
|
22911
|
+
}
|
|
22912
|
+
]
|
|
22458
22913
|
},
|
|
22459
22914
|
{
|
|
22460
22915
|
"kind": "javascript-module",
|
|
@@ -40600,12 +41055,12 @@
|
|
|
40600
41055
|
},
|
|
40601
41056
|
{
|
|
40602
41057
|
"kind": "javascript-module",
|
|
40603
|
-
"path": "src/components/search/atomic-result-section-
|
|
41058
|
+
"path": "src/components/search/atomic-result-section-bottom-metadata/atomic-result-section-bottom-metadata.ts",
|
|
40604
41059
|
"declarations": [
|
|
40605
41060
|
{
|
|
40606
41061
|
"kind": "class",
|
|
40607
|
-
"description": "This section
|
|
40608
|
-
"name": "
|
|
41062
|
+
"description": "This section is meant to render additional descriptive information about the result.\n\nBehavior:\n* Has a maximum height of two lines.\n** We recommend that you use `atomic-result-fields-list` to ensure that the fields in this section don't overflow.\n* Exposes the `--line-height` variable so child elements can adjust to the current line height.\n* Has a defined CSS `color` property for text.\n* Has a font weight.",
|
|
41063
|
+
"name": "AtomicResultSectionBottomMetadata",
|
|
40609
41064
|
"mixins": [
|
|
40610
41065
|
{
|
|
40611
41066
|
"name": "ItemSectionMixin",
|
|
@@ -40616,7 +41071,7 @@
|
|
|
40616
41071
|
"name": "LitElement",
|
|
40617
41072
|
"package": "lit"
|
|
40618
41073
|
},
|
|
40619
|
-
"tagName": "atomic-result-section-
|
|
41074
|
+
"tagName": "atomic-result-section-bottom-metadata",
|
|
40620
41075
|
"customElement": true,
|
|
40621
41076
|
"members": [
|
|
40622
41077
|
{
|
|
@@ -40676,30 +41131,30 @@
|
|
|
40676
41131
|
"exports": [
|
|
40677
41132
|
{
|
|
40678
41133
|
"kind": "js",
|
|
40679
|
-
"name": "
|
|
41134
|
+
"name": "AtomicResultSectionBottomMetadata",
|
|
40680
41135
|
"declaration": {
|
|
40681
|
-
"name": "
|
|
40682
|
-
"module": "src/components/search/atomic-result-section-
|
|
41136
|
+
"name": "AtomicResultSectionBottomMetadata",
|
|
41137
|
+
"module": "src/components/search/atomic-result-section-bottom-metadata/atomic-result-section-bottom-metadata.ts"
|
|
40683
41138
|
}
|
|
40684
41139
|
},
|
|
40685
41140
|
{
|
|
40686
41141
|
"kind": "custom-element-definition",
|
|
40687
|
-
"name": "atomic-result-section-
|
|
41142
|
+
"name": "atomic-result-section-bottom-metadata",
|
|
40688
41143
|
"declaration": {
|
|
40689
|
-
"name": "
|
|
40690
|
-
"module": "src/components/search/atomic-result-section-
|
|
41144
|
+
"name": "AtomicResultSectionBottomMetadata",
|
|
41145
|
+
"module": "src/components/search/atomic-result-section-bottom-metadata/atomic-result-section-bottom-metadata.ts"
|
|
40691
41146
|
}
|
|
40692
41147
|
}
|
|
40693
41148
|
]
|
|
40694
41149
|
},
|
|
40695
41150
|
{
|
|
40696
41151
|
"kind": "javascript-module",
|
|
40697
|
-
"path": "src/components/search/atomic-result-section-
|
|
41152
|
+
"path": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts",
|
|
40698
41153
|
"declarations": [
|
|
40699
41154
|
{
|
|
40700
41155
|
"kind": "class",
|
|
40701
|
-
"description": "This section
|
|
40702
|
-
"name": "
|
|
41156
|
+
"description": "This section displays the folded results, available when using the <atomic-result-children> component.\n\nBehavior:\n* Shows children at the bottom of the result, indented and wrapped in a border.",
|
|
41157
|
+
"name": "AtomicResultSectionChildren",
|
|
40703
41158
|
"mixins": [
|
|
40704
41159
|
{
|
|
40705
41160
|
"name": "ItemSectionMixin",
|
|
@@ -40710,7 +41165,7 @@
|
|
|
40710
41165
|
"name": "LitElement",
|
|
40711
41166
|
"package": "lit"
|
|
40712
41167
|
},
|
|
40713
|
-
"tagName": "atomic-result-section-
|
|
41168
|
+
"tagName": "atomic-result-section-children",
|
|
40714
41169
|
"customElement": true,
|
|
40715
41170
|
"members": [
|
|
40716
41171
|
{
|
|
@@ -40770,18 +41225,18 @@
|
|
|
40770
41225
|
"exports": [
|
|
40771
41226
|
{
|
|
40772
41227
|
"kind": "js",
|
|
40773
|
-
"name": "
|
|
41228
|
+
"name": "AtomicResultSectionChildren",
|
|
40774
41229
|
"declaration": {
|
|
40775
|
-
"name": "
|
|
40776
|
-
"module": "src/components/search/atomic-result-section-
|
|
41230
|
+
"name": "AtomicResultSectionChildren",
|
|
41231
|
+
"module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
|
|
40777
41232
|
}
|
|
40778
41233
|
},
|
|
40779
41234
|
{
|
|
40780
41235
|
"kind": "custom-element-definition",
|
|
40781
|
-
"name": "atomic-result-section-
|
|
41236
|
+
"name": "atomic-result-section-children",
|
|
40782
41237
|
"declaration": {
|
|
40783
|
-
"name": "
|
|
40784
|
-
"module": "src/components/search/atomic-result-section-
|
|
41238
|
+
"name": "AtomicResultSectionChildren",
|
|
41239
|
+
"module": "src/components/search/atomic-result-section-children/atomic-result-section-children.ts"
|
|
40785
41240
|
}
|
|
40786
41241
|
}
|
|
40787
41242
|
]
|
|
@@ -41278,6 +41733,12 @@
|
|
|
41278
41733
|
}
|
|
41279
41734
|
]
|
|
41280
41735
|
},
|
|
41736
|
+
{
|
|
41737
|
+
"kind": "javascript-module",
|
|
41738
|
+
"path": "src/components/search/atomic-result-table-placeholder/atomic-result-table-placeholder.ts",
|
|
41739
|
+
"declarations": [],
|
|
41740
|
+
"exports": []
|
|
41741
|
+
},
|
|
41281
41742
|
{
|
|
41282
41743
|
"kind": "javascript-module",
|
|
41283
41744
|
"path": "src/components/search/atomic-result-template/atomic-result-template.ts",
|
|
@@ -41654,12 +42115,6 @@
|
|
|
41654
42115
|
}
|
|
41655
42116
|
]
|
|
41656
42117
|
},
|
|
41657
|
-
{
|
|
41658
|
-
"kind": "javascript-module",
|
|
41659
|
-
"path": "src/components/search/atomic-result-table-placeholder/atomic-result-table-placeholder.ts",
|
|
41660
|
-
"declarations": [],
|
|
41661
|
-
"exports": []
|
|
41662
|
-
},
|
|
41663
42118
|
{
|
|
41664
42119
|
"kind": "javascript-module",
|
|
41665
42120
|
"path": "src/components/search/atomic-result-timespan/atomic-result-timespan.ts",
|
|
@@ -47706,61 +48161,61 @@
|
|
|
47706
48161
|
},
|
|
47707
48162
|
{
|
|
47708
48163
|
"kind": "javascript-module",
|
|
47709
|
-
"path": "src/components/commerce/atomic-
|
|
48164
|
+
"path": "src/components/commerce/atomic-commerce-timeframe-facet/e2e/atomic-commerce-timeframe-facet.e2e.ts",
|
|
47710
48165
|
"declarations": [],
|
|
47711
48166
|
"exports": []
|
|
47712
48167
|
},
|
|
47713
48168
|
{
|
|
47714
48169
|
"kind": "javascript-module",
|
|
47715
|
-
"path": "src/components/commerce/atomic-commerce-timeframe-facet/e2e/
|
|
48170
|
+
"path": "src/components/commerce/atomic-commerce-timeframe-facet/e2e/fixture.ts",
|
|
47716
48171
|
"declarations": [],
|
|
47717
48172
|
"exports": []
|
|
47718
48173
|
},
|
|
47719
48174
|
{
|
|
47720
48175
|
"kind": "javascript-module",
|
|
47721
|
-
"path": "src/components/commerce/atomic-commerce-timeframe-facet/e2e/
|
|
48176
|
+
"path": "src/components/commerce/atomic-commerce-timeframe-facet/e2e/page-object.ts",
|
|
47722
48177
|
"declarations": [],
|
|
47723
48178
|
"exports": []
|
|
47724
48179
|
},
|
|
47725
48180
|
{
|
|
47726
48181
|
"kind": "javascript-module",
|
|
47727
|
-
"path": "src/components/commerce/atomic-
|
|
48182
|
+
"path": "src/components/commerce/atomic-product/e2e/page-object.ts",
|
|
47728
48183
|
"declarations": [],
|
|
47729
48184
|
"exports": []
|
|
47730
48185
|
},
|
|
47731
48186
|
{
|
|
47732
48187
|
"kind": "javascript-module",
|
|
47733
|
-
"path": "src/components/commerce/atomic-product-
|
|
48188
|
+
"path": "src/components/commerce/atomic-product-description/e2e/atomic-product-description.e2e.ts",
|
|
47734
48189
|
"declarations": [],
|
|
47735
48190
|
"exports": []
|
|
47736
48191
|
},
|
|
47737
48192
|
{
|
|
47738
48193
|
"kind": "javascript-module",
|
|
47739
|
-
"path": "src/components/commerce/atomic-product-
|
|
48194
|
+
"path": "src/components/commerce/atomic-product-description/e2e/fixture.ts",
|
|
47740
48195
|
"declarations": [],
|
|
47741
48196
|
"exports": []
|
|
47742
48197
|
},
|
|
47743
48198
|
{
|
|
47744
48199
|
"kind": "javascript-module",
|
|
47745
|
-
"path": "src/components/commerce/atomic-product-
|
|
48200
|
+
"path": "src/components/commerce/atomic-product-description/e2e/page-object.ts",
|
|
47746
48201
|
"declarations": [],
|
|
47747
48202
|
"exports": []
|
|
47748
48203
|
},
|
|
47749
48204
|
{
|
|
47750
48205
|
"kind": "javascript-module",
|
|
47751
|
-
"path": "src/components/commerce/atomic-product-
|
|
48206
|
+
"path": "src/components/commerce/atomic-product-children/e2e/atomic-product-children.e2e.ts",
|
|
47752
48207
|
"declarations": [],
|
|
47753
48208
|
"exports": []
|
|
47754
48209
|
},
|
|
47755
48210
|
{
|
|
47756
48211
|
"kind": "javascript-module",
|
|
47757
|
-
"path": "src/components/commerce/atomic-product-
|
|
48212
|
+
"path": "src/components/commerce/atomic-product-children/e2e/fixture.ts",
|
|
47758
48213
|
"declarations": [],
|
|
47759
48214
|
"exports": []
|
|
47760
48215
|
},
|
|
47761
48216
|
{
|
|
47762
48217
|
"kind": "javascript-module",
|
|
47763
|
-
"path": "src/components/commerce/atomic-product-
|
|
48218
|
+
"path": "src/components/commerce/atomic-product-children/e2e/page-object.ts",
|
|
47764
48219
|
"declarations": [],
|
|
47765
48220
|
"exports": []
|
|
47766
48221
|
},
|
|
@@ -47874,37 +48329,37 @@
|
|
|
47874
48329
|
},
|
|
47875
48330
|
{
|
|
47876
48331
|
"kind": "javascript-module",
|
|
47877
|
-
"path": "src/components/commerce/atomic-product-
|
|
48332
|
+
"path": "src/components/commerce/atomic-product-price/e2e/atomic-product-price.e2e.ts",
|
|
47878
48333
|
"declarations": [],
|
|
47879
48334
|
"exports": []
|
|
47880
48335
|
},
|
|
47881
48336
|
{
|
|
47882
48337
|
"kind": "javascript-module",
|
|
47883
|
-
"path": "src/components/commerce/atomic-product-
|
|
48338
|
+
"path": "src/components/commerce/atomic-product-price/e2e/fixture.ts",
|
|
47884
48339
|
"declarations": [],
|
|
47885
48340
|
"exports": []
|
|
47886
48341
|
},
|
|
47887
48342
|
{
|
|
47888
48343
|
"kind": "javascript-module",
|
|
47889
|
-
"path": "src/components/commerce/atomic-product-
|
|
48344
|
+
"path": "src/components/commerce/atomic-product-price/e2e/page-object.ts",
|
|
47890
48345
|
"declarations": [],
|
|
47891
48346
|
"exports": []
|
|
47892
48347
|
},
|
|
47893
48348
|
{
|
|
47894
48349
|
"kind": "javascript-module",
|
|
47895
|
-
"path": "src/components/commerce/atomic-product-
|
|
48350
|
+
"path": "src/components/commerce/atomic-product-rating/e2e/atomic-product-rating.e2e.ts",
|
|
47896
48351
|
"declarations": [],
|
|
47897
48352
|
"exports": []
|
|
47898
48353
|
},
|
|
47899
48354
|
{
|
|
47900
48355
|
"kind": "javascript-module",
|
|
47901
|
-
"path": "src/components/commerce/atomic-product-
|
|
48356
|
+
"path": "src/components/commerce/atomic-product-rating/e2e/fixture.ts",
|
|
47902
48357
|
"declarations": [],
|
|
47903
48358
|
"exports": []
|
|
47904
48359
|
},
|
|
47905
48360
|
{
|
|
47906
48361
|
"kind": "javascript-module",
|
|
47907
|
-
"path": "src/components/commerce/atomic-product-
|
|
48362
|
+
"path": "src/components/commerce/atomic-product-rating/e2e/page-object.ts",
|
|
47908
48363
|
"declarations": [],
|
|
47909
48364
|
"exports": []
|
|
47910
48365
|
},
|
|
@@ -47980,12 +48435,6 @@
|
|
|
47980
48435
|
"declarations": [],
|
|
47981
48436
|
"exports": []
|
|
47982
48437
|
},
|
|
47983
|
-
{
|
|
47984
|
-
"kind": "javascript-module",
|
|
47985
|
-
"path": "src/components/common/facets/e2e/page-object.ts",
|
|
47986
|
-
"declarations": [],
|
|
47987
|
-
"exports": []
|
|
47988
|
-
},
|
|
47989
48438
|
{
|
|
47990
48439
|
"kind": "javascript-module",
|
|
47991
48440
|
"path": "src/components/common/facets/category-facet/all-categories-button.ts",
|
|
@@ -48046,6 +48495,12 @@
|
|
|
48046
48495
|
"declarations": [],
|
|
48047
48496
|
"exports": []
|
|
48048
48497
|
},
|
|
48498
|
+
{
|
|
48499
|
+
"kind": "javascript-module",
|
|
48500
|
+
"path": "src/components/common/facets/e2e/page-object.ts",
|
|
48501
|
+
"declarations": [],
|
|
48502
|
+
"exports": []
|
|
48503
|
+
},
|
|
48049
48504
|
{
|
|
48050
48505
|
"kind": "javascript-module",
|
|
48051
48506
|
"path": "src/components/common/facets/facet-container/facet-container.ts",
|
|
@@ -48132,30 +48587,30 @@
|
|
|
48132
48587
|
},
|
|
48133
48588
|
{
|
|
48134
48589
|
"kind": "javascript-module",
|
|
48135
|
-
"path": "src/components/common/facets/facet-value-
|
|
48136
|
-
"declarations": [
|
|
48590
|
+
"path": "src/components/common/facets/facet-value-checkbox/facet-value-checkbox.ts",
|
|
48591
|
+
"declarations": [
|
|
48592
|
+
{
|
|
48593
|
+
"kind": "variable",
|
|
48594
|
+
"name": "id"
|
|
48595
|
+
}
|
|
48596
|
+
],
|
|
48137
48597
|
"exports": []
|
|
48138
48598
|
},
|
|
48139
48599
|
{
|
|
48140
48600
|
"kind": "javascript-module",
|
|
48141
|
-
"path": "src/components/common/facets/facet-value-
|
|
48601
|
+
"path": "src/components/common/facets/facet-value-checkbox/facet-value-checkbox.tw.css.ts",
|
|
48142
48602
|
"declarations": [],
|
|
48143
48603
|
"exports": []
|
|
48144
48604
|
},
|
|
48145
48605
|
{
|
|
48146
48606
|
"kind": "javascript-module",
|
|
48147
|
-
"path": "src/components/common/facets/facet-value-
|
|
48148
|
-
"declarations": [
|
|
48149
|
-
{
|
|
48150
|
-
"kind": "variable",
|
|
48151
|
-
"name": "id"
|
|
48152
|
-
}
|
|
48153
|
-
],
|
|
48607
|
+
"path": "src/components/common/facets/facet-value-exclude/facet-value-exclude.ts",
|
|
48608
|
+
"declarations": [],
|
|
48154
48609
|
"exports": []
|
|
48155
48610
|
},
|
|
48156
48611
|
{
|
|
48157
48612
|
"kind": "javascript-module",
|
|
48158
|
-
"path": "src/components/common/facets/facet-value-
|
|
48613
|
+
"path": "src/components/common/facets/facet-value-exclude/facet-value-exclude.tw.css.ts",
|
|
48159
48614
|
"declarations": [],
|
|
48160
48615
|
"exports": []
|
|
48161
48616
|
},
|
|
@@ -48203,103 +48658,103 @@
|
|
|
48203
48658
|
},
|
|
48204
48659
|
{
|
|
48205
48660
|
"kind": "javascript-module",
|
|
48206
|
-
"path": "src/components/common/generated-answer/
|
|
48661
|
+
"path": "src/components/common/generated-answer/styles/copy-button.tw.css.ts",
|
|
48207
48662
|
"declarations": [],
|
|
48208
48663
|
"exports": []
|
|
48209
48664
|
},
|
|
48210
48665
|
{
|
|
48211
48666
|
"kind": "javascript-module",
|
|
48212
|
-
"path": "src/components/common/generated-answer/
|
|
48667
|
+
"path": "src/components/common/generated-answer/styles/feedback-buttons.tw.css.ts",
|
|
48213
48668
|
"declarations": [],
|
|
48214
48669
|
"exports": []
|
|
48215
48670
|
},
|
|
48216
48671
|
{
|
|
48217
48672
|
"kind": "javascript-module",
|
|
48218
|
-
"path": "src/components/common/generated-answer/
|
|
48673
|
+
"path": "src/components/common/generated-answer/styles/generated-answer.tw.css.ts",
|
|
48219
48674
|
"declarations": [],
|
|
48220
48675
|
"exports": []
|
|
48221
48676
|
},
|
|
48222
48677
|
{
|
|
48223
48678
|
"kind": "javascript-module",
|
|
48224
|
-
"path": "src/components/common/generated-answer/generated-
|
|
48679
|
+
"path": "src/components/common/generated-answer/styles/generated-text.tw.css.ts",
|
|
48225
48680
|
"declarations": [],
|
|
48226
48681
|
"exports": []
|
|
48227
48682
|
},
|
|
48228
48683
|
{
|
|
48229
48684
|
"kind": "javascript-module",
|
|
48230
|
-
"path": "src/components/common/generated-answer/
|
|
48685
|
+
"path": "src/components/common/generated-answer/generated-content/generated-markdown-content.ts",
|
|
48231
48686
|
"declarations": [],
|
|
48232
48687
|
"exports": []
|
|
48233
48688
|
},
|
|
48234
48689
|
{
|
|
48235
48690
|
"kind": "javascript-module",
|
|
48236
|
-
"path": "src/components/common/generated-answer/
|
|
48691
|
+
"path": "src/components/common/generated-answer/generated-content/generated-markdown-content.tw.css.ts",
|
|
48237
48692
|
"declarations": [],
|
|
48238
48693
|
"exports": []
|
|
48239
48694
|
},
|
|
48240
48695
|
{
|
|
48241
48696
|
"kind": "javascript-module",
|
|
48242
|
-
"path": "src/components/common/generated-answer/
|
|
48697
|
+
"path": "src/components/common/generated-answer/generated-content/generated-text-content.ts",
|
|
48243
48698
|
"declarations": [],
|
|
48244
48699
|
"exports": []
|
|
48245
48700
|
},
|
|
48246
48701
|
{
|
|
48247
48702
|
"kind": "javascript-module",
|
|
48248
|
-
"path": "src/components/common/generated-answer/
|
|
48703
|
+
"path": "src/components/common/generated-answer/generated-content/markdown-utils.ts",
|
|
48249
48704
|
"declarations": [],
|
|
48250
48705
|
"exports": []
|
|
48251
48706
|
},
|
|
48252
48707
|
{
|
|
48253
48708
|
"kind": "javascript-module",
|
|
48254
|
-
"path": "src/components/common/item-list/
|
|
48709
|
+
"path": "src/components/common/item-list/context/child-templates-context-controller.ts",
|
|
48255
48710
|
"declarations": [],
|
|
48256
48711
|
"exports": []
|
|
48257
48712
|
},
|
|
48258
48713
|
{
|
|
48259
48714
|
"kind": "javascript-module",
|
|
48260
|
-
"path": "src/components/common/item-list/
|
|
48715
|
+
"path": "src/components/common/item-list/context/folded-item-list-context-controller.ts",
|
|
48261
48716
|
"declarations": [],
|
|
48262
48717
|
"exports": []
|
|
48263
48718
|
},
|
|
48264
48719
|
{
|
|
48265
48720
|
"kind": "javascript-module",
|
|
48266
|
-
"path": "src/components/common/item-list/
|
|
48721
|
+
"path": "src/components/common/item-list/context/interactive-item-context-controller.ts",
|
|
48267
48722
|
"declarations": [],
|
|
48268
48723
|
"exports": []
|
|
48269
48724
|
},
|
|
48270
48725
|
{
|
|
48271
48726
|
"kind": "javascript-module",
|
|
48272
|
-
"path": "src/components/common/item-list/
|
|
48727
|
+
"path": "src/components/common/item-list/context/item-context-controller.ts",
|
|
48273
48728
|
"declarations": [],
|
|
48274
48729
|
"exports": []
|
|
48275
48730
|
},
|
|
48276
48731
|
{
|
|
48277
48732
|
"kind": "javascript-module",
|
|
48278
|
-
"path": "src/components/common/item-list/context/
|
|
48733
|
+
"path": "src/components/common/item-list/context/item-display-config-context-controller.ts",
|
|
48279
48734
|
"declarations": [],
|
|
48280
48735
|
"exports": []
|
|
48281
48736
|
},
|
|
48282
48737
|
{
|
|
48283
48738
|
"kind": "javascript-module",
|
|
48284
|
-
"path": "src/components/common/item-list/
|
|
48739
|
+
"path": "src/components/common/item-list/styles/grid-display.tw.css.ts",
|
|
48285
48740
|
"declarations": [],
|
|
48286
48741
|
"exports": []
|
|
48287
48742
|
},
|
|
48288
48743
|
{
|
|
48289
48744
|
"kind": "javascript-module",
|
|
48290
|
-
"path": "src/components/common/item-list/
|
|
48745
|
+
"path": "src/components/common/item-list/styles/list-display.tw.css.ts",
|
|
48291
48746
|
"declarations": [],
|
|
48292
48747
|
"exports": []
|
|
48293
48748
|
},
|
|
48294
48749
|
{
|
|
48295
48750
|
"kind": "javascript-module",
|
|
48296
|
-
"path": "src/components/common/item-list/
|
|
48751
|
+
"path": "src/components/common/item-list/styles/placeholders.tw.css.ts",
|
|
48297
48752
|
"declarations": [],
|
|
48298
48753
|
"exports": []
|
|
48299
48754
|
},
|
|
48300
48755
|
{
|
|
48301
48756
|
"kind": "javascript-module",
|
|
48302
|
-
"path": "src/components/common/item-list/
|
|
48757
|
+
"path": "src/components/common/item-list/styles/table-display.tw.css.ts",
|
|
48303
48758
|
"declarations": [],
|
|
48304
48759
|
"exports": []
|
|
48305
48760
|
},
|
|
@@ -48513,6 +48968,42 @@
|
|
|
48513
48968
|
"declarations": [],
|
|
48514
48969
|
"exports": []
|
|
48515
48970
|
},
|
|
48971
|
+
{
|
|
48972
|
+
"kind": "javascript-module",
|
|
48973
|
+
"path": "src/components/insight/atomic-insight-no-results/e2e/atomic-insight-no-results.e2e.ts",
|
|
48974
|
+
"declarations": [],
|
|
48975
|
+
"exports": []
|
|
48976
|
+
},
|
|
48977
|
+
{
|
|
48978
|
+
"kind": "javascript-module",
|
|
48979
|
+
"path": "src/components/insight/atomic-insight-no-results/e2e/fixture.ts",
|
|
48980
|
+
"declarations": [],
|
|
48981
|
+
"exports": []
|
|
48982
|
+
},
|
|
48983
|
+
{
|
|
48984
|
+
"kind": "javascript-module",
|
|
48985
|
+
"path": "src/components/insight/atomic-insight-no-results/e2e/page-object.ts",
|
|
48986
|
+
"declarations": [],
|
|
48987
|
+
"exports": []
|
|
48988
|
+
},
|
|
48989
|
+
{
|
|
48990
|
+
"kind": "javascript-module",
|
|
48991
|
+
"path": "src/components/insight/atomic-insight-numeric-facet/e2e/atomic-insight-numeric-facet.e2e.ts",
|
|
48992
|
+
"declarations": [],
|
|
48993
|
+
"exports": []
|
|
48994
|
+
},
|
|
48995
|
+
{
|
|
48996
|
+
"kind": "javascript-module",
|
|
48997
|
+
"path": "src/components/insight/atomic-insight-numeric-facet/e2e/fixture.ts",
|
|
48998
|
+
"declarations": [],
|
|
48999
|
+
"exports": []
|
|
49000
|
+
},
|
|
49001
|
+
{
|
|
49002
|
+
"kind": "javascript-module",
|
|
49003
|
+
"path": "src/components/insight/atomic-insight-numeric-facet/e2e/page-object.ts",
|
|
49004
|
+
"declarations": [],
|
|
49005
|
+
"exports": []
|
|
49006
|
+
},
|
|
48516
49007
|
{
|
|
48517
49008
|
"kind": "javascript-module",
|
|
48518
49009
|
"path": "src/components/insight/atomic-insight-pager/e2e/atomic-insight-pager.e2e.ts",
|
|
@@ -48785,127 +49276,127 @@
|
|
|
48785
49276
|
},
|
|
48786
49277
|
{
|
|
48787
49278
|
"kind": "javascript-module",
|
|
48788
|
-
"path": "src/components/insight/atomic-insight-
|
|
49279
|
+
"path": "src/components/insight/atomic-insight-smart-snippet/e2e/atomic-insight-smart-snippet.e2e.ts",
|
|
48789
49280
|
"declarations": [],
|
|
48790
49281
|
"exports": []
|
|
48791
49282
|
},
|
|
48792
49283
|
{
|
|
48793
49284
|
"kind": "javascript-module",
|
|
48794
|
-
"path": "src/components/insight/atomic-insight-
|
|
49285
|
+
"path": "src/components/insight/atomic-insight-smart-snippet/e2e/fixture.ts",
|
|
48795
49286
|
"declarations": [],
|
|
48796
49287
|
"exports": []
|
|
48797
49288
|
},
|
|
48798
49289
|
{
|
|
48799
49290
|
"kind": "javascript-module",
|
|
48800
|
-
"path": "src/components/insight/atomic-insight-
|
|
49291
|
+
"path": "src/components/insight/atomic-insight-smart-snippet/e2e/page-object.ts",
|
|
48801
49292
|
"declarations": [],
|
|
48802
49293
|
"exports": []
|
|
48803
49294
|
},
|
|
48804
49295
|
{
|
|
48805
49296
|
"kind": "javascript-module",
|
|
48806
|
-
"path": "src/components/insight/atomic-insight-
|
|
49297
|
+
"path": "src/components/insight/atomic-insight-smart-snippet-suggestions/e2e/atomic-insight-smart-snippet-suggestions.e2e.ts",
|
|
48807
49298
|
"declarations": [],
|
|
48808
49299
|
"exports": []
|
|
48809
49300
|
},
|
|
48810
49301
|
{
|
|
48811
49302
|
"kind": "javascript-module",
|
|
48812
|
-
"path": "src/components/insight/atomic-insight-
|
|
49303
|
+
"path": "src/components/insight/atomic-insight-smart-snippet-suggestions/e2e/fixture.ts",
|
|
48813
49304
|
"declarations": [],
|
|
48814
49305
|
"exports": []
|
|
48815
49306
|
},
|
|
48816
49307
|
{
|
|
48817
49308
|
"kind": "javascript-module",
|
|
48818
|
-
"path": "src/components/insight/atomic-insight-
|
|
49309
|
+
"path": "src/components/insight/atomic-insight-smart-snippet-suggestions/e2e/page-object.ts",
|
|
48819
49310
|
"declarations": [],
|
|
48820
49311
|
"exports": []
|
|
48821
49312
|
},
|
|
48822
49313
|
{
|
|
48823
49314
|
"kind": "javascript-module",
|
|
48824
|
-
"path": "src/components/insight/atomic-insight-
|
|
49315
|
+
"path": "src/components/insight/atomic-insight-timeframe-facet/e2e/atomic-insight-timeframe-facet.e2e.ts",
|
|
48825
49316
|
"declarations": [],
|
|
48826
49317
|
"exports": []
|
|
48827
49318
|
},
|
|
48828
49319
|
{
|
|
48829
49320
|
"kind": "javascript-module",
|
|
48830
|
-
"path": "src/components/insight/atomic-insight-
|
|
49321
|
+
"path": "src/components/insight/atomic-insight-timeframe-facet/e2e/fixture.ts",
|
|
48831
49322
|
"declarations": [],
|
|
48832
49323
|
"exports": []
|
|
48833
49324
|
},
|
|
48834
49325
|
{
|
|
48835
49326
|
"kind": "javascript-module",
|
|
48836
|
-
"path": "src/components/insight/atomic-insight-
|
|
49327
|
+
"path": "src/components/insight/atomic-insight-timeframe-facet/e2e/page-object.ts",
|
|
48837
49328
|
"declarations": [],
|
|
48838
49329
|
"exports": []
|
|
48839
49330
|
},
|
|
48840
49331
|
{
|
|
48841
49332
|
"kind": "javascript-module",
|
|
48842
|
-
"path": "src/components/insight/atomic-insight-
|
|
49333
|
+
"path": "src/components/insight/atomic-insight-user-actions-timeline/e2e/atomic-insight-user-actions-timeline.e2e.ts",
|
|
48843
49334
|
"declarations": [],
|
|
48844
49335
|
"exports": []
|
|
48845
49336
|
},
|
|
48846
49337
|
{
|
|
48847
49338
|
"kind": "javascript-module",
|
|
48848
|
-
"path": "src/components/insight/atomic-insight-
|
|
49339
|
+
"path": "src/components/insight/atomic-insight-user-actions-timeline/e2e/fixture.ts",
|
|
48849
49340
|
"declarations": [],
|
|
48850
49341
|
"exports": []
|
|
48851
49342
|
},
|
|
48852
49343
|
{
|
|
48853
49344
|
"kind": "javascript-module",
|
|
48854
|
-
"path": "src/components/insight/atomic-insight-
|
|
49345
|
+
"path": "src/components/insight/atomic-insight-user-actions-timeline/e2e/page-object.ts",
|
|
48855
49346
|
"declarations": [],
|
|
48856
49347
|
"exports": []
|
|
48857
49348
|
},
|
|
48858
49349
|
{
|
|
48859
49350
|
"kind": "javascript-module",
|
|
48860
|
-
"path": "src/components/insight/atomic-insight-
|
|
49351
|
+
"path": "src/components/insight/atomic-insight-user-actions-toggle/e2e/atomic-insight-user-actions-toggle.e2e.ts",
|
|
48861
49352
|
"declarations": [],
|
|
48862
49353
|
"exports": []
|
|
48863
49354
|
},
|
|
48864
49355
|
{
|
|
48865
49356
|
"kind": "javascript-module",
|
|
48866
|
-
"path": "src/components/insight/atomic-insight-
|
|
49357
|
+
"path": "src/components/insight/atomic-insight-user-actions-toggle/e2e/fixture.ts",
|
|
48867
49358
|
"declarations": [],
|
|
48868
49359
|
"exports": []
|
|
48869
49360
|
},
|
|
48870
49361
|
{
|
|
48871
49362
|
"kind": "javascript-module",
|
|
48872
|
-
"path": "src/components/insight/atomic-insight-
|
|
49363
|
+
"path": "src/components/insight/atomic-insight-user-actions-toggle/e2e/page-object.ts",
|
|
48873
49364
|
"declarations": [],
|
|
48874
49365
|
"exports": []
|
|
48875
49366
|
},
|
|
48876
49367
|
{
|
|
48877
49368
|
"kind": "javascript-module",
|
|
48878
|
-
"path": "src/components/
|
|
49369
|
+
"path": "src/components/ipx/atomic-ipx-button/e2e/atomic-ipx-button.e2e.ts",
|
|
48879
49370
|
"declarations": [],
|
|
48880
49371
|
"exports": []
|
|
48881
49372
|
},
|
|
48882
49373
|
{
|
|
48883
49374
|
"kind": "javascript-module",
|
|
48884
|
-
"path": "src/components/
|
|
49375
|
+
"path": "src/components/ipx/atomic-ipx-button/e2e/fixture.ts",
|
|
48885
49376
|
"declarations": [],
|
|
48886
49377
|
"exports": []
|
|
48887
49378
|
},
|
|
48888
49379
|
{
|
|
48889
49380
|
"kind": "javascript-module",
|
|
48890
|
-
"path": "src/components/
|
|
49381
|
+
"path": "src/components/ipx/atomic-ipx-button/e2e/page-object.ts",
|
|
48891
49382
|
"declarations": [],
|
|
48892
49383
|
"exports": []
|
|
48893
49384
|
},
|
|
48894
49385
|
{
|
|
48895
49386
|
"kind": "javascript-module",
|
|
48896
|
-
"path": "src/components/ipx/atomic-ipx-
|
|
49387
|
+
"path": "src/components/ipx/atomic-ipx-embedded/e2e/atomic-ipx-embedded.e2e.ts",
|
|
48897
49388
|
"declarations": [],
|
|
48898
49389
|
"exports": []
|
|
48899
49390
|
},
|
|
48900
49391
|
{
|
|
48901
49392
|
"kind": "javascript-module",
|
|
48902
|
-
"path": "src/components/ipx/atomic-ipx-
|
|
49393
|
+
"path": "src/components/ipx/atomic-ipx-embedded/e2e/fixture.ts",
|
|
48903
49394
|
"declarations": [],
|
|
48904
49395
|
"exports": []
|
|
48905
49396
|
},
|
|
48906
49397
|
{
|
|
48907
49398
|
"kind": "javascript-module",
|
|
48908
|
-
"path": "src/components/ipx/atomic-ipx-
|
|
49399
|
+
"path": "src/components/ipx/atomic-ipx-embedded/e2e/page-object.ts",
|
|
48909
49400
|
"declarations": [],
|
|
48910
49401
|
"exports": []
|
|
48911
49402
|
},
|
|
@@ -49107,42 +49598,6 @@
|
|
|
49107
49598
|
"declarations": [],
|
|
49108
49599
|
"exports": []
|
|
49109
49600
|
},
|
|
49110
|
-
{
|
|
49111
|
-
"kind": "javascript-module",
|
|
49112
|
-
"path": "src/components/ipx/atomic-ipx-embedded/e2e/atomic-ipx-embedded.e2e.ts",
|
|
49113
|
-
"declarations": [],
|
|
49114
|
-
"exports": []
|
|
49115
|
-
},
|
|
49116
|
-
{
|
|
49117
|
-
"kind": "javascript-module",
|
|
49118
|
-
"path": "src/components/ipx/atomic-ipx-embedded/e2e/fixture.ts",
|
|
49119
|
-
"declarations": [],
|
|
49120
|
-
"exports": []
|
|
49121
|
-
},
|
|
49122
|
-
{
|
|
49123
|
-
"kind": "javascript-module",
|
|
49124
|
-
"path": "src/components/ipx/atomic-ipx-embedded/e2e/page-object.ts",
|
|
49125
|
-
"declarations": [],
|
|
49126
|
-
"exports": []
|
|
49127
|
-
},
|
|
49128
|
-
{
|
|
49129
|
-
"kind": "javascript-module",
|
|
49130
|
-
"path": "src/components/insight/atomic-insight-user-actions-timeline/e2e/atomic-insight-user-actions-timeline.e2e.ts",
|
|
49131
|
-
"declarations": [],
|
|
49132
|
-
"exports": []
|
|
49133
|
-
},
|
|
49134
|
-
{
|
|
49135
|
-
"kind": "javascript-module",
|
|
49136
|
-
"path": "src/components/insight/atomic-insight-user-actions-timeline/e2e/fixture.ts",
|
|
49137
|
-
"declarations": [],
|
|
49138
|
-
"exports": []
|
|
49139
|
-
},
|
|
49140
|
-
{
|
|
49141
|
-
"kind": "javascript-module",
|
|
49142
|
-
"path": "src/components/insight/atomic-insight-user-actions-timeline/e2e/page-object.ts",
|
|
49143
|
-
"declarations": [],
|
|
49144
|
-
"exports": []
|
|
49145
|
-
},
|
|
49146
49601
|
{
|
|
49147
49602
|
"kind": "javascript-module",
|
|
49148
49603
|
"path": "src/components/search/atomic-breadbox/e2e/atomic-breadbox.e2e.ts",
|
|
@@ -49925,73 +50380,73 @@
|
|
|
49925
50380
|
},
|
|
49926
50381
|
{
|
|
49927
50382
|
"kind": "javascript-module",
|
|
49928
|
-
"path": "src/components/search/atomic-search-box
|
|
50383
|
+
"path": "src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts",
|
|
49929
50384
|
"declarations": [],
|
|
49930
50385
|
"exports": []
|
|
49931
50386
|
},
|
|
49932
50387
|
{
|
|
49933
50388
|
"kind": "javascript-module",
|
|
49934
|
-
"path": "src/components/search/atomic-search-box
|
|
50389
|
+
"path": "src/components/search/atomic-search-box/e2e/fixture.ts",
|
|
49935
50390
|
"declarations": [],
|
|
49936
50391
|
"exports": []
|
|
49937
50392
|
},
|
|
49938
50393
|
{
|
|
49939
50394
|
"kind": "javascript-module",
|
|
49940
|
-
"path": "src/components/search/atomic-search-box
|
|
50395
|
+
"path": "src/components/search/atomic-search-box/e2e/page-object.ts",
|
|
49941
50396
|
"declarations": [],
|
|
49942
50397
|
"exports": []
|
|
49943
50398
|
},
|
|
49944
50399
|
{
|
|
49945
50400
|
"kind": "javascript-module",
|
|
49946
|
-
"path": "src/components/search/atomic-search-box-
|
|
50401
|
+
"path": "src/components/search/atomic-search-box-instant-results/e2e/atomic-search-box-instant-results.e2e.ts",
|
|
49947
50402
|
"declarations": [],
|
|
49948
50403
|
"exports": []
|
|
49949
50404
|
},
|
|
49950
50405
|
{
|
|
49951
50406
|
"kind": "javascript-module",
|
|
49952
|
-
"path": "src/components/search/atomic-search-box-
|
|
50407
|
+
"path": "src/components/search/atomic-search-box-instant-results/e2e/fixture.ts",
|
|
49953
50408
|
"declarations": [],
|
|
49954
50409
|
"exports": []
|
|
49955
50410
|
},
|
|
49956
50411
|
{
|
|
49957
50412
|
"kind": "javascript-module",
|
|
49958
|
-
"path": "src/components/search/atomic-search-box-
|
|
50413
|
+
"path": "src/components/search/atomic-search-box-instant-results/e2e/page-object.ts",
|
|
49959
50414
|
"declarations": [],
|
|
49960
50415
|
"exports": []
|
|
49961
50416
|
},
|
|
49962
50417
|
{
|
|
49963
50418
|
"kind": "javascript-module",
|
|
49964
|
-
"path": "src/components/search/atomic-search-box-
|
|
50419
|
+
"path": "src/components/search/atomic-search-box-query-suggestions/e2e/atomic-search-box-query-suggestions.e2e.ts",
|
|
49965
50420
|
"declarations": [],
|
|
49966
50421
|
"exports": []
|
|
49967
50422
|
},
|
|
49968
50423
|
{
|
|
49969
50424
|
"kind": "javascript-module",
|
|
49970
|
-
"path": "src/components/search/atomic-search-box-
|
|
50425
|
+
"path": "src/components/search/atomic-search-box-query-suggestions/e2e/fixture.ts",
|
|
49971
50426
|
"declarations": [],
|
|
49972
50427
|
"exports": []
|
|
49973
50428
|
},
|
|
49974
50429
|
{
|
|
49975
50430
|
"kind": "javascript-module",
|
|
49976
|
-
"path": "src/components/search/atomic-search-box-
|
|
50431
|
+
"path": "src/components/search/atomic-search-box-query-suggestions/e2e/page-object.ts",
|
|
49977
50432
|
"declarations": [],
|
|
49978
50433
|
"exports": []
|
|
49979
50434
|
},
|
|
49980
50435
|
{
|
|
49981
50436
|
"kind": "javascript-module",
|
|
49982
|
-
"path": "src/components/search/atomic-search-box/e2e/atomic-search-box.e2e.ts",
|
|
50437
|
+
"path": "src/components/search/atomic-search-box-recent-queries/e2e/atomic-search-box-recent-queries.e2e.ts",
|
|
49983
50438
|
"declarations": [],
|
|
49984
50439
|
"exports": []
|
|
49985
50440
|
},
|
|
49986
50441
|
{
|
|
49987
50442
|
"kind": "javascript-module",
|
|
49988
|
-
"path": "src/components/search/atomic-search-box/e2e/fixture.ts",
|
|
50443
|
+
"path": "src/components/search/atomic-search-box-recent-queries/e2e/fixture.ts",
|
|
49989
50444
|
"declarations": [],
|
|
49990
50445
|
"exports": []
|
|
49991
50446
|
},
|
|
49992
50447
|
{
|
|
49993
50448
|
"kind": "javascript-module",
|
|
49994
|
-
"path": "src/components/search/atomic-search-box/e2e/page-object.ts",
|
|
50449
|
+
"path": "src/components/search/atomic-search-box-recent-queries/e2e/page-object.ts",
|
|
49995
50450
|
"declarations": [],
|
|
49996
50451
|
"exports": []
|
|
49997
50452
|
},
|
|
@@ -50033,37 +50488,37 @@
|
|
|
50033
50488
|
},
|
|
50034
50489
|
{
|
|
50035
50490
|
"kind": "javascript-module",
|
|
50036
|
-
"path": "src/components/search/atomic-
|
|
50491
|
+
"path": "src/components/search/atomic-segmented-facet-scrollable/e2e/atomic-segmented-facet-scrollable.e2e.ts",
|
|
50037
50492
|
"declarations": [],
|
|
50038
50493
|
"exports": []
|
|
50039
50494
|
},
|
|
50040
50495
|
{
|
|
50041
50496
|
"kind": "javascript-module",
|
|
50042
|
-
"path": "src/components/search/atomic-
|
|
50497
|
+
"path": "src/components/search/atomic-segmented-facet-scrollable/e2e/fixture.ts",
|
|
50043
50498
|
"declarations": [],
|
|
50044
50499
|
"exports": []
|
|
50045
50500
|
},
|
|
50046
50501
|
{
|
|
50047
50502
|
"kind": "javascript-module",
|
|
50048
|
-
"path": "src/components/search/atomic-
|
|
50503
|
+
"path": "src/components/search/atomic-segmented-facet-scrollable/e2e/page-object.ts",
|
|
50049
50504
|
"declarations": [],
|
|
50050
50505
|
"exports": []
|
|
50051
50506
|
},
|
|
50052
50507
|
{
|
|
50053
50508
|
"kind": "javascript-module",
|
|
50054
|
-
"path": "src/components/search/atomic-
|
|
50509
|
+
"path": "src/components/search/atomic-smart-snippet/e2e/atomic-smart-snippet.e2e.ts",
|
|
50055
50510
|
"declarations": [],
|
|
50056
50511
|
"exports": []
|
|
50057
50512
|
},
|
|
50058
50513
|
{
|
|
50059
50514
|
"kind": "javascript-module",
|
|
50060
|
-
"path": "src/components/search/atomic-
|
|
50515
|
+
"path": "src/components/search/atomic-smart-snippet/e2e/fixture.ts",
|
|
50061
50516
|
"declarations": [],
|
|
50062
50517
|
"exports": []
|
|
50063
50518
|
},
|
|
50064
50519
|
{
|
|
50065
50520
|
"kind": "javascript-module",
|
|
50066
|
-
"path": "src/components/search/atomic-
|
|
50521
|
+
"path": "src/components/search/atomic-smart-snippet/e2e/page-object.ts",
|
|
50067
50522
|
"declarations": [],
|
|
50068
50523
|
"exports": []
|
|
50069
50524
|
},
|