@kungal/ui-vue 2.7.0 → 2.7.1
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 +16 -0
- package/dist/components/Image.vue.d.ts.map +1 -1
- package/dist/composables/useContentBlurUp.d.ts.map +1 -1
- package/dist/index.js +713 -712
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @kungal/ui-vue
|
|
2
2
|
|
|
3
|
+
## 2.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8d36753: fix(vue): ThumbHash blur-up now reliably shows before fast/cached images load
|
|
8
|
+
|
|
9
|
+
Both KunImage (covers) and KunContent (body images) decoded the ThumbHash through a
|
|
10
|
+
lazy `import('thumbhash')`. A fast or cached CDN image could finish loading during
|
|
11
|
+
that import — after which a placeholder is pointless and was skipped — so the blur
|
|
12
|
+
never appeared (you'd see the reserved box but no blur). The decode is now a
|
|
13
|
+
synchronous (static) import, painted in the same tick as mount/scan, so it always
|
|
14
|
+
wins the race against the image load. The decoder stays externalized + tree-shaken;
|
|
15
|
+
it's ~2KB.
|
|
16
|
+
|
|
17
|
+
- @kungal/ui-core@2.7.1
|
|
18
|
+
|
|
3
19
|
## 2.7.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Image.vue.d.ts","sourceRoot":"","sources":["../../src/components/Image.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Image.vue.d.ts","sourceRoot":"","sources":["../../src/components/Image.vue"],"names":[],"mappings":"AA0NA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AA2T5C,QAAA,MAAM,YAAY;;;;;;qEAzSP,CAAC,WAAY,CAAA;;;;;;;;;;;;;;;;;;6EA4StB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useContentBlurUp.d.ts","sourceRoot":"","sources":["../../src/composables/useContentBlurUp.ts"],"names":[],"mappings":"AAAA,OAAO,EAA8B,KAAK,GAAG,EAAE,MAAM,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"useContentBlurUp.d.ts","sourceRoot":"","sources":["../../src/composables/useContentBlurUp.ts"],"names":[],"mappings":"AAAA,OAAO,EAA8B,KAAK,GAAG,EAAE,MAAM,KAAK,CAAA;AAmB1D,eAAO,MAAM,gBAAgB,GAAI,cAAc,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,SAkDrE,CAAA"}
|