react-miui 0.7.0 → 0.9.2

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 (238) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist/components/form/choice/Choice.d.ts +11 -0
  3. package/dist/components/form/choice/Choice.d.ts.map +1 -0
  4. package/dist/components/form/choice/Choice.js +19 -0
  5. package/dist/components/form/choice/Choice.js.map +1 -0
  6. package/dist/components/form/choice/Choice.module.scss +43 -0
  7. package/dist/components/form/choice/ChoiceItem.d.ts +11 -0
  8. package/dist/components/form/choice/ChoiceItem.d.ts.map +1 -0
  9. package/dist/components/form/choice/ChoiceItem.js +33 -0
  10. package/dist/components/form/choice/ChoiceItem.js.map +1 -0
  11. package/dist/components/layout/list/Header.d.ts +6 -1
  12. package/dist/components/layout/list/Header.d.ts.map +1 -1
  13. package/dist/components/layout/list/Header.js +6 -1
  14. package/dist/components/layout/list/Header.js.map +1 -1
  15. package/dist/components/layout/list/Item.d.ts +3 -0
  16. package/dist/components/layout/list/Item.d.ts.map +1 -1
  17. package/dist/components/layout/list/Item.js +20 -6
  18. package/dist/components/layout/list/Item.js.map +1 -1
  19. package/dist/components/layout/list/Item.module.scss +16 -1
  20. package/dist/components/layout/list/Label.d.ts +1 -0
  21. package/dist/components/layout/list/Label.d.ts.map +1 -1
  22. package/dist/components/layout/list/Label.js +2 -1
  23. package/dist/components/layout/list/Label.js.map +1 -1
  24. package/dist/components/layout/list/List.d.ts +6 -1
  25. package/dist/components/layout/list/List.d.ts.map +1 -1
  26. package/dist/components/layout/list/List.js +16 -1
  27. package/dist/components/layout/list/List.js.map +1 -1
  28. package/dist/components/layout/list/List.module.scss +4 -0
  29. package/dist/components/layout/list/Value.d.ts +4 -1
  30. package/dist/components/layout/list/Value.d.ts.map +1 -1
  31. package/dist/components/layout/list/Value.js +2 -1
  32. package/dist/components/layout/list/Value.js.map +1 -1
  33. package/dist/components/ui/button/Button.d.ts.map +1 -1
  34. package/dist/components/ui/button/Button.js +2 -2
  35. package/dist/components/ui/button/Button.js.map +1 -1
  36. package/dist/components/ui/modal/Modal.d.ts +18 -0
  37. package/dist/components/ui/modal/Modal.d.ts.map +1 -0
  38. package/dist/components/ui/modal/Modal.js +108 -0
  39. package/dist/components/ui/modal/Modal.js.map +1 -0
  40. package/dist/components/ui/modal/Modal.module.scss +92 -0
  41. package/dist/components/ui/modal/ModalButton.d.ts +8 -0
  42. package/dist/components/ui/modal/ModalButton.d.ts.map +1 -0
  43. package/dist/components/ui/modal/ModalButton.js +31 -0
  44. package/dist/components/ui/modal/ModalButton.js.map +1 -0
  45. package/dist/components/ui/modal/ModalButtons.d.ts +10 -0
  46. package/dist/components/ui/modal/ModalButtons.d.ts.map +1 -0
  47. package/dist/components/ui/modal/ModalButtons.js +15 -0
  48. package/dist/components/ui/modal/ModalButtons.js.map +1 -0
  49. package/dist/components/ui/modal/ModalButtons.module.scss +32 -0
  50. package/dist/components/ui/modal/ModalNoMargin.d.ts +6 -0
  51. package/dist/components/ui/modal/ModalNoMargin.d.ts.map +1 -0
  52. package/dist/components/ui/modal/ModalNoMargin.js +22 -0
  53. package/dist/components/ui/modal/ModalNoMargin.js.map +1 -0
  54. package/dist/components/ui/tabs/Item.d.ts +10 -0
  55. package/dist/components/ui/tabs/Item.d.ts.map +1 -0
  56. package/dist/components/ui/tabs/Item.js +39 -0
  57. package/dist/components/ui/tabs/Item.js.map +1 -0
  58. package/dist/components/ui/tabs/Item.module.scss +11 -0
  59. package/dist/components/ui/tabs/Selector.d.ts +10 -0
  60. package/dist/components/ui/tabs/Selector.d.ts.map +1 -0
  61. package/dist/components/ui/tabs/Selector.js +46 -0
  62. package/dist/components/ui/tabs/Selector.js.map +1 -0
  63. package/dist/components/ui/tabs/Selector.module.scss +6 -0
  64. package/dist/components/ui/toaster/Notification.d.ts +9 -0
  65. package/dist/components/ui/toaster/Notification.d.ts.map +1 -0
  66. package/dist/components/ui/toaster/Notification.js +39 -0
  67. package/dist/components/ui/toaster/Notification.js.map +1 -0
  68. package/dist/components/ui/toaster/Toaster.d.ts +18 -0
  69. package/dist/components/ui/toaster/Toaster.d.ts.map +1 -0
  70. package/dist/components/ui/toaster/Toaster.js +79 -0
  71. package/dist/components/ui/toaster/Toaster.js.map +1 -0
  72. package/dist/components/ui/toaster/Toaster.module.scss +32 -0
  73. package/dist/components/ui/toaster/types.d.ts +7 -0
  74. package/dist/components/ui/toaster/types.d.ts.map +1 -0
  75. package/dist/components/ui/toaster/types.js +3 -0
  76. package/dist/components/ui/toaster/types.js.map +1 -0
  77. package/dist/global.scss +12 -0
  78. package/dist/index.d.ts +5 -0
  79. package/dist/index.d.ts.map +1 -1
  80. package/dist/index.js +5 -0
  81. package/dist/index.js.map +1 -1
  82. package/dist/types/form.d.ts +7 -0
  83. package/dist/types/form.d.ts.map +1 -0
  84. package/dist/types/form.js +3 -0
  85. package/dist/types/form.js.map +1 -0
  86. package/dist/utils/index.d.ts +3 -0
  87. package/dist/utils/index.d.ts.map +1 -0
  88. package/dist/utils/index.js +15 -0
  89. package/dist/utils/index.js.map +1 -0
  90. package/dist/utils/toObjectValue.d.ts +4 -0
  91. package/dist/utils/toObjectValue.d.ts.map +1 -0
  92. package/dist/utils/toObjectValue.js +8 -0
  93. package/dist/utils/toObjectValue.js.map +1 -0
  94. package/docs/assets/js/search.js +1 -1
  95. package/docs/assets/js/search.json +1 -1
  96. package/docs/classes/ToasterProvider.html +1096 -0
  97. package/docs/enums/ICON.html +33 -8
  98. package/docs/index.html +35 -4
  99. package/docs/modules/Item.html +17 -4
  100. package/docs/modules/List.html +17 -4
  101. package/docs/modules/Modal.html +160 -0
  102. package/docs/modules/ModalButtons.html +160 -0
  103. package/docs/modules/Section.html +16 -3
  104. package/docs/modules/StickyHeader.html +17 -4
  105. package/docs/modules.html +132 -23
  106. package/docs/pages/Tutorials/Test.html +16 -3
  107. package/esm/components/form/choice/Choice.d.ts +11 -0
  108. package/esm/components/form/choice/Choice.d.ts.map +1 -0
  109. package/esm/components/form/choice/Choice.js +13 -0
  110. package/esm/components/form/choice/Choice.js.map +1 -0
  111. package/esm/components/form/choice/Choice.module.scss +43 -0
  112. package/esm/components/form/choice/ChoiceItem.d.ts +11 -0
  113. package/esm/components/form/choice/ChoiceItem.d.ts.map +1 -0
  114. package/esm/components/form/choice/ChoiceItem.js +11 -0
  115. package/esm/components/form/choice/ChoiceItem.js.map +1 -0
  116. package/esm/components/layout/list/Header.d.ts +6 -1
  117. package/esm/components/layout/list/Header.d.ts.map +1 -1
  118. package/esm/components/layout/list/Header.js +6 -1
  119. package/esm/components/layout/list/Header.js.map +1 -1
  120. package/esm/components/layout/list/Item.d.ts +3 -0
  121. package/esm/components/layout/list/Item.d.ts.map +1 -1
  122. package/esm/components/layout/list/Item.js +20 -6
  123. package/esm/components/layout/list/Item.js.map +1 -1
  124. package/esm/components/layout/list/Item.module.scss +16 -1
  125. package/esm/components/layout/list/Label.d.ts +1 -0
  126. package/esm/components/layout/list/Label.d.ts.map +1 -1
  127. package/esm/components/layout/list/Label.js +2 -1
  128. package/esm/components/layout/list/Label.js.map +1 -1
  129. package/esm/components/layout/list/List.d.ts +6 -1
  130. package/esm/components/layout/list/List.d.ts.map +1 -1
  131. package/esm/components/layout/list/List.js +16 -1
  132. package/esm/components/layout/list/List.js.map +1 -1
  133. package/esm/components/layout/list/List.module.scss +4 -0
  134. package/esm/components/layout/list/Value.d.ts +4 -1
  135. package/esm/components/layout/list/Value.d.ts.map +1 -1
  136. package/esm/components/layout/list/Value.js +2 -1
  137. package/esm/components/layout/list/Value.js.map +1 -1
  138. package/esm/components/ui/button/Button.d.ts.map +1 -1
  139. package/esm/components/ui/button/Button.js +2 -2
  140. package/esm/components/ui/button/Button.js.map +1 -1
  141. package/esm/components/ui/modal/Modal.d.ts +18 -0
  142. package/esm/components/ui/modal/Modal.d.ts.map +1 -0
  143. package/esm/components/ui/modal/Modal.js +83 -0
  144. package/esm/components/ui/modal/Modal.js.map +1 -0
  145. package/esm/components/ui/modal/Modal.module.scss +92 -0
  146. package/esm/components/ui/modal/ModalButton.d.ts +8 -0
  147. package/esm/components/ui/modal/ModalButton.d.ts.map +1 -0
  148. package/esm/components/ui/modal/ModalButton.js +13 -0
  149. package/esm/components/ui/modal/ModalButton.js.map +1 -0
  150. package/esm/components/ui/modal/ModalButtons.d.ts +10 -0
  151. package/esm/components/ui/modal/ModalButtons.d.ts.map +1 -0
  152. package/esm/components/ui/modal/ModalButtons.js +9 -0
  153. package/esm/components/ui/modal/ModalButtons.js.map +1 -0
  154. package/esm/components/ui/modal/ModalButtons.module.scss +32 -0
  155. package/esm/components/ui/modal/ModalNoMargin.d.ts +6 -0
  156. package/esm/components/ui/modal/ModalNoMargin.d.ts.map +1 -0
  157. package/esm/components/ui/modal/ModalNoMargin.js +16 -0
  158. package/esm/components/ui/modal/ModalNoMargin.js.map +1 -0
  159. package/esm/components/ui/tabs/Item.d.ts +10 -0
  160. package/esm/components/ui/tabs/Item.d.ts.map +1 -0
  161. package/esm/components/ui/tabs/Item.js +14 -0
  162. package/esm/components/ui/tabs/Item.js.map +1 -0
  163. package/esm/components/ui/tabs/Item.module.scss +11 -0
  164. package/esm/components/ui/tabs/Selector.d.ts +10 -0
  165. package/esm/components/ui/tabs/Selector.d.ts.map +1 -0
  166. package/esm/components/ui/tabs/Selector.js +21 -0
  167. package/esm/components/ui/tabs/Selector.js.map +1 -0
  168. package/esm/components/ui/tabs/Selector.module.scss +6 -0
  169. package/esm/components/ui/toaster/Notification.d.ts +9 -0
  170. package/esm/components/ui/toaster/Notification.d.ts.map +1 -0
  171. package/esm/components/ui/toaster/Notification.js +14 -0
  172. package/esm/components/ui/toaster/Notification.js.map +1 -0
  173. package/esm/components/ui/toaster/Toaster.d.ts +18 -0
  174. package/esm/components/ui/toaster/Toaster.d.ts.map +1 -0
  175. package/esm/components/ui/toaster/Toaster.js +74 -0
  176. package/esm/components/ui/toaster/Toaster.js.map +1 -0
  177. package/esm/components/ui/toaster/Toaster.module.scss +32 -0
  178. package/esm/components/ui/toaster/types.d.ts +7 -0
  179. package/esm/components/ui/toaster/types.d.ts.map +1 -0
  180. package/esm/components/ui/toaster/types.js +2 -0
  181. package/esm/components/ui/toaster/types.js.map +1 -0
  182. package/esm/global.scss +12 -0
  183. package/esm/index.d.ts +5 -0
  184. package/esm/index.d.ts.map +1 -1
  185. package/esm/index.js +5 -0
  186. package/esm/index.js.map +1 -1
  187. package/esm/types/form.d.ts +7 -0
  188. package/esm/types/form.d.ts.map +1 -0
  189. package/esm/types/form.js +2 -0
  190. package/esm/types/form.js.map +1 -0
  191. package/esm/utils/index.d.ts +3 -0
  192. package/esm/utils/index.d.ts.map +1 -0
  193. package/esm/utils/index.js +3 -0
  194. package/esm/utils/index.js.map +1 -0
  195. package/esm/utils/toObjectValue.d.ts +4 -0
  196. package/esm/utils/toObjectValue.d.ts.map +1 -0
  197. package/esm/utils/toObjectValue.js +5 -0
  198. package/esm/utils/toObjectValue.js.map +1 -0
  199. package/package.json +6 -6
  200. package/src/components/form/choice/Choice.module.scss +43 -0
  201. package/src/components/form/choice/Choice.tsx +32 -0
  202. package/src/components/form/choice/ChoiceItem.tsx +30 -0
  203. package/src/components/layout/list/Header.tsx +16 -2
  204. package/src/components/layout/list/Item.module.scss +16 -1
  205. package/src/components/layout/list/Item.tsx +28 -7
  206. package/src/components/layout/list/Label.tsx +3 -1
  207. package/src/components/layout/list/List.module.scss +4 -0
  208. package/src/components/layout/list/List.tsx +28 -2
  209. package/src/components/layout/list/Value.tsx +7 -2
  210. package/src/components/ui/button/Button.tsx +4 -2
  211. package/src/components/ui/modal/Modal.module.scss +92 -0
  212. package/src/components/ui/modal/Modal.tsx +136 -0
  213. package/src/components/ui/modal/ModalButton.tsx +25 -0
  214. package/src/components/ui/modal/ModalButtons.module.scss +32 -0
  215. package/src/components/ui/modal/ModalButtons.tsx +17 -0
  216. package/src/components/ui/modal/ModalNoMargin.tsx +22 -0
  217. package/src/components/ui/tabs/Item.module.scss +11 -0
  218. package/src/components/ui/tabs/Item.tsx +26 -0
  219. package/src/components/ui/tabs/Selector.module.scss +6 -0
  220. package/src/components/ui/tabs/Selector.tsx +31 -0
  221. package/src/components/ui/toaster/Notification.tsx +31 -0
  222. package/src/components/ui/toaster/Toaster.module.scss +32 -0
  223. package/src/components/ui/toaster/Toaster.tsx +101 -0
  224. package/src/components/ui/toaster/types.ts +9 -0
  225. package/src/demo/Demo.tsx +7 -4
  226. package/src/demo/Menu.module.scss +1 -0
  227. package/src/demo/components/form/Choice.tsx +19 -0
  228. package/src/demo/components/layout/list/Inset.tsx +24 -0
  229. package/src/demo/components/layout/list/Selection.tsx +17 -0
  230. package/src/demo/components/ui/modal/Modal.tsx +110 -0
  231. package/src/demo/components/ui/tabs/Tabs.tsx +15 -0
  232. package/src/demo/components/ui/toaster/Toaster.tsx +28 -0
  233. package/src/demo/componentsMap.ts +41 -0
  234. package/src/global.scss +12 -0
  235. package/src/index.ts +5 -0
  236. package/src/types/form.ts +7 -0
  237. package/src/utils/index.ts +2 -0
  238. package/src/utils/toObjectValue.ts +9 -0
