@backstage/plugin-search 0.4.14 → 0.4.18
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 +61 -0
- package/dist/esm/index-01b40466.esm.js +39 -0
- package/dist/esm/index-01b40466.esm.js.map +1 -0
- package/dist/esm/index-207637ef.esm.js +23 -0
- package/dist/esm/index-207637ef.esm.js.map +1 -0
- package/dist/esm/{index-f3589f7b.esm.js → index-766e727c.esm.js} +6 -5
- package/dist/esm/index-766e727c.esm.js.map +1 -0
- package/dist/esm/{index-9891a3b0.esm.js → index-77205085.esm.js} +6 -5
- package/dist/esm/index-77205085.esm.js.map +1 -0
- package/dist/esm/index-b929d40d.esm.js +23 -0
- package/dist/esm/index-b929d40d.esm.js.map +1 -0
- package/dist/esm/{index-9b6a3ac1.esm.js → index-b9474e70.esm.js} +9 -8
- package/dist/esm/{index-9b6a3ac1.esm.js.map → index-b9474e70.esm.js.map} +1 -1
- package/dist/esm/{index-848f077f.esm.js → index-cdccd881.esm.js} +364 -224
- package/dist/esm/index-cdccd881.esm.js.map +1 -0
- package/dist/index.d.ts +15 -4
- package/dist/index.esm.js +6 -5
- package/dist/index.esm.js.map +1 -1
- package/package.json +16 -15
- package/dist/esm/index-4afbd577.esm.js +0 -46
- package/dist/esm/index-4afbd577.esm.js.map +0 -1
- package/dist/esm/index-848f077f.esm.js.map +0 -1
- package/dist/esm/index-92a9e2ec.esm.js +0 -18
- package/dist/esm/index-92a9e2ec.esm.js.map +0 -1
- package/dist/esm/index-9891a3b0.esm.js.map +0 -1
- package/dist/esm/index-f3589f7b.esm.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,66 @@
|
|
|
1
1
|
# @backstage/plugin-search
|
|
2
2
|
|
|
3
|
+
## 0.4.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a125278b81: Refactor out the deprecated path and icon from RouteRefs
|
|
8
|
+
- 704b267e1c: Smaller UX improvements to search components such as optional autoFocus prop to SearchBar components, decreased debounce value and closing modal on link click of SearchModal, terminology updates of SearchResultPager.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/catalog-model@0.9.7
|
|
11
|
+
- @backstage/plugin-catalog-react@0.6.4
|
|
12
|
+
- @backstage/core-components@0.7.4
|
|
13
|
+
- @backstage/core-plugin-api@0.2.0
|
|
14
|
+
|
|
15
|
+
## 0.4.17
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 5dcea2586c: Added `SearchModal` component.
|
|
20
|
+
|
|
21
|
+
Now you can import `SearchModal` in your apps:
|
|
22
|
+
|
|
23
|
+
```js
|
|
24
|
+
import { SearchModal } from '@backstage/plugin-search';
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
You can also use the `SidebarSearchModal` component to integrate it into the sidebar of your sample apps:
|
|
28
|
+
|
|
29
|
+
```js
|
|
30
|
+
import { SidebarSearchModal } from '@backstage/plugin-search';
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
- Updated dependencies
|
|
34
|
+
- @backstage/core-components@0.7.3
|
|
35
|
+
- @backstage/theme@0.2.13
|
|
36
|
+
- @backstage/core-plugin-api@0.1.13
|
|
37
|
+
- @backstage/plugin-catalog-react@0.6.3
|
|
38
|
+
|
|
39
|
+
## 0.4.16
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- 10615525f3: Switch to use the json and observable types from `@backstage/types`
|
|
44
|
+
- Updated dependencies
|
|
45
|
+
- @backstage/config@0.1.11
|
|
46
|
+
- @backstage/theme@0.2.12
|
|
47
|
+
- @backstage/errors@0.1.4
|
|
48
|
+
- @backstage/core-components@0.7.2
|
|
49
|
+
- @backstage/plugin-catalog-react@0.6.2
|
|
50
|
+
- @backstage/catalog-model@0.9.6
|
|
51
|
+
- @backstage/search-common@0.2.1
|
|
52
|
+
- @backstage/core-plugin-api@0.1.12
|
|
53
|
+
|
|
54
|
+
## 0.4.15
|
|
55
|
+
|
|
56
|
+
### Patch Changes
|
|
57
|
+
|
|
58
|
+
- 56bd537256: SearchBar component to accept optional placeholder prop
|
|
59
|
+
- Updated dependencies
|
|
60
|
+
- @backstage/plugin-catalog-react@0.6.0
|
|
61
|
+
- @backstage/core-components@0.7.0
|
|
62
|
+
- @backstage/theme@0.2.11
|
|
63
|
+
|
|
3
64
|
## 0.4.14
|
|
4
65
|
|
|
5
66
|
### Patch Changes
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import React__default, { useState } from 'react';
|
|
2
|
+
import SearchIcon from '@material-ui/icons/Search';
|
|
3
|
+
import { d as SearchModal } from './index-cdccd881.esm.js';
|
|
4
|
+
import { SidebarItem } from '@backstage/core-components';
|
|
5
|
+
import '@backstage/core-plugin-api';
|
|
6
|
+
import '@backstage/errors';
|
|
7
|
+
import 'qs';
|
|
8
|
+
import '@material-ui/core';
|
|
9
|
+
import '@material-ui/icons/FilterList';
|
|
10
|
+
import 'react-use';
|
|
11
|
+
import '@material-ui/icons/Clear';
|
|
12
|
+
import '@material-ui/core/styles';
|
|
13
|
+
import '@material-ui/icons/ArrowBackIos';
|
|
14
|
+
import '@material-ui/icons/ArrowForwardIos';
|
|
15
|
+
import '@material-ui/core/utils';
|
|
16
|
+
import 'react-router';
|
|
17
|
+
import '@material-ui/core/InputBase';
|
|
18
|
+
import '@material-ui/core/IconButton';
|
|
19
|
+
import '@material-ui/lab';
|
|
20
|
+
import '@backstage/plugin-catalog-react';
|
|
21
|
+
import '@backstage/catalog-model';
|
|
22
|
+
import 'react-router-dom';
|
|
23
|
+
|
|
24
|
+
const SidebarSearchModal = () => {
|
|
25
|
+
const [open, setOpen] = useState(false);
|
|
26
|
+
const toggleModal = () => setOpen((prevState) => !prevState);
|
|
27
|
+
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, /* @__PURE__ */ React__default.createElement(SidebarItem, {
|
|
28
|
+
className: "search-icon",
|
|
29
|
+
icon: SearchIcon,
|
|
30
|
+
text: "Search",
|
|
31
|
+
onClick: toggleModal
|
|
32
|
+
}), /* @__PURE__ */ React__default.createElement(SearchModal, {
|
|
33
|
+
open,
|
|
34
|
+
toggleModal
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export { SidebarSearchModal };
|
|
39
|
+
//# sourceMappingURL=index-01b40466.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-01b40466.esm.js","sources":["../../src/components/SidebarSearchModal/SidebarSearchModal.tsx"],"sourcesContent":["/*\n * Copyright 2021 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport React, { useState } from 'react';\nimport SearchIcon from '@material-ui/icons/Search';\nimport { SearchModal } from '../SearchModal';\nimport { SidebarItem } from '@backstage/core-components';\n\nexport const SidebarSearchModal = () => {\n const [open, setOpen] = useState<boolean>(false);\n const toggleModal = (): void => setOpen(prevState => !prevState);\n\n return (\n <>\n <SidebarItem\n className=\"search-icon\"\n icon={SearchIcon}\n text=\"Search\"\n onClick={toggleModal}\n />\n <SearchModal open={open} toggleModal={toggleModal} />\n </>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;MAoBa,qBAAqB,MAAM;AACtC,QAAM,CAAC,MAAM,WAAW,SAAkB;AAC1C,QAAM,cAAc,MAAY,QAAQ,eAAa,CAAC;AAEtD,kIAEK,aAAD;AAAA,IACE,WAAU;AAAA,IACV,MAAM;AAAA,IACN,MAAK;AAAA,IACL,SAAS;AAAA,mDAEV,aAAD;AAAA,IAAa;AAAA,IAAY;AAAA;AAAA;;;;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export { D as DefaultResultListItem } from './index-cdccd881.esm.js';
|
|
2
|
+
import '@backstage/core-plugin-api';
|
|
3
|
+
import '@backstage/errors';
|
|
4
|
+
import 'qs';
|
|
5
|
+
import 'react';
|
|
6
|
+
import '@material-ui/core';
|
|
7
|
+
import '@backstage/core-components';
|
|
8
|
+
import '@material-ui/icons/FilterList';
|
|
9
|
+
import 'react-use';
|
|
10
|
+
import '@material-ui/icons/Search';
|
|
11
|
+
import '@material-ui/icons/Clear';
|
|
12
|
+
import '@material-ui/core/styles';
|
|
13
|
+
import '@material-ui/icons/ArrowBackIos';
|
|
14
|
+
import '@material-ui/icons/ArrowForwardIos';
|
|
15
|
+
import '@material-ui/core/utils';
|
|
16
|
+
import 'react-router';
|
|
17
|
+
import '@material-ui/core/InputBase';
|
|
18
|
+
import '@material-ui/core/IconButton';
|
|
19
|
+
import '@material-ui/lab';
|
|
20
|
+
import '@backstage/plugin-catalog-react';
|
|
21
|
+
import '@backstage/catalog-model';
|
|
22
|
+
import 'react-router-dom';
|
|
23
|
+
//# sourceMappingURL=index-207637ef.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-207637ef.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { c as SearchResult } from './index-cdccd881.esm.js';
|
|
2
2
|
import '@backstage/core-plugin-api';
|
|
3
3
|
import '@backstage/errors';
|
|
4
4
|
import 'qs';
|
|
@@ -9,14 +9,15 @@ import '@material-ui/icons/FilterList';
|
|
|
9
9
|
import 'react-use';
|
|
10
10
|
import '@material-ui/icons/Search';
|
|
11
11
|
import '@material-ui/icons/Clear';
|
|
12
|
-
import 'react-router';
|
|
13
12
|
import '@material-ui/core/styles';
|
|
13
|
+
import '@material-ui/icons/ArrowBackIos';
|
|
14
|
+
import '@material-ui/icons/ArrowForwardIos';
|
|
15
|
+
import '@material-ui/core/utils';
|
|
16
|
+
import 'react-router';
|
|
14
17
|
import '@material-ui/core/InputBase';
|
|
15
18
|
import '@material-ui/core/IconButton';
|
|
16
19
|
import '@material-ui/lab';
|
|
17
20
|
import '@backstage/plugin-catalog-react';
|
|
18
21
|
import '@backstage/catalog-model';
|
|
19
|
-
import '@material-ui/icons/ArrowBackIos';
|
|
20
|
-
import '@material-ui/icons/ArrowForwardIos';
|
|
21
22
|
import 'react-router-dom';
|
|
22
|
-
//# sourceMappingURL=index-
|
|
23
|
+
//# sourceMappingURL=index-766e727c.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-766e727c.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { S as SearchPage } from './index-
|
|
1
|
+
export { S as SearchPage } from './index-cdccd881.esm.js';
|
|
2
2
|
import '@backstage/core-plugin-api';
|
|
3
3
|
import '@backstage/errors';
|
|
4
4
|
import 'qs';
|
|
@@ -9,14 +9,15 @@ import '@material-ui/icons/FilterList';
|
|
|
9
9
|
import 'react-use';
|
|
10
10
|
import '@material-ui/icons/Search';
|
|
11
11
|
import '@material-ui/icons/Clear';
|
|
12
|
-
import 'react-router';
|
|
13
12
|
import '@material-ui/core/styles';
|
|
13
|
+
import '@material-ui/icons/ArrowBackIos';
|
|
14
|
+
import '@material-ui/icons/ArrowForwardIos';
|
|
15
|
+
import '@material-ui/core/utils';
|
|
16
|
+
import 'react-router';
|
|
14
17
|
import '@material-ui/core/InputBase';
|
|
15
18
|
import '@material-ui/core/IconButton';
|
|
16
19
|
import '@material-ui/lab';
|
|
17
20
|
import '@backstage/plugin-catalog-react';
|
|
18
21
|
import '@backstage/catalog-model';
|
|
19
|
-
import '@material-ui/icons/ArrowBackIos';
|
|
20
|
-
import '@material-ui/icons/ArrowForwardIos';
|
|
21
22
|
import 'react-router-dom';
|
|
22
|
-
//# sourceMappingURL=index-
|
|
23
|
+
//# sourceMappingURL=index-77205085.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-77205085.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export { a as SearchBar, b as SearchBarBase } from './index-cdccd881.esm.js';
|
|
2
|
+
import '@backstage/core-plugin-api';
|
|
3
|
+
import '@backstage/errors';
|
|
4
|
+
import 'qs';
|
|
5
|
+
import 'react';
|
|
6
|
+
import '@material-ui/core';
|
|
7
|
+
import '@backstage/core-components';
|
|
8
|
+
import '@material-ui/icons/FilterList';
|
|
9
|
+
import 'react-use';
|
|
10
|
+
import '@material-ui/icons/Search';
|
|
11
|
+
import '@material-ui/icons/Clear';
|
|
12
|
+
import '@material-ui/core/styles';
|
|
13
|
+
import '@material-ui/icons/ArrowBackIos';
|
|
14
|
+
import '@material-ui/icons/ArrowForwardIos';
|
|
15
|
+
import '@material-ui/core/utils';
|
|
16
|
+
import 'react-router';
|
|
17
|
+
import '@material-ui/core/InputBase';
|
|
18
|
+
import '@material-ui/core/IconButton';
|
|
19
|
+
import '@material-ui/lab';
|
|
20
|
+
import '@backstage/plugin-catalog-react';
|
|
21
|
+
import '@backstage/catalog-model';
|
|
22
|
+
import 'react-router-dom';
|
|
23
|
+
//# sourceMappingURL=index-b929d40d.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-b929d40d.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import React__default, { useCallback } from 'react';
|
|
2
2
|
import { makeStyles } from '@material-ui/core/styles';
|
|
3
|
-
import { r as rootRouteRef, b as SearchBarBase } from './index-
|
|
3
|
+
import { r as rootRouteRef, b as SearchBarBase } from './index-cdccd881.esm.js';
|
|
4
4
|
import qs from 'qs';
|
|
5
5
|
import { useNavigate } from 'react-router-dom';
|
|
6
6
|
import { useRouteRef } from '@backstage/core-plugin-api';
|
|
@@ -11,14 +11,15 @@ import '@material-ui/icons/FilterList';
|
|
|
11
11
|
import 'react-use';
|
|
12
12
|
import '@material-ui/icons/Search';
|
|
13
13
|
import '@material-ui/icons/Clear';
|
|
14
|
+
import '@material-ui/icons/ArrowBackIos';
|
|
15
|
+
import '@material-ui/icons/ArrowForwardIos';
|
|
16
|
+
import '@material-ui/core/utils';
|
|
14
17
|
import 'react-router';
|
|
15
18
|
import '@material-ui/core/InputBase';
|
|
16
19
|
import '@material-ui/core/IconButton';
|
|
17
20
|
import '@material-ui/lab';
|
|
18
21
|
import '@backstage/plugin-catalog-react';
|
|
19
22
|
import '@backstage/catalog-model';
|
|
20
|
-
import '@material-ui/icons/ArrowBackIos';
|
|
21
|
-
import '@material-ui/icons/ArrowForwardIos';
|
|
22
23
|
|
|
23
24
|
const useNavigateToQuery = () => {
|
|
24
25
|
const searchRoute = useRouteRef(rootRouteRef);
|
|
@@ -37,16 +38,16 @@ const useStyles = makeStyles({
|
|
|
37
38
|
}
|
|
38
39
|
});
|
|
39
40
|
const HomePageSearchBar = ({placeholder}) => {
|
|
40
|
-
const [query, setQuery] =
|
|
41
|
+
const [query, setQuery] = React__default.useState("");
|
|
41
42
|
const handleSearch = useNavigateToQuery();
|
|
42
43
|
const classes = useStyles();
|
|
43
44
|
const handleSubmit = () => {
|
|
44
45
|
handleSearch({query});
|
|
45
46
|
};
|
|
46
|
-
const handleChange =
|
|
47
|
+
const handleChange = React__default.useCallback((value) => {
|
|
47
48
|
setQuery(value);
|
|
48
49
|
}, [setQuery]);
|
|
49
|
-
return /* @__PURE__ */
|
|
50
|
+
return /* @__PURE__ */ React__default.createElement(SearchBarBase, {
|
|
50
51
|
onSubmit: handleSubmit,
|
|
51
52
|
onChange: handleChange,
|
|
52
53
|
value: query,
|
|
@@ -56,4 +57,4 @@ const HomePageSearchBar = ({placeholder}) => {
|
|
|
56
57
|
};
|
|
57
58
|
|
|
58
59
|
export { HomePageSearchBar };
|
|
59
|
-
//# sourceMappingURL=index-
|
|
60
|
+
//# sourceMappingURL=index-b9474e70.esm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-b9474e70.esm.js","sources":["../../src/components/util.ts","../../src/components/HomePageComponent/HomePageSearchBar.tsx"],"sourcesContent":["/*\n * Copyright 2021 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport qs from 'qs';\nimport { useCallback } from 'react';\nimport { useNavigate } from 'react-router-dom';\nimport { rootRouteRef } from '../plugin';\n\nimport { useRouteRef } from '@backstage/core-plugin-api';\n\nexport const useNavigateToQuery = () => {\n const searchRoute = useRouteRef(rootRouteRef);\n const navigate = useNavigate();\n return useCallback(\n ({ query }: { query: string }): void => {\n const queryString = qs.stringify({ query }, { addQueryPrefix: true });\n\n navigate(`${searchRoute()}${queryString}`);\n },\n [navigate, searchRoute],\n );\n};\n","/*\n * Copyright 2021 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport React from 'react';\nimport { makeStyles } from '@material-ui/core/styles';\n\nimport { SearchBarBase } from '../SearchBar';\nimport { useNavigateToQuery } from '../util';\n\nconst useStyles = makeStyles({\n searchBar: {\n border: '1px solid #555',\n borderRadius: '6px',\n fontSize: '1.5em',\n },\n});\n\ntype Props = {\n placeholder?: string;\n};\n\nexport const HomePageSearchBar = ({ placeholder }: Props) => {\n const [query, setQuery] = React.useState('');\n const handleSearch = useNavigateToQuery();\n const classes = useStyles();\n\n const handleSubmit = () => {\n handleSearch({ query });\n };\n\n const handleChange = React.useCallback(\n value => {\n setQuery(value);\n },\n [setQuery],\n );\n\n return (\n <SearchBarBase\n onSubmit={handleSubmit}\n onChange={handleChange}\n value={query}\n className={classes.searchBar}\n placeholder={placeholder}\n />\n );\n};\n"],"names":["React"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;MAsBa,qBAAqB,MAAM;AACtC,QAAM,cAAc,YAAY;AAChC,QAAM,WAAW;AACjB,SAAO,YACL,CAAC,CAAE,WAAqC;AACtC,UAAM,cAAc,GAAG,UAAU,CAAE,QAAS,CAAE,gBAAgB;AAE9D,aAAS,GAAG,gBAAgB;AAAA,KAE9B,CAAC,UAAU;AAAA;;ACTf,MAAM,YAAY,WAAW;AAAA,EAC3B,WAAW;AAAA,IACT,QAAQ;AAAA,IACR,cAAc;AAAA,IACd,UAAU;AAAA;AAAA;MAQD,oBAAoB,CAAC,CAAE,iBAAyB;AAC3D,QAAM,CAAC,OAAO,YAAYA,eAAM,SAAS;AACzC,QAAM,eAAe;AACrB,QAAM,UAAU;AAEhB,QAAM,eAAe,MAAM;AACzB,iBAAa,CAAE;AAAA;AAGjB,QAAM,eAAeA,eAAM,YACzB,WAAS;AACP,aAAS;AAAA,KAEX,CAAC;AAGH,sDACG,eAAD;AAAA,IACE,UAAU;AAAA,IACV,UAAU;AAAA,IACV,OAAO;AAAA,IACP,WAAW,QAAQ;AAAA,IACnB;AAAA;AAAA;;;;"}
|