@citygross/components 0.16.27 → 0.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/build/@types/components/AvailabilityLabel/AvailabilityLabel.d.ts +7 -0
  2. package/build/@types/components/AvailabilityLabel/AvailabilityLabel.styles.d.ts +2 -0
  3. package/build/@types/components/ListItem/ListItem.d.ts +5 -0
  4. package/build/@types/index.d.ts +1 -0
  5. package/build/cjs/components/src/components/AddressBlock/AddressBlock.js +1 -0
  6. package/build/cjs/components/src/components/AddressBlock/AddressBlock.js.map +1 -1
  7. package/build/cjs/components/src/components/AvailabilityLabel/AvailabilityLabel.js +21 -0
  8. package/build/cjs/components/src/components/AvailabilityLabel/AvailabilityLabel.js.map +1 -0
  9. package/build/cjs/components/src/components/AvailabilityLabel/AvailabilityLabel.styles.js +18 -0
  10. package/build/cjs/components/src/components/AvailabilityLabel/AvailabilityLabel.styles.js.map +1 -0
  11. package/build/cjs/components/src/components/ListItem/ListItem.js +4 -1
  12. package/build/cjs/components/src/components/ListItem/ListItem.js.map +1 -1
  13. package/build/cjs/components/src/index.js +2 -0
  14. package/build/cjs/components/src/index.js.map +1 -1
  15. package/build/es/components/src/components/AddressBlock/AddressBlock.js +1 -0
  16. package/build/es/components/src/components/AddressBlock/AddressBlock.js.map +1 -1
  17. package/build/es/components/src/components/AvailabilityLabel/AvailabilityLabel.js +13 -0
  18. package/build/es/components/src/components/AvailabilityLabel/AvailabilityLabel.js.map +1 -0
  19. package/build/es/components/src/components/AvailabilityLabel/AvailabilityLabel.styles.js +9 -0
  20. package/build/es/components/src/components/AvailabilityLabel/AvailabilityLabel.styles.js.map +1 -0
  21. package/build/es/components/src/components/ListItem/ListItem.js +4 -1
  22. package/build/es/components/src/components/ListItem/ListItem.js.map +1 -1
  23. package/build/es/components/src/index.js +1 -0
  24. package/build/es/components/src/index.js.map +1 -1
  25. package/package.json +2 -2
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { TextTypes } from '@citygross/typography';
3
+ export declare type TAvailabilityLabelProps = {
4
+ label: string;
5
+ textSize?: TextTypes.TextSize;
6
+ };
7
+ export declare const AvailabilityLabel: React.FunctionComponent<TAvailabilityLabelProps>;
@@ -0,0 +1,2 @@
1
+ export declare const Root: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
2
+ export declare const Dot: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import { TextTypes } from '@citygross/typography';
2
3
  export declare type TItem = {
3
4
  amount?: number;
4
5
  image?: string;
@@ -8,6 +9,10 @@ export declare type TItem = {
8
9
  };
9
10
  secondaryDescription?: React.ReactNode;
10
11
  subtitle?: string;
12
+ status?: {
13
+ label: string;
14
+ textSize?: TextTypes.TextSize;
15
+ };
11
16
  };
