@bodynarf/react.components 1.7.95 → 1.7.97
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/components/accordion/component/index.d.ts +0 -1
- package/components/accordion/component/index.d.ts.map +1 -1
- package/components/accordion/component/index.js +5 -5
- package/components/anchor/types.d.ts +1 -11
- package/components/anchor/types.d.ts.map +1 -1
- package/components/button/types.d.ts +2 -1
- package/components/button/types.d.ts.map +1 -1
- package/components/dropdown/component/index.d.ts +1 -0
- package/components/dropdown/component/index.d.ts.map +1 -1
- package/components/dropdown/components/compact/index.d.ts +1 -0
- package/components/dropdown/components/compact/index.d.ts.map +1 -1
- package/components/dropdown/components/compact/index.js +4 -4
- package/components/dropdown/components/withLabel/index.d.ts +1 -0
- package/components/dropdown/components/withLabel/index.d.ts.map +1 -1
- package/components/dropdown/components/withLabel/index.js +3 -3
- package/components/paginator/component/index.d.ts +1 -1
- package/components/paginator/component/index.d.ts.map +1 -1
- package/components/paginator/component/index.js +2 -2
- package/components/primitives/checkbox/component/index.d.ts +1 -1
- package/components/primitives/checkbox/component/index.d.ts.map +1 -1
- package/components/primitives/checkbox/component/index.js +7 -7
- package/components/primitives/checkbox/types.d.ts +1 -1
- package/components/primitives/checkbox/types.d.ts.map +1 -1
- package/components/primitives/color/components/withLabel/index.d.ts +1 -1
- package/components/primitives/color/components/withLabel/index.d.ts.map +1 -1
- package/components/primitives/color/components/withLabel/index.js +6 -5
- package/components/primitives/color/components/withoutLabel/index.d.ts +1 -1
- package/components/primitives/color/components/withoutLabel/index.d.ts.map +1 -1
- package/components/primitives/color/components/withoutLabel/index.js +6 -5
- package/components/primitives/color/types.d.ts +3 -15
- package/components/primitives/color/types.d.ts.map +1 -1
- package/components/primitives/date/component/index.js +3 -3
- package/components/primitives/multiline/component/index.d.ts +0 -1
- package/components/primitives/multiline/component/index.d.ts.map +1 -1
- package/components/primitives/multiline/components/multilineWithLabel/index.d.ts +1 -2
- package/components/primitives/multiline/components/multilineWithLabel/index.d.ts.map +1 -1
- package/components/primitives/multiline/components/multilineWithLabel/index.js +3 -4
- package/components/primitives/multiline/components/multilineWithoutLabel/index.d.ts +1 -2
- package/components/primitives/multiline/components/multilineWithoutLabel/index.d.ts.map +1 -1
- package/components/primitives/multiline/components/multilineWithoutLabel/index.js +3 -4
- package/components/primitives/multiline/types.d.ts +1 -1
- package/components/primitives/multiline/types.d.ts.map +1 -1
- package/components/primitives/number/components/withLabel/index.js +5 -5
- package/components/primitives/number/components/withoutLabel/index.js +4 -4
- package/components/primitives/password/components/withLabel/index.d.ts +1 -0
- package/components/primitives/password/components/withLabel/index.d.ts.map +1 -1
- package/components/primitives/password/components/withoutLabel/index.d.ts +1 -0
- package/components/primitives/password/components/withoutLabel/index.d.ts.map +1 -1
- package/components/primitives/text/components/textWithLabel/index.d.ts +1 -0
- package/components/primitives/text/components/textWithLabel/index.d.ts.map +1 -1
- package/components/primitives/text/components/textWithoutLabel/index.d.ts +1 -0
- package/components/primitives/text/components/textWithoutLabel/index.d.ts.map +1 -1
- package/components/tabs/component/index.d.ts +1 -0
- package/components/tabs/component/index.d.ts.map +1 -1
- package/components/tabs/component/index.js +4 -4
- package/components/tag/component/index.d.ts +1 -0
- package/components/tag/component/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/accordion/component/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/accordion/component/index.tsx"],"names":[],"mappings":"AAIA,OAAO,cAAc,CAAC;AAOtB,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,sBAAsB;AACtB,QAAA,MAAM,SAAS,2FAMZ,cAAc,KAAG,WA8DnB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -6,13 +6,13 @@ import { ElementSize } from "../..";
|
|
|
6
6
|
import Icon from "../../icon";
|
|
7
7
|
import { mapDataAttributes } from "../../../utils";
|
|
8
8
|
/** Accordion panel */
|
|
9
|
-
const Accordion = ({ children, caption, style, size, defaultExpanded, onToggle, className, data, title, }) => {
|
|
9
|
+
const Accordion = ({ children, caption, style, size = ElementSize.Normal, defaultExpanded = false, onToggle, className, data, title, }) => {
|
|
10
10
|
const expandablePanelRef = useRef(null);
|
|
11
|
-
const [isExpanded, setIsExpanded] = useState(defaultExpanded
|
|
12
|
-
const [maxHeight, setMaxHeight] = useState(defaultExpanded
|
|
11
|
+
const [isExpanded, setIsExpanded] = useState(defaultExpanded);
|
|
12
|
+
const [maxHeight, setMaxHeight] = useState(defaultExpanded ? undefined : 0);
|
|
13
13
|
const toggleCollapse = useCallback(() => setMaxHeight(isExpanded ? 0 : expandablePanelRef.current.scrollHeight), [isExpanded]);
|
|
14
14
|
useEffect(() => {
|
|
15
|
-
if (defaultExpanded
|
|
15
|
+
if (defaultExpanded && !isNullOrUndefined(expandablePanelRef.current)) {
|
|
16
16
|
setMaxHeight(expandablePanelRef.current.scrollHeight);
|
|
17
17
|
}
|
|
18
18
|
}, [defaultExpanded]);
|
|
@@ -30,6 +30,6 @@ const Accordion = ({ children, caption, style, size, defaultExpanded, onToggle,
|
|
|
30
30
|
const dataAttributes = isNullOrUndefined(data)
|
|
31
31
|
? undefined
|
|
32
32
|
: mapDataAttributes(data);
|
|
33
|
-
return (_jsxs("article", { className: elClassName, "aria-expanded": isExpanded, ...dataAttributes, children: [_jsxs("div", { className: "message-header is-unselectable", onClick: toggleCollapse, children: [_jsx("span", { title: title, children: caption }), _jsx(Icon, { name: "arrow-down", size: size
|
|
33
|
+
return (_jsxs("article", { className: elClassName, "aria-expanded": isExpanded, ...dataAttributes, children: [_jsxs("div", { className: "message-header is-unselectable", onClick: toggleCollapse, children: [_jsx("span", { title: title, children: caption }), _jsx(Icon, { name: "arrow-down", size: size })] }), _jsx("div", { className: "message-body", ref: expandablePanelRef, style: { maxHeight: `${maxHeight}px` }, children: _jsx("div", { className: "message-body__content", children: children }) })] }));
|
|
34
34
|
};
|
|
35
35
|
export default Accordion;
|
|
@@ -1,18 +1,8 @@
|
|
|
1
1
|
import { ElementIcon } from "..";
|
|
2
2
|
/** Anchor component props type */
|
|
3
|
-
export interface AnchorProps {
|
|
4
|
-
/** Link destination */
|
|
5
|
-
href?: string;
|
|
6
|
-
/** Link caption */
|
|
7
|
-
caption?: string;
|
|
8
|
-
/** Click handler */
|
|
9
|
-
onClick?: () => void;
|
|
3
|
+
export interface AnchorProps extends Omit<SimpleAnchorProps, "className"> {
|
|
10
4
|
/** Configuration od inner icon */
|
|
11
5
|
icon?: ElementIcon;
|
|
12
|
-
/** Title of anchor */
|
|
13
|
-
title?: string;
|
|
14
|
-
/** Where to open the linked document */
|
|
15
|
-
target?: "_blank" | "_top";
|
|
16
6
|
/** Additional class names */
|
|
17
7
|
className?: string;
|
|
18
8
|
/** Should css hovering effects be disabled */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/anchor/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,kCAAkC;AAClC,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/anchor/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,kCAAkC;AAClC,MAAM,WAAW,WAAY,SAAQ,IAAI,CAAC,iBAAiB,EAAE,WAAW,CAAC;IACrE,kCAAkC;IAClC,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB,6BAA6B;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,8CAA8C;IAC9C,eAAe,CAAC,EAAE,OAAO,CAAC;CAC7B;AAED,MAAM,WAAW,iBAAiB;IAC9B,uBAAuB;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,kBAAkB;IAClB,SAAS,EAAE,MAAM,CAAC;IAElB,oBAAoB;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAErB,oBAAoB;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,sBAAsB;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,wCAAwC;IACxC,MAAM,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAC;CAC9B;AAED,MAAM,WAAW,mBAAoB,SAAQ,iBAAiB;IAC1D,4BAA4B;IAC5B,IAAI,EAAE,WAAW,CAAC;CACrB"}
|
|
@@ -24,7 +24,8 @@ export interface ButtonProps extends BaseElementProps {
|
|
|
24
24
|
onClick?: () => void;
|
|
25
25
|
}
|
|
26
26
|
/** Button types according to Bulma framework */
|
|
27
|
-
export declare type ButtonType =
|
|
27
|
+
export declare type ButtonType = // TODO: to enum
|
|
28
|
+
"default" /** color: transparent */ | "primary" /** color: sea-wave green */ | "link" /** color: blue-violet */ | "info" /** color: sky-blue */ | "success" /** color: green */ | "warning" /** color: yellow */ | "danger" /** color: red */ | "white" /** color: white */ | "light" /** color: light-gray */ | "dark" /** color: dark-gray */ | "black" /** color: black */ | "text" /** Underline text with color: gray */ | "ghost" /** Blue underline text with color: transparent */;
|
|
28
29
|
/** Simple button props type */
|
|
29
30
|
export interface SimpleButtonProps extends Omit<ButtonProps, 'className'> {
|
|
30
31
|
/** Button class name*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/button/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE7E,MAAM,WAAW,WAAY,SAAQ,gBAAgB;IACjD,6BAA6B;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,8BAA8B;IAC9B,IAAI,EAAE,UAAU,CAAC;IAEjB,kCAAkC;IAClC,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB,mBAAmB;IACnB,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB,6CAA6C;IAC7C,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,wCAAwC;IACxC,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,2BAA2B;IAC3B,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,gCAAgC;IAChC,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB,2BAA2B;IAC3B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,gDAAgD;AAChD,oBAAY,UAAU,GAClB,SAAS,CAAC,yBAAyB,GACjC,SAAS,CAAC,4BAA4B,GACtC,MAAM,CAAC,yBAAyB,GAChC,MAAM,CAAC,sBAAsB,GAC7B,SAAS,CAAC,mBAAmB,GAC7B,SAAS,CAAC,oBAAoB,GAC9B,QAAQ,CAAC,iBAAiB,GAC1B,OAAO,CAAC,mBAAmB,GAC3B,OAAO,CAAC,wBAAwB,GAChC,MAAM,CAAC,uBAAuB,GAC9B,OAAO,CAAC,mBAAmB,GAC3B,MAAM,CAAC,sCAAsC,GAC7C,OAAO,CAAC,kDAAkD,CAC3D;AAEL,+BAA+B;AAC/B,MAAM,WAAW,iBAAkB,SAAQ,IAAI,CAAC,WAAW,EAAE,WAAW,CAAC;IACrE,uBAAuB;IACvB,SAAS,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,mBAAoB,SAAQ,iBAAiB;IAC1D,yBAAyB;IACzB,IAAI,EAAE,WAAW,CAAC;CACrB"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/button/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE7E,MAAM,WAAW,WAAY,SAAQ,gBAAgB;IACjD,6BAA6B;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB,8BAA8B;IAC9B,IAAI,EAAE,UAAU,CAAC;IAEjB,kCAAkC;IAClC,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB,mBAAmB;IACnB,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB,6CAA6C;IAC7C,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,wCAAwC;IACxC,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,2BAA2B;IAC3B,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB,gCAAgC;IAChC,MAAM,CAAC,EAAE,OAAO,CAAC;IAEjB,2BAA2B;IAC3B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACxB;AAED,gDAAgD;AAChD,oBAAY,UAAU,GAClB,AADqB,gBAAgB;AACrC,SAAS,CAAC,yBAAyB,GACjC,SAAS,CAAC,4BAA4B,GACtC,MAAM,CAAC,yBAAyB,GAChC,MAAM,CAAC,sBAAsB,GAC7B,SAAS,CAAC,mBAAmB,GAC7B,SAAS,CAAC,oBAAoB,GAC9B,QAAQ,CAAC,iBAAiB,GAC1B,OAAO,CAAC,mBAAmB,GAC3B,OAAO,CAAC,wBAAwB,GAChC,MAAM,CAAC,uBAAuB,GAC9B,OAAO,CAAC,mBAAmB,GAC3B,MAAM,CAAC,sCAAsC,GAC7C,OAAO,CAAC,kDAAkD,CAC3D;AAEL,+BAA+B;AAC/B,MAAM,WAAW,iBAAkB,SAAQ,IAAI,CAAC,WAAW,EAAE,WAAW,CAAC;IACrE,uBAAuB;IACvB,SAAS,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,mBAAoB,SAAQ,iBAAiB;IAC1D,yBAAyB;IACzB,IAAI,EAAE,WAAW,CAAC;CACrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/dropdown/component/index.tsx"],"names":[],"mappings":"AAEA,OAAO,cAAc,CAAC;AAKtB,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,yBAAyB;AACzB,QAAA,MAAM,QAAQ,UAAW,aAAa,KAAG,WAMxC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/dropdown/component/index.tsx"],"names":[],"mappings":";AAEA,OAAO,cAAc,CAAC;AAKtB,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,yBAAyB;AACzB,QAAA,MAAM,QAAQ,UAAW,aAAa,KAAG,WAMxC,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { DropdownProps } from "../../../dropdown";
|
|
2
3
|
declare const DropdownCompact: ({ items, value, onSelect, deselectable, className, hideOnOuterClick, listMaxHeight, placeholder, compact, disabled, validationState, }: DropdownProps) => JSX.Element;
|
|
3
4
|
export default DropdownCompact;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/dropdown/components/compact/index.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAIzD,QAAA,MAAM,eAAe,2IAOlB,aAAa,KAAG,WA8GlB,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/dropdown/components/compact/index.tsx"],"names":[],"mappings":";AAOA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAIzD,QAAA,MAAM,eAAe,2IAOlB,aAAa,KAAG,WA8GlB,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -5,11 +5,11 @@ import { getValidationValues } from "../../../../utils";
|
|
|
5
5
|
import { useComponentOutsideClick } from "../../../../hooks";
|
|
6
6
|
import DropdownItem from "../../../dropdown/components/item";
|
|
7
7
|
import DropdownLabel from "../../../dropdown/components/label";
|
|
8
|
-
const DropdownCompact = ({ items, value, onSelect, deselectable, className, hideOnOuterClick, listMaxHeight, placeholder, compact = false, disabled = false, validationState, }) => {
|
|
8
|
+
const DropdownCompact = ({ items, value, onSelect, deselectable = false, className, hideOnOuterClick, listMaxHeight, placeholder, compact = false, disabled = false, validationState, }) => {
|
|
9
9
|
const id = useId();
|
|
10
10
|
const [isListVisible, setListVisible] = useState(false);
|
|
11
11
|
const onItemClick = useCallback((event) => {
|
|
12
|
-
if (disabled
|
|
12
|
+
if (disabled) {
|
|
13
13
|
return;
|
|
14
14
|
}
|
|
15
15
|
const target = event.target;
|
|
@@ -32,7 +32,7 @@ const DropdownCompact = ({ items, value, onSelect, deselectable, className, hide
|
|
|
32
32
|
setListVisible(false);
|
|
33
33
|
}, [setListVisible, value, items, onSelect, disabled]);
|
|
34
34
|
const onLabelClick = useCallback((event) => {
|
|
35
|
-
if (disabled
|
|
35
|
+
if (disabled) {
|
|
36
36
|
return;
|
|
37
37
|
}
|
|
38
38
|
const target = event.target;
|
|
@@ -57,7 +57,7 @@ const DropdownCompact = ({ items, value, onSelect, deselectable, className, hide
|
|
|
57
57
|
className,
|
|
58
58
|
"dropdown",
|
|
59
59
|
]);
|
|
60
|
-
return (_jsxs(_Fragment, { children: [_jsxs("div", { className: classNames, "data-dropdown-id": id, children: [_jsx(DropdownLabel, { selectedItem: value, caption: placeholder, onClick: onLabelClick, className: styleClassName, deselectable: deselectable
|
|
60
|
+
return (_jsxs(_Fragment, { children: [_jsxs("div", { className: classNames, "data-dropdown-id": id, children: [_jsx(DropdownLabel, { selectedItem: value, caption: placeholder, onClick: onLabelClick, className: styleClassName, deselectable: deselectable }), _jsx("div", { className: "dropdown-menu", children: items.length > 0
|
|
61
61
|
? _jsx("ul", { className: "dropdown-content", style: { maxHeight: listMaxHeight }, children: items.map(item => _jsx(DropdownItem, { item: item, onClick: onItemClick, selected: value?.value === item.value }, item.id)) })
|
|
62
62
|
: _jsx("span", { className: "dropdown-content dropdown-item", children: "No items found" }) })] }, id), isValidationDefined && validationMessages.length > 0 &&
|
|
63
63
|
_jsx("p", { className: `help m-help ${styleClassName}`, children: validationMessages.join("\n") })] }));
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { DropdownProps } from "../../../dropdown";
|
|
2
3
|
declare const DropdownWithLabel: ({ items, value, onSelect, validationState, deselectable, className, hideOnOuterClick, listMaxHeight, label, placeholder, disabled, }: DropdownProps) => JSX.Element;
|
|
3
4
|
export default DropdownWithLabel;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/dropdown/components/withLabel/index.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAIzD,QAAA,MAAM,iBAAiB,yIAOpB,aAAa,KAAG,WAoLlB,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/dropdown/components/withLabel/index.tsx"],"names":[],"mappings":";AAOA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAIzD,QAAA,MAAM,iBAAiB,yIAOpB,aAAa,KAAG,WAoLlB,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -5,7 +5,7 @@ import { getValidationValues } from "../../../../utils";
|
|
|
5
5
|
import { useComponentOutsideClick } from "../../../../hooks";
|
|
6
6
|
import DropdownItem from "../../../dropdown/components/item";
|
|
7
7
|
import DropdownLabel from "../../../dropdown/components/label";
|
|
8
|
-
const DropdownWithLabel = ({ items, value, onSelect, validationState, deselectable, className, hideOnOuterClick, listMaxHeight, label, placeholder, disabled = false, }) => {
|
|
8
|
+
const DropdownWithLabel = ({ items, value, onSelect, validationState, deselectable = false, className, hideOnOuterClick, listMaxHeight, label, placeholder, disabled = false, }) => {
|
|
9
9
|
const id = useId();
|
|
10
10
|
const [isListVisible, setListVisible] = useState(false);
|
|
11
11
|
const [isValidationDefined, styleClassName, validationMessages] = getValidationValues(undefined, validationState);
|
|
@@ -70,12 +70,12 @@ const DropdownWithLabel = ({ items, value, onSelect, validationState, deselectab
|
|
|
70
70
|
"field-body",
|
|
71
71
|
label.horizontalFieldContainerClassName
|
|
72
72
|
]);
|
|
73
|
-
return (_jsxs("div", { className: "bbr-dropdown__root-container--with-label bbr-input field is-horizontal", children: [_jsx("div", { className: labelContainerClassName, children: _jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }) }), _jsx("div", { className: fieldContainerClassName, children: _jsxs("div", { className: "field", children: [_jsxs("div", { className: classNames, "data-dropdown-id": id, children: [_jsx(DropdownLabel, { className: styleClassName, caption: placeholder, deselectable: deselectable
|
|
73
|
+
return (_jsxs("div", { className: "bbr-dropdown__root-container--with-label bbr-input field is-horizontal", children: [_jsx("div", { className: labelContainerClassName, children: _jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }) }), _jsx("div", { className: fieldContainerClassName, children: _jsxs("div", { className: "field", children: [_jsxs("div", { className: classNames, "data-dropdown-id": id, children: [_jsx(DropdownLabel, { className: styleClassName, caption: placeholder, deselectable: deselectable, selectedItem: value, onClick: onLabelClick }), _jsx("div", { className: "dropdown-menu", children: items.length > 0
|
|
74
74
|
? _jsx("ul", { className: "dropdown-content", style: { maxHeight: listMaxHeight }, children: items.map(item => _jsx(DropdownItem, { item: item, selected: value?.value === item.value, onClick: onItemClick }, item.id)) })
|
|
75
75
|
: _jsx("span", { className: "dropdown-content dropdown-item", children: "No items found" }) })] }, id), isValidationDefined && validationMessages.length > 0 &&
|
|
76
76
|
_jsx("p", { className: `help m-help ${styleClassName}`, children: validationMessages.join("\n") })] }) })] }));
|
|
77
77
|
}
|
|
78
|
-
return (_jsxs("div", { className: "field", children: [_jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }), _jsxs("div", { className: classNames, "data-dropdown-id": id, children: [_jsx(DropdownLabel, { className: styleClassName, caption: placeholder, deselectable: deselectable
|
|
78
|
+
return (_jsxs("div", { className: "field", children: [_jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }), _jsxs("div", { className: classNames, "data-dropdown-id": id, children: [_jsx(DropdownLabel, { className: styleClassName, caption: placeholder, deselectable: deselectable, selectedItem: value, onClick: onLabelClick }), _jsx("div", { className: "dropdown-menu", children: items.length > 0
|
|
79
79
|
? _jsx("ul", { className: "dropdown-content", style: { maxHeight: listMaxHeight }, children: items.map(item => _jsx(DropdownItem, { item: item, selected: value?.value === item.value, onClick: onItemClick }, item.id)) })
|
|
80
80
|
: _jsx("span", { className: "dropdown-content dropdown-item", children: "No items found" }) })] }, id), isValidationDefined && validationMessages.length > 0 &&
|
|
81
81
|
_jsx("p", { className: `help m-help ${styleClassName}`, children: validationMessages.join("\n") })] }));
|
|
@@ -4,5 +4,5 @@ import { PaginatorProps } from "../../paginator";
|
|
|
4
4
|
* Paginator component.
|
|
5
5
|
* Used for visualization of paging configuration
|
|
6
6
|
*/
|
|
7
|
-
export default function Paginator({ count, onPageChange, currentPage, position,
|
|
7
|
+
export default function Paginator({ count, onPageChange, currentPage, position, size, className, rounded, showNextButtons, nearPagesCount }: PaginatorProps): JSX.Element;
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/paginator/component/index.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAuB,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAEhF;;;EAGE;AACF,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAC9B,KAAK,EAAE,YAAY,EAAE,WAAW,EAChC,QAAQ,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/paginator/component/index.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAuB,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAEhF;;;EAGE;AACF,MAAM,CAAC,OAAO,UAAU,SAAS,CAAC,EAC9B,KAAK,EAAE,YAAY,EAAE,WAAW,EAChC,QAAQ,EACR,IAAI,EAAE,SAAS,EACf,OAAe,EAAE,eAAuB,EACxC,cAAc,EACjB,EAAE,cAAc,GAAG,GAAG,CAAC,OAAO,CA4G9B"}
|
|
@@ -6,7 +6,7 @@ import { generatePageNumbers } from "../../paginator";
|
|
|
6
6
|
* Paginator component.
|
|
7
7
|
* Used for visualization of paging configuration
|
|
8
8
|
*/
|
|
9
|
-
export default function Paginator({ count, onPageChange, currentPage, position, rounded = false,
|
|
9
|
+
export default function Paginator({ count, onPageChange, currentPage, position, size, className, rounded = false, showNextButtons = false, nearPagesCount }) {
|
|
10
10
|
const page = currentPage || 0;
|
|
11
11
|
const pageChange = useCallback((event) => {
|
|
12
12
|
const target = event.target;
|
|
@@ -33,7 +33,7 @@ export default function Paginator({ count, onPageChange, currentPage, position,
|
|
|
33
33
|
isNullOrEmpty(size) ? "" : `is-${size}`,
|
|
34
34
|
className
|
|
35
35
|
]);
|
|
36
|
-
return (_jsxs("nav", { className: classNames, role: "navigation", "aria-label": "pagination", children: [showNextButtons
|
|
36
|
+
return (_jsxs("nav", { className: classNames, role: "navigation", "aria-label": "pagination", children: [showNextButtons &&
|
|
37
37
|
_jsxs(_Fragment, { children: [_jsx("a", { className: `pagination-previous${canGoBack ? "" : " is-disabled"}`, "data-page": page - 1, onClick: pageChange, children: "Previous" }), _jsx("a", { className: `pagination-next${canGoForward ? "" : " is-disabled"}`, "data-page": page + 1, onClick: pageChange, children: "Next page" })] }), _jsxs("ul", { className: "pagination-list", children: [page !== 1 && !pageNumbers.includes(1) &&
|
|
38
38
|
_jsxs(_Fragment, { children: [_jsx("li", { children: _jsx("a", { className: "pagination-link", "aria-label": "Goto page 1", "data-page": 1, onClick: pageChange, children: "1" }) }), _jsx("li", { children: _jsx("span", { className: "pagination-ellipsis", children: "\u2026" }) })] }), pageNumbers.map(x => _jsx("li", { children: _jsx("a", { className: `pagination-link${page === x ? " is-current" : ""}`, "aria-label": `Goto page ${x}`, "data-page": x, onClick: pageChange, children: x }) }, x)), page != count && !pageNumbers.includes(count) &&
|
|
39
39
|
_jsxs(_Fragment, { children: [_jsx("li", { children: _jsx("span", { className: "pagination-ellipsis", children: "\u2026" }) }), _jsx("li", { children: _jsx("a", { className: "pagination-link", "aria-label": `Goto page ${count}`, "data-page": count, onClick: pageChange, children: count }) })] })] })] }));
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
import "./style.scss";
|
|
3
3
|
import { CheckBoxProps } from "../../checkbox";
|
|
4
4
|
/** Boolean input component */
|
|
5
|
-
declare const CheckBox: ({ label, onValueChange, defaultValue, name, disabled,
|
|
5
|
+
declare const CheckBox: ({ label, onValueChange, defaultValue, name, disabled, size, style, rounded, block, withoutBorder, hasBackgroundColor, fixBackgroundColor, isFormLabel, }: CheckBoxProps) => JSX.Element;
|
|
6
6
|
export default CheckBox;
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/primitives/checkbox/component/index.tsx"],"names":[],"mappings":";AAIA,OAAO,cAAc,CAAC;AAEtB,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,8BAA8B;AAC9B,QAAA,MAAM,QAAQ,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/primitives/checkbox/component/index.tsx"],"names":[],"mappings":";AAIA,OAAO,cAAc,CAAC;AAEtB,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,8BAA8B;AAC9B,QAAA,MAAM,QAAQ,6JAOX,aAAa,KAAG,WAoFlB,CAAC;AAEF,eAAe,QAAQ,CAAC"}
|
|
@@ -3,21 +3,21 @@ import { useCallback } from "react";
|
|
|
3
3
|
import { generateGuid, getClassName, isNullOrUndefined } from "@bodynarf/utils";
|
|
4
4
|
import "./style.scss";
|
|
5
5
|
/** Boolean input component */
|
|
6
|
-
const CheckBox = ({ label, onValueChange, defaultValue, name, disabled,
|
|
6
|
+
const CheckBox = ({ label, onValueChange, defaultValue, name, disabled, size, style, rounded = false, block = false, withoutBorder = false, hasBackgroundColor = false, fixBackgroundColor = false, isFormLabel = false, }) => {
|
|
7
7
|
const onChecked = useCallback((event) => onValueChange(event.target.checked), [onValueChange]);
|
|
8
8
|
const id = name || generateGuid();
|
|
9
9
|
const className = getClassName([
|
|
10
10
|
"is-checkradio",
|
|
11
11
|
"m-check-radio",
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
hasBackgroundColor ? "has-background-color" : "",
|
|
13
|
+
fixBackgroundColor && hasBackgroundColor ? "m-has-background-color" : "",
|
|
14
14
|
isNullOrUndefined(size) ? "" : size === "normal" ? "" : `is-${size}`,
|
|
15
|
-
|
|
15
|
+
rounded ? "is-circle" : "",
|
|
16
16
|
isNullOrUndefined(style) ? "" : `is-${style}`,
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
block ? "is-block" : "",
|
|
18
|
+
withoutBorder ? "has-no-border" : "",
|
|
19
19
|
]);
|
|
20
|
-
if (!isNullOrUndefined(label) && isFormLabel
|
|
20
|
+
if (!isNullOrUndefined(label) && isFormLabel) {
|
|
21
21
|
const labelClassName = getClassName([
|
|
22
22
|
"label",
|
|
23
23
|
label.className
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BaseInputElementProps } from "../..";
|
|
2
2
|
/** Checkbox component props type */
|
|
3
|
-
export interface CheckBoxProps extends BaseInputElementProps<boolean> {
|
|
3
|
+
export interface CheckBoxProps extends Omit<BaseInputElementProps<boolean>, "readonly" | "validationState" | "loading" | "placeholder"> {
|
|
4
4
|
/** Is full colored checkbox */
|
|
5
5
|
block?: boolean;
|
|
6
6
|
/** Remove the checkbox border */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/checkbox/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAExD,oCAAoC;AACpC,MAAM,WAAW,aAAc,SAAQ,qBAAqB,CAAC,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/checkbox/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAExD,oCAAoC;AACpC,MAAM,WAAW,aAAc,SAAQ,IAAI,CAAC,qBAAqB,CAAC,OAAO,CAAC,EACtE,UAAU,GAAG,iBAAiB,GAC5B,SAAS,GAAG,aAAa,CAC9B;IACG,+BAA+B;IAC/B,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB,iCAAiC;IACjC,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB;;;MAGE;IACF,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAE7B;;;;MAIE;IACF,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAE7B;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ColorPickerProps } from "../..";
|
|
3
3
|
/** Color picker component with form label */
|
|
4
|
-
declare function ColorPickerWithLabel({ className, title, showPreview, name, defaultValue, validationState,
|
|
4
|
+
declare function ColorPickerWithLabel({ className, title, showPreview, name, defaultValue, validationState, onValueChange, data, disabled, rounded, label, }: ColorPickerProps): JSX.Element;
|
|
5
5
|
export default ColorPickerWithLabel;
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/color/components/withLabel/index.tsx"],"names":[],"mappings":";AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAGzC,6CAA6C;AAC7C,iBAAS,oBAAoB,CAAC,EAC1B,SAAS,EAAE,KAAK,EAChB,WAAW,EACX,IAAI,EACJ,YAAY,EAAE,eAAe,EAC7B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/color/components/withLabel/index.tsx"],"names":[],"mappings":";AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAGzC,6CAA6C;AAC7C,iBAAS,oBAAoB,CAAC,EAC1B,SAAS,EAAE,KAAK,EAChB,WAAW,EACX,IAAI,EACJ,YAAY,EAAE,eAAe,EAC7B,aAAa,EACb,IAAI,EACJ,QAAgB,EAAE,OAAe,EACjC,KAAK,GACR,EAAE,gBAAgB,eAiHlB;AAED,eAAe,oBAAoB,CAAC"}
|
|
@@ -4,17 +4,18 @@ import { generateGuid, getClassName, hexToRgb, isNullOrUndefined, rgbToHex, whit
|
|
|
4
4
|
import { getValidationValues, mapDataAttributes } from "../../../../..";
|
|
5
5
|
import ColorPickerControl from "../picker";
|
|
6
6
|
/** Color picker component with form label */
|
|
7
|
-
function ColorPickerWithLabel({ className, title, showPreview, name, defaultValue, validationState,
|
|
7
|
+
function ColorPickerWithLabel({ className, title, showPreview, name, defaultValue, validationState, onValueChange, data, disabled = false, rounded = false, label, }) {
|
|
8
8
|
const defaultColor = isNullOrUndefined(defaultValue)
|
|
9
9
|
? whiteHex
|
|
10
10
|
: rgbToHex(defaultValue);
|
|
11
11
|
const [value, setValue] = useState(defaultColor);
|
|
12
|
-
const
|
|
13
|
-
useEffect(() =>
|
|
12
|
+
const onChange = useCallback((event) => setValue(event.target.value), [setValue]);
|
|
13
|
+
useEffect(() => onValueChange?.call(undefined, hexToRgb(value)), [onValueChange, value]);
|
|
14
14
|
const [isValidationDefined, styleClassName, validationMessages] = getValidationValues(undefined, validationState);
|
|
15
15
|
const elClassName = getClassName([
|
|
16
16
|
className,
|
|
17
17
|
styleClassName,
|
|
18
|
+
rounded ? "is-rounded" : "",
|
|
18
19
|
"input",
|
|
19
20
|
]);
|
|
20
21
|
const inputContainerClassName = getClassName([
|
|
@@ -40,8 +41,8 @@ function ColorPickerWithLabel({ className, title, showPreview, name, defaultValu
|
|
|
40
41
|
"field-body",
|
|
41
42
|
label.horizontalFieldContainerClassName
|
|
42
43
|
]);
|
|
43
|
-
return (_jsxs("div", { className: "bbr-color-picker bbr-input field is-horizontal", children: [_jsx("div", { className: labelContainerClassName, children: _jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }) }), _jsx("div", { className: fieldContainerClassName, children: _jsx("div", { className: "field", children: _jsx(ColorPickerControl, { containerClassName: inputContainerClassName, className: elClassName, disabled: disabled, showPreview: showPreview, defaultColor: defaultColor, onValueChange:
|
|
44
|
+
return (_jsxs("div", { className: "bbr-color-picker bbr-input field is-horizontal", children: [_jsx("div", { className: labelContainerClassName, children: _jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }) }), _jsx("div", { className: fieldContainerClassName, children: _jsx("div", { className: "field", children: _jsx(ColorPickerControl, { containerClassName: inputContainerClassName, className: elClassName, disabled: disabled, showPreview: showPreview, defaultColor: defaultColor, onValueChange: onChange, value: value, id: id, title: title, dataAttributes: dataAttributes, isValidationDefined: isValidationDefined, validationMessages: validationMessages, styleClassName: styleClassName }) }) })] }));
|
|
44
45
|
}
|
|
45
|
-
return (_jsxs("div", { className: "bbr-color-picker bbr-input field", children: [_jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }), _jsx(ColorPickerControl, { containerClassName: inputContainerClassName, className: elClassName, disabled: disabled, showPreview: showPreview, defaultColor: defaultColor, onValueChange:
|
|
46
|
+
return (_jsxs("div", { className: "bbr-color-picker bbr-input field", children: [_jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }), _jsx(ColorPickerControl, { containerClassName: inputContainerClassName, className: elClassName, disabled: disabled, showPreview: showPreview, defaultColor: defaultColor, onValueChange: onChange, value: value, id: id, title: title, dataAttributes: dataAttributes, isValidationDefined: isValidationDefined, validationMessages: validationMessages, styleClassName: styleClassName })] }));
|
|
46
47
|
}
|
|
47
48
|
export default ColorPickerWithLabel;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ColorPickerProps } from "../..";
|
|
3
3
|
/** Color picker component without form label */
|
|
4
|
-
declare function ColorPickerWithoutLabel({ className, title, showPreview, name, defaultValue, validationState,
|
|
4
|
+
declare function ColorPickerWithoutLabel({ className, title, showPreview, name, defaultValue, validationState, onValueChange, data, disabled, rounded, }: ColorPickerProps): JSX.Element;
|
|
5
5
|
export default ColorPickerWithoutLabel;
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/color/components/withoutLabel/index.tsx"],"names":[],"mappings":";AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAGzC,gDAAgD;AAChD,iBAAS,uBAAuB,CAAC,EAC7B,SAAS,EAAE,KAAK,EAChB,WAAW,EACX,IAAI,EACJ,YAAY,EAAE,eAAe,EAC7B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/color/components/withoutLabel/index.tsx"],"names":[],"mappings":";AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAGzC,gDAAgD;AAChD,iBAAS,uBAAuB,CAAC,EAC7B,SAAS,EAAE,KAAK,EAChB,WAAW,EACX,IAAI,EACJ,YAAY,EAAE,eAAe,EAC7B,aAAa,EACb,IAAI,EACJ,QAAgB,EAAE,OAAe,GACpC,EAAE,gBAAgB,eA+ElB;AAED,eAAe,uBAAuB,CAAC"}
|
|
@@ -4,17 +4,18 @@ import { generateGuid, getClassName, hexToRgb, isNullOrUndefined, rgbToHex, whit
|
|
|
4
4
|
import { getValidationValues, mapDataAttributes } from "../../../../..";
|
|
5
5
|
import ColorPickerControl from "../picker";
|
|
6
6
|
/** Color picker component without form label */
|
|
7
|
-
function ColorPickerWithoutLabel({ className, title, showPreview, name, defaultValue, validationState,
|
|
7
|
+
function ColorPickerWithoutLabel({ className, title, showPreview, name, defaultValue, validationState, onValueChange, data, disabled = false, rounded = false, }) {
|
|
8
8
|
const defaultColor = isNullOrUndefined(defaultValue)
|
|
9
9
|
? whiteHex
|
|
10
10
|
: rgbToHex(defaultValue);
|
|
11
11
|
const [value, setValue] = useState(defaultColor);
|
|
12
|
-
const
|
|
13
|
-
useEffect(() =>
|
|
12
|
+
const onChange = useCallback((event) => setValue(event.target.value), [setValue]);
|
|
13
|
+
useEffect(() => onValueChange?.call(undefined, hexToRgb(value)), [onValueChange, value]);
|
|
14
14
|
const [isValidationDefined, styleClassName, validationMessages] = getValidationValues(undefined, validationState);
|
|
15
15
|
const elClassName = getClassName([
|
|
16
16
|
className,
|
|
17
17
|
styleClassName,
|
|
18
|
+
rounded ? "is-rounded" : "",
|
|
18
19
|
"input",
|
|
19
20
|
]);
|
|
20
21
|
const containerClassName = getClassName([
|
|
@@ -27,8 +28,8 @@ function ColorPickerWithoutLabel({ className, title, showPreview, name, defaultV
|
|
|
27
28
|
: mapDataAttributes(data);
|
|
28
29
|
const id = name || generateGuid();
|
|
29
30
|
if (showPreview) {
|
|
30
|
-
return (_jsx("div", { className: "bbr-color-picker", children: _jsx(ColorPickerControl, { containerClassName: containerClassName, className: elClassName, disabled: disabled, showPreview: showPreview, defaultColor: defaultColor, onValueChange:
|
|
31
|
+
return (_jsx("div", { className: "bbr-color-picker", children: _jsx(ColorPickerControl, { containerClassName: containerClassName, className: elClassName, disabled: disabled, showPreview: showPreview, defaultColor: defaultColor, onValueChange: onChange, value: value, id: id, title: title, dataAttributes: dataAttributes, isValidationDefined: isValidationDefined, validationMessages: validationMessages, styleClassName: styleClassName }) }));
|
|
31
32
|
}
|
|
32
|
-
return (_jsx("div", { className: "bbr-color-picker", children: _jsx(ColorPickerControl, { containerClassName: containerClassName, className: elClassName, disabled: disabled, showPreview: showPreview, defaultColor: defaultColor, onValueChange:
|
|
33
|
+
return (_jsx("div", { className: "bbr-color-picker", children: _jsx(ColorPickerControl, { containerClassName: containerClassName, className: elClassName, disabled: disabled, showPreview: showPreview, defaultColor: defaultColor, onValueChange: onChange, value: value, id: id, title: title, dataAttributes: dataAttributes, isValidationDefined: isValidationDefined, validationMessages: validationMessages, styleClassName: styleClassName }) }));
|
|
33
34
|
}
|
|
34
35
|
export default ColorPickerWithoutLabel;
|
|
@@ -1,20 +1,8 @@
|
|
|
1
|
-
import { Color } from "@bodynarf/utils";
|
|
2
|
-
import { BaseElementProps, InputLabel, ValidationState } from "../../..";
|
|
3
1
|
import { CSSProperties } from "react";
|
|
2
|
+
import { Color } from "@bodynarf/utils";
|
|
3
|
+
import { BaseInputElementProps } from "../../..";
|
|
4
4
|
/** Color picker props type */
|
|
5
|
-
export interface ColorPickerProps extends
|
|
6
|
-
/** Default color value */
|
|
7
|
-
defaultValue?: Color;
|
|
8
|
-
/** Label configuration */
|
|
9
|
-
label?: InputLabel;
|
|
10
|
-
/** Change extra handler */
|
|
11
|
-
onChange?: (color: Color) => void;
|
|
12
|
-
/** Name of element. Required for form elements */
|
|
13
|
-
name?: string;
|
|
14
|
-
/** Should be component disabled. Selecting is not allowed */
|
|
15
|
-
disabled?: boolean;
|
|
16
|
-
/** Current validation state */
|
|
17
|
-
validationState?: ValidationState;
|
|
5
|
+
export interface ColorPickerProps extends Omit<BaseInputElementProps<Color>, "style" | "loading" | "size" | "readonly" | "placeholder"> {
|
|
18
6
|
/**
|
|
19
7
|
* Show text with color preview.
|
|
20
8
|
* If set - outlined button-like element on the right will be rendered
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/color/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/color/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAExC,OAAO,EAAE,qBAAqB,EAAE,MAAM,MAAM,CAAC;AAE7C,8BAA8B;AAC9B,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAAC,qBAAqB,CAAC,KAAK,CAAC,EACvE,OAAO,GAAG,SAAS,GACjB,MAAM,GAAG,UAAU,GAAG,aAAa,CACxC;IACG;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AAED,yCAAyC;AACzC,MAAM,WAAW,wBAAyB,SAAQ,aAAa;IAC3D,gDAAgD;IAChD,kCAAkC,EAAE,MAAM,CAAC;IAE3C,sDAAsD;IACtD,uBAAuB,EAAE,MAAM,CAAC;CACnC"}
|
|
@@ -5,7 +5,7 @@ import "../../../../common.scss";
|
|
|
5
5
|
import { ElementSize } from "../../..";
|
|
6
6
|
import { getValidationValues } from "../../../../utils";
|
|
7
7
|
/** Date input component */
|
|
8
|
-
const DatePicker = ({ defaultValue, onValueChange, readonly, disabled, validationState, name, size, className, rounded, loading, style, label, onBlur }) => {
|
|
8
|
+
const DatePicker = ({ defaultValue, onValueChange, readonly, disabled, validationState, name, size, className, rounded = false, loading = false, style, label, onBlur }) => {
|
|
9
9
|
const onChange = useCallback((event) => onValueChange(isStringEmpty(event.target.value)
|
|
10
10
|
? undefined
|
|
11
11
|
: new Date(event.target.value)), [onValueChange]);
|
|
@@ -16,12 +16,12 @@ const DatePicker = ({ defaultValue, onValueChange, readonly, disabled, validatio
|
|
|
16
16
|
className,
|
|
17
17
|
elSizeClassName,
|
|
18
18
|
styleClassName,
|
|
19
|
-
rounded
|
|
19
|
+
rounded ? "is-rounded" : "",
|
|
20
20
|
"input",
|
|
21
21
|
]);
|
|
22
22
|
const inputContainerClassName = getClassName([
|
|
23
23
|
"control",
|
|
24
|
-
loading
|
|
24
|
+
loading ? "is-loading" : "",
|
|
25
25
|
]);
|
|
26
26
|
const stringifiedDefValue = defaultValue?.toISOString().split("T")[0];
|
|
27
27
|
const labelClassName = getClassName([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/primitives/multiline/component/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/primitives/multiline/component/index.tsx"],"names":[],"mappings":"AAEA,OAAO,yBAAyB,CAAC;AAEjC,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAI3D,wCAAwC;AACxC,QAAA,MAAM,SAAS,UAAW,cAAc,KAAG,WAQ1C,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { MultilineProps } from "../../../multiline";
|
|
3
2
|
/** Multiline textual input component with describing label */
|
|
4
|
-
declare const MultilineWithLabel: ({ defaultValue, onValueChange, validationState, readonly, disabled, name, className, size, style,
|
|
3
|
+
declare const MultilineWithLabel: ({ defaultValue, onValueChange, validationState, readonly, disabled, name, className, size, style, loading, label, placeholder, fixed, rows, onBlur }: MultilineProps) => JSX.Element;
|
|
5
4
|
export default MultilineWithLabel;
|
|
6
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/multiline/components/multilineWithLabel/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/multiline/components/multilineWithLabel/index.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,8DAA8D;AAC9D,QAAA,MAAM,kBAAkB,yJAOrB,cAAc,KAAG,WAwGnB,CAAC;AAEF,eAAe,kBAAkB,CAAC"}
|
|
@@ -4,7 +4,7 @@ import { generateGuid, getClassName, getValueOrDefault } from "@bodynarf/utils";
|
|
|
4
4
|
import { ElementSize } from "../../../..";
|
|
5
5
|
import { getValidationValues } from "../../../../../utils";
|
|
6
6
|
/** Multiline textual input component with describing label */
|
|
7
|
-
const MultilineWithLabel = ({ defaultValue, onValueChange, validationState, readonly, disabled, name, className, size, style,
|
|
7
|
+
const MultilineWithLabel = ({ defaultValue, onValueChange, validationState, readonly, disabled, name, className, size, style, loading = false, label, placeholder, fixed = false, rows, onBlur }) => {
|
|
8
8
|
const onChange = useCallback((event) => onValueChange(event.target.value), [onValueChange]);
|
|
9
9
|
const id = name || generateGuid();
|
|
10
10
|
const elSizeClassName = "is-{0}".format(getValueOrDefault(size, ElementSize.Normal));
|
|
@@ -12,14 +12,13 @@ const MultilineWithLabel = ({ defaultValue, onValueChange, validationState, read
|
|
|
12
12
|
const elClassName = getClassName([
|
|
13
13
|
className,
|
|
14
14
|
elSizeClassName,
|
|
15
|
-
rounded === true ? "is-rounded" : "",
|
|
16
15
|
styleClassName,
|
|
17
16
|
"textarea",
|
|
18
|
-
fixed
|
|
17
|
+
fixed ? "has-fixed-size" : "",
|
|
19
18
|
]);
|
|
20
19
|
const inputContainerClassName = getClassName([
|
|
21
20
|
"control",
|
|
22
|
-
loading
|
|
21
|
+
loading ? "is-loading" : "",
|
|
23
22
|
]);
|
|
24
23
|
const labelClassName = getClassName([
|
|
25
24
|
"label",
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { MultilineProps } from "../../../multiline";
|
|
3
2
|
/** Multiline textual input component without describing label*/
|
|
4
|
-
declare const MultilineWithoutLabel: ({ onValueChange, defaultValue, validationState, name, placeholder, onBlur, className, size, style,
|
|
3
|
+
declare const MultilineWithoutLabel: ({ onValueChange, defaultValue, validationState, name, placeholder, onBlur, className, size, style, loading, fixed, rows, }: MultilineProps) => JSX.Element;
|
|
5
4
|
export default MultilineWithoutLabel;
|
|
6
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/multiline/components/multilineWithoutLabel/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/multiline/components/multilineWithoutLabel/index.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,gEAAgE;AAChE,QAAA,MAAM,qBAAqB,+HAMxB,cAAc,KAAG,WA0CnB,CAAC;AAEF,eAAe,qBAAqB,CAAC"}
|
|
@@ -4,22 +4,21 @@ import { generateGuid, getClassName, getValueOrDefault } from "@bodynarf/utils";
|
|
|
4
4
|
import { ElementSize } from "../../../..";
|
|
5
5
|
import { getValidationValues } from "../../../../../utils";
|
|
6
6
|
/** Multiline textual input component without describing label*/
|
|
7
|
-
const MultilineWithoutLabel = ({ onValueChange, defaultValue, validationState, name, placeholder, onBlur, className, size, style,
|
|
7
|
+
const MultilineWithoutLabel = ({ onValueChange, defaultValue, validationState, name, placeholder, onBlur, className, size, style, loading = false, fixed = false, rows, }) => {
|
|
8
8
|
const onChange = useCallback((event) => onValueChange(event.target.value), [onValueChange]);
|
|
9
9
|
const id = name || generateGuid();
|
|
10
10
|
const [isValidationDefined, styleClassName, validationMessages] = getValidationValues(style, validationState);
|
|
11
11
|
const elClassName = getClassName([
|
|
12
12
|
className,
|
|
13
13
|
"is-{0}".format(getValueOrDefault(size, ElementSize.Normal)),
|
|
14
|
-
rounded === true ? "is-rounded" : "",
|
|
15
14
|
styleClassName,
|
|
16
15
|
"textarea",
|
|
17
|
-
fixed
|
|
16
|
+
fixed ? "has-fixed-size" : "",
|
|
18
17
|
]);
|
|
19
18
|
const inputContainerClassName = getClassName([
|
|
20
19
|
"control",
|
|
21
20
|
"bbr-input",
|
|
22
|
-
loading
|
|
21
|
+
loading ? "is-loading" : "",
|
|
23
22
|
]);
|
|
24
23
|
return (_jsxs("div", { className: "field", children: [_jsx("div", { className: inputContainerClassName, children: _jsx("textarea", { className: elClassName, placeholder: placeholder, defaultValue: defaultValue, onChange: onChange, onBlur: onBlur, id: id, name: id, rows: rows }) }), isValidationDefined && validationMessages.length > 0 &&
|
|
25
24
|
_jsx("p", { className: `help m-help ${styleClassName}`, children: validationMessages.join("\n") })] }));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BaseInputElementProps } from "../..";
|
|
2
2
|
/** Multiline textual input component props type */
|
|
3
|
-
export interface MultilineProps extends BaseInputElementProps<string> {
|
|
3
|
+
export interface MultilineProps extends Omit<BaseInputElementProps<string>, "rounded"> {
|
|
4
4
|
/** Is input should be resizable */
|
|
5
5
|
fixed?: boolean;
|
|
6
6
|
/** Number of initial rows count */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/multiline/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAExD,mDAAmD;AACnD,MAAM,WAAW,cAAe,SAAQ,qBAAqB,CAAC,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/primitives/multiline/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAExD,mDAAmD;AACnD,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,qBAAqB,CAAC,MAAM,CAAC,EAAE,SAAS,CAAC;IAClF,mCAAmC;IACnC,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB,mCAAmC;IACnC,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,8BAA8B;IAC9B,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;CACvB"}
|
|
@@ -4,7 +4,7 @@ import { generateGuid, getClassName, getValueOrDefault, isStringEmpty } from "@b
|
|
|
4
4
|
import { ElementSize } from "../../../..";
|
|
5
5
|
import { getValidationValues } from "../../../../../utils";
|
|
6
6
|
/** Number component with label */
|
|
7
|
-
const NumberWithLabel = ({ onValueChange, readonly, disabled, defaultValue, validationState, name, className, size, style, rounded, loading, label, placeholder, onBlur, step, }) => {
|
|
7
|
+
const NumberWithLabel = ({ onValueChange, readonly, disabled, defaultValue, validationState, name, className, size, style, rounded = false, loading = false, label, placeholder, onBlur, step = 1, }) => {
|
|
8
8
|
const onChange = useCallback((event) => onValueChange(isStringEmpty(event.target.value) ? undefined : +event.target.value), [onValueChange]);
|
|
9
9
|
const id = name || generateGuid();
|
|
10
10
|
const elSizeClassName = "is-{0}".format(getValueOrDefault(size, ElementSize.Normal));
|
|
@@ -12,13 +12,13 @@ const NumberWithLabel = ({ onValueChange, readonly, disabled, defaultValue, vali
|
|
|
12
12
|
const elClassName = getClassName([
|
|
13
13
|
className,
|
|
14
14
|
elSizeClassName,
|
|
15
|
-
rounded
|
|
15
|
+
rounded ? "is-rounded" : "",
|
|
16
16
|
styleClassName,
|
|
17
17
|
"input",
|
|
18
18
|
]);
|
|
19
19
|
const inputContainerClassName = getClassName([
|
|
20
20
|
"control",
|
|
21
|
-
loading
|
|
21
|
+
loading ? "is-loading" : "",
|
|
22
22
|
]);
|
|
23
23
|
const labelClassName = getClassName([
|
|
24
24
|
"label",
|
|
@@ -35,10 +35,10 @@ const NumberWithLabel = ({ onValueChange, readonly, disabled, defaultValue, vali
|
|
|
35
35
|
"field-body",
|
|
36
36
|
label.horizontalFieldContainerClassName
|
|
37
37
|
]);
|
|
38
|
-
return (_jsxs("div", { className: "bbr-input field is-horizontal", children: [_jsx("div", { className: labelContainerClassName, children: _jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }) }), _jsx("div", { className: fieldContainerClassName, children: _jsxs("div", { className: "field", children: [_jsx("div", { className: inputContainerClassName, children: _jsx("input", { type: "number", className: elClassName, placeholder: placeholder, readOnly: readonly, disabled: disabled, defaultValue: defaultValue, onChange: onChange, onBlur: onBlur, name: id, id: id, step: step
|
|
38
|
+
return (_jsxs("div", { className: "bbr-input field is-horizontal", children: [_jsx("div", { className: labelContainerClassName, children: _jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }) }), _jsx("div", { className: fieldContainerClassName, children: _jsxs("div", { className: "field", children: [_jsx("div", { className: inputContainerClassName, children: _jsx("input", { type: "number", className: elClassName, placeholder: placeholder, readOnly: readonly, disabled: disabled, defaultValue: defaultValue, onChange: onChange, onBlur: onBlur, name: id, id: id, step: step }) }), isValidationDefined && validationMessages.length > 0 &&
|
|
39
39
|
_jsx("p", { className: `help m-help ${styleClassName}`, children: validationMessages.join("\n") })] }) })] }));
|
|
40
40
|
}
|
|
41
|
-
return (_jsxs("div", { className: "bbr-input field", children: [_jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }), _jsx("div", { className: inputContainerClassName, children: _jsx("input", { type: "number", className: elClassName, placeholder: placeholder, readOnly: readonly, disabled: disabled, defaultValue: defaultValue, onChange: onChange, onBlur: onBlur, name: id, id: id, step: step
|
|
41
|
+
return (_jsxs("div", { className: "bbr-input field", children: [_jsx("label", { className: labelClassName, htmlFor: id, children: label.caption }), _jsx("div", { className: inputContainerClassName, children: _jsx("input", { type: "number", className: elClassName, placeholder: placeholder, readOnly: readonly, disabled: disabled, defaultValue: defaultValue, onChange: onChange, onBlur: onBlur, name: id, id: id, step: step }) }), isValidationDefined && validationMessages.length > 0 &&
|
|
42
42
|
_jsx("p", { className: `help m-help ${styleClassName}`, children: validationMessages.join("\n") })] }));
|
|
43
43
|
};
|
|
44
44
|
export default NumberWithLabel;
|
|
@@ -4,23 +4,23 @@ import { generateGuid, getClassName, getValueOrDefault } from "@bodynarf/utils";
|
|
|
4
4
|
import { ElementSize } from "../../../..";
|
|
5
5
|
import { getValidationValues } from "../../../../../utils";
|
|
6
6
|
/** Number component without label */
|
|
7
|
-
const NumberWithoutLabel = ({ onValueChange, readonly, disabled, defaultValue, validationState, name, className, size, style, rounded, loading, placeholder, onBlur, step, }) => {
|
|
7
|
+
const NumberWithoutLabel = ({ onValueChange, readonly, disabled, defaultValue, validationState, name, className, size, style, rounded = false, loading = false, placeholder, onBlur, step = 1, }) => {
|
|
8
8
|
const onChange = useCallback((event) => onValueChange(+event.target.value), [onValueChange]);
|
|
9
9
|
const [isValidationDefined, styleClassName, validationMessages] = getValidationValues(style, validationState);
|
|
10
10
|
const elClassName = getClassName([
|
|
11
11
|
className,
|
|
12
12
|
"is-{0}".format(getValueOrDefault(size, ElementSize.Normal)),
|
|
13
|
-
rounded
|
|
13
|
+
rounded ? "is-rounded" : "",
|
|
14
14
|
styleClassName,
|
|
15
15
|
"input",
|
|
16
16
|
]);
|
|
17
17
|
const containerClassName = getClassName([
|
|
18
18
|
"control",
|
|
19
19
|
"bbr-input",
|
|
20
|
-
loading
|
|
20
|
+
loading ? "is-loading" : "",
|
|
21
21
|
]);
|
|
22
22
|
const id = name || generateGuid();
|
|
23
|
-
return (_jsxs(_Fragment, { children: [_jsx("div", { className: containerClassName, children: _jsx("input", { type: "number", className: elClassName, placeholder: placeholder, readOnly: readonly, disabled: disabled, defaultValue: defaultValue, onChange: onChange, onBlur: onBlur, name: id, id: id, step: step
|
|
23
|
+
return (_jsxs(_Fragment, { children: [_jsx("div", { className: containerClassName, children: _jsx("input", { type: "number", className: elClassName, placeholder: placeholder, readOnly: readonly, disabled: disabled, defaultValue: defaultValue, onChange: onChange, onBlur: onBlur, name: id, id: id, step: step }) }), isValidationDefined && validationMessages.length > 0 &&
|
|
24
24
|
_jsx("p", { className: `help m-help ${styleClassName}`, children: validationMessages.join("\n") })] }));
|
|
25
25
|
};
|
|
26
26
|
export default NumberWithoutLabel;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { PasswordProps } from "../../../password";
|
|
2
3
|
declare const PasswordWithLabel: ({ onValueChange, disabled, validationState, name, className, size, style, rounded, loading, label, placeholder, canShowPassword, }: PasswordProps) => JSX.Element;
|
|
3
4
|
export default PasswordWithLabel;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/password/components/withLabel/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,QAAA,MAAM,iBAAiB,uIAOpB,aAAa,KAAG,WAgIlB,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/password/components/withLabel/index.tsx"],"names":[],"mappings":";AAQA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,QAAA,MAAM,iBAAiB,uIAOpB,aAAa,KAAG,WAgIlB,CAAC;AAEF,eAAe,iBAAiB,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { PasswordProps } from "../../../password";
|
|
2
3
|
declare const PasswordWithoutLabel: ({ onValueChange, disabled, validationState, name, className, size, style, rounded, loading, placeholder, canShowPassword, }: PasswordProps) => JSX.Element;
|
|
3
4
|
export default PasswordWithoutLabel;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/password/components/withoutLabel/index.tsx"],"names":[],"mappings":"AAQA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,QAAA,MAAM,oBAAoB,gIAOvB,aAAa,KAAG,WA4DlB,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/password/components/withoutLabel/index.tsx"],"names":[],"mappings":";AAQA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,QAAA,MAAM,oBAAoB,gIAOvB,aAAa,KAAG,WA4DlB,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { TextProps } from "../../../text";
|
|
2
3
|
/** Textual input with describing label */
|
|
3
4
|
declare const TextWithLabel: ({ onValueChange, readonly, disabled, defaultValue, validationState, name, className, size, style, rounded, loading, label, placeholder, onBlur, }: TextProps) => JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/text/components/textWithLabel/index.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD,0CAA0C;AAC1C,QAAA,MAAM,aAAa,sJAOhB,SAAS,KAAG,WAwGd,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/text/components/textWithLabel/index.tsx"],"names":[],"mappings":";AAOA,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD,0CAA0C;AAC1C,QAAA,MAAM,aAAa,sJAOhB,SAAS,KAAG,WAwGd,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { TextProps } from "../../../text";
|
|
2
3
|
/** Textual input without describing label */
|
|
3
4
|
declare const TextWithoutLabel: ({ onValueChange, readonly, disabled, defaultValue, validationState, name, className, size, style, rounded, loading, placeholder, onBlur, }: TextProps) => JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/text/components/textWithoutLabel/index.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD,6CAA6C;AAC7C,QAAA,MAAM,gBAAgB,+IAOnB,SAAS,KAAG,WA6Cd,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/components/primitives/text/components/textWithoutLabel/index.tsx"],"names":[],"mappings":";AAOA,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEjD,6CAA6C;AAC7C,QAAA,MAAM,gBAAgB,+IAOnB,SAAS,KAAG,WA6Cd,CAAC;AAEF,eAAe,gBAAgB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/tabs/component/index.tsx"],"names":[],"mappings":"AAIA,OAAO,cAAc,CAAC;AAEtB,OAAO,EAAE,gBAAgB,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAGhE,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAGxE,gCAAgC;AAChC,MAAM,WAAW,SAAU,SAAQ,gBAAgB;IAC/C,WAAW;IACX,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;IAEtB,8CAA8C;IAC9C,kBAAkB,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IAE5C;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB;;;OAGG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,YAAY,CAAC;IAExB,sBAAsB;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB,wDAAwD;IACxD,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB;AAED;;;GAGG;AACH,QAAA,MAAM,IAAI,4GAMP,SAAS,KAAG,WA6Ed,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/tabs/component/index.tsx"],"names":[],"mappings":";AAIA,OAAO,cAAc,CAAC;AAEtB,OAAO,EAAE,gBAAgB,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAGhE,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAGxE,gCAAgC;AAChC,MAAM,WAAW,SAAU,SAAQ,gBAAgB;IAC/C,WAAW;IACX,KAAK,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;IAEtB,8CAA8C;IAC9C,kBAAkB,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;IAE5C;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB;;;OAGG;IACH,IAAI,CAAC,EAAE,WAAW,CAAC;IAEnB,yBAAyB;IACzB,QAAQ,CAAC,EAAE,YAAY,CAAC;IAExB,sBAAsB;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC;IAElB,wDAAwD;IACxD,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB;AAED;;;GAGG;AACH,QAAA,MAAM,IAAI,4GAMP,SAAS,KAAG,WA6Ed,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
|
@@ -10,11 +10,11 @@ import TabItemComponent from "../../tabs/components/item";
|
|
|
10
10
|
* Tabs panel
|
|
11
11
|
* @throws Items are empty
|
|
12
12
|
*/
|
|
13
|
-
const Tabs = ({ items, onActiveItemChange, defaultActive, size, position, style, fullWidth = false, className, title, data, }) => {
|
|
13
|
+
const Tabs = ({ items, onActiveItemChange, defaultActive = items[0], size, position = TabsPosition.left, style = TabsStyle.default, fullWidth = false, className, title, data, }) => {
|
|
14
14
|
if (items.length === 0) {
|
|
15
15
|
throw new Error("Invalid configuration. Tab items must be defined");
|
|
16
16
|
}
|
|
17
|
-
const [activeItem, setActiveItem] = useState(defaultActive
|
|
17
|
+
const [activeItem, setActiveItem] = useState(defaultActive);
|
|
18
18
|
const isFirstRun = useRef(true);
|
|
19
19
|
const onTabsClick = useCallback((container) => {
|
|
20
20
|
const closestTab = container.target.closest(".bbr-tabs__tab");
|
|
@@ -41,9 +41,9 @@ const Tabs = ({ items, onActiveItemChange, defaultActive, size, position, style,
|
|
|
41
41
|
const elClassName = getClassName([
|
|
42
42
|
"bbr-tabs",
|
|
43
43
|
"tabs",
|
|
44
|
-
position
|
|
44
|
+
position,
|
|
45
45
|
getSizeClassName(size, [ElementSize.Normal]),
|
|
46
|
-
style
|
|
46
|
+
style,
|
|
47
47
|
fullWidth ? "is-fullwidth" : "",
|
|
48
48
|
className,
|
|
49
49
|
]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/tag/component/index.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAE/C,OAAO,cAAc,CAAC;AAEtB,sBAAsB;AACtB,QAAA,MAAM,GAAG,2FAQN,QAAQ,KAAG,WA+Bb,CAAC;AAEF,eAAe,GAAG,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/tag/component/index.tsx"],"names":[],"mappings":";AAGA,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAE/C,OAAO,cAAc,CAAC;AAEtB,sBAAsB;AACtB,QAAA,MAAM,GAAG,2FAQN,QAAQ,KAAG,WA+Bb,CAAC;AAEF,eAAe,GAAG,CAAC"}
|
package/package.json
CHANGED
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.full.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/scheduler/tracing.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/@types/react/jsx-runtime.d.ts","../src/components/types.ts","../node_modules/@bodynarf/utils/api/types.d.ts","../node_modules/@bodynarf/utils/api/v1.d.ts","../node_modules/@bodynarf/utils/api/index.d.ts","../node_modules/@bodynarf/utils/array/index.d.ts","../node_modules/@bodynarf/utils/common/checks.d.ts","../node_modules/@bodynarf/utils/common/string.d.ts","../node_modules/@bodynarf/utils/common/type.d.ts","../node_modules/@bodynarf/utils/common/color.d.ts","../node_modules/@bodynarf/utils/common/index.d.ts","../node_modules/@bodynarf/utils/component/index.d.ts","../node_modules/@bodynarf/utils/function/index.d.ts","../node_modules/@bodynarf/utils/guid/index.d.ts","../node_modules/@bodynarf/utils/localstorage/index.d.ts","../node_modules/@bodynarf/utils/object/index.d.ts","../node_modules/@bodynarf/utils/index.d.ts","../src/components/icon/component/index.tsx","../src/components/icon/types.ts","../src/components/icon/index.ts","../src/utils/formvalidation.ts","../src/utils/dataattributes.ts","../src/utils/index.ts","../src/components/accordion/component/index.tsx","../src/components/accordion/types.ts","../src/components/accordion/index.ts","../src/components/anchor/components/simpleanchor/index.tsx","../src/components/anchor/components/anchorwithicon/index.tsx","../src/components/anchor/component/index.tsx","../src/components/anchor/types.ts","../src/components/anchor/index.ts","../src/components/button/components/buttonwithicon/index.tsx","../src/components/button/components/simplebutton/index.tsx","../src/components/button/component/index.tsx","../src/components/button/types.ts","../src/components/button/index.ts","../src/hooks/usecomponentoutsideclick.ts","../src/hooks/usepagination.ts","../src/hooks/index.ts","../src/components/dropdown/components/item/index.tsx","../src/components/dropdown/components/label/index.tsx","../src/components/dropdown/components/withlabel/index.tsx","../src/components/dropdown/components/compact/index.tsx","../src/components/dropdown/component/index.tsx","../src/components/dropdown/types.ts","../src/components/dropdown/index.ts","../src/components/paginator/component/index.tsx","../src/components/paginator/types.ts","../src/components/paginator/utils.ts","../src/components/paginator/index.ts","../src/components/search/component/index.tsx","../src/components/search/types.ts","../src/components/search/index.ts","../src/components/tabs/components/item/index.tsx","../src/components/tabs/component/index.tsx","../src/components/tabs/types.ts","../src/components/tabs/index.ts","../src/components/tag/component/index.tsx","../src/components/tag/types.ts","../src/components/tag/index.ts","../src/components/primitives/checkbox/component/index.tsx","../src/components/primitives/checkbox/types.ts","../src/components/primitives/checkbox/index.ts","../src/components/primitives/color/components/picker/index.tsx","../src/components/primitives/color/components/withoutlabel/index.tsx","../src/components/primitives/color/components/withlabel/index.tsx","../src/components/primitives/color/component/index.tsx","../src/components/primitives/color/types.ts","../src/components/primitives/color/index.ts","../src/components/primitives/date/component/index.tsx","../src/components/primitives/date/types.ts","../src/components/primitives/date/index.ts","../src/components/primitives/multiline/components/multilinewithoutlabel/index.tsx","../src/components/primitives/multiline/components/multilinewithlabel/index.tsx","../src/components/primitives/multiline/component/index.tsx","../src/components/primitives/multiline/types.ts","../src/components/primitives/multiline/index.ts","../src/components/primitives/number/components/withlabel/index.tsx","../src/components/primitives/number/components/withoutlabel/index.tsx","../src/components/primitives/number/component/index.tsx","../src/components/primitives/number/types.ts","../src/components/primitives/number/index.ts","../src/components/primitives/password/components/withlabel/index.tsx","../src/components/primitives/password/components/withoutlabel/index.tsx","../src/components/primitives/password/component/index.tsx","../src/components/primitives/password/types.ts","../src/components/primitives/password/index.ts","../src/components/primitives/text/components/textwithlabel/index.tsx","../src/components/primitives/text/components/textwithoutlabel/index.tsx","../src/components/primitives/text/component/index.tsx","../src/components/primitives/text/types.ts","../src/components/primitives/text/index.tsx","../src/components/primitives/types/baseprops.ts","../src/components/primitives/types/label.ts","../src/components/primitives/types/validation/status.ts","../src/components/primitives/types/validation/state.ts","../src/components/primitives/types/validation/index.ts","../src/components/primitives/types/index.ts","../src/components/primitives/index.ts","../src/components/index.ts","../src/index.ts","../node_modules/@types/react-dom/index.d.ts","../node_modules/@types/scheduler/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"d96fa8a56871904776165ceb8e00bd56127e1a017bb2664cae76223b5f815141",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"0bca3a2542a695559b16feba84fffa590ec45eb64f2bbe0ee5e303f7bade01b1","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9",{"version":"962fd5fe3adb73831428ab5f0086755451b4e1fa935a99428e36855deb0165d1","signature":"e1650ad86a0f6a2880b27b8a696820340e9fe1d0d1fdb3c441a83d8c019835b9"},"d9233f68f452aba034b1c313c86f1f66b55a643e163b5a7dc5e6c607295a8ae0","2ed7d4bd38b442e575a24d1a0e37f9a2be7dde68c98f3ecac8a2aa0a131547cb","8192fb4a8890f1b5a65c63fa400c7e5f4a54d5d7891f3d04e69c7ea6b413f63d",{"version":"e62d9d051c0c23b9caf0546ea5cc36accdb4b0ad50c22053abdb313f61da2a24","affectsGlobalScope":true},"c1272a15a581367a5e377b5360a728afa226f46ad21a86fff63b0e82310793d6",{"version":"753aaa44cbd887acd8855b130c5184c94c3e5efe7dd2d0bccad06a9793f5b36c","affectsGlobalScope":true},"f5d24abd9070bb444ef0c982370e5c6694205e892370ce68f51d719f9cadae3e","01d47f345a6b20cf4492c5462994a7047f15a8e2e187a3288fbcac0a21369132","5e85a49da3d1f931152d7abcc30b17e28616411631268f0e99ab975f2232c62a","3c7a6f8b953915b26e02845926ed5c8780fde6f58984e6253a3ffd367c0fae4a","d1a53a709aff7f0febcdf6d665a9cbf09545fee3c96b582a58a7a431c6f5f5a7","49b3a74068827cb2f821e388eff2944f4f37f2b05fe8f4251c8b108682858535","ccae88d01c121396b746719dbe09845b17a1b8e83a60c901f1fb7f60f9cc4355","1a83e4058abfccdd78757eeb8354ee338157fa2203b161972a414a1530d0e504","7b2e7305bbd101a47a234313bd59f53c4611f9c54b99bbfc110b8fff235b84b5",{"version":"4673a432917eadfa69fd4d95e22303080b1c71517b60ad45618458b46a7ecb98","signature":"842d3c9f145e76d6b195a1221270e5b4928a56fc6c504822776eb28bf6ba51a9"},{"version":"af610e957934a4c87f2f14a4432bc174dd9559852f43ca4491b174c34b957bec","signature":"1311907d2be567905c37cee4b73a74ee6fd4237b7056b55acc35aae40267f5e6"},{"version":"bbe9d0332501fb434278dc06d9957413675512c216810e6ec8f1622783974a3b","signature":"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701"},{"version":"0e0b848acd5bbccb3a0ed9e7f0c369ef7bd72a1a75358884d65b4ab467ebbded","signature":"9093a2b8f0158f5ef267fc5476fd62d22be672b0a2a4a5625b8270ec39b34633"},{"version":"706ada66d31d49245b50bea63e49929b48045b7a835c2a54ac19d8303677d0f5","signature":"a565ea57cc1a0f07499b8baee0582267aaf4cbfe945c0c555a18a583da871bd6"},"add2adbfe7be02c1fd07ee31e94848d35867813e5c97c8bfa2e3796c74187cd4",{"version":"104a642781dbb6e12cb2ed6619b6ae52808e6db7c4db1132d273807167ccc0fd","signature":"a26ee51d8502867ff0bf13a8134cc378ca45f90761031a624c3fff0a2ec55c49"},{"version":"f963649dea660a8cec2a8dca6be5ab6cc5f2197f59ef2bb0a221097b5e98cef6","signature":"f7b390a112577ee834e77d4b9debac5e52bff1ecd14ff6c8d42be8939e606c5e"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"0f4a2e4fe96e5fbbdaba80314d0fcc0a4b23177ae9469d4c028c5443f4b2c84c","signature":"be3cc323f752bd98a0038742942d78aa441b7ecf858049b98e77d27812280371"},{"version":"a0863fa24d7b9b72920510d102bbe36411a1bf03d91cbadd64aff2335d82a0ef","signature":"2c7a8689da833630342856acd509f7bd09024ee9ef9203ef1306a39670c8ef8a"},{"version":"e36bf10acaf61ac426734b34e37eb394e02c4c87d5d2e8706f9ee4d3647db8cb","signature":"6ea2ddd02e848480250a824388ebe934913d4d01dcce5f538135adfe6c40d977"},{"version":"4026956852a6fc038f00d47e5b4a95f178f400caeaaf6c05e778b77925472575","signature":"5e5a26e677b12a46007763227dcc89d824c9e80c370e629060b9ee982776a4cb"},{"version":"bbe9d0332501fb434278dc06d9957413675512c216810e6ec8f1622783974a3b","signature":"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701"},{"version":"93a65d1e58734edf3e9b1baf02373463746336e22bb42d6ac02cef132fea4783","signature":"8ee91282a3e48421654af844d28e13cd09902caa3171f205f63b5bc803a5e580"},{"version":"07423025465fd4ed83782b7a8a317d9e9ea42d64bd742a8566ae48746ee7d1b8","signature":"951176a532bd470da9815f7998b41cc5ddb80887cf653c32c63a580ec4ce3aa2"},{"version":"c5f5c432a55bb415dd80cef7585a6a8d83eee7423ba9f785c65eccc55fcc7036","signature":"67b4cf149ab6491116d0e96444227eaef9be374d4a653ce97fdcb4ab68d723c4"},{"version":"1a5038ae02203329f1637801c79db10e1c66d0f7cb38d5821a42c812b86b148a","signature":"c4e9988b3ab9c6f3c1a2e270c786b36cab9f4810a3f93cd11b5e302bab830231"},{"version":"bbe9d0332501fb434278dc06d9957413675512c216810e6ec8f1622783974a3b","signature":"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701"},{"version":"254abcd057864a5843d84ae542d17114743c07a4917d9283473dc59b733db8ba","signature":"613af3d14fb07637688dae6dbc48c153282996da6e88a6f47ed19eaba604eb43"},{"version":"d1fc76cba8da499373e7cca7ec522f325308dde75d5c43227b535a1082a5b6b2","signature":"f7757a4421b5ccafa80cabc4bc88c50de7e4d55294dd342fc92a6d1eab4b27be"},"bfdd94e8e1f8df56a153931c298195fdac2a290f5e3c11983a43af0299c9c7b2",{"version":"4fe3b55e79117c0c3a1abc95ae7a743880e5cdac7a5c2be15ff5cd4f3f755a68","signature":"b567dc6146370c4942a6230e7ff5a50e866f603768a8c135f087d23a54d9484d"},{"version":"1fd4e4a76d581afa0b30934a0b3d783a3dc49eae23c56a28ba132c9afd85546e","signature":"85a26cb856fccd9541e89eaf40442b9d8551c81229694d4c4eff4979170d67f0"},{"version":"0b163aaa61d30a67368a84aecf9fa70eba5f9d7348d80bcb44a0f8dca1d57e90","signature":"6acbac5f8338c32c1c028a4baa25c4c2307e0dd6415a8f2b120336f4e8e62c21"},{"version":"3d7dcccbd1139fc6439e09eb05b3c37982318ea0ee1dbb9c8aa022a925c1ef8c","signature":"f9eaf7e285d7b6475831e080fc97c6ea0e6109e3bc390f4d974e8659479f5b05"},{"version":"83c0ecb08799a680ec198599743515584081a0dced33e5ddc2eb244ad63e5861","signature":"487671e7112de8c335b5ea0bab25c644e732c2f560412cb145e5b2df205f5890"},{"version":"ce3353cbd71b26b15827425374f5e5239ee76fd5fe001a3833613481f8cd1b22","signature":"b8d933e41cf2c74ed13b850b3345f655f8691c2ccafd010b5a18525a4d368560"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"3081d3412a9df06395258f213ac6ac283b769cfe00763d60d6e66b9fb8ac7822","signature":"b2d5ac12ea54c941ac2de864e614c2c2fcc4247b525187d512cea9a34803e756"},{"version":"68e4a88bd709b330f03e491b3cea64d79febb7714826ab75f371f9af2863e20b","signature":"54ea4a5c59633594292216859856d591ff136c742aa678a194119daffd260c2d"},{"version":"9664d30e60ebc65b5c08ca0b7fb617755261b9edbbbec9792bf9de0d60ed91e1","signature":"7ca81730c839fcaa39f1459de556d77278bdc70e33b392e7d3b3922a7d103844"},"37774ab36dda9db58e212a5ccbbc9d84bee7891438db2c9e47d2e40a5e83a9ca",{"version":"59429b16276cf56a2ccf3cd97e9fce5278e396aefed033ade35c41003541c9e8","signature":"4c93c672a6baf9113f026f35563a4bc61096148a213126dbc54b72eb13d1721f"},{"version":"c87e7720cd5817616a30615f17a3aec00feb70088e8a541420fbc93620fb546d","signature":"141589483c43bdb01f3bb60ed5c546a16a4105255ddcb1423a84da5ddaa4fbee"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"3dc09df1f611baf7e926bc04e75aeac42446ccfcd6cbd45e54ec642945f5e275","signature":"8f7ce0b7ab25a480cc718e253bd77e13a2d71ed369619a352ac86062d83f470c"},{"version":"c653fb184a597812a8f9dad6c7a4815cb1681217d63e00e0925e28f41a2897c6","signature":"ef60e318315ffa92181a14b6337932137fb372532c9d67d7669c7210ebb47fc1"},{"version":"939cbd7c40f8ad7413332cda83b3e0f9d0445a19753aa784e830c23dd6205e63","signature":"0984353690e066528720f4566cf98f3e110081bce3b1bcbcb68837ff51a77d29"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"40c90283593dcb7b8db5e562a1e45cea40552fa950c2116b065872072f0f00bc","signature":"c8cfccbcf6f15ff603d3cc83cae595559841a5ab3667a872f0af8105f06dc4b6"},{"version":"dd735943712bd60d800c6d04e4843c5df5d4ab5f82f0bd7cfd92a9720bed68a1","signature":"4dde60feac128d3a01aca76866b98be66c5beb801ce71207e6899395752bc350"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"2f2ca3d80d5bb6481e3312ee3081abaa174a4db7a76a33791651394b078e0826","signature":"c9ab7e4d10eba0d52c2b7c50a9c4ead9c2135b91abd0334260e9bee154a70477"},{"version":"c9d85a5ccf5b3c1f118a59e3d1e2d9f578a7ec7ca573d2cf91edfa74d9ad747a","signature":"3159c9205ee969b852ee0d6f0612b141fe184df2c7ffd62965abb06a3131fc2e"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"f046fb85786c185b7974eea512532ef08241cb48bc5a306c687b8498e76e7630","signature":"f7ead152102738a496b232aeb3a0fdb895ebfa20cfe3b2c08713226c9eed5294"},{"version":"ad62c4f1abf37ea5d704b8adf81d045a34371443439139c17e8a1b523efbe584","signature":"fc462915e91ed0f12874a857833b63e49a4edfaa49a0efcdc63df96156f778e5"},{"version":"e4487eb18ded59fe5b1427dc99788c73089a0464540a56548eedbe0c7b4e8725","signature":"68465b0fbf2bbd68010b4b4859aa9478ca8b855d47725b77642fbfae7fc86fe1"},{"version":"ca6b3b1d4fba1d2376d76a225e60c5551818f97d2888a5e5476a1589df24482f","signature":"3bdfd75c38893c984347eb4a4eaa10af1f278059aac819cba5d5fdc0b02ec5a1"},{"version":"1ed64b0e07fd9d219d81a127a3565f2d6b3155c3ff7db5dba2c82d6ae0719f09","signature":"c05b6bea798ec0027e73068ad9d2bd78c071febec22a8ac42a8c26a5bef0fcfc"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"fd9be6cbb9e58125722bc31a9e0b0d115fe4e202b02e9276cc7fe76ccf47d281","signature":"f22890a9cbff67b5a8c2653e3eca9c64fcfdfc362f064cbda081ad433f090e84"},{"version":"30d300ab19c245ccc7626d9685e318ab7b960d892b7be3925e363221b83120df","signature":"7c89d28064df8c751b53f98c605bf0d23b9cfff049f69e68efee0b00822b588c"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"12457e40ce9f4ac1c4409b7e325ca5a8ba0a13403d8d7c8df361999210cff0a8","signature":"e505a41b12180ef76afe22a7aedc9b17bc6edb890521d8e25fad974ca3c34708"},{"version":"fa380aeadd542887741e724633924817ffcf708cdef72c0e0fe6462962ae9bf6","signature":"3ae66058428c41105f608a9fe0b6e33ed86bc8eb206208ba415b8607c78d2701"},{"version":"1c4dfd7f534c210ddadf9640218a39e524d238399976ad27e59b79b55c51a2a3","signature":"bf9ac26e85c09a516a6c7780242f07ed9ace78845d8b1163edebe06782591b78"},{"version":"34940eafea13b81ee62c55dc79592292cb163dd3840589b3a35402aa61d25ae8","signature":"9c78975d6d03baa4f4a524c2e7a9ea85c917d6204175bcd5f977ca19481aeba9"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"19d65066e07f5166d3ad8c267a4c2e66a38b6d467e500e4e9c366aab37748c00","signature":"6168e57c2ffd9ed4a7a908ec93064f744eae5979828bc801f96a12949168cae6"},{"version":"0224013447bd48a044ca1864cd203ca87c64956df2c0058f7aeacfcb1bfa02b0","signature":"3761aebebe9b97e5566bf74207f12b20e7617fab1aea3f9a1f571852e5b7111c"},{"version":"dfed8c9cb1291bdce2da762f5e145225675b5bf1e228254dfa89ac82ad9ea53b","signature":"5d2e0fc55569db714ffe1b5f5061c392835601d8634036a6aabb77f2ac9f1b72"},{"version":"70e8b7a6c43275b5725185964b27f17225ee7a0f6e434dc1e749ace69871af73","signature":"11c320f2052065b7097c3dc65fb3795a57ba4c761db3805b17058983fee186df"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"0d3264be383b418e5443962d5de3a8bb98b0f71bac843e3e5c9e9761c5e02547","signature":"c83efcd6a50520bb2449e7d1eb3ea58bf5ae89de54151b9f23a6e2d1d1be0d8d"},{"version":"513c5a7b1cb1a37ac8434da668afbbbd40dec754e7ad9c583b1ac03075a174e7","signature":"e9f788a33ce3c5580afb21a6f26ea3c0727a27c549cacff7c46d4199a82e87b9"},{"version":"cb02bddcde2a852d45f84366d0b786551dbfbc38bc17e03dd183d58d9f55dc06","signature":"aa6247d9d148de414fb30b924e0a4e06f8c7e8d29a6dd2cb6b7e8879c67b512d"},{"version":"1bb316ca8fd5107cb25ae7350679cd504dde3bb43e3c0bb5e59f34c59b70d98e","signature":"ba3eb36ec8a0013ab80de67ab3e817a6cd7b159dd049fd92e8d9bab77c2adebe"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"98fd5329e3fa465c79ceee786ff11b7d3acd772af1c9b9172d652f962f7a31d2","signature":"3e94603b58fac5edb4c7b7e3c25436d739f628e1dd6837d0bfef3f57f2eaff32"},{"version":"b8fa0906669ed9433fff06440634bc8a8dafaf4d206357ac023c579310d4764d","signature":"39651759c403ed71d40ffd48d5292e96793c7cab26f14e7147f02069c6e909d8"},{"version":"656fbda4f7b72dbca04fa8967c57623cc012b3a264a5f0250657f26128092da2","signature":"c2fb769bb50ea3b0002098f96ca4c89ad899d265a2396b7969743a5c7eb16d47"},{"version":"0a538d9ae5caed04254c6869e7158ebfb4c70a4f7d9f44fcefe25ab7fa4a268d","signature":"de41113b7767088520dbb75cc6b76e08ae253d87307a71121af73f0a4a8d6250"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"4e57b7654d5ab4e6380b71386b067ee08b2f4e317de8cf13e287affc7ab3e320","signature":"10fbcf34dd8778351e25c4bf54c9a091bf4f474f79c0527b922c86d5c79bdf25"},{"version":"afb1cf42798b2e41b6e78d9a39d35b8cf89d8cf74962b9bdd2593c2969ce42a2","signature":"1f7a9f45f665828c895907c46d878a89ffa385a8e130a65ba2339d191bec579f"},{"version":"dbb765a2b1cb620282ce168bf7076289f3ac77179b198f32fc4c1a04c54b1258","signature":"77c2e308d5e8261040c7822c032c1aeb5dcd700a511fabc6274aa55cb26a850e"},{"version":"1c19dc6e8da4db924cc3612baf0f133d51cb434a829fe4b3f5fd46d5bf9edd93","signature":"bf36af7d78e105ab2d56ecf29b558bb43cc0efee97bec38d20f3ac724bf73fbe"},{"version":"fc2d82080aa392ee2db40f4ca58ddbcda38152cd1fbcf62e514fdc3ed4819960","signature":"7c2b6ec272265e3566a74078398c16aa1b7602f141e6e9562f3c9c96a33ad0aa"},"6b48d9874d73fbb8c39c79ac363e045c0d4f2165086f1992c1c7abc2217a047d","376e8f5309bad5451b94d5cfb636b1c350d1d0ca13703d3a9a5f193caba14269",{"version":"9cfe3c1270c49c14197b89d8aa471023db48faa4d051593d04ed8bf8141ebc3f","signature":"da21fe91ee5d9b147db28d82bf62914b72f7a81afcea8cf20439c162c69bfa48"},"a2a5a1b7eda98bc513def491810deff2e575c292423e665eeea8c48a0f3b6738","e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57"],"options":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":4,"module":99,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":99},"fileIdsList":[[65,66],[67],[69,70,71,72],[67,68,73,74,75,76,77,78],[62],[58,59,60,61],[62,63,79,82,85,88,162],[63,86,87],[63,162],[63,79,89,90,162],[63,79,82,93],[63,93],[63,91,92],[63,79,85,94,95,162],[63,79,82,98],[63,98],[63,96,97],[63,79,104,105,108],[62,63,79,85,101,102,103,108],[63,108],[62,63,79,82,108,162],[63,106,107],[63,79,82,162],[63,80,81],[63,64,82,88,93,98,108,112,115,119,122,161],[62,63,79,112],[63,109,110,111],[63],[62,63,79,125],[63,123,124],[63,79,127,128,131],[62,63,79,131],[62,63,79,126,131,163],[63,129,130],[62,63,79,163],[62,63,79,85,134,162],[63,132,133],[63,125,131,134,139,144,149,154,160],[63,79,135,136,139],[62,63,79,85,139,162],[63,137,138],[63,79,140,141,144],[62,63,79,85,144,162],[63,142,143],[63,79,145,146,149],[62,63,79,82,85,149,162],[63,147,148],[63,79,150,151,162],[62,63,79,85,154,162],[63,152,153],[63,160,162],[63,155,156,159],[63,157,158],[63,157],[62,63,79,98,115],[63,113,114],[62,63,79,85,116,119,162],[63,79,82,119],[63,117,118],[63,79,122,162],[63,120,121],[63,99,100],[62,63,79],[62,63],[63,85,101,162],[63,79,163],[63,79,162],[63,83,84],[88],[162],[93],[91,92],[98],[96,97],[108],[62,108],[82],[80,81],[64,82,88,93,98,108,112,115,119,122,161],[112],[125],[131],[129,130],[62,79,163],[134],[125,131,134,139,144,149,154,160],[139],[144],[149],[154],[160,162],[157,158],[157],[115],[119,162],[119],[122],[163]],"referencedMap":[[67,1],[66,2],[73,3],[79,4],[164,5],[62,6],[63,5],[86,7],[88,8],[87,9],[91,10],[90,11],[89,12],[93,13],[92,9],[96,14],[94,15],[95,16],[98,17],[97,9],[106,18],[105,19],[102,20],[103,21],[104,19],[108,22],[107,9],[80,23],[82,24],[81,9],[162,25],[109,26],[112,27],[110,9],[111,28],[123,29],[125,30],[124,9],[129,31],[126,32],[128,33],[127,33],[131,34],[130,35],[132,36],[134,37],[133,9],[161,38],[137,39],[136,40],[135,40],[139,41],[138,9],[142,42],[140,43],[141,43],[144,44],[143,9],[147,45],[145,46],[146,46],[149,47],[148,9],[152,48],[150,49],[151,49],[154,50],[153,9],[155,51],[160,52],[156,28],[159,53],[158,54],[157,28],[113,55],[115,56],[114,9],[117,57],[116,58],[119,59],[118,9],[120,60],[122,61],[121,9],[64,28],[101,62],[99,63],[100,64],[163,65],[84,66],[83,67],[85,68]],"exportedModulesMap":[[67,1],[66,2],[73,3],[79,4],[164,5],[62,6],[63,5],[86,69],[88,8],[87,70],[91,70],[90,71],[89,71],[93,72],[92,70],[96,70],[94,73],[95,73],[98,74],[97,70],[106,75],[105,75],[102,75],[103,76],[104,75],[108,22],[107,70],[80,77],[82,78],[81,70],[162,79],[109,80],[112,27],[110,70],[123,81],[125,30],[124,70],[129,82],[126,5],[128,82],[127,82],[131,83],[130,84],[132,85],[134,37],[133,70],[161,86],[137,87],[136,87],[135,87],[139,41],[138,70],[142,88],[140,88],[141,88],[144,44],[143,70],[147,89],[145,89],[146,89],[149,47],[148,70],[152,70],[150,90],[151,90],[154,50],[153,70],[155,91],[160,52],[159,92],[158,93],[113,94],[115,56],[114,70],[117,95],[116,96],[119,59],[118,70],[120,97],[122,61],[121,70],[101,62],[99,5],[100,5],[163,65],[84,98],[83,70],[85,68]],"semanticDiagnosticsPerFile":[67,65,66,68,69,72,73,70,71,74,75,76,79,77,78,60,164,58,62,63,165,61,59,11,12,16,15,2,17,18,19,20,21,22,23,24,3,4,28,25,26,27,29,30,31,5,32,33,34,35,6,36,37,38,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,55,1,10,57,56,14,13,86,88,87,91,90,89,93,92,96,94,95,98,97,106,105,102,103,104,108,107,80,82,81,162,109,112,110,111,123,125,124,129,126,128,127,131,130,132,134,133,161,137,136,135,139,138,142,140,141,144,143,147,145,146,149,148,152,150,151,154,153,155,160,156,159,158,157,113,115,114,117,116,119,118,120,122,121,64,101,99,100,163,84,83,85]},"version":"4.7.3"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.full.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/scheduler/tracing.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/@types/react/jsx-runtime.d.ts","../src/components/types.ts","../node_modules/@bodynarf/utils/api/types.d.ts","../node_modules/@bodynarf/utils/api/v1.d.ts","../node_modules/@bodynarf/utils/api/index.d.ts","../node_modules/@bodynarf/utils/array/index.d.ts","../node_modules/@bodynarf/utils/common/checks.d.ts","../node_modules/@bodynarf/utils/common/string.d.ts","../node_modules/@bodynarf/utils/common/type.d.ts","../node_modules/@bodynarf/utils/common/color.d.ts","../node_modules/@bodynarf/utils/common/index.d.ts","../node_modules/@bodynarf/utils/component/index.d.ts","../node_modules/@bodynarf/utils/function/index.d.ts","../node_modules/@bodynarf/utils/guid/index.d.ts","../node_modules/@bodynarf/utils/localstorage/index.d.ts","../node_modules/@bodynarf/utils/object/index.d.ts","../node_modules/@bodynarf/utils/index.d.ts","../src/components/icon/component/index.tsx","../src/components/icon/types.ts","../src/components/icon/index.ts","../src/utils/formvalidation.ts","../src/utils/dataattributes.ts","../src/utils/index.ts","../src/components/accordion/component/index.tsx","../src/components/accordion/types.ts","../src/components/accordion/index.ts","../src/components/anchor/components/simpleanchor/index.tsx","../src/components/anchor/components/anchorwithicon/index.tsx","../src/components/anchor/component/index.tsx","../src/components/anchor/types.ts","../src/components/anchor/index.ts","../src/components/button/components/buttonwithicon/index.tsx","../src/components/button/components/simplebutton/index.tsx","../src/components/button/component/index.tsx","../src/components/button/types.ts","../src/components/button/index.ts","../src/hooks/usecomponentoutsideclick.ts","../src/hooks/usepagination.ts","../src/hooks/index.ts","../src/components/dropdown/components/item/index.tsx","../src/components/dropdown/components/label/index.tsx","../src/components/dropdown/components/withlabel/index.tsx","../src/components/dropdown/components/compact/index.tsx","../src/components/dropdown/component/index.tsx","../src/components/dropdown/types.ts","../src/components/dropdown/index.ts","../src/components/paginator/component/index.tsx","../src/components/paginator/types.ts","../src/components/paginator/utils.ts","../src/components/paginator/index.ts","../src/components/search/component/index.tsx","../src/components/search/types.ts","../src/components/search/index.ts","../src/components/tabs/components/item/index.tsx","../src/components/tabs/component/index.tsx","../src/components/tabs/types.ts","../src/components/tabs/index.ts","../src/components/tag/component/index.tsx","../src/components/tag/types.ts","../src/components/tag/index.ts","../src/components/primitives/checkbox/component/index.tsx","../src/components/primitives/checkbox/types.ts","../src/components/primitives/checkbox/index.ts","../src/components/primitives/color/components/picker/index.tsx","../src/components/primitives/color/components/withoutlabel/index.tsx","../src/components/primitives/color/components/withlabel/index.tsx","../src/components/primitives/color/component/index.tsx","../src/components/primitives/color/types.ts","../src/components/primitives/color/index.ts","../src/components/primitives/date/component/index.tsx","../src/components/primitives/date/types.ts","../src/components/primitives/date/index.ts","../src/components/primitives/multiline/components/multilinewithoutlabel/index.tsx","../src/components/primitives/multiline/components/multilinewithlabel/index.tsx","../src/components/primitives/multiline/component/index.tsx","../src/components/primitives/multiline/types.ts","../src/components/primitives/multiline/index.ts","../src/components/primitives/number/components/withlabel/index.tsx","../src/components/primitives/number/components/withoutlabel/index.tsx","../src/components/primitives/number/component/index.tsx","../src/components/primitives/number/types.ts","../src/components/primitives/number/index.ts","../src/components/primitives/password/components/withlabel/index.tsx","../src/components/primitives/password/components/withoutlabel/index.tsx","../src/components/primitives/password/component/index.tsx","../src/components/primitives/password/types.ts","../src/components/primitives/password/index.ts","../src/components/primitives/text/components/textwithlabel/index.tsx","../src/components/primitives/text/components/textwithoutlabel/index.tsx","../src/components/primitives/text/component/index.tsx","../src/components/primitives/text/types.ts","../src/components/primitives/text/index.tsx","../src/components/primitives/types/baseprops.ts","../src/components/primitives/types/label.ts","../src/components/primitives/types/validation/status.ts","../src/components/primitives/types/validation/state.ts","../src/components/primitives/types/validation/index.ts","../src/components/primitives/types/index.ts","../src/components/primitives/index.ts","../src/components/index.ts","../src/index.ts","../node_modules/@types/react-dom/index.d.ts","../node_modules/@types/scheduler/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"d96fa8a56871904776165ceb8e00bd56127e1a017bb2664cae76223b5f815141",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"0bca3a2542a695559b16feba84fffa590ec45eb64f2bbe0ee5e303f7bade01b1","affectsGlobalScope":true},"af7fd2870746deed40e130fc0a3966de74e8f52a97ec114d0fbb35876ab05ca9",{"version":"aeb239ca42ca7d1c937c682f2bc7de68fb707e17bbb124fb1ea9a00b4981d68b","signature":"e1650ad86a0f6a2880b27b8a696820340e9fe1d0d1fdb3c441a83d8c019835b9"},"d9233f68f452aba034b1c313c86f1f66b55a643e163b5a7dc5e6c607295a8ae0","2ed7d4bd38b442e575a24d1a0e37f9a2be7dde68c98f3ecac8a2aa0a131547cb","8192fb4a8890f1b5a65c63fa400c7e5f4a54d5d7891f3d04e69c7ea6b413f63d",{"version":"e62d9d051c0c23b9caf0546ea5cc36accdb4b0ad50c22053abdb313f61da2a24","affectsGlobalScope":true},"c1272a15a581367a5e377b5360a728afa226f46ad21a86fff63b0e82310793d6",{"version":"753aaa44cbd887acd8855b130c5184c94c3e5efe7dd2d0bccad06a9793f5b36c","affectsGlobalScope":true},"f5d24abd9070bb444ef0c982370e5c6694205e892370ce68f51d719f9cadae3e","01d47f345a6b20cf4492c5462994a7047f15a8e2e187a3288fbcac0a21369132","5e85a49da3d1f931152d7abcc30b17e28616411631268f0e99ab975f2232c62a","3c7a6f8b953915b26e02845926ed5c8780fde6f58984e6253a3ffd367c0fae4a","d1a53a709aff7f0febcdf6d665a9cbf09545fee3c96b582a58a7a431c6f5f5a7","49b3a74068827cb2f821e388eff2944f4f37f2b05fe8f4251c8b108682858535","ccae88d01c121396b746719dbe09845b17a1b8e83a60c901f1fb7f60f9cc4355","1a83e4058abfccdd78757eeb8354ee338157fa2203b161972a414a1530d0e504","7b2e7305bbd101a47a234313bd59f53c4611f9c54b99bbfc110b8fff235b84b5",{"version":"4673a432917eadfa69fd4d95e22303080b1c71517b60ad45618458b46a7ecb98","signature":"842d3c9f145e76d6b195a1221270e5b4928a56fc6c504822776eb28bf6ba51a9"},{"version":"af610e957934a4c87f2f14a4432bc174dd9559852f43ca4491b174c34b957bec","signature":"1311907d2be567905c37cee4b73a74ee6fd4237b7056b55acc35aae40267f5e6"},{"version":"bbe9d0332501fb434278dc06d9957413675512c216810e6ec8f1622783974a3b","signature":"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701"},{"version":"0e0b848acd5bbccb3a0ed9e7f0c369ef7bd72a1a75358884d65b4ab467ebbded","signature":"9093a2b8f0158f5ef267fc5476fd62d22be672b0a2a4a5625b8270ec39b34633"},{"version":"706ada66d31d49245b50bea63e49929b48045b7a835c2a54ac19d8303677d0f5","signature":"a565ea57cc1a0f07499b8baee0582267aaf4cbfe945c0c555a18a583da871bd6"},"add2adbfe7be02c1fd07ee31e94848d35867813e5c97c8bfa2e3796c74187cd4",{"version":"55931588408439d3ceb728d8501c76781951b48e8517601833e27eba14e3711c","signature":"a26ee51d8502867ff0bf13a8134cc378ca45f90761031a624c3fff0a2ec55c49"},{"version":"f963649dea660a8cec2a8dca6be5ab6cc5f2197f59ef2bb0a221097b5e98cef6","signature":"f7b390a112577ee834e77d4b9debac5e52bff1ecd14ff6c8d42be8939e606c5e"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"0f4a2e4fe96e5fbbdaba80314d0fcc0a4b23177ae9469d4c028c5443f4b2c84c","signature":"be3cc323f752bd98a0038742942d78aa441b7ecf858049b98e77d27812280371"},{"version":"a0863fa24d7b9b72920510d102bbe36411a1bf03d91cbadd64aff2335d82a0ef","signature":"2c7a8689da833630342856acd509f7bd09024ee9ef9203ef1306a39670c8ef8a"},{"version":"e36bf10acaf61ac426734b34e37eb394e02c4c87d5d2e8706f9ee4d3647db8cb","signature":"6ea2ddd02e848480250a824388ebe934913d4d01dcce5f538135adfe6c40d977"},{"version":"85c4719949d319f8585841db4500f769f5273df202eff871384d29b1d500de07","signature":"a52a434c6c648a4dee91c932b5f1ad3595224d107dd6b4ae66e7df0d6a832a1e"},{"version":"bbe9d0332501fb434278dc06d9957413675512c216810e6ec8f1622783974a3b","signature":"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701"},{"version":"93a65d1e58734edf3e9b1baf02373463746336e22bb42d6ac02cef132fea4783","signature":"8ee91282a3e48421654af844d28e13cd09902caa3171f205f63b5bc803a5e580"},{"version":"07423025465fd4ed83782b7a8a317d9e9ea42d64bd742a8566ae48746ee7d1b8","signature":"951176a532bd470da9815f7998b41cc5ddb80887cf653c32c63a580ec4ce3aa2"},{"version":"c5f5c432a55bb415dd80cef7585a6a8d83eee7423ba9f785c65eccc55fcc7036","signature":"67b4cf149ab6491116d0e96444227eaef9be374d4a653ce97fdcb4ab68d723c4"},{"version":"49ea284c68b3575ed2bfbf5a24ddae0982b37455aab3232821c5de0dcf8daca5","signature":"9b0220f10f2a9d86017780bf4a18f91bb99c267937c4e419299d36bf98805c93"},{"version":"bbe9d0332501fb434278dc06d9957413675512c216810e6ec8f1622783974a3b","signature":"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701"},{"version":"254abcd057864a5843d84ae542d17114743c07a4917d9283473dc59b733db8ba","signature":"613af3d14fb07637688dae6dbc48c153282996da6e88a6f47ed19eaba604eb43"},{"version":"d1fc76cba8da499373e7cca7ec522f325308dde75d5c43227b535a1082a5b6b2","signature":"f7757a4421b5ccafa80cabc4bc88c50de7e4d55294dd342fc92a6d1eab4b27be"},"bfdd94e8e1f8df56a153931c298195fdac2a290f5e3c11983a43af0299c9c7b2",{"version":"4fe3b55e79117c0c3a1abc95ae7a743880e5cdac7a5c2be15ff5cd4f3f755a68","signature":"b567dc6146370c4942a6230e7ff5a50e866f603768a8c135f087d23a54d9484d"},{"version":"1fd4e4a76d581afa0b30934a0b3d783a3dc49eae23c56a28ba132c9afd85546e","signature":"85a26cb856fccd9541e89eaf40442b9d8551c81229694d4c4eff4979170d67f0"},{"version":"736bf5298b7ca76a55098fd32d1600f33e916e9c9af579bca1b21968e7a6f36e","signature":"6acbac5f8338c32c1c028a4baa25c4c2307e0dd6415a8f2b120336f4e8e62c21"},{"version":"0091cd47468b21f9c4f90897f23194094f025285f6d9b51b04c95e46a25477c9","signature":"f9eaf7e285d7b6475831e080fc97c6ea0e6109e3bc390f4d974e8659479f5b05"},{"version":"83c0ecb08799a680ec198599743515584081a0dced33e5ddc2eb244ad63e5861","signature":"487671e7112de8c335b5ea0bab25c644e732c2f560412cb145e5b2df205f5890"},{"version":"ce3353cbd71b26b15827425374f5e5239ee76fd5fe001a3833613481f8cd1b22","signature":"b8d933e41cf2c74ed13b850b3345f655f8691c2ccafd010b5a18525a4d368560"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"64d76d55cc2149e06b5003965a365bbfbde2191891f12a166634c67403eae8f4","signature":"383ea11e258295f26658a7411fdda2e759770adef7daa77dc2c484940f7e5a08"},{"version":"68e4a88bd709b330f03e491b3cea64d79febb7714826ab75f371f9af2863e20b","signature":"54ea4a5c59633594292216859856d591ff136c742aa678a194119daffd260c2d"},{"version":"9664d30e60ebc65b5c08ca0b7fb617755261b9edbbbec9792bf9de0d60ed91e1","signature":"7ca81730c839fcaa39f1459de556d77278bdc70e33b392e7d3b3922a7d103844"},"37774ab36dda9db58e212a5ccbbc9d84bee7891438db2c9e47d2e40a5e83a9ca",{"version":"59429b16276cf56a2ccf3cd97e9fce5278e396aefed033ade35c41003541c9e8","signature":"4c93c672a6baf9113f026f35563a4bc61096148a213126dbc54b72eb13d1721f"},{"version":"c87e7720cd5817616a30615f17a3aec00feb70088e8a541420fbc93620fb546d","signature":"141589483c43bdb01f3bb60ed5c546a16a4105255ddcb1423a84da5ddaa4fbee"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"3dc09df1f611baf7e926bc04e75aeac42446ccfcd6cbd45e54ec642945f5e275","signature":"8f7ce0b7ab25a480cc718e253bd77e13a2d71ed369619a352ac86062d83f470c"},{"version":"42ed5ed0d0a2e0ed5c65ac17fb5c2a81143c22b7bbbbedb5d6c489a32058cbcc","signature":"ef60e318315ffa92181a14b6337932137fb372532c9d67d7669c7210ebb47fc1"},{"version":"939cbd7c40f8ad7413332cda83b3e0f9d0445a19753aa784e830c23dd6205e63","signature":"0984353690e066528720f4566cf98f3e110081bce3b1bcbcb68837ff51a77d29"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"40c90283593dcb7b8db5e562a1e45cea40552fa950c2116b065872072f0f00bc","signature":"c8cfccbcf6f15ff603d3cc83cae595559841a5ab3667a872f0af8105f06dc4b6"},{"version":"dd735943712bd60d800c6d04e4843c5df5d4ab5f82f0bd7cfd92a9720bed68a1","signature":"4dde60feac128d3a01aca76866b98be66c5beb801ce71207e6899395752bc350"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"d0cd4e895b4a05f6a9a40829c284153d7f1214a8d3aa2038cfa95688bf94fe3b","signature":"e37093833f3cbe6116730cf517ee9f91c993bca4e9fb2f1759166f9c1fa5bb8e"},{"version":"d5e71e37c161c62026451b7eaa614e8504518a7d7a99698eb0d2f54a7f076e06","signature":"b906a3087553ec6d6d5159eaaa4fc78281a0fca72fc315814850165990127a9d"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"f046fb85786c185b7974eea512532ef08241cb48bc5a306c687b8498e76e7630","signature":"f7ead152102738a496b232aeb3a0fdb895ebfa20cfe3b2c08713226c9eed5294"},{"version":"3e14fa9fdb33863e22b78db94bb2dd83c2fecce3c599c57f1426721977e7b9e3","signature":"eff1d271f41740a120d372130af6b1db814a989b174645add5a81f47b2ddb8c1"},{"version":"9683f38abccb0705a54e1968ae49d6ceda0746f4e1778f1f3bf141daec10ed8c","signature":"1792018c236f494deca5a7b522654d42f65100fccd5fcc4ae245aaf1cec3b2e5"},{"version":"ca6b3b1d4fba1d2376d76a225e60c5551818f97d2888a5e5476a1589df24482f","signature":"3bdfd75c38893c984347eb4a4eaa10af1f278059aac819cba5d5fdc0b02ec5a1"},{"version":"a6d7a0460e085b4a0f946d76cbfaaa4f054bfbf712d7fa34cf8f2cd669f14e20","signature":"200e93a93abbb9d0c2917ec60c7a400bb9a7a6c222729e444bf981f67856a1cf"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"e6c80dc421f23f4ef039b0b4dfa7234bb6f27669752be7eae67e115159630cfe","signature":"f22890a9cbff67b5a8c2653e3eca9c64fcfdfc362f064cbda081ad433f090e84"},{"version":"30d300ab19c245ccc7626d9685e318ab7b960d892b7be3925e363221b83120df","signature":"7c89d28064df8c751b53f98c605bf0d23b9cfff049f69e68efee0b00822b588c"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"c91233e71ff4fbe523bcf2eed59127e5169f07eec701337b9170caa853192e35","signature":"527d3de3c8760093a566396a1dbe2c83cb32f6c95bb2ae902081d6ccc686a1c6"},{"version":"7287fe0f2b1f03cb6f132050e3289df8e06e20cadd3d5f9333ce1f7dd60dfe92","signature":"e88f39bf7909b4d6558f230134ea2d593328d23d032105d5af4031d33e3d0904"},{"version":"1c4dfd7f534c210ddadf9640218a39e524d238399976ad27e59b79b55c51a2a3","signature":"bf9ac26e85c09a516a6c7780242f07ed9ace78845d8b1163edebe06782591b78"},{"version":"bb593ba4e9db09007c085bc1ae4bbca1a55ee8c5fe7b37f8b0988cfbbc2a5635","signature":"ae07158d53bfd0339c77e5bfd7d993400dcf186fe345a5cdebab8cb64c0c6ece"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"b5c8398cab2487ca8731f1a856e3d263e9b2ee38c8deb8dda17a101af6e60a2d","signature":"6168e57c2ffd9ed4a7a908ec93064f744eae5979828bc801f96a12949168cae6"},{"version":"bee7ed7eb2a3d198c4a3b7bce72635e53ec0737ca68f2adb879411a46d1c2d5b","signature":"3761aebebe9b97e5566bf74207f12b20e7617fab1aea3f9a1f571852e5b7111c"},{"version":"dfed8c9cb1291bdce2da762f5e145225675b5bf1e228254dfa89ac82ad9ea53b","signature":"5d2e0fc55569db714ffe1b5f5061c392835601d8634036a6aabb77f2ac9f1b72"},{"version":"70e8b7a6c43275b5725185964b27f17225ee7a0f6e434dc1e749ace69871af73","signature":"11c320f2052065b7097c3dc65fb3795a57ba4c761db3805b17058983fee186df"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"0d3264be383b418e5443962d5de3a8bb98b0f71bac843e3e5c9e9761c5e02547","signature":"c83efcd6a50520bb2449e7d1eb3ea58bf5ae89de54151b9f23a6e2d1d1be0d8d"},{"version":"513c5a7b1cb1a37ac8434da668afbbbd40dec754e7ad9c583b1ac03075a174e7","signature":"e9f788a33ce3c5580afb21a6f26ea3c0727a27c549cacff7c46d4199a82e87b9"},{"version":"cb02bddcde2a852d45f84366d0b786551dbfbc38bc17e03dd183d58d9f55dc06","signature":"aa6247d9d148de414fb30b924e0a4e06f8c7e8d29a6dd2cb6b7e8879c67b512d"},{"version":"1bb316ca8fd5107cb25ae7350679cd504dde3bb43e3c0bb5e59f34c59b70d98e","signature":"ba3eb36ec8a0013ab80de67ab3e817a6cd7b159dd049fd92e8d9bab77c2adebe"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"98fd5329e3fa465c79ceee786ff11b7d3acd772af1c9b9172d652f962f7a31d2","signature":"3e94603b58fac5edb4c7b7e3c25436d739f628e1dd6837d0bfef3f57f2eaff32"},{"version":"b8fa0906669ed9433fff06440634bc8a8dafaf4d206357ac023c579310d4764d","signature":"39651759c403ed71d40ffd48d5292e96793c7cab26f14e7147f02069c6e909d8"},{"version":"656fbda4f7b72dbca04fa8967c57623cc012b3a264a5f0250657f26128092da2","signature":"c2fb769bb50ea3b0002098f96ca4c89ad899d265a2396b7969743a5c7eb16d47"},{"version":"0a538d9ae5caed04254c6869e7158ebfb4c70a4f7d9f44fcefe25ab7fa4a268d","signature":"de41113b7767088520dbb75cc6b76e08ae253d87307a71121af73f0a4a8d6250"},"b4fe029b8e4dc8653fa2499e86df17c51d2b17388379b7831fe5f4c72e7ee701",{"version":"4e57b7654d5ab4e6380b71386b067ee08b2f4e317de8cf13e287affc7ab3e320","signature":"10fbcf34dd8778351e25c4bf54c9a091bf4f474f79c0527b922c86d5c79bdf25"},{"version":"afb1cf42798b2e41b6e78d9a39d35b8cf89d8cf74962b9bdd2593c2969ce42a2","signature":"1f7a9f45f665828c895907c46d878a89ffa385a8e130a65ba2339d191bec579f"},{"version":"dbb765a2b1cb620282ce168bf7076289f3ac77179b198f32fc4c1a04c54b1258","signature":"77c2e308d5e8261040c7822c032c1aeb5dcd700a511fabc6274aa55cb26a850e"},{"version":"1c19dc6e8da4db924cc3612baf0f133d51cb434a829fe4b3f5fd46d5bf9edd93","signature":"bf36af7d78e105ab2d56ecf29b558bb43cc0efee97bec38d20f3ac724bf73fbe"},{"version":"fc2d82080aa392ee2db40f4ca58ddbcda38152cd1fbcf62e514fdc3ed4819960","signature":"7c2b6ec272265e3566a74078398c16aa1b7602f141e6e9562f3c9c96a33ad0aa"},"6b48d9874d73fbb8c39c79ac363e045c0d4f2165086f1992c1c7abc2217a047d","376e8f5309bad5451b94d5cfb636b1c350d1d0ca13703d3a9a5f193caba14269",{"version":"9cfe3c1270c49c14197b89d8aa471023db48faa4d051593d04ed8bf8141ebc3f","signature":"da21fe91ee5d9b147db28d82bf62914b72f7a81afcea8cf20439c162c69bfa48"},"a2a5a1b7eda98bc513def491810deff2e575c292423e665eeea8c48a0f3b6738","e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57"],"options":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":4,"module":99,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":99},"fileIdsList":[[65,66],[67],[69,70,71,72],[67,68,73,74,75,76,77,78],[62],[58,59,60,61],[62,63,79,82,85,88,162],[63,86,87],[63,162],[63,79,89,90,162],[63,79,82,93],[63,93],[63,91,92],[63,79,85,94,95,162],[63,79,82,98],[63,98],[63,96,97],[63,79,104,105,108],[62,63,79,85,101,102,103,108],[63,108],[62,63,79,82,108,162],[63,106,107],[63,79,82,162],[63,80,81],[63,64,82,88,93,98,108,112,115,119,122,161],[62,63,79,112],[63,109,110,111],[63],[62,63,79,125],[63,123,124],[63,79,127,128,131],[62,63,79,131],[62,63,79,126,131,163],[63,129,130],[62,63,79,163],[62,63,79,85,134,162],[63,132,133],[63,125,131,134,139,144,149,154,160],[63,79,135,136,139],[62,63,79,85,139,162],[63,137,138],[63,79,140,141,144],[62,63,79,85,144,162],[63,142,143],[63,79,145,146,149],[62,63,79,82,85,149,162],[63,147,148],[63,79,150,151,162],[62,63,79,85,154,162],[63,152,153],[63,160,162],[63,155,156,159],[63,157,158],[63,157],[62,63,79,98,115],[63,113,114],[62,63,79,85,116,119,162],[63,79,82,119],[63,117,118],[63,79,122,162],[63,120,121],[63,99,100],[62,63,79],[62,63],[63,85,101,162],[63,79,163],[63,79,162],[63,83,84],[88],[162],[93],[91,92],[98],[96,97],[108],[62,108],[82],[80,81],[64,82,88,93,98,108,112,115,119,122,161],[112],[125],[131],[129,130],[62,79,163],[134],[125,131,134,139,144,149,154,160],[139],[144],[149],[154],[160,162],[157,158],[157],[115],[119,162],[119],[122],[163]],"referencedMap":[[67,1],[66,2],[73,3],[79,4],[164,5],[62,6],[63,5],[86,7],[88,8],[87,9],[91,10],[90,11],[89,12],[93,13],[92,9],[96,14],[94,15],[95,16],[98,17],[97,9],[106,18],[105,19],[102,20],[103,21],[104,19],[108,22],[107,9],[80,23],[82,24],[81,9],[162,25],[109,26],[112,27],[110,9],[111,28],[123,29],[125,30],[124,9],[129,31],[126,32],[128,33],[127,33],[131,34],[130,35],[132,36],[134,37],[133,9],[161,38],[137,39],[136,40],[135,40],[139,41],[138,9],[142,42],[140,43],[141,43],[144,44],[143,9],[147,45],[145,46],[146,46],[149,47],[148,9],[152,48],[150,49],[151,49],[154,50],[153,9],[155,51],[160,52],[156,28],[159,53],[158,54],[157,28],[113,55],[115,56],[114,9],[117,57],[116,58],[119,59],[118,9],[120,60],[122,61],[121,9],[64,28],[101,62],[99,63],[100,64],[163,65],[84,66],[83,67],[85,68]],"exportedModulesMap":[[67,1],[66,2],[73,3],[79,4],[164,5],[62,6],[63,5],[86,69],[88,8],[87,70],[91,70],[90,71],[89,71],[93,72],[92,70],[96,70],[94,73],[95,73],[98,74],[97,70],[106,75],[105,75],[102,75],[103,76],[104,75],[108,22],[107,70],[80,77],[82,78],[81,70],[162,79],[109,80],[112,27],[110,70],[123,81],[125,30],[124,70],[129,82],[126,5],[128,82],[127,82],[131,83],[130,84],[132,85],[134,37],[133,70],[161,86],[137,87],[136,87],[135,87],[139,41],[138,70],[142,88],[140,88],[141,88],[144,44],[143,70],[147,89],[145,89],[146,89],[149,47],[148,70],[152,70],[150,90],[151,90],[154,50],[153,70],[155,91],[160,52],[159,92],[158,93],[113,94],[115,56],[114,70],[117,95],[116,96],[119,59],[118,70],[120,97],[122,61],[121,70],[101,62],[99,5],[100,5],[163,65],[84,98],[83,70],[85,68]],"semanticDiagnosticsPerFile":[67,65,66,68,69,72,73,70,71,74,75,76,79,77,78,60,164,58,62,63,165,61,59,11,12,16,15,2,17,18,19,20,21,22,23,24,3,4,28,25,26,27,29,30,31,5,32,33,34,35,6,36,37,38,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,55,1,10,57,56,14,13,86,88,87,91,90,89,93,92,96,94,95,98,97,106,105,102,103,104,108,107,80,82,81,162,109,112,110,111,123,125,124,129,126,128,127,131,130,132,134,133,161,137,136,135,139,138,142,140,141,144,143,147,145,146,149,148,152,150,151,154,153,155,160,156,159,158,157,113,115,114,117,116,119,118,120,122,121,64,101,99,100,163,84,83,85]},"version":"4.7.3"}
|