npmapps 1.0.25 → 1.0.27

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 (213) hide show
  1. package/PUBLISH.md +268 -0
  2. package/app/.codegraph/daemon.pid +6 -0
  3. package/app/.eslintrc.js +19 -0
  4. package/app/README.md +24 -0
  5. package/app/babel.config.js +5 -0
  6. package/app/devtool-windows-amd64.zip +0 -0
  7. package/app/docs/superpowers/plans/2026-05-29-quill-editor.md +836 -0
  8. package/app/docs/superpowers/specs/2026-05-29-quill-editor-design.md +210 -0
  9. package/app/docs/superpowers/specs/2026-06-06-lazy-cascader-design.md +400 -0
  10. package/app/jsconfig.json +19 -0
  11. package/app/package-lock.json +21347 -0
  12. package/app/package.json +63 -0
  13. package/app/postcss.config.js +10 -0
  14. package/app/public/favicon.ico +0 -0
  15. package/app/public/index.html +17 -0
  16. package/app/public//344/270/200/351/224/256/351/273/221/346/232/227.html +136 -0
  17. package/app/src/App.vue +110 -0
  18. package/app/src/assets/bpmn-camunda.jpg +0 -0
  19. package/app/src/assets/css/diagram.less +17 -0
  20. package/app/src/assets/icon/Icon.less +31 -0
  21. package/app/src/assets/icon/font/app-codes.css +26 -0
  22. package/app/src/assets/icon/font/app.eot +0 -0
  23. package/app/src/assets/icon/font/app.svg +60 -0
  24. package/app/src/assets/icon/font/app.ttf +0 -0
  25. package/app/src/assets/icon/font/app.woff +0 -0
  26. package/app/src/assets/icon/font/app.woff2 +0 -0
  27. package/app/src/assets/icon/font/config.json +248 -0
  28. package/app/src/assets/icon/font/source/raw/align-bottom-tool.svg +30 -0
  29. package/app/src/assets/icon/font/source/raw/align-horizontal-center-tool.svg +85 -0
  30. package/app/src/assets/icon/font/source/raw/align-left-tool.svg +84 -0
  31. package/app/src/assets/icon/font/source/raw/align-right-tool.svg +80 -0
  32. package/app/src/assets/icon/font/source/raw/align-top-tool.svg +84 -0
  33. package/app/src/assets/icon/font/source/raw/align-vertical-center-tool.svg +89 -0
  34. package/app/src/assets/icon/font/source/raw/distribute-horizontally-tool.svg +95 -0
  35. package/app/src/assets/icon/font/source/raw/distribute-vertically-tool.svg +99 -0
  36. package/app/src/assets/icon/font/source/raw/set-color-tool.svg +111 -0
  37. package/app/src/assets/icon/font/source/symbols/align-bottom-tool.svg +30 -0
  38. package/app/src/assets/icon/font/source/symbols/align-horizontal-center-tool.svg +30 -0
  39. package/app/src/assets/icon/font/source/symbols/align-left-tool.svg +30 -0
  40. package/app/src/assets/icon/font/source/symbols/align-right-tool.svg +30 -0
  41. package/app/src/assets/icon/font/source/symbols/align-top-tool.svg +30 -0
  42. package/app/src/assets/icon/font/source/symbols/align-vertical-center-tool.svg +30 -0
  43. package/app/src/assets/icon/font/source/symbols/distribute-horizontally-tool.svg +30 -0
  44. package/app/src/assets/icon/font/source/symbols/distribute-vertically-tool.svg +30 -0
  45. package/app/src/assets/icon/font/source/symbols/set-color-tool.svg +63 -0
  46. package/app/src/assets/logo.png +0 -0
  47. package/app/src/components/EllTable/README.md +70 -0
  48. package/app/src/components/EllTable/article.md +184 -0
  49. package/app/src/components/EllTable/index.js +213 -0
  50. package/app/src/components/FormulaEditor/FunctionSelector.vue +123 -0
  51. package/app/src/components/FormulaEditor/OperatorSelector.vue +184 -0
  52. package/app/src/components/FormulaEditor/ParameterSelector.vue +123 -0
  53. package/app/src/components/FormulaEditor/api.js +69 -0
  54. package/app/src/components/FormulaEditor/index.vue +435 -0
  55. package/app/src/components/HelloWorld.vue +58 -0
  56. package/app/src/components/PageHeader/index.vue +158 -0
  57. package/app/src/components/Splitter/README.md +144 -0
  58. package/app/src/components/Splitter/example.vue +88 -0
  59. package/app/src/components/Splitter/index.vue +203 -0
  60. package/app/src/components/diagram/ToolBar.vue +357 -0
  61. package/app/src/components/diagram/customTranslate/customTranslate.js +12 -0
  62. package/app/src/components/diagram/customTranslate/translationsGerman.js +241 -0
  63. package/app/src/components/diagram/index.vue +261 -0
  64. package/app/src/components/diagram/xmlData.js +29 -0
  65. package/app/src/directives/filldown.js +155 -0
  66. package/app/src/directives/filldownTable.js +291 -0
  67. package/app/src/main.js +40 -0
  68. package/app/src/router/index.js +63 -0
  69. package/app/src/store/index.js +23 -0
  70. package/app/src/utils/winBox.js +23 -0
  71. package/app/src/views/Extend/A.vue +12 -0
  72. package/app/src/views/Extend/B.vue +10 -0
  73. package/app/src/views/Extend/MagicalComponentsForELFormItem.vue +87 -0
  74. package/app/src/views/Extend/index.vue +59 -0
  75. package/app/src/views/Extend/tableMouseHorizontalWheel.vue +193 -0
  76. package/app/src/views/Home.vue +37 -0
  77. package/app/src/views/RouterJump.vue +155 -0
  78. package/app/src/views/css.vue +57 -0
  79. package/app/src/views/cssComponents/EllipsisText.vue +83 -0
  80. package/app/src/views/cssComponents/HoverCard.vue +79 -0
  81. package/app/src/views/cssComponents/TableHover.vue +140 -0
  82. package/app/src/views/cssComponents/inputSlo.vue +52 -0
  83. package/app/src/views/cssComponents/tableFixed.vue +158 -0
  84. package/app/src/views/echarts/echart-dome.vue +82 -0
  85. package/app/src/views/echarts/index.vue +118 -0
  86. package/app/src/views/echarts/pei3d.vue +667 -0
  87. package/app/src/views/element/bpmn/index.vue +18 -0
  88. package/app/src/views/element/components/attendanceCycle/index.vue +131 -0
  89. package/app/src/views/element/components/attendanceGroup/index.vue +147 -0
  90. package/app/src/views/element/components/attendancePersonnel/index.vue +158 -0
  91. package/app/src/views/element/components/companyCalendar/index.vue +147 -0
  92. package/app/src/views/element/components/shift/index.vue +147 -0
  93. package/app/src/views/element/components/shiftRotationSystem/index.vue +147 -0
  94. package/app/src/views/element/elTableJsx/columnManagement.vue +340 -0
  95. package/app/src/views/element/elTableJsx/dialogInput.vue +71 -0
  96. package/app/src/views/element/elTableJsx/elTableJsx.vue +1826 -0
  97. package/app/src/views/element/elTableJsx/formTable.vue +598 -0
  98. package/app/src/views/element/elTableJsx/index.vue +29 -0
  99. package/app/src/views/element/elTableJsx/simpleTable.vue +192 -0
  100. package/app/src/views/element/elTableJsx.zip +0 -0
  101. package/app/src/views/element/index.vue +44 -0
  102. package/app/src/views/element/lazyCascader/LazyCascader.vue +302 -0
  103. package/app/src/views/element/lazyCascader/data.js +205 -0
  104. package/app/src/views/element/lazyCascader/index.vue +315 -0
  105. package/app/src/views/element/quillEditor/README.md +163 -0
  106. package/app/src/views/element/quillEditor/example.vue +314 -0
  107. package/app/src/views/element/quillEditor/index.vue +409 -0
  108. package/app/src/views/element/quillEditor/toolbar.js +122 -0
  109. package/app/vue.config.js +15 -0
  110. package/package.json +1 -1
  111. package/app/wujie-vue3-child/.claude/settings.local.json +0 -8
  112. package/app/wujie-vue3-child/.vscode/extensions.json +0 -3
  113. package/app/wujie-vue3-child/PROJECT_MEMORY.md +0 -427
  114. package/app/wujie-vue3-child/README.md +0 -5
  115. package/app/wujie-vue3-child/index.html +0 -13
  116. package/app/wujie-vue3-child/package-lock.json +0 -5744
  117. package/app/wujie-vue3-child/package.json +0 -28
  118. package/app/wujie-vue3-child/public/vite.svg +0 -1
  119. package/app/wujie-vue3-child/src/App.vue +0 -130
  120. package/app/wujie-vue3-child/src/assets/vue.svg +0 -1
  121. package/app/wujie-vue3-child/src/components/HelloWorld.vue +0 -43
  122. package/app/wujie-vue3-child/src/components/SmartAnchorTabs/index.jsx +0 -224
  123. package/app/wujie-vue3-child/src/components/SmartAnchorTabs/style.css +0 -154
  124. package/app/wujie-vue3-child/src/components/tags-view.vue +0 -193
  125. package/app/wujie-vue3-child/src/components/tags-view1.vue +0 -131
  126. package/app/wujie-vue3-child/src/directives/aiLoading.js +0 -182
  127. package/app/wujie-vue3-child/src/hooks/useClickOutside.js +0 -11
  128. package/app/wujie-vue3-child/src/hooks/useTableDragSort.js +0 -28
  129. package/app/wujie-vue3-child/src/main.js +0 -18
  130. package/app/wujie-vue3-child/src/router/index.js +0 -104
  131. package/app/wujie-vue3-child/src/store/tagsViewStroe.js +0 -34
  132. package/app/wujie-vue3-child/src/style.css +0 -171
  133. package/app/wujie-vue3-child/src/views/aiCoach/collapseExpand/index.jsx +0 -108
  134. package/app/wujie-vue3-child/src/views/aiCoach/collapseExpand/index.module.scss +0 -97
  135. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/README.md +0 -836
  136. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/REFLEX_EXAMPLES.md +0 -728
  137. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.jsx +0 -687
  138. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentPersonnelSelector.module.scss +0 -560
  139. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.jsx +0 -570
  140. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelector.module.scss +0 -330
  141. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.jsx +0 -378
  142. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/DepartmentSelectorV2.module.scss +0 -228
  143. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.jsx +0 -399
  144. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/OptionsSelector.module.scss +0 -252
  145. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.jsx +0 -585
  146. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PersonnelSelector.module.scss +0 -331
  147. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.jsx +0 -392
  148. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/PopoverSelector.module.scss +0 -39
  149. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/README.md +0 -248
  150. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/components/SelectorTrigger.jsx +0 -194
  151. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/index.jsx +0 -1459
  152. package/app/wujie-vue3-child/src/views/aiCoach/departmentPersonnel/mockData.js +0 -301
  153. package/app/wujie-vue3-child/src/views/aiCoach/dialogueSegment/index.jsx +0 -182
  154. package/app/wujie-vue3-child/src/views/aiCoach/dialogueSegment/index.module.scss +0 -28
  155. package/app/wujie-vue3-child/src/views/aiCoach/index.jsx +0 -375
  156. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.jsx +0 -121
  157. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ChartsPanel/index.module.scss +0 -76
  158. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/DonutChart/index.jsx +0 -104
  159. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.jsx +0 -75
  160. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/PracticeTable/index.module.scss +0 -12
  161. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.jsx +0 -62
  162. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankBarChart/index.module.scss +0 -43
  163. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.jsx +0 -29
  164. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingGroup/index.module.scss +0 -5
  165. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.jsx +0 -58
  166. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/RankingList/index.module.scss +0 -85
  167. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.jsx +0 -92
  168. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/ScriptStatsPanel/index.module.scss +0 -56
  169. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.jsx +0 -40
  170. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/StatCardsRow/index.module.scss +0 -53
  171. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsDonut.jsx +0 -106
  172. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/components/echarts/EchartsRankBar.jsx +0 -132
  173. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.jsx +0 -176
  174. package/app/wujie-vue3-child/src/views/aiCoach/practiceStatus/index.module.scss +0 -96
  175. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.jsx +0 -162
  176. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/CoachReport/index.module.scss +0 -16
  177. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.jsx +0 -29
  178. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ComprehensiveEvaluation/index.module.scss +0 -25
  179. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.jsx +0 -106
  180. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueBubble/index.module.scss +0 -164
  181. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.jsx +0 -182
  182. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DialogueRecord/index.module.scss +0 -203
  183. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.jsx +0 -145
  184. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionDetail/index.module.scss +0 -126
  185. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.jsx +0 -67
  186. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/DimensionScores/index.module.scss +0 -105
  187. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.jsx +0 -81
  188. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ReportHeader/index.module.scss +0 -47
  189. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.jsx +0 -64
  190. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/RoleInfo/index.module.scss +0 -85
  191. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.jsx +0 -39
  192. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/ScoreBadge/index.module.scss +0 -44
  193. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.jsx +0 -83
  194. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/components/SubDimensionItem/index.module.scss +0 -101
  195. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.jsx +0 -50
  196. package/app/wujie-vue3-child/src/views/aiCoach/reportDetail/index.module.scss +0 -25
  197. package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/index.jsx +0 -196
  198. package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/index.module.scss +0 -41
  199. package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/inputColumn/index.jsx +0 -183
  200. package/app/wujie-vue3-child/src/views/aiCoach/scriptTable/inputColumn/index.module.scss +0 -115
  201. package/app/wujie-vue3-child/src/views/child-to-parent.vue +0 -117
  202. package/app/wujie-vue3-child/src/views/home.vue +0 -53
  203. package/app/wujie-vue3-child/src/views/jsx/btnSelect/btnSelect.vue +0 -169
  204. package/app/wujie-vue3-child/src/views/jsx/btnSelect/index.vue +0 -69
  205. package/app/wujie-vue3-child/src/views/jsx/com.vue +0 -44
  206. package/app/wujie-vue3-child/src/views/jsx/dialog.jsx +0 -66
  207. package/app/wujie-vue3-child/src/views/jsx/index.vue +0 -72
  208. package/app/wujie-vue3-child/src/views/jsx/props.vue +0 -33
  209. package/app/wujie-vue3-child/src/views/parent-to-child.vue +0 -225
  210. package/app/wujie-vue3-child/src/views/phone-code.vue +0 -318
  211. package/app/wujie-vue3-child/src/views/router-jump.vue +0 -123
  212. package/app/wujie-vue3-child/src/views/test.vue +0 -192
  213. package/app/wujie-vue3-child/vite.config.js +0 -15
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "wujie-vue2-child",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "dev": "vue-cli-service serve",
7
+ "build": "vue-cli-service build",
8
+ "lint": "vue-cli-service lint"
9
+ },
10
+ "dependencies": {
11
+ "bpmn-js": "^7.4.0",
12
+ "bpmn-js-properties-panel": "^0.37.3",
13
+ "camunda-bpmn-moddle": "^4.4.0",
14
+ "codemirror": "^5.58.2",
15
+ "core-js": "^3.8.3",
16
+ "diagram-js-minimap": "^2.0.3",
17
+ "echarts": "^5.5.1",
18
+ "echarts-gl": "^2.0.9",
19
+ "element-ui": "^2.15.14",
20
+ "less": "^4.3.0",
21
+ "less-loader": "^12.3.0",
22
+ "lodash": "^4.17.21",
23
+ "quill": "^2.0.2",
24
+ "quill-table-better": "^1.2.3",
25
+ "sortablejs": "^1.15.6",
26
+ "vue": "^2.6.14",
27
+ "vue-codemirror": "^4.0.6",
28
+ "vue-router": "^3.6.5",
29
+ "vuedraggable": "^2.24.3",
30
+ "vuex": "^3.5.1",
31
+ "winbox": "^0.2.82"
32
+ },
33
+ "devDependencies": {
34
+ "@babel/core": "^7.12.16",
35
+ "@babel/eslint-parser": "^7.12.16",
36
+ "@vue/cli-plugin-babel": "~5.0.0",
37
+ "@vue/cli-plugin-eslint": "~5.0.0",
38
+ "@vue/cli-service": "~5.0.0",
39
+ "eslint": "^7.32.0",
40
+ "eslint-plugin-vue": "^8.0.3",
41
+ "postcss-pxtorem": "^6.1.0",
42
+ "vue-template-compiler": "^2.6.14"
43
+ },
44
+ "eslintConfig": {
45
+ "root": true,
46
+ "env": {
47
+ "node": true
48
+ },
49
+ "extends": [
50
+ "plugin:vue/essential",
51
+ "eslint:recommended"
52
+ ],
53
+ "parserOptions": {
54
+ "parser": "@babel/eslint-parser"
55
+ },
56
+ "rules": {}
57
+ },
58
+ "browserslist": [
59
+ "> 1%",
60
+ "last 2 versions",
61
+ "not dead"
62
+ ]
63
+ }
@@ -0,0 +1,10 @@
1
+ // module.exports = {
2
+ // plugins: {
3
+ // 'postcss-pxtorem': {
4
+ // rootValue: 16, // 根元素字体大小
5
+ // propList: ['*'], // 需要转换的属性,这里表示全部都进行转换
6
+ // selectorBlackList: [], // 不进行px转换的选择器
7
+ // minPixelValue: 2 // 小于2px的不会被转换
8
+ // }
9
+ // }
10
+ // }
Binary file
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html lang="">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
+ <link rel="icon" href="<%= BASE_URL %>favicon.ico">
8
+ <title><%= htmlWebpackPlugin.options.title %></title>
9
+ </head>
10
+ <body>
11
+ <noscript>
12
+ <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13
+ </noscript>
14
+ <div id="app"></div>
15
+ <!-- built files will be auto injected -->
16
+ </body>
17
+ </html>
@@ -0,0 +1,136 @@
1
+ <!doctype html>
2
+ <html lang="en" class="dark">
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="referrer" content="no-referrer" />
7
+ <meta name="viewport"
8
+ content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />
9
+ <title>一键暗黑模式</title>
10
+ <style>
11
+ html,
12
+ body,
13
+ .container {
14
+ width: 100%;
15
+ height: 100%;
16
+ display: flex;
17
+ flex-direction: column;
18
+ overflow: hidden;
19
+ background-color: #fff;
20
+ }
21
+
22
+ iframe {
23
+ flex: 1;
24
+ width: 100%;
25
+ background-color: #fff;
26
+ transition: all 300ms;
27
+ }
28
+
29
+ html.dark {
30
+ filter: invert(1) hue-rotate(180deg);
31
+
32
+ img,
33
+ video,
34
+ .avatar,
35
+ .image,
36
+ .thumb {
37
+ filter: invert(1) hue-rotate(180deg);
38
+ }
39
+ }
40
+
41
+ button {
42
+ width: 100px;
43
+ height: 30px;
44
+ background-color: #007bff;
45
+ border: none;
46
+ border-radius: 4px;
47
+ color: #fff;
48
+ font-size: 14px;
49
+ cursor: pointer;
50
+ transition: background-color 0.3s ease;
51
+ margin-bottom: 5px;
52
+ }
53
+
54
+ button:hover {
55
+ background-color: #0056b3;
56
+ }
57
+
58
+ button:active {
59
+ background-color: #e0e0e0;
60
+ }
61
+
62
+ ::view-transition-old(root),
63
+ ::view-transition-new(root) {
64
+ animation: none;
65
+ mix-blend-mode: normal;
66
+ }
67
+
68
+ ::view-transition-old(root) {
69
+ z-index: 1;
70
+ }
71
+
72
+ ::view-transition-new(root) {
73
+ z-index: 2147483646;
74
+ }
75
+
76
+ html.dark::view-transition-old(root) {
77
+ z-index: 2147483646;
78
+ }
79
+
80
+ html.dark::view-transition-new(root) {
81
+ z-index: 1;
82
+ }
83
+ </style>
84
+ </head>
85
+
86
+ <body>
87
+ <div class="container">
88
+ <div>
89
+ <button id="btn">切换主题</button>
90
+ </div>
91
+ <iframe src="https://web.vip.miui.com/page/info/mio/mio/detail?postId=50325712&ref=miui_banner"></iframe>
92
+ </div>
93
+ <script>
94
+ document
95
+ .getElementById('btn')
96
+ .addEventListener('click', function (event) {
97
+ toggleTheme(event);
98
+ });
99
+
100
+ // 切换主题
101
+ function toggleTheme(event) {
102
+ // 检查浏览器是否支持 View Transition API
103
+ if (!document.startViewTransition) {
104
+ // 不支持则直接切换主题,不添加动画
105
+ document.documentElement.classList.toggle('dark')
106
+ return
107
+ }
108
+ const transition = document.startViewTransition(() => {
109
+ document.documentElement.classList.toggle('dark')
110
+ })
111
+
112
+ transition.ready.then(() => {
113
+ const { clientX, clientY } = event
114
+
115
+ const endRadius = Math.hypot(Math.max(clientX, innerWidth - clientX), Math.max(clientY, innerHeight - clientY))
116
+
117
+ const clipPath = [`circle(0px at ${clientX}px ${clientY}px)`, `circle(${endRadius}px at ${clientX}px ${clientY}px)`]
118
+
119
+ const isDark = document.documentElement.classList.contains('dark')
120
+
121
+ document.documentElement.animate(
122
+ {
123
+ clipPath: isDark ? clipPath.reverse() : clipPath
124
+ },
125
+ {
126
+ duration: 450,
127
+ easing: 'ease-in',
128
+ pseudoElement: isDark ? '::view-transition-old(root)' : '::view-transition-new(root)'
129
+ }
130
+ )
131
+ })
132
+ }
133
+ </script>
134
+ </body>
135
+
136
+ </html>
@@ -0,0 +1,110 @@
1
+ <template>
2
+ <div class="app-container">
3
+ <!-- 添加菜单和内容容器 -->
4
+ <el-menu
5
+ :default-active="activeIndex"
6
+ class="el-menu-demo"
7
+ mode="horizontal"
8
+ @select="handleSelect"
9
+ >
10
+ <template v-for="item in menuItems" >
11
+ <el-sub-menu v-if="item.children?.length" :index="item.name" :key="item.name">
12
+ <template #title>{{ item.meta.title }}</template>
13
+ <el-menu-item
14
+ v-for="child in item.children"
15
+ :key="child.name"
16
+ :index="child.name"
17
+ >
18
+ {{ child.meta.title }}
19
+ </el-menu-item>
20
+ </el-sub-menu>
21
+ <el-menu-item v-else :index="item.name">
22
+ {{ item.meta.title }}
23
+ </el-menu-item>
24
+ </template>
25
+ </el-menu>
26
+
27
+ <div class="content-container">
28
+ <router-view></router-view>
29
+ </div>
30
+ </div>
31
+ </template>
32
+
33
+ <script>
34
+ export default {
35
+ name: 'App',
36
+ data() {
37
+ return {
38
+ // 添加菜单项和当前激活的索引
39
+ menuItems: [], // 这里需要根据实际情况填充数据
40
+ activeIndex: 'Home'
41
+ }
42
+ },
43
+ created() {
44
+ window.$wujie?.bus.$on('router-jump', (data) => {
45
+ if(data.app === 'vue2-child'){
46
+ this.$router.push({
47
+ path: data.path,
48
+ query: data.query
49
+ })
50
+ }
51
+ })
52
+ window.$wujie?.bus.$emit('loaded', 'vue2-child')
53
+ },
54
+ mounted() {
55
+ this.menuItems = this.$router.options.routes
56
+ },
57
+ // 监听路由变化
58
+ watch: {
59
+ $route(to, from) {
60
+ this.activeIndex = to.name
61
+ }
62
+ },
63
+ methods: {
64
+ handleSelect(key) {
65
+ // 添加选择处理逻辑
66
+ console.log('Selected menu item:', key);
67
+ this.$router.push({
68
+ name: key
69
+ })
70
+ }
71
+ }
72
+ }
73
+ </script>
74
+
75
+ <style>
76
+ body {
77
+ margin: 0;
78
+ padding: 0;
79
+ }
80
+ </style>
81
+
82
+ <style scoped>
83
+
84
+ .app-container {
85
+ min-height: 100vh;
86
+ }
87
+
88
+ .el-menu-demo {
89
+ padding-left: 20px;
90
+ height: 50px;
91
+ line-height: 50px;
92
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
93
+ }
94
+
95
+ :deep(.el-menu-item) {
96
+ height: 50px !important;
97
+ line-height: 50px !important;
98
+ padding: 0 20px !important;
99
+ font-size: 16px !important;
100
+ }
101
+
102
+ .content-container {
103
+ }
104
+
105
+ :deep(.el-menu-item:hover),
106
+ :deep(.el-menu-item.is-active) {
107
+ background-color: #f5f7fa;
108
+ color: #409eff;
109
+ }
110
+ </style>
Binary file
@@ -0,0 +1,17 @@
1
+ .djs-minimap.open .toggle:before {
2
+ content: '\E80A';
3
+ font-family: 'app';
4
+ font-size: 14px;
5
+ }
6
+
7
+ .djs-minimap:not(.open) .toggle:before {
8
+ content: '\F278';
9
+ font-family: 'app';
10
+ font-size: 20px;
11
+ }
12
+
13
+ .djs-minimap:not(.open) .toggle:hover,
14
+ .djs-minimap.open .toggle:hover {
15
+ cursor: pointer;
16
+ color: #005df7;
17
+ }
@@ -0,0 +1,31 @@
1
+ @font-face {
2
+ font-family: 'app';
3
+ src: url('./font/app.eot?99253374');
4
+ src: url('./font/app.eot?99253374#iefix') format('embedded-opentype'),
5
+ url('./font/app.woff?99253374') format('woff'),
6
+ url('./font/app.ttf?99253374') format('truetype'),
7
+ url('./font/app.svg?99253374#bpmn-io') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+
12
+ [class^="app-icon-"]:before,
13
+ [class*=" app-icon-"]:before {
14
+ font-family: "app";
15
+
16
+ font-style: normal;
17
+ font-weight: normal;
18
+ speak: none;
19
+
20
+ display: inline-block;
21
+ text-decoration: inherit;
22
+ width: 1em;
23
+ text-align: center;
24
+
25
+ font-variant: normal;
26
+ text-transform: none;
27
+
28
+ line-height: 1em;
29
+ }
30
+
31
+ @import (less) "./font/app-codes.css";
@@ -0,0 +1,26 @@
1
+
2
+ .app-icon-align-left-tool:before { content: '\e801'; } /* '' */
3
+ .app-icon-align-center-tool:before { content: '\e802'; } /* '' */
4
+ .app-icon-align-right-tool:before { content: '\e803'; } /* '' */
5
+ .app-icon-align-top-tool:before { content: '\e804'; } /* '' */
6
+ .app-icon-align-middle-tool:before { content: '\e808'; } /* '' */
7
+ .app-icon-align-bottom-tool:before { content: '\e800'; } /* '' */
8
+ .app-icon-deploy:before { content: '\e805'; } /* '' */
9
+ .app-icon-distribute-horizontal-tool:before { content: '\e806'; } /* '' */
10
+ .app-icon-distribute-vertical-tool:before { content: '\e807'; } /* '' */
11
+ .app-icon-minimize:before { content: '\e80a'; } /* '' */
12
+ .app-icon-set-color-tool:before { content: '\e80b'; } /* '' */
13
+ .app-icon-map:before { content: '\f278'; } /* '' */
14
+ .app-icon-loading:before { content: '\f3b8'; } /* '' */
15
+ .app-icon-menu:before { content: '\f3b9'; } /* '' */
16
+ .app-icon-plus:before { content: '\f3ba'; } /* '' */
17
+ .app-icon-minus:before { content: '\f3bb'; } /* '' */
18
+ .app-icon-picture:before { content: '\f3bc'; } /* '' */
19
+ .app-icon-new:before { content: '\f3bd'; } /* '' */
20
+ .app-icon-open:before { content: '\f3be'; } /* '' */
21
+ .app-icon-undo:before { content: '\f3bf'; } /* '' */
22
+ .app-icon-redo:before { content: '\f3c0'; } /* '' */
23
+ .app-icon-size-reset:before { content: '\f3c1'; } /* '' */
24
+ .app-icon-properties:before { content: '\f3c2'; } /* '' */
25
+ .app-icon-save:before { content: '\f422'; } /* '' */
26
+ .app-icon-save-as:before { content: '\f423'; } /* '' */
Binary file
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Copyright (C) 2018 by original authors @ fontello.com</metadata>
5
+ <defs>
6
+ <font id="app" horiz-adv-x="1000" >
7
+ <font-face font-family="app" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
8
+ <missing-glyph horiz-adv-x="1000" />
9
+ <glyph glyph-name="align-bottom-tool" unicode="&#xe800;" d="M0 706l0-571 0-71 285 0 71 0 286 0 71 0 285 0 0 71 0 571-36 0-249 0 0-571-71 0 0 357-36 0-250 0 0-357-71 0 0 571-35 0-250 0z m71-72l143 0 0-499-143 0 0 499z m713 0l143 0 0-499-143 0 0 499z m-356-214l142 0 0-285-142 0 0 285z" horiz-adv-x="1000" />
10
+
11
+ <glyph glyph-name="align-left-tool" unicode="&#xe801;" d="M143 848l0-285 0-71 0-286 0-71 0-285 71 0 570 0 0 36 0 249-570 0 0 71 356 0 0 36 0 250-356 0 0 71 570 0 0 36 0 249-570 0-71 0z m71-71l499 0 0-143-499 0 0 143z m0-357l285 0 0-142-285 0 0 142z m0-356l499 0 0-143-499 0 0 143z" horiz-adv-x="1000" />
12
+
13
+ <glyph glyph-name="align-horizontal-center-tool" unicode="&#xe802;" d="M143 848l0-285 35 0 285 0 0-71-178 0 0-286 36 0 145 0 0-71-323 0 0-285 35 0 678 0 0 285-318 0 0 71 175 0 0 286-178 0 0 71 321 0 0 285-713 0z m71-71l570 0 0-143-570 0 0 143z m142-357l286 0 0-142-286 0 0 142z m-142-356l570 0 0-143-570 0 0 143z" horiz-adv-x="1000" />
14
+
15
+ <glyph glyph-name="align-right-tool" unicode="&#xe803;" d="M214 848l0-285 36 0 534 0 0-71-356 0 0-286 35 0 321 0 0-71-570 0 0-285 36 0 534 0 72 0 0 285 0 71 0 286 0 71 0 285-72 0-570 0z m71-71l499 0 0-143-499 0 0 143z m214-357l285 0 0-142-285 0 0 142z m-214-356l499 0 0-143-499 0 0 143z" horiz-adv-x="1000" />
16
+
17
+ <glyph glyph-name="align-top-tool" unicode="&#xe804;" d="M0 706l0-72 0-570 285 0 0 36 0 534 71 0 0-356 286 0 0 35 0 321 71 0 0-570 285 0 0 36 0 534 0 72-285 0-713 0z m71-72l143 0 0-499-143 0 0 499z m357 0l142 0 0-285-142 0 0 285z m356 0l143 0 0-499-143 0 0 499z" horiz-adv-x="1000" />
18
+
19
+ <glyph glyph-name="deploy" unicode="&#xe805;" d="M714 29q0 14-10 25t-25 10-25-10-11-25 11-25 25-11 25 11 10 25z m143 0q0 14-10 25t-26 10-25-10-10-25 10-25 25-11 26 11 10 25z m72 125v-179q0-22-16-38t-38-16h-821q-23 0-38 16t-16 38v179q0 22 16 38t38 15h238q12-31 39-51t62-20h143q34 0 61 20t40 51h238q22 0 38-15t16-38z m-182 361q-9-22-33-22h-143v-250q0-15-10-25t-25-11h-143q-15 0-25 11t-11 25v250h-143q-23 0-33 22-9 22 8 39l250 250q10 10 25 10t25-10l250-250q18-17 8-39z" horiz-adv-x="928.6" />
20
+
21
+ <glyph glyph-name="distribute-horizontally-tool" unicode="&#xe806;" d="M214 706l0-72 0-71-214 0 0-36 0-534 285 0 0 570 0 71 178 0 0-71-107 0 0-36 0-392 286 0 0 428-107 0 0 71 178 0 0-71 0-36 0-534 285 0 0 570-214 0 0 71 0 72-570 0z m-143-214l143 0 0-428-143 0 0 428z m357 0l142 0 0-286-142 0 0 286z m356 0l143 0 0-428-143 0 0 428z" horiz-adv-x="1000" />
22
+
23
+ <glyph glyph-name="distribute-vertically-tool" unicode="&#xe807;" d="M285 848l0-214-71 0-71 0 0-570 71 0 71 0 0-214 36 0 535 0 0 285-571 0-71 0 0 178 71 0 0-107 36 0 392 0 0 286-428 0 0-107-71 0 0 178 71 0 36 0 535 0 0 285-571 0z m71-71l428 0 0-143-428 0 0 143z m0-357l286 0 0-142-286 0 0 142z m0-356l428 0 0-143-428 0 0 143z" horiz-adv-x="1000" />
24
+
25
+ <glyph glyph-name="align-vertical-center-tool" unicode="&#xe808;" d="M0 706l0-36 0-677 285 0 0 318 71 0 0-176 286 0 0 178 71 0 0-320 285 0 0 713-285 0 0-36 0-285-71 0 0 178-286 0 0-36 0-145-71 0 0 324-285 0z m71-72l143 0 0-570-143 0 0 570z m713 0l143 0 0-570-143 0 0 570z m-356-142l142 0 0-286-142 0 0 286z" horiz-adv-x="1000" />
26
+
27
+ <glyph glyph-name="minimize" unicode="&#xe80a;" d="M156 146l-106 100 296 0 0-296-100 106-146-156-100 100z m744 554l-154-144 104-100-294 0 0 294 100-104 144 154z" horiz-adv-x="900" />
28
+
29
+ <glyph glyph-name="set-color-tool" unicode="&#xe80b;" d="M838 836l-210-210-57-57-105 29-108 31-2-2 0 0-87-87 209-209 209-210 87 88 0 0 2 2-31 108-27 97 60 60 210 210-150 150z m-632-359l-194-195 209-209 209-209 194 195-209 209-209 209z" horiz-adv-x="1000" />
30
+
31
+ <glyph glyph-name="map" unicode="&#xf278;" d="M1127 844q16-11 16-30v-785q0-12-6-20t-16-13l-358-143q-13-6-26 0l-344 137-344-137q-5-3-13-3-11 0-20 6-16 11-16 30v785q0 12 6 21t16 12l358 143q13 6 26 0l344-137 344 137q18 8 33-3z m-716-75v-709l321-129v709z m-340-122v-708l304 121v709z m1000-594v708l-303-121v-709z" horiz-adv-x="1142.9" />
32
+
33
+ <glyph glyph-name="loading" unicode="&#xf3b8;" d="M462 850c-6 0-11-5-11-11l0-183 0 0c0-6 5-11 11-11l69 0c1 0 1 0 1 0 7 0 12 5 12 11l0 183 0 0c0 6-5 11-12 11l-69 0c0 0 0 0-1 0z m250-47c-4 1-8-2-10-5l-91-158 0 0c-4-6-2-13 4-16l60-34c0-1 0-1 0-1 6-3 13-1 16 4l91 158c3 6 2 13-4 16l-61 35c-1 1-3 1-5 1z m-428-2c-2 0-4-1-6-2l-61-35c-5-3-7-10-4-16l91-157c0 0 0 0 0 0 3-6 10-8 16-5l61 35c5 4 7 11 4 16l-91 157c0 1 0 1 0 1-2 4-6 6-10 6z m620-163c-2 0-4 0-6-1l-157-91c0 0 0 0 0 0-6-3-8-10-5-16l35-61c4-5 11-7 16-4l157 91c1 0 1 0 1 0 6 3 7 11 4 16l-35 61c-2 4-6 6-10 5z m-810-4c-5 0-9-2-11-6l-35-61c-3-5-1-12 4-15l158-91 0 0c6-4 13-2 16 4l35 60c0 0 0 0 0 0 3 6 1 13-4 16l-158 91c-2 1-4 2-5 2z m712-235l0 0c-6 0-11-5-11-11l0-69c0-1 0-1 0-1 0-7 5-12 11-12l183 0 0 0c6 0 11 5 11 12l0 69c0 0 0 0 0 1 0 6-5 11-11 11l-183 0z m-794-5l0 0c-7 0-12-5-12-12l0-69c0 0 0 0 0-1 0-6 5-11 12-11l182 0 0 0c6 0 11 5 11 11l0 69c0 1 0 1 0 1 0 7-5 12-11 12l-182 0z m772-153c-4 0-8-2-10-6l-34-60c-1 0-1 0-1 0-3-6-1-13 4-16l158-91c6-3 13-1 16 4l35 61c3 5 1 12-4 15l-158 92 0 0c-2 1-4 1-6 1z m-566-5c-1 0-3 0-5-1l-157-91c0 0-1 0-1 0-5-3-7-10-4-16l35-61c3-5 10-7 16-4l157 91c0 0 0 0 0 0 6 3 8 10 5 16l-35 61c-3 3-7 6-11 5z m468-121c-2 0-4 0-6-1l-61-35c-5-4-7-11-4-16l91-157c0-1 0-1 0-1 3-6 11-7 16-4l61 35c5 3 7 10 4 16l-91 157c0 0 0 0 0 0-2 4-6 6-10 6z m-367-2c-4 0-8-2-10-6l-91-158c-3-6-1-13 4-16l61-35c5-3 12-1 15 4l92 158 0 0c3 6 1 13-5 16l-60 35c0 0 0 0 0 0-2 1-4 1-6 2z m149-58c-7 0-12-5-12-11l0-183 0 0c0-6 5-11 12-11l69 0c0 0 0 0 1 0 6 0 11 5 11 11l0 183 0 0c0 6-5 11-11 11l-69 0c-1 0-1 0-1 0z" horiz-adv-x="1000" />
34
+
35
+ <glyph glyph-name="menu" unicode="&#xf3b9;" d="M650 400q22 0 36-15t14-35-15-35-35-15l-600 0q-20 0-35 15t-15 35 14 35 36 15l600 0z m-600 100q-20 0-35 15t-15 35 14 35 36 15l600 0q22 0 36-15t14-35-15-35-35-15l-600 0z m600-300q22 0 36-15t14-35-15-35-35-15l-600 0q-20 0-35 15t-15 35 14 35 36 15l600 0z" horiz-adv-x="700" />
36
+
37
+ <glyph glyph-name="plus" unicode="&#xf3ba;" d="M550 400q30 0 30-50t-30-50l-210 0 0-210q0-30-50-30t-50 30l0 210-210 0q-30 0-30 50t30 50l210 0 0 210q0 30 50 30t50-30l0-210 210 0z" horiz-adv-x="580" />
38
+
39
+ <glyph glyph-name="minus" unicode="&#xf3bb;" d="M550 400q30 0 30-50t-30-50l-520 0q-30 0-30 50t30 50l520 0z" horiz-adv-x="580" />
40
+
41
+ <glyph glyph-name="picture" unicode="&#xf3bc;" d="M357 529q0-45-31-76t-76-32-76 32-31 76 31 76 76 31 76-31 31-76z m572-215v-250h-786v107l178 179 90-89 285 285z m53 393h-893q-7 0-12-5t-6-13v-678q0-7 6-13t12-5h893q7 0 13 5t5 13v678q0 8-5 13t-13 5z m89-18v-678q0-37-26-63t-63-27h-893q-36 0-63 27t-26 63v678q0 37 26 63t63 27h893q37 0 63-27t26-63z" horiz-adv-x="1071.4" />
42
+
43
+ <glyph glyph-name="new" unicode="&#xf3bd;" d="M819 638q16-16 27-42t11-50v-642q0-23-15-38t-38-16h-750q-23 0-38 16t-16 38v892q0 23 16 38t38 16h500q22 0 49-11t42-27z m-248 136v-210h210q-5 17-12 23l-175 175q-6 7-23 12z m215-853v572h-232q-23 0-38 16t-16 37v233h-429v-858h715z" horiz-adv-x="857.1" />
44
+
45
+ <glyph glyph-name="open" unicode="&#xf3be;" d="M994 331q0 19-30 19h-607q-22 0-48-12t-39-29l-164-203q-11-13-11-22 0-20 30-20h607q23 0 48 13t40 29l164 203q10 12 10 22z m-637 90h429v90q0 22-16 38t-38 15h-321q-23 0-38 16t-16 38v36q0 22-15 38t-38 15h-179q-22 0-38-15t-16-38v-476l143 175q25 30 65 49t78 19z m708-90q0-35-25-67l-165-203q-24-30-65-49t-78-19h-607q-51 0-88 37t-37 88v536q0 51 37 88t88 37h179q51 0 88-37t37-88v-18h303q52 0 88-37t37-88v-90h107q30 0 56-13t37-40q8-17 8-37z" horiz-adv-x="1071.4" />
46
+
47
+ <glyph glyph-name="undo" unicode="&#xf3bf;" d="M532 736q170 0 289-120t119-290-119-290-289-120q-142 0-252 88l70 74q84-60 182-60 126 0 216 90t90 218-90 218-216 90q-124 0-214-87t-92-211l142 0-184-204-184 204 124 0q2 166 122 283t286 117z" horiz-adv-x="940" />
48
+
49
+ <glyph glyph-name="redo" unicode="&#xf3c0;" d="M408 760q168 0 287-116t123-282l122 0-184-206-184 206 144 0q-4 124-94 210t-214 86q-126 0-216-90t-90-218q0-126 90-216t216-90q104 0 182 60l70-76q-110-88-252-88-168 0-288 120t-120 290 120 290 288 120z" horiz-adv-x="940" />
50
+
51
+ <glyph glyph-name="size-reset" unicode="&#xf3c1;" d="M430 780q178 0 304-126t126-304-126-304-304-126-304 126-126 304 126 304 304 126z m36-778q124 14 212 102t100 212l-192 0 0 70 192 0q-12 124-100 212t-212 102l0-194-70 0 0 194q-124-14-213-102t-101-212l194 0 0-70-194 0q12-124 101-212t213-102l0 194 70 0 0-194z" horiz-adv-x="860" />
52
+
53
+ <glyph glyph-name="properties" unicode="&#xf3c2;" d="M214 189v-35q0-8-5-13t-13-5h-35q-7 0-13 5t-5 13v35q0 8 5 13t13 5h35q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-5h-35q-7 0-13 5t-5 12v36q0 7 5 13t13 5h35q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-6h-35q-7 0-13 6t-5 12v36q0 7 5 13t13 5h35q8 0 13-5t5-13z m643-286v-35q0-8-5-13t-13-5h-535q-8 0-13 5t-5 13v35q0 8 5 13t13 5h535q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-5h-535q-8 0-13 5t-5 12v36q0 7 5 13t13 5h535q8 0 13-5t5-13z m0 143v-36q0-7-5-12t-13-6h-535q-8 0-13 6t-5 12v36q0 7 5 13t13 5h535q8 0 13-5t5-13z m72-393v464q0 8-6 13t-12 5h-822q-7 0-12-5t-6-13v-464q0-7 6-12t12-6h822q7 0 12 6t6 12z m71 607v-607q0-37-26-63t-63-26h-822q-36 0-63 26t-26 63v607q0 37 26 63t63 27h822q37 0 63-27t26-63z" horiz-adv-x="1000" />
54
+
55
+ <glyph glyph-name="save-normal" unicode="&#xf422;" d="M558 650h84v-152h-84v152z m190 102h-639v-804h782v662l-143 142z m-454-58h397v-238h-397v238z m484-682h-556v311h556v-311z m-58 220h-440v39h440v-39z m0-45h-440v-39h440v39z m0-84h-440v-39h440v39z" horiz-adv-x="1000" />
56
+
57
+ <glyph glyph-name="save-as" unicode="&#xf423;" d="M748 752h-639v-804h782v662l-143 142z m-105-114v-143h-80v143h80z m169-612h-624l0 648h125v-226h384v226h19l96-97v-551z m-85 63h-454v39h454v-39z m0 119h-454v-39h454v39z m0 80h-454v-39h454v39z" horiz-adv-x="1000" />
58
+ </font>
59
+ </defs>
60
+ </svg>
Binary file