@trafilea/afrodita-components 5.0.0-beta.167 → 5.0.0-beta.169

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/build/index.d.ts CHANGED
@@ -1673,6 +1673,7 @@ declare type ThemeComponent = {
1673
1673
  };
1674
1674
  };
1675
1675
  orderSummary: {
1676
+ headingTextAlign: string;
1676
1677
  backgroundColor: string;
1677
1678
  maxWidth?: string;
1678
1679
  padding?: string;
@@ -13243,7 +13243,7 @@ var ImageProductWithTags = function (_a) {
13243
13243
  var _a;
13244
13244
  if (selectedValue) {
13245
13245
  var matchingIndex = images.findIndex(function (image) { return image.imageUrl === selectedValue.imageUrl; });
13246
- if (matchingIndex) {
13246
+ if (matchingIndex !== -1) {
13247
13247
  (_a = slick.current) === null || _a === void 0 ? void 0 : _a.slickGoTo(matchingIndex);
13248
13248
  }
13249
13249
  }
package/build/index.js CHANGED
@@ -13269,7 +13269,7 @@ var ImageProductWithTags = function (_a) {
13269
13269
  var _a;
13270
13270
  if (selectedValue) {
13271
13271
  var matchingIndex = images.findIndex(function (image) { return image.imageUrl === selectedValue.imageUrl; });
13272
- if (matchingIndex) {
13272
+ if (matchingIndex !== -1) {
13273
13273
  (_a = slick.current) === null || _a === void 0 ? void 0 : _a.slickGoTo(matchingIndex);
13274
13274
  }
13275
13275
  }
@@ -524,6 +524,7 @@ declare type ThemeComponent = {
524
524
  };
525
525
  };
526
526
  orderSummary: {
527
+ headingTextAlign: string;
527
528
  backgroundColor: string;
528
529
  maxWidth?: string;
529
530
  padding?: string;
@@ -653,6 +653,7 @@ var revel = {
653
653
  },
654
654
  },
655
655
  orderSummary: {
656
+ headingTextAlign: 'center',
656
657
  backgroundColor: '--colors-shades-10-color',
657
658
  padding: '20px',
658
659
  borderRadius: '--radius-regular',
@@ -524,6 +524,7 @@ declare type ThemeComponent = {
524
524
  };
525
525
  };
526
526
  orderSummary: {
527
+ headingTextAlign: string;
527
528
  backgroundColor: string;
528
529
  maxWidth?: string;
529
530
  padding?: string;
@@ -653,6 +653,7 @@ var shapermint = {
653
653
  },
654
654
  },
655
655
  orderSummary: {
656
+ headingTextAlign: 'left',
656
657
  backgroundColor: '--colors-shades-5-color',
657
658
  padding: '',
658
659
  borderRadius: '',
@@ -524,6 +524,7 @@ declare type ThemeComponent = {
524
524
  };
525
525
  };
526
526
  orderSummary: {
527
+ headingTextAlign: string;
527
528
  backgroundColor: string;
528
529
  maxWidth?: string;
529
530
  padding?: string;
@@ -726,6 +726,7 @@ var truekind = {
726
726
  },
727
727
  },
728
728
  orderSummary: {
729
+ headingTextAlign: 'left',
729
730
  backgroundColor: '--colors-shades-5-color',
730
731
  padding: '',
731
732
  borderRadius: '',
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Trafilea's Design System",
4
4
  "author": "Trafilea",
5
5
  "repository": "https://github.com/trafilea/afrodita-components",
6
- "version": "5.0.0-beta.167",
6
+ "version": "5.0.0-beta.169",
7
7
  "private": false,
8
8
  "main": "build/index.js",
9
9
  "style": "build/index.css",