@jetlinks-web/components 2.6.12 → 3.0.1-rc

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 (68) hide show
  1. package/es/EditTable/components/Search/sort.js +1 -1
  2. package/es/FullPage/FullPage.js +1 -1
  3. package/es/ProTable/ProTable.js +8 -4
  4. package/es/Search/Advanced/SaveHistory.js +1 -1
  5. package/es/Search/Item.js +1 -1
  6. package/es/Skeleton/components/DashBoardCard.js +57 -0
  7. package/es/Skeleton/components/DashBoardChart.js +93 -0
  8. package/es/Skeleton/components/Detail.js +104 -0
  9. package/es/Skeleton/components/Drawer.js +82 -0
  10. package/es/Skeleton/components/Item.js +60 -0
  11. package/es/Skeleton/components/List.js +46 -0
  12. package/es/Skeleton/components/ListCard.js +56 -0
  13. package/es/Skeleton/components/ListCardItem.js +87 -0
  14. package/es/Skeleton/components/ListTable.js +67 -0
  15. package/es/Skeleton/components/Page.js +63 -0
  16. package/es/Skeleton/components/Search.js +54 -0
  17. package/es/Skeleton/components/Tree.js +65 -0
  18. package/es/Skeleton/index.js +15 -0
  19. package/es/Skeleton/skeleton.js +49 -0
  20. package/es/Skeleton/style/Skeleton.less +166 -0
  21. package/es/Skeleton/style/index.js +1 -0
  22. package/es/Title/style/index.css +4 -0
  23. package/es/Title/style/index.less +3 -1
  24. package/es/ValueItem/ValueItem.js +9 -57
  25. package/es/components.js +2 -2
  26. package/es/style/index.css +141 -4
  27. package/es/style/index.less +1 -1
  28. package/es/style.js +2 -2
  29. package/lib/EditTable/components/Search/sort.js +1 -1
  30. package/lib/FullPage/FullPage.js +1 -1
  31. package/lib/ProTable/ProTable.js +8 -4
  32. package/lib/Search/Advanced/SaveHistory.js +1 -1
  33. package/lib/Search/Item.js +1 -1
  34. package/lib/Skeleton/components/DashBoardCard.js +57 -0
  35. package/lib/Skeleton/components/DashBoardChart.js +93 -0
  36. package/lib/Skeleton/components/Detail.js +104 -0
  37. package/lib/Skeleton/components/Drawer.js +82 -0
  38. package/lib/Skeleton/components/Item.js +60 -0
  39. package/lib/Skeleton/components/List.js +46 -0
  40. package/lib/Skeleton/components/ListCard.js +56 -0
  41. package/lib/Skeleton/components/ListCardItem.js +87 -0
  42. package/lib/Skeleton/components/ListTable.js +67 -0
  43. package/lib/Skeleton/components/Page.js +63 -0
  44. package/lib/Skeleton/components/Search.js +54 -0
  45. package/lib/Skeleton/components/Tree.js +65 -0
  46. package/lib/Skeleton/index.js +75 -0
  47. package/lib/Skeleton/skeleton.js +49 -0
  48. package/lib/Skeleton/style/Skeleton.less +166 -0
  49. package/lib/Skeleton/style/index.js +3 -0
  50. package/lib/Title/style/index.css +4 -0
  51. package/lib/Title/style/index.less +3 -1
  52. package/lib/ValueItem/ValueItem.js +9 -57
  53. package/lib/components.js +7 -7
  54. package/lib/style/components.less +0 -1
  55. package/lib/style/index.css +141 -4
  56. package/lib/style/index.less +1 -1
  57. package/lib/style.js +2 -2
  58. package/package.json +173 -173
  59. package/es/MonacoEditor/Monaco.js +0 -242
  60. package/es/MonacoEditor/index.js +0 -5
  61. package/es/MonacoEditor/style/index.css +0 -4
  62. package/es/MonacoEditor/style/index.js +0 -1
  63. package/es/MonacoEditor/style/index.less +0 -4
  64. package/lib/MonacoEditor/Monaco.js +0 -242
  65. package/lib/MonacoEditor/index.js +0 -12
  66. package/lib/MonacoEditor/style/index.css +0 -4
  67. package/lib/MonacoEditor/style/index.js +0 -3
  68. package/lib/MonacoEditor/style/index.less +0 -4
