@empathyco/x-components 3.0.0-alpha.200 → 3.0.0-alpha.201

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.0.0-alpha.201](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.200...@empathyco/x-components@3.0.0-alpha.201) (2022-10-21)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - **tagging:** `tagging` property of `Taggable` and `queryTagging` property of `SearchResponse` are
11
+ optional.
12
+
13
+ ### Features
14
+
15
+ - **tagging:** make `tagging` and `queryTagging` optional (#797)
16
+ ([0e49156](https://github.com/empathyco/x/commit/0e49156308d4e77d667a2191697101674cdbf213)),
17
+ closes [EX-7231](https://searchbroker.atlassian.net/browse/EX-7231)
18
+
19
+ # Change Log
20
+
21
+ All notable changes to this project will be documented in this file. See
22
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
23
+
6
24
  ## [3.0.0-alpha.200](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.199...@empathyco/x-components@3.0.0-alpha.200) (2022-10-21)
7
25
 
8
26
  ### Continuous Integration
@@ -114,13 +114,6 @@
114
114
  --x-size-border-radius-bottom-left-button-card
115
115
  );
116
116
  }
117
- :root {
118
- --x-size-border-radius-button-card: var(--x-size-border-radius-base-s);
119
- --x-size-border-radius-top-left-button-card: var(--x-size-border-radius-button-card);
120
- --x-size-border-radius-top-right-button-card: var(--x-size-border-radius-button-card);
121
- --x-size-border-radius-bottom-right-button-card: var(--x-size-border-radius-button-card);
122
- --x-size-border-radius-bottom-left-button-card: var(--x-size-border-radius-button-card);
123
- }
124
117
  [dir="ltr"] .x-button {
125
118
  padding-right: var(--x-size-padding-right-button-default);
126
119
  }
@@ -7492,3 +7485,11 @@
7492
7485
  .x-normal-case {
7493
7486
  text-transform: none;
7494
7487
  }
7488
+
7489
+ :root {
7490
+ --x-size-border-radius-button-card: var(--x-size-border-radius-base-s);
7491
+ --x-size-border-radius-top-left-button-card: var(--x-size-border-radius-button-card);
7492
+ --x-size-border-radius-top-right-button-card: var(--x-size-border-radius-button-card);
7493
+ --x-size-border-radius-bottom-right-button-card: var(--x-size-border-radius-button-card);
7494
+ --x-size-border-radius-bottom-left-button-card: var(--x-size-border-radius-button-card);
7495
+ }
@@ -20,7 +20,7 @@ export interface SearchResponse
20
20
  | [facets?](./x-types.searchresponse.facets.md) | [Facet](./x-types.facet.md)<!-- -->\[\] | <i>(Optional)</i> |
21
21
  | [partialResults?](./x-types.searchresponse.partialresults.md) | [PartialResult](./x-types.partialresult.md)<!-- -->\[\] | <i>(Optional)</i> |
22
22
  | [promoteds?](./x-types.searchresponse.promoteds.md) | [Promoted](./x-types.promoted.md)<!-- -->\[\] | <i>(Optional)</i> |
23
- | [queryTagging](./x-types.searchresponse.querytagging.md) | [TaggingRequest](./x-types.taggingrequest.md) | |
23
+ | [queryTagging?](./x-types.searchresponse.querytagging.md) | [TaggingRequest](./x-types.taggingrequest.md) | <i>(Optional)</i> |
24
24
  | [redirections?](./x-types.searchresponse.redirections.md) | [Redirection](./x-types.redirection.md)<!-- -->\[\] | <i>(Optional)</i> |
25
25
  | [results](./x-types.searchresponse.results.md) | [Result](./x-types.result.md)<!-- -->\[\] | |
26
26
  | [spellcheck?](./x-types.searchresponse.spellcheck.md) | string | <i>(Optional)</i> |
@@ -7,5 +7,5 @@
7
7
  <b>Signature:</b>
8
8
 
9
9
  ```typescript
10
- queryTagging: TaggingRequest;
10
+ queryTagging?: TaggingRequest;
11
11
  ```
@@ -16,5 +16,5 @@ export interface Taggable
16
16
 
17
17
  | Property | Type | Description |
18
18
  | --- | --- | --- |
19
- | [tagging](./x-types.taggable.tagging.md) | [Tagging](./x-types.tagging.md) | Tagging object containing the different taggable events. |
19
+ | [tagging?](./x-types.taggable.tagging.md) | [Tagging](./x-types.tagging.md) | <i>(Optional)</i> Tagging object containing the different taggable events. |
20
20
 
@@ -9,5 +9,5 @@ Tagging object containing the different taggable events.
9
9
  <b>Signature:</b>
10
10
 
11
11
  ```typescript
12
- tagging: Tagging;
12
+ tagging?: Tagging;
13
13
  ```
@@ -1 +1 @@
1
- {"version":3,"file":"wiring.js","sources":["../../../../src/x-modules/tagging/wiring.ts"],"sourcesContent":["import { Result, TaggingRequest } from '@empathyco/x-types';\nimport { DefaultSessionService } from '@empathyco/x-utils';\nimport {\n namespacedWireCommit,\n namespacedWireDispatch\n} from '../../wiring/namespaced-wires.factory';\nimport { namespacedDebounce } from '../../wiring/namespaced-wires.operators';\nimport { wireService, wireServiceWithoutPayload } from '../../wiring/wires.factory';\nimport { filter, mapWire } from '../../wiring/wires.operators';\nimport { Wire } from '../../wiring/wiring.types';\nimport { createWiring } from '../../wiring/wiring.utils';\nimport { DefaultPDPAddToCartService } from './service/pdp-add-to-cart.service';\n\n/**\n * `tagging` {@link XModuleName | XModule name}.\n *\n * @internal\n */\nconst moduleName = 'tagging';\n\n/**\n * Debounce function for the module.\n */\nconst moduleDebounce = namespacedDebounce(moduleName);\n\n/**\n * WireCommit for {@link TaggingXModule}.\n *\n * @internal\n */\nconst wireCommit = namespacedWireCommit(moduleName);\n\n/**\n * WireDispatch for {@link TaggingXModule}.\n *\n * @internal\n */\nconst wireDispatch = namespacedWireDispatch(moduleName);\n\n/**\n * Wires without payload factory for {@link DefaultSessionService}.\n */\nconst wireSessionServiceWithoutPayload = wireServiceWithoutPayload(DefaultSessionService.instance);\n\n/**\n * Wires factory for {@link DefaultPDPAddToCartService}.\n */\nconst wirePDPAddToCartService = wireService(DefaultPDPAddToCartService.instance);\n\n/**\n * Stores the given result on the local storage.\n *\n * @public\n */\nconst storeClickedResultWire = wirePDPAddToCartService('storeResultClicked');\n\n/**\n * Moves the result information from the local storage to session storage.\n *\n * @public\n */\nconst moveClickedResultToSessionWire = mapWire(\n wirePDPAddToCartService('moveToSessionStorage'),\n (payload: string) => {\n return payload === 'url' ? undefined : payload;\n }\n);\n\n/**\n * Triggers the add to cart tracking.\n *\n * @public\n */\nconst trackAddToCartFromSessionStorage = wirePDPAddToCartService('trackAddToCart');\n\n/**\n * Clears the session id.\n *\n * @public\n */\nconst clearSessionWire = filter(\n wireSessionServiceWithoutPayload('clearSessionId'),\n ({ eventPayload: consent }) => !consent\n);\n\n/**\n * Sets the tagging state `consent`.\n *\n * @public\n */\nexport const setConsent = wireCommit('setConsent');\n\n/**\n * Sets the tagging config state.\n *\n * @public\n */\nexport const setTaggingConfig = wireCommit('setTaggingConfig');\n\n/**\n * Tracks the tagging of the query.\n *\n * @public\n */\nexport const trackQueryWire = wireDispatch('track');\n\n/**\n * Sets the tagging state of the query tagging info using a debounce which ends if the user\n * accepts a query.\n *\n * @public\n */\nexport const setQueryTaggingInfo = moduleDebounce(\n wireCommit('setQueryTaggingInfo'),\n ({ state }) => state.config.queryTaggingDebounceMs,\n {\n cancelOn: 'UserClearedQuery',\n forceOn: [\n 'UserClickedAResult',\n 'UserClickedAPromoted',\n 'UserClickedABanner',\n 'UserClickedARedirection',\n 'UserReachedResultsListEnd'\n ]\n }\n);\n\n/**\n * Tracks the tagging of the result.\n *\n * @public\n */\nexport const trackResultClickedWire = createTrackResultWire('click');\n\n/**\n * Performs a track of a result added to the cart.\n *\n * @public\n */\nexport const trackAddToCartWire = createTrackResultWire('add2cart');\n\n/**\n * Factory helper to create a wire for the track of a result.\n *\n * @param property - Key of the tagging object to track.\n * @returns A new wire for the given property of the result tagging.\n *\n * @internal\n */\nfunction createTrackResultWire(property: keyof Result['tagging']): Wire<Result> {\n return filter(\n wireDispatch('track', ({ eventPayload: { tagging }, metadata: { location } }) => {\n const taggingInfo: TaggingRequest = tagging[property];\n taggingInfo.params.location = location as string;\n return taggingInfo;\n }),\n ({ eventPayload: { tagging } }) => !!tagging?.[property]\n );\n}\n\n/**\n * Wiring configuration for the {@link TaggingXModule | tagging module}.\n *\n * @internal\n */\nexport const taggingWiring = createWiring({\n ConsentProvided: {\n setConsent\n },\n ConsentChanged: {\n clearSessionWire\n },\n PDPIsLoaded: {\n moveClickedResultToSessionWire\n },\n ResultURLTrackingEnabled: {\n moveClickedResultToSessionWire\n },\n SearchTaggingChanged: {\n setQueryTaggingInfo\n },\n SearchTaggingReceived: {\n trackQueryWire\n },\n TaggingConfigProvided: {\n setTaggingConfig\n },\n UserClickedAResult: {\n trackResultClickedWire,\n storeClickedResultWire\n },\n UserClickedResultAddToCart: {\n trackAddToCartWire,\n trackResultClickedWire\n },\n UserClickedPDPAddToCart: {\n trackAddToCartFromSessionStorage\n }\n});\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"wiring.js","sources":["../../../../src/x-modules/tagging/wiring.ts"],"sourcesContent":["import { Result, Tagging, TaggingRequest } from '@empathyco/x-types';\nimport { DefaultSessionService } from '@empathyco/x-utils';\nimport {\n namespacedWireCommit,\n namespacedWireDispatch\n} from '../../wiring/namespaced-wires.factory';\nimport { namespacedDebounce } from '../../wiring/namespaced-wires.operators';\nimport { wireService, wireServiceWithoutPayload } from '../../wiring/wires.factory';\nimport { filter, mapWire } from '../../wiring/wires.operators';\nimport { Wire } from '../../wiring/wiring.types';\nimport { createWiring } from '../../wiring/wiring.utils';\nimport { DefaultPDPAddToCartService } from './service/pdp-add-to-cart.service';\n\n/**\n * `tagging` {@link XModuleName | XModule name}.\n *\n * @internal\n */\nconst moduleName = 'tagging';\n\n/**\n * Debounce function for the module.\n */\nconst moduleDebounce = namespacedDebounce(moduleName);\n\n/**\n * WireCommit for {@link TaggingXModule}.\n *\n * @internal\n */\nconst wireCommit = namespacedWireCommit(moduleName);\n\n/**\n * WireDispatch for {@link TaggingXModule}.\n *\n * @internal\n */\nconst wireDispatch = namespacedWireDispatch(moduleName);\n\n/**\n * Wires without payload factory for {@link DefaultSessionService}.\n */\nconst wireSessionServiceWithoutPayload = wireServiceWithoutPayload(DefaultSessionService.instance);\n\n/**\n * Wires factory for {@link DefaultPDPAddToCartService}.\n */\nconst wirePDPAddToCartService = wireService(DefaultPDPAddToCartService.instance);\n\n/**\n * Stores the given result on the local storage.\n *\n * @public\n */\nconst storeClickedResultWire = wirePDPAddToCartService('storeResultClicked');\n\n/**\n * Moves the result information from the local storage to session storage.\n *\n * @public\n */\nconst moveClickedResultToSessionWire = mapWire(\n wirePDPAddToCartService('moveToSessionStorage'),\n (payload: string) => {\n return payload === 'url' ? undefined : payload;\n }\n);\n\n/**\n * Triggers the add to cart tracking.\n *\n * @public\n */\nconst trackAddToCartFromSessionStorage = wirePDPAddToCartService('trackAddToCart');\n\n/**\n * Clears the session id.\n *\n * @public\n */\nconst clearSessionWire = filter(\n wireSessionServiceWithoutPayload('clearSessionId'),\n ({ eventPayload: consent }) => !consent\n);\n\n/**\n * Sets the tagging state `consent`.\n *\n * @public\n */\nexport const setConsent = wireCommit('setConsent');\n\n/**\n * Sets the tagging config state.\n *\n * @public\n */\nexport const setTaggingConfig = wireCommit('setTaggingConfig');\n\n/**\n * Tracks the tagging of the query.\n *\n * @public\n */\nexport const trackQueryWire = wireDispatch('track');\n\n/**\n * Sets the tagging state of the query tagging info using a debounce which ends if the user\n * accepts a query.\n *\n * @public\n */\nexport const setQueryTaggingInfo = moduleDebounce(\n wireCommit('setQueryTaggingInfo'),\n ({ state }) => state.config.queryTaggingDebounceMs,\n {\n cancelOn: 'UserClearedQuery',\n forceOn: [\n 'UserClickedAResult',\n 'UserClickedAPromoted',\n 'UserClickedABanner',\n 'UserClickedARedirection',\n 'UserReachedResultsListEnd'\n ]\n }\n);\n\n/**\n * Tracks the tagging of the result.\n *\n * @public\n */\nexport const trackResultClickedWire = createTrackResultWire('click');\n\n/**\n * Performs a track of a result added to the cart.\n *\n * @public\n */\nexport const trackAddToCartWire = createTrackResultWire('add2cart');\n\n/**\n * Factory helper to create a wire for the track of a result.\n *\n * @param property - Key of the tagging object to track.\n * @returns A new wire for the given property of the result tagging.\n *\n * @internal\n */\nfunction createTrackResultWire(property: keyof Tagging): Wire<Result> {\n return filter(\n wireDispatch('track', ({ eventPayload: { tagging }, metadata: { location } }) => {\n const taggingInfo: TaggingRequest = tagging[property];\n taggingInfo.params.location = location as string;\n return taggingInfo;\n }),\n ({ eventPayload: { tagging } }) => !!tagging?.[property]\n );\n}\n\n/**\n * Wiring configuration for the {@link TaggingXModule | tagging module}.\n *\n * @internal\n */\nexport const taggingWiring = createWiring({\n ConsentProvided: {\n setConsent\n },\n ConsentChanged: {\n clearSessionWire\n },\n PDPIsLoaded: {\n moveClickedResultToSessionWire\n },\n ResultURLTrackingEnabled: {\n moveClickedResultToSessionWire\n },\n SearchTaggingChanged: {\n setQueryTaggingInfo\n },\n SearchTaggingReceived: {\n trackQueryWire\n },\n TaggingConfigProvided: {\n setTaggingConfig\n },\n UserClickedAResult: {\n trackResultClickedWire,\n storeClickedResultWire\n },\n UserClickedResultAddToCart: {\n trackAddToCartWire,\n trackResultClickedWire\n },\n UserClickedPDPAddToCart: {\n trackAddToCartFromSessionStorage\n }\n});\n"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empathyco/x-components",
3
- "version": "3.0.0-alpha.200",
3
+ "version": "3.0.0-alpha.201",
4
4
  "description": "Empathy X Components",
5
5
  "author": "Empathy Systems Corporation S.L.",
6
6
  "license": "Apache-2.0",
@@ -67,7 +67,7 @@
67
67
  "@empathyco/x-deep-merge": "^1.3.0-alpha.24",
68
68
  "@empathyco/x-logger": "^1.2.0-alpha.4",
69
69
  "@empathyco/x-storage-service": "^2.0.0-alpha.4",
70
- "@empathyco/x-types": "^10.0.0-alpha.38",
70
+ "@empathyco/x-types": "^10.0.0-alpha.39",
71
71
  "@empathyco/x-utils": "^1.0.0-alpha.10",
72
72
  "@types/resize-observer-browser": "~0.1.5",
73
73
  "@vue/devtools-api": "~6.2.1",
@@ -85,7 +85,7 @@
85
85
  "devDependencies": {
86
86
  "@cypress/vue": "~2.2.4",
87
87
  "@cypress/webpack-dev-server": "~1.8.4",
88
- "@empathyco/x-adapter-platform": "^1.0.0-alpha.37",
88
+ "@empathyco/x-adapter-platform": "^1.0.0-alpha.38",
89
89
  "@empathyco/x-tailwindcss": "^0.2.0-alpha.22",
90
90
  "@microsoft/api-documenter": "~7.15.3",
91
91
  "@microsoft/api-extractor": "~7.19.4",
@@ -136,5 +136,5 @@
136
136
  "access": "public",
137
137
  "directory": "dist"
138
138
  },
139
- "gitHead": "96852dc47d6573d88e8d1d2897dfc711a65d41fa"
139
+ "gitHead": "a10f63bb6ffc498d465ec3aaf17c24e76732869f"
140
140
  }
@@ -5182,7 +5182,7 @@
5182
5182
  "excerptTokens": [
5183
5183
  {
5184
5184
  "kind": "Content",
5185
- "text": "queryTagging: "
5185
+ "text": "queryTagging?: "
5186
5186
  },
5187
5187
  {
5188
5188
  "kind": "Reference",
@@ -5194,7 +5194,7 @@
5194
5194
  "text": ";"
5195
5195
  }
5196
5196
  ],
5197
- "isOptional": false,
5197
+ "isOptional": true,
5198
5198
  "releaseTag": "Public",
5199
5199
  "name": "queryTagging",
5200
5200
  "propertyTypeTokenRange": {
@@ -5746,7 +5746,7 @@
5746
5746
  "excerptTokens": [
5747
5747
  {
5748
5748
  "kind": "Content",
5749
- "text": "tagging: "
5749
+ "text": "tagging?: "
5750
5750
  },
5751
5751
  {
5752
5752
  "kind": "Reference",
@@ -5758,7 +5758,7 @@
5758
5758
  "text": ";"
5759
5759
  }
5760
5760
  ],
5761
- "isOptional": false,
5761
+ "isOptional": true,
5762
5762
  "releaseTag": "Public",
5763
5763
  "name": "tagging",
5764
5764
  "propertyTypeTokenRange": {
@@ -1 +1 @@
1
- {"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/tagging/wiring.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAS5D,OAAO,EAAE,IAAI,EAAE,MAAM,2BAA2B,CAAC;AA4EjD;;;;GAIG;AACH,eAAO,MAAM,UAAU,eAA2B,CAAC;AAEnD;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,8CAAiC,CAAC;AAE/D;;;;GAIG;AACH,eAAO,MAAM,cAAc,yCAAwB,CAAC;AAEpD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,sBAa/B,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,cAAiC,CAAC;AAErE;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,cAAoC,CAAC;AAqBpE;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCxB,CAAC"}
1
+ {"version":3,"file":"wiring.d.ts","sourceRoot":"","sources":["../../../../src/x-modules/tagging/wiring.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAW,cAAc,EAAE,MAAM,oBAAoB,CAAC;AASrE,OAAO,EAAE,IAAI,EAAE,MAAM,2BAA2B,CAAC;AA4EjD;;;;GAIG;AACH,eAAO,MAAM,UAAU,eAA2B,CAAC;AAEnD;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,8CAAiC,CAAC;AAE/D;;;;GAIG;AACH,eAAO,MAAM,cAAc,yCAAwB,CAAC;AAEpD;;;;;GAKG;AACH,eAAO,MAAM,mBAAmB,sBAa/B,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,cAAiC,CAAC;AAErE;;;;GAIG;AACH,eAAO,MAAM,kBAAkB,cAAoC,CAAC;AAqBpE;;;;GAIG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCxB,CAAC"}