@gympass/yoga 7.61.2 → 7.62.1

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.
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports["default"] = void 0;
5
+
6
+ var Accordion = function Accordion(_ref) {
7
+ var spacing = _ref.spacing;
8
+ return {
9
+ padding: {
10
+ standard: spacing.medium,
11
+ large: spacing.large
12
+ },
13
+ paddingArrow: {
14
+ total: spacing.xxsmall
15
+ },
16
+ gap: {
17
+ header: spacing.xxxsmall
18
+ }
19
+ };
20
+ };
21
+
22
+ var _default = Accordion;
23
+ exports["default"] = _default;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports["default"] = void 0;
5
+
6
+ var _web = _interopRequireDefault(require("./web"));
7
+
8
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
9
+
10
+ var _default = _web["default"];
11
+ exports["default"] = _default;
@@ -0,0 +1,105 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports["default"] = void 0;
5
+
6
+ var _react = _interopRequireWildcard(require("react"));
7
+
8
+ var _styledComponents = _interopRequireWildcard(require("styled-components"));
9
+
10
+ var _propTypes = require("prop-types");
11
+
12
+ var _yogaIcons = require("@gympass/yoga-icons");
13
+
14
+ var _yoga = require("@gympass/yoga");
15
+
16
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7;
17
+
18
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
19
+
20
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
21
+
22
+ function _taggedTemplateLiteralLoose(strings, raw) { if (!raw) { raw = strings.slice(0); } strings.raw = raw; return strings; }
23
+
24
+ var Accordion = function Accordion(_ref) {
25
+ var title = _ref.title,
26
+ subtitle = _ref.subtitle,
27
+ children = _ref.children,
28
+ disabled = _ref.disabled;
29
+
30
+ var _useState = (0, _react.useState)(false),
31
+ open = _useState[0],
32
+ setOpen = _useState[1];
33
+
34
+ var AccordionWrapper = _styledComponents["default"].div(_templateObject || (_templateObject = _taggedTemplateLiteralLoose(["\n border: none;\n display: flex;\n flex-direction: column;\n position: relative;\n width: 100%;\n z-index: 1;\n\n ", "\n\n hr {\n bottom: 0;\n left: 0;\n margin: 0;\n position: absolute;\n z-index: -1;\n }\n "])), function (_ref2) {
35
+ var _ref2$theme$yoga$colo = _ref2.theme.yoga.colors,
36
+ white = _ref2$theme$yoga$colo.white,
37
+ elements = _ref2$theme$yoga$colo.elements;
38
+ return "\n background: " + (disabled ? elements.backgroundAndDisabled : white) + "\n ";
39
+ });
40
+
41
+ var Header = _styledComponents["default"].button(_templateObject2 || (_templateObject2 = _taggedTemplateLiteralLoose(["\n align-items: center;\n background-color: transparent;\n border: none;\n cursor: pointer;\n display: flex;\n justify-content: space-between;\n width: 100%;\n\n ", "\n\n &:focus-visible {\n ", "\n }\n\n ", "\n "])), function (_ref3) {
42
+ var accordion = _ref3.theme.yoga.components.accordion;
43
+ return "\n padding: " + (subtitle ? accordion.padding.standard + "px" : accordion.padding.large + "px " + accordion.padding.standard + "px") + ";\n ";
44
+ }, function (_ref4) {
45
+ var elements = _ref4.theme.yoga.colors.elements;
46
+ return "\n background: " + elements.backgroundAndDisabled + ";\n\n ";
47
+ }, disabled && (0, _styledComponents.css)(_templateObject3 || (_templateObject3 = _taggedTemplateLiteralLoose(["\n cursor: not-allowed;\n "]))));
48
+
49
+ var Title = _styledComponents["default"].div(_templateObject4 || (_templateObject4 = _taggedTemplateLiteralLoose(["\n align-items: flex-start;\n display: flex;\n flex-direction: column;\n text-align: start;\n\n ", "\n\n ", "\n "])), function (_ref5) {
50
+ var accordion = _ref5.theme.yoga.components.accordion;
51
+ return "\n gap: " + (subtitle ? accordion.gap.header : 0) + "px;\n margin: " + (subtitle ? 0 : accordion.paddingArrow.total + "px 0") + ";\n ";
52
+ }, disabled && (0, _styledComponents.css)(_templateObject5 || (_templateObject5 = _taggedTemplateLiteralLoose(["\n ", "\n "])), function (_ref6) {
53
+ var text = _ref6.theme.yoga.colors.text;
54
+ return "\n color: " + text.secundary + ";\n ";
55
+ }));
56
+
57
+ var AccordionContent = _styledComponents["default"].div(_templateObject6 || (_templateObject6 = _taggedTemplateLiteralLoose(["\n height: auto;\n max-height: ", ";\n overflow: hidden;\n transition: max-height 200ms ease-in-out;\n "])), function (_ref7) {
58
+ var isOpen = _ref7.isOpen;
59
+ return isOpen ? '9999px' : '0';
60
+ });
61
+
62
+ var ArrowWrapper = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteralLoose(["\n align-items: center;\n display: flex;\n justify-content: center;\n\n svg {\n transform: ", ";\n transition: all 200ms ease-out 0s;\n\n ", "\n }\n\n ", "\n "])), function (_ref8) {
63
+ var isOpen = _ref8.isOpen;
64
+ return isOpen ? 'rotate(180deg)' : 'rotate(0deg)';
65
+ }, function (_ref9) {
66
+ var _ref9$theme$yoga$colo = _ref9.theme.yoga.colors,
67
+ primary = _ref9$theme$yoga$colo.primary,
68
+ text = _ref9$theme$yoga$colo.text;
69
+ return "\n fill: " + (disabled ? text.secondary : primary) + ";\n ";
70
+ }, function (_ref10) {
71
+ var accordion = _ref10.theme.yoga.components.accordion;
72
+ return "\n padding: " + accordion.paddingArrow.total + "px;\n ";
73
+ });
74
+
75
+ return /*#__PURE__*/_react["default"].createElement(AccordionWrapper, null, /*#__PURE__*/_react["default"].createElement(Header, {
76
+ disabled: disabled,
77
+ onClick: function onClick() {
78
+ setOpen(!open);
79
+ }
80
+ }, /*#__PURE__*/_react["default"].createElement(Title, null, /*#__PURE__*/_react["default"].createElement(_yoga.Text, {
81
+ color: disabled ? 'deep' : undefined
82
+ }, title), /*#__PURE__*/_react["default"].createElement(_yoga.Text.Small, {
83
+ color: "deep"
84
+ }, subtitle)), /*#__PURE__*/_react["default"].createElement(ArrowWrapper, {
85
+ isOpen: open
86
+ }, /*#__PURE__*/_react["default"].createElement(_yogaIcons.ChevronDown, {
87
+ width: 24,
88
+ height: 24
89
+ }))), /*#__PURE__*/_react["default"].createElement(AccordionContent, {
90
+ isOpen: open
91
+ }, children), /*#__PURE__*/_react["default"].createElement(_yoga.Divider, null));
92
+ };
93
+
94
+ Accordion.propTypes = {
95
+ title: _propTypes.string.isRequired,
96
+ subtitle: _propTypes.string,
97
+ children: _propTypes.node.isRequired,
98
+ disabled: _propTypes.bool
99
+ };
100
+ Accordion.defaultProps = {
101
+ subtitle: undefined,
102
+ disabled: false
103
+ };
104
+ var _default = Accordion;
105
+ exports["default"] = _default;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports["default"] = void 0;
5
+
6
+ var _propTypes = require("prop-types");
7
+
8
+ var _react = _interopRequireDefault(require("react"));
9
+
10
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
11
+
12
+ var _templateObject;
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
15
+
16
+ function _taggedTemplateLiteralLoose(strings, raw) { if (!raw) { raw = strings.slice(0); } strings.raw = raw; return strings; }
17
+
18
+ var Content = function Content(_ref) {
19
+ var children = _ref.children;
20
+
21
+ var ContentWrapper = _styledComponents["default"].div(_templateObject || (_templateObject = _taggedTemplateLiteralLoose(["\n ", "\n "])), function (_ref2) {
22
+ var accordion = _ref2.theme.yoga.components.accordion;
23
+ return "\n padding: 0 " + accordion.padding.standard + "px " + accordion.padding.standard + "px;\n ";
24
+ });
25
+
26
+ return /*#__PURE__*/_react["default"].createElement(ContentWrapper, null, children);
27
+ };
28
+
29
+ Content.propTypes = {
30
+ children: _propTypes.node.isRequired
31
+ };
32
+ var _default = Content;
33
+ exports["default"] = _default;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports["default"] = void 0;
5
+
6
+ var _Accordion = _interopRequireDefault(require("./Accordion"));
7
+
8
+ var _Content = _interopRequireDefault(require("./Content"));
9
+
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
+
12
+ _Accordion["default"].Content = _Content["default"];
13
+ var _default = _Accordion["default"];
14
+ exports["default"] = _default;
@@ -67,7 +67,7 @@ MenuList.propTypes = {
67
67
  sideOffset: _propTypes.number,
68
68
 
69
69
  /** Add z-index value to Menu.List. Set to 'auto' by default */
70
- zIndex: _propTypes.number
70
+ zIndex: _propTypes.string || _propTypes.number
71
71
  };
