spoko-design-system 1.17.0 → 1.18.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 +12 -0
- package/icon.config.ts +1 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.18.1](https://github.com/polo-blue/sds/compare/v1.18.0...v1.18.1) (2025-12-08)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* correct case sensitivity in CallToAction export path ([9aeb7d3](https://github.com/polo-blue/sds/commit/9aeb7d3876430c68983d62fdafe476c9290d341b))
|
|
6
|
+
|
|
7
|
+
## [1.18.0](https://github.com/polo-blue/sds/compare/v1.17.0...v1.18.0) (2025-12-07)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **icons:** add bi:arrow-right-short icon ([edf3039](https://github.com/polo-blue/sds/commit/edf30393b8594cd50848aa7b38e0a84d2cc43a87))
|
|
12
|
+
|
|
1
13
|
## [1.17.0](https://github.com/polo-blue/sds/compare/v1.16.2...v1.17.0) (2025-12-07)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/icon.config.ts
CHANGED
package/index.ts
CHANGED
|
@@ -46,7 +46,7 @@ export { default as HandDrive } from './src/components/HandDrive.astro';
|
|
|
46
46
|
export { default as Faq } from './src/components/Faq.astro';
|
|
47
47
|
export { default as FaqItem } from './src/components/FaqItem.astro';
|
|
48
48
|
export { default as ButtonCopy } from './src/components/ButtonCopy.astro';
|
|
49
|
-
export { default as CallToAction } from './src/components/
|
|
49
|
+
export { default as CallToAction } from './src/components/layout/CallToAction.astro';
|
|
50
50
|
|
|
51
51
|
export { default as ProductImage } from './src/components/Product/ProductImage.astro';
|
|
52
52
|
export { default as ProductEngine } from './src/components/Product/ProductEngine.astro';
|