@wireapp/react-ui-kit 9.0.11 → 9.1.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.
@@ -67,7 +67,7 @@ const StyledLabel = (_a) => {
67
67
  fill: theme.general.backgroundColor,
68
68
  }, [`.${Input_1.INPUT_CLASSNAME} + & > svg`]: Object.assign({ fill: 'none', position: 'absolute', top: '50%', transform: 'translateY(-50%)' }, (labelBeforeCheckbox
69
69
  ? {
70
- right: theme.fontSizes.small,
70
+ right: '11px',
71
71
  }
72
72
  : {
73
73
  left: '4px',
@@ -0,0 +1,16 @@
1
+ import { FC } from 'react';
2
+ import { CSSObject } from '@emotion/react';
3
+ import { TextProps } from '../Text';
4
+ type DataListOptions = {
5
+ value: number;
6
+ label: string;
7
+ heading?: string;
8
+ };
9
+ export interface IndicatorRangeInputProps<T = HTMLInputElement> extends TextProps<T> {
10
+ label?: string;
11
+ wrapperCSS?: CSSObject;
12
+ dataListOptions: DataListOptions[];
13
+ }
14
+ export declare const IndicatorRangeInput: FC<IndicatorRangeInputProps>;
15
+ export {};
16
+ //# sourceMappingURL=IndicatorRangeInput.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IndicatorRangeInput.d.ts","sourceRoot":"","sources":["../../src/Form/IndicatorRangeInput.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,EAAE,EAAsB,MAAM,OAAO,CAAC;AAE9C,OAAO,EAAC,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAMzC,OAAO,EAAC,SAAS,EAAC,MAAM,SAAS,CAAC;AAElC,KAAK,eAAe,GAAG;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,WAAW,wBAAwB,CAAC,CAAC,GAAG,gBAAgB,CAAE,SAAQ,SAAS,CAAC,CAAC,CAAC;IAClF,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,eAAe,EAAE,eAAe,EAAE,CAAC;CACpC;AAED,eAAO,MAAM,mBAAmB,EAAE,EAAE,CAAC,wBAAwB,CA6E5D,CAAC"}
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ var __rest = (this && this.__rest) || function (s, e) {
3
+ var t = {};
4
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
5
+ t[p] = s[p];
6
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
7
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
8
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
9
+ t[p[i]] = s[p[i]];
10
+ }
11
+ return t;
12
+ };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.IndicatorRangeInput = void 0;
15
+ const jsx_runtime_1 = require("@emotion/react/jsx-runtime");
16
+ /*
17
+ * Wire
18
+ * Copyright (C) 2022 Wire Swiss GmbH
19
+ *
20
+ * This program is free software: you can redistribute it and/or modify
21
+ * it under the terms of the GNU General Public License as published by
22
+ * the Free Software Foundation, either version 3 of the License, or
23
+ * (at your option) any later version.
24
+ *
25
+ * This program is distributed in the hope that it will be useful,
26
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
27
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28
+ * GNU General Public License for more details.
29
+ *
30
+ * You should have received a copy of the GNU General Public License
31
+ * along with this program. If not, see http://www.gnu.org/licenses/.
32
+ *
33
+ */
34
+ const react_1 = require("react");
35
+ const IndicatorRangeInput_styles_1 = require("./IndicatorRangeInput.styles");
36
+ const InputLabel_1 = require("./InputLabel");
37
+ exports.IndicatorRangeInput = (0, react_1.forwardRef)((_a, ref) => {
38
+ var { id = Math.random().toString(), label, min = '0', max = '100', value = '0', onChange, wrapperCSS, dataListOptions } = _a, inputProps = __rest(_a, ["id", "label", "min", "max", "value", "onChange", "wrapperCSS", "dataListOptions"]);
39
+ const minNum = Number(min);
40
+ const isCustomSlider = !!dataListOptions.length;
41
+ const listLength = dataListOptions.length - 1;
42
+ const valueNum = Number(value);
43
+ const maxNum = isCustomSlider ? Number(listLength) : Number(max);
44
+ const backgroundSize = (0, react_1.useMemo)(() => {
45
+ if (isCustomSlider && valueNum === 0) {
46
+ const firstOptionThumbPosition = `calc(((100% - 10px) / (${listLength} * 2) - 4px) / 2)`;
47
+ return `${firstOptionThumbPosition} 100%`;
48
+ }
49
+ return `${((valueNum - minNum) * 100) / (maxNum - minNum)}% 100%`;
50
+ }, [isCustomSlider, valueNum, minNum, maxNum, listLength]);
51
+ return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ css: { wrapperCSS, width: '100%' } }, { children: [label && (0, jsx_runtime_1.jsx)(InputLabel_1.InputLabel, Object.assign({ htmlFor: id }, { children: label })), (0, jsx_runtime_1.jsxs)("div", Object.assign({ css: IndicatorRangeInput_styles_1.containerStyles }, { children: [isCustomSlider && ((0, jsx_runtime_1.jsx)("div", Object.assign({ css: { position: 'relative', display: 'flex', marginBottom: '20px' } }, { children: dataListOptions.map(dataListOption => ((0, jsx_runtime_1.jsx)("div", Object.assign({ css: (theme) => (0, IndicatorRangeInput_styles_1.headingStyle)(listLength, theme) }, { children: dataListOption === null || dataListOption === void 0 ? void 0 : dataListOption.heading }), dataListOption.value))) }))), (0, jsx_runtime_1.jsx)("input", Object.assign({ ref: ref, css: (theme) => (0, IndicatorRangeInput_styles_1.rangeStyles)(backgroundSize, valueNum, listLength, isCustomSlider, theme), id: id, name: id, min: minNum, max: maxNum, value: value, onChange: onChange, type: "range", list: "tickMarks" }, inputProps)), isCustomSlider && ((0, jsx_runtime_1.jsx)("datalist", Object.assign({ id: "tickMarks", css: (theme) => (0, IndicatorRangeInput_styles_1.dataListOption)(listLength, theme) }, { children: dataListOptions.map((dataListOption, index) => ((0, jsx_runtime_1.jsx)("option", { value: dataListOption.value, label: dataListOption.label }, index))) })))] }))] })));
52
+ });
53
+ exports.IndicatorRangeInput.displayName = 'IndicatorRangeInput';
@@ -0,0 +1,7 @@
1
+ import { CSSObject } from '@emotion/react/dist/emotion-react.cjs';
2
+ import { Theme } from '../Layout';
3
+ export declare const rangeStyles: (backgroundSize: string, value: number, listLength: number, isCustomSlider: boolean, theme: Theme) => CSSObject;
4
+ export declare const headingStyle: (listLength: number, theme: Theme) => CSSObject;
5
+ export declare const dataListOption: (listLength: number, theme: Theme) => CSSObject;
6
+ export declare const containerStyles: CSSObject;
7
+ //# sourceMappingURL=IndicatorRangeInput.styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IndicatorRangeInput.styles.d.ts","sourceRoot":"","sources":["../../src/Form/IndicatorRangeInput.styles.ts"],"names":[],"mappings":"AAmBA,OAAO,EAAC,SAAS,EAAC,MAAM,uCAAuC,CAAC;AAEhE,OAAO,EAAC,KAAK,EAAC,MAAM,WAAW,CAAC;AAMhC,eAAO,MAAM,WAAW,mBACN,MAAM,SACf,MAAM,cACD,MAAM,kBACF,OAAO,SAChB,KAAK,KACX,SA8CF,CAAC;AAEF,eAAO,MAAM,YAAY,eAAgB,MAAM,SAAS,KAAK,KAAG,SAmB/D,CAAC;AAEF,eAAO,MAAM,cAAc,eAAgB,MAAM,SAAS,KAAK,KAAG,SA2CjE,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,SAI7B,CAAC"}
@@ -0,0 +1,99 @@
1
+ "use strict";
2
+ /*
3
+ * Wire
4
+ * Copyright (C) 2022 Wire Swiss GmbH
5
+ *
6
+ * This program is free software: you can redistribute it and/or modify
7
+ * it under the terms of the GNU General Public License as published by
8
+ * the Free Software Foundation, either version 3 of the License, or
9
+ * (at your option) any later version.
10
+ *
11
+ * This program is distributed in the hope that it will be useful,
12
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ * GNU General Public License for more details.
15
+ *
16
+ * You should have received a copy of the GNU General Public License
17
+ * along with this program. If not, see http://www.gnu.org/licenses/.
18
+ *
19
+ */
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ exports.containerStyles = exports.dataListOption = exports.headingStyle = exports.rangeStyles = void 0;
22
+ const util_1 = require("../util");
23
+ const thumbSelectors = ['&::-webkit-slider-thumb', '&::-moz-range-thumb', '&::-ms-thumb'];
24
+ const sliderSelectors = ['&::-webkit-slider-runnable-track', '&::-moz-range-track', '&::-ms-track'];
25
+ const rangeStyles = (backgroundSize, value, listLength, isCustomSlider, theme) => {
26
+ const firstOptionThumbPosition = `calc(((100% - 10px) / (${listLength} * 2) - 4px) / 2)`;
27
+ const lastOptionThumbPosition = `calc(((100% - 12px) / (${listLength} * 2) - 6px) / 2)`;
28
+ const isFirstOption = value === 0;
29
+ const isLastOption = value === listLength;
30
+ return Object.assign(Object.assign({ appearance: 'none', width: '100%', height: '8px', backgroundImage: `linear-gradient(${theme.general.primaryColor}, ${theme.general.primaryColor})`, backgroundColor: theme.Input.borderHover, backgroundSize: backgroundSize || '0% 100%', backgroundRepeat: 'no-repeat', display: 'flex', alignItems: 'center', borderRadius: '8px', marginBlock: '10px', zIndex: '1', position: 'relative' }, (0, util_1.manySelectors)(thumbSelectors, Object.assign(Object.assign({ '-webkit-appearance': 'none', height: '28px', width: '10px', borderRadius: '4px', background: theme.Button.primaryActiveBorder, cursor: 'pointer', border: 'none', boxShadow: '0px 2px 2px rgba(0, 0, 0, 0.25);', position: 'relative', top: '-9px', zIndex: '2' }, (isCustomSlider && isFirstOption && { left: firstOptionThumbPosition })), (isCustomSlider && isLastOption && { right: lastOptionThumbPosition })))), (0, util_1.manySelectors)(sliderSelectors, {
31
+ '-webkit-appearance': 'none',
32
+ boxShadow: 'none',
33
+ background: 'transparent',
34
+ height: '8px',
35
+ width: '100%',
36
+ }));
37
+ };
38
+ exports.rangeStyles = rangeStyles;
39
+ const headingStyle = (listLength, theme) => {
40
+ const optionWidth = `calc((100% - 12px) / ${listLength})`;
41
+ return {
42
+ color: theme.general.color,
43
+ fontSize: theme.fontSizes.medium,
44
+ fontWeight: '400',
45
+ lineHeight: '1.2em',
46
+ width: optionWidth,
47
+ textAlign: 'center',
48
+ '&:first-of-type': {
49
+ width: `calc((100% - 10px) / (${listLength} * 2) + (10px / 2))`,
50
+ },
51
+ '&:last-of-type': {
52
+ width: `calc((100% - 12px) / (${listLength} * 2) + 6px)`,
53
+ },
54
+ };
55
+ };
56
+ exports.headingStyle = headingStyle;
57
+ const dataListOption = (listLength, theme) => {
58
+ const optionWidth = `calc((100% - 12px) / ${listLength})`;
59
+ return {
60
+ color: theme.Input.labelColor,
61
+ fontSize: '12px',
62
+ fontWeight: '400',
63
+ lineHeight: '1.2em',
64
+ boxSizing: 'border-box',
65
+ display: 'flex',
66
+ justifyContent: 'space-between',
67
+ marginTop: '20px',
68
+ position: 'relative',
69
+ zIndex: '0',
70
+ option: {
71
+ display: 'inline-block',
72
+ width: optionWidth,
73
+ textAlign: 'center',
74
+ padding: '0',
75
+ position: 'relative',
76
+ '&:first-of-type': {
77
+ width: `calc((100% - 10px) / (${listLength} * 2) + (10px / 2))`,
78
+ },
79
+ '&:last-of-type': {
80
+ width: `calc((100% - 12px) / (${listLength} * 2) + 6px)`,
81
+ },
82
+ '&::before': {
83
+ content: '""',
84
+ position: 'absolute',
85
+ borderLeft: `2px solid ${theme.Select.borderColor}`,
86
+ width: '2px',
87
+ height: '27px',
88
+ top: '-37px',
89
+ left: '50%',
90
+ },
91
+ },
92
+ };
93
+ };
94
+ exports.dataListOption = dataListOption;
95
+ exports.containerStyles = {
96
+ width: '100%',
97
+ position: 'relative',
98
+ marginTop: '20px',
99
+ };
@@ -5,6 +5,7 @@ export * from './CodeInput';
5
5
  export * from './DropFileInput';