72
72
  MenuList.defaultProps = {
73
73
  align: 'start',
@@ -5,6 +5,8 @@ exports["default"] = void 0;
5
5
 
6
6
  var _yogaCommon = require("@gympass/yoga-common");
7
7
 
8
+ var _AccordionTheme = _interopRequireDefault(require("./../../Accordion/Accordion.theme.js"));
9
+
8
10
  var _ActionRequirementTheme = _interopRequireDefault(require("./../../ActionRequirement/ActionRequirement.theme.js"));
9
11
 
10
12
  var _AutoCompleteTheme = _interopRequireDefault(require("./../../AutoComplete/AutoComplete.theme.js"));
@@ -82,6 +84,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "d
82
84
  function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
83
85
 
84
86
  var componentThemes = {
87
+ Accordion$Accordion: _AccordionTheme["default"],
85
88
  ActionRequirement$ActionRequirement: _ActionRequirementTheme["default"],
86
89
  AutoComplete$AutoComplete: _AutoCompleteTheme["default"],
87
90
  Avatar$Avatar: _AvatarTheme["default"],
package/cjs/index.js CHANGED
@@ -10,6 +10,10 @@ exports.yogaTheme = _Theme.yogaTheme;
10
10
  exports.theme = _Theme.theme;
11
11
  exports.createTheme = _Theme.createTheme;
12
12
 
13
+ var _Accordion = _interopRequireDefault(require("./Accordion"));
14
+
15
+ exports.Accordion = _Accordion["default"];
16
+
13
17
  var _Button = _interopRequireDefault(require("./Button"));
14
18
 
15
19
  exports.Button = _Button["default"];
@@ -0,0 +1,17 @@
1
+ var Accordion = function Accordion(_ref) {
2
+ var spacing = _ref.spacing;
3
+ return {
4
+ padding: {
5
+ standard: spacing.medium,
6
+ large: spacing.large
7
+ },
8
+ paddingArrow: {
9
+ total: spacing.xxsmall
10
+ },
11
+ gap: {
12
+ header: spacing.xxxsmall
13
+ }
14
+ };
15
+ };
16
+
17
+ export default Accordion;
@@ -0,0 +1,2 @@
1
+ import Accordion from './web';
2
+ export default Accordion;
@@ -0,0 +1,86 @@
1
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7;
2
+
3
+ function _taggedTemplateLiteralLoose(strings, raw) { if (!raw) { raw = strings.slice(0); } strings.raw = raw; return strings; }
4
+
5
+ import React, { useState } from 'react';
6
+ import styled, { css } from 'styled-components';
7
+ import { string, node, bool } from 'prop-types';
8
+ import { ChevronDown } from '@gympass/yoga-icons';
9
+ import { Text, Divider } from '@gympass/yoga';
10
+
11
+ var Accordion = function Accordion(_ref) {
12
+ var title = _ref.title,
13
+ subtitle = _ref.subtitle,
14
+ children = _ref.children,
15
+ disabled = _ref.disabled;
16
+
17
+ var _useState = useState(false),
18
+ open = _useState[0],
19
+ setOpen = _useState[1];
20
+
21
+ var AccordionWrapper = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteralLoose(["\n border: none;\n display: flex;\n flex-direction: column;\n position: relative;\n width: 100%;\n z-index: 1;\n\n ", "\n\n hr {\n bottom: 0;\n left: 0;\n margin: 0;\n position: absolute;\n z-index: -1;\n }\n "])), function (_ref2) {
22
+ var _ref2$theme$yoga$colo = _ref2.theme.yoga.colors,
23
+ white = _ref2$theme$yoga$colo.white,
24
+ elements = _ref2$theme$yoga$colo.elements;
25
+ return "\n background: " + (disabled ? elements.backgroundAndDisabled : white) + "\n ";
26
+ });
27
+ var Header = styled.button(_templateObject2 || (_templateObject2 = _taggedTemplateLiteralLoose(["\n align-items: center;\n background-color: transparent;\n border: none;\n cursor: pointer;\n display: flex;\n justify-content: space-between;\n width: 100%;\n\n ", "\n\n &:focus-visible {\n ", "\n }\n\n ", "\n "])), function (_ref3) {
28
+ var accordion = _ref3.theme.yoga.components.accordion;
29
+ return "\n padding: " + (subtitle ? accordion.padding.standard + "px" : accordion.padding.large + "px " + accordion.padding.standard + "px") + ";\n ";
30
+ }, function (_ref4) {
31
+ var elements = _ref4.theme.yoga.colors.elements;
32
+ return "\n background: " + elements.backgroundAndDisabled + ";\n\n ";
33
+ }, disabled && css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteralLoose(["\n cursor: not-allowed;\n "]))));
34
+ var Title = styled.div(_templateObject4 || (_templateObject4 = _taggedTemplateLiteralLoose(["\n align-items: flex-start;\n display: flex;\n flex-direction: column;\n text-align: start;\n\n ", "\n\n ", "\n "])), function (_ref5) {
35
+ var accordion = _ref5.theme.yoga.components.accordion;
36
+ return "\n gap: " + (subtitle ? accordion.gap.header : 0) + "px;\n margin: " + (subtitle ? 0 : accordion.paddingArrow.total + "px 0") + ";\n ";
37
+ }, disabled && css(_templateObject5 || (_templateObject5 = _taggedTemplateLiteralLoose(["\n ", "\n "])), function (_ref6) {
38
+ var text = _ref6.theme.yoga.colors.text;
39
+ return "\n color: " + text.secundary + ";\n ";
40
+ }));
41
+ var AccordionContent = styled.div(_templateObject6 || (_templateObject6 = _taggedTemplateLiteralLoose(["\n height: auto;\n max-height: ", ";\n overflow: hidden;\n transition: max-height 200ms ease-in-out;\n "])), function (_ref7) {
42
+ var isOpen = _ref7.isOpen;
43
+ return isOpen ? '9999px' : '0';
44
+ });
45
+ var ArrowWrapper = styled.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteralLoose(["\n align-items: center;\n display: flex;\n justify-content: center;\n\n svg {\n transform: ", ";\n transition: all 200ms ease-out 0s;\n\n ", "\n }\n\n ", "\n "])), function (_ref8) {
46
+ var isOpen = _ref8.isOpen;
47
+ return isOpen ? 'rotate(180deg)' : 'rotate(0deg)';
48
+ }, function (_ref9) {
49
+ var _ref9$theme$yoga$colo = _ref9.theme.yoga.colors,
50
+ primary = _ref9$theme$yoga$colo.primary,
51
+ text = _ref9$theme$yoga$colo.text;
52
+ return "\n fill: " + (disabled ? text.secondary : primary) + ";\n ";
53
+ }, function (_ref10) {
54
+ var accordion = _ref10.theme.yoga.components.accordion;
55
+ return "\n padding: " + accordion.paddingArrow.total + "px;\n ";
56
+ });
57
+ return /*#__PURE__*/React.createElement(AccordionWrapper, null, /*#__PURE__*/React.createElement(Header, {
58
+ disabled: disabled,
59
+ onClick: function onClick() {
60
+ setOpen(!open);
61
+ }
62
+ }, /*#__PURE__*/React.createElement(Title, null, /*#__PURE__*/React.createElement(Text, {
63
+ color: disabled ? 'deep' : undefined
64
+ }, title), /*#__PURE__*/React.createElement(Text.Small, {
65
+ color: "deep"
66
+ }, subtitle)), /*#__PURE__*/React.createElement(ArrowWrapper, {
67
+ isOpen: open
68
+ }, /*#__PURE__*/React.createElement(ChevronDown, {
69
+ width: 24,
70
+ height: 24
71
+ }))), /*#__PURE__*/React.createElement(AccordionContent, {
72
+ isOpen: open
73
+ }, children), /*#__PURE__*/React.createElement(Divider, null));
74
+ };
75
+
76
+ Accordion.propTypes = {
77
+ title: string.isRequired,
78
+ subtitle: string,
79
+ children: node.isRequired,
80
+ disabled: bool
81
+ };
82
+ Accordion.defaultProps = {
83
+ subtitle: undefined,
84
+ disabled: false
85
+ };
86
+ export default Accordion;
@@ -0,0 +1,21 @@
1
+ var _templateObject;
2
+
3
+ function _taggedTemplateLiteralLoose(strings, raw) { if (!raw) { raw = strings.slice(0); } strings.raw = raw; return strings; }
4
+
5
+ import { node } from 'prop-types';
6
+ import React from 'react';
7
+ import styled from 'styled-components';
8
+
9
+ var Content = function Content(_ref) {
10
+ var children = _ref.children;
11
+ var ContentWrapper = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteralLoose(["\n ", "\n "])), function (_ref2) {
12
+ var accordion = _ref2.theme.yoga.components.accordion;
13
+ return "\n padding: 0 " + accordion.padding.standard + "px " + accordion.padding.standard + "px;\n ";
14
+ });
15
+ return /*#__PURE__*/React.createElement(ContentWrapper, null, children);
16
+ };
17
+
18
+ Content.propTypes = {
19
+ children: node.isRequired
20
+ };
21
+ export default Content;
@@ -0,0 +1,4 @@
1
+ import Accordion from './Accordion';
2
+ import Content from './Content';
3
+ Accordion.Content = Content;
4
+ export default Accordion;
@@ -5,7 +5,7 @@ function _taggedTemplateLiteralLoose(strings, raw) { if (!raw) { raw = strings.s
5
5
  import React, { forwardRef } from 'react';
6
6
  import styled from 'styled-components';
7
7
  import { Content as MenuListRoot, Portal } from '@radix-ui/react-dropdown-menu';
8
- import { node, number, oneOf } from 'prop-types';
8
+ import { node, number, oneOf, string } from 'prop-types';
9
9
  import Box from '../../Box';
10
10
  var StyledMenuList = styled(MenuListRoot)(_templateObject || (_templateObject = _taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n align-items: center;\n ", "\n"])), function (_ref) {
11
11
  var zIndex = _ref.zIndex,
@@ -51,7 +51,7 @@ MenuList.propTypes = {
51
51
  sideOffset: number,
52
52
 
53
53
  /** Add z-index value to Menu.List. Set to 'auto' by default */
54
- zIndex: number
54
+ zIndex: string || number
55
55
  };
56
56
  MenuList.defaultProps = {
57
57
  align: 'start',
@@ -2,6 +2,7 @@ function _extends() { _extends = Object.assign ? Object.assign.bind() : function
2
2
 
3
3
  /* eslint-disable prefer-destructuring */
4
4
  import { merge } from '@gympass/yoga-common';
5
+ import _componentThemes_Accordion$Accordion from "./../../Accordion/Accordion.theme.js";
5
6
  import _componentThemes_ActionRequirement$ActionRequirement from "./../../ActionRequirement/ActionRequirement.theme.js";
6
7
  import _componentThemes_AutoComplete$AutoComplete from "./../../AutoComplete/AutoComplete.theme.js";
7
8
  import _componentThemes_Avatar$Avatar from "./../../Avatar/Avatar.theme.js";
@@ -39,6 +40,7 @@ import _componentThemes_Tag$Tag from "./../../Tag/Tag.theme.js";
39
40
  import _componentThemes_Text$Text from "./../../Text/Text.theme.js";
40
41
  import _componentThemes_TextArea$TextArea from "./../../TextArea/TextArea.theme.js";
41
42
  var componentThemes = {
43
+ Accordion$Accordion: _componentThemes_Accordion$Accordion,
42
44
  ActionRequirement$ActionRequirement: _componentThemes_ActionRequirement$ActionRequirement,
43
45
  AutoComplete$AutoComplete: _componentThemes_AutoComplete$AutoComplete,
44
46
  Avatar$Avatar: _componentThemes_Avatar$Avatar,
package/esm/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import ThemeProvider, { FontLoader, yogaTheme, theme, createTheme } from './Theme';
2
+ import Accordion from './Accordion';
2
3
  import Button from './Button';
3
4
  import List from './List';
4
5
  import Checkbox from './Checkbox';
@@ -33,4 +34,4 @@ import Drawer from './Drawer';
33
34
  import Skeleton from './Skeleton';
34
35
  import ActionRequirement from './ActionRequirement';
35
36
  import Popover from './Popover';
36
- export { ThemeProvider, FontLoader, createTheme, yogaTheme, theme, Button, List, Checkbox, RadioGroup, Slider, Card, PlanCard, Stepper, Container, Row, Col, Hide, Text, Rating, EventCard, Tag, Input, Progress, Dropdown, TextArea, AutoComplete, Icon, Chips, Box, Snackbar, Avatar, BottomSheet, Dialog, Divider, Header, Menu, Banner, Heading, Feedback, Datepicker, Drawer, Skeleton, ActionRequirement, Popover };
37
+ export { Accordion, ThemeProvider, FontLoader, createTheme, yogaTheme, theme, Button, List, Checkbox, RadioGroup, Slider, Card, PlanCard, Stepper, Container, Row, Col, Hide, Text, Rating, EventCard, Tag, Input, Progress, Dropdown, TextArea, AutoComplete, Icon, Chips, Box, Snackbar, Avatar, BottomSheet, Dialog, Divider, Header, Menu, Banner, Heading, Feedback, Datepicker, Drawer, Skeleton, ActionRequirement, Popover };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gympass/yoga",
3
- "version": "7.61.2",
3
+ "version": "7.62.1",
4
4
  "description": "Gympass component library",
5
5
  "main": "./cjs",
6
6
  "sideEffects": false,
@@ -52,7 +52,7 @@
52
52
  "react": ">=16",
53
53
  "styled-components": "^4.4.0"
54
54
  },
55
- "gitHead": "0755cce3b6a06252ca8e24d6aa48d289a0e82eda",
55
+ "gitHead": "1d4b022729ad6c6b8f73a58a3c3fe8261a40b5c0",
56
56
  "module": "./esm",
57
57
  "private": false,
58
58
  "react-native": "./cjs/index.native.js"