react-miui 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (146) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/components/layout/list/Header.d.ts +5 -1
  3. package/dist/components/layout/list/Header.d.ts.map +1 -1
  4. package/dist/components/layout/list/Header.js +6 -1
  5. package/dist/components/layout/list/Header.js.map +1 -1
  6. package/dist/components/layout/list/Item.d.ts +3 -0
  7. package/dist/components/layout/list/Item.d.ts.map +1 -1
  8. package/dist/components/layout/list/Item.js +20 -6
  9. package/dist/components/layout/list/Item.js.map +1 -1
  10. package/dist/components/layout/list/Item.module.scss +16 -1
  11. package/dist/components/layout/list/List.d.ts +6 -1
  12. package/dist/components/layout/list/List.d.ts.map +1 -1
  13. package/dist/components/layout/list/List.js +15 -1
  14. package/dist/components/layout/list/List.js.map +1 -1
  15. package/dist/components/layout/list/List.module.scss +4 -0
  16. package/dist/components/ui/button/Button.d.ts.map +1 -1
  17. package/dist/components/ui/button/Button.js +2 -2
  18. package/dist/components/ui/button/Button.js.map +1 -1
  19. package/dist/components/ui/modal/Modal.d.ts +18 -0
  20. package/dist/components/ui/modal/Modal.d.ts.map +1 -0
  21. package/dist/components/ui/modal/Modal.js +108 -0
  22. package/dist/components/ui/modal/Modal.js.map +1 -0
  23. package/dist/components/ui/modal/Modal.module.scss +92 -0
  24. package/dist/components/ui/modal/ModalButton.d.ts +8 -0
  25. package/dist/components/ui/modal/ModalButton.d.ts.map +1 -0
  26. package/dist/components/ui/modal/ModalButton.js +31 -0
  27. package/dist/components/ui/modal/ModalButton.js.map +1 -0
  28. package/dist/components/ui/modal/ModalButtons.d.ts +10 -0
  29. package/dist/components/ui/modal/ModalButtons.d.ts.map +1 -0
  30. package/dist/components/ui/modal/ModalButtons.js +15 -0
  31. package/dist/components/ui/modal/ModalButtons.js.map +1 -0
  32. package/dist/components/ui/modal/ModalButtons.module.scss +32 -0
  33. package/dist/components/ui/modal/ModalNoMargin.d.ts +6 -0
  34. package/dist/components/ui/modal/ModalNoMargin.d.ts.map +1 -0
  35. package/dist/components/ui/modal/ModalNoMargin.js +22 -0
  36. package/dist/components/ui/modal/ModalNoMargin.js.map +1 -0
  37. package/dist/components/ui/toaster/Notification.d.ts +9 -0
  38. package/dist/components/ui/toaster/Notification.d.ts.map +1 -0
  39. package/dist/components/ui/toaster/Notification.js +39 -0
  40. package/dist/components/ui/toaster/Notification.js.map +1 -0
  41. package/dist/components/ui/toaster/Toaster.d.ts +18 -0
  42. package/dist/components/ui/toaster/Toaster.d.ts.map +1 -0
  43. package/dist/components/ui/toaster/Toaster.js +79 -0
  44. package/dist/components/ui/toaster/Toaster.js.map +1 -0
  45. package/dist/components/ui/toaster/Toaster.module.scss +32 -0
  46. package/dist/components/ui/toaster/types.d.ts +7 -0
  47. package/dist/components/ui/toaster/types.d.ts.map +1 -0
  48. package/dist/components/ui/toaster/types.js +3 -0
  49. package/dist/components/ui/toaster/types.js.map +1 -0
  50. package/dist/global.scss +3 -0
  51. package/dist/index.d.ts +3 -0
  52. package/dist/index.d.ts.map +1 -1
  53. package/dist/index.js +3 -0
  54. package/dist/index.js.map +1 -1
  55. package/docs/assets/js/search.js +1 -1
  56. package/docs/assets/js/search.json +1 -1
  57. package/docs/classes/ToasterProvider.html +1090 -0
  58. package/docs/enums/ICON.html +27 -8
  59. package/docs/index.html +29 -4
  60. package/docs/modules/Item.html +16 -3
  61. package/docs/modules/List.html +17 -4
  62. package/docs/modules/Modal.html +160 -0
  63. package/docs/modules/ModalButtons.html +160 -0
  64. package/docs/modules/Section.html +16 -3
  65. package/docs/modules/StickyHeader.html +17 -4
  66. package/docs/modules.html +104 -23
  67. package/docs/pages/Tutorials/Test.html +16 -3
  68. package/esm/components/layout/list/Header.d.ts +5 -1
  69. package/esm/components/layout/list/Header.d.ts.map +1 -1
  70. package/esm/components/layout/list/Header.js +6 -1
  71. package/esm/components/layout/list/Header.js.map +1 -1
  72. package/esm/components/layout/list/Item.d.ts +3 -0
  73. package/esm/components/layout/list/Item.d.ts.map +1 -1
  74. package/esm/components/layout/list/Item.js +20 -6
  75. package/esm/components/layout/list/Item.js.map +1 -1
  76. package/esm/components/layout/list/Item.module.scss +16 -1
  77. package/esm/components/layout/list/List.d.ts +6 -1
  78. package/esm/components/layout/list/List.d.ts.map +1 -1
  79. package/esm/components/layout/list/List.js +15 -1
  80. package/esm/components/layout/list/List.js.map +1 -1
  81. package/esm/components/layout/list/List.module.scss +4 -0
  82. package/esm/components/ui/button/Button.d.ts.map +1 -1
  83. package/esm/components/ui/button/Button.js +2 -2
  84. package/esm/components/ui/button/Button.js.map +1 -1
  85. package/esm/components/ui/modal/Modal.d.ts +18 -0
  86. package/esm/components/ui/modal/Modal.d.ts.map +1 -0
  87. package/esm/components/ui/modal/Modal.js +83 -0
  88. package/esm/components/ui/modal/Modal.js.map +1 -0
  89. package/esm/components/ui/modal/Modal.module.scss +92 -0
  90. package/esm/components/ui/modal/ModalButton.d.ts +8 -0
  91. package/esm/components/ui/modal/ModalButton.d.ts.map +1 -0
  92. package/esm/components/ui/modal/ModalButton.js +13 -0
  93. package/esm/components/ui/modal/ModalButton.js.map +1 -0
  94. package/esm/components/ui/modal/ModalButtons.d.ts +10 -0
  95. package/esm/components/ui/modal/ModalButtons.d.ts.map +1 -0
  96. package/esm/components/ui/modal/ModalButtons.js +9 -0
  97. package/esm/components/ui/modal/ModalButtons.js.map +1 -0
  98. package/esm/components/ui/modal/ModalButtons.module.scss +32 -0
  99. package/esm/components/ui/modal/ModalNoMargin.d.ts +6 -0
  100. package/esm/components/ui/modal/ModalNoMargin.d.ts.map +1 -0
  101. package/esm/components/ui/modal/ModalNoMargin.js +16 -0
  102. package/esm/components/ui/modal/ModalNoMargin.js.map +1 -0
  103. package/esm/components/ui/toaster/Notification.d.ts +9 -0
  104. package/esm/components/ui/toaster/Notification.d.ts.map +1 -0
  105. package/esm/components/ui/toaster/Notification.js +14 -0
  106. package/esm/components/ui/toaster/Notification.js.map +1 -0
  107. package/esm/components/ui/toaster/Toaster.d.ts +18 -0
  108. package/esm/components/ui/toaster/Toaster.d.ts.map +1 -0
  109. package/esm/components/ui/toaster/Toaster.js +74 -0
  110. package/esm/components/ui/toaster/Toaster.js.map +1 -0
  111. package/esm/components/ui/toaster/Toaster.module.scss +32 -0
  112. package/esm/components/ui/toaster/types.d.ts +7 -0
  113. package/esm/components/ui/toaster/types.d.ts.map +1 -0
  114. package/esm/components/ui/toaster/types.js +2 -0
  115. package/esm/components/ui/toaster/types.js.map +1 -0
  116. package/esm/global.scss +3 -0
  117. package/esm/index.d.ts +3 -0
  118. package/esm/index.d.ts.map +1 -1
  119. package/esm/index.js +3 -0
  120. package/esm/index.js.map +1 -1
  121. package/package.json +2 -2
  122. package/src/components/layout/list/Header.tsx +15 -2
  123. package/src/components/layout/list/Item.module.scss +16 -1
  124. package/src/components/layout/list/Item.tsx +28 -7
  125. package/src/components/layout/list/List.module.scss +4 -0
  126. package/src/components/layout/list/List.tsx +29 -2
  127. package/src/components/ui/button/Button.tsx +4 -2
  128. package/src/components/ui/modal/Modal.module.scss +92 -0
  129. package/src/components/ui/modal/Modal.tsx +136 -0
  130. package/src/components/ui/modal/ModalButton.tsx +25 -0
  131. package/src/components/ui/modal/ModalButtons.module.scss +32 -0
  132. package/src/components/ui/modal/ModalButtons.tsx +17 -0
  133. package/src/components/ui/modal/ModalNoMargin.tsx +22 -0
  134. package/src/components/ui/toaster/Notification.tsx +31 -0
  135. package/src/components/ui/toaster/Toaster.module.scss +32 -0
  136. package/src/components/ui/toaster/Toaster.tsx +101 -0
  137. package/src/components/ui/toaster/types.ts +9 -0
  138. package/src/demo/Demo.tsx +7 -4
  139. package/src/demo/Menu.module.scss +1 -0
  140. package/src/demo/components/layout/list/Inset.tsx +24 -0
  141. package/src/demo/components/layout/list/Selection.tsx +17 -0
  142. package/src/demo/components/ui/modal/Modal.tsx +110 -0
  143. package/src/demo/components/ui/toaster/Toaster.tsx +28 -0
  144. package/src/demo/componentsMap.ts +31 -0
  145. package/src/global.scss +3 -0
  146. package/src/index.ts +3 -0
