@moneko/core 2.0.0-beta.22 → 2.0.0-beta.25

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 (58) hide show
  1. package/build/antd-config.d.ts +2 -0
  2. package/build/antd-config.js +1 -0
  3. package/build/common.js +1 -1
  4. package/build/modifyVars.d.ts +2 -0
  5. package/build/modifyVars.js +1 -0
  6. package/build/module.config.js +1 -1
  7. package/build/swcrc.js +1 -1
  8. package/build/webpack.common.js +1 -1
  9. package/lib/components/app-router/index.d.ts +3 -2
  10. package/lib/components/app-router/index.js +1 -1
  11. package/lib/components/app-router/index.js.map +1 -1
  12. package/lib/components/fallback/index.js +1 -1
  13. package/lib/components/fallback/index.js.map +1 -1
  14. package/lib/components/readme/index.d.ts +3 -0
  15. package/lib/components/readme/index.js +2 -0
  16. package/lib/components/readme/index.js.map +1 -0
  17. package/lib/components/readme/index.less +4 -0
  18. package/lib/packages/back-stage/app.js +1 -1
  19. package/lib/packages/back-stage/app.js.map +1 -1
  20. package/lib/packages/back-stage/bootstrap.d.ts +4 -0
  21. package/lib/packages/back-stage/bootstrap.js +1 -1
  22. package/lib/packages/back-stage/bootstrap.js.map +1 -1
  23. package/lib/packages/library/app.d.ts +4 -0
  24. package/lib/packages/library/app.js +1 -1
  25. package/lib/packages/library/app.js.map +1 -1
  26. package/lib/packages/mobile/app.d.ts +4 -0
  27. package/lib/packages/mobile/app.js +1 -1
  28. package/lib/packages/mobile/app.js.map +1 -1
  29. package/lib/packages/single-spa/app.d.ts +4 -0
  30. package/lib/packages/single-spa/app.js +1 -1
  31. package/lib/packages/single-spa/app.js.map +1 -1
  32. package/lib/packages/site/app.d.ts +4 -0
  33. package/lib/packages/site/app.js +1 -1
  34. package/lib/packages/site/app.js.map +1 -1
  35. package/lib/router/index.d.ts +3 -5
  36. package/lib/router/index.js +1 -1
  37. package/lib/router/index.js.map +1 -1
  38. package/lib/styles/animation.css +58 -0
  39. package/lib/styles/global.css +124 -0
  40. package/lib/styles/normalize.css +174 -0
  41. package/lib/styles/variables.css +40 -0
  42. package/lib/styles/vars.d.ts +0 -2
  43. package/lib/styles/vars.js +1 -1
  44. package/lib/styles/vars.js.map +1 -1
  45. package/lib/utils/index.d.ts +0 -1
  46. package/lib/utils/index.js +1 -1
  47. package/lib/utils/index.js.map +1 -1
  48. package/lib/utils/lazy-import.d.ts +34 -0
  49. package/lib/utils/lazy-import.js +2 -0
  50. package/lib/utils/lazy-import.js.map +1 -0
  51. package/package.json +11 -8
  52. package/typings/global.d.ts +2 -0
  53. package/lib/styles/animation.d.ts +0 -5
  54. package/lib/styles/animation.js +0 -2
  55. package/lib/styles/animation.js.map +0 -1
  56. package/lib/styles/normalize.d.ts +0 -2
  57. package/lib/styles/normalize.js +0 -2
  58. package/lib/styles/normalize.js.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/utils/lazy-import.ts"],"sourcesContent":["import React from 'react';\nimport { Outlet } from 'react-router-dom';\n\ntype SafeImportParams = {\n /** 文件路径 */\n filePath: string;\n /** src目录下的文件夹路径 ['src/pages' === 'pages'] */\n directory?: string;\n /** 重试次数 默认:2 */\n retriesLeft?: number;\n /** 加载错误时的回调 */\n onError?: () => void;\n /** 降级 */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n fallback?: any;\n};\n\n/**\n * 安全的import\n * @param {string} filePath 路径\n * @param {string} directory src目录下的文件夹路径 ['src/pages' === 'pages']\n * @param {number} [retriesLeft=2] 重试次数\n * @param {Function} onError 加载错误时的回调\n * @param {any} fallback 降级\n * @returns {Promise} LazyExoticComponent\n * */\nexport const safeImport = ({\n filePath,\n directory,\n retriesLeft = 2,\n onError,\n fallback,\n}: SafeImportParams): Promise<{\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n default: any;\n}> => {\n const filePaths = filePath.startsWith('/') ? filePath.slice(1) : filePath;\n const _directory = directory || 'pages';\n\n return new Promise((resolve) =>\n import(\n /* webpackChunkName: \"[request]\" */\n '@/' + _directory + (_directory === '' ? '' : '/') + filePaths\n )\n .then(resolve)\n .catch(() => {\n if (retriesLeft === 1) {\n if (onError) {\n onError();\n }\n return Promise.resolve({\n default: fallback,\n });\n }\n // 失败之后重载\n return safeImport({\n filePath,\n retriesLeft: retriesLeft - 1,\n directory,\n onError,\n fallback,\n });\n })\n );\n};\n\n/**\n * 动态引入\n * @param {string} filePath 文件路径\n * @param {string} directory 文件夹路径\n * @param {Function} onError 加载错误时的回调\n * @returns {Promise} LazyExoticComponent\n * */\nexport const lazyImport = (\n filePath: string,\n directory?: string,\n onError?: () => void\n): React.LazyExoticComponent<React.ComponentType> => {\n const filePaths = filePath.startsWith('/') ? filePath.slice(1) : filePath;\n const _directory = directory || 'pages';\n\n return React.lazy(() =>\n safeImport({\n filePath,\n directory,\n onError,\n fallback: React.createElement(\n 'div',\n {\n path: _directory + '/' + filePaths,\n },\n React.createElement(Outlet)\n ),\n })\n );\n};\n"],"names":["React","Outlet","safeImport","filePath","directory","retriesLeft","onError","fallback","filePaths","startsWith","slice","_directory","Promise","resolve","then","catch","default","lazyImport","lazy","createElement","path"],"mappings":"AAAA,OAAOA,UAAW,OAAQ,AAC1B,QAASC,MAAM,KAAQ,kBAAmB,AAyB1C,QAAO,IAAMC,WAAa,eASpB,KARJC,eAAAA,SACAC,gBAAAA,mCACAC,YAAAA,wCAAc,qBACdC,cAAAA,QACAC,eAAAA,SAKA,IAAMC,UAAYL,SAASM,UAAU,CAAC,KAAON,SAASO,KAAK,CAAC,GAAKP,QAAQ,CACzE,IAAMQ,WAAaP,WAAa,QAEhC,OAAO,IAAIQ,QAAQ,SAACC,gBAClB,MAAM,CAEJ,KAAOF,WAAcA,CAAAA,aAAe,GAAK,GAAK,GAAG,AAAD,EAAKH,WAEpDM,IAAI,CAACD,SACLE,KAAK,CAAC,UAAM,CACX,GAAIV,cAAgB,EAAG,CACrB,GAAIC,QAAS,CACXA,SACF,CAAC,AACD,OAAOM,QAAQC,OAAO,CAAC,CACrBG,QAAST,QACX,EACF,CAAC,AAED,OAAOL,WAAW,CAChBC,SAAAA,SACAE,YAAaA,YAAc,EAC3BD,UAAAA,UACAE,QAAAA,QACAC,SAAAA,QACF,EACF,IAEN,CAAE,AASF,QAAO,IAAMU,WAAa,SACxBd,SACAC,UACAE,QACmD,CACnD,IAAME,UAAYL,SAASM,UAAU,CAAC,KAAON,SAASO,KAAK,CAAC,GAAKP,QAAQ,CACzE,IAAMQ,WAAaP,WAAa,QAEhC,OAAOJ,MAAMkB,IAAI,CAAC,kBAChBhB,WAAW,CACTC,SAAAA,SACAC,UAAAA,UACAE,QAAAA,QACAC,SAAUP,MAAMmB,aAAa,CAC3B,MACA,CACEC,KAAMT,WAAa,IAAMH,SAC3B,EACAR,MAAMmB,aAAa,CAAClB,QAExB,IAEJ,CAAE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moneko/core",
3
- "version": "2.0.0-beta.22",
3
+ "version": "2.0.0-beta.25",
4
4
  "description": "core",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -15,8 +15,6 @@
15
15
  "author": "moneko",
16
16
  "license": "MIT",
17
17
  "dependencies": {
18
- "@emotion/css": "11.10.5",
19
- "@emotion/react": "11.10.5",
20
18
  "@mapbox/rehype-prism": "0.8.0",
21
19
  "@mdx-js/loader": "2.1.5",
22
20
  "@moneko/common": "1.0.5",
@@ -26,23 +24,26 @@
26
24
  "@swc/cli": "0.1.57",
27
25
  "@swc/core": "1.3.22",
28
26
  "@swc/helpers": "0.4.14",
29
- "@swc/plugin-emotion": "2.5.21",
30
27
  "@swc/plugin-transform-imports": "1.5.21",
31
28
  "add-asset-html-webpack-plugin": "5.0.2",
32
- "core-js": "3.26.1",
29
+ "antd-dayjs-webpack-plugin": "1.0.6",
30
+ "core-js": "3.27.2",
33
31
  "cross-env": "7.0.3",
34
- "css-loader": "6.7.2",
35
- "css-minimizer-webpack-plugin": "4.2.2",
32
+ "css-loader": "6.7.1",
33
+ "css-minimizer-webpack-plugin": "4.2.1",
36
34
  "css-unicode-loader": "1.0.3",
37
35
  "external-remotes-plugin": "1.0.0",
38
36
  "fastclick": "1.0.6",
39
37
  "html-webpack-plugin": "5.5.0",
40
38
  "i18n-hooks": "1.0.16",
39
+ "less": "4.1.3",
40
+ "less-loader": "11.1.0",
41
41
  "mini-css-extract-plugin": "2.6.1",
42
42
  "mini-idc": "1.0.17",
43
43
  "mini-svg-data-uri": "1.4.4",
44
44
  "path-to-regexp": "6.2.1",
45
45
  "portfinder": "1.0.32",
46
+ "react-activation": "0.12.0",
46
47
  "react-refresh": "0.14.0",
47
48
  "react-refresh-typescript": "2.0.7",
48
49
  "react-router": "6.4.2",
@@ -50,7 +51,9 @@
50
51
  "rehype-accessible-emojis": "0.3.2",
51
52
  "rehype-figure": "1.0.1",
52
53
  "style-loader": "3.3.1",
54
+ "style-resources-loader": "1.5.0",
53
55
  "swc-loader": "0.2.3",
56
+ "swc-plugin-import-on-demand": "1.0.2",
54
57
  "tinycolor2": "1.4.2",
55
58
  "ts-import-plugin": "2.0.0",
56
59
  "ts-loader": "9.4.1",
@@ -72,7 +75,7 @@
72
75
  "@types/tinycolor2": "^1.4.3",
73
76
  "@types/webfontloader": "^1.6.34",
74
77
  "@types/webpack-env": "^1.18.0",
75
- "antd": "5.0.5",
78
+ "antd": "4.20.2",
76
79
  "eslint-config-neko": "^1.0.15",
77
80
  "react": "^18.2.0",
78
81
  "shelljs": "^0.8.5",
@@ -74,6 +74,8 @@ export declare type ConfigType<T = 'tsc'> = {
74
74
  designSize: number;
75
75
  /** 自定义降级组件 */
76
76
  fallbackCompPath?: string | null;
77
+ /** less 全局变量 */
78
+ modifyVars: Record<string, string>;
77
79
  /** antd 主题配置 */
78
80
  antdThemeVariables: {
79
81
  compact?: boolean;
@@ -1,5 +0,0 @@
1
- export declare const routeInKeyframes: string;
2
- export declare const routeOutKeyframes: string;
3
- export declare const fadeInKeyframes: string;
4
- export declare const fadeOutKeyframes: string;
5
- export declare const avatarInKeyframes: string;
@@ -1,2 +0,0 @@
1
- function _taggedTemplateLiteral(strings,raw){if(!raw){raw=strings.slice(0)}return Object.freeze(Object.defineProperties(strings,{raw:{value:Object.freeze(raw)}}))}function _templateObject(){var data=_taggedTemplateLiteral(["\n from {\n transform: translate3d(0, 16px, 0);\n opacity: 0;\n }\n to {\n transform: translate3d(0, 0, 0);\n opacity: 1;\n }\n"]);_templateObject=function _templateObject(){return data};return data}function _templateObject1(){var data=_taggedTemplateLiteral(["\n from {\n transform: translate3d(0, 0, 0);\n opacity: 1;\n }\n to {\n z-index: -1;\n transform: translate3d(0, 1rem, 0);\n opacity: 0;\n }\n"]);_templateObject1=function _templateObject1(){return data};return data}function _templateObject2(){var data=_taggedTemplateLiteral(["\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n"]);_templateObject2=function _templateObject2(){return data};return data}function _templateObject3(){var data=_taggedTemplateLiteral(["\n from {\n opacity: 1;\n }\n to {\n opacity: 0;\n }\n"]);_templateObject3=function _templateObject3(){return data};return data}function _templateObject4(){var data=_taggedTemplateLiteral(["\n 0% {\n transform: scale(30);\n }\n 20% {\n transform: scale(30);\n }\n 100% {\n transform: scale(1);\n }\n"]);_templateObject4=function _templateObject4(){return data};return data}import{keyframes}from"@emotion/css";export var routeInKeyframes=keyframes(_templateObject());export var routeOutKeyframes=keyframes(_templateObject1());export var fadeInKeyframes=keyframes(_templateObject2());export var fadeOutKeyframes=keyframes(_templateObject3());export var avatarInKeyframes=keyframes(_templateObject4());
2
- //# sourceMappingURL=animation.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/styles/animation.ts"],"sourcesContent":["import { keyframes } from '@emotion/css';\n\nexport const routeInKeyframes = keyframes`\n from {\n transform: translate3d(0, 16px, 0);\n opacity: 0;\n }\n to {\n transform: translate3d(0, 0, 0);\n opacity: 1;\n }\n`;\nexport const routeOutKeyframes = keyframes`\n from {\n transform: translate3d(0, 0, 0);\n opacity: 1;\n }\n to {\n z-index: -1;\n transform: translate3d(0, 1rem, 0);\n opacity: 0;\n }\n`;\nexport const fadeInKeyframes = keyframes`\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n`;\nexport const fadeOutKeyframes = keyframes`\n from {\n opacity: 1;\n }\n to {\n opacity: 0;\n }\n`;\nexport const avatarInKeyframes = keyframes`\n 0% {\n transform: scale(30);\n }\n 20% {\n transform: scale(30);\n }\n 100% {\n transform: scale(1);\n }\n`;\n"],"names":["keyframes","routeInKeyframes","routeOutKeyframes","fadeInKeyframes","fadeOutKeyframes","avatarInKeyframes"],"mappings":"AAAA,o3CAAA,OAASA,SAAS,KAAQ,cAAe,AAEzC,QAAO,IAAMC,iBAAmBD,4BAS9B,AACF,QAAO,IAAME,kBAAoBF,6BAU/B,AACF,QAAO,IAAMG,gBAAkBH,6BAO7B,AACF,QAAO,IAAMI,iBAAmBJ,6BAO9B,AACF,QAAO,IAAMK,kBAAoBL,6BAU/B"}
@@ -1,2 +0,0 @@
1
- declare const normalizeCss = "\n h1 {\n font-size: 2em;\n margin: 0.67em 0;\n }\n hr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n }\n pre {\n font-family: monospace;\n font-size: 1em;\n }\n a {\n background-color: transparent;\n text-decoration: none;\n cursor: pointer;\n }\n abbr[title] {\n border-bottom: none;\n text-decoration: underline;\n text-decoration: underline dotted;\n }\n b,\n strong {\n font-weight: bolder;\n }\n code,\n kbd,\n samp {\n font-family: monospace;\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n img {\n border-style: none;\n }\n img,\n button {\n /* \u6D88\u9664\u952F\u9F7F */\n outline: 1px solid transparent;\n }\n button,\n input,\n optgroup,\n select,\n textarea {\n font-family: inherit;\n font-size: 100%;\n line-height: 1.15;\n margin: 0;\n }\n button,\n input {\n overflow: visible;\n }\n button,\n select {\n text-transform: none;\n }\n button,\n [type='button'],\n [type='reset'],\n [type='submit'] {\n /* stylelint-disable-next-line property-no-vendor-prefix */\n -webkit-appearance: button;\n }\n button::-moz-focus-inner,\n [type='button']::-moz-focus-inner,\n [type='reset']::-moz-focus-inner,\n [type='submit']::-moz-focus-inner {\n border-style: none;\n padding: 0;\n }\n button:-moz-focusring,\n [type='button']:-moz-focusring,\n [type='reset']:-moz-focusring,\n [type='submit']:-moz-focusring {\n outline: 1px dotted ButtonText;\n }\n fieldset {\n padding: 0.35em 0.75em 0.625em;\n }\n legend {\n box-sizing: border-box;\n color: inherit;\n display: table;\n max-width: 100%;\n padding: 0;\n white-space: normal;\n }\n progress {\n vertical-align: baseline;\n }\n textarea {\n overflow: auto;\n }\n [type='checkbox'],\n [type='radio'] {\n box-sizing: border-box;\n padding: 0;\n }\n [type='number']::-webkit-inner-spin-button,\n [type='number']::-webkit-outer-spin-button {\n height: auto;\n }\n [type='search'] {\n -webkit-appearance: textfield;\n outline-offset: -2px;\n }\n [type='search']::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-file-upload-button {\n -webkit-appearance: button;\n font: inherit;\n }\n details {\n display: block;\n }\n summary {\n display: list-item;\n }\n template {\n display: none;\n }\n [hidden] {\n display: none;\n }\n";
2
- export default normalizeCss;
@@ -1,2 +0,0 @@
1
- var normalizeCss="\n h1 {\n font-size: 2em;\n margin: 0.67em 0;\n }\n hr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n }\n pre {\n font-family: monospace;\n font-size: 1em;\n }\n a {\n background-color: transparent;\n text-decoration: none;\n cursor: pointer;\n }\n abbr[title] {\n border-bottom: none;\n text-decoration: underline;\n text-decoration: underline dotted;\n }\n b,\n strong {\n font-weight: bolder;\n }\n code,\n kbd,\n samp {\n font-family: monospace;\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n img {\n border-style: none;\n }\n img,\n button {\n /* 消除锯齿 */\n outline: 1px solid transparent;\n }\n button,\n input,\n optgroup,\n select,\n textarea {\n font-family: inherit;\n font-size: 100%;\n line-height: 1.15;\n margin: 0;\n }\n button,\n input {\n overflow: visible;\n }\n button,\n select {\n text-transform: none;\n }\n button,\n [type='button'],\n [type='reset'],\n [type='submit'] {\n /* stylelint-disable-next-line property-no-vendor-prefix */\n -webkit-appearance: button;\n }\n button::-moz-focus-inner,\n [type='button']::-moz-focus-inner,\n [type='reset']::-moz-focus-inner,\n [type='submit']::-moz-focus-inner {\n border-style: none;\n padding: 0;\n }\n button:-moz-focusring,\n [type='button']:-moz-focusring,\n [type='reset']:-moz-focusring,\n [type='submit']:-moz-focusring {\n outline: 1px dotted ButtonText;\n }\n fieldset {\n padding: 0.35em 0.75em 0.625em;\n }\n legend {\n box-sizing: border-box;\n color: inherit;\n display: table;\n max-width: 100%;\n padding: 0;\n white-space: normal;\n }\n progress {\n vertical-align: baseline;\n }\n textarea {\n overflow: auto;\n }\n [type='checkbox'],\n [type='radio'] {\n box-sizing: border-box;\n padding: 0;\n }\n [type='number']::-webkit-inner-spin-button,\n [type='number']::-webkit-outer-spin-button {\n height: auto;\n }\n [type='search'] {\n -webkit-appearance: textfield;\n outline-offset: -2px;\n }\n [type='search']::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-file-upload-button {\n -webkit-appearance: button;\n font: inherit;\n }\n details {\n display: block;\n }\n summary {\n display: list-item;\n }\n template {\n display: none;\n }\n [hidden] {\n display: none;\n }\n";export default normalizeCss;
2
- //# sourceMappingURL=normalize.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/styles/normalize.ts"],"sourcesContent":["const normalizeCss = `\n h1 {\n font-size: 2em;\n margin: 0.67em 0;\n }\n hr {\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n }\n pre {\n font-family: monospace;\n font-size: 1em;\n }\n a {\n background-color: transparent;\n text-decoration: none;\n cursor: pointer;\n }\n abbr[title] {\n border-bottom: none;\n text-decoration: underline;\n text-decoration: underline dotted;\n }\n b,\n strong {\n font-weight: bolder;\n }\n code,\n kbd,\n samp {\n font-family: monospace;\n font-size: 1em;\n }\n small {\n font-size: 80%;\n }\n sub,\n sup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n }\n sub {\n bottom: -0.25em;\n }\n sup {\n top: -0.5em;\n }\n img {\n border-style: none;\n }\n img,\n button {\n /* 消除锯齿 */\n outline: 1px solid transparent;\n }\n button,\n input,\n optgroup,\n select,\n textarea {\n font-family: inherit;\n font-size: 100%;\n line-height: 1.15;\n margin: 0;\n }\n button,\n input {\n overflow: visible;\n }\n button,\n select {\n text-transform: none;\n }\n button,\n [type='button'],\n [type='reset'],\n [type='submit'] {\n /* stylelint-disable-next-line property-no-vendor-prefix */\n -webkit-appearance: button;\n }\n button::-moz-focus-inner,\n [type='button']::-moz-focus-inner,\n [type='reset']::-moz-focus-inner,\n [type='submit']::-moz-focus-inner {\n border-style: none;\n padding: 0;\n }\n button:-moz-focusring,\n [type='button']:-moz-focusring,\n [type='reset']:-moz-focusring,\n [type='submit']:-moz-focusring {\n outline: 1px dotted ButtonText;\n }\n fieldset {\n padding: 0.35em 0.75em 0.625em;\n }\n legend {\n box-sizing: border-box;\n color: inherit;\n display: table;\n max-width: 100%;\n padding: 0;\n white-space: normal;\n }\n progress {\n vertical-align: baseline;\n }\n textarea {\n overflow: auto;\n }\n [type='checkbox'],\n [type='radio'] {\n box-sizing: border-box;\n padding: 0;\n }\n [type='number']::-webkit-inner-spin-button,\n [type='number']::-webkit-outer-spin-button {\n height: auto;\n }\n [type='search'] {\n -webkit-appearance: textfield;\n outline-offset: -2px;\n }\n [type='search']::-webkit-search-decoration {\n -webkit-appearance: none;\n }\n ::-webkit-file-upload-button {\n -webkit-appearance: button;\n font: inherit;\n }\n details {\n display: block;\n }\n summary {\n display: list-item;\n }\n template {\n display: none;\n }\n [hidden] {\n display: none;\n }\n`;\n\nexport default normalizeCss;\n"],"names":["normalizeCss"],"mappings":"AAAA,IAAMA,aAAgB,wkFAmJtB,gBAAeA,YAAa"}