@@ -5089,10 +5089,6 @@ span.ant-radio + * {
5089
5089
  height: 100%;
5090
5090
  overflow-x: hidden;
5091
5091
  }
5092
- .j-monaco-editor {
5093
- min-height: 50px;
5094
- height: 100%;
5095
- }
5096
5092
  .j-scrollbar {
5097
5093
  overflow: hidden;
5098
5094
  position: relative;
@@ -5236,3 +5232,144 @@ span.ant-radio + * {
5236
5232
  left: 0;
5237
5233
  width: 200px;
5238
5234
  }
5235
+ .j-skeleton-flex {
5236
+ display: flex;
5237
+ gap: 24px;
5238
+ margin-bottom: 16px;
5239
+ }
5240
+ .j-skeleton-flex-between {
5241
+ display: flex;
5242
+ gap: 24px;
5243
+ margin-bottom: 16px;
5244
+ justify-content: space-between;
5245
+ align-items: center;
5246
+ }
5247
+ .j-skeleton-flex-column {
5248
+ display: flex;
5249
+ gap: 24px;
5250
+ margin-bottom: 16px;
5251
+ justify-content: space-between;
5252
+ }
5253
+ .j-skeleton {
5254
+ height: 100%;
5255
+ }
5256
+ .j-skeleton-item {
5257
+ background: linear-gradient(90deg, #f0f2f5 25%, #e6e8eb 50%, #f0f2f5 75%);
5258
+ background-size: 400% 100%;
5259
+ border-radius: 8px;
5260
+ height: 24px;
5261
+ }
5262
+ .j-skeleton-item-active {
5263
+ animation: wave 1.8s ease-in-out infinite;
5264
+ }
5265
+ .j-skeleton-item-lg {
5266
+ height: 36px;
5267
+ }
5268
+ .j-skeleton-item-sm {
5269
+ height: 16px;
5270
+ }
5271
+ @keyframes wave {
5272
+ 0% {
5273
+ background-position: 200% 0;
5274
+ }
5275
+ 100% {
5276
+ background-position: -200% 0;
5277
+ }
5278
+ }
5279
+ .j-skeleton-dashboard-card {
5280
+ display: flex;
5281
+ gap: 24px;
5282
+ margin-bottom: 16px;
5283
+ border: 4px solid #f0f2f5;
5284
+ border-radius: 8px;
5285
+ height: 100%;
5286
+ padding: 24px;
5287
+ flex-direction: column;
5288
+ }
5289
+ .j-skeleton-tabs {
5290
+ display: flex;
5291
+ gap: 16px;
5292
+ margin: 60px 0 20px 0;
5293
+ border-bottom: 4px solid #f0f2f5;
5294
+ padding: 16px 0;
5295
+ }
5296
+ .j-skeleton-desc {
5297
+ display: flex;
5298
+ flex-direction: column;
5299
+ margin-bottom: 24px;
5300
+ }
5301
+ .j-skeleton-desc-content {
5302
+ display: grid;
5303
+ grid-template-columns: repeat(3, 1fr);
5304
+ gap: 36px;
5305
+ margin-top: 24px;
5306
+ }
5307
+ .j-skeleton-desc-item {
5308
+ display: flex;
5309
+ gap: 16px;
5310
+ }
5311
+ .j-skeleton-box {
5312
+ border-bottom: 4px solid #f0f2f5;
5313
+ padding: 16px 0;
5314
+ }
5315
+ .j-skeleton-table-cell {
5316
+ display: grid;
5317
+ grid-template-columns: repeat(auto-fit, minmax(0, 1fr)) 200px;
5318
+ gap: 24px;
5319
+ padding: 12px 6px;
5320
+ border-radius: 8px;
5321
+ }
5322
+ .j-skeleton-table-header {
5323
+ background-color: lightgrey;
5324
+ }
5325
+ .j-skeleton-table-action {
5326
+ width: 200px;
5327
+ display: grid;
5328
+ grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
5329
+ gap: 24px;
5330
+ }
5331
+ .j-skeleton-cards {
5332
+ display: grid;
5333
+ grid-template-columns: repeat(3, 1fr);
5334
+ gap: 16px;
5335
+ }
5336
+ .j-skeleton-card .j-skeleton-card-content {
5337
+ display: flex;
5338
+ gap: 16px;
5339
+ border: 2px solid #f0f2f5;
5340
+ border-radius: 8px;
5341
+ padding: 24px;
5342
+ margin-bottom: 16px;
5343
+ }
5344
+ .j-skeleton-card .j-skeleton-card-content .j-skeleton-image {
5345
+ width: 100px;
5346
+ height: 100px;
5347
+ }
5348
+ .j-skeleton-card .j-skeleton-card-content .j-skeleton-right {
5349
+ flex: 1;
5350
+ min-width: 200px;
5351
+ }
5352
+ .j-skeleton-card .j-skeleton-card-content .j-skeleton-right .j-skeleton-right-content {
5353
+ display: flex;
5354
+ gap: 16px;
5355
+ margin-top: 16px;
5356
+ }
5357
+ .j-skeleton-card .j-skeleton-card-content .j-skeleton-right .j-skeleton-right-content .j-skeleton-right-content-item {
5358
+ flex: 1;
5359
+ min-width: 100px;
5360
+ display: flex;
5361
+ flex-direction: column;
5362
+ gap: 16px;
5363
+ }
5364
+ .j-skeleton-card .j-skeleton-action {
5365
+ display: flex;
5366
+ justify-content: flex-end;
5367
+ gap: 16px;
5368
+ }
5369
+ .j-skeleton-card .j-skeleton-action .btn {
5370
+ flex: 1;
5371
+ min-width: 100px;
5372
+ }
5373
+ .j-skeleton-card .j-skeleton-action .delete {
5374
+ flex: 0 0 100px;
5375
+ }
@@ -7,8 +7,8 @@
7
7
  @import '../CardSelect/style/index.less';
8
8
  @import '../DragModal/style/index.less';
9
9
  @import "../EditTable/style/index.less";
10
- @import "../MonacoEditor/style/index.less";
11
10
  @import '../Scrollbar/style/index.less';
12
11
  @import '../Title/style/index.less';
13
12
  @import '../RadioButton/style/index.less';
14
13
  @import '../FlameGraph/style/index.less';
14
+ @import '../Skeleton/style/Skeleton.less';
package/lib/style.js CHANGED
@@ -8,8 +8,8 @@ require("./Search/style");
8
8
  require("./CardSelect/style");
9
9
  require("./DragModal/style");
10
10
  require("./EditTable/style");
11
- require("./MonacoEditor/style");
12
11
  require("./Scrollbar/style");
13
12
  require("./Title/style");
14
13
  require("./RadioButton/style");
15
- require("./FlameGraph/style");
14
+ require("./FlameGraph/style");
15
+ require("./Skeketon/style");
package/package.json CHANGED
@@ -1,173 +1,173 @@
1
- {
2
- "name": "@jetlinks-web/components",
3
- "version": "2.6.12",
4
- "description": "",
5
- "main": "lib/index.js",
6
- "module": "es/index.js",
7
- "keywords": [
8
- "jetlinks",
9
- "jetlinks-web",
10
- "components",
11
- "jetlinks-web/components",
12
- "@jetlinks-web",
13
- "@jetlinks-web/components"
14
- ],
15
- "files": [
16
- "lib",
17
- "es"
18
- ],
19
- "private": false,
20
- "author": "",
21
- "license": "ISC",
22
- "dependencies": {
23
- "@ant-design/icons-vue": "^7.0.1",
24
- "@vuemap/vue-amap": "^2.0.17",
25
- "@vueuse/core": "^10.2.1",
26
- "@vueuse/router": "^12.1.0",
27
- "async-validator": "^4.2.5",
28
- "d3": "^7.9.0",
29
- "d3-flame-graph": "^4.1.3",
30
- "echarts": "^5.4.3",
31
- "markdown-it": "^14.1.0",
32
- "markdown-it-abbr": "^2.0.0",
33
- "markdown-it-anchor": "^9.1.0",
34
- "markdown-it-deflist": "^3.0.0",
35
- "markdown-it-emoji": "^3.0.0",
36
- "markdown-it-footnote": "^4.0.0",
37
- "markdown-it-highlightjs": "^4.1.0",
38
- "markdown-it-ins": "^4.0.0",
39
- "markdown-it-mark": "^4.0.0",
40
- "markdown-it-sub": "^2.0.0",
41
- "markdown-it-sup": "^2.0.0",
42
- "markdown-it-task-lists": "^2.1.1",
43
- "markdown-it-toc-done-right": "^4.2.0",
44
- "monaco-editor": "^0.51.0",
45
- "resize-observer-polyfill": "^1.5.1",
46
- "sortablejs": "^1.15.2"
47
- },
48
- "devDependencies": {
49
- "@babel/cli": "^7.8.4",
50
- "@babel/core": "^7.10.5",
51
- "@babel/plugin-proposal-class-properties": "^7.8.3",
52
- "@babel/plugin-proposal-export-default-from": "^7.8.3",
53
- "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
54
- "@babel/plugin-proposal-object-rest-spread": "^7.9.6",
55
- "@babel/plugin-proposal-optional-chaining": "^7.10.1",
56
- "@babel/plugin-syntax-dynamic-import": "^7.8.3",
57
- "@babel/plugin-transform-member-expression-literals": "^7.8.3",
58
- "@babel/plugin-transform-object-assign": "^7.8.3",
59
- "@babel/plugin-transform-property-literals": "^7.8.3",
60
- "@babel/plugin-transform-runtime": "^7.10.5",
61
- "@babel/plugin-transform-template-literals": "^7.8.3",
62
- "@babel/plugin-transform-typescript": "^7.12.1",
63
- "@babel/polyfill": "^7.8.7",
64
- "@babel/preset-env": "^7.9.6",
65
- "@babel/preset-typescript": "^7.10.4",
66
- "@babel/runtime": "^7.24.4",
67
- "@commitlint/cli": "^17.4.2",
68
- "@commitlint/config-conventional": "^17.4.2",
69
- "@rollup/plugin-commonjs": "^22.0.1",
70
- "@rollup/plugin-node-resolve": "^13.3.0",
71
- "@types/eslint": "^8.21.0",
72
- "@types/lodash-es": "^4.17.6",
73
- "@types/node": "^18.13.0",
74
- "@types/sortablejs": "^1.15.1",
75
- "@typescript-eslint/eslint-plugin": "^5.50.0",
76
- "@typescript-eslint/parser": "^5.50.0",
77
- "@vitejs/plugin-vue": "^2.3.3",
78
- "@vitejs/plugin-vue-jsx": "^1.3.10",
79
- "@vue/babel-plugin-jsx": "^1.0.0",
80
- "@vue/compiler-sfc": "^3.4.21",
81
- "ant-design-vue": "3.2.20",
82
- "autoprefixer": "^10.2.0",
83
- "babel-eslint": "^10.0.1",
84
- "babel-loader": "^8.0.0",
85
- "babel-plugin-import": "^1.1.1",
86
- "babel-plugin-inline-import-data-uri": "^1.0.1",
87
- "babel-plugin-istanbul": "^6.0.0",
88
- "babel-plugin-transform-require-context": "^0.1.1",
89
- "case-sensitive-paths-webpack-plugin": "^2.1.2",
90
- "child_process": "^1.0.2",
91
- "colorful": "^2.1.0",
92
- "commander": "^6.1.0",
93
- "commitlint": "^17.4.2",
94
- "compute-scroll-into-view": "^3.0.0",
95
- "css-loader": "^6.7.3",
96
- "css-minimizer-webpack-plugin": "^3.0.0",
97
- "dayjs": "^1.11.8",
98
- "duplicate-package-checker-webpack-plugin": "^3.0.0",
99
- "esbuild": "~0.12.29",
100
- "esbuild-loader": "^2.18.0",
101
- "escape-html": "^1.0.3",
102
- "eslint": "^8.33.0",
103
- "eslint-config-prettier": "^8.0.0",
104
- "eslint-plugin-html": "^6.0.0",
105
- "eslint-plugin-import": "^2.24.2",
106
- "eslint-plugin-markdown": "^2.0.0",
107
- "eslint-plugin-vue": "^8.1.1",
108
- "fast-glob": "^3.2.12",
109
- "globby": "^11.1.0",
110
- "gray-matter": "^4.0.3",
111
- "gulp": "^4.0.2",
112
- "gulp-babel": "^8.0.0",
113
- "gulp-strip-code": "^0.1.4",
114
- "gulp-typescript": "^6.0.0-alpha.1",
115
- "is-windows": "^1.0.2",
116
- "json5": "^2.2.3",
117
- "less": "^4.1.3",
118
- "less-loader": "^11.1.0",
119
- "less-plugin-npm-import": "^2.1.0",
120
- "less-vars-to-js": "^1.3.0",
121
- "lint-staged": "^13.1.0",
122
- "lru-cache": "^7.14.1",
123
- "marked": "0.3.18",
124
- "merge2": "^1.4.1",
125
- "mini-css-extract-plugin": "^2.4.5",
126
- "minimist": "^1.2.0",
127
- "mkdirp": "^0.5.1",
128
- "object-assign": "^4.1.1",
129
- "postcss": "^8.2.12",
130
- "postcss-loader": "^6.0.0",
131
- "prettier": "^2.8.3",
132
- "prismjs": "^1.29.0",
133
- "remove-files-webpack-plugin": "^1.5.0",
134
- "rollup-plugin-esbuild": "^4.9.1",
135
- "rollup-plugin-typescript2": "^0.34.1",
136
- "rollup-plugin-vue": "^6.0.0",
137
- "slash": "^3.0.0",
138
- "string-replace-loader": "^3.1.0",
139
- "style-loader": "^3.3.1",
140
- "sucrase": "^3.29.0",
141
- "terser-webpack-plugin": "^5.1.1",
142
- "through2": "^4.0.2",
143
- "ts-loader": "^9.1.0",
144
- "ts-morph": "^17.0.1",
145
- "typescript": "^4.9.3",
146
- "unplugin-vue-macros": "^0.11.2",
147
- "url": "^0.11.0",
148
- "url-loader": "^3.0.0",
149
- "vite": "^4.0.0",
150
- "vite-plugin-monaco-editor": "^1.1.0",
151
- "vite-plugin-vue-setup-extend": "^0.4.0",
152
- "vue": "^3.2.45",
153
- "vue-eslint-parser": "^9.1.0",
154
- "vue-tsc": "^1.0.11",
155
- "webpack": "^5.75.0",
156
- "webpack-bundle-analyzer": "^4.4.2",
157
- "webpack-cli": "^4.6.0",
158
- "webpack-dev-server": "^4.0.0",
159
- "webpack-merge": "^5.0.0",
160
- "webpackbar": "^5.0.2",
161
- "@jetlinks-web/constants": "^1.0.9",
162
- "@jetlinks-web/utils": "^1.2.9",
163
- "@jetlinks-web/hooks": "^1.0.25"
164
- },
165
- "publishConfig": {
166
- "registry": "https://registry.npmjs.org/",
167
- "access": "public"
168
- },
169
- "scripts": {
170
- "compile": "node tools/cli/run.js compile",
171
- "clean": "pnpm rimraf node_modules && pnpm rimraf .turbo"
172
- }
173
- }
1
+ {
2
+ "name": "@jetlinks-web/components",
3
+ "version": "3.0.1-rc",
4
+ "description": "",
5
+ "main": "lib/index.js",
6
+ "module": "es/index.js",
7
+ "scripts": {
8
+ "compile": "node tools/cli/run.js compile",
9
+ "clean": "pnpm rimraf node_modules && pnpm rimraf .turbo"
10
+ },
11
+ "keywords": [
12
+ "jetlinks",
13
+ "jetlinks-web",
14
+ "components",
15
+ "jetlinks-web/components",
16
+ "@jetlinks-web",
17
+ "@jetlinks-web/components"
18
+ ],
19
+ "files": [
20
+ "lib",
21
+ "es"
22
+ ],
23
+ "private": false,
24
+ "author": "",
25
+ "license": "ISC",
26
+ "dependencies": {
27
+ "@ant-design/icons-vue": "^7.0.1",
28
+ "@vuemap/vue-amap": "^2.0.17",
29
+ "@vueuse/core": "^10.2.1",
30
+ "@vueuse/router": "^12.1.0",
31
+ "async-validator": "^4.2.5",
32
+ "d3": "^7.9.0",
33
+ "d3-flame-graph": "^4.1.3",
34
+ "echarts": "^5.4.3",
35
+ "markdown-it": "^14.1.0",
36
+ "markdown-it-abbr": "^2.0.0",
37
+ "markdown-it-anchor": "^9.1.0",
38
+ "markdown-it-deflist": "^3.0.0",
39
+ "markdown-it-emoji": "^3.0.0",
40
+ "markdown-it-footnote": "^4.0.0",
41
+ "markdown-it-highlightjs": "^4.1.0",
42
+ "markdown-it-ins": "^4.0.0",
43
+ "markdown-it-mark": "^4.0.0",
44
+ "markdown-it-sub": "^2.0.0",
45
+ "markdown-it-sup": "^2.0.0",
46
+ "markdown-it-task-lists": "^2.1.1",
47
+ "markdown-it-toc-done-right": "^4.2.0",
48
+ "monaco-editor": "^0.51.0",
49
+ "resize-observer-polyfill": "^1.5.1",
50
+ "sortablejs": "^1.15.2"
51
+ },
52
+ "devDependencies": {
53
+ "@babel/cli": "^7.8.4",
54
+ "@babel/core": "^7.10.5",
55
+ "@babel/plugin-proposal-class-properties": "^7.8.3",
56
+ "@babel/plugin-proposal-export-default-from": "^7.8.3",
57
+ "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
58
+ "@babel/plugin-proposal-object-rest-spread": "^7.9.6",
59
+ "@babel/plugin-proposal-optional-chaining": "^7.10.1",
60
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
61
+ "@babel/plugin-transform-member-expression-literals": "^7.8.3",
62
+ "@babel/plugin-transform-object-assign": "^7.8.3",
63
+ "@babel/plugin-transform-property-literals": "^7.8.3",
64
+ "@babel/plugin-transform-runtime": "^7.10.5",
65
+ "@babel/plugin-transform-template-literals": "^7.8.3",
66
+ "@babel/plugin-transform-typescript": "^7.12.1",
67
+ "@babel/polyfill": "^7.8.7",
68
+ "@babel/preset-env": "^7.9.6",
69
+ "@babel/preset-typescript": "^7.10.4",
70
+ "@babel/runtime": "^7.24.4",
71
+ "@commitlint/cli": "^17.4.2",
72
+ "@commitlint/config-conventional": "^17.4.2",
73
+ "@jetlinks-web/constants": "workspace:^",
74
+ "@jetlinks-web/hooks": "workspace:^",
75
+ "@jetlinks-web/utils": "workspace:^",
76
+ "@rollup/plugin-commonjs": "^22.0.1",
77
+ "@rollup/plugin-node-resolve": "^13.3.0",
78
+ "@types/eslint": "^8.21.0",
79
+ "@types/lodash-es": "^4.17.6",
80
+ "@types/node": "^18.13.0",
81
+ "@types/sortablejs": "^1.15.1",
82
+ "@typescript-eslint/eslint-plugin": "^5.50.0",
83
+ "@typescript-eslint/parser": "^5.50.0",
84
+ "@vitejs/plugin-vue": "^2.3.3",
85
+ "@vitejs/plugin-vue-jsx": "^1.3.10",
86
+ "@vue/babel-plugin-jsx": "^1.0.0",
87
+ "@vue/compiler-sfc": "^3.4.21",
88
+ "ant-design-vue": "3.2.20",
89
+ "autoprefixer": "^10.2.0",
90
+ "babel-eslint": "^10.0.1",
91
+ "babel-loader": "^8.0.0",
92
+ "babel-plugin-import": "^1.1.1",
93
+ "babel-plugin-inline-import-data-uri": "^1.0.1",
94
+ "babel-plugin-istanbul": "^6.0.0",
95
+ "babel-plugin-transform-require-context": "^0.1.1",
96
+ "case-sensitive-paths-webpack-plugin": "^2.1.2",
97
+ "child_process": "^1.0.2",
98
+ "colorful": "^2.1.0",
99
+ "commander": "^6.1.0",
100
+ "commitlint": "^17.4.2",
101
+ "compute-scroll-into-view": "^3.0.0",
102
+ "css-loader": "^6.7.3",
103
+ "css-minimizer-webpack-plugin": "^3.0.0",
104
+ "dayjs": "^1.11.8",
105
+ "duplicate-package-checker-webpack-plugin": "^3.0.0",
106
+ "esbuild": "~0.12.29",
107
+ "esbuild-loader": "^2.18.0",
108
+ "escape-html": "^1.0.3",
109
+ "eslint": "^8.33.0",
110
+ "eslint-config-prettier": "^8.0.0",
111
+ "eslint-plugin-html": "^6.0.0",
112
+ "eslint-plugin-import": "^2.24.2",
113
+ "eslint-plugin-markdown": "^2.0.0",
114
+ "eslint-plugin-vue": "^8.1.1",
115
+ "fast-glob": "^3.2.12",
116
+ "globby": "^11.1.0",
117
+ "gray-matter": "^4.0.3",
118
+ "gulp": "^4.0.2",
119
+ "gulp-babel": "^8.0.0",
120
+ "gulp-strip-code": "^0.1.4",
121
+ "gulp-typescript": "^6.0.0-alpha.1",
122
+ "is-windows": "^1.0.2",
123
+ "json5": "^2.2.3",
124
+ "less": "^4.1.3",
125
+ "less-loader": "^11.1.0",
126
+ "less-plugin-npm-import": "^2.1.0",
127
+ "less-vars-to-js": "^1.3.0",
128
+ "lint-staged": "^13.1.0",
129
+ "lru-cache": "^7.14.1",
130
+ "marked": "0.3.18",
131
+ "merge2": "^1.4.1",
132
+ "mini-css-extract-plugin": "^2.4.5",
133
+ "minimist": "^1.2.0",
134
+ "mkdirp": "^0.5.1",
135
+ "object-assign": "^4.1.1",
136
+ "postcss": "^8.2.12",
137
+ "postcss-loader": "^6.0.0",
138
+ "prettier": "^2.8.3",
139
+ "prismjs": "^1.29.0",
140
+ "remove-files-webpack-plugin": "^1.5.0",
141
+ "rollup-plugin-esbuild": "^4.9.1",
142
+ "rollup-plugin-typescript2": "^0.34.1",
143
+ "rollup-plugin-vue": "^6.0.0",
144
+ "slash": "^3.0.0",
145
+ "string-replace-loader": "^3.1.0",
146
+ "style-loader": "^3.3.1",
147
+ "sucrase": "^3.29.0",
148
+ "terser-webpack-plugin": "^5.1.1",
149
+ "through2": "^4.0.2",
150
+ "ts-loader": "^9.1.0",
151
+ "ts-morph": "^17.0.1",
152
+ "typescript": "^4.9.3",
153
+ "unplugin-vue-macros": "^0.11.2",
154
+ "url": "^0.11.0",
155
+ "url-loader": "^3.0.0",
156
+ "vite": "^4.0.0",
157
+ "vite-plugin-monaco-editor": "^1.1.0",
158
+ "vite-plugin-vue-setup-extend": "^0.4.0",
159
+ "vue": "^3.2.45",
160
+ "vue-eslint-parser": "^9.1.0",
161
+ "vue-tsc": "^1.0.11",
162
+ "webpack": "^5.75.0",
163
+ "webpack-bundle-analyzer": "^4.4.2",
164
+ "webpack-cli": "^4.6.0",
165
+ "webpack-dev-server": "^4.0.0",
166
+ "webpack-merge": "^5.0.0",
167
+ "webpackbar": "^5.0.2"
168
+ },
169
+ "publishConfig": {
170
+ "registry": "https://registry.npmjs.org/",
171
+ "access": "public"
172
+ }
173
+ }