@grantcodes/ui 2.5.1 → 2.7.0
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 +52 -0
- package/custom-elements.json +617 -19
- package/package.json +4 -4
- package/src/components/accordion/accordion.component.js +4 -1
- package/src/components/accordion/accordion.css +26 -18
- package/src/components/app-bar/app-bar.component.js +45 -9
- package/src/components/app-bar/app-bar.css +119 -88
- package/src/components/app-bar/app-bar.stories.js +75 -37
- package/src/components/app-bar/app-bar.test.js +7 -1
- package/src/components/app-bar/nav-link.component.js +15 -0
- package/src/components/app-bar/nav-link.css +58 -0
- package/src/components/app-bar/nav-link.js +6 -0
- package/src/components/app-bar/nav-link.react.js +9 -0
- package/src/components/code-preview/code-preview.css +5 -0
- package/src/components/container/container.css +6 -0
- package/src/components/countdown/countdown.component.js +180 -0
- package/src/components/countdown/countdown.css +62 -0
- package/src/components/countdown/countdown.js +6 -0
- package/src/components/countdown/countdown.react.js +9 -0
- package/src/components/countdown/countdown.stories.js +65 -0
- package/src/components/countdown/index.js +1 -0
- package/src/components/cta/cta.css +6 -0
- package/src/components/dialog/dialog.css +5 -0
- package/src/components/feature-list/feature-list.css +6 -0
- package/src/components/footer/footer.css +3 -1
- package/src/components/form-field/form-field.css +6 -0
- package/src/components/gallery/gallery.css +5 -0
- package/src/components/hero/hero.component.js +7 -0
- package/src/components/hero/hero.css +18 -1
- package/src/components/hero/hero.stories.js +30 -0
- package/src/components/icon/icon.css +6 -0
- package/src/components/loading/loading.css +5 -0
- package/src/components/logo-cloud/logo-cloud.css +6 -0
- package/src/components/map/index.js +1 -0
- package/src/components/map/map.component.js +135 -0
- package/src/components/map/map.css +41 -0
- package/src/components/map/map.js +6 -0
- package/src/components/map/map.react.js +9 -0
- package/src/components/map/map.stories.js +68 -0
- package/src/components/media-text/media-text.css +6 -0
- package/src/components/newsletter/newsletter.css +6 -0
- package/src/components/notice/notice.css +5 -0
- package/src/components/pagination/pagination.css +5 -0
- package/src/components/pricing/pricing.css +6 -0
- package/src/components/stats/stats.css +6 -0
- package/src/components/testimonials/testimonials.css +6 -0
- package/src/components/tooltip/tooltip.css +5 -0
- package/src/css/all.css +3 -1
- package/src/css/base.css +6 -247
- package/src/css/elements/a.css +8 -8
- package/src/css/reset.css +246 -0
- package/src/lib/styles/all.css +2 -0
- package/src/main.js +2 -0
- package/src/pages/blog-post.stories.js +7 -19
- package/src/react.js +3 -0
- package/src/types.d.ts +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.7.0](https://github.com/grantcodes/ui/compare/ui-v2.6.0...ui-v2.7.0) (2026-04-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add center prop and default slot to hero component ([7e1ffde](https://github.com/grantcodes/ui/commit/7e1ffdebc1a51f12f6c8685e36ac9f1e142eb9f1))
|
|
9
|
+
* add center prop and default slot to hero component ([89f0b42](https://github.com/grantcodes/ui/commit/89f0b42c8eb0214ab2126efdd8f2bc959b170922)), closes [#49](https://github.com/grantcodes/ui/issues/49) [#58](https://github.com/grantcodes/ui/issues/58)
|
|
10
|
+
* add grantcodes-countdown component ([a67ab75](https://github.com/grantcodes/ui/commit/a67ab7560b73c3f3f55d65371497d331ce9896ea))
|
|
11
|
+
* add grantcodes-countdown component ([5beb8a1](https://github.com/grantcodes/ui/commit/5beb8a1bf87ff91542ab03974e68b049ed02a2ae)), closes [#56](https://github.com/grantcodes/ui/issues/56)
|
|
12
|
+
* add grantcodes-map component (OpenStreetMap embed) ([0671693](https://github.com/grantcodes/ui/commit/0671693285fc44a945f6be77ed50b3128dcbbb3c))
|
|
13
|
+
* add grantcodes-map component (OpenStreetMap embed) ([69919ae](https://github.com/grantcodes/ui/commit/69919ae03307406b166baf2ee33a1b33c5eca517)), closes [#55](https://github.com/grantcodes/ui/issues/55)
|
|
14
|
+
* add TypeScript ambient declarations for component import paths ([c456370](https://github.com/grantcodes/ui/commit/c456370ff3130b9d77d5abcce94157bb454c8a40))
|
|
15
|
+
* add TypeScript ambient declarations for component import paths ([3c08b56](https://github.com/grantcodes/ui/commit/3c08b56d5907f5f1ab4e11fed559b6d9aef4af23)), closes [#54](https://github.com/grantcodes/ui/issues/54)
|
|
16
|
+
* improve accordion styling with SVG chevron and unified borders ([4a84167](https://github.com/grantcodes/ui/commit/4a84167b2b3956544085dd47c8d9ccf0dd5707f4))
|
|
17
|
+
* improve accordion styling with SVG chevron and unified borders ([f35c83d](https://github.com/grantcodes/ui/commit/f35c83d594dd7453257096c510c57a73124d2667)), closes [#50](https://github.com/grantcodes/ui/issues/50)
|
|
18
|
+
* **map:** dark mode filter based on .dark/.light classes ([40550b7](https://github.com/grantcodes/ui/commit/40550b7969858a83cf298680471e525ed57d0854))
|
|
19
|
+
* **map:** switch tile layer based on color scheme ([ccd991e](https://github.com/grantcodes/ui/commit/ccd991e40bde054b664b61ab83579d5ec83358bb))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* accordion chevron axis, focus ring, and subtle styling ([c44d877](https://github.com/grantcodes/ui/commit/c44d8774f88c80ade425f735110472e0d8cb91cd))
|
|
25
|
+
* **accordion:** add bottom border-radius to content panel ([111aa87](https://github.com/grantcodes/ui/commit/111aa87ba682d3a9faa8beb06a8e8746503eac87))
|
|
26
|
+
* **accordion:** remove top border from content panel ([7668223](https://github.com/grantcodes/ui/commit/766822325ecd65d04a6e43bafcfca206999941b2))
|
|
27
|
+
* **accordion:** swap backgrounds — subtle on summary, default on content ([c3fe7a5](https://github.com/grantcodes/ui/commit/c3fe7a52f35d1cc1e15d8e7ee9eec089f57da420))
|
|
28
|
+
* **accordion:** use subtle background for content panel ([182e8f3](https://github.com/grantcodes/ui/commit/182e8f3fd3a8179b3c196003188abb08fe5e67b8))
|
|
29
|
+
* add box-sizing border-box reset to all component shadow roots ([c5cfb8f](https://github.com/grantcodes/ui/commit/c5cfb8faa15b480b915b29d4458d2d92bd5aef12))
|
|
30
|
+
* add box-sizing border-box reset to all component shadow roots ([184fa6b](https://github.com/grantcodes/ui/commit/184fa6b3b064e445f540b05bc4b6686a91a6690e)), closes [#48](https://github.com/grantcodes/ui/issues/48)
|
|
31
|
+
* bump countdown font size to h1 scale, zero-pad values, add flip animation ([94ee0fa](https://github.com/grantcodes/ui/commit/94ee0fac8793284a61c6abca65754571b2c76743))
|
|
32
|
+
* **footer:** subtle background + border, simplify slotted typography ([48d1037](https://github.com/grantcodes/ui/commit/48d10371b530321c833efe9677ce2e94b7282337))
|
|
33
|
+
* improve footer styling with subtle background and simplified typography ([2c727d9](https://github.com/grantcodes/ui/commit/2c727d97c836469adc019ce39493044fdd732c62))
|
|
34
|
+
* **map:** remove 1px gap below iframe ([2663c2a](https://github.com/grantcodes/ui/commit/2663c2ab350e43f2b7e0c3c18c1c368ac83b563f))
|
|
35
|
+
* **map:** revert layer switching, use CSS filters for dark mode ([d24071a](https://github.com/grantcodes/ui/commit/d24071a712a290e06347e022112b013bc324e503))
|
|
36
|
+
* narrow footer slotted content color to specific elements ([4ed977e](https://github.com/grantcodes/ui/commit/4ed977ec2b7c4b897baa45686f85503d80abcf5a)), closes [#51](https://github.com/grantcodes/ui/issues/51)
|
|
37
|
+
|
|
38
|
+
## [2.6.0](https://github.com/grantcodes/ui/compare/ui-v2.5.1...ui-v2.6.0) (2026-04-06)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Features
|
|
42
|
+
|
|
43
|
+
* **08-02:** add nav-link component, fix CSS cascade, refactor base styles ([fa143e2](https://github.com/grantcodes/ui/commit/fa143e2362b90b8d2879148bee7044db21dcb5e7))
|
|
44
|
+
* **08-02:** rewrite app bar Storybook stories without inline styles ([1424640](https://github.com/grantcodes/ui/commit/1424640b696b5c97aca269f2594cbad8b51ec45f))
|
|
45
|
+
* **08-03:** redesign mobile menu as full-screen overlay with animation ([600dc6e](https://github.com/grantcodes/ui/commit/600dc6e478691d0642ca34f52306ff67489baf12))
|
|
46
|
+
* app bar improvements — nav-link component, CSS fixes, mobile menu overlay ([d1e66a2](https://github.com/grantcodes/ui/commit/d1e66a20d9d258eda22303f827491780d1d2467b))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
* **08-01:** clean up app-bar CSS — dead code, tokens, sticky, a11y, responsive ([000fd4b](https://github.com/grantcodes/ui/commit/000fd4b2c5b4be04900ab42a63298e6d8735d67c))
|
|
52
|
+
* **08-03:** close mobile menu on resize past desktop breakpoint ([dac56e1](https://github.com/grantcodes/ui/commit/dac56e1bcfa735e37fe82c43fde89be3c211d0c3))
|
|
53
|
+
* move font shorthand before line-height in reset.css to fix lint error ([98c9bba](https://github.com/grantcodes/ui/commit/98c9bbac15e3a7db81c103023352f6f8f071dbb6))
|
|
54
|
+
|
|
3
55
|
## [2.5.1](https://github.com/grantcodes/ui/compare/ui-v2.5.0...ui-v2.5.1) (2026-04-05)
|
|
4
56
|
|
|
5
57
|
|