@chayns-components/core 5.0.0-beta.36 → 5.0.0-beta.37
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/lib/components/accordion/accordion-intro/AccordionIntro.d.ts +8 -2
- package/lib/components/accordion/accordion-intro/AccordionIntro.js.map +1 -1
- package/lib/components/checkbox/Checkbox.d.ts +25 -0
- package/lib/components/checkbox/Checkbox.js +52 -0
- package/lib/components/checkbox/Checkbox.js.map +1 -0
- package/lib/components/checkbox/Checkbox.styles.d.ts +6 -0
- package/lib/components/checkbox/Checkbox.styles.js +87 -0
- package/lib/components/checkbox/Checkbox.styles.js.map +1 -0
- package/package.json +2 -2
|
@@ -1,3 +1,9 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
|
-
declare
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
|
+
export declare type AccordionIntroProps = {
|
|
3
|
+
/**
|
|
4
|
+
* The content of the accordion content element
|
|
5
|
+
*/
|
|
6
|
+
children: ReactNode;
|
|
7
|
+
};
|
|
8
|
+
declare const AccordionIntro: FC<AccordionIntroProps>;
|
|
3
9
|
export default AccordionIntro;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AccordionIntro.js","names":["AccordionIntro","children","displayName"],"sources":["../../../../src/components/accordion/accordion-intro/AccordionIntro.tsx"],"sourcesContent":["import React, { FC } from 'react';\nimport { StyledAccordionIntro } from './AccordionIntro.styles';\n\nconst AccordionIntro: FC = ({ children }) => (\n <StyledAccordionIntro className=\"beta-chayns-accordion-intro\">{children}</StyledAccordionIntro>\n);\n\nAccordionIntro.displayName = 'AccordionIntro';\n\nexport default AccordionIntro;\n"],"mappings":";;;;;;;AAAA;;AACA;;;;
|
|
1
|
+
{"version":3,"file":"AccordionIntro.js","names":["AccordionIntro","children","displayName"],"sources":["../../../../src/components/accordion/accordion-intro/AccordionIntro.tsx"],"sourcesContent":["import React, { FC, ReactNode } from 'react';\nimport { StyledAccordionIntro } from './AccordionIntro.styles';\n\nexport type AccordionIntroProps = {\n /**\n * The content of the accordion content element\n */\n children: ReactNode;\n};\n\nconst AccordionIntro: FC<AccordionIntroProps> = ({ children }) => (\n <StyledAccordionIntro className=\"beta-chayns-accordion-intro\">{children}</StyledAccordionIntro>\n);\n\nAccordionIntro.displayName = 'AccordionIntro';\n\nexport default AccordionIntro;\n"],"mappings":";;;;;;;AAAA;;AACA;;;;AASA,MAAMA,cAAuC,GAAG;EAAA,IAAC;IAAEC;EAAF,CAAD;EAAA,oBAC5C,6BAAC,oCAAD;IAAsB,SAAS,EAAC;EAAhC,GAA+DA,QAA/D,CAD4C;AAAA,CAAhD;;AAIAD,cAAc,CAACE,WAAf,GAA6B,gBAA7B;eAEeF,c"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ChangeEventHandler, FC, ReactNode } from 'react';
|
|
2
|
+
export declare type CheckboxProps = {
|
|
3
|
+
/**
|
|
4
|
+
* Text for checkbox or switch
|
|
5
|
+
*/
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* Indicates whether the checkbox or switch is selected
|
|
9
|
+
*/
|
|
10
|
+
isChecked?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Disables the checkbox or switch so it cannot be toggled
|
|
13
|
+
*/
|
|
14
|
+
isDisabled?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Function to be executed if the checked value changes
|
|
17
|
+
*/
|
|
18
|
+
onChange?: ChangeEventHandler<HTMLInputElement>;
|
|
19
|
+
/**
|
|
20
|
+
* Changes the design to use switch instead of checkbox
|
|
21
|
+
*/
|
|
22
|
+
shouldShowAsSwitch?: boolean;
|
|
23
|
+
};
|
|
24
|
+
declare const Checkbox: FC<CheckboxProps>;
|
|
25
|
+
export default Checkbox;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
10
|
+
var _uuid = require("../../hooks/uuid");
|
|
11
|
+
|
|
12
|
+
var _Checkbox = require("./Checkbox.styles");
|
|
13
|
+
|
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
16
|
+
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; }
|
|
17
|
+
|
|
18
|
+
const Checkbox = _ref => {
|
|
19
|
+
let {
|
|
20
|
+
children,
|
|
21
|
+
isChecked,
|
|
22
|
+
isDisabled,
|
|
23
|
+
onChange,
|
|
24
|
+
shouldShowAsSwitch
|
|
25
|
+
} = _ref;
|
|
26
|
+
const [isActive, setIsActive] = (0, _react.useState)(isChecked !== null && isChecked !== void 0 ? isChecked : false);
|
|
27
|
+
const handleChange = (0, _react.useCallback)(event => {
|
|
28
|
+
setIsActive(event.target.checked);
|
|
29
|
+
|
|
30
|
+
if (typeof onChange === 'function') {
|
|
31
|
+
onChange(event);
|
|
32
|
+
}
|
|
33
|
+
}, [onChange]);
|
|
34
|
+
const uuid = (0, _uuid.useUuid)();
|
|
35
|
+
return /*#__PURE__*/_react.default.createElement(_Checkbox.StyledCheckbox, null, /*#__PURE__*/_react.default.createElement(_Checkbox.StyledCheckboxInput, {
|
|
36
|
+
checked: isChecked,
|
|
37
|
+
disabled: isDisabled,
|
|
38
|
+
id: uuid,
|
|
39
|
+
onChange: handleChange,
|
|
40
|
+
type: "checkbox"
|
|
41
|
+
}), /*#__PURE__*/_react.default.createElement(_Checkbox.StyledCheckboxLabel, {
|
|
42
|
+
htmlFor: uuid,
|
|
43
|
+
isChecked: isChecked !== null && isChecked !== void 0 ? isChecked : isActive,
|
|
44
|
+
isDisabled: isDisabled,
|
|
45
|
+
shouldShowAsSwitch: shouldShowAsSwitch
|
|
46
|
+
}, children));
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
Checkbox.displayName = 'Checkbox';
|
|
50
|
+
var _default = Checkbox;
|
|
51
|
+
exports.default = _default;
|
|
52
|
+
//# sourceMappingURL=Checkbox.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Checkbox.js","names":["Checkbox","children","isChecked","isDisabled","onChange","shouldShowAsSwitch","isActive","setIsActive","useState","handleChange","useCallback","event","target","checked","uuid","useUuid","displayName"],"sources":["../../../src/components/checkbox/Checkbox.tsx"],"sourcesContent":["import React, {\n ChangeEvent,\n ChangeEventHandler,\n FC,\n ReactNode,\n useCallback,\n useState,\n} from 'react';\nimport { useUuid } from '../../hooks/uuid';\nimport { StyledCheckbox, StyledCheckboxInput, StyledCheckboxLabel } from './Checkbox.styles';\n\nexport type CheckboxProps = {\n /**\n * Text for checkbox or switch\n */\n children?: ReactNode;\n /**\n * Indicates whether the checkbox or switch is selected\n */\n isChecked?: boolean;\n /**\n * Disables the checkbox or switch so it cannot be toggled\n */\n isDisabled?: boolean;\n /**\n * Function to be executed if the checked value changes\n */\n onChange?: ChangeEventHandler<HTMLInputElement>;\n /**\n * Changes the design to use switch instead of checkbox\n */\n shouldShowAsSwitch?: boolean;\n};\n\nconst Checkbox: FC<CheckboxProps> = ({\n children,\n isChecked,\n isDisabled,\n onChange,\n shouldShowAsSwitch,\n}) => {\n const [isActive, setIsActive] = useState(isChecked ?? false);\n\n const handleChange = useCallback(\n (event: ChangeEvent<HTMLInputElement>) => {\n setIsActive(event.target.checked);\n\n if (typeof onChange === 'function') {\n onChange(event);\n }\n },\n [onChange]\n );\n\n const uuid = useUuid();\n\n return (\n <StyledCheckbox>\n <StyledCheckboxInput\n checked={isChecked}\n disabled={isDisabled}\n id={uuid}\n onChange={handleChange}\n type=\"checkbox\"\n />\n <StyledCheckboxLabel\n htmlFor={uuid}\n isChecked={isChecked ?? isActive}\n isDisabled={isDisabled}\n shouldShowAsSwitch={shouldShowAsSwitch}\n >\n {children}\n </StyledCheckboxLabel>\n </StyledCheckbox>\n );\n};\n\nCheckbox.displayName = 'Checkbox';\n\nexport default Checkbox;\n"],"mappings":";;;;;;;AAAA;;AAQA;;AACA;;;;;;AAyBA,MAAMA,QAA2B,GAAG,QAM9B;EAAA,IAN+B;IACjCC,QADiC;IAEjCC,SAFiC;IAGjCC,UAHiC;IAIjCC,QAJiC;IAKjCC;EALiC,CAM/B;EACF,MAAM,CAACC,QAAD,EAAWC,WAAX,IAA0B,IAAAC,eAAA,EAASN,SAAT,aAASA,SAAT,cAASA,SAAT,GAAsB,KAAtB,CAAhC;EAEA,MAAMO,YAAY,GAAG,IAAAC,kBAAA,EAChBC,KAAD,IAA0C;IACtCJ,WAAW,CAACI,KAAK,CAACC,MAAN,CAAaC,OAAd,CAAX;;IAEA,IAAI,OAAOT,QAAP,KAAoB,UAAxB,EAAoC;MAChCA,QAAQ,CAACO,KAAD,CAAR;IACH;EACJ,CAPgB,EAQjB,CAACP,QAAD,CARiB,CAArB;EAWA,MAAMU,IAAI,GAAG,IAAAC,aAAA,GAAb;EAEA,oBACI,6BAAC,wBAAD,qBACI,6BAAC,6BAAD;IACI,OAAO,EAAEb,SADb;IAEI,QAAQ,EAAEC,UAFd;IAGI,EAAE,EAAEW,IAHR;IAII,QAAQ,EAAEL,YAJd;IAKI,IAAI,EAAC;EALT,EADJ,eAQI,6BAAC,6BAAD;IACI,OAAO,EAAEK,IADb;IAEI,SAAS,EAAEZ,SAAF,aAAEA,SAAF,cAAEA,SAAF,GAAeI,QAF5B;IAGI,UAAU,EAAEH,UAHhB;IAII,kBAAkB,EAAEE;EAJxB,GAMKJ,QANL,CARJ,CADJ;AAmBH,CAzCD;;AA2CAD,QAAQ,CAACgB,WAAT,GAAuB,UAAvB;eAEehB,Q"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { CheckboxProps } from './Checkbox';
|
|
2
|
+
export declare const StyledCheckbox: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export declare const StyledCheckboxInput: import("styled-components").StyledComponent<"input", any, {}, never>;
|
|
4
|
+
export declare const StyledCheckboxLabel: import("styled-components").StyledComponent<"label", any, Omit<CheckboxProps, "children" | "onChange"> & {
|
|
5
|
+
theme: import("../color-scheme-provider/ColorSchemeProvider").Theme;
|
|
6
|
+
}, never>;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.StyledCheckboxLabel = exports.StyledCheckboxInput = exports.StyledCheckbox = void 0;
|
|
7
|
+
|
|
8
|
+
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
9
|
+
|
|
10
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
|
|
11
|
+
|
|
12
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
13
|
+
|
|
14
|
+
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; }
|
|
15
|
+
|
|
16
|
+
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
17
|
+
|
|
18
|
+
const StyledCheckbox = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n align-items: center;\n display: flex;\n position: relative;\n"])));
|
|
19
|
+
|
|
20
|
+
exports.StyledCheckbox = StyledCheckbox;
|
|
21
|
+
|
|
22
|
+
const StyledCheckboxInput = _styledComponents.default.input(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n display: none;\n"])));
|
|
23
|
+
|
|
24
|
+
exports.StyledCheckboxInput = StyledCheckboxInput;
|
|
25
|
+
|
|
26
|
+
const StyledCheckboxLabel = _styledComponents.default.label(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n cursor: ", ";\n opacity: ", ";\n padding-left: ", ";\n transition: opacity 0.2s ease;\n user-select: none;\n\n &:after {\n ", "\n\n content: ' ';\n position: absolute;\n top: 50%;\n transform-origin: 100% 100%;\n }\n\n &:before {\n background-color: ", ";\n border: 1px solid rgba(", ", 0.5);\n border-radius: ", ";\n content: ' ';\n height: ", ";\n left: ", ";\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n transition: background-color 0.2s ease;\n width: ", ";\n }\n"])), _ref => {
|
|
27
|
+
let {
|
|
28
|
+
isDisabled
|
|
29
|
+
} = _ref;
|
|
30
|
+
return isDisabled ? 'default' : 'pointer';
|
|
31
|
+
}, _ref2 => {
|
|
32
|
+
let {
|
|
33
|
+
isDisabled
|
|
34
|
+
} = _ref2;
|
|
35
|
+
return isDisabled ? 0.5 : 1;
|
|
36
|
+
}, _ref3 => {
|
|
37
|
+
let {
|
|
38
|
+
shouldShowAsSwitch
|
|
39
|
+
} = _ref3;
|
|
40
|
+
return shouldShowAsSwitch ? '48px' : '20px';
|
|
41
|
+
}, _ref4 => {
|
|
42
|
+
let {
|
|
43
|
+
isChecked,
|
|
44
|
+
shouldShowAsSwitch
|
|
45
|
+
} = _ref4;
|
|
46
|
+
return shouldShowAsSwitch ? (0, _styledComponents.css)(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n background-color: white;\n border-radius: 50%;\n box-shadow: 0 1px 4px rgb(0 0 0 / 35%);\n height: 16px;\n left: 7px;\n transform: translateY(-50%) translateX(", ");\n transition: transform 0.2s ease;\n width: 16px;\n "])), isChecked ? '18px' : 0) : (0, _styledComponents.css)(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n border-right: 2px solid #fff;\n border-bottom: 2px solid #fff;\n height: 10px;\n left: 1px;\n opacity: ", ";\n transform: translateY(-50%) rotateZ(37deg);\n transition: opacity 0.2s ease;\n width: 5.5px;\n "])), isChecked ? 1 : 0);
|
|
47
|
+
}, _ref5 => {
|
|
48
|
+
let {
|
|
49
|
+
isChecked,
|
|
50
|
+
shouldShowAsSwitch,
|
|
51
|
+
theme
|
|
52
|
+
} = _ref5;
|
|
53
|
+
|
|
54
|
+
if (shouldShowAsSwitch) {
|
|
55
|
+
return isChecked ? theme.green : theme.red;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
return isChecked ? theme['408'] : theme['403'];
|
|
59
|
+
}, _ref6 => {
|
|
60
|
+
let {
|
|
61
|
+
theme
|
|
62
|
+
} = _ref6;
|
|
63
|
+
return theme['409-rgb'];
|
|
64
|
+
}, _ref7 => {
|
|
65
|
+
let {
|
|
66
|
+
shouldShowAsSwitch
|
|
67
|
+
} = _ref7;
|
|
68
|
+
return shouldShowAsSwitch ? '100px' : 0;
|
|
69
|
+
}, _ref8 => {
|
|
70
|
+
let {
|
|
71
|
+
shouldShowAsSwitch
|
|
72
|
+
} = _ref8;
|
|
73
|
+
return shouldShowAsSwitch ? '13px' : '15px';
|
|
74
|
+
}, _ref9 => {
|
|
75
|
+
let {
|
|
76
|
+
shouldShowAsSwitch
|
|
77
|
+
} = _ref9;
|
|
78
|
+
return shouldShowAsSwitch ? '10px' : 0;
|
|
79
|
+
}, _ref10 => {
|
|
80
|
+
let {
|
|
81
|
+
shouldShowAsSwitch
|
|
82
|
+
} = _ref10;
|
|
83
|
+
return shouldShowAsSwitch ? '28px' : '15px';
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
exports.StyledCheckboxLabel = StyledCheckboxLabel;
|
|
87
|
+
//# sourceMappingURL=Checkbox.styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Checkbox.styles.js","names":["StyledCheckbox","styled","div","StyledCheckboxInput","input","StyledCheckboxLabel","label","isDisabled","shouldShowAsSwitch","isChecked","css","theme","green","red"],"sources":["../../../src/components/checkbox/Checkbox.styles.ts"],"sourcesContent":["import styled, { css } from 'styled-components';\nimport type { WithTheme } from '../color-scheme-provider/ColorSchemeProvider';\nimport type { CheckboxProps } from './Checkbox';\n\nexport const StyledCheckbox = styled.div`\n align-items: center;\n display: flex;\n position: relative;\n`;\n\nexport const StyledCheckboxInput = styled.input`\n display: none;\n`;\n\ntype StyledCheckboxLabelProps = WithTheme<Omit<CheckboxProps, 'children' | 'onChange'>>;\n\nexport const StyledCheckboxLabel = styled.label<StyledCheckboxLabelProps>`\n cursor: ${({ isDisabled }) => (isDisabled ? 'default' : 'pointer')};\n opacity: ${({ isDisabled }) => (isDisabled ? 0.5 : 1)};\n padding-left: ${({ shouldShowAsSwitch }) => (shouldShowAsSwitch ? '48px' : '20px')};\n transition: opacity 0.2s ease;\n user-select: none;\n\n &:after {\n ${({ isChecked, shouldShowAsSwitch }) =>\n shouldShowAsSwitch\n ? css`\n background-color: white;\n border-radius: 50%;\n box-shadow: 0 1px 4px rgb(0 0 0 / 35%);\n height: 16px;\n left: 7px;\n transform: translateY(-50%) translateX(${isChecked ? '18px' : 0});\n transition: transform 0.2s ease;\n width: 16px;\n `\n : css`\n border-right: 2px solid #fff;\n border-bottom: 2px solid #fff;\n height: 10px;\n left: 1px;\n opacity: ${isChecked ? 1 : 0};\n transform: translateY(-50%) rotateZ(37deg);\n transition: opacity 0.2s ease;\n width: 5.5px;\n `}\n\n content: ' ';\n position: absolute;\n top: 50%;\n transform-origin: 100% 100%;\n }\n\n &:before {\n background-color: ${({\n isChecked,\n shouldShowAsSwitch,\n theme,\n }: StyledCheckboxLabelProps) => {\n if (shouldShowAsSwitch) {\n return isChecked ? theme.green : theme.red;\n }\n\n return isChecked ? theme['408'] : theme['403'];\n }};\n border: 1px solid rgba(${({ theme }: StyledCheckboxLabelProps) => theme['409-rgb']}, 0.5);\n border-radius: ${({ shouldShowAsSwitch }) => (shouldShowAsSwitch ? '100px' : 0)};\n content: ' ';\n height: ${({ shouldShowAsSwitch }) => (shouldShowAsSwitch ? '13px' : '15px')};\n left: ${({ shouldShowAsSwitch }) => (shouldShowAsSwitch ? '10px' : 0)};\n position: absolute;\n top: 50%;\n transform: translateY(-50%);\n transition: background-color 0.2s ease;\n width: ${({ shouldShowAsSwitch }) => (shouldShowAsSwitch ? '28px' : '15px')};\n }\n`;\n"],"mappings":";;;;;;;AAAA;;;;;;;;;;AAIO,MAAMA,cAAc,GAAGC,yBAAA,CAAOC,GAAV,8IAApB;;;;AAMA,MAAMC,mBAAmB,GAAGF,yBAAA,CAAOG,KAAV,6FAAzB;;;;AAMA,MAAMC,mBAAmB,GAAGJ,yBAAA,CAAOK,KAAV,+rBAClB;EAAA,IAAC;IAAEC;EAAF,CAAD;EAAA,OAAqBA,UAAU,GAAG,SAAH,GAAe,SAA9C;AAAA,CADkB,EAEjB;EAAA,IAAC;IAAEA;EAAF,CAAD;EAAA,OAAqBA,UAAU,GAAG,GAAH,GAAS,CAAxC;AAAA,CAFiB,EAGZ;EAAA,IAAC;IAAEC;EAAF,CAAD;EAAA,OAA6BA,kBAAkB,GAAG,MAAH,GAAY,MAA3D;AAAA,CAHY,EAQtB;EAAA,IAAC;IAAEC,SAAF;IAAaD;EAAb,CAAD;EAAA,OACEA,kBAAkB,OACZE,qBADY,+dAOiCD,SAAS,GAAG,MAAH,GAAY,CAPtD,QAWZC,qBAXY,mdAgBGD,SAAS,GAAG,CAAH,GAAO,CAhBnB,CADpB;AAAA,CARsB,EAsCJ,SAIY;EAAA,IAJX;IACjBA,SADiB;IAEjBD,kBAFiB;IAGjBG;EAHiB,CAIW;;EAC5B,IAAIH,kBAAJ,EAAwB;IACpB,OAAOC,SAAS,GAAGE,KAAK,CAACC,KAAT,GAAiBD,KAAK,CAACE,GAAvC;EACH;;EAED,OAAOJ,SAAS,GAAGE,KAAK,CAAC,KAAD,CAAR,GAAkBA,KAAK,CAAC,KAAD,CAAvC;AACH,CAhDuB,EAiDC;EAAA,IAAC;IAAEA;EAAF,CAAD;EAAA,OAAyCA,KAAK,CAAC,SAAD,CAA9C;AAAA,CAjDD,EAkDP;EAAA,IAAC;IAAEH;EAAF,CAAD;EAAA,OAA6BA,kBAAkB,GAAG,OAAH,GAAa,CAA5D;AAAA,CAlDO,EAoDd;EAAA,IAAC;IAAEA;EAAF,CAAD;EAAA,OAA6BA,kBAAkB,GAAG,MAAH,GAAY,MAA3D;AAAA,CApDc,EAqDhB;EAAA,IAAC;IAAEA;EAAF,CAAD;EAAA,OAA6BA,kBAAkB,GAAG,MAAH,GAAY,CAA3D;AAAA,CArDgB,EA0Df;EAAA,IAAC;IAAEA;EAAF,CAAD;EAAA,OAA6BA,kBAAkB,GAAG,MAAH,GAAY,MAA3D;AAAA,CA1De,CAAzB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chayns-components/core",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.37",
|
|
4
4
|
"description": "A set of beautiful React components for developing your own applications with chayns.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chayns",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "1a1a9eedf7067405d4138fbec50b7031045f94d2"
|
|
66
66
|
}
|