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,1096 @@
1
+ <!doctype html>
2
+ <html class="default no-js">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <title>ToasterProvider | react-miui - v0.9.2</title>
7
+ <meta name="description" content="Documentation for react-miui - v0.9.2">
8
+ <meta name="viewport" content="width=device-width, initial-scale=1">
9
+ <link rel="stylesheet" href="../assets/css/main.css">
10
+ <link rel="stylesheet" href="../assets/css/pages.css">
11
+ </head>
12
+ <body>
13
+ <header>
14
+ <div class="tsd-page-toolbar">
15
+ <div class="container">
16
+ <div class="table-wrap">
17
+ <div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
18
+ <div class="field">
19
+ <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
20
+ <input id="tsd-search-field" type="text" />
21
+ </div>
22
+ <ul class="results">
23
+ <li class="state loading">Preparing search index...</li>
24
+ <li class="state failure">The search index is not available</li>
25
+ </ul>
26
+ <a href="../index.html" class="title">react-miui - v0.9.2</a>
27
+ </div>
28
+ <div class="table-cell" id="tsd-widgets">
29
+ <div id="tsd-filter">
30
+ <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
31
+ <div class="tsd-filter-group">
32
+ <div class="tsd-select" id="tsd-filter-visibility">
33
+ <span class="tsd-select-label">All</span>
34
+ <ul class="tsd-select-list">
35
+ <li data-value="public">Public</li>
36
+ <li data-value="protected">Public/Protected</li>
37
+ <li data-value="private" class="selected">All</li>
38
+ </ul>
39
+ </div>
40
+ <input type="checkbox" id="tsd-filter-inherited" checked />
41
+ <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
42
+ <input type="checkbox" id="tsd-filter-externals" checked />
43
+ <label class="tsd-widget" for="tsd-filter-externals">Externals</label>
44
+ <input type="checkbox" id="tsd-filter-only-exported" />
45
+ <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
46
+ </div>
47
+ </div>
48
+ <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
49
+ </div>
50
+ </div>
51
+ </div>
52
+ </div>
53
+ <div class="tsd-page-title">
54
+ <div class="container">
55
+ <ul class="tsd-breadcrumb">
56
+ <li>
57
+ <a href="../modules.html">Globals</a>
58
+ </li>
59
+ <li>
60
+ <a href="ToasterProvider.html">ToasterProvider</a>
61
+ </li>
62
+ </ul>
63
+ <h1>Class ToasterProvider</h1>
64
+ </div>
65
+ </div>
66
+ </header>
67
+ <div class="container container-main">
68
+ <div class="row">
69
+ <div class="col-8 col-content">
70
+ <section class="tsd-panel tsd-hierarchy">
71
+ <h3>Hierarchy</h3>
72
+ <ul class="tsd-hierarchy">
73
+ <li>
74
+ <span class="tsd-signature-type">Component</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span>
75
+ <ul class="tsd-hierarchy">
76
+ <li>
77
+ <span class="target">ToasterProvider</span>
78
+ </li>
79
+ </ul>
80
+ </li>
81
+ </ul>
82
+ </section>
83
+ <section class="tsd-panel-group tsd-index-group">
84
+ <h2>Index</h2>
85
+ <section class="tsd-panel tsd-index-panel">
86
+ <div class="tsd-index-content">
87
+ <section class="tsd-index-section ">
88
+ <h3>Constructors</h3>
89
+ <ul class="tsd-index-list">
90
+ <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite"><a href="ToasterProvider.html#constructor" class="tsd-kind-icon">constructor</a></li>
91
+ </ul>
92
+ </section>
93
+ <section class="tsd-index-section tsd-is-inherited tsd-is-external">
94
+ <h3>Properties</h3>
95
+ <ul class="tsd-index-list">
96
+ <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#context" class="tsd-kind-icon">context</a></li>
97
+ <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#props" class="tsd-kind-icon">props</a></li>
98
+ <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#refs" class="tsd-kind-icon">refs</a></li>
99
+ <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#state" class="tsd-kind-icon">state</a></li>
100
+ <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external"><a href="ToasterProvider.html#contextType" class="tsd-kind-icon">context<wbr>Type</a></li>
101
+ </ul>
102
+ </section>
103
+ <section class="tsd-index-section ">
104
+ <h3>Methods</h3>
105
+ <ul class="tsd-index-list">
106
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#UNSAFE_componentWillMount" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Mount</a></li>
107
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#UNSAFE_componentWillReceiveProps" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Receive<wbr>Props</a></li>
108
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#UNSAFE_componentWillUpdate" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Update</a></li>
109
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><a href="ToasterProvider.html#_add" class="tsd-kind-icon">_add</a></li>
110
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><a href="ToasterProvider.html#_handleRemove" class="tsd-kind-icon">_handle<wbr>Remove</a></li>
111
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><a href="ToasterProvider.html#_removeAllToasts" class="tsd-kind-icon">_remove<wbr>All<wbr>Toasts</a></li>
112
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#componentDidCatch" class="tsd-kind-icon">component<wbr>Did<wbr>Catch</a></li>
113
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#componentDidMount" class="tsd-kind-icon">component<wbr>Did<wbr>Mount</a></li>
114
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#componentDidUpdate" class="tsd-kind-icon">component<wbr>Did<wbr>Update</a></li>
115
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#componentWillMount" class="tsd-kind-icon">component<wbr>Will<wbr>Mount</a></li>
116
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#componentWillReceiveProps" class="tsd-kind-icon">component<wbr>Will<wbr>Receive<wbr>Props</a></li>
117
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#componentWillUnmount" class="tsd-kind-icon">component<wbr>Will<wbr>Unmount</a></li>
118
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#componentWillUpdate" class="tsd-kind-icon">component<wbr>Will<wbr>Update</a></li>
119
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#forceUpdate" class="tsd-kind-icon">force<wbr>Update</a></li>
120
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#getSnapshotBeforeUpdate" class="tsd-kind-icon">get<wbr>Snapshot<wbr>Before<wbr>Update</a></li>
121
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite"><a href="ToasterProvider.html#render" class="tsd-kind-icon">render</a></li>
122
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#setState" class="tsd-kind-icon">set<wbr>State</a></li>
123
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="ToasterProvider.html#shouldComponentUpdate" class="tsd-kind-icon">should<wbr>Component<wbr>Update</a></li>
124
+ </ul>
125
+ </section>
126
+ </div>
127
+ </section>
128
+ </section>
129
+ <section class="tsd-panel-group tsd-member-group ">
130
+ <h2>Constructors</h2>
131
+ <section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
132
+ <a name="constructor" class="tsd-anchor"></a>
133
+ <h3>constructor</h3>
134
+ <ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
135
+ <li class="tsd-signature tsd-kind-icon">new <wbr>Toaster<wbr>Provider<span class="tsd-signature-symbol">(</span>props<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Props</span>, context<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="ToasterProvider.html" class="tsd-signature-type">ToasterProvider</a></li>
136
+ </ul>
137
+ <ul class="tsd-descriptions">
138
+ <li class="tsd-description">
139
+ <aside class="tsd-sources">
140
+ <p>Overrides React.Component&lt;Props, State&gt;.constructor</p>
141
+ <ul>
142
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/c0df333/src/components/ui/toaster/Toaster.tsx#L24">src/components/ui/toaster/Toaster.tsx:24</a></li>
143
+ </ul>
144
+ </aside>
145
+ <h4 class="tsd-parameters-title">Parameters</h4>
146
+ <ul class="tsd-parameters">
147
+ <li>
148
+ <h5>props: <span class="tsd-signature-type">Props</span></h5>
149
+ </li>
150
+ <li>
151
+ <h5>context: <span class="tsd-signature-type">unknown</span></h5>
152
+ </li>
153
+ </ul>
154
+ <h4 class="tsd-returns-title">Returns <a href="ToasterProvider.html" class="tsd-signature-type">ToasterProvider</a></h4>
155
+ </li>
156
+ </ul>
157
+ </section>
158
+ </section>
159
+ <section class="tsd-panel-group tsd-member-group tsd-is-inherited tsd-is-external">
160
+ <h2>Properties</h2>
161
+ <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
162
+ <a name="context" class="tsd-anchor"></a>
163
+ <h3>context</h3>
164
+ <div class="tsd-signature tsd-kind-icon">context<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">any</span></div>
165
+ <aside class="tsd-sources">
166
+ <p>Inherited from React.Component.context</p>
167
+ <ul>
168
+ <li>Defined in node_modules/@types/react/index.d.ts:473</li>
169
+ </ul>
170
+ </aside>
171
+ <div class="tsd-comment tsd-typography">
172
+ <div class="lead">
173
+ <p>If using the new style context, re-declare this in your class to be the
174
+ <code>React.ContextType</code> of your <code>static contextType</code>.
175
+ Should be used with type annotation or static contextType.</p>
176
+ </div>
177
+ <pre><code class="language-ts"><span style="color: #001080">static</span><span style="color: #000000"> </span><span style="color: #001080">contextType</span><span style="color: #000000"> = </span><span style="color: #001080">MyContext</span>
178
+ <span style="color: #008000">// For TS pre-3.7:</span>
179
+ <span style="color: #001080">context</span><span style="color: #000000">!: </span><span style="color: #001080">React</span><span style="color: #000000">.</span><span style="color: #001080">ContextType</span><span style="color: #000000">&lt;</span><span style="color: #0000FF">typeof</span><span style="color: #000000"> </span><span style="color: #001080">MyContext</span><span style="color: #000000">&gt;</span>
180
+ <span style="color: #008000">// For TS 3.7 and above:</span>
181
+ <span style="color: #0000FF">declare</span><span style="color: #000000"> context: </span><span style="color: #001080">React</span><span style="color: #000000">.</span><span style="color: #001080">ContextType</span><span style="color: #000000">&lt;</span><span style="color: #0000FF">typeof</span><span style="color: #000000"> </span><span style="color: #001080">MyContext</span><span style="color: #000000">&gt;</span>
182
+ </code></pre>
183
+ <dl class="tsd-comment-tags">
184
+ <dt>see</dt>
185
+ <dd><p><a href="https://reactjs.org/docs/context.html">https://reactjs.org/docs/context.html</a></p>
186
+ </dd>
187
+ </dl>
188
+ </div>
189
+ </section>
190
+ <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
191
+ <a name="props" class="tsd-anchor"></a>
192
+ <h3><span class="tsd-flag ts-flagReadonly">Readonly</span> props</h3>
193
+ <div class="tsd-signature tsd-kind-icon">props<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol"> &amp; </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-symbol">{ </span>children<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">ReactNode</span><span class="tsd-signature-symbol"> }</span><span class="tsd-signature-symbol">&gt;</span></div>
194
+ <aside class="tsd-sources">
195
+ <p>Inherited from React.Component.props</p>
196
+ <ul>
197
+ <li>Defined in node_modules/@types/react/index.d.ts:498</li>
198
+ </ul>
199
+ </aside>
200
+ </section>
201
+ <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
202
+ <a name="refs" class="tsd-anchor"></a>
203
+ <h3>refs</h3>
204
+ <div class="tsd-signature tsd-kind-icon">refs<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">{}</span></div>
205
+ <aside class="tsd-sources">
206
+ <p>Inherited from React.Component.refs</p>
207
+ <ul>
208
+ <li>Defined in node_modules/@types/react/index.d.ts:504</li>
209
+ </ul>
210
+ </aside>
211
+ <div class="tsd-comment tsd-typography">
212
+ <dl class="tsd-comment-tags">
213
+ <dt>deprecated</dt>
214
+ <dd><p><a href="https://reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs">https://reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs</a></p>
215
+ </dd>
216
+ </dl>
217
+ </div>
218
+ <div class="tsd-type-declaration">
219
+ <h4>Type declaration</h4>
220
+ <ul class="tsd-parameters">
221
+ <li class="tsd-parameter-index-signature">
222
+ <h5><span class="tsd-signature-symbol">[</span>key: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><span class="tsd-signature-type">ReactInstance</span></h5>
223
+ </li>
224
+ </ul>
225
+ </div>
226
+ </section>
227
+ <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
228
+ <a name="state" class="tsd-anchor"></a>
229
+ <h3>state</h3>
230
+ <div class="tsd-signature tsd-kind-icon">state<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span></div>
231
+ <aside class="tsd-sources">
232
+ <p>Inherited from React.Component.state</p>
233
+ <ul>
234
+ <li>Defined in node_modules/@types/react/index.d.ts:499</li>
235
+ </ul>
236
+ </aside>
237
+ </section>
238
+ <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external">
239
+ <a name="contextType" class="tsd-anchor"></a>
240
+ <h3><span class="tsd-flag ts-flagStatic">Static</span> <span class="tsd-flag ts-flagOptional">Optional</span> context<wbr>Type</h3>
241
+ <div class="tsd-signature tsd-kind-icon">context<wbr>Type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Context</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">&gt;</span></div>
242
+ <aside class="tsd-sources">
243
+ <p>Inherited from React.Component.contextType</p>
244
+ <ul>
245
+ <li>Defined in node_modules/@types/react/index.d.ts:455</li>
246
+ </ul>
247
+ </aside>
248
+ <div class="tsd-comment tsd-typography">
249
+ <div class="lead">
250
+ <p>If set, <code>this.context</code> will be set at runtime to the current value of the given Context.</p>
251
+ </div>
252
+ <p>Usage:</p>
253
+ <pre><code class="language-ts"><span style="color: #0000FF">type</span><span style="color: #000000"> </span><span style="color: #267F99">MyContext</span><span style="color: #000000"> = </span><span style="color: #267F99">number</span>
254
+ <span style="color: #0000FF">const</span><span style="color: #000000"> </span><span style="color: #0070C1">Ctx</span><span style="color: #000000"> = </span><span style="color: #001080">React</span><span style="color: #000000">.</span><span style="color: #795E26">createContext</span><span style="color: #000000">&lt;</span><span style="color: #267F99">MyContext</span><span style="color: #000000">&gt;(</span><span style="color: #098658">0</span><span style="color: #000000">)</span>
255
+
256
+ <span style="color: #0000FF">class</span><span style="color: #000000"> </span><span style="color: #267F99">Foo</span><span style="color: #000000"> </span><span style="color: #0000FF">extends</span><span style="color: #000000"> </span><span style="color: #267F99">React</span><span style="color: #000000">.</span><span style="color: #267F99">Component</span><span style="color: #000000"> {</span>
257
+ <span style="color: #000000"> </span><span style="color: #0000FF">static</span><span style="color: #000000"> </span><span style="color: #001080">contextType</span><span style="color: #000000"> = </span><span style="color: #001080">Ctx</span>
258
+ <span style="color: #000000"> </span><span style="color: #001080">context</span><span style="color: #000000">!: </span><span style="color: #267F99">React</span><span style="color: #000000">.</span><span style="color: #267F99">ContextType</span><span style="color: #000000">&lt;</span><span style="color: #0000FF">typeof</span><span style="color: #000000"> </span><span style="color: #001080">Ctx</span><span style="color: #000000">&gt;</span>
259
+ <span style="color: #000000"> </span><span style="color: #795E26">render</span><span style="color: #000000"> () {</span>
260
+ <span style="color: #000000"> </span><span style="color: #AF00DB">return</span><span style="color: #000000"> &lt;&gt;</span><span style="color: #001080">My</span><span style="color: #000000"> </span><span style="color: #001080">context</span><span style="color: #A31515">&#039;s value: {this.context}&lt;/&gt;</span><span style="color: #CD3131">;</span>
261
+ <span style="color: #000000"> }</span>
262
+ <span style="color: #000000">}</span>
263
+ </code></pre>
264
+ <dl class="tsd-comment-tags">
265
+ <dt>see</dt>
266
+ <dd><p><a href="https://reactjs.org/docs/context.html#classcontexttype">https://reactjs.org/docs/context.html#classcontexttype</a></p>
267
+ </dd>
268
+ </dl>
269
+ </div>
270
+ </section>
271
+ </section>
272
+ <section class="tsd-panel-group tsd-member-group ">
273
+ <h2>Methods</h2>
274
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
275
+ <a name="UNSAFE_componentWillMount" class="tsd-anchor"></a>
276
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> UNSAFE_<wbr>component<wbr>Will<wbr>Mount</h3>
277
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
278
+ <li class="tsd-signature tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Mount<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
279
+ </ul>
280
+ <ul class="tsd-descriptions">
281
+ <li class="tsd-description">
282
+ <aside class="tsd-sources">
283
+ <p>Inherited from React.Component.UNSAFE_componentWillMount</p>
284
+ <ul>
285
+ <li>Defined in node_modules/@types/react/index.d.ts:711</li>
286
+ </ul>
287
+ </aside>
288
+ <div class="tsd-comment tsd-typography">
289
+ <div class="lead">
290
+ <p>Called immediately before mounting occurs, and before <code>Component#render</code>.
291
+ Avoid introducing any side-effects or subscriptions in this method.</p>
292
+ </div>
293
+ <p>This method will not stop working in React 17.</p>
294
+ <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
295
+ prevents this from being invoked.</p>
296
+ <dl class="tsd-comment-tags">
297
+ <dt>deprecated</dt>
298
+ <dd><p>16.3, use componentDidMount or the constructor instead</p>
299
+ </dd>
300
+ <dt>see</dt>
301
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state</a></p>
302
+ </dd>
303
+ <dt>see</dt>
304
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
305
+ </dd>
306
+ </dl>
307
+ </div>
308
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
309
+ </li>
310
+ </ul>
311
+ </section>
312
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
313
+ <a name="UNSAFE_componentWillReceiveProps" class="tsd-anchor"></a>
314
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> UNSAFE_<wbr>component<wbr>Will<wbr>Receive<wbr>Props</h3>
315
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
316
+ <li class="tsd-signature tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Receive<wbr>Props<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
317
+ </ul>
318
+ <ul class="tsd-descriptions">
319
+ <li class="tsd-description">
320
+ <aside class="tsd-sources">
321
+ <p>Inherited from React.Component.UNSAFE_componentWillReceiveProps</p>
322
+ <ul>
323
+ <li>Defined in node_modules/@types/react/index.d.ts:743</li>
324
+ </ul>
325
+ </aside>
326
+ <div class="tsd-comment tsd-typography">
327
+ <div class="lead">
328
+ <p>Called when the component may be receiving new props.
329
+ React may call this even if props have not changed, so be sure to compare new and existing
330
+ props if you only want to handle changes.</p>
331
+ </div>
332
+ <p>Calling <code>Component#setState</code> generally does not trigger this method.</p>
333
+ <p>This method will not stop working in React 17.</p>
334
+ <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
335
+ prevents this from being invoked.</p>
336
+ <dl class="tsd-comment-tags">
337
+ <dt>deprecated</dt>
338
+ <dd><p>16.3, use static getDerivedStateFromProps instead</p>
339
+ </dd>
340
+ <dt>see</dt>
341
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props</a></p>
342
+ </dd>
343
+ <dt>see</dt>
344
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
345
+ </dd>
346
+ </dl>
347
+ </div>
348
+ <h4 class="tsd-parameters-title">Parameters</h4>
349
+ <ul class="tsd-parameters">
350
+ <li>
351
+ <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span></h5>
352
+ </li>
353
+ <li>
354
+ <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
355
+ </li>
356
+ </ul>
357
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
358
+ </li>
359
+ </ul>
360
+ </section>
361
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
362
+ <a name="UNSAFE_componentWillUpdate" class="tsd-anchor"></a>
363
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> UNSAFE_<wbr>component<wbr>Will<wbr>Update</h3>
364
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
365
+ <li class="tsd-signature tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Update<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span>, nextState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
366
+ </ul>
367
+ <ul class="tsd-descriptions">
368
+ <li class="tsd-description">
369
+ <aside class="tsd-sources">
370
+ <p>Inherited from React.Component.UNSAFE_componentWillUpdate</p>
371
+ <ul>
372
+ <li>Defined in node_modules/@types/react/index.d.ts:771</li>
373
+ </ul>
374
+ </aside>
375
+ <div class="tsd-comment tsd-typography">
376
+ <div class="lead">
377
+ <p>Called immediately before rendering when new props or state is received. Not called for the initial render.</p>
378
+ </div>
379
+ <p>Note: You cannot call <code>Component#setState</code> here.</p>
380
+ <p>This method will not stop working in React 17.</p>
381
+ <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
382
+ prevents this from being invoked.</p>
383
+ <dl class="tsd-comment-tags">
384
+ <dt>deprecated</dt>
385
+ <dd><p>16.3, use getSnapshotBeforeUpdate instead</p>
386
+ </dd>
387
+ <dt>see</dt>
388
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update</a></p>
389
+ </dd>
390
+ <dt>see</dt>
391
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
392
+ </dd>
393
+ </dl>
394
+ </div>
395
+ <h4 class="tsd-parameters-title">Parameters</h4>
396
+ <ul class="tsd-parameters">
397
+ <li>
398
+ <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span></h5>
399
+ </li>
400
+ <li>
401
+ <h5>nextState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span></h5>
402
+ </li>
403
+ <li>
404
+ <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
405
+ </li>
406
+ </ul>
407
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
408
+ </li>
409
+ </ul>
410
+ </section>
411
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private">
412
+ <a name="_add" class="tsd-anchor"></a>
413
+ <h3><span class="tsd-flag ts-flagPrivate">Private</span> <span class="tsd-flag ts-flagReadonly">Readonly</span> _add</h3>
414
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
415
+ <li class="tsd-signature tsd-kind-icon">_add<span class="tsd-signature-symbol">(</span>text<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
416
+ </ul>
417
+ <ul class="tsd-descriptions">
418
+ <li class="tsd-description">
419
+ <aside class="tsd-sources">
420
+ <ul>
421
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/c0df333/src/components/ui/toaster/Toaster.tsx#L32">src/components/ui/toaster/Toaster.tsx:32</a></li>
422
+ </ul>
423
+ </aside>
424
+ <h4 class="tsd-parameters-title">Parameters</h4>
425
+ <ul class="tsd-parameters">
426
+ <li>
427
+ <h5>text: <span class="tsd-signature-type">string</span></h5>
428
+ </li>
429
+ </ul>
430
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
431
+ </li>
432
+ </ul>
433
+ </section>
434
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private">
435
+ <a name="_handleRemove" class="tsd-anchor"></a>
436
+ <h3><span class="tsd-flag ts-flagPrivate">Private</span> <span class="tsd-flag ts-flagReadonly">Readonly</span> _handle<wbr>Remove</h3>
437
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
438
+ <li class="tsd-signature tsd-kind-icon">_handle<wbr>Remove<span class="tsd-signature-symbol">(</span>id<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
439
+ </ul>
440
+ <ul class="tsd-descriptions">
441
+ <li class="tsd-description">
442
+ <aside class="tsd-sources">
443
+ <ul>
444
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/c0df333/src/components/ui/toaster/Toaster.tsx#L63">src/components/ui/toaster/Toaster.tsx:63</a></li>
445
+ </ul>
446
+ </aside>
447
+ <h4 class="tsd-parameters-title">Parameters</h4>
448
+ <ul class="tsd-parameters">
449
+ <li>
450
+ <h5>id: <span class="tsd-signature-type">string</span></h5>
451
+ </li>
452
+ </ul>
453
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
454
+ </li>
455
+ </ul>
456
+ </section>
457
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private">
458
+ <a name="_removeAllToasts" class="tsd-anchor"></a>
459
+ <h3><span class="tsd-flag ts-flagPrivate">Private</span> <span class="tsd-flag ts-flagReadonly">Readonly</span> _remove<wbr>All<wbr>Toasts</h3>
460
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
461
+ <li class="tsd-signature tsd-kind-icon">_remove<wbr>All<wbr>Toasts<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
462
+ </ul>
463
+ <ul class="tsd-descriptions">
464
+ <li class="tsd-description">
465
+ <aside class="tsd-sources">
466
+ <ul>
467
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/c0df333/src/components/ui/toaster/Toaster.tsx#L70">src/components/ui/toaster/Toaster.tsx:70</a></li>
468
+ </ul>
469
+ </aside>
470
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
471
+ </li>
472
+ </ul>
473
+ </section>
474
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
475
+ <a name="componentDidCatch" class="tsd-anchor"></a>
476
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Did<wbr>Catch</h3>
477
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
478
+ <li class="tsd-signature tsd-kind-icon">component<wbr>Did<wbr>Catch<span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span>, errorInfo<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ErrorInfo</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
479
+ </ul>
480
+ <ul class="tsd-descriptions">
481
+ <li class="tsd-description">
482
+ <aside class="tsd-sources">
483
+ <p>Inherited from React.Component.componentDidCatch</p>
484
+ <ul>
485
+ <li>Defined in node_modules/@types/react/index.d.ts:640</li>
486
+ </ul>
487
+ </aside>
488
+ <div class="tsd-comment tsd-typography">
489
+ <div class="lead">
490
+ <p>Catches exceptions generated in descendant components. Unhandled exceptions will cause
491
+ the entire component tree to unmount.</p>
492
+ </div>
493
+ </div>
494
+ <h4 class="tsd-parameters-title">Parameters</h4>
495
+ <ul class="tsd-parameters">
496
+ <li>
497
+ <h5>error: <span class="tsd-signature-type">Error</span></h5>
498
+ </li>
499
+ <li>
500
+ <h5>errorInfo: <span class="tsd-signature-type">ErrorInfo</span></h5>
501
+ </li>
502
+ </ul>
503
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
504
+ </li>
505
+ </ul>
506
+ </section>
507
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
508
+ <a name="componentDidMount" class="tsd-anchor"></a>
509
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Did<wbr>Mount</h3>
510
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
511
+ <li class="tsd-signature tsd-kind-icon">component<wbr>Did<wbr>Mount<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
512
+ </ul>
513
+ <ul class="tsd-descriptions">
514
+ <li class="tsd-description">
515
+ <aside class="tsd-sources">
516
+ <p>Inherited from React.Component.componentDidMount</p>
517
+ <ul>
518
+ <li>Defined in node_modules/@types/react/index.d.ts:619</li>
519
+ </ul>
520
+ </aside>
521
+ <div class="tsd-comment tsd-typography">
522
+ <div class="lead">
523
+ <p>Called immediately after a component is mounted. Setting state here will trigger re-rendering.</p>
524
+ </div>
525
+ </div>
526
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
527
+ </li>
528
+ </ul>
529
+ </section>
530
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
531
+ <a name="componentDidUpdate" class="tsd-anchor"></a>
532
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Did<wbr>Update</h3>
533
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
534
+ <li class="tsd-signature tsd-kind-icon">component<wbr>Did<wbr>Update<span class="tsd-signature-symbol">(</span>prevProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span>, prevState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span>, snapshot<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
535
+ </ul>
536
+ <ul class="tsd-descriptions">
537
+ <li class="tsd-description">
538
+ <aside class="tsd-sources">
539
+ <p>Inherited from React.Component.componentDidUpdate</p>
540
+ <ul>
541
+ <li>Defined in node_modules/@types/react/index.d.ts:682</li>
542
+ </ul>
543
+ </aside>
544
+ <div class="tsd-comment tsd-typography">
545
+ <div class="lead">
546
+ <p>Called immediately after updating occurs. Not called for the initial render.</p>
547
+ </div>
548
+ <p>The snapshot is only present if getSnapshotBeforeUpdate is present and returns non-null.</p>
549
+ </div>
550
+ <h4 class="tsd-parameters-title">Parameters</h4>
551
+ <ul class="tsd-parameters">
552
+ <li>
553
+ <h5>prevProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span></h5>
554
+ </li>
555
+ <li>
556
+ <h5>prevState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span></h5>
557
+ </li>
558
+ <li>
559
+ <h5><span class="tsd-flag ts-flagOptional">Optional</span> snapshot: <span class="tsd-signature-type">any</span></h5>
560
+ </li>
561
+ </ul>
562
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
563
+ </li>
564
+ </ul>
565
+ </section>
566
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
567
+ <a name="componentWillMount" class="tsd-anchor"></a>
568
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Will<wbr>Mount</h3>
569
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
570
+ <li class="tsd-signature tsd-kind-icon">component<wbr>Will<wbr>Mount<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
571
+ </ul>
572
+ <ul class="tsd-descriptions">
573
+ <li class="tsd-description">
574
+ <aside class="tsd-sources">
575
+ <p>Inherited from React.Component.componentWillMount</p>
576
+ <ul>
577
+ <li>Defined in node_modules/@types/react/index.d.ts:697</li>
578
+ </ul>
579
+ </aside>
580
+ <div class="tsd-comment tsd-typography">
581
+ <div class="lead">
582
+ <p>Called immediately before mounting occurs, and before <code>Component#render</code>.
583
+ Avoid introducing any side-effects or subscriptions in this method.</p>
584
+ </div>
585
+ <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
586
+ prevents this from being invoked.</p>
587
+ <dl class="tsd-comment-tags">
588
+ <dt>deprecated</dt>
589
+ <dd><p>16.3, use componentDidMount or the constructor instead; will stop working in React 17</p>
590
+ </dd>
591
+ <dt>see</dt>
592
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state</a></p>
593
+ </dd>
594
+ <dt>see</dt>
595
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
596
+ </dd>
597
+ </dl>
598
+ </div>
599
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
600
+ </li>
601
+ </ul>
602
+ </section>
603
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
604
+ <a name="componentWillReceiveProps" class="tsd-anchor"></a>
605
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Will<wbr>Receive<wbr>Props</h3>
606
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
607
+ <li class="tsd-signature tsd-kind-icon">component<wbr>Will<wbr>Receive<wbr>Props<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
608
+ </ul>
609
+ <ul class="tsd-descriptions">
610
+ <li class="tsd-description">
611
+ <aside class="tsd-sources">
612
+ <p>Inherited from React.Component.componentWillReceiveProps</p>
613
+ <ul>
614
+ <li>Defined in node_modules/@types/react/index.d.ts:726</li>
615
+ </ul>
616
+ </aside>
617
+ <div class="tsd-comment tsd-typography">
618
+ <div class="lead">
619
+ <p>Called when the component may be receiving new props.
620
+ React may call this even if props have not changed, so be sure to compare new and existing
621
+ props if you only want to handle changes.</p>
622
+ </div>
623
+ <p>Calling <code>Component#setState</code> generally does not trigger this method.</p>
624
+ <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
625
+ prevents this from being invoked.</p>
626
+ <dl class="tsd-comment-tags">
627
+ <dt>deprecated</dt>
628
+ <dd><p>16.3, use static getDerivedStateFromProps instead; will stop working in React 17</p>
629
+ </dd>
630
+ <dt>see</dt>
631
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props</a></p>
632
+ </dd>
633
+ <dt>see</dt>
634
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
635
+ </dd>
636
+ </dl>
637
+ </div>
638
+ <h4 class="tsd-parameters-title">Parameters</h4>
639
+ <ul class="tsd-parameters">
640
+ <li>
641
+ <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span></h5>
642
+ </li>
643
+ <li>
644
+ <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
645
+ </li>
646
+ </ul>
647
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
648
+ </li>
649
+ </ul>
650
+ </section>
651
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
652
+ <a name="componentWillUnmount" class="tsd-anchor"></a>
653
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Will<wbr>Unmount</h3>
654
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
655
+ <li class="tsd-signature tsd-kind-icon">component<wbr>Will<wbr>Unmount<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
656
+ </ul>
657
+ <ul class="tsd-descriptions">
658
+ <li class="tsd-description">
659
+ <aside class="tsd-sources">
660
+ <p>Inherited from React.Component.componentWillUnmount</p>
661
+ <ul>
662
+ <li>Defined in node_modules/@types/react/index.d.ts:635</li>
663
+ </ul>
664
+ </aside>
665
+ <div class="tsd-comment tsd-typography">
666
+ <div class="lead">
667
+ <p>Called immediately before a component is destroyed. Perform any necessary cleanup in this method, such as
668
+ cancelled network requests, or cleaning up any DOM elements created in <code>componentDidMount</code>.</p>
669
+ </div>
670
+ </div>
671
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
672
+ </li>
673
+ </ul>
674
+ </section>
675
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
676
+ <a name="componentWillUpdate" class="tsd-anchor"></a>
677
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> component<wbr>Will<wbr>Update</h3>
678
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
679
+ <li class="tsd-signature tsd-kind-icon">component<wbr>Will<wbr>Update<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span>, nextState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
680
+ </ul>
681
+ <ul class="tsd-descriptions">
682
+ <li class="tsd-description">
683
+ <aside class="tsd-sources">
684
+ <p>Inherited from React.Component.componentWillUpdate</p>
685
+ <ul>
686
+ <li>Defined in node_modules/@types/react/index.d.ts:756</li>
687
+ </ul>
688
+ </aside>
689
+ <div class="tsd-comment tsd-typography">
690
+ <div class="lead">
691
+ <p>Called immediately before rendering when new props or state is received. Not called for the initial render.</p>
692
+ </div>
693
+ <p>Note: You cannot call <code>Component#setState</code> here.</p>
694
+ <p>Note: the presence of getSnapshotBeforeUpdate or getDerivedStateFromProps
695
+ prevents this from being invoked.</p>
696
+ <dl class="tsd-comment-tags">
697
+ <dt>deprecated</dt>
698
+ <dd><p>16.3, use getSnapshotBeforeUpdate instead; will stop working in React 17</p>
699
+ </dd>
700
+ <dt>see</dt>
701
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update</a></p>
702
+ </dd>
703
+ <dt>see</dt>
704
+ <dd><p><a href="https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path">https://reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path</a></p>
705
+ </dd>
706
+ </dl>
707
+ </div>
708
+ <h4 class="tsd-parameters-title">Parameters</h4>
709
+ <ul class="tsd-parameters">
710
+ <li>
711
+ <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span></h5>
712
+ </li>
713
+ <li>
714
+ <h5>nextState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span></h5>
715
+ </li>
716
+ <li>
717
+ <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
718
+ </li>
719
+ </ul>
720
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
721
+ </li>
722
+ </ul>
723
+ </section>
724
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
725
+ <a name="forceUpdate" class="tsd-anchor"></a>
726
+ <h3>force<wbr>Update</h3>
727
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
728
+ <li class="tsd-signature tsd-kind-icon">force<wbr>Update<span class="tsd-signature-symbol">(</span>callback<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
729
+ </ul>
730
+ <ul class="tsd-descriptions">
731
+ <li class="tsd-description">
732
+ <aside class="tsd-sources">
733
+ <p>Inherited from React.Component.forceUpdate</p>
734
+ <ul>
735
+ <li>Defined in node_modules/@types/react/index.d.ts:490</li>
736
+ </ul>
737
+ </aside>
738
+ <h4 class="tsd-parameters-title">Parameters</h4>
739
+ <ul class="tsd-parameters">
740
+ <li>
741
+ <h5><span class="tsd-flag ts-flagOptional">Optional</span> callback: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5>
742
+ <ul class="tsd-parameters">
743
+ <li class="tsd-parameter-signature">
744
+ <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
745
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
746
+ </ul>
747
+ <ul class="tsd-descriptions">
748
+ <li class="tsd-description">
749
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
750
+ </li>
751
+ </ul>
752
+ </li>
753
+ </ul>
754
+ </li>
755
+ </ul>
756
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
757
+ </li>
758
+ </ul>
759
+ </section>
760
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
761
+ <a name="getSnapshotBeforeUpdate" class="tsd-anchor"></a>
762
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> get<wbr>Snapshot<wbr>Before<wbr>Update</h3>
763
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
764
+ <li class="tsd-signature tsd-kind-icon">get<wbr>Snapshot<wbr>Before<wbr>Update<span class="tsd-signature-symbol">(</span>prevProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span>, prevState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
765
+ </ul>
766
+ <ul class="tsd-descriptions">
767
+ <li class="tsd-description">
768
+ <aside class="tsd-sources">
769
+ <p>Inherited from React.Component.getSnapshotBeforeUpdate</p>
770
+ <ul>
771
+ <li>Defined in node_modules/@types/react/index.d.ts:676</li>
772
+ </ul>
773
+ </aside>
774
+ <div class="tsd-comment tsd-typography">
775
+ <div class="lead">
776
+ <p>Runs before React applies the result of <code>render</code> to the document, and
777
+ returns an object to be given to componentDidUpdate. Useful for saving
778
+ things such as scroll position before <code>render</code> causes changes to it.</p>
779
+ </div>
780
+ <p>Note: the presence of getSnapshotBeforeUpdate prevents any of the deprecated
781
+ lifecycle events from running.</p>
782
+ </div>
783
+ <h4 class="tsd-parameters-title">Parameters</h4>
784
+ <ul class="tsd-parameters">
785
+ <li>
786
+ <h5>prevProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span></h5>
787
+ </li>
788
+ <li>
789
+ <h5>prevState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span></h5>
790
+ </li>
791
+ </ul>
792
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4>
793
+ </li>
794
+ </ul>
795
+ </section>
796
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite">
797
+ <a name="render" class="tsd-anchor"></a>
798
+ <h3>render</h3>
799
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite">
800
+ <li class="tsd-signature tsd-kind-icon">render<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Element</span></li>
801
+ </ul>
802
+ <ul class="tsd-descriptions">
803
+ <li class="tsd-description">
804
+ <aside class="tsd-sources">
805
+ <p>Overrides React.Component.render</p>
806
+ <ul>
807
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/c0df333/src/components/ui/toaster/Toaster.tsx#L85">src/components/ui/toaster/Toaster.tsx:85</a></li>
808
+ </ul>
809
+ </aside>
810
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4>
811
+ </li>
812
+ </ul>
813
+ </section>
814
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-external">
815
+ <a name="setState" class="tsd-anchor"></a>
816
+ <h3>set<wbr>State</h3>
817
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-external">
818
+ <li class="tsd-signature tsd-kind-icon">set<wbr>State&lt;K&gt;<span class="tsd-signature-symbol">(</span>state<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>prevState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span>, props<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Pick</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Pick</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">&gt;</span>, callback<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
819
+ </ul>
820
+ <ul class="tsd-descriptions">
821
+ <li class="tsd-description">
822
+ <aside class="tsd-sources">
823
+ <p>Inherited from React.Component.setState</p>
824
+ <ul>
825
+ <li>Defined in node_modules/@types/react/index.d.ts:485</li>
826
+ </ul>
827
+ </aside>
828
+ <h4 class="tsd-type-parameters-title">Type parameters</h4>
829
+ <ul class="tsd-type-parameters">
830
+ <li>
831
+ <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">&quot;list&quot;</span></h4>
832
+ </li>
833
+ </ul>
834
+ <h4 class="tsd-parameters-title">Parameters</h4>
835
+ <ul class="tsd-parameters">
836
+ <li>
837
+ <h5>state: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>prevState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span>, props<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Pick</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Pick</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">&gt;</span></h5>
838
+ </li>
839
+ <li>
840
+ <h5><span class="tsd-flag ts-flagOptional">Optional</span> callback: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5>
841
+ <ul class="tsd-parameters">
842
+ <li class="tsd-parameter-signature">
843
+ <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
844
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
845
+ </ul>
846
+ <ul class="tsd-descriptions">
847
+ <li class="tsd-description">
848
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
849
+ </li>
850
+ </ul>
851
+ </li>
852
+ </ul>
853
+ </li>
854
+ </ul>
855
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
856
+ </li>
857
+ </ul>
858
+ </section>
859
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
860
+ <a name="shouldComponentUpdate" class="tsd-anchor"></a>
861
+ <h3><span class="tsd-flag ts-flagOptional">Optional</span> should<wbr>Component<wbr>Update</h3>
862
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
863
+ <li class="tsd-signature tsd-kind-icon">should<wbr>Component<wbr>Update<span class="tsd-signature-symbol">(</span>nextProps<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span>, nextState<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span>, nextContext<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
864
+ </ul>
865
+ <ul class="tsd-descriptions">
866
+ <li class="tsd-description">
867
+ <aside class="tsd-sources">
868
+ <p>Inherited from React.Component.shouldComponentUpdate</p>
869
+ <ul>
870
+ <li>Defined in node_modules/@types/react/index.d.ts:630</li>
871
+ </ul>
872
+ </aside>
873
+ <div class="tsd-comment tsd-typography">
874
+ <div class="lead">
875
+ <p>Called to determine whether the change in props and state should trigger a re-render.</p>
876
+ </div>
877
+ <p><code>Component</code> always returns true.
878
+ <code>PureComponent</code> implements a shallow comparison on props and state and returns true if any
879
+ props or states have changed.</p>
880
+ <p>If false is returned, <code>Component#render</code>, <code>componentWillUpdate</code>
881
+ and <code>componentDidUpdate</code> will not be called.</p>
882
+ </div>
883
+ <h4 class="tsd-parameters-title">Parameters</h4>
884
+ <ul class="tsd-parameters">
885
+ <li>
886
+ <h5>nextProps: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">&gt;</span></h5>
887
+ </li>
888
+ <li>
889
+ <h5>nextState: <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">&gt;</span></h5>
890
+ </li>
891
+ <li>
892
+ <h5>nextContext: <span class="tsd-signature-type">any</span></h5>
893
+ </li>
894
+ </ul>
895
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
896
+ </li>
897
+ </ul>
898
+ </section>
899
+ </section>
900
+ </div>
901
+ <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
902
+ <nav class="tsd-navigation primary">
903
+ <ul>
904
+ <li class="label pp-nav pp-group">
905
+ <span>Tutorials</span>
906
+ </li>
907
+ <li class=" pp-nav pp-page">
908
+ <a href="../pages/Tutorials/Test.html">Test</a>
909
+ </li>
910
+ <li class=" ">
911
+ <a href="../modules.html">Exports</a>
912
+ </li>
913
+ </ul>
914
+ </nav>
915
+ <nav class="tsd-navigation secondary menu-sticky">
916
+ <ul class="before-current">
917
+ <li class=" tsd-kind-enum">
918
+ <a href="../enums/ICON.html" class="tsd-kind-icon">ICON</a>
919
+ </li>
920
+ </ul>
921
+ <ul class="current">
922
+ <li class="current tsd-kind-class">
923
+ <a href="ToasterProvider.html" class="tsd-kind-icon">Toaster<wbr>Provider</a>
924
+ <ul>
925
+ <li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite">
926
+ <a href="ToasterProvider.html#constructor" class="tsd-kind-icon">constructor</a>
927
+ </li>
928
+ <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
929
+ <a href="ToasterProvider.html#context" class="tsd-kind-icon">context</a>
930
+ </li>
931
+ <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
932
+ <a href="ToasterProvider.html#props" class="tsd-kind-icon">props</a>
933
+ </li>
934
+ <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
935
+ <a href="ToasterProvider.html#refs" class="tsd-kind-icon">refs</a>
936
+ </li>
937
+ <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external">
938
+ <a href="ToasterProvider.html#state" class="tsd-kind-icon">state</a>
939
+ </li>
940
+ <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static tsd-is-external">
941
+ <a href="ToasterProvider.html#contextType" class="tsd-kind-icon">context<wbr>Type</a>
942
+ </li>
943
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
944
+ <a href="ToasterProvider.html#UNSAFE_componentWillMount" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Mount</a>
945
+ </li>
946
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
947
+ <a href="ToasterProvider.html#UNSAFE_componentWillReceiveProps" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Receive<wbr>Props</a>
948
+ </li>
949
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
950
+ <a href="ToasterProvider.html#UNSAFE_componentWillUpdate" class="tsd-kind-icon">UNSAFE_<wbr>component<wbr>Will<wbr>Update</a>
951
+ </li>
952
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-private">
953
+ <a href="ToasterProvider.html#_add" class="tsd-kind-icon">_add</a>
954
+ </li>
955
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-private">
956
+ <a href="ToasterProvider.html#_handleRemove" class="tsd-kind-icon">_handle<wbr>Remove</a>
957
+ </li>
958
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-private">
959
+ <a href="ToasterProvider.html#_removeAllToasts" class="tsd-kind-icon">_remove<wbr>All<wbr>Toasts</a>
960
+ </li>
961
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
962
+ <a href="ToasterProvider.html#componentDidCatch" class="tsd-kind-icon">component<wbr>Did<wbr>Catch</a>
963
+ </li>
964
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
965
+ <a href="ToasterProvider.html#componentDidMount" class="tsd-kind-icon">component<wbr>Did<wbr>Mount</a>
966
+ </li>
967
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
968
+ <a href="ToasterProvider.html#componentDidUpdate" class="tsd-kind-icon">component<wbr>Did<wbr>Update</a>
969
+ </li>
970
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
971
+ <a href="ToasterProvider.html#componentWillMount" class="tsd-kind-icon">component<wbr>Will<wbr>Mount</a>
972
+ </li>
973
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
974
+ <a href="ToasterProvider.html#componentWillReceiveProps" class="tsd-kind-icon">component<wbr>Will<wbr>Receive<wbr>Props</a>
975
+ </li>
976
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
977
+ <a href="ToasterProvider.html#componentWillUnmount" class="tsd-kind-icon">component<wbr>Will<wbr>Unmount</a>
978
+ </li>
979
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
980
+ <a href="ToasterProvider.html#componentWillUpdate" class="tsd-kind-icon">component<wbr>Will<wbr>Update</a>
981
+ </li>
982
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
983
+ <a href="ToasterProvider.html#forceUpdate" class="tsd-kind-icon">force<wbr>Update</a>
984
+ </li>
985
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
986
+ <a href="ToasterProvider.html#getSnapshotBeforeUpdate" class="tsd-kind-icon">get<wbr>Snapshot<wbr>Before<wbr>Update</a>
987
+ </li>
988
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite">
989
+ <a href="ToasterProvider.html#render" class="tsd-kind-icon">render</a>
990
+ </li>
991
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-inherited tsd-is-external">
992
+ <a href="ToasterProvider.html#setState" class="tsd-kind-icon">set<wbr>State</a>
993
+ </li>
994
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
995
+ <a href="ToasterProvider.html#shouldComponentUpdate" class="tsd-kind-icon">should<wbr>Component<wbr>Update</a>
996
+ </li>
997
+ </ul>
998
+ </li>
999
+ </ul>
1000
+ <ul class="after-current">
1001
+ <li class=" tsd-kind-variable">
1002
+ <a href="../modules.html#Action" class="tsd-kind-icon">Action</a>
1003
+ </li>
1004
+ <li class=" tsd-kind-variable">
1005
+ <a href="../modules.html#Button" class="tsd-kind-icon">Button</a>
1006
+ </li>
1007
+ <li class=" tsd-kind-variable">
1008
+ <a href="../modules.html#Card" class="tsd-kind-icon">Card</a>
1009
+ </li>
1010
+ <li class=" tsd-kind-variable">
1011
+ <a href="../modules.html#Checkbox" class="tsd-kind-icon">Checkbox</a>
1012
+ </li>
1013
+ <li class=" tsd-kind-variable">
1014
+ <a href="../modules.html#Choice" class="tsd-kind-icon">Choice</a>
1015
+ </li>
1016
+ <li class=" tsd-kind-variable">
1017
+ <a href="../modules.html#DirectionPad" class="tsd-kind-icon">Direction<wbr>Pad</a>
1018
+ </li>
1019
+ <li class=" tsd-kind-variable">
1020
+ <a href="../modules.html#EqualActions" class="tsd-kind-icon">Equal<wbr>Actions</a>
1021
+ </li>
1022
+ <li class=" tsd-kind-variable">
1023
+ <a href="../modules.html#Header" class="tsd-kind-icon">Header</a>
1024
+ </li>
1025
+ <li class=" tsd-kind-variable">
1026
+ <a href="../modules.html#HeaderIconAction" class="tsd-kind-icon">Header<wbr>Icon<wbr>Action</a>
1027
+ </li>
1028
+ <li class=" tsd-kind-variable">
1029
+ <a href="../modules.html#Icon" class="tsd-kind-icon">Icon</a>
1030
+ </li>
1031
+ <li class=" tsd-kind-variable">
1032
+ <a href="../modules.html#Input" class="tsd-kind-icon">Input</a>
1033
+ </li>
1034
+ <li class=" tsd-kind-variable">
1035
+ <a href="../modules.html#Item" class="tsd-kind-icon">Item</a>
1036
+ </li>
1037
+ <li class=" tsd-kind-variable">
1038
+ <a href="../modules.html#Label" class="tsd-kind-icon">Label</a>
1039
+ </li>
1040
+ <li class=" tsd-kind-variable">
1041
+ <a href="../modules.html#List" class="tsd-kind-icon">List</a>
1042
+ </li>
1043
+ <li class=" tsd-kind-variable">
1044
+ <a href="../modules.html#Modal" class="tsd-kind-icon">Modal</a>
1045
+ </li>
1046
+ <li class=" tsd-kind-variable">
1047
+ <a href="../modules.html#ModalButtons" class="tsd-kind-icon">Modal<wbr>Buttons</a>
1048
+ </li>
1049
+ <li class=" tsd-kind-variable">
1050
+ <a href="../modules.html#SearchContainer" class="tsd-kind-icon">Search<wbr>Container</a>
1051
+ </li>
1052
+ <li class=" tsd-kind-variable">
1053
+ <a href="../modules.html#Section" class="tsd-kind-icon">Section</a>
1054
+ </li>
1055
+ <li class=" tsd-kind-variable">
1056
+ <a href="../modules.html#Selector" class="tsd-kind-icon">Selector</a>
1057
+ </li>
1058
+ <li class=" tsd-kind-variable">
1059
+ <a href="../modules.html#StickyHeader" class="tsd-kind-icon">Sticky<wbr>Header</a>
1060
+ </li>
1061
+ <li class=" tsd-kind-variable">
1062
+ <a href="../modules.html#TextArea" class="tsd-kind-icon">Text<wbr>Area</a>
1063
+ </li>
1064
+ <li class=" tsd-kind-variable">
1065
+ <a href="../modules.html#Toggle" class="tsd-kind-icon">Toggle</a>
1066
+ </li>
1067
+ <li class=" tsd-kind-function">
1068
+ <a href="../modules.html#useToaster" class="tsd-kind-icon">use<wbr>Toaster</a>
1069
+ </li>
1070
+ </ul>
1071
+ </nav>
1072
+ </div>
1073
+ </div>
1074
+ </div>
1075
+ <footer class="with-border-bottom">
1076
+ <div class="container">
1077
+ <h2>Legend</h2>
1078
+ <div class="tsd-legend-group">
1079
+ <ul class="tsd-legend">
1080
+ <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
1081
+ <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
1082
+ </ul>
1083
+ <ul class="tsd-legend">
1084
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
1085
+ </ul>
1086
+ </div>
1087
+ </div>
1088
+ </footer>
1089
+ <div class="container tsd-generator">
1090
+ <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
1091
+ </div>
1092
+ <div class="overlay"></div>
1093
+ <script src="../assets/js/main.js"></script>
1094
+ <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.json"><' + '/script>');</script>
1095
+ </body>
1096
+ </html>