12
17
  export declare enum EListItemAlignment {
13
18
  CENTER = "center",
@@ -1,6 +1,7 @@
1
1
  export * from './components/AddressBlock/AddressBlock';
2
2
  export * from './components/Accordion/Accordion';
3
3
  export * from './components/AlertBox/AlertBox';
4
+ export * from './components/AvailabilityLabel/AvailabilityLabel';
4
5
  export * from './components/BackButton/BackButton';
5
6
  export * from './components/BackgroundImage/BackgroundImage';
6
7
  export * from './components/Badge/Badge';
@@ -9,6 +9,7 @@ require('@citygross/design-tokens');
9
9
  require('@citygross/icons');
10
10
  require('../Accordion/Accordion.styles.js');
11
11
  require('../AlertBox/AlertBox.js');
12
+ require('../AvailabilityLabel/AvailabilityLabel.styles.js');
12
13
  require('../BackButton/BackButton.styles.js');
13
14
  require('../BackgroundImage/BackgroundImage.styles.js');
14
15
  require('../Badge/Badge.styles.js');
@@ -1 +1 @@
1
- {"version":3,"file":"AddressBlock.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"AddressBlock.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,21 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var React = require('react');
6
+ var typography = require('@citygross/typography');
7
+ var AvailabilityLabel_styles = require('./AvailabilityLabel.styles.js');
8
+
9
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
10
+
11
+ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
12
+
13
+ var AvailabilityLabel = function (_a) {
14
+ var label = _a.label, _b = _a.textSize, textSize = _b === void 0 ? typography.TextTypes.TextSize.EXTRASMALL : _b;
15
+ return (React__default["default"].createElement(AvailabilityLabel_styles.Root, null,
16
+ React__default["default"].createElement(AvailabilityLabel_styles.Dot, null),
17
+ React__default["default"].createElement(typography.BodyText, { size: textSize }, label)));
18
+ };
19
+
20
+ exports.AvailabilityLabel = AvailabilityLabel;
21
+ //# sourceMappingURL=AvailabilityLabel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AvailabilityLabel.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,18 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var _tslib = require('../../../../_virtual/_tslib.js');
6
+ var styled = require('styled-components');
7
+
8
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
9
+
10
+ var styled__default = /*#__PURE__*/_interopDefaultLegacy(styled);
11
+
12
+ var Root = styled__default["default"].div(templateObject_1 || (templateObject_1 = _tslib.__makeTemplateObject(["\n display: flex;\n align-items: center;\n gap: ", "px;\n margin-top: ", "px;\n"], ["\n display: flex;\n align-items: center;\n gap: ", "px;\n margin-top: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; });
13
+ var Dot = styled__default["default"].span(templateObject_2 || (templateObject_2 = _tslib.__makeTemplateObject(["\n width: ", "px;\n height: ", "px;\n border-radius: 50%;\n flex-shrink: 0;\n background: ", ";\n"], ["\n width: ", "px;\n height: ", "px;\n border-radius: 50%;\n flex-shrink: 0;\n background: ", ";\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs1; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs1; }, function (props) { var _a; return (_a = props.theme.palette) === null || _a === void 0 ? void 0 : _a.brandYellow; });
14
+ var templateObject_1, templateObject_2;
15
+
16
+ exports.Dot = Dot;
17
+ exports.Root = Root;
18
+ //# sourceMappingURL=AvailabilityLabel.styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AvailabilityLabel.styles.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;"}
@@ -7,6 +7,7 @@ var Skeleton = require('react-loading-skeleton');
7
7
  var Fieldset = require('../Fieldset/Fieldset.js');
8
8
  var Checkbox = require('../FormElements/Checkbox/Checkbox.js');
9
9
  var PriceStripe = require('../PriceStripe/PriceStripe.js');
10
+ var AvailabilityLabel = require('../AvailabilityLabel/AvailabilityLabel.js');
10
11
  var ProductHeader = require('../ProductHeader/ProductHeader.js');
11
12
  var ListItem_styles = require('./ListItem.styles.js');
12
13
  var PriceTag_types = require('../PriceTag/PriceTag.types.js');
@@ -22,7 +23,8 @@ exports.EListItemAlignment = void 0;
22
23
  EListItemAlignment["TOP"] = "flex-start";
23
24
  })(exports.EListItemAlignment || (exports.EListItemAlignment = {}));
24
25
  var ListItem = function (_a) {
25
- var _b = _a.alignment, alignment = _b === void 0 ? exports.EListItemAlignment.CENTER : _b, children = _a.children, checkboxes = _a.checkboxes, fallBackImage = _a.fallBackImage, checkboxLegendLabel = _a.checkboxLegendLabel, imageAutoHeight = _a.imageAutoHeight, item = _a.item, isSmall = _a.isSmall, _c = _a.loading, loading = _c === void 0 ? false : _c, _d = _a.showPriceStripe, showPriceStripe = _d === void 0 ? false : _d, smallSkeleton = _a.smallSkeleton;
26
+ var _b;
27
+ var _c = _a.alignment, alignment = _c === void 0 ? exports.EListItemAlignment.CENTER : _c, children = _a.children, checkboxes = _a.checkboxes, fallBackImage = _a.fallBackImage, checkboxLegendLabel = _a.checkboxLegendLabel, imageAutoHeight = _a.imageAutoHeight, item = _a.item, isSmall = _a.isSmall, _d = _a.loading, loading = _d === void 0 ? false : _d, _e = _a.showPriceStripe, showPriceStripe = _e === void 0 ? false : _e, smallSkeleton = _a.smallSkeleton;
26
28
  return (React__default["default"].createElement(ListItem_styles.ListItemContainer, null,
27
29
  React__default["default"].createElement(ListItem_styles.ListLeft, { alignment: alignment },
28
30
  React__default["default"].createElement(ListItem_styles.ListImageContainer, { isSmall: isSmall },
@@ -43,6 +45,7 @@ var ListItem = function (_a) {
43
45
  checkboxes && checkboxes.length > 0 && (React__default["default"].createElement(Skeleton__default["default"], { height: 20, width: smallSkeleton ? 150 : 200, count: checkboxes.length, style: { marginTop: '8px' } })))) : (React__default["default"].createElement(React.Fragment, null,
44
46
  showPriceStripe && (React__default["default"].createElement(PriceStripe.PriceStripe, { size: PriceTag_types.EPriceSize.SMALL, variant: PriceTag_types.EPriceVariant.PRIO })),
45
47
  React__default["default"].createElement(ProductHeader.ProductHeader, { location: ProductHeader.EProductHeader.LIST_ITEM, subtitle: item === null || item === void 0 ? void 0 : item.subtitle, title: item === null || item === void 0 ? void 0 : item.name }),
48
+ ((_b = item === null || item === void 0 ? void 0 : item.status) === null || _b === void 0 ? void 0 : _b.label) && (React__default["default"].createElement(AvailabilityLabel.AvailabilityLabel, { label: item.status.label, textSize: item.status.textSize })),
46
49
  checkboxes && checkboxes.length > 0 && (React__default["default"].createElement(Fieldset.Fieldset, null,
47
50
  checkboxLegendLabel && (React__default["default"].createElement(ListItem_styles.VisuallyHiddenLegend, null, checkboxLegendLabel)),
48
51
  React__default["default"].createElement(ListItem_styles.CheckboxContainer, null, checkboxes.map(function (checkbox, index) {
@@ -1 +1 @@
1
- {"version":3,"file":"ListItem.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"ListItem.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -5,6 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  var AddressBlock = require('./components/AddressBlock/AddressBlock.js');
6
6
  var Accordion = require('./components/Accordion/Accordion.js');
7
7
  var AlertBox = require('./components/AlertBox/AlertBox.js');
8
+ var AvailabilityLabel = require('./components/AvailabilityLabel/AvailabilityLabel.js');
8
9
  var BackButton = require('./components/BackButton/BackButton.js');
9
10
  var BackgroundImage = require('./components/BackgroundImage/BackgroundImage.js');
10
11
  var Badge = require('./components/Badge/Badge.js');
@@ -115,6 +116,7 @@ Object.defineProperty(exports, 'EAlertBoxVariant', {
115
116
  enumerable: true,
116
117
  get: function () { return AlertBox.EAlertBoxVariant; }
117
118
  });
119
+ exports.AvailabilityLabel = AvailabilityLabel.AvailabilityLabel;
118
120
  exports.BackButton = BackButton.BackButton;
119
121
  exports.BackgroundImage = BackgroundImage.BackgroundImage;
120
122
  exports.Badge = Badge.Badge;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -5,6 +5,7 @@ import '@citygross/design-tokens';
5
5
  import '@citygross/icons';
6
6
  import '../Accordion/Accordion.styles.js';
7
7
  import '../AlertBox/AlertBox.js';
8
+ import '../AvailabilityLabel/AvailabilityLabel.styles.js';
8
9
  import '../BackButton/BackButton.styles.js';
9
10
  import '../BackgroundImage/BackgroundImage.styles.js';
10
11
  import '../Badge/Badge.styles.js';
@@ -1 +1 @@
1
- {"version":3,"file":"AddressBlock.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"AddressBlock.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import { TextTypes, BodyText } from '@citygross/typography';
3
+ import { Root, Dot } from './AvailabilityLabel.styles.js';
4
+
5
+ var AvailabilityLabel = function (_a) {
6
+ var label = _a.label, _b = _a.textSize, textSize = _b === void 0 ? TextTypes.TextSize.EXTRASMALL : _b;
7
+ return (React.createElement(Root, null,
8
+ React.createElement(Dot, null),
9
+ React.createElement(BodyText, { size: textSize }, label)));
10
+ };
11
+
12
+ export { AvailabilityLabel };
13
+ //# sourceMappingURL=AvailabilityLabel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AvailabilityLabel.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;"}
@@ -0,0 +1,9 @@
1
+ import { __makeTemplateObject } from '../../../../_virtual/_tslib.js';
2
+ import styled from 'styled-components';
3
+
4
+ var Root = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n gap: ", "px;\n margin-top: ", "px;\n"], ["\n display: flex;\n align-items: center;\n gap: ", "px;\n margin-top: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; });
5
+ var Dot = styled.span(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n width: ", "px;\n height: ", "px;\n border-radius: 50%;\n flex-shrink: 0;\n background: ", ";\n"], ["\n width: ", "px;\n height: ", "px;\n border-radius: 50%;\n flex-shrink: 0;\n background: ", ";\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs1; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs1; }, function (props) { var _a; return (_a = props.theme.palette) === null || _a === void 0 ? void 0 : _a.brandYellow; });
6
+ var templateObject_1, templateObject_2;
7
+
8
+ export { Dot, Root };
9
+ //# sourceMappingURL=AvailabilityLabel.styles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AvailabilityLabel.styles.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
@@ -3,6 +3,7 @@ import Skeleton from 'react-loading-skeleton';
3
3
  import { Fieldset } from '../Fieldset/Fieldset.js';
4
4
  import { Checkbox } from '../FormElements/Checkbox/Checkbox.js';
5
5
  import { PriceStripe } from '../PriceStripe/PriceStripe.js';
6
+ import { AvailabilityLabel } from '../AvailabilityLabel/AvailabilityLabel.js';
6
7
  import { ProductHeader, EProductHeader } from '../ProductHeader/ProductHeader.js';
7
8
  import { ListItemContainer, ListLeft, ListImageContainer, ListImage, ItemInformationContainer, VisuallyHiddenLegend, CheckboxContainer, ListRight } from './ListItem.styles.js';
8
9
  import { EPriceSize, EPriceVariant } from '../PriceTag/PriceTag.types.js';
@@ -13,7 +14,8 @@ var EListItemAlignment;
13
14
  EListItemAlignment["TOP"] = "flex-start";
14
15
  })(EListItemAlignment || (EListItemAlignment = {}));
15
16
  var ListItem = function (_a) {
16
- var _b = _a.alignment, alignment = _b === void 0 ? EListItemAlignment.CENTER : _b, children = _a.children, checkboxes = _a.checkboxes, fallBackImage = _a.fallBackImage, checkboxLegendLabel = _a.checkboxLegendLabel, imageAutoHeight = _a.imageAutoHeight, item = _a.item, isSmall = _a.isSmall, _c = _a.loading, loading = _c === void 0 ? false : _c, _d = _a.showPriceStripe, showPriceStripe = _d === void 0 ? false : _d, smallSkeleton = _a.smallSkeleton;
17
+ var _b;
18
+ var _c = _a.alignment, alignment = _c === void 0 ? EListItemAlignment.CENTER : _c, children = _a.children, checkboxes = _a.checkboxes, fallBackImage = _a.fallBackImage, checkboxLegendLabel = _a.checkboxLegendLabel, imageAutoHeight = _a.imageAutoHeight, item = _a.item, isSmall = _a.isSmall, _d = _a.loading, loading = _d === void 0 ? false : _d, _e = _a.showPriceStripe, showPriceStripe = _e === void 0 ? false : _e, smallSkeleton = _a.smallSkeleton;
17
19
  return (React.createElement(ListItemContainer, null,
18
20
  React.createElement(ListLeft, { alignment: alignment },
19
21
  React.createElement(ListImageContainer, { isSmall: isSmall },
@@ -34,6 +36,7 @@ var ListItem = function (_a) {
34
36
  checkboxes && checkboxes.length > 0 && (React.createElement(Skeleton, { height: 20, width: smallSkeleton ? 150 : 200, count: checkboxes.length, style: { marginTop: '8px' } })))) : (React.createElement(Fragment, null,
35
37
  showPriceStripe && (React.createElement(PriceStripe, { size: EPriceSize.SMALL, variant: EPriceVariant.PRIO })),
36
38
  React.createElement(ProductHeader, { location: EProductHeader.LIST_ITEM, subtitle: item === null || item === void 0 ? void 0 : item.subtitle, title: item === null || item === void 0 ? void 0 : item.name }),
39
+ ((_b = item === null || item === void 0 ? void 0 : item.status) === null || _b === void 0 ? void 0 : _b.label) && (React.createElement(AvailabilityLabel, { label: item.status.label, textSize: item.status.textSize })),
37
40
  checkboxes && checkboxes.length > 0 && (React.createElement(Fieldset, null,
38
41
  checkboxLegendLabel && (React.createElement(VisuallyHiddenLegend, null, checkboxLegendLabel)),
39
42
  React.createElement(CheckboxContainer, null, checkboxes.map(function (checkbox, index) {
@@ -1 +1 @@
1
- {"version":3,"file":"ListItem.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"ListItem.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,6 +1,7 @@
1
1
  export { AddressBlock } from './components/AddressBlock/AddressBlock.js';
2
2
  export { Accordion } from './components/Accordion/Accordion.js';
3
3
  export { AlertBox, EAlertBoxVariant } from './components/AlertBox/AlertBox.js';
4
+ export { AvailabilityLabel } from './components/AvailabilityLabel/AvailabilityLabel.js';
4
5
  export { BackButton } from './components/BackButton/BackButton.js';
5
6
  export { BackgroundImage } from './components/BackgroundImage/BackgroundImage.js';
6
7
  export { Badge } from './components/Badge/Badge.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citygross/components",
3
- "version": "0.16.27",
3
+ "version": "0.17.0",
4
4
  "license": "ISC",
5
5
  "sideEffects": false,
6
6
  "main": "./build/cjs/components/src/index.js",
@@ -74,5 +74,5 @@
74
74
  "react-slick": "^0.30.1",
75
75
  "slick-carousel": "^1.8.1"
76
76
  },
77
- "gitHead": "7819741544630c9734f1400533b9c2b58a89f274"
77
+ "gitHead": "b5b914cabeadacbc80b22e4a49250e918ccb2a73"
78
78
  }