@@ -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,18 @@
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;
34
+
35
+ --choice-bg: #ffffff;
36
+ --choice-text: #999999;
37
+ --choice-active-bg: #f3f3f3;
38
+ --choice-active-text: #313131;
39
+ --choice-border: #cfcfcf;
40
+
41
+ --selector-text: #606060;
42
+ --selector-active: var(--main-color);
31
43
 
32
44
  // Shades: https://maketintsandshades.com/#038bf4,ff7200,7357e8,3ec234,3ec234,ff388f,ea2700
33
45
  --blue1: #038bf4;
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from "./components/form/choice/Choice.js";
1
2
  export * from "./components/form/Checkbox.js";
2
3
  export * from "./components/form/Input.js";
3
4
  export * from "./components/form/Label.js";
@@ -16,4 +17,8 @@ export * from "./components/ui/action/Action.js";
16
17
  export * from "./components/ui/action/EqualActions.js";
17
18
  export * from "./components/ui/button/Button.js";
18
19
  export * from "./components/ui/directionPad/Pad.js";
20
+ export * from "./components/ui/modal/Modal.js";
21
+ export * from "./components/ui/modal/ModalButtons.js";
22
+ export * from "./components/ui/tabs/Selector.js";
23
+ export * from "./components/ui/toaster/Toaster.js";
19
24
  //# 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,oCAAoC,CAAC;AACnD,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,kCAAkC,CAAC;AACjD,cAAc,oCAAoC,CAAC"}