@@ -0,0 +1,22 @@
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.ModalNegateMargin = void 0;
7
+ const react_1 = __importDefault(require("react"));
8
+ const Modal_module_scss_1 = __importDefault(require("./Modal.module.scss"));
9
+ const List_1 = require("../../layout/list/List");
10
+ const ModalNegateMargin = (props) => {
11
+ const chld = react_1.default.Children.map(props.children, (child, index) => {
12
+ if (child && typeof child === "object" && "type" in child && child.type === List_1.List) {
13
+ return react_1.default.cloneElement(child, {
14
+ className: Modal_module_scss_1.default.removeMargin,
15
+ });
16
+ }
17
+ return child;
18
+ });
19
+ return react_1.default.createElement("div", { className: Modal_module_scss_1.default.negateMargin }, chld);
20
+ };
21
+ exports.ModalNegateMargin = ModalNegateMargin;
22
+ //# sourceMappingURL=ModalNoMargin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ModalNoMargin.js","sourceRoot":"","sources":["../../../../src/components/ui/modal/ModalNoMargin.tsx"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAE1B,4EAAyC;AACzC,iDAA8C;AAI9C,MAAM,iBAAiB,GAAoB,CAAC,KAAK,EAAE,EAAE;IACjD,MAAM,IAAI,GAAG,eAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE;QAC7D,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,MAAM,IAAI,KAAK,IAAI,KAAK,CAAC,IAAI,KAAK,WAAI,EAAE;YAC9E,OAAO,eAAK,CAAC,YAAY,CAAC,KAAK,EAAE;gBAE7B,SAAS,EAAE,2BAAM,CAAC,YAAY;aACjC,CAAC,CAAC;SACN;QAED,OAAO,KAAK,CAAC;IACjB,CAAC,CAAC,CAAC;IACH,OAAO,uCAAK,SAAS,EAAE,2BAAM,CAAC,YAAY,IAAG,IAAI,CAAO,CAAC;AAC7D,CAAC,CAAC;AAEO,8CAAiB"}
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import type { Toast } from "./types";
3
+ interface Props {
4
+ toast: Toast;
5
+ onRemove: (id: Toast["id"]) => void;
6
+ }
7
+ declare const Notification: React.FC<Props>;
8
+ export { Notification };
9
+ //# sourceMappingURL=Notification.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Notification.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/toaster/Notification.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;AAG3C,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAGrC,UAAU,KAAK;IACX,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,EAAE,CAAC,EAAE,EAAE,KAAK,CAAC,IAAI,CAAC,KAAK,IAAI,CAAC;CACvC;AAGD,QAAA,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAgBjC,CAAC;AAEF,OAAO,EAAE,YAAY,EAAE,CAAC"}
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
10
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
11
+ }) : function(o, v) {
12
+ o["default"] = v;
13
+ });
14
+ var __importStar = (this && this.__importStar) || function (mod) {
15
+ if (mod && mod.__esModule) return mod;
16
+ var result = {};
17
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
18
+ __setModuleDefault(result, mod);
19
+ return result;
20
+ };
21
+ var __importDefault = (this && this.__importDefault) || function (mod) {
22
+ return (mod && mod.__esModule) ? mod : { "default": mod };
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ exports.Notification = void 0;
26
+ const react_1 = __importStar(require("react"));
27
+ const classnames_1 = __importDefault(require("classnames"));
28
+ const Toaster_module_scss_1 = __importDefault(require("./Toaster.module.scss"));
29
+ const Notification = (props) => {
30
+ const handleRemove = react_1.useCallback(() => {
31
+ props.onRemove(props.toast.id);
32
+ }, [props.toast.id]);
33
+ return (react_1.default.createElement("div", { className: classnames_1.default(Toaster_module_scss_1.default.toast, {
34
+ [Toaster_module_scss_1.default.hide]: props.toast.hide,
35
+ }), key: props.toast.id, onTransitionEnd: handleRemove },
36
+ react_1.default.createElement("span", null, props.toast.text)));
37
+ };
38
+ exports.Notification = Notification;
39
+ //# sourceMappingURL=Notification.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Notification.js","sourceRoot":"","sources":["../../../../src/components/ui/toaster/Notification.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA2C;AAC3C,4DAAoC;AAGpC,gFAA2C;AAQ3C,MAAM,YAAY,GAAoB,CAAC,KAAK,EAAE,EAAE;IAC5C,MAAM,YAAY,GAAG,mBAAW,CAAC,GAAG,EAAE;QAClC,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IACnC,CAAC,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC;IAErB,OAAO,CACH,uCACI,SAAS,EAAE,oBAAU,CAAC,6BAAM,CAAC,KAAK,EAAE;YAChC,CAAC,6BAAM,CAAC,IAAI,CAAC,EAAE,KAAK,CAAC,KAAK,CAAC,IAAI;SAClC,CAAC,EACF,GAAG,EAAE,KAAK,CAAC,KAAK,CAAC,EAAE,EACnB,eAAe,EAAE,YAAY;QAE7B,4CAAO,KAAK,CAAC,KAAK,CAAC,IAAI,CAAQ,CAC7B,CACT,CAAC;AACN,CAAC,CAAC;AAEO,oCAAY"}
@@ -0,0 +1,18 @@
1
+ import React from "react";
2
+ import type { Toast } from "./types";
3
+ declare type ToasterFn = (text: string) => void;
4
+ interface Props {
5
+ }
6
+ interface State {
7
+ list: Toast[];
8
+ }
9
+ declare class ToasterProvider extends React.Component<Props, State> {
10
+ constructor(props: Props, context: unknown);
11
+ private readonly _add;
12
+ private readonly _handleRemove;
13
+ private readonly _removeAllToasts;
14
+ render(): JSX.Element;
15
+ }
16
+ declare const useToaster: () => ToasterFn;
17
+ export { ToasterProvider, useToaster };
18
+ //# sourceMappingURL=Toaster.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Toaster.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/toaster/Toaster.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoC,MAAM,OAAO,CAAC;AAEzD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAIrC,aAAK,SAAS,GAAG,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;AASxC,UAAU,KAAK;CAAG;AAClB,UAAU,KAAK;IACX,IAAI,EAAE,KAAK,EAAE,CAAC;CACjB;AAID,cAAM,eAAgB,SAAQ,KAAK,CAAC,SAAS,CAAC,KAAK,EAAE,KAAK,CAAC;gBACpC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO;IAQjD,OAAO,CAAC,QAAQ,CAAC,IAAI,CA6BnB;IAEF,OAAO,CAAC,QAAQ,CAAC,aAAa,CAK5B;IAEF,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAa/B;IAEK,MAAM;CAYhB;AAED,QAAA,MAAM,UAAU,iBAAmC,CAAC;AAEpD,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,CAAC"}
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
10
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
11
+ }) : function(o, v) {
12
+ o["default"] = v;
13
+ });
14
+ var __importStar = (this && this.__importStar) || function (mod) {
15
+ if (mod && mod.__esModule) return mod;
16
+ var result = {};
17
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
18
+ __setModuleDefault(result, mod);
19
+ return result;
20
+ };
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ exports.useToaster = exports.ToasterProvider = void 0;
23
+ const react_1 = __importStar(require("react"));
24
+ const Notification_1 = require("./Notification");
25
+ const ToasterContext = react_1.createContext(() => {
26
+ throw new Error("Toaster Provider missing in the tree");
27
+ });
28
+ const prefix = `${Date.now()}_`;
29
+ let counter = 0;
30
+ const DEFAULT_TIMEOUT = 5000;
31
+ class ToasterProvider extends react_1.default.Component {
32
+ constructor(props, context) {
33
+ super(props, context);
34
+ this._add = (text) => {
35
+ this._removeAllToasts();
36
+ const id = prefix + String(counter++);
37
+ const hide = false;
38
+ this.setState(prev => (Object.assign(Object.assign({}, prev), { list: [...prev.list, {
39
+ id,
40
+ text,
41
+ hide,
42
+ }] })));
43
+ setTimeout(() => {
44
+ this.setState(prev => (Object.assign(Object.assign({}, prev), { list: prev.list.map(p => {
45
+ if (p.id !== id) {
46
+ return p;
47
+ }
48
+ return Object.assign(Object.assign({}, p), { hide: true });
49
+ }) })));
50
+ }, DEFAULT_TIMEOUT);
51
+ };
52
+ this._handleRemove = (id) => {
53
+ this.setState(prev => (Object.assign(Object.assign({}, prev), { list: prev.list.filter(p => p.id !== id) })));
54
+ };
55
+ this._removeAllToasts = () => {
56
+ this.setState(prev => (Object.assign(Object.assign({}, prev), { list: prev.list.map(p => {
57
+ if (p.hide) {
58
+ return p;
59
+ }
60
+ return Object.assign(Object.assign({}, p), { hide: true });
61
+ }) })));
62
+ };
63
+ this.state = {
64
+ list: [],
65
+ };
66
+ }
67
+ render() {
68
+ const notifications = this.state.list.map((t) => {
69
+ return react_1.default.createElement(Notification_1.Notification, { onRemove: this._handleRemove, key: t.id, toast: t });
70
+ });
71
+ return (react_1.default.createElement(ToasterContext.Provider, { value: this._add },
72
+ notifications,
73
+ this.props.children));
74
+ }
75
+ }
76
+ exports.ToasterProvider = ToasterProvider;
77
+ const useToaster = () => react_1.useContext(ToasterContext);
78
+ exports.useToaster = useToaster;
79
+ //# sourceMappingURL=Toaster.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Toaster.js","sourceRoot":"","sources":["../../../../src/components/ui/toaster/Toaster.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,+CAAyD;AAIzD,iDAA8C;AAI9C,MAAM,cAAc,GAAG,qBAAa,CAAY,GAAG,EAAE;IACjD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;AAC5D,CAAC,CAAC,CAAC;AAEH,MAAM,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,EAAE,GAAG,CAAC;AAChC,IAAI,OAAO,GAAG,CAAC,CAAC;AAOhB,MAAM,eAAe,GAAG,IAAI,CAAC;AAE7B,MAAM,eAAgB,SAAQ,eAAK,CAAC,SAAuB;IACvD,YAAmB,KAAY,EAAE,OAAgB;QAC7C,KAAK,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;QAOT,SAAI,GAAG,CAAC,IAAY,EAAE,EAAE;YACrC,IAAI,CAAC,gBAAgB,EAAE,CAAC;YAExB,MAAM,EAAE,GAAG,MAAM,GAAG,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC;YACtC,MAAM,IAAI,GAAG,KAAK,CAAC;YAEnB,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,iCACf,IAAI,KACP,IAAI,EAAE,CAAC,GAAG,IAAI,CAAC,IAAI,EAAE;wBACjB,EAAE;wBACF,IAAI;wBACJ,IAAI;qBACP,CAAC,IACJ,CAAC,CAAC;YAEJ,UAAU,CAAC,GAAG,EAAE;gBACZ,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,iCACf,IAAI,KACP,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE;wBACpB,IAAI,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE;4BACb,OAAO,CAAC,CAAC;yBACZ;wBACD,uCACO,CAAC,KACJ,IAAI,EAAE,IAAI,IACZ;oBACN,CAAC,CAAC,IACJ,CAAC,CAAC;YACR,CAAC,EAAE,eAAe,CAAC,CAAC;QACxB,CAAC,CAAC;QAEe,kBAAa,GAAG,CAAC,EAAe,EAAE,EAAE;YACjD,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,iCACf,IAAI,KACP,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,IAC1C,CAAC,CAAC;QACR,CAAC,CAAC;QAEe,qBAAgB,GAAG,GAAG,EAAE;YACrC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,iCACf,IAAI,KACP,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE;oBACpB,IAAI,CAAC,CAAC,IAAI,EAAE;wBACR,OAAO,CAAC,CAAC;qBACZ;oBACD,uCACO,CAAC,KACJ,IAAI,EAAE,IAAI,IACZ;gBACN,CAAC,CAAC,IACJ,CAAC,CAAC;QACR,CAAC,CAAC;QAxDE,IAAI,CAAC,KAAK,GAAG;YACT,IAAI,EAAE,EAAE;SACX,CAAC;IACN,CAAC;IAuDM,MAAM;QACT,MAAM,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE;YAC5C,OAAO,8BAAC,2BAAY,IAAC,QAAQ,EAAE,IAAI,CAAC,aAAa,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE,KAAK,EAAE,CAAC,GAAI,CAAC;QAC/E,CAAC,CAAC,CAAC;QAEH,OAAO,CACH,8BAAC,cAAc,CAAC,QAAQ,IAAC,KAAK,EAAE,IAAI,CAAC,IAAI;YACpC,aAAa;YACb,IAAI,CAAC,KAAK,CAAC,QAAQ,CACE,CAC7B,CAAC;IACN,CAAC;CACJ;AAIQ,0CAAe;AAFxB,MAAM,UAAU,GAAG,GAAG,EAAE,CAAC,kBAAU,CAAC,cAAc,CAAC,CAAC;AAE1B,gCAAU"}
@@ -0,0 +1,32 @@
1
+ @keyframes show {
2
+ from {
3
+ transform: translateY(calc(100% + calc(190px / var(--ratio-dimensions))))
4
+ }
5
+ }
6
+
7
+ .toast {
8
+ position: fixed;
9
+ bottom: 0;
10
+ left: 40px;
11
+ right: 40px;
12
+ display: flex;
13
+ justify-content: center;
14
+ z-index: 1;
15
+
16
+ span {
17
+ background: rgba(56, 50, 46, 0.85);
18
+ color: #F9F6F2;
19
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.37);
20
+ border-radius: 12px; // around 22 @TODO use calc here
21
+ display: inline-block;
22
+ padding: 1em 1em;
23
+ animation: show 500ms 1;
24
+ animation-fill-mode: forwards;
25
+ margin-bottom: calc(190px / var(--ratio-dimensions));
26
+ }
27
+ }
28
+
29
+ .hide {
30
+ transition: opacity 300ms;
31
+ opacity: 0;
32
+ }
@@ -0,0 +1,7 @@
1
+ interface Toast {
2
+ id: string;
3
+ text: string;
4
+ hide: boolean;
5
+ }
6
+ export type { Toast, };
7
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/toaster/types.ts"],"names":[],"mappings":"AAAA,UAAU,KAAK;IACX,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,OAAO,CAAC;CACjB;AAED,YAAY,EACR,KAAK,GACR,CAAC"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/components/ui/toaster/types.ts"],"names":[],"mappings":""}
package/dist/global.scss CHANGED
@@ -28,6 +28,9 @@
28
28
 
