react-miui 0.25.0 → 0.25.1

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 (80) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/components/form/Checkbox.d.ts +1 -1
  3. package/dist/components/form/Checkbox.d.ts.map +1 -1
  4. package/docs/classes/Drawer.html +14 -14
  5. package/docs/classes/Pop.html +14 -14
  6. package/docs/classes/ToasterProvider.html +10 -10
  7. package/docs/enums/ICON.html +14 -14
  8. package/docs/functions/Action.html +4 -4
  9. package/docs/functions/Button.html +4 -4
  10. package/docs/functions/Card.html +4 -4
  11. package/docs/functions/Checkbox.html +4 -4
  12. package/docs/functions/Choice.html +5 -5
  13. package/docs/functions/CoveringLoader.html +4 -4
  14. package/docs/functions/DirectionPad.html +4 -4
  15. package/docs/functions/EqualActions.html +4 -4
  16. package/docs/functions/FullLoader.html +4 -4
  17. package/docs/functions/HandleEsc.html +4 -4
  18. package/docs/functions/Header.html +4 -4
  19. package/docs/functions/HeaderIconAction.html +4 -4
  20. package/docs/functions/Icon-1.html +4 -4
  21. package/docs/functions/If.html +4 -4
  22. package/docs/functions/Input.html +5 -5
  23. package/docs/functions/KeyValue.html +4 -4
  24. package/docs/functions/Label.html +4 -4
  25. package/docs/functions/List-1.html +4 -4
  26. package/docs/functions/Loader.html +4 -4
  27. package/docs/functions/Loading.html +4 -4
  28. package/docs/functions/Message.html +4 -4
  29. package/docs/functions/Modal-1.html +4 -4
  30. package/docs/functions/ModalButtons.html +4 -4
  31. package/docs/functions/PopLoader.html +4 -4
  32. package/docs/functions/PopOption.html +4 -4
  33. package/docs/functions/Progress.html +4 -4
  34. package/docs/functions/SearchContainer.html +4 -4
  35. package/docs/functions/Section.html +4 -4
  36. package/docs/functions/Select.html +4 -4
  37. package/docs/functions/Selector.html +5 -5
  38. package/docs/functions/Spacer.html +4 -4
  39. package/docs/functions/Stats.html +4 -4
  40. package/docs/functions/StickyHeader.html +4 -4
  41. package/docs/functions/Table.html +4 -4
  42. package/docs/functions/TextArea.html +4 -4
  43. package/docs/functions/Toggle.html +4 -4
  44. package/docs/functions/borderPxToRem.html +5 -5
  45. package/docs/functions/createTheme.html +4 -4
  46. package/docs/functions/css.html +4 -4
  47. package/docs/functions/dimensionsPxToRem.html +5 -5
  48. package/docs/functions/fontPxToRem.html +5 -5
  49. package/docs/functions/getCssText.html +4 -4
  50. package/docs/functions/globalCss.html +4 -4
  51. package/docs/functions/keyframes.html +4 -4
  52. package/docs/functions/pxToRem.html +5 -5
  53. package/docs/functions/styled.html +4 -4
  54. package/docs/functions/useToaster.html +5 -5
  55. package/docs/index.html +4 -4
  56. package/docs/interfaces/ActionProps.html +13 -13
  57. package/docs/interfaces/ChoiceProps.html +11 -11
  58. package/docs/interfaces/IconProps.html +7 -7
  59. package/docs/interfaces/InputCustomProps.html +10 -10
  60. package/docs/interfaces/StickyHeaderProps.html +9 -9
  61. package/docs/modules/List.html +7 -7
  62. package/docs/modules/Modal.html +6 -6
  63. package/docs/modules.html +4 -4
  64. package/docs/pages/tutorials/Test.html +4 -4
  65. package/docs/types/InputProps.html +5 -5
  66. package/docs/types/OverwriteProps.html +5 -5
  67. package/docs/types/ThemeCSS.html +5 -5
  68. package/docs/variables/BackgroundClassName.html +5 -5
  69. package/docs/variables/List.Header.html +5 -5
  70. package/docs/variables/List.Item.html +5 -5
  71. package/docs/variables/Modal.RemovePadding.html +5 -5
  72. package/docs/variables/ValueClassName.html +5 -5
  73. package/docs/variables/config.html +5 -5
  74. package/docs/variables/cssReset.html +5 -5
  75. package/docs/variables/miuiScrollbars.html +5 -5
  76. package/docs/variables/theme.html +5 -5
  77. package/esm/components/form/Checkbox.d.ts +1 -1
  78. package/esm/components/form/Checkbox.d.ts.map +1 -1
  79. package/package.json +1 -1
  80. package/src/components/form/Checkbox.tsx +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