package/dist/index.js CHANGED
@@ -10,6 +10,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
10
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./components/form/choice/Choice.js"), exports);
13
14
  __exportStar(require("./components/form/Checkbox.js"), exports);
14
15
  __exportStar(require("./components/form/Input.js"), exports);
15
16
  __exportStar(require("./components/form/Label.js"), exports);
@@ -28,4 +29,8 @@ __exportStar(require("./components/ui/action/Action.js"), exports);
28
29
  __exportStar(require("./components/ui/action/EqualActions.js"), exports);
29
30
  __exportStar(require("./components/ui/button/Button.js"), exports);
30
31
  __exportStar(require("./components/ui/directionPad/Pad.js"), exports);
32
+ __exportStar(require("./components/ui/modal/Modal.js"), exports);
33
+ __exportStar(require("./components/ui/modal/ModalButtons.js"), exports);
34
+ __exportStar(require("./components/ui/tabs/Selector.js"), exports);
35
+ __exportStar(require("./components/ui/toaster/Toaster.js"), exports);
31
36
  //# 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,qEAAmD;AACnD,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,mEAAiD;AACjD,qEAAmD"}
@@ -0,0 +1,7 @@
1
+ interface ObjectValue {
2
+ value: string;
3
+ label: string;
4
+ }
5
+ declare type Value = string | ObjectValue;
6
+ export type { ObjectValue, Value, };
7
+ //# sourceMappingURL=form.d.ts.map
@@ -0,0 +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,GAAG,MAAM,GAAG,WAAW,CAAC;AAElC,YAAY,EACR,WAAW,EACX,KAAK,GACR,CAAC"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=form.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"form.js","sourceRoot":"","sources":["../../src/types/form.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export * from "./makeVariants";
2
+ export * from "./toObjectValue";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC"}
@@ -0,0 +1,15 @@
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./makeVariants"), exports);
14
+ __exportStar(require("./toObjectValue"), exports);
15
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA+B;AAC/B,kDAAgC"}
@@ -0,0 +1,4 @@
1
+ import type { ObjectValue, Value } from "../types/form";
2
+ declare const toObjectValue: (s: Value) => ObjectValue;
3
+ export { toObjectValue, };
4
+ //# sourceMappingURL=toObjectValue.d.ts.map
@@ -0,0 +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,MAAO,KAAK,KAAG,WAEjC,CAAC;AAEF,OAAO,EACH,aAAa,GAChB,CAAC"}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.toObjectValue = void 0;
4
+ const toObjectValue = (s) => {
5
+ return typeof s === "string" ? { value: s, label: s } : s;
6
+ };
7
+ exports.toObjectValue = toObjectValue;
8
+ //# sourceMappingURL=toObjectValue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"toObjectValue.js","sourceRoot":"","sources":["../../src/utils/toObjectValue.ts"],"names":[],"mappings":";;;AAEA,MAAM,aAAa,GAAG,CAAC,CAAQ,EAAe,EAAE;IAC5C,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"}
@@ -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":"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":"TextArea","url":"modules.html#TextArea","classes":"tsd-kind-variable"},{"id":5,"kind":32,"name":"Toggle","url":"modules.html#Toggle","classes":"tsd-kind-variable"},{"id":6,"kind":32,"name":"Icon","url":"modules.html#Icon","classes":"tsd-kind-variable"},{"id":7,"kind":4,"name":"ICON","url":"enums/ICON.html","classes":"tsd-kind-enum"},{"id":8,"kind":16,"name":"checkmark","url":"enums/ICON.html#checkmark","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":9,"kind":16,"name":"back","url":"enums/ICON.html#back","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":10,"kind":16,"name":"forward","url":"enums/ICON.html#forward","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":11,"kind":16,"name":"search","url":"enums/ICON.html#search","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":12,"kind":16,"name":"battery","url":"enums/ICON.html#battery","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON"},{"id":13,"kind":32,"name":"Card","url":"modules.html#Card","classes":"tsd-kind-variable"},{"id":14,"kind":32,"name":"Header","url":"modules.html#Header","classes":"tsd-kind-variable"},{"id":15,"kind":32,"name":"HeaderIconAction","url":"modules.html#HeaderIconAction","classes":"tsd-kind-variable"},{"id":16,"kind":32,"name":"StickyHeader","url":"modules.html#StickyHeader","classes":"tsd-kind-variable"},{"id":17,"kind":2,"name":"StickyHeader","url":"modules/StickyHeader.html","classes":"tsd-kind-namespace"},{"id":18,"kind":64,"name":"Content","url":"modules/StickyHeader.html#Content","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"StickyHeader"},{"id":19,"kind":32,"name":"List","url":"modules.html#List","classes":"tsd-kind-variable"},{"id":20,"kind":2,"name":"List","url":"modules/List.html","classes":"tsd-kind-namespace"},{"id":21,"kind":32,"name":"Header","url":"modules/List.html#Header","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"List"},{"id":22,"kind":32,"name":"Item","url":"modules.html#Item","classes":"tsd-kind-variable"},{"id":23,"kind":2,"name":"Item","url":"modules/Item.html","classes":"tsd-kind-namespace"},{"id":24,"kind":32,"name":"Label","url":"modules/Item.html#Label","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":25,"kind":32,"name":"Value","url":"modules/Item.html#Value","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item"},{"id":26,"kind":32,"name":"SearchContainer","url":"modules.html#SearchContainer","classes":"tsd-kind-variable"},{"id":27,"kind":32,"name":"Section","url":"modules.html#Section","classes":"tsd-kind-variable"},{"id":28,"kind":2,"name":"Section","url":"modules/Section.html","classes":"tsd-kind-namespace"},{"id":29,"kind":32,"name":"Container","url":"modules/Section.html#Container","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Section"},{"id":30,"kind":32,"name":"Action","url":"modules.html#Action","classes":"tsd-kind-variable"},{"id":31,"kind":32,"name":"EqualActions","url":"modules.html#EqualActions","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"Button","url":"modules.html#Button","classes":"tsd-kind-variable"},{"id":33,"kind":32,"name":"DirectionPad","url":"modules.html#DirectionPad","classes":"tsd-kind-variable"},{"id":34,"kind":32,"name":"Modal","url":"modules.html#Modal","classes":"tsd-kind-variable"},{"id":35,"kind":2,"name":"Modal","url":"modules/Modal.html","classes":"tsd-kind-namespace"},{"id":36,"kind":32,"name":"NegateMargin","url":"modules/Modal.html#NegateMargin","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Modal"},{"id":37,"kind":32,"name":"ModalButtons","url":"modules.html#ModalButtons","classes":"tsd-kind-variable"},{"id":38,"kind":2,"name":"ModalButtons","url":"modules/ModalButtons.html","classes":"tsd-kind-namespace"},{"id":39,"kind":32,"name":"Button","url":"modules/ModalButtons.html#Button","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"ModalButtons"},{"id":40,"kind":32,"name":"Selector","url":"modules.html#Selector","classes":"tsd-kind-variable"},{"id":41,"kind":128,"name":"ToasterProvider","url":"classes/ToasterProvider.html","classes":"tsd-kind-class"},{"id":42,"kind":512,"name":"constructor","url":"classes/ToasterProvider.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider"},{"id":43,"kind":2048,"name":"_add","url":"classes/ToasterProvider.html#_add","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":44,"kind":2048,"name":"_handleRemove","url":"classes/ToasterProvider.html#_handleRemove","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":45,"kind":2048,"name":"_removeAllToasts","url":"classes/ToasterProvider.html#_removeAllToasts","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"ToasterProvider"},{"id":46,"kind":2048,"name":"render","url":"classes/ToasterProvider.html#render","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"ToasterProvider"},{"id":47,"kind":65536,"name":"__type","url":"classes/ToasterProvider.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"ToasterProvider"},{"id":48,"kind":64,"name":"useToaster","url":"modules.html#useToaster","classes":"tsd-kind-function"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,35.066]],["parent/0",[]],["name/1",[1,35.066]],["parent/1",[]],["name/2",[2,35.066]],["parent/2",[]],["name/3",[3,29.957]],["parent/3",[]],["name/4",[4,35.066]],["parent/4",[]],["name/5",[5,35.066]],["parent/5",[]],["name/6",[6,18.971]],["parent/6",[]],["name/7",[6,18.971]],["parent/7",[]],["name/8",[7,35.066]],["parent/8",[6,1.113]],["name/9",[8,35.066]],["parent/9",[6,1.113]],["name/10",[9,35.066]],["parent/10",[6,1.113]],["name/11",[10,35.066]],["parent/11",[6,1.113]],["name/12",[11,35.066]],["parent/12",[6,1.113]],["name/13",[12,35.066]],["parent/13",[]],["name/14",[13,29.957]],["parent/14",[]],["name/15",[14,35.066]],["parent/15",[]],["name/16",[15,26.593]],["parent/16",[]],["name/17",[15,26.593]],["parent/17",[]],["name/18",[16,35.066]],["parent/18",[15,1.56]],["name/19",[17,26.593]],["parent/19",[]],["name/20",[17,26.593]],["parent/20",[]],["name/21",[13,29.957]],["parent/21",[17,1.56]],["name/22",[18,24.079]],["parent/22",[]],["name/23",[18,24.079]],["parent/23",[]],["name/24",[3,29.957]],["parent/24",[18,1.413]],["name/25",[19,35.066]],["parent/25",[18,1.413]],["name/26",[20,35.066]],["parent/26",[]],["name/27",[21,26.593]],["parent/27",[]],["name/28",[21,26.593]],["parent/28",[]],["name/29",[22,35.066]],["parent/29",[21,1.56]],["name/30",[23,35.066]],["parent/30",[]],["name/31",[24,35.066]],["parent/31",[]],["name/32",[25,29.957]],["parent/32",[]],["name/33",[26,35.066]],["parent/33",[]],["name/34",[27,26.593]],["parent/34",[]],["name/35",[27,26.593]],["parent/35",[]],["name/36",[28,35.066]],["parent/36",[27,1.56]],["name/37",[29,26.593]],["parent/37",[]],["name/38",[29,26.593]],["parent/38",[]],["name/39",[25,29.957]],["parent/39",[29,1.56]],["name/40",[30,35.066]],["parent/40",[]],["name/41",[31,18.971]],["parent/41",[]],["name/42",[32,35.066]],["parent/42",[31,1.113]],["name/43",[33,35.066]],["parent/43",[31,1.113]],["name/44",[34,35.066]],["parent/44",[31,1.113]],["name/45",[35,35.066]],["parent/45",[31,1.113]],["name/46",[36,35.066]],["parent/46",[31,1.113]],["name/47",[37,35.066]],["parent/47",[31,1.113]],["name/48",[38,35.066]],["parent/48",[]]],"invertedIndex":[["__type",{"_index":37,"name":{"47":{}},"parent":{}}],["_add",{"_index":33,"name":{"43":{}},"parent":{}}],["_handleremove",{"_index":34,"name":{"44":{}},"parent":{}}],["_removealltoasts",{"_index":35,"name":{"45":{}},"parent":{}}],["action",{"_index":23,"name":{"30":{}},"parent":{}}],["back",{"_index":8,"name":{"9":{}},"parent":{}}],["battery",{"_index":11,"name":{"12":{}},"parent":{}}],["button",{"_index":25,"name":{"32":{},"39":{}},"parent":{}}],["card",{"_index":12,"name":{"13":{}},"parent":{}}],["checkbox",{"_index":1,"name":{"1":{}},"parent":{}}],["checkmark",{"_index":7,"name":{"8":{}},"parent":{}}],["choice",{"_index":0,"name":{"0":{}},"parent":{}}],["constructor",{"_index":32,"name":{"42":{}},"parent":{}}],["container",{"_index":22,"name":{"29":{}},"parent":{}}],["content",{"_index":16,"name":{"18":{}},"parent":{}}],["directionpad",{"_index":26,"name":{"33":{}},"parent":{}}],["equalactions",{"_index":24,"name":{"31":{}},"parent":{}}],["forward",{"_index":9,"name":{"10":{}},"parent":{}}],["header",{"_index":13,"name":{"14":{},"21":{}},"parent":{}}],["headericonaction",{"_index":14,"name":{"15":{}},"parent":{}}],["icon",{"_index":6,"name":{"6":{},"7":{}},"parent":{"8":{},"9":{},"10":{},"11":{},"12":{}}}],["input",{"_index":2,"name":{"2":{}},"parent":{}}],["item",{"_index":18,"name":{"22":{},"23":{}},"parent":{"24":{},"25":{}}}],["label",{"_index":3,"name":{"3":{},"24":{}},"parent":{}}],["list",{"_index":17,"name":{"19":{},"20":{}},"parent":{"21":{}}}],["modal",{"_index":27,"name":{"34":{},"35":{}},"parent":{"36":{}}}],["modalbuttons",{"_index":29,"name":{"37":{},"38":{}},"parent":{"39":{}}}],["negatemargin",{"_index":28,"name":{"36":{}},"parent":{}}],["render",{"_index":36,"name":{"46":{}},"parent":{}}],["search",{"_index":10,"name":{"11":{}},"parent":{}}],["searchcontainer",{"_index":20,"name":{"26":{}},"parent":{}}],["section",{"_index":21,"name":{"27":{},"28":{}},"parent":{"29":{}}}],["selector",{"_index":30,"name":{"40":{}},"parent":{}}],["stickyheader",{"_index":15,"name":{"16":{},"17":{}},"parent":{"18":{}}}],["textarea",{"_index":4,"name":{"4":{}},"parent":{}}],["toasterprovider",{"_index":31,"name":{"41":{}},"parent":{"42":{},"43":{},"44":{},"45":{},"46":{},"47":{}}}],["toggle",{"_index":5,"name":{"5":{}},"parent":{}}],["usetoaster",{"_index":38,"name":{"48":{}},"parent":{}}],["value",{"_index":19,"name":{"25":{}},"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":"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":"TextArea","url":"modules.html#TextArea","classes":"tsd-kind-variable"},{"id":5,"kind":32,"name":"Toggle","url":"modules.html#Toggle","classes":"tsd-kind-variable"},{"id":6,"kind":32,"name":"Icon","url":"modules.html#Icon","classes":"tsd-kind-variable"},{"id":7,"kind":4,"name":"ICON","url":"enums/ICON.html","classes":"tsd-kind-enum"},{"id":8,"kind":16,"name":"checkmark","url":"enums/ICON.html#checkmark","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":9,"kind":16,"name":"back","url":"enums/ICON.html#back","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":10,"kind":16,"name":"forward","url":"enums/ICON.html#forward","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":11,"kind":16,"name":"search","url":"enums/ICON.html#search","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":12,"kind":16,"name":"battery","url":"enums/ICON.html#battery","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"ICON","pagesPluginParent":"ICON."},{"id":13,"kind":32,"name":"Card","url":"modules.html#Card","classes":"tsd-kind-variable"},{"id":14,"kind":32,"name":"Header","url":"modules.html#Header","classes":"tsd-kind-variable"},{"id":15,"kind":32,"name":"HeaderIconAction","url":"modules.html#HeaderIconAction","classes":"tsd-kind-variable"},{"id":16,"kind":32,"name":"StickyHeader","url":"modules.html#StickyHeader","classes":"tsd-kind-variable"},{"id":17,"kind":2,"name":"StickyHeader","url":"modules/StickyHeader.html","classes":"tsd-kind-namespace"},{"id":18,"kind":64,"name":"Content","url":"modules/StickyHeader.html#Content","classes":"tsd-kind-function tsd-parent-kind-namespace","parent":"StickyHeader","pagesPluginParent":"StickyHeader."},{"id":19,"kind":32,"name":"List","url":"modules.html#List","classes":"tsd-kind-variable"},{"id":20,"kind":2,"name":"List","url":"modules/List.html","classes":"tsd-kind-namespace"},{"id":21,"kind":32,"name":"Header","url":"modules/List.html#Header","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"List","pagesPluginParent":"List."},{"id":22,"kind":32,"name":"Item","url":"modules.html#Item","classes":"tsd-kind-variable"},{"id":23,"kind":2,"name":"Item","url":"modules/Item.html","classes":"tsd-kind-namespace"},{"id":24,"kind":32,"name":"Label","url":"modules/Item.html#Label","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item","pagesPluginParent":"Item."},{"id":25,"kind":32,"name":"Value","url":"modules/Item.html#Value","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Item","pagesPluginParent":"Item."},{"id":26,"kind":32,"name":"SearchContainer","url":"modules.html#SearchContainer","classes":"tsd-kind-variable"},{"id":27,"kind":32,"name":"Section","url":"modules.html#Section","classes":"tsd-kind-variable"},{"id":28,"kind":2,"name":"Section","url":"modules/Section.html","classes":"tsd-kind-namespace"},{"id":29,"kind":32,"name":"Container","url":"modules/Section.html#Container","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Section","pagesPluginParent":"Section."},{"id":30,"kind":32,"name":"Action","url":"modules.html#Action","classes":"tsd-kind-variable"},{"id":31,"kind":32,"name":"EqualActions","url":"modules.html#EqualActions","classes":"tsd-kind-variable"},{"id":32,"kind":32,"name":"Button","url":"modules.html#Button","classes":"tsd-kind-variable"},{"id":33,"kind":32,"name":"DirectionPad","url":"modules.html#DirectionPad","classes":"tsd-kind-variable"},{"id":34,"kind":32,"name":"Modal","url":"modules.html#Modal","classes":"tsd-kind-variable"},{"id":35,"kind":2,"name":"Modal","url":"modules/Modal.html","classes":"tsd-kind-namespace"},{"id":36,"kind":32,"name":"NegateMargin","url":"modules/Modal.html#NegateMargin","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"Modal","pagesPluginParent":"Modal."},{"id":37,"kind":32,"name":"ModalButtons","url":"modules.html#ModalButtons","classes":"tsd-kind-variable"},{"id":38,"kind":2,"name":"ModalButtons","url":"modules/ModalButtons.html","classes":"tsd-kind-namespace"},{"id":39,"kind":32,"name":"Button","url":"modules/ModalButtons.html#Button","classes":"tsd-kind-variable tsd-parent-kind-namespace","parent":"ModalButtons","pagesPluginParent":"ModalButtons."},{"id":40,"kind":32,"name":"Selector","url":"modules.html#Selector","classes":"tsd-kind-variable"},{"id":41,"kind":128,"name":"ToasterProvider","url":"classes/ToasterProvider.html","classes":"tsd-kind-class"},{"id":42,"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":43,"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":44,"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":45,"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":46,"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":47,"kind":65536,"name":"__type","url":"classes/ToasterProvider.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"ToasterProvider","pagesPluginParent":"ToasterProvider."},{"id":48,"kind":64,"name":"useToaster","url":"modules.html#useToaster","classes":"tsd-kind-function"},{"id":49,"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,35.264]],["parent/0",[]],["pagesPluginContent/1",[]],["name/1",[1,35.264]],["parent/1",[]],["pagesPluginContent/2",[]],["name/2",[2,35.264]],["parent/2",[]],["pagesPluginContent/3",[]],["name/3",[3,30.155]],["parent/3",[]],["pagesPluginContent/4",[]],["name/4",[4,35.264]],["parent/4",[]],["pagesPluginContent/5",[]],["name/5",[5,35.264]],["parent/5",[]],["pagesPluginContent/6",[]],["name/6",[6,19.169]],["parent/6",[]],["pagesPluginContent/7",[]],["name/7",[6,19.169]],["parent/7",[]],["pagesPluginContent/8",[]],["name/8",[7,35.264]],["parent/8",[6,1.11]],["pagesPluginContent/9",[]],["name/9",[8,35.264]],["parent/9",[6,1.11]],["pagesPluginContent/10",[]],["name/10",[9,35.264]],["parent/10",[6,1.11]],["pagesPluginContent/11",[]],["name/11",[10,35.264]],["parent/11",[6,1.11]],["pagesPluginContent/12",[]],["name/12",[11,35.264]],["parent/12",[6,1.11]],["pagesPluginContent/13",[]],["name/13",[12,35.264]],["parent/13",[]],["pagesPluginContent/14",[]],["name/14",[13,30.155]],["parent/14",[]],["pagesPluginContent/15",[]],["name/15",[14,35.264]],["parent/15",[]],["pagesPluginContent/16",[]],["name/16",[15,26.791]],["parent/16",[]],["pagesPluginContent/17",[]],["name/17",[15,26.791]],["parent/17",[]],["pagesPluginContent/18",[]],["name/18",[16,35.264]],["parent/18",[15,1.551]],["pagesPluginContent/19",[]],["name/19",[17,26.791]],["parent/19",[]],["pagesPluginContent/20",[]],["name/20",[17,26.791]],["parent/20",[]],["pagesPluginContent/21",[]],["name/21",[13,30.155]],["parent/21",[17,1.551]],["pagesPluginContent/22",[]],["name/22",[18,24.277]],["parent/22",[]],["pagesPluginContent/23",[]],["name/23",[18,24.277]],["parent/23",[]],["pagesPluginContent/24",[]],["name/24",[3,30.155]],["parent/24",[18,1.406]],["pagesPluginContent/25",[]],["name/25",[19,35.264]],["parent/25",[18,1.406]],["pagesPluginContent/26",[]],["name/26",[20,35.264]],["parent/26",[]],["pagesPluginContent/27",[]],["name/27",[21,26.791]],["parent/27",[]],["pagesPluginContent/28",[]],["name/28",[21,26.791]],["parent/28",[]],["pagesPluginContent/29",[]],["name/29",[22,35.264]],["parent/29",[21,1.551]],["pagesPluginContent/30",[]],["name/30",[23,35.264]],["parent/30",[]],["pagesPluginContent/31",[]],["name/31",[24,35.264]],["parent/31",[]],["pagesPluginContent/32",[]],["name/32",[25,30.155]],["parent/32",[]],["pagesPluginContent/33",[]],["name/33",[26,35.264]],["parent/33",[]],["pagesPluginContent/34",[]],["name/34",[27,26.791]],["parent/34",[]],["pagesPluginContent/35",[]],["name/35",[27,26.791]],["parent/35",[]],["pagesPluginContent/36",[]],["name/36",[28,35.264]],["parent/36",[27,1.551]],["pagesPluginContent/37",[]],["name/37",[29,26.791]],["parent/37",[]],["pagesPluginContent/38",[]],["name/38",[29,26.791]],["parent/38",[]],["pagesPluginContent/39",[]],["name/39",[25,30.155]],["parent/39",[29,1.551]],["pagesPluginContent/40",[]],["name/40",[30,35.264]],["parent/40",[]],["pagesPluginContent/41",[]],["name/41",[31,19.169]],["parent/41",[]],["pagesPluginContent/42",[]],["name/42",[32,35.264]],["parent/42",[31,1.11]],["pagesPluginContent/43",[]],["name/43",[33,35.264]],["parent/43",[31,1.11]],["pagesPluginContent/44",[]],["name/44",[34,35.264]],["parent/44",[31,1.11]],["pagesPluginContent/45",[]],["name/45",[35,35.264]],["parent/45",[31,1.11]],["pagesPluginContent/46",[]],["name/46",[36,35.264]],["parent/46",[31,1.11]],["pagesPluginContent/47",[]],["name/47",[37,35.264]],["parent/47",[31,1.11]],["pagesPluginContent/48",[]],["name/48",[38,35.264]],["parent/48",[]],["pagesPluginContent/49",[39,2.513,40,2.513,41,2.513,42,2.513,43,2.513]],["name/49",[44,35.264]],["parent/49",[]]],"invertedIndex":[["__type",{"_index":37,"pagesPluginContent":{},"name":{"47":{}},"parent":{}}],["_add",{"_index":33,"pagesPluginContent":{},"name":{"43":{}},"parent":{}}],["_handleremove",{"_index":34,"pagesPluginContent":{},"name":{"44":{}},"parent":{}}],["_removealltoasts",{"_index":35,"pagesPluginContent":{},"name":{"45":{}},"parent":{}}],["action",{"_index":23,"pagesPluginContent":{},"name":{"30":{}},"parent":{}}],["back",{"_index":8,"pagesPluginContent":{},"name":{"9":{}},"parent":{}}],["battery",{"_index":11,"pagesPluginContent":{},"name":{"12":{}},"parent":{}}],["button",{"_index":25,"pagesPluginContent":{},"name":{"32":{},"39":{}},"parent":{}}],["card",{"_index":12,"pagesPluginContent":{},"name":{"13":{}},"parent":{}}],["checkbox",{"_index":1,"pagesPluginContent":{},"name":{"1":{}},"parent":{}}],["checkmark",{"_index":7,"pagesPluginContent":{},"name":{"8":{}},"parent":{}}],["choice",{"_index":0,"pagesPluginContent":{},"name":{"0":{}},"parent":{}}],["constructor",{"_index":32,"pagesPluginContent":{},"name":{"42":{}},"parent":{}}],["container",{"_index":22,"pagesPluginContent":{},"name":{"29":{}},"parent":{}}],["content",{"_index":16,"pagesPluginContent":{},"name":{"18":{}},"parent":{}}],["directionpad",{"_index":26,"pagesPluginContent":{},"name":{"33":{}},"parent":{}}],["equalactions",{"_index":24,"pagesPluginContent":{},"name":{"31":{}},"parent":{}}],["example",{"_index":41,"pagesPluginContent":{"49":{}},"name":{},"parent":{}}],["forward",{"_index":9,"pagesPluginContent":{},"name":{"10":{}},"parent":{}}],["header",{"_index":13,"pagesPluginContent":{},"name":{"14":{},"21":{}},"parent":{}}],["headericonaction",{"_index":14,"pagesPluginContent":{},"name":{"15":{}},"parent":{}}],["icon",{"_index":6,"pagesPluginContent":{},"name":{"6":{},"7":{}},"parent":{"8":{},"9":{},"10":{},"11":{},"12":{}}}],["input",{"_index":2,"pagesPluginContent":{},"name":{"2":{}},"parent":{}}],["is",{"_index":40,"pagesPluginContent":{"49":{}},"name":{},"parent":{}}],["item",{"_index":18,"pagesPluginContent":{},"name":{"22":{},"23":{}},"parent":{"24":{},"25":{}}}],["label",{"_index":3,"pagesPluginContent":{},"name":{"3":{},"24":{}},"parent":{}}],["list",{"_index":17,"pagesPluginContent":{},"name":{"19":{},"20":{}},"parent":{"21":{}}}],["modal",{"_index":27,"pagesPluginContent":{},"name":{"34":{},"35":{}},"parent":{"36":{}}}],["modalbuttons",{"_index":29,"pagesPluginContent":{},"name":{"37":{},"38":{}},"parent":{"39":{}}}],["negatemargin",{"_index":28,"pagesPluginContent":{},"name":{"36":{}},"parent":{}}],["page",{"_index":43,"pagesPluginContent":{"49":{}},"name":{},"parent":{}}],["render",{"_index":36,"pagesPluginContent":{},"name":{"46":{}},"parent":{}}],["search",{"_index":10,"pagesPluginContent":{},"name":{"11":{}},"parent":{}}],["searchcontainer",{"_index":20,"pagesPluginContent":{},"name":{"26":{}},"parent":{}}],["section",{"_index":21,"pagesPluginContent":{},"name":{"27":{},"28":{}},"parent":{"29":{}}}],["selector",{"_index":30,"pagesPluginContent":{},"name":{"40":{}},"parent":{}}],["stickyheader",{"_index":15,"pagesPluginContent":{},"name":{"16":{},"17":{}},"parent":{"18":{}}}],["test",{"_index":44,"pagesPluginContent":{},"name":{"49":{}},"parent":{}}],["textarea",{"_index":4,"pagesPluginContent":{},"name":{"4":{}},"parent":{}}],["this",{"_index":39,"pagesPluginContent":{"49":{}},"name":{},"parent":{}}],["toasterprovider",{"_index":31,"pagesPluginContent":{},"name":{"41":{}},"parent":{"42":{},"43":{},"44":{},"45":{},"46":{},"47":{}}}],["toggle",{"_index":5,"pagesPluginContent":{},"name":{"5":{}},"parent":{}}],["tutorial",{"_index":42,"pagesPluginContent":{"49":{}},"name":{},"parent":{}}],["usetoaster",{"_index":38,"pagesPluginContent":{},"name":{"48":{}},"parent":{}}],["value",{"_index":19,"pagesPluginContent":{},"name":{"25":{}},"parent":{}}]],"pipeline":[]}}