@micro-lc/preview 0.7.0 → 0.7.2
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 +13 -0
- package/package.json +1 -1
- package/website/.vite/manifest.json +2 -2
- package/website/assets/index-41dJWVFW.js +96 -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--zmXJhVL.js → index-v3Efm_JH.js} +1682 -1078
- package/website/development/index.html +2 -2
- package/website/index.html +2 -2
- package/website/assets/index-R8L7d4ZR.js +0 -95
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
## Unreleased
|
|
2
2
|
|
|
3
|
+
## [0.7.2] - 2024-07-19
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- UI improvements
|
|
8
|
+
|
|
9
|
+
## [0.7.1] - 2024-07-12
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Components Explorer's filter and search inverted position
|
|
14
|
+
- Preview is no longer displayed behind Components Explorer to avoid unwanted side effects
|
|
15
|
+
|
|
3
16
|
## [0.7.0] - 2024-07-09
|
|
4
17
|
|
|
5
18
|
### Added
|
package/package.json
CHANGED
|
@@ -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-41dJWVFW.js",
|
|
15
15
|
"isEntry": true,
|
|
16
16
|
"src": "index.html"
|
|
17
17
|
}
|