29
29
  --toolbar-border: #ababab;
30
30
  --toolbar-bg: #f8f8f8;
31
+ --modal-bg: #f7f7f7;
32
+ --modal-button-bg: #f8f8f8;
33
+ --modal-button-border: #c2c2c2;
31
34
 
32
35
  // Shades: https://maketintsandshades.com/#038bf4,ff7200,7357e8,3ec234,3ec234,ff388f,ea2700
33
36
  --blue1: #038bf4;
package/dist/index.d.ts CHANGED
@@ -16,4 +16,7 @@ export * from "./components/ui/action/Action.js";
16
16
  export * from "./components/ui/action/EqualActions.js";
17
17
  export * from "./components/ui/button/Button.js";
18
18
  export * from "./components/ui/directionPad/Pad.js";
19
+ export * from "./components/ui/modal/Modal.js";
20
+ export * from "./components/ui/modal/ModalButtons.js";
21
+ export * from "./components/ui/toaster/Toaster.js";
19
22
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,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;AAEvD,cAAc,kCAAkC,CAAC;AACjD,cAAc,wCAAwC,CAAC;AACvD,cAAc,kCAAkC,CAAC;AACjD,cAAc,qCAAqC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,4BAA4B,CAAC;AAC3C,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;AAEvD,cAAc,kCAAkC,CAAC;AACjD,cAAc,wCAAwC,CAAC;AACvD,cAAc,kCAAkC,CAAC;AACjD,cAAc,qCAAqC,CAAC;AACpD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uCAAuC,CAAC;AACtD,cAAc,oCAAoC,CAAC"}
package/dist/index.js CHANGED
@@ -28,4 +28,7 @@ __exportStar(require("./components/ui/action/Action.js"), exports);
28
28
  __exportStar(require("./components/ui/action/EqualActions.js"), exports);
29
29
  __exportStar(require("./components/ui/button/Button.js"), exports);
30
30
  __exportStar(require("./components/ui/directionPad/Pad.js"), exports);
31
+ __exportStar(require("./components/ui/modal/Modal.js"), exports);
32
+ __exportStar(require("./components/ui/modal/ModalButtons.js"), exports);
33
+ __exportStar(require("./components/ui/toaster/Toaster.js"), exports);
31
34
  //# 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,gEAA8C;AAC9C,6DAA2C;AAC3C,6DAA2C;AAC3C,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;AAEvD,mEAAiD;AACjD,yEAAuD;AACvD,mEAAiD;AACjD,sEAAoD"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,gEAA8C;AAC9C,6DAA2C;AAC3C,6DAA2C;AAC3C,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;AAEvD,mEAAiD;AACjD,yEAAuD;AACvD,mEAAiD;AACjD,sEAAoD;AACpD,iEAA+C;AAC/C,wEAAsD;AACtD,qEAAmD"}
