@blaze-cms/nextjs-tools 0.124.0-alpha.36 → 0.124.0-alpha.39
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 +27 -0
- package/lib/components/DebugSidebar/index.js +3 -3
- package/lib/components/DebugSidebar/index.js.map +1 -1
- package/lib-es/components/DebugSidebar/index.js +2 -3
- package/lib-es/components/DebugSidebar/index.js.map +1 -1
- package/package.json +7 -7
- package/src/components/DebugSidebar/index.js +4 -1
- package/tests/unit/src/components/DebugSidebar/__snapshots__/DebugSidebar.test.js.snap +18 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.124.0-alpha.39](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.38...v0.124.0-alpha.39) (2022-07-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @blaze-cms/nextjs-tools
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [0.124.0-alpha.38](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.37...v0.124.0-alpha.38) (2022-07-07)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* add debug bar styles ([#3530](https://github.com/thebyte9/blaze/issues/3530)) ([bb78a6b](https://github.com/thebyte9/blaze/commit/bb78a6b2941153d833bc00d970b1f586635d632a))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [0.124.0-alpha.37](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.36...v0.124.0-alpha.37) (2022-06-29)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @blaze-cms/nextjs-tools
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [0.124.0-alpha.36](https://github.com/thebyte9/blaze/compare/v0.124.0-alpha.35...v0.124.0-alpha.36) (2022-06-28)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @blaze-cms/nextjs-tools
|
|
@@ -33,6 +33,8 @@ var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
33
33
|
|
|
34
34
|
var _nextjsComponents = require("@blaze-cms/nextjs-components");
|
|
35
35
|
|
|
36
|
+
var _md = require("react-icons/md");
|
|
37
|
+
|
|
36
38
|
var _helpers = require("../../helpers");
|
|
37
39
|
|
|
38
40
|
var _constants = require("../../constants");
|
|
@@ -85,9 +87,7 @@ var DebugSidebar = function DebugSidebar(_ref) {
|
|
|
85
87
|
onClick: function onClick() {
|
|
86
88
|
return setIsOpen(!isOpen);
|
|
87
89
|
}
|
|
88
|
-
}, /*#__PURE__*/_react["default"].createElement("i",
|
|
89
|
-
className: "material-icons"
|
|
90
|
-
}, "keyboard_arrow_left"))) : null);
|
|
90
|
+
}, /*#__PURE__*/_react["default"].createElement("i", null, /*#__PURE__*/_react["default"].createElement(_md.MdKeyboardArrowLeft, null)))) : null);
|
|
91
91
|
};
|
|
92
92
|
|
|
93
93
|
DebugSidebar.propTypes = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["DebugSidebar","itemEntity","itemId","debugMode","useState","isDebugMode","setIsDebugMode","isOpen","setIsOpen","useEffect","setBlazeDebug","divClass","classnames","href","buildAdminHref","DEBUG_LOGO","SRC","ALT","propTypes","PropTypes","string","bool","defaultProps"],"sources":["../../../src/components/DebugSidebar/index.js"],"sourcesContent":["import React, { useState, useEffect } from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\nimport { Link } from '@blaze-cms/nextjs-components';\nimport { buildAdminHref, setBlazeDebug } from '../../helpers';\nimport { DEBUG_LOGO } from '../../constants';\n\nconst DebugSidebar = ({ itemEntity, itemId, debugMode }) => {\n const [isDebugMode, setIsDebugMode] = useState(debugMode);\n const [isOpen, setIsOpen] = useState(true);\n\n useEffect(\n () => {\n if (debugMode === true) {\n setIsDebugMode(debugMode);\n } else setBlazeDebug(setIsDebugMode);\n },\n [debugMode]\n );\n\n const divClass = classnames('debug-sidebar', {\n 'debug-sidebar--open': isOpen,\n 'debug-sidebar--close': !isOpen\n });\n\n const href = buildAdminHref({ itemEntity, itemId });\n\n return (\n <>\n {isDebugMode ? (\n <div className={divClass} data-testid=\"debug-sidebar\">\n <Link href={href}>\n <img src={DEBUG_LOGO.SRC} alt={DEBUG_LOGO.ALT} />\n <span>Blaze admin</span>\n </Link>\n <div\n role=\"button\"\n className=\"debug-sidebar__button open\"\n data-testid=\"debug-sidebar-button\"\n id=\"debug-sidebar-button\"\n onClick={() => setIsOpen(!isOpen)}>\n <i
|
|
1
|
+
{"version":3,"file":"index.js","names":["DebugSidebar","itemEntity","itemId","debugMode","useState","isDebugMode","setIsDebugMode","isOpen","setIsOpen","useEffect","setBlazeDebug","divClass","classnames","href","buildAdminHref","DEBUG_LOGO","SRC","ALT","propTypes","PropTypes","string","bool","defaultProps"],"sources":["../../../src/components/DebugSidebar/index.js"],"sourcesContent":["import React, { useState, useEffect } from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\nimport { Link } from '@blaze-cms/nextjs-components';\nimport { MdKeyboardArrowLeft } from 'react-icons/md';\nimport { buildAdminHref, setBlazeDebug } from '../../helpers';\nimport { DEBUG_LOGO } from '../../constants';\n\nconst DebugSidebar = ({ itemEntity, itemId, debugMode }) => {\n const [isDebugMode, setIsDebugMode] = useState(debugMode);\n const [isOpen, setIsOpen] = useState(true);\n\n useEffect(\n () => {\n if (debugMode === true) {\n setIsDebugMode(debugMode);\n } else setBlazeDebug(setIsDebugMode);\n },\n [debugMode]\n );\n\n const divClass = classnames('debug-sidebar', {\n 'debug-sidebar--open': isOpen,\n 'debug-sidebar--close': !isOpen\n });\n\n const href = buildAdminHref({ itemEntity, itemId });\n\n return (\n <>\n {isDebugMode ? (\n <div className={divClass} data-testid=\"debug-sidebar\">\n <Link href={href}>\n <img src={DEBUG_LOGO.SRC} alt={DEBUG_LOGO.ALT} />\n <span>Blaze admin</span>\n </Link>\n <div\n role=\"button\"\n className=\"debug-sidebar__button open\"\n data-testid=\"debug-sidebar-button\"\n id=\"debug-sidebar-button\"\n onClick={() => setIsOpen(!isOpen)}>\n <i>\n <MdKeyboardArrowLeft />\n </i>\n </div>\n </div>\n ) : null}\n </>\n );\n};\n\nDebugSidebar.propTypes = {\n itemEntity: PropTypes.string,\n itemId: PropTypes.string,\n debugMode: PropTypes.bool\n};\n\nDebugSidebar.defaultProps = {\n itemEntity: '',\n itemId: '',\n debugMode: false\n};\n\nexport default DebugSidebar;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;;;;;AAEA,IAAMA,YAAY,GAAG,SAAfA,YAAe,OAAuC;EAAA,IAApCC,UAAoC,QAApCA,UAAoC;EAAA,IAAxBC,MAAwB,QAAxBA,MAAwB;EAAA,IAAhBC,SAAgB,QAAhBA,SAAgB;;EAC1D,gBAAsC,IAAAC,eAAA,EAASD,SAAT,CAAtC;EAAA;EAAA,IAAOE,WAAP;EAAA,IAAoBC,cAApB;;EACA,iBAA4B,IAAAF,eAAA,EAAS,IAAT,CAA5B;EAAA;EAAA,IAAOG,MAAP;EAAA,IAAeC,SAAf;;EAEA,IAAAC,gBAAA,EACE,YAAM;IACJ,IAAIN,SAAS,KAAK,IAAlB,EAAwB;MACtBG,cAAc,CAACH,SAAD,CAAd;IACD,CAFD,MAEO,IAAAO,sBAAA,EAAcJ,cAAd;EACR,CALH,EAME,CAACH,SAAD,CANF;EASA,IAAMQ,QAAQ,GAAG,IAAAC,sBAAA,EAAW,eAAX,EAA4B;IAC3C,uBAAuBL,MADoB;IAE3C,wBAAwB,CAACA;EAFkB,CAA5B,CAAjB;EAKA,IAAMM,IAAI,GAAG,IAAAC,uBAAA,EAAe;IAAEb,UAAU,EAAVA,UAAF;IAAcC,MAAM,EAANA;EAAd,CAAf,CAAb;EAEA,oBACE,kEACGG,WAAW,gBACV;IAAK,SAAS,EAAEM,QAAhB;IAA0B,eAAY;EAAtC,gBACE,gCAAC,sBAAD;IAAM,IAAI,EAAEE;EAAZ,gBACE;IAAK,GAAG,EAAEE,qBAAA,CAAWC,GAArB;IAA0B,GAAG,EAAED,qBAAA,CAAWE;EAA1C,EADF,eAEE,4DAFF,CADF,eAKE;IACE,IAAI,EAAC,QADP;IAEE,SAAS,EAAC,4BAFZ;IAGE,eAAY,sBAHd;IAIE,EAAE,EAAC,sBAJL;IAKE,OAAO,EAAE;MAAA,OAAMT,SAAS,CAAC,CAACD,MAAF,CAAf;IAAA;EALX,gBAME,wDACE,gCAAC,uBAAD,OADF,CANF,CALF,CADU,GAiBR,IAlBN,CADF;AAsBD,CA1CD;;AA4CAP,YAAY,CAACkB,SAAb,GAAyB;EACvBjB,UAAU,EAAEkB,qBAAA,CAAUC,MADC;EAEvBlB,MAAM,EAAEiB,qBAAA,CAAUC,MAFK;EAGvBjB,SAAS,EAAEgB,qBAAA,CAAUE;AAHE,CAAzB;AAMArB,YAAY,CAACsB,YAAb,GAA4B;EAC1BrB,UAAU,EAAE,EADc;EAE1BC,MAAM,EAAE,EAFkB;EAG1BC,SAAS,EAAE;AAHe,CAA5B;eAMeH,Y"}
|
|
@@ -2,6 +2,7 @@ import React, { useState, useEffect } from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import classnames from 'classnames';
|
|
4
4
|
import { Link } from '@blaze-cms/nextjs-components';
|
|
5
|
+
import { MdKeyboardArrowLeft } from 'react-icons/md';
|
|
5
6
|
import { buildAdminHref, setBlazeDebug } from '../../helpers';
|
|
6
7
|
import { DEBUG_LOGO } from '../../constants';
|
|
7
8
|
|
|
@@ -39,9 +40,7 @@ const DebugSidebar = ({
|
|
|
39
40
|
"data-testid": "debug-sidebar-button",
|
|
40
41
|
id: "debug-sidebar-button",
|
|
41
42
|
onClick: () => setIsOpen(!isOpen)
|
|
42
|
-
}, /*#__PURE__*/React.createElement("i",
|
|
43
|
-
className: "material-icons"
|
|
44
|
-
}, "keyboard_arrow_left"))) : null);
|
|
43
|
+
}, /*#__PURE__*/React.createElement("i", null, /*#__PURE__*/React.createElement(MdKeyboardArrowLeft, null)))) : null);
|
|
45
44
|
};
|
|
46
45
|
|
|
47
46
|
DebugSidebar.propTypes = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["React","useState","useEffect","PropTypes","classnames","Link","buildAdminHref","setBlazeDebug","DEBUG_LOGO","DebugSidebar","itemEntity","itemId","debugMode","isDebugMode","setIsDebugMode","isOpen","setIsOpen","divClass","href","SRC","ALT","propTypes","string","bool","defaultProps"],"sources":["../../../src/components/DebugSidebar/index.js"],"sourcesContent":["import React, { useState, useEffect } from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\nimport { Link } from '@blaze-cms/nextjs-components';\nimport { buildAdminHref, setBlazeDebug } from '../../helpers';\nimport { DEBUG_LOGO } from '../../constants';\n\nconst DebugSidebar = ({ itemEntity, itemId, debugMode }) => {\n const [isDebugMode, setIsDebugMode] = useState(debugMode);\n const [isOpen, setIsOpen] = useState(true);\n\n useEffect(\n () => {\n if (debugMode === true) {\n setIsDebugMode(debugMode);\n } else setBlazeDebug(setIsDebugMode);\n },\n [debugMode]\n );\n\n const divClass = classnames('debug-sidebar', {\n 'debug-sidebar--open': isOpen,\n 'debug-sidebar--close': !isOpen\n });\n\n const href = buildAdminHref({ itemEntity, itemId });\n\n return (\n <>\n {isDebugMode ? (\n <div className={divClass} data-testid=\"debug-sidebar\">\n <Link href={href}>\n <img src={DEBUG_LOGO.SRC} alt={DEBUG_LOGO.ALT} />\n <span>Blaze admin</span>\n </Link>\n <div\n role=\"button\"\n className=\"debug-sidebar__button open\"\n data-testid=\"debug-sidebar-button\"\n id=\"debug-sidebar-button\"\n onClick={() => setIsOpen(!isOpen)}>\n <i
|
|
1
|
+
{"version":3,"file":"index.js","names":["React","useState","useEffect","PropTypes","classnames","Link","MdKeyboardArrowLeft","buildAdminHref","setBlazeDebug","DEBUG_LOGO","DebugSidebar","itemEntity","itemId","debugMode","isDebugMode","setIsDebugMode","isOpen","setIsOpen","divClass","href","SRC","ALT","propTypes","string","bool","defaultProps"],"sources":["../../../src/components/DebugSidebar/index.js"],"sourcesContent":["import React, { useState, useEffect } from 'react';\nimport PropTypes from 'prop-types';\nimport classnames from 'classnames';\nimport { Link } from '@blaze-cms/nextjs-components';\nimport { MdKeyboardArrowLeft } from 'react-icons/md';\nimport { buildAdminHref, setBlazeDebug } from '../../helpers';\nimport { DEBUG_LOGO } from '../../constants';\n\nconst DebugSidebar = ({ itemEntity, itemId, debugMode }) => {\n const [isDebugMode, setIsDebugMode] = useState(debugMode);\n const [isOpen, setIsOpen] = useState(true);\n\n useEffect(\n () => {\n if (debugMode === true) {\n setIsDebugMode(debugMode);\n } else setBlazeDebug(setIsDebugMode);\n },\n [debugMode]\n );\n\n const divClass = classnames('debug-sidebar', {\n 'debug-sidebar--open': isOpen,\n 'debug-sidebar--close': !isOpen\n });\n\n const href = buildAdminHref({ itemEntity, itemId });\n\n return (\n <>\n {isDebugMode ? (\n <div className={divClass} data-testid=\"debug-sidebar\">\n <Link href={href}>\n <img src={DEBUG_LOGO.SRC} alt={DEBUG_LOGO.ALT} />\n <span>Blaze admin</span>\n </Link>\n <div\n role=\"button\"\n className=\"debug-sidebar__button open\"\n data-testid=\"debug-sidebar-button\"\n id=\"debug-sidebar-button\"\n onClick={() => setIsOpen(!isOpen)}>\n <i>\n <MdKeyboardArrowLeft />\n </i>\n </div>\n </div>\n ) : null}\n </>\n );\n};\n\nDebugSidebar.propTypes = {\n itemEntity: PropTypes.string,\n itemId: PropTypes.string,\n debugMode: PropTypes.bool\n};\n\nDebugSidebar.defaultProps = {\n itemEntity: '',\n itemId: '',\n debugMode: false\n};\n\nexport default DebugSidebar;\n"],"mappings":"AAAA,OAAOA,KAAP,IAAgBC,QAAhB,EAA0BC,SAA1B,QAA2C,OAA3C;AACA,OAAOC,SAAP,MAAsB,YAAtB;AACA,OAAOC,UAAP,MAAuB,YAAvB;AACA,SAASC,IAAT,QAAqB,8BAArB;AACA,SAASC,mBAAT,QAAoC,gBAApC;AACA,SAASC,cAAT,EAAyBC,aAAzB,QAA8C,eAA9C;AACA,SAASC,UAAT,QAA2B,iBAA3B;;AAEA,MAAMC,YAAY,GAAG,CAAC;EAAEC,UAAF;EAAcC,MAAd;EAAsBC;AAAtB,CAAD,KAAuC;EAC1D,MAAM,CAACC,WAAD,EAAcC,cAAd,IAAgCd,QAAQ,CAACY,SAAD,CAA9C;EACA,MAAM,CAACG,MAAD,EAASC,SAAT,IAAsBhB,QAAQ,CAAC,IAAD,CAApC;EAEAC,SAAS,CACP,MAAM;IACJ,IAAIW,SAAS,KAAK,IAAlB,EAAwB;MACtBE,cAAc,CAACF,SAAD,CAAd;IACD,CAFD,MAEOL,aAAa,CAACO,cAAD,CAAb;EACR,CALM,EAMP,CAACF,SAAD,CANO,CAAT;EASA,MAAMK,QAAQ,GAAGd,UAAU,CAAC,eAAD,EAAkB;IAC3C,uBAAuBY,MADoB;IAE3C,wBAAwB,CAACA;EAFkB,CAAlB,CAA3B;EAKA,MAAMG,IAAI,GAAGZ,cAAc,CAAC;IAAEI,UAAF;IAAcC;EAAd,CAAD,CAA3B;EAEA,oBACE,0CACGE,WAAW,gBACV;IAAK,SAAS,EAAEI,QAAhB;IAA0B,eAAY;EAAtC,gBACE,oBAAC,IAAD;IAAM,IAAI,EAAEC;EAAZ,gBACE;IAAK,GAAG,EAAEV,UAAU,CAACW,GAArB;IAA0B,GAAG,EAAEX,UAAU,CAACY;EAA1C,EADF,eAEE,gDAFF,CADF,eAKE;IACE,IAAI,EAAC,QADP;IAEE,SAAS,EAAC,4BAFZ;IAGE,eAAY,sBAHd;IAIE,EAAE,EAAC,sBAJL;IAKE,OAAO,EAAE,MAAMJ,SAAS,CAAC,CAACD,MAAF;EAL1B,gBAME,4CACE,oBAAC,mBAAD,OADF,CANF,CALF,CADU,GAiBR,IAlBN,CADF;AAsBD,CA1CD;;AA4CAN,YAAY,CAACY,SAAb,GAAyB;EACvBX,UAAU,EAAER,SAAS,CAACoB,MADC;EAEvBX,MAAM,EAAET,SAAS,CAACoB,MAFK;EAGvBV,SAAS,EAAEV,SAAS,CAACqB;AAHE,CAAzB;AAMAd,YAAY,CAACe,YAAb,GAA4B;EAC1Bd,UAAU,EAAE,EADc;EAE1BC,MAAM,EAAE,EAFkB;EAG1BC,SAAS,EAAE;AAHe,CAA5B;AAMA,eAAeH,YAAf"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blaze-cms/nextjs-tools",
|
|
3
|
-
"version": "0.124.0-alpha.
|
|
3
|
+
"version": "0.124.0-alpha.39",
|
|
4
4
|
"description": "Blaze nextjs tools",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib-es/index.js",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"@blaze-cms/core-errors": "^0.118.0",
|
|
33
33
|
"@blaze-cms/core-errors-ui": "^0.119.0",
|
|
34
34
|
"@blaze-cms/core-ui": "^0.121.0",
|
|
35
|
-
"@blaze-cms/nextjs-components": "^0.124.0-alpha.
|
|
35
|
+
"@blaze-cms/nextjs-components": "^0.124.0-alpha.37",
|
|
36
36
|
"@blaze-cms/plugin-auth-fe": "^0.121.0",
|
|
37
|
-
"@blaze-cms/plugin-google-maps-fe": "^0.124.0-alpha.
|
|
38
|
-
"@blaze-cms/plugin-gtm-fe": "^0.124.0-alpha.
|
|
39
|
-
"@blaze-cms/plugin-page-builder-fe": "^0.124.0-alpha.
|
|
37
|
+
"@blaze-cms/plugin-google-maps-fe": "^0.124.0-alpha.39",
|
|
38
|
+
"@blaze-cms/plugin-gtm-fe": "^0.124.0-alpha.39",
|
|
39
|
+
"@blaze-cms/plugin-page-builder-fe": "^0.124.0-alpha.39",
|
|
40
40
|
"@blaze-cms/plugin-preview-fe": "^0.121.0",
|
|
41
41
|
"@blaze-cms/plugin-search-ui": "^0.124.0-alpha.21",
|
|
42
|
-
"@blaze-cms/react-page-builder": "^0.124.0-alpha.
|
|
42
|
+
"@blaze-cms/react-page-builder": "^0.124.0-alpha.39",
|
|
43
43
|
"@blaze-cms/setup-ui": "^0.92.0",
|
|
44
44
|
"autoprefixer": "^10.2.3",
|
|
45
45
|
"core-js": "^3.2.1",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"lib/*",
|
|
68
68
|
"lib-es/*"
|
|
69
69
|
],
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "26892b521a22b5225b74bd9c35e4cb6ed5922584"
|
|
71
71
|
}
|
|
@@ -2,6 +2,7 @@ import React, { useState, useEffect } from 'react';
|
|
|
2
2
|
import PropTypes from 'prop-types';
|
|
3
3
|
import classnames from 'classnames';
|
|
4
4
|
import { Link } from '@blaze-cms/nextjs-components';
|
|
5
|
+
import { MdKeyboardArrowLeft } from 'react-icons/md';
|
|
5
6
|
import { buildAdminHref, setBlazeDebug } from '../../helpers';
|
|
6
7
|
import { DEBUG_LOGO } from '../../constants';
|
|
7
8
|
|
|
@@ -39,7 +40,9 @@ const DebugSidebar = ({ itemEntity, itemId, debugMode }) => {
|
|
|
39
40
|
data-testid="debug-sidebar-button"
|
|
40
41
|
id="debug-sidebar-button"
|
|
41
42
|
onClick={() => setIsOpen(!isOpen)}>
|
|
42
|
-
<i
|
|
43
|
+
<i>
|
|
44
|
+
<MdKeyboardArrowLeft />
|
|
45
|
+
</i>
|
|
43
46
|
</div>
|
|
44
47
|
</div>
|
|
45
48
|
) : null}
|
|
@@ -23,10 +23,24 @@ exports[`DebugSidebar component should render without throwing error (isDebugMod
|
|
|
23
23
|
id="debug-sidebar-button"
|
|
24
24
|
role="button"
|
|
25
25
|
>
|
|
26
|
-
<i
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
<i>
|
|
27
|
+
<svg
|
|
28
|
+
fill="currentColor"
|
|
29
|
+
height="1em"
|
|
30
|
+
stroke="currentColor"
|
|
31
|
+
stroke-width="0"
|
|
32
|
+
viewBox="0 0 24 24"
|
|
33
|
+
width="1em"
|
|
34
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
35
|
+
>
|
|
36
|
+
<path
|
|
37
|
+
d="M0 0h24v24H0V0z"
|
|
38
|
+
fill="none"
|
|
39
|
+
/>
|
|
40
|
+
<path
|
|
41
|
+
d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"
|
|
42
|
+
/>
|
|
43
|
+
</svg>
|
|
30
44
|
</i>
|
|
31
45
|
</div>
|
|
32
46
|
</div>
|