react-miui 0.27.6 → 0.27.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/components/form/input/Input.d.ts +1 -1
- package/dist/components/form/input/Input.d.ts.map +1 -1
- package/dist/components/form/input/Input.js +3 -3
- package/dist/components/form/input/Input.js.map +1 -1
- package/docs/classes/Drawer.html +14 -14
- package/docs/classes/Pop.html +14 -14
- package/docs/classes/ToasterProvider.html +10 -10
- package/docs/enums/ICON.html +14 -14
- package/docs/functions/Action.html +4 -4
- package/docs/functions/Button.html +4 -4
- package/docs/functions/Card.html +4 -4
- package/docs/functions/Checkbox.html +4 -4
- package/docs/functions/Choice.html +5 -5
- package/docs/functions/CoveringLoader.html +4 -4
- package/docs/functions/DirectionPad.html +4 -4
- package/docs/functions/EqualActions.html +4 -4
- package/docs/functions/FullLoader.html +4 -4
- package/docs/functions/HandleEsc.html +4 -4
- package/docs/functions/Header.html +4 -4
- package/docs/functions/HeaderIconAction.html +4 -4
- package/docs/functions/Icon-1.html +4 -4
- package/docs/functions/If.html +4 -4
- package/docs/functions/Input.html +5 -5
- package/docs/functions/KeyValue.html +4 -4
- package/docs/functions/Label.html +4 -4
- package/docs/functions/Line.html +4 -4
- package/docs/functions/List-1.html +4 -4
- package/docs/functions/Loader.html +4 -4
- package/docs/functions/Loading.html +4 -4
- package/docs/functions/Message.html +4 -4
- package/docs/functions/Modal-1.html +4 -4
- package/docs/functions/ModalButtons.html +4 -4
- package/docs/functions/PopLoader.html +4 -4
- package/docs/functions/PopOption.html +4 -4
- package/docs/functions/Progress.html +4 -4
- package/docs/functions/SearchContainer.html +4 -4
- package/docs/functions/Section.html +4 -4
- package/docs/functions/Select.html +4 -4
- package/docs/functions/Selector.html +5 -5
- package/docs/functions/Spacer.html +4 -4
- package/docs/functions/Stats.html +4 -4
- package/docs/functions/StickyHeader.html +4 -4
- package/docs/functions/Table.html +4 -4
- package/docs/functions/TextArea.html +4 -4
- package/docs/functions/Toggle.html +4 -4
- package/docs/functions/ToolButton.html +4 -4
- package/docs/functions/borderPxToRem.html +5 -5
- package/docs/functions/createTheme.html +4 -4
- package/docs/functions/css.html +4 -4
- package/docs/functions/dimensionsPxToRem.html +5 -5
- package/docs/functions/fontPxToRem.html +5 -5
- package/docs/functions/getCssText.html +4 -4
- package/docs/functions/globalCss.html +4 -4
- package/docs/functions/keyframes.html +4 -4
- package/docs/functions/pxToRem.html +5 -5
- package/docs/functions/styled.html +4 -4
- package/docs/functions/useToaster.html +5 -5
- package/docs/index.html +4 -4
- package/docs/interfaces/ChoiceProps.html +11 -11
- package/docs/interfaces/IconProps.html +7 -7
- package/docs/interfaces/InputCustomProps.html +11 -11
- package/docs/interfaces/StickyHeaderProps.html +9 -9
- package/docs/modules/List.html +7 -7
- package/docs/modules/Modal.html +6 -6
- package/docs/modules.html +4 -4
- package/docs/pages/tutorials/Test.html +4 -4
- package/docs/types/ActionProps.html +5 -5
- package/docs/types/InputProps.html +5 -5
- package/docs/types/OverwriteProps.html +5 -5
- package/docs/types/ThemeCSS.html +5 -5
- package/docs/variables/BackgroundClassName.html +5 -5
- package/docs/variables/List.Header.html +5 -5
- package/docs/variables/List.Item.html +5 -5
- package/docs/variables/Modal.RemovePadding.html +5 -5
- package/docs/variables/ValueClassName.html +5 -5
- package/docs/variables/config.html +5 -5
- package/docs/variables/cssReset.html +5 -5
- package/docs/variables/miuiScrollbars.html +5 -5
- package/docs/variables/theme.html +5 -5
- package/esm/components/form/input/Input.d.ts +1 -1
- package/esm/components/form/input/Input.d.ts.map +1 -1
- package/esm/components/form/input/Input.js +3 -3
- package/esm/components/form/input/Input.js.map +1 -1
- package/package.json +1 -1
- package/src/components/form/input/Input.tsx +3 -2
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.27.7] - 2025-01-05
|
|
7
|
+
### Dev
|
|
8
|
+
- Fixed DOM attribute warning on `Input`
|
|
9
|
+
|
|
6
10
|
## [0.27.6] - 2025-01-05
|
|
7
11
|
### Breaking
|
|
8
12
|
- `Action` in a button mode has a `type=button` as default
|
|
@@ -9,7 +9,7 @@ interface CustomProps<T extends string> {
|
|
|
9
9
|
onSuggestionMatch?: (value: Exclude<Value<T>, ObjectValue>, __chromiumPickedFromList: boolean) => void;
|
|
10
10
|
}
|
|
11
11
|
type Props<T extends string> = Omit<React.InputHTMLAttributes<HTMLInputElement>, "prefix"> & CustomProps<T>;
|
|
12
|
-
declare const Input: <T extends string>({ className, children, prefix, suffix, onFocus, onBlur, onKeyDown, onChange, suggestions, onSuggestionMatch, ...props }: Props<T>) => ReturnType<React.FC<Props<T>>>;
|
|
12
|
+
declare const Input: <T extends string>({ className, children, prefix, suffix, onFocus, onBlur, onKeyDown, onChange, suggestions, onSuggestionMatch, error, ...props }: Props<T>) => ReturnType<React.FC<Props<T>>>;
|
|
13
13
|
export { Input, };
|
|
14
14
|
export type { Props as InputProps, CustomProps as InputCustomProps, };
|
|
15
15
|
//# sourceMappingURL=Input.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../../src/components/form/input/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAE5D,OAAO,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAM9D,UAAU,WAAW,CAAC,CAAC,SAAS,MAAM;IAClC,QAAQ,CAAC,EAAE,KAAK,CAAC;IACjB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,WAAW,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;IACzB,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,EAAE,wBAAwB,EAAE,OAAO,KAAK,IAAI,CAAC;CAC1G;AAED,KAAK,KAAK,CAAC,CAAC,SAAS,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,QAAQ,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;AAK5G,QAAA,MAAM,KAAK,GAAI,CAAC,SAAS,MAAM,
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../../src/components/form/input/Input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAE5D,OAAO,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAM9D,UAAU,WAAW,CAAC,CAAC,SAAS,MAAM;IAClC,QAAQ,CAAC,EAAE,KAAK,CAAC;IACjB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,WAAW,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;IACzB,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,EAAE,wBAAwB,EAAE,OAAO,KAAK,IAAI,CAAC;CAC1G;AAED,KAAK,KAAK,CAAC,CAAC,SAAS,MAAM,IAAI,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,QAAQ,CAAC,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;AAK5G,QAAA,MAAM,KAAK,GAAI,CAAC,SAAS,MAAM,kIAQ5B,KAAK,CAAC,CAAC,CAAC,KAAG,UAAU,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAwE1C,CAAC;AAEF,OAAO,EACH,KAAK,GACR,CAAC;AAEF,YAAY,EACR,KAAK,IAAI,UAAU,EACnB,WAAW,IAAI,gBAAgB,GAClC,CAAC"}
|
|
@@ -39,7 +39,7 @@ const react_1 = __importStar(require("react"));
|
|
|
39
39
|
const Suggestions_1 = require("../Suggestions");
|
|
40
40
|
const Input_styled_1 = require("./Input.styled");
|
|
41
41
|
const Input = (_a) => {
|
|
42
|
-
var { className, children, prefix, suffix, onFocus, onBlur, onKeyDown, onChange, suggestions, onSuggestionMatch } = _a, props = __rest(_a, ["className", "children", "prefix", "suffix", "onFocus", "onBlur", "onKeyDown", "onChange", "suggestions", "onSuggestionMatch"]);
|
|
42
|
+
var { className, children, prefix, suffix, onFocus, onBlur, onKeyDown, onChange, suggestions, onSuggestionMatch, error } = _a, props = __rest(_a, ["className", "children", "prefix", "suffix", "onFocus", "onBlur", "onKeyDown", "onChange", "suggestions", "onSuggestionMatch", "error"]);
|
|
43
43
|
const [focused, setFocused] = (0, react_1.useState)(false);
|
|
44
44
|
const suggestionsId = (0, react_1.useId)();
|
|
45
45
|
const [info] = (0, react_1.useState)({});
|
|
@@ -81,9 +81,9 @@ const Input = (_a) => {
|
|
|
81
81
|
if (suggestions) {
|
|
82
82
|
extraProps.list = suggestionsId;
|
|
83
83
|
}
|
|
84
|
-
return (react_1.default.createElement(Input_styled_1.StyledWrapper, { className: className, focused: Boolean(focused), disabled: Boolean(props.disabled), readOnly: Boolean(props.readOnly), error: Boolean(
|
|
84
|
+
return (react_1.default.createElement(Input_styled_1.StyledWrapper, { className: className, focused: Boolean(focused), disabled: Boolean(props.disabled), readOnly: Boolean(props.readOnly), error: Boolean(error) },
|
|
85
85
|
prefixElem,
|
|
86
|
-
react_1.default.createElement(Input_styled_1.StyledInput, Object.assign({}, props, extraProps, { onChange: handleChange, onKeyDown: handleKeyDown, onFocus: handleFocus, onBlur: handleBlur, "data-error": Boolean(
|
|
86
|
+
react_1.default.createElement(Input_styled_1.StyledInput, Object.assign({}, props, extraProps, { onChange: handleChange, onKeyDown: handleKeyDown, onFocus: handleFocus, onBlur: handleBlur, "data-error": Boolean(error) })),
|
|
87
87
|
react_1.default.createElement(Suggestions_1.Suggestions, { id: suggestionsId, suggestions: suggestions }),
|
|
88
88
|
suffixElem));
|
|
89
89
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.js","sourceRoot":"","sources":["../../../../src/components/form/input/Input.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA4D;AAI5D,gDAA6C;AAE7C,iDAAwF;AAgBxF,MAAM,KAAK,GAAG,CAAmB,
|
|
1
|
+
{"version":3,"file":"Input.js","sourceRoot":"","sources":["../../../../src/components/form/input/Input.tsx"],"names":[],"mappings":"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"}
|
package/docs/classes/Drawer.html
CHANGED
|
@@ -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.27.
|
|
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.27.7</title><meta name="description" content="Documentation for react-miui - v0.27.7"/><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.27.
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.27.7</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.27.
|
|
15
|
+
<li><a href="../modules.html">react-miui - v0.27.7</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/
|
|
25
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/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<Props, State>.constructor</p>
|
|
79
79
|
<ul>
|
|
80
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
80
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/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>
|
|
@@ -126,7 +126,7 @@ Should be used with type annotation or static contextType.</p>
|
|
|
126
126
|
<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>
|
|
127
127
|
<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">
|
|
128
128
|
<ul>
|
|
129
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
129
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/drawer/Drawer.tsx#L54">src/components/ui/drawer/Drawer.tsx:54</a></li></ul></aside></section>
|
|
130
130
|
<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>
|
|
131
131
|
<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>
|
|
132
132
|
<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"><</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">></span></div>
|
|
@@ -256,7 +256,7 @@ the entire component tree to unmount.</p>
|
|
|
256
256
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
257
257
|
<p>Overrides Component.componentDidMount</p>
|
|
258
258
|
<ul>
|
|
259
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
259
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/drawer/Drawer.tsx#L33">src/components/ui/drawer/Drawer.tsx:33</a></li></ul></aside></li></ul></section>
|
|
260
260
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="componentDidUpdate" class="tsd-anchor"></a>
|
|
261
261
|
<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>
|
|
262
262
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
@@ -270,7 +270,7 @@ the entire component tree to unmount.</p>
|
|
|
270
270
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
271
271
|
<p>Overrides Component.componentDidUpdate</p>
|
|
272
272
|
<ul>
|
|
273
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
273
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/drawer/Drawer.tsx#L39">src/components/ui/drawer/Drawer.tsx:39</a></li></ul></aside></li></ul></section>
|
|
274
274
|
<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>
|
|
275
275
|
<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>
|
|
276
276
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
|
@@ -332,7 +332,7 @@ this from being invoked.</p>
|
|
|
332
332
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
333
333
|
<p>Overrides Component.componentWillUnmount</p>
|
|
334
334
|
<ul>
|
|
335
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
335
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/drawer/Drawer.tsx#L49">src/components/ui/drawer/Drawer.tsx:49</a></li></ul></aside></li></ul></section>
|
|
336
336
|
<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>
|
|
337
337
|
<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>
|
|
338
338
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
|
@@ -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/
|
|
416
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/drawer/Drawer.tsx#L65">src/components/ui/drawer/Drawer.tsx:65</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="onClose" class="tsd-anchor"></a>
|
|
418
418
|
<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>
|
|
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/
|
|
424
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/drawer/Drawer.tsx#L61">src/components/ui/drawer/Drawer.tsx:61</a></li></ul></aside></li></ul></section>
|
|
425
425
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="onOpen" class="tsd-anchor"></a>
|
|
426
426
|
<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>
|
|
427
427
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
|
|
@@ -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/
|
|
432
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/drawer/Drawer.tsx#L56">src/components/ui/drawer/Drawer.tsx:56</a></li></ul></aside></li></ul></section>
|
|
433
433
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="render" class="tsd-anchor"></a>
|
|
434
434
|
<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>
|
|
435
435
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
@@ -438,7 +438,7 @@ lifecycle events from running.</p>
|
|
|
438
438
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4><aside class="tsd-sources">
|
|
439
439
|
<p>Overrides Component.render</p>
|
|
440
440
|
<ul>
|
|
441
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
441
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/drawer/Drawer.tsx#L69">src/components/ui/drawer/Drawer.tsx:69</a></li></ul></aside></li></ul></section>
|
|
442
442
|
<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>
|
|
443
443
|
<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>
|
|
444
444
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
|
@@ -510,7 +510,7 @@ and <code>componentDidUpdate</code> will not be called.</p>
|
|
|
510
510
|
<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>
|
|
511
511
|
<div class="tsd-accordion-details">
|
|
512
512
|
<ul>
|
|
513
|
-
<li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.27.
|
|
513
|
+
<li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.27.7</a>
|
|
514
514
|
<ul>
|
|
515
515
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/tutorials/Test.html">Test</a></li>
|
|
516
516
|
<li class="tsd-kind-namespace"><a href="../modules/List.html">List</a></li>
|
package/docs/classes/Pop.html
CHANGED
|
@@ -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.27.
|
|
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.27.7</title><meta name="description" content="Documentation for react-miui - v0.27.7"/><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.27.
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.27.7</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.27.
|
|
15
|
+
<li><a href="../modules.html">react-miui - v0.27.7</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/
|
|
29
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/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<Props, State>.constructor</p>
|
|
85
85
|
<ul>
|
|
86
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
86
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/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>
|
|
@@ -126,7 +126,7 @@ Should be used with type annotation or static contextType.</p>
|
|
|
126
126
|
<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>
|
|
127
127
|
<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"><</span><span class="tsd-signature-type">HTMLDivElement</span><span class="tsd-signature-symbol">></span></div><aside class="tsd-sources">
|
|
128
128
|
<ul>
|
|
129
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
129
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/pop/Pop.tsx#L79">src/components/ui/pop/Pop.tsx:79</a></li></ul></aside></section>
|
|
130
130
|
<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>
|
|
131
131
|
<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>
|
|
132
132
|
<div class="tsd-signature">state<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Readonly</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">State</span><span class="tsd-signature-symbol">></span></div><aside class="tsd-sources">
|
|
@@ -137,7 +137,7 @@ Should be used with type annotation or static contextType.</p>
|
|
|
137
137
|
<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>
|
|
138
138
|
<div class="tsd-signature">Option<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">FC</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">Props</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> = PopOption</span></div><aside class="tsd-sources">
|
|
139
139
|
<ul>
|
|
140
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
140
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/pop/Pop.tsx#L77">src/components/ui/pop/Pop.tsx:77</a></li></ul></aside></section>
|
|
141
141
|
<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>
|
|
142
142
|
<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>
|
|
143
143
|
<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"><</span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">></span></div>
|
|
@@ -283,7 +283,7 @@ the entire component tree to unmount.</p>
|
|
|
283
283
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
284
284
|
<p>Overrides Component.componentDidUpdate</p>
|
|
285
285
|
<ul>
|
|
286
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
286
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/pop/Pop.tsx#L71">src/components/ui/pop/Pop.tsx:71</a></li></ul></aside></li></ul></section>
|
|
287
287
|
<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>
|
|
288
288
|
<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>
|
|
289
289
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
|
@@ -407,7 +407,7 @@ this from being invoked.</p>
|
|
|
407
407
|
<li class="tsd-description">
|
|
408
408
|
<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">
|
|
409
409
|
<ul>
|
|
410
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
410
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/pop/Pop.tsx#L81">src/components/ui/pop/Pop.tsx:81</a></li></ul></aside></li></ul></section>
|
|
411
411
|
<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>
|
|
412
412
|
<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>
|
|
413
413
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
|
@@ -437,7 +437,7 @@ lifecycle events from running.</p>
|
|
|
437
437
|
<li class="tsd-description">
|
|
438
438
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
439
439
|
<ul>
|
|
440
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
440
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/pop/Pop.tsx#L127">src/components/ui/pop/Pop.tsx:127</a></li></ul></aside></li></ul></section>
|
|
441
441
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="handleOverlayClick" class="tsd-anchor"></a>
|
|
442
442
|
<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>
|
|
443
443
|
<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
|
<h5>e: <span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol"><</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">></span></h5></li></ul></div>
|
|
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/
|
|
453
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/pop/Pop.tsx#L121">src/components/ui/pop/Pop.tsx:121</a></li></ul></aside></li></ul></section>
|
|
454
454
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="onOpen" class="tsd-anchor"></a>
|
|
455
455
|
<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>
|
|
456
456
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
|
|
@@ -458,7 +458,7 @@ lifecycle events from running.</p>
|
|
|
458
458
|
<li class="tsd-description">
|
|
459
459
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
460
460
|
<ul>
|
|
461
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
461
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/pop/Pop.tsx#L98">src/components/ui/pop/Pop.tsx:98</a></li></ul></aside></li></ul></section>
|
|
462
462
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="render" class="tsd-anchor"></a>
|
|
463
463
|
<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>
|
|
464
464
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
@@ -467,7 +467,7 @@ lifecycle events from running.</p>
|
|
|
467
467
|
<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">
|
|
468
468
|
<p>Overrides Component.render</p>
|
|
469
469
|
<ul>
|
|
470
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
470
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/pop/Pop.tsx#L131">src/components/ui/pop/Pop.tsx:131</a></li></ul></aside></li></ul></section>
|
|
471
471
|
<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>
|
|
472
472
|
<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>
|
|
473
473
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
|
@@ -539,7 +539,7 @@ and <code>componentDidUpdate</code> will not be called.</p>
|
|
|
539
539
|
<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>
|
|
540
540
|
<div class="tsd-accordion-details">
|
|
541
541
|
<ul>
|
|
542
|
-
<li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.27.
|
|
542
|
+
<li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.27.7</a>
|
|
543
543
|
<ul>
|
|
544
544
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/tutorials/Test.html">Test</a></li>
|
|
545
545
|
<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.27.
|
|
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.27.7</title><meta name="description" content="Documentation for react-miui - v0.27.7"/><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.27.
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">react-miui - v0.27.7</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.27.
|
|
15
|
+
<li><a href="../modules.html">react-miui - v0.27.7</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/
|
|
25
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/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<Props, State>.constructor</p>
|
|
80
80
|
<ul>
|
|
81
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
81
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/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>
|
|
@@ -239,7 +239,7 @@ this from being invoked.</p>
|
|
|
239
239
|
<h5>timeout: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> = DEFAULT_TIMEOUT</span></h5></li></ul></div>
|
|
240
240
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
241
241
|
<ul>
|
|
242
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
242
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/toaster/Toaster.tsx#L35">src/components/ui/toaster/Toaster.tsx:35</a></li></ul></aside></li></ul></section>
|
|
243
243
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="_handleRemove" class="tsd-anchor"></a>
|
|
244
244
|
<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>
|
|
245
245
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
|
|
@@ -252,7 +252,7 @@ this from being invoked.</p>
|
|
|
252
252
|
<h5>id: <span class="tsd-signature-type">string</span></h5></li></ul></div>
|
|
253
253
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
254
254
|
<ul>
|
|
255
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
255
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/toaster/Toaster.tsx#L66">src/components/ui/toaster/Toaster.tsx:66</a></li></ul></aside></li></ul></section>
|
|
256
256
|
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-private"><a id="_removeAllToasts" class="tsd-anchor"></a>
|
|
257
257
|
<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>
|
|
258
258
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-private">
|
|
@@ -260,7 +260,7 @@ this from being invoked.</p>
|
|
|
260
260
|
<li class="tsd-description">
|
|
261
261
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
|
|
262
262
|
<ul>
|
|
263
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
263
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/toaster/Toaster.tsx#L73">src/components/ui/toaster/Toaster.tsx:73</a></li></ul></aside></li></ul></section>
|
|
264
264
|
<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>
|
|
265
265
|
<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>
|
|
266
266
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
|
@@ -458,7 +458,7 @@ lifecycle events from running.</p>
|
|
|
458
458
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Element</span></h4><aside class="tsd-sources">
|
|
459
459
|
<p>Overrides React.Component.render</p>
|
|
460
460
|
<ul>
|
|
461
|
-
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/
|
|
461
|
+
<li>Defined in <a href="https://github.com/dzek69/react-miui/blob/6705b3c/src/components/ui/toaster/Toaster.tsx#L88">src/components/ui/toaster/Toaster.tsx:88</a></li></ul></aside></li></ul></section>
|
|
462
462
|
<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>
|
|
463
463
|
<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>
|
|
464
464
|
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-external">
|
|
@@ -530,7 +530,7 @@ and <code>componentDidUpdate</code> will not be called.</p>
|
|
|
530
530
|
<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>
|
|
531
531
|
<div class="tsd-accordion-details">
|
|
532
532
|
<ul>
|
|
533
|
-
<li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.27.
|
|
533
|
+
<li><a href="../modules.html">react-<wbr/>miui -<wbr/> v0.27.7</a>
|
|
534
534
|
<ul>
|
|
535
535
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/tutorials/Test.html">Test</a></li>
|
|
536
536
|
<li class="tsd-kind-namespace"><a href="../modules/List.html">List</a></li>
|