@saasira/holi 0.1.6 → 0.1.9
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 +40 -0
- package/dist/components.html +6 -0
- package/dist/holi.css +659 -659
- package/dist/holi.html +6 -0
- package/dist/holi.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,46 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project are documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.1.9] - 2026-03-21
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Updated example smoke assertions to match the current declarative theme and locale example sources so CI release validation passes again.
|
|
10
|
+
|
|
11
|
+
### Validation
|
|
12
|
+
|
|
13
|
+
- Verified with `npm run ci:smoke`.
|
|
14
|
+
|
|
15
|
+
## [0.1.8] - 2026-03-21
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Added a template-driven `include` component that fetches HTML fragments from relative or absolute sources and injects them in place.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Updated the `page-layout.html` example to load its header and footer content through reusable included fragments.
|
|
24
|
+
|
|
25
|
+
### Validation
|
|
26
|
+
|
|
27
|
+
- Verified with `npm run build` and `npm run build:examples`.
|
|
28
|
+
|
|
29
|
+
## [0.1.7] - 2026-03-21
|
|
30
|
+
|
|
31
|
+
### Added
|
|
32
|
+
|
|
33
|
+
- Added declarative theme registration with a shared theme registry and release-aware page asset automation for `page[release]`.
|
|
34
|
+
- Added declarative locale registration with a shared locale registry and default-English document language fallback.
|
|
35
|
+
|
|
36
|
+
### Changed
|
|
37
|
+
|
|
38
|
+
- Scoped bundled component styles to the default theme so custom themes can provide their own component styling cleanly.
|
|
39
|
+
- Updated theme and locale switching flows to resolve through centralized registries instead of directly mutating document attributes ad hoc.
|
|
40
|
+
|
|
41
|
+
### Validation
|
|
42
|
+
|
|
43
|
+
- Verified with `npm run build`.
|
|
44
|
+
|
|
5
45
|
## [0.1.5] - 2026-03-19
|
|
6
46
|
|
|
7
47
|
### Added
|
package/dist/components.html
CHANGED
|
@@ -430,6 +430,12 @@
|
|
|
430
430
|
</template>
|
|
431
431
|
|
|
432
432
|
|
|
433
|
+
<!-- Template: include.html src/templates/components/include.html -->
|
|
434
|
+
<template id="include-template">
|
|
435
|
+
<slot name="fallback"></slot>
|
|
436
|
+
</template>
|
|
437
|
+
|
|
438
|
+
|
|
433
439
|
<!-- Template: gallery.html src/templates/components/gallery.html -->
|
|
434
440
|
<template id="gallery-template">
|
|
435
441
|
<section class="holi-gallery-root">
|