6
6
  export * from './ErrorMessage';
7
7
  export * from './Form';
8
+ export * from './IndicatorRangeInput';
8
9
  export * from './Input';
9
10
  export * from './InputBlock';
10
11
  export * from './InputSubmitCombo';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Form/index.ts"],"names":[],"mappings":"AAmBA,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Form/index.ts"],"names":[],"mappings":"AAmBA,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,uBAAuB,CAAC;AACtC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC"}
package/lib/Form/index.js CHANGED
@@ -39,6 +39,7 @@ __exportStar(require("./CodeInput"), exports);
39
39
  __exportStar(require("./DropFileInput"), exports);
40
40
  __exportStar(require("./ErrorMessage"), exports);
41
41
  __exportStar(require("./Form"), exports);
42
+ __exportStar(require("./IndicatorRangeInput"), exports);
42
43
  __exportStar(require("./Input"), exports);
43
44
  __exportStar(require("./InputBlock"), exports);
44
45
  __exportStar(require("./InputSubmitCombo"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../src/Layout/Container.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,EAAE,EAAc,SAAS,EAAC,MAAM,OAAO,CAAC;AAQhD,MAAM,WAAW,cAAe,SAAQ,SAAS,CAAC,cAAc,CAAC;IAC/D,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,KAAK,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;CACb;AA4BD,eAAO,MAAM,SAAS,EAAE,EAAE,CAAC,cAAc,CAExC,CAAC;AAGF,MAAM,MAAM,mBAAmB,GAAG,IAAI,CAAC,cAAc,EAAE,OAAO,CAAC,CAAC;AAEhE,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,cAAc,CAE1C,CAAC"}
1
+ {"version":3,"file":"Container.d.ts","sourceRoot":"","sources":["../../src/Layout/Container.tsx"],"names":[],"mappings":"AAmBA,OAAO,EAAC,EAAE,EAAc,SAAS,EAAC,MAAM,OAAO,CAAC;AAQhD,MAAM,WAAW,cAAe,SAAQ,SAAS,CAAC,cAAc,CAAC;IAC/D,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,KAAK,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,GAAG,EAAE,MAAM,CAAC;CACb;AA4BD,eAAO,MAAM,SAAS,EAAE,EAAE,CAAC,cAAc,CAIxC,CAAC;AAGF,MAAM,MAAM,mBAAmB,GAAG,IAAI,CAAC,cAAc,EAAE,OAAO,CAAC,CAAC;AAEhE,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,cAAc,CAEzC,CAAC;AAGH,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,cAAc,CAE1C,CAAC"}
@@ -54,11 +54,10 @@ const containerStyle = ({ centerText = false, level = undefined, verticalCenter
54
54
  width: `${sizes_1.WIDTH.DESKTOP_MIN - sizes_1.GUTTER * 2}px`,
55
55
  },
56
56
  });
57
- const Container = (_a, ref) => {
57
+ exports.Container = (0, react_1.forwardRef)((_a, ref) => {
58
58
  var { centerText, level, verticalCenter } = _a, props = __rest(_a, ["centerText", "level", "verticalCenter"]);
59
59
  return ((0, jsx_runtime_1.jsx)("div", Object.assign({ ref: ref, css: containerStyle({ centerText, level, verticalCenter }) }, props)));
60
- };
61
- exports.Container = Container;
60
+ });
62
61
  exports.Container.displayName = 'Container';
63
62
  exports.ContainerLG = (0, react_1.forwardRef)((props, ref) => ((0, jsx_runtime_1.jsx)(exports.Container, Object.assign({ ref: ref, level: 'lg' }, props))));
64
63
  exports.ContainerLG.displayName = 'ContainerLG';
@@ -15,23 +15,23 @@ export interface Theme extends ETheme {
15
15
  extraLarge: string;
16
16
  };
17
17
  Button?: {
18
- primaryBg: String;
19
- primaryHoverBg: String;
20
- primaryActiveBg: String;
21
- primaryActiveBorder: String;
22
- primaryFocusBorder: String;
23
- primaryDisabledBg: String;
24
- primaryDisabledText: String;
25
- secondaryActiveBg: String;
26
- secondaryActiveBorder: String;
27
- secondaryHoverBorder: String;
28
- tertiaryBg: String;
29
- tertiaryBorder: String;
30
- tertiaryHoverBg: String;
31
- tertiaryHoverBorder: String;
32
- tertiarydisabledBg: String;
33
- tertiaryDisabledBorder: String;
34
- tertiaryActiveBg: String;
18
+ primaryBg: string;
19
+ primaryHoverBg: string;
20
+ primaryActiveBg: string;
21
+ primaryActiveBorder: string;
22
+ primaryFocusBorder: string;
23
+ primaryDisabledBg: string;
24
+ primaryDisabledText: string;
25
+ secondaryActiveBg: string;
26
+ secondaryActiveBorder: string;
27
+ secondaryHoverBorder: string;
28
+ tertiaryBg: string;
29
+ tertiaryBorder: string;
30
+ tertiaryHoverBg: string;
31
+ tertiaryHoverBorder: string;
32
+ tertiarydisabledBg: string;
33
+ tertiaryDisabledBorder: string;
34
+ tertiaryActiveBg: string;
35
35
  };
36
36
  IconButton: {
37
37
  activePrimaryBgColor: string;
@@ -57,9 +57,9 @@ export interface Theme extends ETheme {
57
57
  general: {
58
58
  backgroundColor: string;
59
59
  color: string;
60
- contrastColor: String;
60
+ contrastColor: string;
61
61
  dangerColor: string;
62
- focusColor: String;
62
+ focusColor: string;
63
63
  primaryColor: string;
64
64
  };
65
65
  Input: {
@@ -75,7 +75,7 @@ export interface Theme extends ETheme {
75
75
  borderColor: string;
76
76
  focusedDescriptionColor: string;
77
77
  optionHoverBg: string;
78
- selectedActiveBg: String;
78
+ selectedActiveBg: string;
79
79
  };
80
80
  }
81
81
  export declare const themes: {
package/package.json CHANGED
@@ -69,6 +69,6 @@
69
69
  "test:watch": "jest --watch",
70
70
  "test:update": "jest --updateSnapshot"
71
71
  },
72
- "version": "9.0.11",
73
- "gitHead": "059508a4d9dbfa8ef710818815ac19f91d5bd3c6"
72
+ "version": "9.1.0",
73
+ "gitHead": "c250d52774d731b64e6a8bf13597591dbe9a6299"
74
74
  }