@empathyco/x-components 3.0.0-alpha.148 → 3.0.0-alpha.149

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,19 @@
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.149](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.148...@empathyco/x-components@3.0.0-alpha.149) (2022-08-08)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **facets:** fix `SingleSelectModifier` handling for selecting hierar… (#643)
11
+ ([d9a18e0](https://github.com/empathyco/x/commit/d9a18e06c5241c5b6db9b93ba67c1d9018360160)),
12
+ closes [EX-6810](https://searchbroker.atlassian.net/browse/EX-6810)
13
+
14
+ # Change Log
15
+
16
+ All notable changes to this project will be documented in this file. See
17
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
18
+
6
19
  ## [3.0.0-alpha.148](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.147...@empathyco/x-components@3.0.0-alpha.148) (2022-08-04)
7
20
 
8
21
  ### Features
@@ -1445,6 +1445,64 @@
1445
1445
  --x-size-border-radius-bottom-right-input-card: var(--x-size-border-radius-input-card);
1446
1446
  --x-size-border-radius-bottom-left-input-card: var(--x-size-border-radius-input-card);
1447
1447
  }
1448
+ [dir="ltr"] .x-input {
1449
+ padding-left: var(--x-size-padding-left-input-default);
1450
+ }
1451
+ [dir="rtl"] .x-input {
1452
+ padding-right: var(--x-size-padding-left-input-default);
1453
+ }
1454
+ [dir="ltr"] .x-input {
1455
+ padding-right: var(--x-size-padding-right-input-default);
1456
+ }
1457
+ [dir="rtl"] .x-input {
1458
+ padding-left: var(--x-size-padding-right-input-default);
1459
+ }
1460
+ [dir="ltr"] .x-input {
1461
+ border-right-width: var(--x-size-border-width-right-input-default);
1462
+ }
1463
+ [dir="rtl"] .x-input {
1464
+ border-left-width: var(--x-size-border-width-right-input-default);
1465
+ }
1466
+ [dir="ltr"] .x-input {
1467
+ border-left-width: var(--x-size-border-width-left-input-default);
1468
+ }
1469
+ [dir="rtl"] .x-input {
1470
+ border-right-width: var(--x-size-border-width-left-input-default);
1471
+ }
1472
+ .x-input {
1473
+ box-sizing: border-box;
1474
+ margin: 0;
1475
+ min-width: 0;
1476
+ height: var(--x-size-height-input-default);
1477
+ padding-top: 0;
1478
+ padding-bottom: 0;
1479
+ background-color: var(--x-color-background-input-default);
1480
+ border-color: var(--x-color-border-input-default);
1481
+ color: var(--x-color-text-input-default);
1482
+ border-top-width: var(--x-size-border-width-top-input-default);
1483
+ border-bottom-width: var(--x-size-border-width-bottom-input-default);
1484
+ border-radius: var(--x-size-border-radius-top-left-input-default) var(--x-size-border-radius-top-right-input-default) var(--x-size-border-radius-bottom-right-input-default) var(--x-size-border-radius-bottom-left-input-default);
1485
+ border-style: solid;
1486
+ font-family: var(--x-font-family-input-default);
1487
+ font-size: var(--x-size-font-input-default);
1488
+ font-weight: var(--x-number-font-weight-input-default);
1489
+ line-height: var(--x-size-line-height-input-default);
1490
+ }
1491
+ @media not all and (min-resolution: 0.001dpcm) {
1492
+ .x-input {
1493
+ -webkit-appearance: none;
1494
+ }
1495
+ }
1496
+ .x-input:focus {
1497
+ border-color: var(--x-color-border-input-default-focus);
1498
+ }
1499
+ .x-input::placeholder {
1500
+ color: var(--x-color-text-input-placeholder-default);
1501
+ font-family: var(--x-font-family-input-placeholder-default);
1502
+ font-size: var(--x-size-font-input-placeholder-default);
1503
+ font-weight: var(--x-number-font-weight-input-placeholder-default);
1504
+ line-height: var(--x-size-line-height-input-placeholder-default);
1505
+ }
1448
1506
  :root {
1449
1507
  --x-color-background-input-default: var(--x-color-base-neutral-100);
1450
1508
  --x-color-border-input-default: var(--x-color-base-neutral-70);
@@ -7535,62 +7593,3 @@
7535
7593
  .x-normal-case {
7536
7594
  text-transform: none;
7537
7595
  }
7538
-
7539
- [dir="ltr"] .x-input {
7540
- padding-left: var(--x-size-padding-left-input-default);
7541
- }
7542
- [dir="rtl"] .x-input {
7543
- padding-right: var(--x-size-padding-left-input-default);
7544
- }
7545
- [dir="ltr"] .x-input {
7546
- padding-right: var(--x-size-padding-right-input-default);
7547
- }
7548
- [dir="rtl"] .x-input {
7549
- padding-left: var(--x-size-padding-right-input-default);
7550
- }
7551
- [dir="ltr"] .x-input {
7552
- border-right-width: var(--x-size-border-width-right-input-default);
7553
- }
7554
- [dir="rtl"] .x-input {
7555
- border-left-width: var(--x-size-border-width-right-input-default);
7556
- }
7557
- [dir="ltr"] .x-input {
7558
- border-left-width: var(--x-size-border-width-left-input-default);
7559
- }
7560
- [dir="rtl"] .x-input {
7561
- border-right-width: var(--x-size-border-width-left-input-default);
7562
- }
7563
- .x-input {
7564
- box-sizing: border-box;
7565
- margin: 0;
7566
- min-width: 0;
7567
- height: var(--x-size-height-input-default);
7568
- padding-top: 0;
7569
- padding-bottom: 0;
7570
- background-color: var(--x-color-background-input-default);
7571
- border-color: var(--x-color-border-input-default);
7572
- color: var(--x-color-text-input-default);
7573
- border-top-width: var(--x-size-border-width-top-input-default);
7574
- border-bottom-width: var(--x-size-border-width-bottom-input-default);
7575
- border-radius: var(--x-size-border-radius-top-left-input-default) var(--x-size-border-radius-top-right-input-default) var(--x-size-border-radius-bottom-right-input-default) var(--x-size-border-radius-bottom-left-input-default);
7576
- border-style: solid;
7577
- font-family: var(--x-font-family-input-default);
7578
- font-size: var(--x-size-font-input-default);
7579
- font-weight: var(--x-number-font-weight-input-default);
7580
- line-height: var(--x-size-line-height-input-default);
7581
- }
7582
- @media not all and (min-resolution: 0.001dpcm) {
7583
- .x-input {
7584
- -webkit-appearance: none;
7585
- }
7586
- }
7587
- .x-input:focus {
7588
- border-color: var(--x-color-border-input-default-focus);
7589
- }
7590
- .x-input::placeholder {
7591
- color: var(--x-color-text-input-placeholder-default);
7592
- font-family: var(--x-font-family-input-placeholder-default);
7593
- font-size: var(--x-size-font-input-placeholder-default);
7594
- font-weight: var(--x-number-font-weight-input-placeholder-default);
7595
- line-height: var(--x-size-line-height-input-placeholder-default);
7596
- }
@@ -67,8 +67,8 @@ class SingleSelectModifier extends BaseFilterEntityModifier {
67
67
  * @internal
68
68
  */
69
69
  getDescendantsIds(filter, ids = [filter.id]) {
70
- return filter?.children
71
- ? filter?.children.flatMap(descendant => this.getDescendantsIds(descendant, [descendant.id, ...ids]))
70
+ return filter?.children?.length
71
+ ? filter?.children.reduce((descendantIdsList, descendant) => this.getDescendantsIds(descendant, [descendant.id, ...descendantIdsList]), ids)
72
72
  : ids;
73
73
  }
74
74
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"single-select.modifier.js","sources":["../../../../../src/x-modules/facets/entities/single-select.modifier.ts"],"sourcesContent":["import {\n isFacetFilter,\n isHierarchicalFilter,\n FacetFilter,\n Facet,\n Filter,\n HierarchicalFilter\n} from '@empathyco/x-types';\nimport { BaseFilterEntityModifier } from './types';\n\n/**\n * Allows only to select only one filter from the same facet at the same time.\n *\n * @internal\n */\nexport class SingleSelectModifier extends BaseFilterEntityModifier {\n /**\n * Selects the passed filter, and then deselects any other filter of the same facet.\n *\n * @param filter - The filter to select.\n */\n select(filter: FacetFilter): void {\n this.getOtherFilters(filter).forEach(this.deselect.bind(this));\n this.entity.select(filter);\n }\n\n /**\n * Retrieves the rest of selected filters of the same facet than the one given.\n *\n * @param filter - The filter to find its relatives.\n * @returns A list of selected filters that belong to the same facet than the filter passed.\n * @remarks It takes into account if the passed filter is an\n * {@link @empathyco/x-types#HierarchicalFilter | HierarchicalFilter} to exclude the ancestors and\n * descendants.\n *\n * @internal\n */\n protected getOtherFilters(filter: FacetFilter): FacetFilter[] {\n /* This check seems dumb, but when you instantiate this modifier using the factory, the types\n `FacetFilter` parameter type is lost, so we should check it to avoid unexpected crashes\n due to a wrong configuration. */\n if (isHierarchicalFilter(filter)) {\n const ancestorsIds = this.getAncestorsIds(filter);\n const descendantsIds = this.getDescendantsIds(filter);\n return this.getFacetFilters(filter.facetId).filter(\n storeFilter =>\n !ancestorsIds.includes(storeFilter.id) && !descendantsIds.includes(storeFilter.id)\n );\n } else if (isFacetFilter(filter)) {\n return this.getFacetFilters(filter.facetId).filter(\n storeFilter => storeFilter.id !== filter.id && storeFilter.selected\n );\n } else {\n // TODO Add a warning in case a non facet filter is passed here.\n return [];\n }\n }\n\n /**\n * Returns the ancestors Filters Ids of the passed filter.\n *\n * @param filter - The {@link @empathyco/x-types#Filter | Filter} which obtain the ancestors from.\n * @param ids - (Optional) an Array with the Ids used to execute the method recursively.\n * @returns An Array with the ancestors ids.\n * @internal\n */\n protected getAncestorsIds(\n filter: HierarchicalFilter,\n ids: Array<Filter['id']> = [filter.id]\n ): Array<Filter['id']> {\n return filter?.parentId\n ? this.getAncestorsIds(\n this.store.state.x.facets.filters[filter.parentId] as HierarchicalFilter,\n [filter.parentId, ...ids]\n )\n : ids;\n }\n\n /**\n * Returns the descendants Filters Ids of the passed filter.\n *\n * @param filter - The {@link @empathyco/x-types#Filter | Filter} which obtain the descendants\n * from.\n * @param ids - (Optional) an Array with the Ids used to execute the method recursively.\n * @returns An Array with the descendants ids.\n * @internal\n */\n protected getDescendantsIds(\n filter: HierarchicalFilter,\n ids: Array<Filter['id']> = [filter.id]\n ): Array<Filter['id']> {\n return filter?.children\n ? filter?.children.flatMap(descendant =>\n this.getDescendantsIds(descendant, [descendant.id, ...ids])\n )\n : ids;\n }\n\n /**\n * Retrieves All the filters from the given facet.\n *\n * @param facetId - The facet id to retrieve its filters.\n * @returns The filters from the given facet.\n * @internal\n */\n protected getFacetFilters(facetId: Facet['id']): FacetFilter[] {\n return (\n ((this.store.getters['x/facets/facets'] as Record<Facet['id'], Facet>)[facetId]\n ?.filters as FacetFilter[]) ?? []\n );\n }\n}\n"],"names":[],"mappings":";;;AAUA;;;;;MAKa,oBAAqB,SAAQ,wBAAwB;;;;;;IAMhE,MAAM,CAAC,MAAmB;QACxB,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QAC/D,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;KAC5B;;;;;;;;;;;;IAaS,eAAe,CAAC,MAAmB;;;;QAI3C,IAAI,oBAAoB,CAAC,MAAM,CAAC,EAAE;YAChC,MAAM,YAAY,GAAG,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;YAClD,MAAM,cAAc,GAAG,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC;YACtD,OAAO,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,MAAM,CAChD,WAAW,IACT,CAAC,YAAY,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,CAAC,CACrF,CAAC;SACH;aAAM,IAAI,aAAa,CAAC,MAAM,CAAC,EAAE;YAChC,OAAO,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,MAAM,CAChD,WAAW,IAAI,WAAW,CAAC,EAAE,KAAK,MAAM,CAAC,EAAE,IAAI,WAAW,CAAC,QAAQ,CACpE,CAAC;SACH;aAAM;;YAEL,OAAO,EAAE,CAAC;SACX;KACF;;;;;;;;;IAUS,eAAe,CACvB,MAA0B,EAC1B,MAA2B,CAAC,MAAM,CAAC,EAAE,CAAC;QAEtC,OAAO,MAAM,EAAE,QAAQ;cACnB,IAAI,CAAC,eAAe,CAClB,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAuB,EACxE,CAAC,MAAM,CAAC,QAAQ,EAAE,GAAG,GAAG,CAAC,CAC1B;cACD,GAAG,CAAC;KACT;;;;;;;;;;IAWS,iBAAiB,CACzB,MAA0B,EAC1B,MAA2B,CAAC,MAAM,CAAC,EAAE,CAAC;QAEtC,OAAO,MAAM,EAAE,QAAQ;cACnB,MAAM,EAAE,QAAQ,CAAC,OAAO,CAAC,UAAU,IACjC,IAAI,CAAC,iBAAiB,CAAC,UAAU,EAAE,CAAC,UAAU,CAAC,EAAE,EAAE,GAAG,GAAG,CAAC,CAAC,CAC5D;cACD,GAAG,CAAC;KACT;;;;;;;;IASS,eAAe,CAAC,OAAoB;QAC5C,QACI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,iBAAiB,CAAgC,CAAC,OAAO,CAAC;cAC3E,OAAyB,IAAI,EAAE,EACnC;KACH;;;;;"}
1
+ {"version":3,"file":"single-select.modifier.js","sources":["../../../../../src/x-modules/facets/entities/single-select.modifier.ts"],"sourcesContent":["import {\n isFacetFilter,\n isHierarchicalFilter,\n FacetFilter,\n Facet,\n Filter,\n HierarchicalFilter\n} from '@empathyco/x-types';\nimport { BaseFilterEntityModifier } from './types';\n\n/**\n * Allows only to select only one filter from the same facet at the same time.\n *\n * @internal\n */\nexport class SingleSelectModifier extends BaseFilterEntityModifier {\n /**\n * Selects the passed filter, and then deselects any other filter of the same facet.\n *\n * @param filter - The filter to select.\n */\n select(filter: FacetFilter): void {\n this.getOtherFilters(filter).forEach(this.deselect.bind(this));\n this.entity.select(filter);\n }\n\n /**\n * Retrieves the rest of selected filters of the same facet than the one given.\n *\n * @param filter - The filter to find its relatives.\n * @returns A list of selected filters that belong to the same facet than the filter passed.\n * @remarks It takes into account if the passed filter is an\n * {@link @empathyco/x-types#HierarchicalFilter | HierarchicalFilter} to exclude the ancestors and\n * descendants.\n *\n * @internal\n */\n protected getOtherFilters(filter: FacetFilter): FacetFilter[] {\n /* This check seems dumb, but when you instantiate this modifier using the factory, the types\n `FacetFilter` parameter type is lost, so we should check it to avoid unexpected crashes\n due to a wrong configuration. */\n if (isHierarchicalFilter(filter)) {\n const ancestorsIds = this.getAncestorsIds(filter);\n const descendantsIds = this.getDescendantsIds(filter);\n return this.getFacetFilters(filter.facetId).filter(\n storeFilter =>\n !ancestorsIds.includes(storeFilter.id) && !descendantsIds.includes(storeFilter.id)\n );\n } else if (isFacetFilter(filter)) {\n return this.getFacetFilters(filter.facetId).filter(\n storeFilter => storeFilter.id !== filter.id && storeFilter.selected\n );\n } else {\n // TODO Add a warning in case a non facet filter is passed here.\n return [];\n }\n }\n\n /**\n * Returns the ancestors Filters Ids of the passed filter.\n *\n * @param filter - The {@link @empathyco/x-types#Filter | Filter} which obtain the ancestors from.\n * @param ids - (Optional) an Array with the Ids used to execute the method recursively.\n * @returns An Array with the ancestors ids.\n * @internal\n */\n protected getAncestorsIds(\n filter: HierarchicalFilter,\n ids: Array<Filter['id']> = [filter.id]\n ): Array<Filter['id']> {\n return filter?.parentId\n ? this.getAncestorsIds(\n this.store.state.x.facets.filters[filter.parentId] as HierarchicalFilter,\n [filter.parentId, ...ids]\n )\n : ids;\n }\n\n /**\n * Returns the descendants Filters Ids of the passed filter.\n *\n * @param filter - The {@link @empathyco/x-types#Filter | Filter} which obtain the descendants\n * from.\n * @param ids - (Optional) an Array with the Ids used to execute the method recursively.\n * @returns An Array with the descendants ids.\n * @internal\n */\n protected getDescendantsIds(\n filter: HierarchicalFilter,\n ids: Array<Filter['id']> = [filter.id]\n ): Array<Filter['id']> {\n return filter?.children?.length\n ? filter?.children.reduce(\n (descendantIdsList, descendant) =>\n this.getDescendantsIds(descendant, [descendant.id, ...descendantIdsList]),\n ids\n )\n : ids;\n }\n\n /**\n * Retrieves All the filters from the given facet.\n *\n * @param facetId - The facet id to retrieve its filters.\n * @returns The filters from the given facet.\n * @internal\n */\n protected getFacetFilters(facetId: Facet['id']): FacetFilter[] {\n return (\n ((this.store.getters['x/facets/facets'] as Record<Facet['id'], Facet>)[facetId]\n ?.filters as FacetFilter[]) ?? []\n );\n }\n}\n"],"names":[],"mappings":";;;AAUA;;;;;MAKa,oBAAqB,SAAQ,wBAAwB;;;;;;IAMhE,MAAM,CAAC,MAAmB;QACxB,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QAC/D,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;KAC5B;;;;;;;;;;;;IAaS,eAAe,CAAC,MAAmB;;;;QAI3C,IAAI,oBAAoB,CAAC,MAAM,CAAC,EAAE;YAChC,MAAM,YAAY,GAAG,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;YAClD,MAAM,cAAc,GAAG,IAAI,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC;YACtD,OAAO,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,MAAM,CAChD,WAAW,IACT,CAAC,YAAY,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,CAAC,CACrF,CAAC;SACH;aAAM,IAAI,aAAa,CAAC,MAAM,CAAC,EAAE;YAChC,OAAO,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,MAAM,CAChD,WAAW,IAAI,WAAW,CAAC,EAAE,KAAK,MAAM,CAAC,EAAE,IAAI,WAAW,CAAC,QAAQ,CACpE,CAAC;SACH;aAAM;;YAEL,OAAO,EAAE,CAAC;SACX;KACF;;;;;;;;;IAUS,eAAe,CACvB,MAA0B,EAC1B,MAA2B,CAAC,MAAM,CAAC,EAAE,CAAC;QAEtC,OAAO,MAAM,EAAE,QAAQ;cACnB,IAAI,CAAC,eAAe,CAClB,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAuB,EACxE,CAAC,MAAM,CAAC,QAAQ,EAAE,GAAG,GAAG,CAAC,CAC1B;cACD,GAAG,CAAC;KACT;;;;;;;;;;IAWS,iBAAiB,CACzB,MAA0B,EAC1B,MAA2B,CAAC,MAAM,CAAC,EAAE,CAAC;QAEtC,OAAO,MAAM,EAAE,QAAQ,EAAE,MAAM;cAC3B,MAAM,EAAE,QAAQ,CAAC,MAAM,CACrB,CAAC,iBAAiB,EAAE,UAAU,KAC5B,IAAI,CAAC,iBAAiB,CAAC,UAAU,EAAE,CAAC,UAAU,CAAC,EAAE,EAAE,GAAG,iBAAiB,CAAC,CAAC,EAC3E,GAAG,CACJ;cACD,GAAG,CAAC;KACT;;;;;;;;IASS,eAAe,CAAC,OAAoB;QAC5C,QACI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,iBAAiB,CAAgC,CAAC,OAAO,CAAC;cAC3E,OAAyB,IAAI,EAAE,EACnC;KACH;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empathyco/x-components",
3
- "version": "3.0.0-alpha.148",
3
+ "version": "3.0.0-alpha.149",
4
4
  "description": "Empathy X Components",
5
5
  "author": "Empathy Systems Corporation S.L.",
6
6
  "license": "Apache-2.0",
@@ -125,5 +125,5 @@
125
125
  "access": "public",
126
126
  "directory": "dist"
127
127
  },
128
- "gitHead": "e3a6f1f31ed74eb7bbb15507e84511987daded34"
128
+ "gitHead": "93485c1c62d19c638feeb6f79836361f3869645b"
129
129
  }
@@ -1 +1 @@
1
- {"version":3,"file":"single-select.modifier.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/facets/entities/single-select.modifier.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,WAAW,EACX,KAAK,EACL,MAAM,EACN,kBAAkB,EACnB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAC;AAEnD;;;;GAIG;AACH,qBAAa,oBAAqB,SAAQ,wBAAwB;IAChE;;;;OAIG;IACH,MAAM,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;IAKjC;;;;;;;;;;OAUG;IACH,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,WAAW,GAAG,WAAW,EAAE;IAqB7D;;;;;;;OAOG;IACH,SAAS,CAAC,eAAe,CACvB,MAAM,EAAE,kBAAkB,EAC1B,GAAG,GAAE,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAe,GACrC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAStB;;;;;;;;OAQG;IACH,SAAS,CAAC,iBAAiB,CACzB,MAAM,EAAE,kBAAkB,EAC1B,GAAG,GAAE,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAe,GACrC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAQtB;;;;;;OAMG;IACH,SAAS,CAAC,eAAe,CAAC,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,WAAW,EAAE;CAM/D"}
1
+ {"version":3,"file":"single-select.modifier.d.ts","sourceRoot":"","sources":["../../../../../src/x-modules/facets/entities/single-select.modifier.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,WAAW,EACX,KAAK,EACL,MAAM,EACN,kBAAkB,EACnB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAC;AAEnD;;;;GAIG;AACH,qBAAa,oBAAqB,SAAQ,wBAAwB;IAChE;;;;OAIG;IACH,MAAM,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;IAKjC;;;;;;;;;;OAUG;IACH,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,WAAW,GAAG,WAAW,EAAE;IAqB7D;;;;;;;OAOG;IACH,SAAS,CAAC,eAAe,CACvB,MAAM,EAAE,kBAAkB,EAC1B,GAAG,GAAE,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAe,GACrC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAStB;;;;;;;;OAQG;IACH,SAAS,CAAC,iBAAiB,CACzB,MAAM,EAAE,kBAAkB,EAC1B,GAAG,GAAE,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAe,GACrC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAUtB;;;;;;OAMG;IACH,SAAS,CAAC,eAAe,CAAC,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,GAAG,WAAW,EAAE;CAM/D"}