@@ -1 +1 @@
1
- window.searchData = {"kinds":{"2":"Namespace","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function"},"rows":[{"id":0,"kind":32,"name":"Checkbox","url":"modules.html#Checkbox","classes":"tsd-kind-variable"},{"id":1,"kind":32,"name":"Input","url":"modules.html#Input","classes":"tsd-kind-variable"},{"id":2,"kind":32,"name":"Label","url":"modules.html#Label","classes":"tsd-kind-variable"},{"id":3,"kind":32,"name":"TextArea","url":"modules.html#TextArea","classes":"tsd-kind-variable"},{"id":4,"kind":32,"name":"Toggle","url":"modules.html#Toggle","classes":"tsd-kind-variable"},{"id":5,"kind":32,"name":"Icon","url":"modules.html#Icon","classes":"tsd-kind-variable"},{"id":6,"kind":4,"name":"ICON","url":"enums/ICON.html","classes":"tsd-kind-enum"},{"id":7,"kind":16,"name":"checkmark","url":"enums/ICON.html#checkmark","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":8,"kind":16,"name":"back","url":"enums/ICON.html#back","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":9,"kind":16,"name":"forward","url":"enums/ICON.html#forward","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":10,"kind":16,"name":"search","url":"enums/ICON.html#search","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":11,"kind":16,"name":"battery","url":"enums/ICON.html#battery","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":12,"kind":32,"name":"Card","url":"modules.html#Card","classes":"tsd-kind-variable"},{"id":13,"kind":32,"name":"Header","url":"modules.html#Header","classes":"tsd-kind-variable"},{"id":14,"kind":32,"name":"HeaderIconAction","url":"modules.html#HeaderIconAction","classes":"tsd-kind-variable"},{"id":15,"kind":32,"name":"StickyHeader","url":"modules.html#StickyHeader","classes":"tsd-kind-variable"},{"id":16,"kind":2,"name":"StickyHeader","url":"modules/StickyHeader.html","classes":"tsd-kind-namespace"},{"id":17,"kind":64,"name":"Content","url":"modules/StickyHeader.html#Content","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"StickyHeader"},{"id":18,"kind":32,"name":"List","url":"modules.html#List","classes":"tsd-kind-variable"},{"id":19,"kind":2,"name":"List","url":"modules/List.html","classes":"tsd-kind-namespace"},{"id":20,"kind":32,"name":"Header","url":"modules/List.html#Header","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"List"},{"id":21,"kind":32,"name":"Item","url":"modules.html#Item","classes":"tsd-kind-variable"},{"id":22,"kind":2,"name":"Item","url":"modules/Item.html","classes":"tsd-kind-namespace"},{"id":23,"kind":32,"name":"Label","url":"modules/Item.html#Label","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":24,"kind":32,"name":"Value","url":"modules/Item.html#Value","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":25,"kind":32,"name":"SearchContainer","url":"modules.html#SearchContainer","classes":"tsd-kind-variable"},{"id":26,"kind":32,"name":"Section","url":"modules.html#Section","classes":"tsd-kind-variable"},{"id":27,"kind":2,"name":"Section","url":"modules/Section.html","classes":"tsd-kind-namespace"},{"id":28,"kind":32,"name":"Container","url":"modules/Section.html#Container","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Section"},{"id":29,"kind":32,"name":"Action","url":"modules.html#Action","classes":"tsd-kind-variable"},{"id":30,"kind":32,"name":"EqualActions","url":"modules.html#EqualActions","classes":"tsd-kind-variable"},{"id":31,"kind":32,"name":"Button","url":"modules.html#Button","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"DirectionPad","url":"modules.html#DirectionPad","classes":"tsd-kind-variable"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,31.209]],["parent/0",[]],["name/1",[1,31.209]],["parent/1",[]],["name/2",[2,26.101]],["parent/2",[]],["name/3",[3,31.209]],["parent/3",[]],["name/4",[4,31.209]],["parent/4",[]],["name/5",[5,15.115]],["parent/5",[]],["name/6",[5,15.115]],["parent/6",[]],["name/7",[6,31.209]],["parent/7",[5,0.779]],["name/8",[7,31.209]],["parent/8",[5,0.779]],["name/9",[8,31.209]],["parent/9",[5,0.779]],["name/10",[9,31.209]],["parent/10",[5,0.779]],["name/11",[10,31.209]],["parent/11",[5,0.779]],["name/12",[11,31.209]],["parent/12",[]],["name/13",[12,26.101]],["parent/13",[]],["name/14",[13,31.209]],["parent/14",[]],["name/15",[14,22.736]],["parent/15",[]],["name/16",[14,22.736]],["parent/16",[]],["name/17",[15,31.209]],["parent/17",[14,1.171]],["name/18",[16,22.736]],["parent/18",[]],["name/19",[16,22.736]],["parent/19",[]],["name/20",[12,26.101]],["parent/20",[16,1.171]],["name/21",[17,20.223]],["parent/21",[]],["name/22",[17,20.223]],["parent/22",[]],["name/23",[2,26.101]],["parent/23",[17,1.042]],["name/24",[18,31.209]],["parent/24",[17,1.042]],["name/25",[19,31.209]],["parent/25",[]],["name/26",[20,22.736]],["parent/26",[]],["name/27",[20,22.736]],["parent/27",[]],["name/28",[21,31.209]],["parent/28",[20,1.171]],["name/29",[22,31.209]],["parent/29",[]],["name/30",[23,31.209]],["parent/30",[]],["name/31",[24,31.209]],["parent/31",[]],["name/32",[25,31.209]],["parent/32",[]]],"invertedIndex":[["action",{"_index":22,"name":{"29":{}},"parent":{}}],["back",{"_index":7,"name":{"8":{}},"parent":{}}],["battery",{"_index":10,"name":{"11":{}},"parent":{}}],["button",{"_index":24,"name":{"31":{}},"parent":{}}],["card",{"_index":11,"name":{"12":{}},"parent":{}}],["checkbox",{"_index":0,"name":{"0":{}},"parent":{}}],["checkmark",{"_index":6,"name":{"7":{}},"parent":{}}],["container",{"_index":21,"name":{"28":{}},"parent":{}}],["content",{"_index":15,"name":{"17":{}},"parent":{}}],["directionpad",{"_index":25,"name":{"32":{}},"parent":{}}],["equalactions",{"_index":23,"name":{"30":{}},"parent":{}}],["forward",{"_index":8,"name":{"9":{}},"parent":{}}],["header",{"_index":12,"name":{"13":{},"20":{}},"parent":{}}],["headericonaction",{"_index":13,"name":{"14":{}},"parent":{}}],["icon",{"_index":5,"name":{"5":{},"6":{}},"parent":{"7":{},"8":{},"9":{},"10":{},"11":{}}}],["input",{"_index":1,"name":{"1":{}},"parent":{}}],["item",{"_index":17,"name":{"21":{},"22":{}},"parent":{"23":{},"24":{}}}],["label",{"_index":2,"name":{"2":{},"23":{}},"parent":{}}],["list",{"_index":16,"name":{"18":{},"19":{}},"parent":{"20":{}}}],["search",{"_index":9,"name":{"10":{}},"parent":{}}],["searchcontainer",{"_index":19,"name":{"25":{}},"parent":{}}],["section",{"_index":20,"name":{"26":{},"27":{}},"parent":{"28":{}}}],["stickyheader",{"_index":14,"name":{"15":{},"16":{}},"parent":{"17":{}}}],["textarea",{"_index":3,"name":{"3":{}},"parent":{}}],["toggle",{"_index":4,"name":{"4":{}},"parent":{}}],["value",{"_index":18,"name":{"24":{}},"parent":{}}]],"pipeline":[]}}
1
+ window.searchData = {"kinds":{"2":"Namespace","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","512":"Constructor","2048":"Method","65536":"Type literal"},"rows":[{"id":0,"kind":32,"name":"Checkbox","url":"modules.html#Checkbox","classes":"tsd-kind-variable"},{"id":1,"kind":32,"name":"Input","url":"modules.html#Input","classes":"tsd-kind-variable"},{"id":2,"kind":32,"name":"Label","url":"modules.html#Label","classes":"tsd-kind-variable"},{"id":3,"kind":32,"name":"TextArea","url":"modules.html#TextArea","classes":"tsd-kind-variable"},{"id":4,"kind":32,"name":"Toggle","url":"modules.html#Toggle","classes":"tsd-kind-variable"},{"id":5,"kind":32,"name":"Icon","url":"modules.html#Icon","classes":"tsd-kind-variable"},{"id":6,"kind":4,"name":"ICON","url":"enums/ICON.html","classes":"tsd-kind-enum"},{"id":7,"kind":16,"name":"checkmark","url":"enums/ICON.html#checkmark","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":8,"kind":16,"name":"back","url":"enums/ICON.html#back","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":9,"kind":16,"name":"forward","url":"enums/ICON.html#forward","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":10,"kind":16,"name":"search","url":"enums/ICON.html#search","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":11,"kind":16,"name":"battery","url":"enums/ICON.html#battery","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":12,"kind":32,"name":"Card","url":"modules.html#Card","classes":"tsd-kind-variable"},{"id":13,"kind":32,"name":"Header","url":"modules.html#Header","classes":"tsd-kind-variable"},{"id":14,"kind":32,"name":"HeaderIconAction","url":"modules.html#HeaderIconAction","classes":"tsd-kind-variable"},{"id":15,"kind":32,"name":"StickyHeader","url":"modules.html#StickyHeader","classes":"tsd-kind-variable"},{"id":16,"kind":2,"name":"StickyHeader","url":"modules/StickyHeader.html","classes":"tsd-kind-namespace"},{"id":17,"kind":64,"name":"Content","url":"modules/StickyHeader.html#Content","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"StickyHeader"},{"id":18,"kind":32,"name":"List","url":"modules.html#List","classes":"tsd-kind-variable"},{"id":19,"kind":2,"name":"List","url":"modules/List.html","classes":"tsd-kind-namespace"},{"id":20,"kind":32,"name":"Header","url":"modules/List.html#Header","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"List"},{"id":21,"kind":32,"name":"Item","url":"modules.html#Item","classes":"tsd-kind-variable"},{"id":22,"kind":2,"name":"Item","url":"modules/Item.html","classes":"tsd-kind-namespace"},{"id":23,"kind":32,"name":"Label","url":"modules/Item.html#Label","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":24,"kind":32,"name":"Value","url":"modules/Item.html#Value","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":25,"kind":32,"name":"SearchContainer","url":"modules.html#SearchContainer","classes":"tsd-kind-variable"},{"id":26,"kind":32,"name":"Section","url":"modules.html#Section","classes":"tsd-kind-variable"},{"id":27,"kind":2,"name":"Section","url":"modules/Section.html","classes":"tsd-kind-namespace"},{"id":28,"kind":32,"name":"Container","url":"modules/Section.html#Container","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Section"},{"id":29,"kind":32,"name":"Action","url":"modules.html#Action","classes":"tsd-kind-variable"},{"id":30,"kind":32,"name":"EqualActions","url":"modules.html#EqualActions","classes":"tsd-kind-variable"},{"id":31,"kind":32,"name":"Button","url":"modules.html#Button","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"DirectionPad","url":"modules.html#DirectionPad","classes":"tsd-kind-variable"},{"id":33,"kind":32,"name":"Modal","url":"modules.html#Modal","classes":"tsd-kind-variable"},{"id":34,"kind":2,"name":"Modal","url":"modules/Modal.html","classes":"tsd-kind-namespace"},{"id":35,"kind":32,"name":"NegateMargin","url":"modules/Modal.html#NegateMargin","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Modal"},{"id":36,"kind":32,"name":"ModalButtons","url":"modules.html#ModalButtons","classes":"tsd-kind-variable"},{"id":37,"kind":2,"name":"ModalButtons","url":"modules/ModalButtons.html","classes":"tsd-kind-namespace"},{"id":38,"kind":32,"name":"Button","url":"modules/ModalButtons.html#Button","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"ModalButtons"},{"id":39,"kind":128,"name":"ToasterProvider","url":"classes/ToasterProvider.html","classes":"tsd-kind-class"},{"id":40,"kind":512,"name":"constructor","url":"classes/ToasterProvider.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider"},{"id":41,"kind":2048,"name":"_add","url":"classes/ToasterProvider.html#_add","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":42,"kind":2048,"name":"_handleRemove","url":"classes/ToasterProvider.html#_handleRemove","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":43,"kind":2048,"name":"_removeAllToasts","url":"classes/ToasterProvider.html#_removeAllToasts","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":44,"kind":2048,"name":"render","url":"classes/ToasterProvider.html#render","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider"},{"id":45,"kind":65536,"name":"__type","url":"classes/ToasterProvider.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"ToasterProvider"},{"id":46,"kind":64,"name":"useToaster","url":"modules.html#useToaster","classes":"tsd-kind-function"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,34.657]],["parent/0",[]],["name/1",[1,34.657]],["parent/1",[]],["name/2",[2,29.549]],["parent/2",[]],["name/3",[3,34.657]],["parent/3",[]],["name/4",[4,34.657]],["parent/4",[]],["name/5",[5,18.563]],["parent/5",[]],["name/6",[5,18.563]],["parent/6",[]],["name/7",[6,34.657]],["parent/7",[5,1.119]],["name/8",[7,34.657]],["parent/8",[5,1.119]],["name/9",[8,34.657]],["parent/9",[5,1.119]],["name/10",[9,34.657]],["parent/10",[5,1.119]],["name/11",[10,34.657]],["parent/11",[5,1.119]],["name/12",[11,34.657]],["parent/12",[]],["name/13",[12,29.549]],["parent/13",[]],["name/14",[13,34.657]],["parent/14",[]],["name/15",[14,26.184]],["parent/15",[]],["name/16",[14,26.184]],["parent/16",[]],["name/17",[15,34.657]],["parent/17",[14,1.578]],["name/18",[16,26.184]],["parent/18",[]],["name/19",[16,26.184]],["parent/19",[]],["name/20",[12,29.549]],["parent/20",[16,1.578]],["name/21",[17,23.671]],["parent/21",[]],["name/22",[17,23.671]],["parent/22",[]],["name/23",[2,29.549]],["parent/23",[17,1.427]],["name/24",[18,34.657]],["parent/24",[17,1.427]],["name/25",[19,34.657]],["parent/25",[]],["name/26",[20,26.184]],["parent/26",[]],["name/27",[20,26.184]],["parent/27",[]],["name/28",[21,34.657]],["parent/28",[20,1.578]],["name/29",[22,34.657]],["parent/29",[]],["name/30",[23,34.657]],["parent/30",[]],["name/31",[24,29.549]],["parent/31",[]],["name/32",[25,34.657]],["parent/32",[]],["name/33",[26,26.184]],["parent/33",[]],["name/34",[26,26.184]],["parent/34",[]],["name/35",[27,34.657]],["parent/35",[26,1.578]],["name/36",[28,26.184]],["parent/36",[]],["name/37",[28,26.184]],["parent/37",[]],["name/38",[24,29.549]],["parent/38",[28,1.578]],["name/39",[29,18.563]],["parent/39",[]],["name/40",[30,34.657]],["parent/40",[29,1.119]],["name/41",[31,34.657]],["parent/41",[29,1.119]],["name/42",[32,34.657]],["parent/42",[29,1.119]],["name/43",[33,34.657]],["parent/43",[29,1.119]],["name/44",[34,34.657]],["parent/44",[29,1.119]],["name/45",[35,34.657]],["parent/45",[29,1.119]],["name/46",[36,34.657]],["parent/46",[]]],"invertedIndex":[["__type",{"_index":35,"name":{"45":{}},"parent":{}}],["_add",{"_index":31,"name":{"41":{}},"parent":{}}],["_handleremove",{"_index":32,"name":{"42":{}},"parent":{}}],["_removealltoasts",{"_index":33,"name":{"43":{}},"parent":{}}],["action",{"_index":22,"name":{"29":{}},"parent":{}}],["back",{"_index":7,"name":{"8":{}},"parent":{}}],["battery",{"_index":10,"name":{"11":{}},"parent":{}}],["button",{"_index":24,"name":{"31":{},"38":{}},"parent":{}}],["card",{"_index":11,"name":{"12":{}},"parent":{}}],["checkbox",{"_index":0,"name":{"0":{}},"parent":{}}],["checkmark",{"_index":6,"name":{"7":{}},"parent":{}}],["constructor",{"_index":30,"name":{"40":{}},"parent":{}}],["container",{"_index":21,"name":{"28":{}},"parent":{}}],["content",{"_index":15,"name":{"17":{}},"parent":{}}],["directionpad",{"_index":25,"name":{"32":{}},"parent":{}}],["equalactions",{"_index":23,"name":{"30":{}},"parent":{}}],["forward",{"_index":8,"name":{"9":{}},"parent":{}}],["header",{"_index":12,"name":{"13":{},"20":{}},"parent":{}}],["headericonaction",{"_index":13,"name":{"14":{}},"parent":{}}],["icon",{"_index":5,"name":{"5":{},"6":{}},"parent":{"7":{},"8":{},"9":{},"10":{},"11":{}}}],["input",{"_index":1,"name":{"1":{}},"parent":{}}],["item",{"_index":17,"name":{"21":{},"22":{}},"parent":{"23":{},"24":{}}}],["label",{"_index":2,"name":{"2":{},"23":{}},"parent":{}}],["list",{"_index":16,"name":{"18":{},"19":{}},"parent":{"20":{}}}],["modal",{"_index":26,"name":{"33":{},"34":{}},"parent":{"35":{}}}],["modalbuttons",{"_index":28,"name":{"36":{},"37":{}},"parent":{"38":{}}}],["negatemargin",{"_index":27,"name":{"35":{}},"parent":{}}],["render",{"_index":34,"name":{"44":{}},"parent":{}}],["search",{"_index":9,"name":{"10":{}},"parent":{}}],["searchcontainer",{"_index":19,"name":{"25":{}},"parent":{}}],["section",{"_index":20,"name":{"26":{},"27":{}},"parent":{"28":{}}}],["stickyheader",{"_index":14,"name":{"15":{},"16":{}},"parent":{"17":{}}}],["textarea",{"_index":3,"name":{"3":{}},"parent":{}}],["toasterprovider",{"_index":29,"name":{"39":{}},"parent":{"40":{},"41":{},"42":{},"43":{},"44":{},"45":{}}}],["toggle",{"_index":4,"name":{"4":{}},"parent":{}}],["usetoaster",{"_index":36,"name":{"46":{}},"parent":{}}],["value",{"_index":18,"name":{"24":{}},"parent":{}}]],"pipeline":[]}}
@@ -1 +1 @@
1
- {"kinds":{"2":"Namespace","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","9999999":"Page"},"rows":[{"id":0,"kind":32,"name":"Checkbox","url":"modules.html#Checkbox","classes":"tsd-kind-variable"},{"id":1,"kind":32,"name":"Input","url":"modules.html#Input","classes":"tsd-kind-variable"},{"id":2,"kind":32,"name":"Label","url":"modules.html#Label","classes":"tsd-kind-variable"},{"id":3,"kind":32,"name":"TextArea","url":"modules.html#TextArea","classes":"tsd-kind-variable"},{"id":4,"kind":32,"name":"Toggle","url":"modules.html#Toggle","classes":"tsd-kind-variable"},{"id":5,"kind":32,"name":"Icon","url":"modules.html#Icon","classes":"tsd-kind-variable"},{"id":6,"kind":4,"name":"ICON","url":"enums/ICON.html","classes":"tsd-kind-enum"},{"id":7,"kind":16,"name":"checkmark","url":"enums/ICON.html#checkmark","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":8,"kind":16,"name":"back","url":"enums/ICON.html#back","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":9,"kind":16,"name":"forward","url":"enums/ICON.html#forward","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":10,"kind":16,"name":"search","url":"enums/ICON.html#search","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":11,"kind":16,"name":"battery","url":"enums/ICON.html#battery","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":12,"kind":32,"name":"Card","url":"modules.html#Card","classes":"tsd-kind-variable"},{"id":13,"kind":32,"name":"Header","url":"modules.html#Header","classes":"tsd-kind-variable"},{"id":14,"kind":32,"name":"HeaderIconAction","url":"modules.html#HeaderIconAction","classes":"tsd-kind-variable"},{"id":15,"kind":32,"name":"StickyHeader","url":"modules.html#StickyHeader","classes":"tsd-kind-variable"},{"id":16,"kind":2,"name":"StickyHeader","url":"modules/StickyHeader.html","classes":"tsd-kind-namespace"},{"id":17,"kind":64,"name":"Content","url":"modules/StickyHeader.html#Content","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"StickyHeader","pagesPluginParent":"StickyHeader."},{"id":18,"kind":32,"name":"List","url":"modules.html#List","classes":"tsd-kind-variable"},{"id":19,"kind":2,"name":"List","url":"modules/List.html","classes":"tsd-kind-namespace"},{"id":20,"kind":32,"name":"Header","url":"modules/List.html#Header","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"List","pagesPluginParent":"List."},{"id":21,"kind":32,"name":"Item","url":"modules.html#Item","classes":"tsd-kind-variable"},{"id":22,"kind":2,"name":"Item","url":"modules/Item.html","classes":"tsd-kind-namespace"},{"id":23,"kind":32,"name":"Label","url":"modules/Item.html#Label","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item","pagesPluginParent":"Item."},{"id":24,"kind":32,"name":"Value","url":"modules/Item.html#Value","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item","pagesPluginParent":"Item."},{"id":25,"kind":32,"name":"SearchContainer","url":"modules.html#SearchContainer","classes":"tsd-kind-variable"},{"id":26,"kind":32,"name":"Section","url":"modules.html#Section","classes":"tsd-kind-variable"},{"id":27,"kind":2,"name":"Section","url":"modules/Section.html","classes":"tsd-kind-namespace"},{"id":28,"kind":32,"name":"Container","url":"modules/Section.html#Container","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Section","pagesPluginParent":"Section."},{"id":29,"kind":32,"name":"Action","url":"modules.html#Action","classes":"tsd-kind-variable"},{"id":30,"kind":32,"name":"EqualActions","url":"modules.html#EqualActions","classes":"tsd-kind-variable"},{"id":31,"kind":32,"name":"Button","url":"modules.html#Button","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"DirectionPad","url":"modules.html#DirectionPad","classes":"tsd-kind-variable"},{"id":33,"kind":1,"name":"Test","url":"pages/Tutorials/Test.html","classes":"tsd-kind-page","pagesPluginContent":"This is example tutorial page.\n","pagesPluginParent":"Tutorials / "}],"index":{"version":"2.3.9","fields":["pagesPluginContent","name","parent"],"fieldVectors":[["pagesPluginContent/0",[]],["name/0",[0,31.499]],["parent/0",[]],["pagesPluginContent/1",[]],["name/1",[1,31.499]],["parent/1",[]],["pagesPluginContent/2",[]],["name/2",[2,26.391]],["parent/2",[]],["pagesPluginContent/3",[]],["name/3",[3,31.499]],["parent/3",[]],["pagesPluginContent/4",[]],["name/4",[4,31.499]],["parent/4",[]],["pagesPluginContent/5",[]],["name/5",[5,15.404]],["parent/5",[]],["pagesPluginContent/6",[]],["name/6",[5,15.404]],["parent/6",[]],["pagesPluginContent/7",[]],["name/7",[6,31.499]],["parent/7",[5,0.777]],["pagesPluginContent/8",[]],["name/8",[7,31.499]],["parent/8",[5,0.777]],["pagesPluginContent/9",[]],["name/9",[8,31.499]],["parent/9",[5,0.777]],["pagesPluginContent/10",[]],["name/10",[9,31.499]],["parent/10",[5,0.777]],["pagesPluginContent/11",[]],["name/11",[10,31.499]],["parent/11",[5,0.777]],["pagesPluginContent/12",[]],["name/12",[11,31.499]],["parent/12",[]],["pagesPluginContent/13",[]],["name/13",[12,26.391]],["parent/13",[]],["pagesPluginContent/14",[]],["name/14",[13,31.499]],["parent/14",[]],["pagesPluginContent/15",[]],["name/15",[14,23.026]],["parent/15",[]],["pagesPluginContent/16",[]],["name/16",[14,23.026]],["parent/16",[]],["pagesPluginContent/17",[]],["name/17",[15,31.499]],["parent/17",[14,1.162]],["pagesPluginContent/18",[]],["name/18",[16,23.026]],["parent/18",[]],["pagesPluginContent/19",[]],["name/19",[16,23.026]],["parent/19",[]],["pagesPluginContent/20",[]],["name/20",[12,26.391]],["parent/20",[16,1.162]],["pagesPluginContent/21",[]],["name/21",[17,20.513]],["parent/21",[]],["pagesPluginContent/22",[]],["name/22",[17,20.513]],["parent/22",[]],["pagesPluginContent/23",[]],["name/23",[2,26.391]],["parent/23",[17,1.035]],["pagesPluginContent/24",[]],["name/24",[18,31.499]],["parent/24",[17,1.035]],["pagesPluginContent/25",[]],["name/25",[19,31.499]],["parent/25",[]],["pagesPluginContent/26",[]],["name/26",[20,23.026]],["parent/26",[]],["pagesPluginContent/27",[]],["name/27",[20,23.026]],["parent/27",[]],["pagesPluginContent/28",[]],["name/28",[21,31.499]],["parent/28",[20,1.162]],["pagesPluginContent/29",[]],["name/29",[22,31.499]],["parent/29",[]],["pagesPluginContent/30",[]],["name/30",[23,31.499]],["parent/30",[]],["pagesPluginContent/31",[]],["name/31",[24,31.499]],["parent/31",[]],["pagesPluginContent/32",[]],["name/32",[25,31.499]],["parent/32",[]],["pagesPluginContent/33",[26,3.258,27,3.258,28,3.258,29,3.258,30,3.258]],["name/33",[31,31.499]],["parent/33",[]]],"invertedIndex":[["action",{"_index":22,"pagesPluginContent":{},"name":{"29":{}},"parent":{}}],["back",{"_index":7,"pagesPluginContent":{},"name":{"8":{}},"parent":{}}],["battery",{"_index":10,"pagesPluginContent":{},"name":{"11":{}},"parent":{}}],["button",{"_index":24,"pagesPluginContent":{},"name":{"31":{}},"parent":{}}],["card",{"_index":11,"pagesPluginContent":{},"name":{"12":{}},"parent":{}}],["checkbox",{"_index":0,"pagesPluginContent":{},"name":{"0":{}},"parent":{}}],["checkmark",{"_index":6,"pagesPluginContent":{},"name":{"7":{}},"parent":{}}],["container",{"_index":21,"pagesPluginContent":{},"name":{"28":{}},"parent":{}}],["content",{"_index":15,"pagesPluginContent":{},"name":{"17":{}},"parent":{}}],["directionpad",{"_index":25,"pagesPluginContent":{},"name":{"32":{}},"parent":{}}],["equalactions",{"_index":23,"pagesPluginContent":{},"name":{"30":{}},"parent":{}}],["example",{"_index":28,"pagesPluginContent":{"33":{}},"name":{},"parent":{}}],["forward",{"_index":8,"pagesPluginContent":{},"name":{"9":{}},"parent":{}}],["header",{"_index":12,"pagesPluginContent":{},"name":{"13":{},"20":{}},"parent":{}}],["headericonaction",{"_index":13,"pagesPluginContent":{},"name":{"14":{}},"parent":{}}],["icon",{"_index":5,"pagesPluginContent":{},"name":{"5":{},"6":{}},"parent":{"7":{},"8":{},"9":{},"10":{},"11":{}}}],["input",{"_index":1,"pagesPluginContent":{},"name":{"1":{}},"parent":{}}],["is",{"_index":27,"pagesPluginContent":{"33":{}},"name":{},"parent":{}}],["item",{"_index":17,"pagesPluginContent":{},"name":{"21":{},"22":{}},"parent":{"23":{},"24":{}}}],["label",{"_index":2,"pagesPluginContent":{},"name":{"2":{},"23":{}},"parent":{}}],["list",{"_index":16,"pagesPluginContent":{},"name":{"18":{},"19":{}},"parent":{"20":{}}}],["page",{"_index":30,"pagesPluginContent":{"33":{}},"name":{},"parent":{}}],["search",{"_index":9,"pagesPluginContent":{},"name":{"10":{}},"parent":{}}],["searchcontainer",{"_index":19,"pagesPluginContent":{},"name":{"25":{}},"parent":{}}],["section",{"_index":20,"pagesPluginContent":{},"name":{"26":{},"27":{}},"parent":{"28":{}}}],["stickyheader",{"_index":14,"pagesPluginContent":{},"name":{"15":{},"16":{}},"parent":{"17":{}}}],["test",{"_index":31,"pagesPluginContent":{},"name":{"33":{}},"parent":{}}],["textarea",{"_index":3,"pagesPluginContent":{},"name":{"3":{}},"parent":{}}],["this",{"_index":26,"pagesPluginContent":{"33":{}},"name":{},"parent":{}}],["toggle",{"_index":4,"pagesPluginContent":{},"name":{"4":{}},"parent":{}}],["tutorial",{"_index":29,"pagesPluginContent":{"33":{}},"name":{},"parent":{}}],["value",{"_index":18,"pagesPluginContent":{},"name":{"24":{}},"parent":{}}]],"pipeline":[]}}
1
+ {"kinds":{"2":"Namespace","4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","512":"Constructor","2048":"Method","65536":"Type literal","9999999":"Page"},"rows":[{"id":0,"kind":32,"name":"Checkbox","url":"modules.html#Checkbox","classes":"tsd-kind-variable"},{"id":1,"kind":32,"name":"Input","url":"modules.html#Input","classes":"tsd-kind-variable"},{"id":2,"kind":32,"name":"Label","url":"modules.html#Label","classes":"tsd-kind-variable"},{"id":3,"kind":32,"name":"TextArea","url":"modules.html#TextArea","classes":"tsd-kind-variable"},{"id":4,"kind":32,"name":"Toggle","url":"modules.html#Toggle","classes":"tsd-kind-variable"},{"id":5,"kind":32,"name":"Icon","url":"modules.html#Icon","classes":"tsd-kind-variable"},{"id":6,"kind":4,"name":"ICON","url":"enums/ICON.html","classes":"tsd-kind-enum"},{"id":7,"kind":16,"name":"checkmark","url":"enums/ICON.html#checkmark","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":8,"kind":16,"name":"back","url":"enums/ICON.html#back","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":9,"kind":16,"name":"forward","url":"enums/ICON.html#forward","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":10,"kind":16,"name":"search","url":"enums/ICON.html#search","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":11,"kind":16,"name":"battery","url":"enums/ICON.html#battery","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":12,"kind":32,"name":"Card","url":"modules.html#Card","classes":"tsd-kind-variable"},{"id":13,"kind":32,"name":"Header","url":"modules.html#Header","classes":"tsd-kind-variable"},{"id":14,"kind":32,"name":"HeaderIconAction","url":"modules.html#HeaderIconAction","classes":"tsd-kind-variable"},{"id":15,"kind":32,"name":"StickyHeader","url":"modules.html#StickyHeader","classes":"tsd-kind-variable"},{"id":16,"kind":2,"name":"StickyHeader","url":"modules/StickyHeader.html","classes":"tsd-kind-namespace"},{"id":17,"kind":64,"name":"Content","url":"modules/StickyHeader.html#Content","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"StickyHeader","pagesPluginParent":"StickyHeader."},{"id":18,"kind":32,"name":"List","url":"modules.html#List","classes":"tsd-kind-variable"},{"id":19,"kind":2,"name":"List","url":"modules/List.html","classes":"tsd-kind-namespace"},{"id":20,"kind":32,"name":"Header","url":"modules/List.html#Header","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"List","pagesPluginParent":"List."},{"id":21,"kind":32,"name":"Item","url":"modules.html#Item","classes":"tsd-kind-variable"},{"id":22,"kind":2,"name":"Item","url":"modules/Item.html","classes":"tsd-kind-namespace"},{"id":23,"kind":32,"name":"Label","url":"modules/Item.html#Label","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item","pagesPluginParent":"Item."},{"id":24,"kind":32,"name":"Value","url":"modules/Item.html#Value","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item","pagesPluginParent":"Item."},{"id":25,"kind":32,"name":"SearchContainer","url":"modules.html#SearchContainer","classes":"tsd-kind-variable"},{"id":26,"kind":32,"name":"Section","url":"modules.html#Section","classes":"tsd-kind-variable"},{"id":27,"kind":2,"name":"Section","url":"modules/Section.html","classes":"tsd-kind-namespace"},{"id":28,"kind":32,"name":"Container","url":"modules/Section.html#Container","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Section","pagesPluginParent":"Section."},{"id":29,"kind":32,"name":"Action","url":"modules.html#Action","classes":"tsd-kind-variable"},{"id":30,"kind":32,"name":"EqualActions","url":"modules.html#EqualActions","classes":"tsd-kind-variable"},{"id":31,"kind":32,"name":"Button","url":"modules.html#Button","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"DirectionPad","url":"modules.html#DirectionPad","classes":"tsd-kind-variable"},{"id":33,"kind":32,"name":"Modal","url":"modules.html#Modal","classes":"tsd-kind-variable"},{"id":34,"kind":2,"name":"Modal","url":"modules/Modal.html","classes":"tsd-kind-namespace"},{"id":35,"kind":32,"name":"NegateMargin","url":"modules/Modal.html#NegateMargin","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Modal","pagesPluginParent":"Modal."},{"id":36,"kind":32,"name":"ModalButtons","url":"modules.html#ModalButtons","classes":"tsd-kind-variable"},{"id":37,"kind":2,"name":"ModalButtons","url":"modules/ModalButtons.html","classes":"tsd-kind-namespace"},{"id":38,"kind":32,"name":"Button","url":"modules/ModalButtons.html#Button","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"ModalButtons","pagesPluginParent":"ModalButtons."},{"id":39,"kind":128,"name":"ToasterProvider","url":"classes/ToasterProvider.html","classes":"tsd-kind-class"},{"id":40,"kind":512,"name":"constructor","url":"classes/ToasterProvider.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider","pagesPluginParent":"ToasterProvider."},{"id":41,"kind":2048,"name":"_add","url":"classes/ToasterProvider.html#_add","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider","pagesPluginParent":"ToasterProvider."},{"id":42,"kind":2048,"name":"_handleRemove","url":"classes/ToasterProvider.html#_handleRemove","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider","pagesPluginParent":"ToasterProvider."},{"id":43,"kind":2048,"name":"_removeAllToasts","url":"classes/ToasterProvider.html#_removeAllToasts","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider","pagesPluginParent":"ToasterProvider."},{"id":44,"kind":2048,"name":"render","url":"classes/ToasterProvider.html#render","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider","pagesPluginParent":"ToasterProvider."},{"id":45,"kind":65536,"name":"__type","url":"classes/ToasterProvider.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"ToasterProvider","pagesPluginParent":"ToasterProvider."},{"id":46,"kind":64,"name":"useToaster","url":"modules.html#useToaster","classes":"tsd-kind-function"},{"id":47,"kind":1,"name":"Test","url":"pages/Tutorials/Test.html","classes":"tsd-kind-page","pagesPluginContent":"This is example tutorial page.\n","pagesPluginParent":"Tutorials / "}],"index":{"version":"2.3.9","fields":["pagesPluginContent","name","parent"],"fieldVectors":[["pagesPluginContent/0",[]],["name/0",[0,34.864]],["parent/0",[]],["pagesPluginContent/1",[]],["name/1",[1,34.864]],["parent/1",[]],["pagesPluginContent/2",[]],["name/2",[2,29.755]],["parent/2",[]],["pagesPluginContent/3",[]],["name/3",[3,34.864]],["parent/3",[]],["pagesPluginContent/4",[]],["name/4",[4,34.864]],["parent/4",[]],["pagesPluginContent/5",[]],["name/5",[5,18.769]],["parent/5",[]],["pagesPluginContent/6",[]],["name/6",[5,18.769]],["parent/6",[]],["pagesPluginContent/7",[]],["name/7",[6,34.864]],["parent/7",[5,1.116]],["pagesPluginContent/8",[]],["name/8",[7,34.864]],["parent/8",[5,1.116]],["pagesPluginContent/9",[]],["name/9",[8,34.864]],["parent/9",[5,1.116]],["pagesPluginContent/10",[]],["name/10",[9,34.864]],["parent/10",[5,1.116]],["pagesPluginContent/11",[]],["name/11",[10,34.864]],["parent/11",[5,1.116]],["pagesPluginContent/12",[]],["name/12",[11,34.864]],["parent/12",[]],["pagesPluginContent/13",[]],["name/13",[12,29.755]],["parent/13",[]],["pagesPluginContent/14",[]],["name/14",[13,34.864]],["parent/14",[]],["pagesPluginContent/15",[]],["name/15",[14,26.391]],["parent/15",[]],["pagesPluginContent/16",[]],["name/16",[14,26.391]],["parent/16",[]],["pagesPluginContent/17",[]],["name/17",[15,34.864]],["parent/17",[14,1.569]],["pagesPluginContent/18",[]],["name/18",[16,26.391]],["parent/18",[]],["pagesPluginContent/19",[]],["name/19",[16,26.391]],["parent/19",[]],["pagesPluginContent/20",[]],["name/20",[12,29.755]],["parent/20",[16,1.569]],["pagesPluginContent/21",[]],["name/21",[17,23.877]],["parent/21",[]],["pagesPluginContent/22",[]],["name/22",[17,23.877]],["parent/22",[]],["pagesPluginContent/23",[]],["name/23",[2,29.755]],["parent/23",[17,1.42]],["pagesPluginContent/24",[]],["name/24",[18,34.864]],["parent/24",[17,1.42]],["pagesPluginContent/25",[]],["name/25",[19,34.864]],["parent/25",[]],["pagesPluginContent/26",[]],["name/26",[20,26.391]],["parent/26",[]],["pagesPluginContent/27",[]],["name/27",[20,26.391]],["parent/27",[]],["pagesPluginContent/28",[]],["name/28",[21,34.864]],["parent/28",[20,1.569]],["pagesPluginContent/29",[]],["name/29",[22,34.864]],["parent/29",[]],["pagesPluginContent/30",[]],["name/30",[23,34.864]],["parent/30",[]],["pagesPluginContent/31",[]],["name/31",[24,29.755]],["parent/31",[]],["pagesPluginContent/32",[]],["name/32",[25,34.864]],["parent/32",[]],["pagesPluginContent/33",[]],["name/33",[26,26.391]],["parent/33",[]],["pagesPluginContent/34",[]],["name/34",[26,26.391]],["parent/34",[]],["pagesPluginContent/35",[]],["name/35",[27,34.864]],["parent/35",[26,1.569]],["pagesPluginContent/36",[]],["name/36",[28,26.391]],["parent/36",[]],["pagesPluginContent/37",[]],["name/37",[28,26.391]],["parent/37",[]],["pagesPluginContent/38",[]],["name/38",[24,29.755]],["parent/38",[28,1.569]],["pagesPluginContent/39",[]],["name/39",[29,18.769]],["parent/39",[]],["pagesPluginContent/40",[]],["name/40",[30,34.864]],["parent/40",[29,1.116]],["pagesPluginContent/41",[]],["name/41",[31,34.864]],["parent/41",[29,1.116]],["pagesPluginContent/42",[]],["name/42",[32,34.864]],["parent/42",[29,1.116]],["pagesPluginContent/43",[]],["name/43",[33,34.864]],["parent/43",[29,1.116]],["pagesPluginContent/44",[]],["name/44",[34,34.864]],["parent/44",[29,1.116]],["pagesPluginContent/45",[]],["name/45",[35,34.864]],["parent/45",[29,1.116]],["pagesPluginContent/46",[]],["name/46",[36,34.864]],["parent/46",[]],["pagesPluginContent/47",[37,2.585,38,2.585,39,2.585,40,2.585,41,2.585]],["name/47",[42,34.864]],["parent/47",[]]],"invertedIndex":[["__type",{"_index":35,"pagesPluginContent":{},"name":{"45":{}},"parent":{}}],["_add",{"_index":31,"pagesPluginContent":{},"name":{"41":{}},"parent":{}}],["_handleremove",{"_index":32,"pagesPluginContent":{},"name":{"42":{}},"parent":{}}],["_removealltoasts",{"_index":33,"pagesPluginContent":{},"name":{"43":{}},"parent":{}}],["action",{"_index":22,"pagesPluginContent":{},"name":{"29":{}},"parent":{}}],["back",{"_index":7,"pagesPluginContent":{},"name":{"8":{}},"parent":{}}],["battery",{"_index":10,"pagesPluginContent":{},"name":{"11":{}},"parent":{}}],["button",{"_index":24,"pagesPluginContent":{},"name":{"31":{},"38":{}},"parent":{}}],["card",{"_index":11,"pagesPluginContent":{},"name":{"12":{}},"parent":{}}],["checkbox",{"_index":0,"pagesPluginContent":{},"name":{"0":{}},"parent":{}}],["checkmark",{"_index":6,"pagesPluginContent":{},"name":{"7":{}},"parent":{}}],["constructor",{"_index":30,"pagesPluginContent":{},"name":{"40":{}},"parent":{}}],["container",{"_index":21,"pagesPluginContent":{},"name":{"28":{}},"parent":{}}],["content",{"_index":15,"pagesPluginContent":{},"name":{"17":{}},"parent":{}}],["directionpad",{"_index":25,"pagesPluginContent":{},"name":{"32":{}},"parent":{}}],["equalactions",{"_index":23,"pagesPluginContent":{},"name":{"30":{}},"parent":{}}],["example",{"_index":39,"pagesPluginContent":{"47":{}},"name":{},"parent":{}}],["forward",{"_index":8,"pagesPluginContent":{},"name":{"9":{}},"parent":{}}],["header",{"_index":12,"pagesPluginContent":{},"name":{"13":{},"20":{}},"parent":{}}],["headericonaction",{"_index":13,"pagesPluginContent":{},"name":{"14":{}},"parent":{}}],["icon",{"_index":5,"pagesPluginContent":{},"name":{"5":{},"6":{}},"parent":{"7":{},"8":{},"9":{},"10":{},"11":{}}}],["input",{"_index":1,"pagesPluginContent":{},"name":{"1":{}},"parent":{}}],["is",{"_index":38,"pagesPluginContent":{"47":{}},"name":{},"parent":{}}],["item",{"_index":17,"pagesPluginContent":{},"name":{"21":{},"22":{}},"parent":{"23":{},"24":{}}}],["label",{"_index":2,"pagesPluginContent":{},"name":{"2":{},"23":{}},"parent":{}}],["list",{"_index":16,"pagesPluginContent":{},"name":{"18":{},"19":{}},"parent":{"20":{}}}],["modal",{"_index":26,"pagesPluginContent":{},"name":{"33":{},"34":{}},"parent":{"35":{}}}],["modalbuttons",{"_index":28,"pagesPluginContent":{},"name":{"36":{},"37":{}},"parent":{"38":{}}}],["negatemargin",{"_index":27,"pagesPluginContent":{},"name":{"35":{}},"parent":{}}],["page",{"_index":41,"pagesPluginContent":{"47":{}},"name":{},"parent":{}}],["render",{"_index":34,"pagesPluginContent":{},"name":{"44":{}},"parent":{}}],["search",{"_index":9,"pagesPluginContent":{},"name":{"10":{}},"parent":{}}],["searchcontainer",{"_index":19,"pagesPluginContent":{},"name":{"25":{}},"parent":{}}],["section",{"_index":20,"pagesPluginContent":{},"name":{"26":{},"27":{}},"parent":{"28":{}}}],["stickyheader",{"_index":14,"pagesPluginContent":{},"name":{"15":{},"16":{}},"parent":{"17":{}}}],["test",{"_index":42,"pagesPluginContent":{},"name":{"47":{}},"parent":{}}],["textarea",{"_index":3,"pagesPluginContent":{},"name":{"3":{}},"parent":{}}],["this",{"_index":37,"pagesPluginContent":{"47":{}},"name":{},"parent":{}}],["toasterprovider",{"_index":29,"pagesPluginContent":{},"name":{"39":{}},"parent":{"40":{},"41":{},"42":{},"43":{},"44":{},"45":{}}}],["toggle",{"_index":4,"pagesPluginContent":{},"name":{"4":{}},"parent":{}}],["tutorial",{"_index":40,"pagesPluginContent":{"47":{}},"name":{},"parent":{}}],["usetoaster",{"_index":36,"pagesPluginContent":{},"name":{"46":{}},"parent":{}}],["value",{"_index":18,"pagesPluginContent":{},"name":{"24":{}},"parent":{}}]],"pipeline":[]}}