3
3
  The format is based on [EZEZ Changelog](https://ezez.dev/guidelines/changelog/)
4
4
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## [0.25.1] - 2024-05-04
7
+ ### Fixed
8
+ - `Checkbox` `css` and `className` props being required
9
+
6
10
  ## [0.25.0] - 2024-05-03
7
11
  ### Breaking
8
12
  - `Table` variants are now separated boolean props
@@ -2,7 +2,7 @@ import React from "react";
2
2
  import { LabelWrapper } from "./Checkbox.styled";
3
3
  type WrapperProps = React.ComponentProps<typeof LabelWrapper>;
4
4
  type InputProps = React.ComponentProps<"input">;
5
- interface Props extends Pick<WrapperProps, "css" | "className">, Omit<InputProps, "className"> {
5
+ interface Props extends Partial<Pick<WrapperProps, "css" | "className">>, Omit<InputProps, "className"> {
6
6
  color?: string;
7
7
  children: React.ReactNode;
8
8
  }
@@ -1 +1 @@
1
- {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/form/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;AAM3C,OAAO,EAAoB,YAAY,EAAa,MAAM,mBAAmB,CAAC;AAE9E,KAAK,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,YAAY,CAAC,CAAC;AAC9D,KAAK,UAAU,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;AAEhD,UAAU,KAAM,SAAQ,IAAI,CAAC,YAAY,EAAE,KAAK,GAAG,WAAW,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,WAAW,CAAC;IAI1F,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAKD,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAiC7B,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,CAAC"}
1
+ {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/form/Checkbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsB,MAAM,OAAO,CAAC;AAM3C,OAAO,EAAoB,YAAY,EAAa,MAAM,mBAAmB,CAAC;AAE9E,KAAK,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,YAAY,CAAC,CAAC;AAC9D,KAAK,UAAU,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;AAEhD,UAAU,KAAM,SAAQ,OAAO,CAAC,IAAI,CAAC,YAAY,EAAE,KAAK,GAAG,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,WAAW,CAAC;IAInG,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC7B;AAKD,QAAA,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CAiC7B,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,CAAC"}
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Drawer | react-miui - v0.25.0</title><meta name="description" content="Documentation for react-miui - v0.25.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Drawer | react-miui - v0.25.1</title><meta name="description" content="Documentation for react-miui - v0.25.1"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.25.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.25.1</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">react-miui - v0.25.0</a></li>
15
+ <li><a href="../modules.html">react-miui - v0.25.1</a></li>
16
16
  <li><a href="Drawer.html">Drawer</a></li></ul>
17
17
  <h1>Class Drawer</h1></div>
18
18
  <section class="tsd-panel tsd-hierarchy">
@@ -22,7 +22,7 @@
22
22
  <ul class="tsd-hierarchy">
23
23
  <li><span class="target">Drawer</span></li></ul></li></ul></section><aside class="tsd-sources">
24
24
  <ul>
25
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L24">src/components/ui/drawer/Drawer.tsx:24</a></li></ul></aside>
25
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L24">src/components/ui/drawer/Drawer.tsx:24</a></li></ul></aside>
26
26
  <section class="tsd-panel-group tsd-index-group">
27
27
  <section class="tsd-panel tsd-index-panel">
28
28
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -77,7 +77,7 @@
77
77
  <h4 class="tsd-returns-title">Returns <a href="Drawer.html" class="tsd-signature-type" data-tsd-kind="Class">Drawer</a></h4><aside class="tsd-sources">
78
78
  <p>Overrides Component&lt;Props, State&gt;.constructor</p>
79
79
  <ul>
80
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L25">src/components/ui/drawer/Drawer.tsx:25</a></li></ul></aside></li></ul></section></section>
80
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L25">src/components/ui/drawer/Drawer.tsx:25</a></li></ul></aside></li></ul></section></section>
81
81
  <section class="tsd-panel-group tsd-member-group">
82
82
  <h2>Properties</h2>
83
83
  <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="context" class="tsd-anchor"></a>
@@ -124,7 +124,7 @@ Should be used with type annotation or static contextType.</p>
124
124
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>timeout</span><a href="#timeout" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
125
125
  <div class="tsd-signature">timeout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Timeout</span><span class="tsd-signature-symbol"> = null</span></div><aside class="tsd-sources">
126
126
  <ul>
127
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L55">src/components/ui/drawer/Drawer.tsx:55</a></li></ul></aside></section>
127
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L55">src/components/ui/drawer/Drawer.tsx:55</a></li></ul></aside></section>
128
128
  <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="contextType" class="tsd-anchor"></a>
129
129
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <code class="tsd-tag ts-flagOptional">Optional</code> <span>context<wbr/>Type</span><a href="#contextType" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
130
130
  <div class="tsd-signature">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>
@@ -251,7 +251,7 @@ the entire component tree to unmount.</p>
251
251
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
252
252
  <p>Overrides Component.componentDidMount</p>
253
253
  <ul>
254
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L33">src/components/ui/drawer/Drawer.tsx:33</a></li></ul></aside></li></ul></section>
254
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L33">src/components/ui/drawer/Drawer.tsx:33</a></li></ul></aside></li></ul></section>
255
255
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="componentDidUpdate" class="tsd-anchor"></a>
256
256
  <h3 class="tsd-anchor-link"><span>component<wbr/>Did<wbr/>Update</span><a href="#componentDidUpdate" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
257
257
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
@@ -265,7 +265,7 @@ the entire component tree to unmount.</p>
265
265
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
266
266
  <p>Overrides Component.componentDidUpdate</p>
267
267
  <ul>
268
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L40">src/components/ui/drawer/Drawer.tsx:40</a></li></ul></aside></li></ul></section>
268
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L40">src/components/ui/drawer/Drawer.tsx:40</a></li></ul></aside></li></ul></section>
269
269
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="componentWillMount" class="tsd-anchor"></a>
270
270
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>component<wbr/>Will<wbr/>Mount</span><a href="#componentWillMount" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
271
271
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
@@ -325,7 +325,7 @@ prevents this from being invoked.</p>
325
325
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
326
326
  <p>Overrides Component.componentWillUnmount</p>
327
327
  <ul>
328
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L50">src/components/ui/drawer/Drawer.tsx:50</a></li></ul></aside></li></ul></section>
328
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L50">src/components/ui/drawer/Drawer.tsx:50</a></li></ul></aside></li></ul></section>
329
329
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="componentWillUpdate" class="tsd-anchor"></a>
330
330
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>component<wbr/>Will<wbr/>Update</span><a href="#componentWillUpdate" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
331
331
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
@@ -405,7 +405,7 @@ lifecycle events from running.</p>
405
405
  <li class="tsd-description">
406
406
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
407
407
  <ul>
408
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L66">src/components/ui/drawer/Drawer.tsx:66</a></li></ul></aside></li></ul></section>
408
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L66">src/components/ui/drawer/Drawer.tsx:66</a></li></ul></aside></li></ul></section>
409
409
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="onClose" class="tsd-anchor"></a>
410
410
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>on<wbr/>Close</span><a href="#onClose" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
411
411
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
@@ -413,7 +413,7 @@ lifecycle events from running.</p>
413
413
  <li class="tsd-description">
414
414
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
415
415
  <ul>
416
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L62">src/components/ui/drawer/Drawer.tsx:62</a></li></ul></aside></li></ul></section>
416
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L62">src/components/ui/drawer/Drawer.tsx:62</a></li></ul></aside></li></ul></section>
417
417
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="onOpen" class="tsd-anchor"></a>
418
418
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <span>on<wbr/>Open</span><a href="#onOpen" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
419
419
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
@@ -421,7 +421,7 @@ lifecycle events from running.</p>
421
421
  <li class="tsd-description">
422
422
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
423
423
  <ul>
424
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L57">src/components/ui/drawer/Drawer.tsx:57</a></li></ul></aside></li></ul></section>
424
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L57">src/components/ui/drawer/Drawer.tsx:57</a></li></ul></aside></li></ul></section>
425
425
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="render" class="tsd-anchor"></a>
426
426
  <h3 class="tsd-anchor-link"><span>render</span><a href="#render" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
427
427
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
@@ -430,7 +430,7 @@ lifecycle events from running.</p>
430
430
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4><aside class="tsd-sources">
431
431
  <p>Overrides Component.render</p>
432
432
  <ul>
433
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/drawer/Drawer.tsx#L70">src/components/ui/drawer/Drawer.tsx:70</a></li></ul></aside></li></ul></section>
433
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/drawer/Drawer.tsx#L70">src/components/ui/drawer/Drawer.tsx:70</a></li></ul></aside></li></ul></section>
434
434
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="setState" class="tsd-anchor"></a>
435
435
  <h3 class="tsd-anchor-link"><span>set<wbr/>State</span><a href="#setState" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
436
436
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
@@ -502,7 +502,7 @@ and <code>componentDidUpdate</code> will not be called.</p>
502
502
  <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
503
503
  <div class="tsd-accordion-details">
504
504
  <ul>
505
- <li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.25.0</a>
505
+ <li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.25.1</a>
506
506
  <ul>
507
507
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/tutorials/Test.html">Test</a></li>
508
508
  <li class="tsd-kind-namespace"><a href="../modules/List.html">List</a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Pop | react-miui - v0.25.0</title><meta name="description" content="Documentation for react-miui - v0.25.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Pop | react-miui - v0.25.1</title><meta name="description" content="Documentation for react-miui - v0.25.1"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.25.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.25.1</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">react-miui - v0.25.0</a></li>
15
+ <li><a href="../modules.html">react-miui - v0.25.1</a></li>
16
16
  <li><a href="Pop.html">Pop</a></li></ul>
17
17
  <h1>Class Pop</h1></div>
18
18
  <section class="tsd-panel tsd-comment">
@@ -26,7 +26,7 @@
26
26
  <ul class="tsd-hierarchy">
27
27
  <li><span class="target">Pop</span></li></ul></li></ul></section><aside class="tsd-sources">
28
28
  <ul>
29
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L58">src/components/ui/pop/Pop.tsx:58</a></li></ul></aside>
29
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L58">src/components/ui/pop/Pop.tsx:58</a></li></ul></aside>
30
30
  <section class="tsd-panel-group tsd-index-group">
31
31
  <section class="tsd-panel tsd-index-panel">
32
32
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -83,7 +83,7 @@
83
83
  <h4 class="tsd-returns-title">Returns <a href="Pop.html" class="tsd-signature-type" data-tsd-kind="Class">Pop</a></h4><aside class="tsd-sources">
84
84
  <p>Overrides Component&lt;Props, State&gt;.constructor</p>
85
85
  <ul>
86
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L59">src/components/ui/pop/Pop.tsx:59</a></li></ul></aside></li></ul></section></section>
86
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L59">src/components/ui/pop/Pop.tsx:59</a></li></ul></aside></li></ul></section></section>
87
87
  <section class="tsd-panel-group tsd-member-group">
88
88
  <h2>Properties</h2>
89
89
  <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="context" class="tsd-anchor"></a>
@@ -124,7 +124,7 @@ Should be used with type annotation or static contextType.</p>
124
124
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>root<wbr/>Ref</span><a href="#rootRef" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
125
125
  <div class="tsd-signature">root<wbr/>Ref<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">RefObject</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">HTMLDivElement</span><span class="tsd-signature-symbol">&gt;</span></div><aside class="tsd-sources">
126
126
  <ul>
127
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L79">src/components/ui/pop/Pop.tsx:79</a></li></ul></aside></section>
127
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L79">src/components/ui/pop/Pop.tsx:79</a></li></ul></aside></section>
128
128
  <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="state" class="tsd-anchor"></a>
129
129
  <h3 class="tsd-anchor-link"><span>state</span><a href="#state" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
130
130
  <div class="tsd-signature">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><aside class="tsd-sources">
@@ -135,7 +135,7 @@ Should be used with type annotation or static contextType.</p>
135
135
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <span>Option</span><a href="#Option" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
136
136
  <div class="tsd-signature">Option<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">FC</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"> = PopOption</span></div><aside class="tsd-sources">
137
137
  <ul>
138
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L77">src/components/ui/pop/Pop.tsx:77</a></li></ul></aside></section>
138
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L77">src/components/ui/pop/Pop.tsx:77</a></li></ul></aside></section>
139
139
  <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="contextType" class="tsd-anchor"></a>
140
140
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <code class="tsd-tag ts-flagOptional">Optional</code> <span>context<wbr/>Type</span><a href="#contextType" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
141
141
  <div class="tsd-signature">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>
@@ -278,7 +278,7 @@ the entire component tree to unmount.</p>
278
278
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
279
279
  <p>Overrides Component.componentDidUpdate</p>
280
280
  <ul>
281
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L71">src/components/ui/pop/Pop.tsx:71</a></li></ul></aside></li></ul></section>
281
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L71">src/components/ui/pop/Pop.tsx:71</a></li></ul></aside></li></ul></section>
282
282
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="componentWillMount" class="tsd-anchor"></a>
283
283
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>component<wbr/>Will<wbr/>Mount</span><a href="#componentWillMount" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
284
284
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
@@ -399,7 +399,7 @@ prevents this from being invoked.</p>
399
399
  <li class="tsd-description">
400
400
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></h4><aside class="tsd-sources">
401
401
  <ul>
402
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L81">src/components/ui/pop/Pop.tsx:81</a></li></ul></aside></li></ul></section>
402
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L81">src/components/ui/pop/Pop.tsx:81</a></li></ul></aside></li></ul></section>
403
403
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="getSnapshotBeforeUpdate" class="tsd-anchor"></a>
404
404
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>get<wbr/>Snapshot<wbr/>Before<wbr/>Update</span><a href="#getSnapshotBeforeUpdate" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
405
405
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
@@ -429,7 +429,7 @@ lifecycle events from running.</p>
429
429
  <li class="tsd-description">
430
430
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
431
431
  <ul>
432
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L127">src/components/ui/pop/Pop.tsx:127</a></li></ul></aside></li></ul></section>
432
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L127">src/components/ui/pop/Pop.tsx:127</a></li></ul></aside></li></ul></section>
433
433
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="handleOverlayClick" class="tsd-anchor"></a>
434
434
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>handle<wbr/>Overlay<wbr/>Click</span><a href="#handleOverlayClick" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
435
435
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
@@ -442,7 +442,7 @@ lifecycle events from running.</p>
442
442
  <h5>e: <span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">&gt;</span></h5></li></ul></div>
443
443
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
444
444
  <ul>
445
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L121">src/components/ui/pop/Pop.tsx:121</a></li></ul></aside></li></ul></section>
445
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L121">src/components/ui/pop/Pop.tsx:121</a></li></ul></aside></li></ul></section>
446
446
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="onOpen" class="tsd-anchor"></a>
447
447
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>on<wbr/>Open</span><a href="#onOpen" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
448
448
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
@@ -450,7 +450,7 @@ lifecycle events from running.</p>
450
450
  <li class="tsd-description">
451
451
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
452
452
  <ul>
453
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L98">src/components/ui/pop/Pop.tsx:98</a></li></ul></aside></li></ul></section>
453
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L98">src/components/ui/pop/Pop.tsx:98</a></li></ul></aside></li></ul></section>
454
454
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="render" class="tsd-anchor"></a>
455
455
  <h3 class="tsd-anchor-link"><span>render</span><a href="#render" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
456
456
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
@@ -459,7 +459,7 @@ lifecycle events from running.</p>
459
459
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></h4><aside class="tsd-sources">
460
460
  <p>Overrides Component.render</p>
461
461
  <ul>
462
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/pop/Pop.tsx#L131">src/components/ui/pop/Pop.tsx:131</a></li></ul></aside></li></ul></section>
462
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/pop/Pop.tsx#L131">src/components/ui/pop/Pop.tsx:131</a></li></ul></aside></li></ul></section>
463
463
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="setState" class="tsd-anchor"></a>
464
464
  <h3 class="tsd-anchor-link"><span>set<wbr/>State</span><a href="#setState" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
465
465
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
@@ -531,7 +531,7 @@ and <code>componentDidUpdate</code> will not be called.</p>
531
531
  <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
532
532
  <div class="tsd-accordion-details">
533
533
  <ul>
534
- <li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.25.0</a>
534
+ <li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.25.1</a>
535
535
  <ul>
536
536
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/tutorials/Test.html">Test</a></li>
537
537
  <li class="tsd-kind-namespace"><a href="../modules/List.html">List</a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ToasterProvider | react-miui - v0.25.0</title><meta name="description" content="Documentation for react-miui - v0.25.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ToasterProvider | react-miui - v0.25.1</title><meta name="description" content="Documentation for react-miui - v0.25.1"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,13 +6,13 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.25.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.25.1</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">react-miui - v0.25.0</a></li>
15
+ <li><a href="../modules.html">react-miui - v0.25.1</a></li>
16
16
  <li><a href="ToasterProvider.html">ToasterProvider</a></li></ul>
17
17
  <h1>Class ToasterProvider</h1></div>
18
18
  <section class="tsd-panel tsd-hierarchy">
@@ -22,7 +22,7 @@
22
22
  <ul class="tsd-hierarchy">
23
23
  <li><span class="target">ToasterProvider</span></li></ul></li></ul></section><aside class="tsd-sources">
24
24
  <ul>
25
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/toaster/Toaster.tsx#L26">src/components/ui/toaster/Toaster.tsx:26</a></li></ul></aside>
25
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/toaster/Toaster.tsx#L26">src/components/ui/toaster/Toaster.tsx:26</a></li></ul></aside>
26
26
  <section class="tsd-panel-group tsd-index-group">
27
27
  <section class="tsd-panel tsd-index-panel">
28
28
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -78,7 +78,7 @@
78
78
  <h4 class="tsd-returns-title">Returns <a href="ToasterProvider.html" class="tsd-signature-type" data-tsd-kind="Class">ToasterProvider</a></h4><aside class="tsd-sources">
79
79
  <p>Overrides React.Component&lt;Props, State&gt;.constructor</p>
80
80
  <ul>
81
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/toaster/Toaster.tsx#L27">src/components/ui/toaster/Toaster.tsx:27</a></li></ul></aside></li></ul></section></section>
81
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/toaster/Toaster.tsx#L27">src/components/ui/toaster/Toaster.tsx:27</a></li></ul></aside></li></ul></section></section>
82
82
  <section class="tsd-panel-group tsd-member-group">
83
83
  <h2>Properties</h2>
84
84
  <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="context" class="tsd-anchor"></a>
@@ -234,7 +234,7 @@ prevents this from being invoked.</p>
234
234
  <h5>timeout: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = DEFAULT_TIMEOUT</span></h5></li></ul></div>
235
235
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
236
236
  <ul>
237
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/toaster/Toaster.tsx#L35">src/components/ui/toaster/Toaster.tsx:35</a></li></ul></aside></li></ul></section>
237
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/toaster/Toaster.tsx#L35">src/components/ui/toaster/Toaster.tsx:35</a></li></ul></aside></li></ul></section>
238
238
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="_handleRemove" class="tsd-anchor"></a>
239
239
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>_handle<wbr/>Remove</span><a href="#_handleRemove" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
240
240
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
@@ -247,7 +247,7 @@ prevents this from being invoked.</p>
247
247
  <h5>id: <span class="tsd-signature-type">string</span></h5></li></ul></div>
248
248
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
249
249
  <ul>
250
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/toaster/Toaster.tsx#L66">src/components/ui/toaster/Toaster.tsx:66</a></li></ul></aside></li></ul></section>
250
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/toaster/Toaster.tsx#L66">src/components/ui/toaster/Toaster.tsx:66</a></li></ul></aside></li></ul></section>
251
251
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="_removeAllToasts" class="tsd-anchor"></a>
252
252
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagPrivate">Private</code> <code class="tsd-tag ts-flagReadonly">Readonly</code> <span>_remove<wbr/>All<wbr/>Toasts</span><a href="#_removeAllToasts" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
253
253
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
@@ -255,7 +255,7 @@ prevents this from being invoked.</p>
255
255
  <li class="tsd-description">
256
256
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
257
257
  <ul>
258
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/toaster/Toaster.tsx#L73">src/components/ui/toaster/Toaster.tsx:73</a></li></ul></aside></li></ul></section>
258
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/toaster/Toaster.tsx#L73">src/components/ui/toaster/Toaster.tsx:73</a></li></ul></aside></li></ul></section>
259
259
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="componentDidCatch" class="tsd-anchor"></a>
260
260
  <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>component<wbr/>Did<wbr/>Catch</span><a href="#componentDidCatch" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
261
261
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
@@ -450,7 +450,7 @@ lifecycle events from running.</p>
450
450
  <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4><aside class="tsd-sources">
451
451
  <p>Overrides React.Component.render</p>
452
452
  <ul>
453
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/ui/toaster/Toaster.tsx#L88">src/components/ui/toaster/Toaster.tsx:88</a></li></ul></aside></li></ul></section>
453
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/ui/toaster/Toaster.tsx#L88">src/components/ui/toaster/Toaster.tsx:88</a></li></ul></aside></li></ul></section>
454
454
  <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="setState" class="tsd-anchor"></a>
455
455
  <h3 class="tsd-anchor-link"><span>set<wbr/>State</span><a href="#setState" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
456
456
  <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
@@ -522,7 +522,7 @@ and <code>componentDidUpdate</code> will not be called.</p>
522
522
  <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
523
523
  <div class="tsd-accordion-details">
524
524
  <ul>
525
- <li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.25.0</a>
525
+ <li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.25.1</a>
526
526
  <ul>
527
527
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/tutorials/Test.html">Test</a></li>
528
528
  <li class="tsd-kind-namespace"><a href="../modules/List.html">List</a></li>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ICON | react-miui - v0.25.0</title><meta name="description" content="Documentation for react-miui - v0.25.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
1
+ <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ICON | react-miui - v0.25.1</title><meta name="description" content="Documentation for react-miui - v0.25.1"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
2
2
  <div class="tsd-toolbar-contents container">
3
3
  <div class="table-cell" id="tsd-search" data-base="..">
4
4
  <div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
@@ -6,17 +6,17 @@
6
6
  <div id="tsd-toolbar-links"></div></div>
7
7
  <ul class="results">
8
8
  <li class="state loading">Preparing search index...</li>
9
- <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.25.0</a></div>
9
+ <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.25.1</a></div>
10
10
  <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
11
11
  <div class="container container-main">
12
12
  <div class="col-8 col-content">
13
13
  <div class="tsd-page-title">
14
14
  <ul class="tsd-breadcrumb">
15
- <li><a href="../modules.html">react-miui - v0.25.0</a></li>
15
+ <li><a href="../modules.html">react-miui - v0.25.1</a></li>
16
16
  <li><a href="ICON.html">ICON</a></li></ul>
17
17
  <h1>Enumeration ICON</h1></div><aside class="tsd-sources">
18
18
  <ul>
19
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L15">src/components/icons/Icon.tsx:15</a></li></ul></aside>
19
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L15">src/components/icons/Icon.tsx:15</a></li></ul></aside>
20
20
  <section class="tsd-panel-group tsd-index-group">
21
21
  <section class="tsd-panel tsd-index-panel">
22
22
  <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
@@ -40,47 +40,47 @@
40
40
  <h3 class="tsd-anchor-link"><span>back</span><a href="#back" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></h3>
41
41
  <div class="tsd-signature">back<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;back&quot;</span></div><aside class="tsd-sources">
42
42
  <ul>
43
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L17">src/components/icons/Icon.tsx:17</a></li></ul></aside></section>
43
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L17">src/components/icons/Icon.tsx:17</a></li></ul></aside></section>
44
44
  <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="battery" class="tsd-anchor"></a>
45
45
  <h3 class="tsd-anchor-link"><span>battery</span><a href="#battery" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
46
46
  <div class="tsd-signature">battery<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;battery&quot;</span></div><aside class="tsd-sources">
47
47
  <ul>
48
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L20">src/components/icons/Icon.tsx:20</a></li></ul></aside></section>
48
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L20">src/components/icons/Icon.tsx:20</a></li></ul></aside></section>
49
49
  <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="checkmark" class="tsd-anchor"></a>
50
50
  <h3 class="tsd-anchor-link"><span>checkmark</span><a href="#checkmark" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
51
51
  <div class="tsd-signature">checkmark<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;checkmark&quot;</span></div><aside class="tsd-sources">
52
52
  <ul>
53
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L16">src/components/icons/Icon.tsx:16</a></li></ul></aside></section>
53
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L16">src/components/icons/Icon.tsx:16</a></li></ul></aside></section>
54
54
  <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="config" class="tsd-anchor"></a>
55
55
  <h3 class="tsd-anchor-link"><span>config</span><a href="#config" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
56
56
  <div class="tsd-signature">config<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;config&quot;</span></div><aside class="tsd-sources">
57
57
  <ul>
58
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L23">src/components/icons/Icon.tsx:23</a></li></ul></aside></section>
58
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L23">src/components/icons/Icon.tsx:23</a></li></ul></aside></section>
59
59
  <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="dots" class="tsd-anchor"></a>
60
60
  <h3 class="tsd-anchor-link"><span>dots</span><a href="#dots" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
61
61
  <div class="tsd-signature">dots<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;dots&quot;</span></div><aside class="tsd-sources">
62
62
  <ul>
63
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L24">src/components/icons/Icon.tsx:24</a></li></ul></aside></section>
63
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L24">src/components/icons/Icon.tsx:24</a></li></ul></aside></section>
64
64
  <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="forward" class="tsd-anchor"></a>
65
65
  <h3 class="tsd-anchor-link"><span>forward</span><a href="#forward" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
66
66
  <div class="tsd-signature">forward<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;forward&quot;</span></div><aside class="tsd-sources">
67
67
  <ul>
68
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L18">src/components/icons/Icon.tsx:18</a></li></ul></aside></section>
68
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L18">src/components/icons/Icon.tsx:18</a></li></ul></aside></section>
69
69
  <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="heart" class="tsd-anchor"></a>
70
70
  <h3 class="tsd-anchor-link"><span>heart</span><a href="#heart" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
71
71
  <div class="tsd-signature">heart<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;heart&quot;</span></div><aside class="tsd-sources">
72
72
  <ul>
73
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L21">src/components/icons/Icon.tsx:21</a></li></ul></aside></section>
73
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L21">src/components/icons/Icon.tsx:21</a></li></ul></aside></section>
74
74
  <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="search" class="tsd-anchor"></a>
75
75
  <h3 class="tsd-anchor-link"><span>search</span><a href="#search" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
76
76
  <div class="tsd-signature">search<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;search&quot;</span></div><aside class="tsd-sources">
77
77
  <ul>
78
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L19">src/components/icons/Icon.tsx:19</a></li></ul></aside></section>
78
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L19">src/components/icons/Icon.tsx:19</a></li></ul></aside></section>
79
79
  <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum"><a id="trash" class="tsd-anchor"></a>
80
80
  <h3 class="tsd-anchor-link"><span>trash</span><a href="#trash" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
81
81
  <div class="tsd-signature">trash<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">&quot;trash&quot;</span></div><aside class="tsd-sources">
82
82
  <ul>
83
- <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/ed9baea/src/components/icons/Icon.tsx#L22">src/components/icons/Icon.tsx:22</a></li></ul></aside></section></section></div>
83
+ <li>Defined in <a href="https://github.com/dzek69/react-miui/blob/a1c80dc/src/components/icons/Icon.tsx#L22">src/components/icons/Icon.tsx:22</a></li></ul></aside></section></section></div>
84
84
  <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
85
85
  <div class="tsd-navigation settings">
86
86
  <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
@@ -100,7 +100,7 @@
100
100
  <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
101
101
  <div class="tsd-accordion-details">
102
102
  <ul>
103
- <li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.25.0</a>
103
+ <li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.25.1</a>
104
104
  <ul>
105
105
  <li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/tutorials/Test.html">Test</a></li>
106
106
  <li class="tsd-kind-namespace"><a href="../modules/List.html">List</a></li>