react-miui 0.15.2 → 0.15.5
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/CHANGELOG.md +24 -1
- package/dist/components/form/choice/Choice.d.ts +8 -5
- package/dist/components/form/choice/Choice.d.ts.map +1 -1
- package/dist/components/form/choice/Choice.js +4 -1
- package/dist/components/form/choice/Choice.js.map +1 -1
- package/dist/components/form/choice/Choice.module.scss +14 -1
- package/dist/components/form/choice/ChoiceItem.d.ts +4 -4
- package/dist/components/form/choice/ChoiceItem.d.ts.map +1 -1
- package/dist/components/form/choice/ChoiceItem.js.map +1 -1
- package/dist/components/layout/header/Header.module.scss +1 -0
- package/dist/components/layout/header/StickyHeader.d.ts +1 -0
- package/dist/components/layout/header/StickyHeader.d.ts.map +1 -1
- package/dist/components/layout/header/StickyHeader.js +1 -1
- package/dist/components/layout/header/StickyHeader.js.map +1 -1
- package/dist/components/layout/table/Table.js +1 -1
- package/dist/components/ui/pop/Pop.module.scss +28 -27
- package/dist/components/ui/pop/PopOption.d.ts.map +1 -1
- package/dist/components/ui/pop/PopOption.js +3 -3
- package/dist/components/ui/pop/PopOption.js.map +1 -1
- package/dist/components/ui/tabs/Selector.d.ts +3 -3
- package/dist/components/ui/tabs/Selector.d.ts.map +1 -1
- package/dist/components/ui/tabs/Selector.js.map +1 -1
- package/dist/components/utils/If.d.ts +7 -0
- package/dist/components/utils/If.d.ts.map +1 -0
- package/dist/components/utils/If.js +15 -0
- package/dist/components/utils/If.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/types/form.d.ts +1 -1
- package/dist/types/form.d.ts.map +1 -1
- package/dist/utils/toObjectValue.d.ts +1 -1
- package/dist/utils/toObjectValue.d.ts.map +1 -1
- package/dist/utils/toObjectValue.js.map +1 -1
- package/docs/assets/js/search.js +1 -1
- package/docs/assets/js/search.json +1 -1
- package/docs/classes/Drawer.html +21 -18
- package/docs/classes/Pop.html +21 -18
- package/docs/classes/ToasterProvider.html +17 -14
- package/docs/enums/ICON.html +21 -18
- package/docs/index.html +13 -10
- package/docs/modules/Item.html +3 -3
- package/docs/modules/List.html +3 -3
- package/docs/modules/Modal.html +3 -3
- package/docs/modules/ModalButtons.html +3 -3
- package/docs/modules/Section.html +3 -3
- package/docs/modules/StickyHeader.html +4 -4
- package/docs/modules.html +111 -59
- package/docs/pages/Tutorials/Test.html +3 -3
- package/esm/components/form/choice/Choice.d.ts +8 -5
- package/esm/components/form/choice/Choice.d.ts.map +1 -1
- package/esm/components/form/choice/Choice.js +5 -2
- package/esm/components/form/choice/Choice.js.map +1 -1
- package/esm/components/form/choice/Choice.module.scss +14 -1
- package/esm/components/form/choice/ChoiceItem.d.ts +4 -4
- package/esm/components/form/choice/ChoiceItem.d.ts.map +1 -1
- package/esm/components/form/choice/ChoiceItem.js.map +1 -1
- package/esm/components/layout/header/Header.module.scss +1 -0
- package/esm/components/layout/header/StickyHeader.d.ts +1 -0
- package/esm/components/layout/header/StickyHeader.d.ts.map +1 -1
- package/esm/components/layout/header/StickyHeader.js +1 -1
- package/esm/components/layout/header/StickyHeader.js.map +1 -1
- package/esm/components/layout/table/Table.js +1 -1
- package/esm/components/ui/pop/Pop.module.scss +28 -27
- package/esm/components/ui/pop/PopOption.d.ts.map +1 -1
- package/esm/components/ui/pop/PopOption.js +3 -3
- package/esm/components/ui/pop/PopOption.js.map +1 -1
- package/esm/components/ui/tabs/Selector.d.ts +3 -3
- package/esm/components/ui/tabs/Selector.d.ts.map +1 -1
- package/esm/components/ui/tabs/Selector.js.map +1 -1
- package/esm/components/utils/If.d.ts +7 -0
- package/esm/components/utils/If.d.ts.map +1 -0
- package/esm/components/utils/If.js +9 -0
- package/esm/components/utils/If.js.map +1 -0
- package/esm/index.d.ts +1 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +1 -0
- package/esm/index.js.map +1 -1
- package/esm/types/form.d.ts +1 -1
- package/esm/types/form.d.ts.map +1 -1
- package/esm/utils/toObjectValue.d.ts +1 -1
- package/esm/utils/toObjectValue.d.ts.map +1 -1
- package/esm/utils/toObjectValue.js.map +1 -1
- package/package.json +1 -1
- package/src/components/form/choice/Choice.module.scss +14 -1
- package/src/components/form/choice/Choice.tsx +22 -7
- package/src/components/form/choice/ChoiceItem.tsx +5 -5
- package/src/components/layout/header/Header.module.scss +1 -0
- package/src/components/layout/header/StickyHeader.tsx +2 -1
- package/src/components/layout/table/Table.tsx +1 -1
- package/src/components/ui/pop/Pop.module.scss +28 -27
- package/src/components/ui/pop/PopOption.tsx +4 -2
- package/src/components/ui/tabs/Selector.tsx +3 -3
- package/src/components/utils/If.tsx +14 -0
- package/src/demo/Main.module.scss +6 -0
- package/src/demo/Main.tsx +6 -15
- package/src/demo/components/form/Choice.module.scss +7 -0
- package/src/demo/components/form/Choice.tsx +46 -2
- package/src/demo/componentsMap.ts +7 -1
- package/src/index.ts +1 -0
- package/src/types/form.ts +1 -1
- package/src/utils/toObjectValue.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,30 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
4
4
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
-
## [0.15.
|
|
6
|
+
## [0.15.5] - 2022-05-06
|
|
7
|
+
### Added
|
|
8
|
+
- `If` helper component
|
|
9
|
+
### Changed
|
|
10
|
+
- added `left` variant for `Choice`
|
|
11
|
+
### Fixed
|
|
12
|
+
- `Choice` words wrapping
|
|
13
|
+
- too generic css selectors causing problems within `PopOption` sometimes
|
|
14
|
+
### Dev
|
|
15
|
+
- styles upgrade for demo
|
|
16
|
+
|
|
17
|
+
## [0.15.4] - 2022-04-19
|
|
18
|
+
### Added
|
|
19
|
+
- `className` support for `StickyHeader` and `Choice`
|
|
20
|
+
### Changed
|
|
21
|
+
- `Choice` is no longer all wide by default (available via variant)
|
|
22
|
+
- background clipping for header, improves custom colors support
|
|
23
|
+
- callback types improved for Choice
|
|
24
|
+
|
|
25
|
+
## [0.15.3] - 2022-04-07
|
|
26
|
+
### Fixed
|
|
27
|
+
- `Table` `wide` variant
|
|
28
|
+
|
|
29
|
+
## [0.15.2] - 2022-04-07
|
|
7
30
|
### Fixed
|
|
8
31
|
- variants support for `Table`
|
|
9
32
|
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import type { Value } from "../../../types/form";
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import type { ObjectValue, Value } from "../../../types/form";
|
|
3
|
+
declare type Variant = "wide" | "left";
|
|
4
|
+
interface Props<T extends string> {
|
|
5
|
+
values: Value<T>[];
|
|
5
6
|
value: string;
|
|
6
7
|
name: string;
|
|
7
|
-
onChange: (value:
|
|
8
|
+
onChange: (value: Exclude<Value<T>, ObjectValue>) => void;
|
|
9
|
+
className?: string;
|
|
10
|
+
variant?: Variant | Variant[];
|
|
8
11
|
}
|
|
9
|
-
declare const Choice: React.
|
|
12
|
+
declare const Choice: <T extends string>(props: Props<T>) => React.ReactElement<any, any> | null;
|
|
10
13
|
export { Choice };
|
|
11
14
|
//# sourceMappingURL=Choice.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Choice.d.ts","sourceRoot":"","sources":["../../../../src/components/form/choice/Choice.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"Choice.d.ts","sourceRoot":"","sources":["../../../../src/components/form/choice/Choice.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAK9D,aAAK,OAAO,GAAG,MAAM,GAAG,MAAM,CAAC;AAE/B,UAAU,KAAK,CAAC,CAAC,SAAS,MAAM;IAC5B,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK,IAAI,CAAC;IAC1D,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,EAAE,CAAC;CACjC;AAID,QAAA,MAAM,MAAM,4EAuBX,CAAC;AAEF,OAAO,EAAE,MAAM,EAAE,CAAC"}
|
|
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.Choice = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const classnames_1 = __importDefault(require("classnames"));
|
|
8
9
|
const utils_1 = require("../../../utils");
|
|
9
10
|
const ChoiceItem_1 = require("./ChoiceItem");
|
|
10
11
|
const Choice_module_scss_1 = __importDefault(require("./Choice.module.scss"));
|
|
@@ -13,7 +14,9 @@ const Choice = (props) => {
|
|
|
13
14
|
const opt = utils_1.toObjectValue(option);
|
|
14
15
|
return (react_1.default.createElement(ChoiceItem_1.ChoiceItem, { key: opt.value, name: props.name, value: opt, onChange: props.onChange, active: props.value === opt.value }));
|
|
15
16
|
});
|
|
16
|
-
|
|
17
|
+
const v = utils_1.makeVariants(props.variant);
|
|
18
|
+
const cls = classnames_1.default(Choice_module_scss_1.default.choice, props.className, { [Choice_module_scss_1.default.wide]: v.includes("wide") }, { [Choice_module_scss_1.default.left]: v.includes("left") });
|
|
19
|
+
return react_1.default.createElement("div", { className: cls }, opts);
|
|
17
20
|
};
|
|
18
21
|
exports.Choice = Choice;
|
|
19
22
|
//# sourceMappingURL=Choice.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Choice.js","sourceRoot":"","sources":["../../../../src/components/form/choice/Choice.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;
|
|
1
|
+
{"version":3,"file":"Choice.js","sourceRoot":"","sources":["../../../../src/components/form/choice/Choice.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAC1B,4DAAoC;AAGpC,0CAA6D;AAC7D,6CAA0C;AAC1C,8EAA0C;AAe1C,MAAM,MAAM,GAAG,CAAmB,KAAe,EAAkC,EAAE;IACjF,MAAM,IAAI,GAAG,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE;QACnC,MAAM,GAAG,GAAG,qBAAa,CAAC,MAAM,CAAC,CAAC;QAClC,OAAO,CACH,8BAAC,uBAAU,IACP,GAAG,EAAE,GAAG,CAAC,KAAK,EACd,IAAI,EAAE,KAAK,CAAC,IAAI,EAChB,KAAK,EAAE,GAAG,EACV,QAAQ,EAAE,KAAK,CAAC,QAAQ,EACxB,MAAM,EAAE,KAAK,CAAC,KAAK,KAAK,GAAG,CAAC,KAAK,GACnC,CACL,CAAC;IACN,CAAC,CAAC,CAAC;IAEH,MAAM,CAAC,GAAG,oBAAY,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAEtC,MAAM,GAAG,GAAG,oBAAU,CAClB,4BAAM,CAAC,MAAM,EAAE,KAAK,CAAC,SAAS,EAC9B,EAAE,CAAC,4BAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,EACrC,EAAE,CAAC,4BAAM,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,CACxC,CAAC;IAEF,OAAO,uCAAK,SAAS,EAAE,GAAG,IAAG,IAAI,CAAO,CAAC;AAC7C,CAAC,CAAC;AAEO,wBAAM"}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
span {
|
|
17
17
|
display: flex;
|
|
18
|
-
padding: 0;
|
|
18
|
+
padding: 0 1em;
|
|
19
19
|
flex: 1;
|
|
20
20
|
height: 100%;
|
|
21
21
|
align-items: center;
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
font-size: calc(24px / var(--ratio-font));
|
|
24
24
|
color: var(--choice-text);
|
|
25
25
|
background: var(--choice-bg);
|
|
26
|
+
white-space: nowrap;
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
display: flex;
|
|
@@ -30,6 +31,9 @@
|
|
|
30
31
|
position: relative;
|
|
31
32
|
border-radius: 8px;
|
|
32
33
|
overflow: hidden;
|
|
34
|
+
width: max-content;
|
|
35
|
+
margin-left: auto;
|
|
36
|
+
margin-right: auto;
|
|
33
37
|
|
|
34
38
|
label {
|
|
35
39
|
flex: 1;
|
|
@@ -41,3 +45,12 @@
|
|
|
41
45
|
}
|
|
42
46
|
}
|
|
43
47
|
}
|
|
48
|
+
|
|
49
|
+
.wide {
|
|
50
|
+
width: 100%;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.left {
|
|
54
|
+
margin-left: unset;
|
|
55
|
+
margin-right: unset;
|
|
56
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import type { ObjectValue } from "../../../types/form";
|
|
3
|
-
interface Props {
|
|
2
|
+
import type { ObjectValue, Value } from "../../../types/form";
|
|
3
|
+
interface Props<T extends string> {
|
|
4
4
|
name: string;
|
|
5
5
|
value: ObjectValue;
|
|
6
|
-
onChange: (value:
|
|
6
|
+
onChange: (value: Exclude<Value<T>, ObjectValue>) => void;
|
|
7
7
|
active: boolean;
|
|
8
8
|
}
|
|
9
|
-
declare const ChoiceItem: React.
|
|
9
|
+
declare const ChoiceItem: <T extends string>(props: Props<T>) => React.ReactElement<any, any> | null;
|
|
10
10
|
export { ChoiceItem };
|
|
11
11
|
//# sourceMappingURL=ChoiceItem.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChoiceItem.d.ts","sourceRoot":"","sources":["../../../../src/components/form/choice/ChoiceItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;AAC3C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"ChoiceItem.d.ts","sourceRoot":"","sources":["../../../../src/components/form/choice/ChoiceItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;AAC3C,OAAO,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAE9D,UAAU,KAAK,CAAC,CAAC,SAAS,MAAM;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,WAAW,CAAC;IACnB,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK,IAAI,CAAC;IAC1D,MAAM,EAAE,OAAO,CAAC;CACnB;AAED,QAAA,MAAM,UAAU,4EAiBf,CAAC;AAEF,OAAO,EAAE,UAAU,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChoiceItem.js","sourceRoot":"","sources":["../../../../src/components/form/choice/ChoiceItem.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA2C;AAU3C,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"ChoiceItem.js","sourceRoot":"","sources":["../../../../src/components/form/choice/ChoiceItem.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA2C;AAU3C,MAAM,UAAU,GAAG,CAAmB,KAAe,EAAkC,EAAE;IACrF,MAAM,YAAY,GAAG,mBAAW,CAAC,CAAC,CAAsC,EAAE,EAAE;QACxE,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,aAAa,CAAC,KAAuC,CAAC,CAAC;IAC5E,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC;IAErB,OAAO,CACH,yCAAO,GAAG,EAAE,KAAK,CAAC,KAAK,CAAC,KAAK,EAAE,QAAQ,EAAE,CAAC;QACtC,yCACI,IAAI,EAAE,OAAO,EACb,IAAI,EAAE,KAAK,CAAC,IAAI,EAChB,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC,KAAK,EACxB,OAAO,EAAE,KAAK,CAAC,MAAM,EACrB,QAAQ,EAAE,YAAY,GACxB;QACF,4CAAO,KAAK,CAAC,KAAK,CAAC,KAAK,CAAQ,CAC5B,CACX,CAAC;AACN,CAAC,CAAC;AAEO,gCAAU"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StickyHeader.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/header/StickyHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,UAAU,OAAO;IAEb,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;CACnC;AAED,UAAU,YAAY;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,UAAU,KAAK;IACX,QAAQ,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"StickyHeader.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/header/StickyHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,UAAU,OAAO;IAEb,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;CACnC;AAED,UAAU,YAAY;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,UAAU,KAAK;IACX,QAAQ,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;IAC/C,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,GAAG,OAoCrC,CAAC;AAMF,OAAO,EAAE,YAAY,EAAE,CAAC"}
|
|
@@ -21,7 +21,7 @@ const StickyHeader = (props) => {
|
|
|
21
21
|
}
|
|
22
22
|
header = header;
|
|
23
23
|
content = content;
|
|
24
|
-
const cls = classnames_1.default(StickyHeader_module_scss_1.default.stickyHeader, StickyHeader_module_scss_1.default[`stickyHeader--${position}`]);
|
|
24
|
+
const cls = classnames_1.default(StickyHeader_module_scss_1.default.stickyHeader, StickyHeader_module_scss_1.default[`stickyHeader--${position}`], props.className);
|
|
25
25
|
const contentCls = classnames_1.default(StickyHeader_module_scss_1.default.stickyHeader__content, StickyHeader_module_scss_1.default[`stickyHeader__content--${position}`], content.props.className);
|
|
26
26
|
return (react_1.default.createElement("div", { className: cls },
|
|
27
27
|
react_1.default.cloneElement(header, { position }),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StickyHeader.js","sourceRoot":"","sources":["../../../../src/components/layout/header/StickyHeader.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAC1B,4DAAoC;AAEpC,2CAAqC;AACrC,0FAAgD;AAEhD,MAAM,GAAG,GAAG,IAAI,SAAS,CAAC,mEAAmE,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"StickyHeader.js","sourceRoot":"","sources":["../../../../src/components/layout/header/StickyHeader.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAC1B,4DAAoC;AAEpC,2CAAqC;AACrC,0FAAgD;AAEhD,MAAM,GAAG,GAAG,IAAI,SAAS,CAAC,mEAAmE,CAAC,CAAC;AAgB/F,MAAM,YAAY,GAA8B,CAAC,KAAK,EAAE,EAAE;IACtD,MAAM,QAAQ,GAAG,KAAK,CAAC,QAAQ,IAAI,KAAK,CAAC;IAEzC,MAAM,QAAQ,GAAG,eAAK,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;IAGxD,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC,EAAE;QACvB,MAAM,GAAG,CAAC;KACb;IAED,IAAI,MAAM,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,QAAQ,IAAI,MAAM,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,kBAAM,CAAC,EACtF,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,QAAQ,IAAI,MAAM,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,KAAK,YAAY,CAAC,OAAO,CAAC,CAAC;IAE1G,IAAI,CAAC,MAAM,IAAI,CAAC,OAAO,EAAE;QACrB,MAAM,GAAG,CAAC;KACb;IAED,MAAM,GAAG,MAAe,CAAC;IACzB,OAAO,GAAG,OAAgB,CAAC;IAE3B,MAAM,GAAG,GAAG,oBAAU,CAAC,kCAAM,CAAC,YAAY,EAAE,kCAAM,CAAC,iBAAiB,QAAQ,EAAE,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,CAAC;IAElG,MAAM,UAAU,GAAG,oBAAU,CACzB,kCAAM,CAAC,qBAAqB,EAC5B,kCAAM,CAAC,0BAA0B,QAAQ,EAAE,CAAC,EAC3C,OAAmC,CAAC,KAAK,CAAC,SAAS,CACvD,CAAC;IAEF,OAAO,CACH,uCAAK,SAAS,EAAE,GAAG;QACd,eAAK,CAAC,YAAY,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,CAAC;QACzC,uCAAK,SAAS,EAAE,UAAU,IACrB,OAAO,CACN,CACJ,CACT,CAAC;AACN,CAAC,CAAC;AAMO,oCAAY;AAJrB,YAAY,CAAC,OAAO,GAAG,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;IACpC,OAAO,8DAAG,QAAQ,CAAI,CAAC;AAC3B,CAAC,CAAC"}
|
|
@@ -25,7 +25,7 @@ const Table = (_a) => {
|
|
|
25
25
|
const cls = classnames_1.default(className, {
|
|
26
26
|
[Table_module_scss_1.default.table]: !v.includes("raw"),
|
|
27
27
|
[Table_module_scss_1.default.striped]: v.includes("striped"),
|
|
28
|
-
[Table_module_scss_1.default.
|
|
28
|
+
[Table_module_scss_1.default.wide]: v.includes("wide"),
|
|
29
29
|
[Table_module_scss_1.default.centered]: v.includes("centered"),
|
|
30
30
|
});
|
|
31
31
|
return react_1.default.createElement("table", Object.assign({ className: cls }, props), children);
|
|
@@ -14,42 +14,43 @@
|
|
|
14
14
|
background: white;
|
|
15
15
|
margin: 0;
|
|
16
16
|
padding: 0;
|
|
17
|
+
list-style-type: none;
|
|
18
|
+
}
|
|
17
19
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
20
|
+
.li {
|
|
21
|
+
margin: 0;
|
|
22
|
+
padding: 0;
|
|
23
|
+
list-style-type: none;
|
|
23
24
|
|
|
24
|
-
|
|
25
|
+
+ .li {
|
|
25
26
|
border-top: 1px solid var(--border);
|
|
26
27
|
}
|
|
28
|
+
}
|
|
27
29
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
svg {
|
|
43
|
-
fill: currentColor;
|
|
44
|
-
margin-right: calc(42px / var(--ratio-dimensions));
|
|
45
|
-
}
|
|
30
|
+
.button {
|
|
31
|
+
border: none;
|
|
32
|
+
background: white;
|
|
33
|
+
height: calc(116px / var(--ratio-dimensions));
|
|
34
|
+
padding: 0 calc(42px / var(--ratio-dimensions));
|
|
35
|
+
box-sizing: border-box;
|
|
36
|
+
width: 100%;
|
|
37
|
+
min-width: calc(460px / var(--ratio-dimensions));
|
|
38
|
+
text-align: left;
|
|
39
|
+
color: var(--pop-text);
|
|
40
|
+
font-size: calc(26px / var(--ratio-font));
|
|
41
|
+
display: flex;
|
|
42
|
+
align-items: center;
|
|
46
43
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
44
|
+
&:hover {
|
|
45
|
+
background: var(--active-bg);
|
|
50
46
|
}
|
|
51
47
|
}
|
|
52
48
|
|
|
49
|
+
.icon {
|
|
50
|
+
fill: currentColor;
|
|
51
|
+
margin-right: calc(42px / var(--ratio-dimensions));
|
|
52
|
+
}
|
|
53
|
+
|
|
53
54
|
.fakeIcon {
|
|
54
55
|
display: inline-block;
|
|
55
56
|
width: 16px;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PopOption.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/pop/PopOption.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAK7C,UAAU,KAAK;IACX,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,OAAO,EAAE,MAAM,IAAI,CAAC;CACvB;AAED,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,
|
|
1
|
+
{"version":3,"file":"PopOption.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/pop/PopOption.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAK7C,UAAU,KAAK;IACX,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,OAAO,EAAE,MAAM,IAAI,CAAC;CACvB;AAED,QAAA,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAU9B,CAAC;AAEF,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -10,10 +10,10 @@ const Pop_module_scss_1 = __importDefault(require("./Pop.module.scss"));
|
|
|
10
10
|
const PopOption = (props) => {
|
|
11
11
|
var _a;
|
|
12
12
|
const ic = props.icon
|
|
13
|
-
? react_1.default.createElement(Icon_1.Icon, { name: props.icon })
|
|
13
|
+
? react_1.default.createElement(Icon_1.Icon, { name: props.icon, className: Pop_module_scss_1.default.icon })
|
|
14
14
|
: (((_a = props.forceEmptyIcon) !== null && _a !== void 0 ? _a : true) ? react_1.default.createElement("span", { className: Pop_module_scss_1.default.fakeIcon }) : null);
|
|
15
|
-
return (react_1.default.createElement("li",
|
|
16
|
-
react_1.default.createElement("button", { onClick: props.onClick },
|
|
15
|
+
return (react_1.default.createElement("li", { className: Pop_module_scss_1.default.li },
|
|
16
|
+
react_1.default.createElement("button", { onClick: props.onClick, className: Pop_module_scss_1.default.button },
|
|
17
17
|
ic,
|
|
18
18
|
props.children)));
|
|
19
19
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PopOption.js","sourceRoot":"","sources":["../../../../src/components/ui/pop/PopOption.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAG1B,2CAAwC;AAExC,wEAAuC;AAQvC,MAAM,SAAS,GAAoB,CAAC,KAAK,EAAE,EAAE;;IACzC,MAAM,EAAE,GAAG,KAAK,CAAC,IAAI;QACjB,CAAC,CAAC,8BAAC,WAAI,IAAC,IAAI,EAAE,KAAK,CAAC,IAAI,GAAI;
|
|
1
|
+
{"version":3,"file":"PopOption.js","sourceRoot":"","sources":["../../../../src/components/ui/pop/PopOption.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAG1B,2CAAwC;AAExC,wEAAuC;AAQvC,MAAM,SAAS,GAAoB,CAAC,KAAK,EAAE,EAAE;;IACzC,MAAM,EAAE,GAAG,KAAK,CAAC,IAAI;QACjB,CAAC,CAAC,8BAAC,WAAI,IAAC,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,SAAS,EAAE,yBAAM,CAAC,IAAI,GAAI;QACpD,CAAC,CAAC,CAAC,CAAC,MAAA,KAAK,CAAC,cAAc,mCAAI,IAAI,CAAC,CAAC,CAAC,CAAC,wCAAM,SAAS,EAAE,yBAAM,CAAC,QAAQ,GAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IAErF,OAAO,CACH,sCAAI,SAAS,EAAE,yBAAM,CAAC,EAAE;QACpB,0CAAQ,OAAO,EAAE,KAAK,CAAC,OAAO,EAAE,SAAS,EAAE,yBAAM,CAAC,MAAM;YAAG,EAAE;YAAE,KAAK,CAAC,QAAQ,CAAU,CACtF,CACR,CAAC;AACN,CAAC,CAAC;AAEO,8BAAS"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { Value } from "../../../types/form";
|
|
3
|
-
interface Props {
|
|
4
|
-
values: Value[];
|
|
3
|
+
interface Props<T extends string> {
|
|
4
|
+
values: Value<T>[];
|
|
5
5
|
value?: string;
|
|
6
6
|
onChange?: (value: string) => void;
|
|
7
7
|
}
|
|
8
|
-
declare const Selector: React.
|
|
8
|
+
declare const Selector: <T extends string>(props: Props<T>) => React.ReactElement<any, any> | null;
|
|
9
9
|
export { Selector };
|
|
10
10
|
//# sourceMappingURL=Selector.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Selector.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/tabs/Selector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AAErD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAKjD,UAAU,KAAK;
|
|
1
|
+
{"version":3,"file":"Selector.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/tabs/Selector.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAgC,MAAM,OAAO,CAAC;AAErD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAKjD,UAAU,KAAK,CAAC,CAAC,SAAS,MAAM;IAC5B,MAAM,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACtC;AAED,QAAA,MAAM,QAAQ,4EAeb,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Selector.js","sourceRoot":"","sources":["../../../../src/components/ui/tabs/Selector.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAAqD;AAGrD,0CAA+C;AAC/C,iCAA8B;AAC9B,kFAA4C;AAQ5C,MAAM,QAAQ,
|
|
1
|
+
{"version":3,"file":"Selector.js","sourceRoot":"","sources":["../../../../src/components/ui/tabs/Selector.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAAqD;AAGrD,0CAA+C;AAC/C,iCAA8B;AAC9B,kFAA4C;AAQ5C,MAAM,QAAQ,GAAG,CAAmB,KAAe,EAAkC,EAAE;;IACnF,MAAM,CAAC,OAAO,EAAE,UAAU,CAAC,GAAG,gBAAQ,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAEpD,MAAM,aAAa,GAAG,mBAAW,CAAC,CAAC,KAAa,EAAE,EAAE;;QAChD,UAAU,CAAC,KAAK,CAAC,CAAC;QAClB,MAAA,KAAK,CAAC,QAAQ,+CAAd,KAAK,EAAY,KAAK,CAAC,CAAC;IAC5B,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC;IAErB,MAAM,GAAG,GAAG,MAAA,KAAK,CAAC,KAAK,mCAAI,OAAO,CAAC;IAEnC,MAAM,IAAI,GAAG,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE;QAC9B,MAAM,EAAE,GAAG,qBAAa,CAAC,CAAC,CAAC,CAAC;QAC5B,OAAO,8BAAC,WAAI,IAAC,GAAG,EAAE,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,EAAE,GAAG,KAAK,EAAE,CAAC,KAAK,GAAI,CAAC;IAChG,CAAC,CAAC,CAAC;IACH,OAAO,uCAAK,SAAS,EAAE,8BAAM,CAAC,QAAQ,IAAG,IAAI,CAAO,CAAC;AACzD,CAAC,CAAC;AAEO,4BAAQ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"If.d.ts","sourceRoot":"","sources":["../../../src/components/utils/If.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,UAAU,KAAK;IACX,SAAS,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,QAAA,MAAM,EAAE,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAKvB,CAAC;AAEF,OAAO,EAAE,EAAE,EAAE,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.If = void 0;
|
|
7
|
+
const react_1 = __importDefault(require("react"));
|
|
8
|
+
const If = (props) => {
|
|
9
|
+
if (Boolean(props.condition)) {
|
|
10
|
+
return react_1.default.createElement(react_1.default.Fragment, null, props.children);
|
|
11
|
+
}
|
|
12
|
+
return null;
|
|
13
|
+
};
|
|
14
|
+
exports.If = If;
|
|
15
|
+
//# sourceMappingURL=If.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"If.js","sourceRoot":"","sources":["../../../src/components/utils/If.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAM1B,MAAM,EAAE,GAAoB,CAAC,KAAK,EAAE,EAAE;IAClC,IAAI,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC,EAAE;QAC1B,OAAO,8DAAG,KAAK,CAAC,QAAQ,CAAI,CAAC;KAChC;IACD,OAAO,IAAI,CAAC;AAChB,CAAC,CAAC;AAEO,gBAAE"}
|
package/dist/index.d.ts
CHANGED
|
@@ -28,5 +28,6 @@ export * from "./components/ui/stats/Stats.js";
|
|
|
28
28
|
export * from "./components/ui/tabs/Selector.js";
|
|
29
29
|
export * from "./components/ui/toaster/Toaster.js";
|
|
30
30
|
export * from "./components/utils/HandleEsc.js";
|
|
31
|
+
export * from "./components/utils/If.js";
|
|
31
32
|
export * from "./components/utils/Spacer.js";
|
|
32
33
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC;AACnD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,6BAA6B,CAAC;AAE5C,cAAc,4BAA4B,CAAC;AAE3C,cAAc,kCAAkC,CAAC;AACjD,cAAc,sCAAsC,CAAC;AACrD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kCAAkC,CAAC;AACjD,cAAc,kCAAkC,CAAC;AACjD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,wCAAwC,CAAC;AACvD,cAAc,oCAAoC,CAAC;AAEnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,wCAAwC,CAAC;AACvD,cAAc,kCAAkC,CAAC;AACjD,cAAc,qCAAqC,CAAC;AACpD,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AACnD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uCAAuC,CAAC;AACtD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAE/C,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AAEnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAC;AACnD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,6BAA6B,CAAC;AAE5C,cAAc,4BAA4B,CAAC;AAE3C,cAAc,kCAAkC,CAAC;AACjD,cAAc,sCAAsC,CAAC;AACrD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,4CAA4C,CAAC;AAC3D,cAAc,kCAAkC,CAAC;AACjD,cAAc,kCAAkC,CAAC;AACjD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,wCAAwC,CAAC;AACvD,cAAc,oCAAoC,CAAC;AAEnD,cAAc,kCAAkC,CAAC;AACjD,cAAc,wCAAwC,CAAC;AACvD,cAAc,kCAAkC,CAAC;AACjD,cAAc,qCAAqC,CAAC;AACpD,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AACnD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uCAAuC,CAAC;AACtD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,gCAAgC,CAAC;AAE/C,cAAc,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC;AAEnD,cAAc,iCAAiC,CAAC;AAChD,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -40,5 +40,6 @@ __exportStar(require("./components/ui/stats/Stats.js"), exports);
|
|
|
40
40
|
__exportStar(require("./components/ui/tabs/Selector.js"), exports);
|
|
41
41
|
__exportStar(require("./components/ui/toaster/Toaster.js"), exports);
|
|
42
42
|
__exportStar(require("./components/utils/HandleEsc.js"), exports);
|
|
43
|
+
__exportStar(require("./components/utils/If.js"), exports);
|
|
43
44
|
__exportStar(require("./components/utils/Spacer.js"), exports);
|
|
44
45
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qEAAmD;AACnD,gEAA8C;AAC9C,6DAA2C;AAC3C,6DAA2C;AAC3C,8DAA4C;AAC5C,gEAA8C;AAC9C,8DAA4C;AAE5C,6DAA2C;AAE3C,mEAAiD;AACjD,uEAAqD;AACrD,iFAA+D;AAC/D,6EAA2D;AAC3D,mEAAiD;AACjD,mEAAiD;AACjD,iFAA+D;AAC/D,yEAAuD;AACvD,qEAAmD;AAEnD,mEAAiD;AACjD,yEAAuD;AACvD,mEAAiD;AACjD,sEAAoD;AACpD,mEAAiD;AACjD,qEAAmD;AACnD,iEAA+C;AAC/C,wEAAsD;AACtD,6DAA2C;AAC3C,iEAA+C;AAE/C,mEAAiD;AACjD,qEAAmD;AAEnD,kEAAgD;AAChD,+DAA6C"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qEAAmD;AACnD,gEAA8C;AAC9C,6DAA2C;AAC3C,6DAA2C;AAC3C,8DAA4C;AAC5C,gEAA8C;AAC9C,8DAA4C;AAE5C,6DAA2C;AAE3C,mEAAiD;AACjD,uEAAqD;AACrD,iFAA+D;AAC/D,6EAA2D;AAC3D,mEAAiD;AACjD,mEAAiD;AACjD,iFAA+D;AAC/D,yEAAuD;AACvD,qEAAmD;AAEnD,mEAAiD;AACjD,yEAAuD;AACvD,mEAAiD;AACjD,sEAAoD;AACpD,mEAAiD;AACjD,qEAAmD;AACnD,iEAA+C;AAC/C,wEAAsD;AACtD,6DAA2C;AAC3C,iEAA+C;AAE/C,mEAAiD;AACjD,qEAAmD;AAEnD,kEAAgD;AAChD,2DAAyC;AACzC,+DAA6C"}
|
package/dist/types/form.d.ts
CHANGED
package/dist/types/form.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../src/types/form.ts"],"names":[],"mappings":"AAAA,UAAU,WAAW;IAAG,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE;AACtD,aAAK,KAAK,
|
|
1
|
+
{"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../src/types/form.ts"],"names":[],"mappings":"AAAA,UAAU,WAAW;IAAG,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE;AACtD,aAAK,KAAK,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,GAAG,WAAW,CAAC;AAE/C,YAAY,EACR,WAAW,EACX,KAAK,GACR,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toObjectValue.d.ts","sourceRoot":"","sources":["../../src/utils/toObjectValue.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AAExD,QAAA,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"toObjectValue.d.ts","sourceRoot":"","sources":["../../src/utils/toObjectValue.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AAExD,QAAA,MAAM,aAAa,qCAAoC,WAEtD,CAAC;AAEF,OAAO,EACH,aAAa,GAChB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"toObjectValue.js","sourceRoot":"","sources":["../../src/utils/toObjectValue.ts"],"names":[],"mappings":";;;AAEA,MAAM,aAAa,GAAG,
|
|
1
|
+
{"version":3,"file":"toObjectValue.js","sourceRoot":"","sources":["../../src/utils/toObjectValue.ts"],"names":[],"mappings":";;;AAEA,MAAM,aAAa,GAAG,CAAmB,CAAW,EAAe,EAAE;IACjE,OAAO,OAAO,CAAC,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;AAC9D,CAAC,CAAC;AAGE,sCAAa"}
|
package/docs/assets/js/search.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
window.searchData = {"kinds":{"2":"Namespace","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal"},"rows":[{"id":0,"kind":32,"name":"Choice","url":"modules.html#Choice","classes":"tsd-kind-variable"},{"id":1,"kind":32,"name":"Checkbox","url":"modules.html#Checkbox","classes":"tsd-kind-variable"},{"id":2,"kind":32,"name":"Input","url":"modules.html#Input","classes":"tsd-kind-variable"},{"id":3,"kind":32,"name":"Label","url":"modules.html#Label","classes":"tsd-kind-variable"},{"id":4,"kind":32,"name":"Select","url":"modules.html#Select","classes":"tsd-kind-variable"},{"id":5,"kind":32,"name":"TextArea","url":"modules.html#TextArea","classes":"tsd-kind-variable"},{"id":6,"kind":32,"name":"Toggle","url":"modules.html#Toggle","classes":"tsd-kind-variable"},{"id":7,"kind":32,"name":"Icon","url":"modules.html#Icon","classes":"tsd-kind-variable"},{"id":8,"kind":4,"name":"ICON","url":"enums/ICON.html","classes":"tsd-kind-enum"},{"id":9,"kind":16,"name":"checkmark","url":"enums/ICON.html#checkmark","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":10,"kind":16,"name":"back","url":"enums/ICON.html#back","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":11,"kind":16,"name":"forward","url":"enums/ICON.html#forward","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":12,"kind":16,"name":"search","url":"enums/ICON.html#search","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":13,"kind":16,"name":"battery","url":"enums/ICON.html#battery","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":14,"kind":16,"name":"heart","url":"enums/ICON.html#heart","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":15,"kind":16,"name":"trash","url":"enums/ICON.html#trash","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":16,"kind":16,"name":"config","url":"enums/ICON.html#config","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":17,"kind":16,"name":"dots","url":"enums/ICON.html#dots","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":18,"kind":32,"name":"Card","url":"modules.html#Card","classes":"tsd-kind-variable"},{"id":19,"kind":32,"name":"Header","url":"modules.html#Header","classes":"tsd-kind-variable"},{"id":20,"kind":32,"name":"HeaderIconAction","url":"modules.html#HeaderIconAction","classes":"tsd-kind-variable"},{"id":21,"kind":32,"name":"StickyHeader","url":"modules.html#StickyHeader","classes":"tsd-kind-variable"},{"id":22,"kind":2,"name":"StickyHeader","url":"modules/StickyHeader.html","classes":"tsd-kind-namespace"},{"id":23,"kind":64,"name":"Content","url":"modules/StickyHeader.html#Content","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"StickyHeader"},{"id":24,"kind":32,"name":"List","url":"modules.html#List","classes":"tsd-kind-variable"},{"id":25,"kind":2,"name":"List","url":"modules/List.html","classes":"tsd-kind-namespace"},{"id":26,"kind":32,"name":"Header","url":"modules/List.html#Header","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"List"},{"id":27,"kind":32,"name":"Item","url":"modules.html#Item","classes":"tsd-kind-variable"},{"id":28,"kind":2,"name":"Item","url":"modules/Item.html","classes":"tsd-kind-namespace"},{"id":29,"kind":32,"name":"Label","url":"modules/Item.html#Label","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":30,"kind":32,"name":"Value","url":"modules/Item.html#Value","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":31,"kind":32,"name":"SearchContainer","url":"modules.html#SearchContainer","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"Section","url":"modules.html#Section","classes":"tsd-kind-variable"},{"id":33,"kind":2,"name":"Section","url":"modules/Section.html","classes":"tsd-kind-namespace"},{"id":34,"kind":32,"name":"Container","url":"modules/Section.html#Container","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Section"},{"id":35,"kind":32,"name":"Table","url":"modules.html#Table","classes":"tsd-kind-variable"},{"id":36,"kind":32,"name":"Action","url":"modules.html#Action","classes":"tsd-kind-variable"},{"id":37,"kind":32,"name":"EqualActions","url":"modules.html#EqualActions","classes":"tsd-kind-variable"},{"id":38,"kind":32,"name":"Button","url":"modules.html#Button","classes":"tsd-kind-variable"},{"id":39,"kind":32,"name":"DirectionPad","url":"modules.html#DirectionPad","classes":"tsd-kind-variable"},{"id":40,"kind":128,"name":"Drawer","url":"classes/Drawer.html","classes":"tsd-kind-class"},{"id":41,"kind":512,"name":"constructor","url":"classes/Drawer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":42,"kind":2048,"name":"componentDidMount","url":"classes/Drawer.html#componentDidMount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":43,"kind":2048,"name":"componentDidUpdate","url":"classes/Drawer.html#componentDidUpdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":44,"kind":2048,"name":"componentWillUnmount","url":"classes/Drawer.html#componentWillUnmount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":45,"kind":1024,"name":"timeout","url":"classes/Drawer.html#timeout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Drawer"},{"id":46,"kind":2048,"name":"onOpen","url":"classes/Drawer.html#onOpen","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Drawer"},{"id":47,"kind":2048,"name":"onClose","url":"classes/Drawer.html#onClose","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Drawer"},{"id":48,"kind":2048,"name":"handleEsc","url":"classes/Drawer.html#handleEsc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Drawer"},{"id":49,"kind":2048,"name":"render","url":"classes/Drawer.html#render","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":50,"kind":65536,"name":"__type","url":"classes/Drawer.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"Drawer"},{"id":51,"kind":32,"name":"Message","url":"modules.html#Message","classes":"tsd-kind-variable"},{"id":52,"kind":32,"name":"Modal","url":"modules.html#Modal","classes":"tsd-kind-variable"},{"id":53,"kind":2,"name":"Modal","url":"modules/Modal.html","classes":"tsd-kind-namespace"},{"id":54,"kind":32,"name":"NegateMargin","url":"modules/Modal.html#NegateMargin","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Modal"},{"id":55,"kind":32,"name":"ModalButtons","url":"modules.html#ModalButtons","classes":"tsd-kind-variable"},{"id":56,"kind":2,"name":"ModalButtons","url":"modules/ModalButtons.html","classes":"tsd-kind-namespace"},{"id":57,"kind":32,"name":"Button","url":"modules/ModalButtons.html#Button","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"ModalButtons"},{"id":58,"kind":128,"name":"Pop","url":"classes/Pop.html","classes":"tsd-kind-class"},{"id":59,"kind":1024,"name":"Option","url":"classes/Pop.html#Option","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Pop"},{"id":60,"kind":512,"name":"constructor","url":"classes/Pop.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Pop"},{"id":61,"kind":2048,"name":"componentDidUpdate","url":"classes/Pop.html#componentDidUpdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Pop"},{"id":62,"kind":1024,"name":"rootRef","url":"classes/Pop.html#rootRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":63,"kind":2048,"name":"getAnchorElement","url":"classes/Pop.html#getAnchorElement","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":64,"kind":2048,"name":"onOpen","url":"classes/Pop.html#onOpen","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":65,"kind":2048,"name":"handleOverlayClick","url":"classes/Pop.html#handleOverlayClick","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":66,"kind":2048,"name":"handleEsc","url":"classes/Pop.html#handleEsc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":67,"kind":2048,"name":"render","url":"classes/Pop.html#render","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Pop"},{"id":68,"kind":65536,"name":"__type","url":"classes/Pop.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"Pop"},{"id":69,"kind":32,"name":"Stats","url":"modules.html#Stats","classes":"tsd-kind-variable"},{"id":70,"kind":32,"name":"Selector","url":"modules.html#Selector","classes":"tsd-kind-variable"},{"id":71,"kind":128,"name":"ToasterProvider","url":"classes/ToasterProvider.html","classes":"tsd-kind-class"},{"id":72,"kind":512,"name":"constructor","url":"classes/ToasterProvider.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider"},{"id":73,"kind":2048,"name":"_add","url":"classes/ToasterProvider.html#_add","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":74,"kind":2048,"name":"_handleRemove","url":"classes/ToasterProvider.html#_handleRemove","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":75,"kind":2048,"name":"_removeAllToasts","url":"classes/ToasterProvider.html#_removeAllToasts","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":76,"kind":2048,"name":"render","url":"classes/ToasterProvider.html#render","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider"},{"id":77,"kind":65536,"name":"__type","url":"classes/ToasterProvider.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"ToasterProvider"},{"id":78,"kind":64,"name":"useToaster","url":"modules.html#useToaster","classes":"tsd-kind-function"},{"id":79,"kind":32,"name":"HandleEsc","url":"modules.html#HandleEsc","classes":"tsd-kind-variable"},{"id":80,"kind":32,"name":"Spacer","url":"modules.html#Spacer","classes":"tsd-kind-variable"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,40.013]],["parent/0",[]],["name/1",[1,40.013]],["parent/1",[]],["name/2",[2,40.013]],["parent/2",[]],["name/3",[3,34.904]],["parent/3",[]],["name/4",[4,40.013]],["parent/4",[]],["name/5",[5,40.013]],["parent/5",[]],["name/6",[6,40.013]],["parent/6",[]],["name/7",[7,19.644]],["parent/7",[]],["name/8",[7,19.644]],["parent/8",[]],["name/9",[8,40.013]],["parent/9",[7,1.424]],["name/10",[9,40.013]],["parent/10",[7,1.424]],["name/11",[10,40.013]],["parent/11",[7,1.424]],["name/12",[11,40.013]],["parent/12",[7,1.424]],["name/13",[12,40.013]],["parent/13",[7,1.424]],["name/14",[13,40.013]],["parent/14",[7,1.424]],["name/15",[14,40.013]],["parent/15",[7,1.424]],["name/16",[15,40.013]],["parent/16",[7,1.424]],["name/17",[16,40.013]],["parent/17",[7,1.424]],["name/18",[17,40.013]],["parent/18",[]],["name/19",[18,34.904]],["parent/19",[]],["name/20",[19,40.013]],["parent/20",[]],["name/21",[20,31.54]],["parent/21",[]],["name/22",[20,31.54]],["parent/22",[]],["name/23",[21,40.013]],["parent/23",[20,2.286]],["name/24",[22,31.54]],["parent/24",[]],["name/25",[22,31.54]],["parent/25",[]],["name/26",[18,34.904]],["parent/26",[22,2.286]],["name/27",[23,29.026]],["parent/27",[]],["name/28",[23,29.026]],["parent/28",[]],["name/29",[3,34.904]],["parent/29",[23,2.104]],["name/30",[24,40.013]],["parent/30",[23,2.104]],["name/31",[25,40.013]],["parent/31",[]],["name/32",[26,31.54]],["parent/32",[]],["name/33",[26,31.54]],["parent/33",[]],["name/34",[27,40.013]],["parent/34",[26,2.286]],["name/35",[28,40.013]],["parent/35",[]],["name/36",[29,40.013]],["parent/36",[]],["name/37",[30,40.013]],["parent/37",[]],["name/38",[31,34.904]],["parent/38",[]],["name/39",[32,40.013]],["parent/39",[]],["name/40",[33,19.644]],["parent/40",[]],["name/41",[34,31.54]],["parent/41",[33,1.424]],["name/42",[35,40.013]],["parent/42",[33,1.424]],["name/43",[36,34.904]],["parent/43",[33,1.424]],["name/44",[37,40.013]],["parent/44",[33,1.424]],["name/45",[38,40.013]],["parent/45",[33,1.424]],["name/46",[39,34.904]],["parent/46",[33,1.424]],["name/47",[40,40.013]],["parent/47",[33,1.424]],["name/48",[41,31.54]],["parent/48",[33,1.424]],["name/49",[42,31.54]],["parent/49",[33,1.424]],["name/50",[43,31.54]],["parent/50",[33,1.424]],["name/51",[44,40.013]],["parent/51",[]],["name/52",[45,31.54]],["parent/52",[]],["name/53",[45,31.54]],["parent/53",[]],["name/54",[46,40.013]],["parent/54",[45,2.286]],["name/55",[47,31.54]],["parent/55",[]],["name/56",[47,31.54]],["parent/56",[]],["name/57",[31,34.904]],["parent/57",[47,2.286]],["name/58",[48,19.644]],["parent/58",[]],["name/59",[49,40.013]],["parent/59",[48,1.424]],["name/60",[34,31.54]],["parent/60",[48,1.424]],["name/61",[36,34.904]],["parent/61",[48,1.424]],["name/62",[50,40.013]],["parent/62",[48,1.424]],["name/63",[51,40.013]],["parent/63",[48,1.424]],["name/64",[39,34.904]],["parent/64",[48,1.424]],["name/65",[52,40.013]],["parent/65",[48,1.424]],["name/66",[41,31.54]],["parent/66",[48,1.424]],["name/67",[42,31.54]],["parent/67",[48,1.424]],["name/68",[43,31.54]],["parent/68",[48,1.424]],["name/69",[53,40.013]],["parent/69",[]],["name/70",[54,40.013]],["parent/70",[]],["name/71",[55,23.918]],["parent/71",[]],["name/72",[34,31.54]],["parent/72",[55,1.733]],["name/73",[56,40.013]],["parent/73",[55,1.733]],["name/74",[57,40.013]],["parent/74",[55,1.733]],["name/75",[58,40.013]],["parent/75",[55,1.733]],["name/76",[42,31.54]],["parent/76",[55,1.733]],["name/77",[43,31.54]],["parent/77",[55,1.733]],["name/78",[59,40.013]],["parent/78",[]],["name/79",[41,31.54]],["parent/79",[]],["name/80",[60,40.013]],["parent/80",[]]],"invertedIndex":[["__type",{"_index":43,"name":{"50":{},"68":{},"77":{}},"parent":{}}],["_add",{"_index":56,"name":{"73":{}},"parent":{}}],["_handleremove",{"_index":57,"name":{"74":{}},"parent":{}}],["_removealltoasts",{"_index":58,"name":{"75":{}},"parent":{}}],["action",{"_index":29,"name":{"36":{}},"parent":{}}],["back",{"_index":9,"name":{"10":{}},"parent":{}}],["battery",{"_index":12,"name":{"13":{}},"parent":{}}],["button",{"_index":31,"name":{"38":{},"57":{}},"parent":{}}],["card",{"_index":17,"name":{"18":{}},"parent":{}}],["checkbox",{"_index":1,"name":{"1":{}},"parent":{}}],["checkmark",{"_index":8,"name":{"9":{}},"parent":{}}],["choice",{"_index":0,"name":{"0":{}},"parent":{}}],["componentdidmount",{"_index":35,"name":{"42":{}},"parent":{}}],["componentdidupdate",{"_index":36,"name":{"43":{},"61":{}},"parent":{}}],["componentwillunmount",{"_index":37,"name":{"44":{}},"parent":{}}],["config",{"_index":15,"name":{"16":{}},"parent":{}}],["constructor",{"_index":34,"name":{"41":{},"60":{},"72":{}},"parent":{}}],["container",{"_index":27,"name":{"34":{}},"parent":{}}],["content",{"_index":21,"name":{"23":{}},"parent":{}}],["directionpad",{"_index":32,"name":{"39":{}},"parent":{}}],["dots",{"_index":16,"name":{"17":{}},"parent":{}}],["drawer",{"_index":33,"name":{"40":{}},"parent":{"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{}}}],["equalactions",{"_index":30,"name":{"37":{}},"parent":{}}],["forward",{"_index":10,"name":{"11":{}},"parent":{}}],["getanchorelement",{"_index":51,"name":{"63":{}},"parent":{}}],["handleesc",{"_index":41,"name":{"48":{},"66":{},"79":{}},"parent":{}}],["handleoverlayclick",{"_index":52,"name":{"65":{}},"parent":{}}],["header",{"_index":18,"name":{"19":{},"26":{}},"parent":{}}],["headericonaction",{"_index":19,"name":{"20":{}},"parent":{}}],["heart",{"_index":13,"name":{"14":{}},"parent":{}}],["icon",{"_index":7,"name":{"7":{},"8":{}},"parent":{"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{}}}],["input",{"_index":2,"name":{"2":{}},"parent":{}}],["item",{"_index":23,"name":{"27":{},"28":{}},"parent":{"29":{},"30":{}}}],["label",{"_index":3,"name":{"3":{},"29":{}},"parent":{}}],["list",{"_index":22,"name":{"24":{},"25":{}},"parent":{"26":{}}}],["message",{"_index":44,"name":{"51":{}},"parent":{}}],["modal",{"_index":45,"name":{"52":{},"53":{}},"parent":{"54":{}}}],["modalbuttons",{"_index":47,"name":{"55":{},"56":{}},"parent":{"57":{}}}],["negatemargin",{"_index":46,"name":{"54":{}},"parent":{}}],["onclose",{"_index":40,"name":{"47":{}},"parent":{}}],["onopen",{"_index":39,"name":{"46":{},"64":{}},"parent":{}}],["option",{"_index":49,"name":{"59":{}},"parent":{}}],["pop",{"_index":48,"name":{"58":{}},"parent":{"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{}}}],["render",{"_index":42,"name":{"49":{},"67":{},"76":{}},"parent":{}}],["rootref",{"_index":50,"name":{"62":{}},"parent":{}}],["search",{"_index":11,"name":{"12":{}},"parent":{}}],["searchcontainer",{"_index":25,"name":{"31":{}},"parent":{}}],["section",{"_index":26,"name":{"32":{},"33":{}},"parent":{"34":{}}}],["select",{"_index":4,"name":{"4":{}},"parent":{}}],["selector",{"_index":54,"name":{"70":{}},"parent":{}}],["spacer",{"_index":60,"name":{"80":{}},"parent":{}}],["stats",{"_index":53,"name":{"69":{}},"parent":{}}],["stickyheader",{"_index":20,"name":{"21":{},"22":{}},"parent":{"23":{}}}],["table",{"_index":28,"name":{"35":{}},"parent":{}}],["textarea",{"_index":5,"name":{"5":{}},"parent":{}}],["timeout",{"_index":38,"name":{"45":{}},"parent":{}}],["toasterprovider",{"_index":55,"name":{"71":{}},"parent":{"72":{},"73":{},"74":{},"75":{},"76":{},"77":{}}}],["toggle",{"_index":6,"name":{"6":{}},"parent":{}}],["trash",{"_index":14,"name":{"15":{}},"parent":{}}],["usetoaster",{"_index":59,"name":{"78":{}},"parent":{}}],["value",{"_index":24,"name":{"30":{}},"parent":{}}]],"pipeline":[]}}
|
|
1
|
+
window.searchData = {"kinds":{"2":"Namespace","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal"},"rows":[{"id":0,"kind":64,"name":"Choice","url":"modules.html#Choice","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":1,"kind":32,"name":"Checkbox","url":"modules.html#Checkbox","classes":"tsd-kind-variable"},{"id":2,"kind":32,"name":"Input","url":"modules.html#Input","classes":"tsd-kind-variable"},{"id":3,"kind":32,"name":"Label","url":"modules.html#Label","classes":"tsd-kind-variable"},{"id":4,"kind":32,"name":"Select","url":"modules.html#Select","classes":"tsd-kind-variable"},{"id":5,"kind":32,"name":"TextArea","url":"modules.html#TextArea","classes":"tsd-kind-variable"},{"id":6,"kind":32,"name":"Toggle","url":"modules.html#Toggle","classes":"tsd-kind-variable"},{"id":7,"kind":32,"name":"Icon","url":"modules.html#Icon","classes":"tsd-kind-variable"},{"id":8,"kind":4,"name":"ICON","url":"enums/ICON.html","classes":"tsd-kind-enum"},{"id":9,"kind":16,"name":"checkmark","url":"enums/ICON.html#checkmark","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":10,"kind":16,"name":"back","url":"enums/ICON.html#back","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":11,"kind":16,"name":"forward","url":"enums/ICON.html#forward","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":12,"kind":16,"name":"search","url":"enums/ICON.html#search","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":13,"kind":16,"name":"battery","url":"enums/ICON.html#battery","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":14,"kind":16,"name":"heart","url":"enums/ICON.html#heart","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":15,"kind":16,"name":"trash","url":"enums/ICON.html#trash","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":16,"kind":16,"name":"config","url":"enums/ICON.html#config","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":17,"kind":16,"name":"dots","url":"enums/ICON.html#dots","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":18,"kind":32,"name":"Card","url":"modules.html#Card","classes":"tsd-kind-variable"},{"id":19,"kind":32,"name":"Header","url":"modules.html#Header","classes":"tsd-kind-variable"},{"id":20,"kind":32,"name":"HeaderIconAction","url":"modules.html#HeaderIconAction","classes":"tsd-kind-variable"},{"id":21,"kind":32,"name":"StickyHeader","url":"modules.html#StickyHeader","classes":"tsd-kind-variable"},{"id":22,"kind":2,"name":"StickyHeader","url":"modules/StickyHeader.html","classes":"tsd-kind-namespace"},{"id":23,"kind":64,"name":"Content","url":"modules/StickyHeader.html#Content","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"StickyHeader"},{"id":24,"kind":32,"name":"List","url":"modules.html#List","classes":"tsd-kind-variable"},{"id":25,"kind":2,"name":"List","url":"modules/List.html","classes":"tsd-kind-namespace"},{"id":26,"kind":32,"name":"Header","url":"modules/List.html#Header","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"List"},{"id":27,"kind":32,"name":"Item","url":"modules.html#Item","classes":"tsd-kind-variable"},{"id":28,"kind":2,"name":"Item","url":"modules/Item.html","classes":"tsd-kind-namespace"},{"id":29,"kind":32,"name":"Label","url":"modules/Item.html#Label","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":30,"kind":32,"name":"Value","url":"modules/Item.html#Value","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":31,"kind":32,"name":"SearchContainer","url":"modules.html#SearchContainer","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"Section","url":"modules.html#Section","classes":"tsd-kind-variable"},{"id":33,"kind":2,"name":"Section","url":"modules/Section.html","classes":"tsd-kind-namespace"},{"id":34,"kind":32,"name":"Container","url":"modules/Section.html#Container","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Section"},{"id":35,"kind":32,"name":"Table","url":"modules.html#Table","classes":"tsd-kind-variable"},{"id":36,"kind":32,"name":"Action","url":"modules.html#Action","classes":"tsd-kind-variable"},{"id":37,"kind":32,"name":"EqualActions","url":"modules.html#EqualActions","classes":"tsd-kind-variable"},{"id":38,"kind":32,"name":"Button","url":"modules.html#Button","classes":"tsd-kind-variable"},{"id":39,"kind":32,"name":"DirectionPad","url":"modules.html#DirectionPad","classes":"tsd-kind-variable"},{"id":40,"kind":128,"name":"Drawer","url":"classes/Drawer.html","classes":"tsd-kind-class"},{"id":41,"kind":512,"name":"constructor","url":"classes/Drawer.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":42,"kind":2048,"name":"componentDidMount","url":"classes/Drawer.html#componentDidMount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":43,"kind":2048,"name":"componentDidUpdate","url":"classes/Drawer.html#componentDidUpdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":44,"kind":2048,"name":"componentWillUnmount","url":"classes/Drawer.html#componentWillUnmount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":45,"kind":1024,"name":"timeout","url":"classes/Drawer.html#timeout","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Drawer"},{"id":46,"kind":2048,"name":"onOpen","url":"classes/Drawer.html#onOpen","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Drawer"},{"id":47,"kind":2048,"name":"onClose","url":"classes/Drawer.html#onClose","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Drawer"},{"id":48,"kind":2048,"name":"handleEsc","url":"classes/Drawer.html#handleEsc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Drawer"},{"id":49,"kind":2048,"name":"render","url":"classes/Drawer.html#render","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Drawer"},{"id":50,"kind":65536,"name":"__type","url":"classes/Drawer.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"Drawer"},{"id":51,"kind":32,"name":"Message","url":"modules.html#Message","classes":"tsd-kind-variable"},{"id":52,"kind":32,"name":"Modal","url":"modules.html#Modal","classes":"tsd-kind-variable"},{"id":53,"kind":2,"name":"Modal","url":"modules/Modal.html","classes":"tsd-kind-namespace"},{"id":54,"kind":32,"name":"NegateMargin","url":"modules/Modal.html#NegateMargin","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Modal"},{"id":55,"kind":32,"name":"ModalButtons","url":"modules.html#ModalButtons","classes":"tsd-kind-variable"},{"id":56,"kind":2,"name":"ModalButtons","url":"modules/ModalButtons.html","classes":"tsd-kind-namespace"},{"id":57,"kind":32,"name":"Button","url":"modules/ModalButtons.html#Button","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"ModalButtons"},{"id":58,"kind":128,"name":"Pop","url":"classes/Pop.html","classes":"tsd-kind-class"},{"id":59,"kind":1024,"name":"Option","url":"classes/Pop.html#Option","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Pop"},{"id":60,"kind":512,"name":"constructor","url":"classes/Pop.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Pop"},{"id":61,"kind":2048,"name":"componentDidUpdate","url":"classes/Pop.html#componentDidUpdate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Pop"},{"id":62,"kind":1024,"name":"rootRef","url":"classes/Pop.html#rootRef","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":63,"kind":2048,"name":"getAnchorElement","url":"classes/Pop.html#getAnchorElement","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":64,"kind":2048,"name":"onOpen","url":"classes/Pop.html#onOpen","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":65,"kind":2048,"name":"handleOverlayClick","url":"classes/Pop.html#handleOverlayClick","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":66,"kind":2048,"name":"handleEsc","url":"classes/Pop.html#handleEsc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"Pop"},{"id":67,"kind":2048,"name":"render","url":"classes/Pop.html#render","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Pop"},{"id":68,"kind":65536,"name":"__type","url":"classes/Pop.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"Pop"},{"id":69,"kind":32,"name":"Stats","url":"modules.html#Stats","classes":"tsd-kind-variable"},{"id":70,"kind":64,"name":"Selector","url":"modules.html#Selector","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":71,"kind":128,"name":"ToasterProvider","url":"classes/ToasterProvider.html","classes":"tsd-kind-class"},{"id":72,"kind":512,"name":"constructor","url":"classes/ToasterProvider.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider"},{"id":73,"kind":2048,"name":"_add","url":"classes/ToasterProvider.html#_add","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":74,"kind":2048,"name":"_handleRemove","url":"classes/ToasterProvider.html#_handleRemove","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":75,"kind":2048,"name":"_removeAllToasts","url":"classes/ToasterProvider.html#_removeAllToasts","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":76,"kind":2048,"name":"render","url":"classes/ToasterProvider.html#render","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider"},{"id":77,"kind":65536,"name":"__type","url":"classes/ToasterProvider.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"ToasterProvider"},{"id":78,"kind":64,"name":"useToaster","url":"modules.html#useToaster","classes":"tsd-kind-function"},{"id":79,"kind":32,"name":"HandleEsc","url":"modules.html#HandleEsc","classes":"tsd-kind-variable"},{"id":80,"kind":32,"name":"If","url":"modules.html#If","classes":"tsd-kind-variable"},{"id":81,"kind":32,"name":"Spacer","url":"modules.html#Spacer","classes":"tsd-kind-variable"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,40.134]],["parent/0",[]],["name/1",[1,40.134]],["parent/1",[]],["name/2",[2,40.134]],["parent/2",[]],["name/3",[3,35.025]],["parent/3",[]],["name/4",[4,40.134]],["parent/4",[]],["name/5",[5,40.134]],["parent/5",[]],["name/6",[6,40.134]],["parent/6",[]],["name/7",[7,19.765]],["parent/7",[]],["name/8",[7,19.765]],["parent/8",[]],["name/9",[8,40.134]],["parent/9",[7,1.422]],["name/10",[9,40.134]],["parent/10",[7,1.422]],["name/11",[10,40.134]],["parent/11",[7,1.422]],["name/12",[11,40.134]],["parent/12",[7,1.422]],["name/13",[12,40.134]],["parent/13",[7,1.422]],["name/14",[13,40.134]],["parent/14",[7,1.422]],["name/15",[14,40.134]],["parent/15",[7,1.422]],["name/16",[15,40.134]],["parent/16",[7,1.422]],["name/17",[16,40.134]],["parent/17",[7,1.422]],["name/18",[17,40.134]],["parent/18",[]],["name/19",[18,35.025]],["parent/19",[]],["name/20",[19,40.134]],["parent/20",[]],["name/21",[20,31.661]],["parent/21",[]],["name/22",[20,31.661]],["parent/22",[]],["name/23",[21,40.134]],["parent/23",[20,2.278]],["name/24",[22,31.661]],["parent/24",[]],["name/25",[22,31.661]],["parent/25",[]],["name/26",[18,35.025]],["parent/26",[22,2.278]],["name/27",[23,29.148]],["parent/27",[]],["name/28",[23,29.148]],["parent/28",[]],["name/29",[3,35.025]],["parent/29",[23,2.098]],["name/30",[24,40.134]],["parent/30",[23,2.098]],["name/31",[25,40.134]],["parent/31",[]],["name/32",[26,31.661]],["parent/32",[]],["name/33",[26,31.661]],["parent/33",[]],["name/34",[27,40.134]],["parent/34",[26,2.278]],["name/35",[28,40.134]],["parent/35",[]],["name/36",[29,40.134]],["parent/36",[]],["name/37",[30,40.134]],["parent/37",[]],["name/38",[31,35.025]],["parent/38",[]],["name/39",[32,40.134]],["parent/39",[]],["name/40",[33,19.765]],["parent/40",[]],["name/41",[34,31.661]],["parent/41",[33,1.422]],["name/42",[35,40.134]],["parent/42",[33,1.422]],["name/43",[36,35.025]],["parent/43",[33,1.422]],["name/44",[37,40.134]],["parent/44",[33,1.422]],["name/45",[38,40.134]],["parent/45",[33,1.422]],["name/46",[39,35.025]],["parent/46",[33,1.422]],["name/47",[40,40.134]],["parent/47",[33,1.422]],["name/48",[41,31.661]],["parent/48",[33,1.422]],["name/49",[42,31.661]],["parent/49",[33,1.422]],["name/50",[43,31.661]],["parent/50",[33,1.422]],["name/51",[44,40.134]],["parent/51",[]],["name/52",[45,31.661]],["parent/52",[]],["name/53",[45,31.661]],["parent/53",[]],["name/54",[46,40.134]],["parent/54",[45,2.278]],["name/55",[47,31.661]],["parent/55",[]],["name/56",[47,31.661]],["parent/56",[]],["name/57",[31,35.025]],["parent/57",[47,2.278]],["name/58",[48,19.765]],["parent/58",[]],["name/59",[49,40.134]],["parent/59",[48,1.422]],["name/60",[34,31.661]],["parent/60",[48,1.422]],["name/61",[36,35.025]],["parent/61",[48,1.422]],["name/62",[50,40.134]],["parent/62",[48,1.422]],["name/63",[51,40.134]],["parent/63",[48,1.422]],["name/64",[39,35.025]],["parent/64",[48,1.422]],["name/65",[52,40.134]],["parent/65",[48,1.422]],["name/66",[41,31.661]],["parent/66",[48,1.422]],["name/67",[42,31.661]],["parent/67",[48,1.422]],["name/68",[43,31.661]],["parent/68",[48,1.422]],["name/69",[53,40.134]],["parent/69",[]],["name/70",[54,40.134]],["parent/70",[]],["name/71",[55,24.039]],["parent/71",[]],["name/72",[34,31.661]],["parent/72",[55,1.73]],["name/73",[56,40.134]],["parent/73",[55,1.73]],["name/74",[57,40.134]],["parent/74",[55,1.73]],["name/75",[58,40.134]],["parent/75",[55,1.73]],["name/76",[42,31.661]],["parent/76",[55,1.73]],["name/77",[43,31.661]],["parent/77",[55,1.73]],["name/78",[59,40.134]],["parent/78",[]],["name/79",[41,31.661]],["parent/79",[]],["name/80",[60,40.134]],["parent/80",[]],["name/81",[61,40.134]],["parent/81",[]]],"invertedIndex":[["__type",{"_index":43,"name":{"50":{},"68":{},"77":{}},"parent":{}}],["_add",{"_index":56,"name":{"73":{}},"parent":{}}],["_handleremove",{"_index":57,"name":{"74":{}},"parent":{}}],["_removealltoasts",{"_index":58,"name":{"75":{}},"parent":{}}],["action",{"_index":29,"name":{"36":{}},"parent":{}}],["back",{"_index":9,"name":{"10":{}},"parent":{}}],["battery",{"_index":12,"name":{"13":{}},"parent":{}}],["button",{"_index":31,"name":{"38":{},"57":{}},"parent":{}}],["card",{"_index":17,"name":{"18":{}},"parent":{}}],["checkbox",{"_index":1,"name":{"1":{}},"parent":{}}],["checkmark",{"_index":8,"name":{"9":{}},"parent":{}}],["choice",{"_index":0,"name":{"0":{}},"parent":{}}],["componentdidmount",{"_index":35,"name":{"42":{}},"parent":{}}],["componentdidupdate",{"_index":36,"name":{"43":{},"61":{}},"parent":{}}],["componentwillunmount",{"_index":37,"name":{"44":{}},"parent":{}}],["config",{"_index":15,"name":{"16":{}},"parent":{}}],["constructor",{"_index":34,"name":{"41":{},"60":{},"72":{}},"parent":{}}],["container",{"_index":27,"name":{"34":{}},"parent":{}}],["content",{"_index":21,"name":{"23":{}},"parent":{}}],["directionpad",{"_index":32,"name":{"39":{}},"parent":{}}],["dots",{"_index":16,"name":{"17":{}},"parent":{}}],["drawer",{"_index":33,"name":{"40":{}},"parent":{"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{}}}],["equalactions",{"_index":30,"name":{"37":{}},"parent":{}}],["forward",{"_index":10,"name":{"11":{}},"parent":{}}],["getanchorelement",{"_index":51,"name":{"63":{}},"parent":{}}],["handleesc",{"_index":41,"name":{"48":{},"66":{},"79":{}},"parent":{}}],["handleoverlayclick",{"_index":52,"name":{"65":{}},"parent":{}}],["header",{"_index":18,"name":{"19":{},"26":{}},"parent":{}}],["headericonaction",{"_index":19,"name":{"20":{}},"parent":{}}],["heart",{"_index":13,"name":{"14":{}},"parent":{}}],["icon",{"_index":7,"name":{"7":{},"8":{}},"parent":{"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{}}}],["if",{"_index":60,"name":{"80":{}},"parent":{}}],["input",{"_index":2,"name":{"2":{}},"parent":{}}],["item",{"_index":23,"name":{"27":{},"28":{}},"parent":{"29":{},"30":{}}}],["label",{"_index":3,"name":{"3":{},"29":{}},"parent":{}}],["list",{"_index":22,"name":{"24":{},"25":{}},"parent":{"26":{}}}],["message",{"_index":44,"name":{"51":{}},"parent":{}}],["modal",{"_index":45,"name":{"52":{},"53":{}},"parent":{"54":{}}}],["modalbuttons",{"_index":47,"name":{"55":{},"56":{}},"parent":{"57":{}}}],["negatemargin",{"_index":46,"name":{"54":{}},"parent":{}}],["onclose",{"_index":40,"name":{"47":{}},"parent":{}}],["onopen",{"_index":39,"name":{"46":{},"64":{}},"parent":{}}],["option",{"_index":49,"name":{"59":{}},"parent":{}}],["pop",{"_index":48,"name":{"58":{}},"parent":{"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{}}}],["render",{"_index":42,"name":{"49":{},"67":{},"76":{}},"parent":{}}],["rootref",{"_index":50,"name":{"62":{}},"parent":{}}],["search",{"_index":11,"name":{"12":{}},"parent":{}}],["searchcontainer",{"_index":25,"name":{"31":{}},"parent":{}}],["section",{"_index":26,"name":{"32":{},"33":{}},"parent":{"34":{}}}],["select",{"_index":4,"name":{"4":{}},"parent":{}}],["selector",{"_index":54,"name":{"70":{}},"parent":{}}],["spacer",{"_index":61,"name":{"81":{}},"parent":{}}],["stats",{"_index":53,"name":{"69":{}},"parent":{}}],["stickyheader",{"_index":20,"name":{"21":{},"22":{}},"parent":{"23":{}}}],["table",{"_index":28,"name":{"35":{}},"parent":{}}],["textarea",{"_index":5,"name":{"5":{}},"parent":{}}],["timeout",{"_index":38,"name":{"45":{}},"parent":{}}],["toasterprovider",{"_index":55,"name":{"71":{}},"parent":{"72":{},"73":{},"74":{},"75":{},"76":{},"77":{}}}],["toggle",{"_index":6,"name":{"6":{}},"parent":{}}],["trash",{"_index":14,"name":{"15":{}},"parent":{}}],["usetoaster",{"_index":59,"name":{"78":{}},"parent":{}}],["value",{"_index":24,"name":{"30":{}},"parent":{}}]],"pipeline":[]}}
|