@micro-lc/preview 0.7.3-rc0 → 0.7.4
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 +18 -0
- package/package.json +3 -4
- package/website/.vite/manifest.json +2 -2
- package/website/assets/index-UUnaDy2L.js +98 -0
- package/website/assets/{index-AYPpxqPP.css → index-_9UZNNtx.css} +1 -1
- package/website/development/.vite/manifest.json +2 -2
- package/website/development/assets/{index-NQ4PJ7wv.css → index-HuzVlez9.css} +14 -5
- package/website/development/assets/{index-ISo-oWvS.js → index-tHug5tbN.js} +1677 -1076
- package/website/development/index.html +2 -2
- package/website/index.html +2 -2
- package/website/assets/index-S8G5Ak69.js +0 -97
- package/website/assets/index-vqyfhyLF.js +0 -97
- package/website/development/assets/index-Fs5pROqu.js +0 -69690
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
## Unreleased
|
2
2
|
|
3
|
+
## [0.7.4] - 2024-10-08
|
4
|
+
|
5
|
+
### Changed
|
6
|
+
|
7
|
+
- Value of `ctrl-space` message is used for preview mode
|
8
|
+
|
9
|
+
## [0.7.3] - 2024-07-23
|
10
|
+
|
11
|
+
### Versioning
|
12
|
+
|
13
|
+
- Updated `@micro-lc/post-channel` version
|
14
|
+
|
15
|
+
## [0.7.2] - 2024-07-19
|
16
|
+
|
17
|
+
### Changed
|
18
|
+
|
19
|
+
- UI improvements
|
20
|
+
|
3
21
|
## [0.7.1] - 2024-07-12
|
4
22
|
|
5
23
|
### Changed
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@micro-lc/preview",
|
3
|
-
"version": "0.7.
|
3
|
+
"version": "0.7.4",
|
4
4
|
"module": "./dist/index.js",
|
5
5
|
"types": "./dist/index.d.ts",
|
6
6
|
"files": [
|
@@ -24,7 +24,7 @@
|
|
24
24
|
"dependencies": {
|
25
25
|
"@mia-platform-internal/reactord": "^10.2.0",
|
26
26
|
"@micro-lc/composer": "^2.1.0",
|
27
|
-
"@micro-lc/post-channel": "0.2.0
|
27
|
+
"@micro-lc/post-channel": "^0.2.0",
|
28
28
|
"antd": "3.26.20",
|
29
29
|
"es-module-shims": "^1.8.2",
|
30
30
|
"react": "^18.3.1",
|
@@ -51,6 +51,5 @@
|
|
51
51
|
},
|
52
52
|
"engines": {
|
53
53
|
"node": ">=v18"
|
54
|
-
}
|
55
|
-
"stableVersion": "0.7.1"
|
54
|
+
}
|
56
55
|
}
|
@@ -6,12 +6,12 @@
|
|
6
6
|
},
|
7
7
|
"index.html": {
|
8
8
|
"css": [
|
9
|
-
"assets/index-
|
9
|
+
"assets/index-_9UZNNtx.css"
|
10
10
|
],
|
11
11
|
"dynamicImports": [
|
12
12
|
"../../node_modules/@micro-lc/composer/dist/lib/logger/errors.js"
|
13
13
|
],
|
14
|
-
"file": "assets/index-
|
14
|
+
"file": "assets/index-UUnaDy2L.js",
|
15
15
|
"isEntry": true,
|
16
16
|
"src": "index.html"
|
17
17
|
}
|