From 8372ec768d09a273ea5c8e23f49874d7ba81b569 Mon Sep 17 00:00:00 2001
From: thelukewalton
Date: Tue, 4 Feb 2025 10:58:35 +0000
Subject: [PATCH] chore: release 1.0.0
Release-As: 1.0.0
---
.github/workflows/on-release.yml | 8 +-
.github/workflows/pull-request.yml | 5 +-
.gitignore | 3 +-
.release-please-manifest.json | 3 +-
CHANGELOG.md | 2371 -----------------
LICENSE | 21 +
example/lib/home.dart | 2 +-
melos.yaml | 8 +
packages/zeta_flutter/.pubignore | 23 +
packages/zeta_flutter/CHANGELOG.md | 7 +
packages/zeta_flutter/README.md | 2 +-
packages/zeta_flutter/pubspec.yaml | 11 +-
.../test_utils/tolerant_comparator.dart | 77 -
packages/zeta_flutter_theme/.pubignore | 23 +
packages/zeta_flutter_theme/CHANGELOG.md | 7 +
packages/zeta_flutter_theme/pubspec.yaml | 5 +-
packages/zeta_flutter_utils/.pubignore | 23 +
packages/zeta_flutter_utils/CHANGELOG.md | 7 +
packages/zeta_flutter_utils/pubspec.yaml | 7 +-
.pubignore => packages/zeta_icons/.pubignore | 3 +-
packages/zeta_icons/CHANGELOG.md | 7 +
packages/zeta_icons/pubspec.yaml | 5 +-
release-please-config.json | 4 -
scripts/pana.sh | 5 +
tmpfile | Bin 102 -> 0 bytes
widgetbook/lib/introduction.dart | 2 +-
26 files changed, 158 insertions(+), 2481 deletions(-)
delete mode 100644 CHANGELOG.md
create mode 100644 LICENSE
create mode 100644 packages/zeta_flutter/.pubignore
delete mode 100644 packages/zeta_flutter/test_utils/tolerant_comparator.dart
create mode 100644 packages/zeta_flutter_theme/.pubignore
create mode 100644 packages/zeta_flutter_utils/.pubignore
rename .pubignore => packages/zeta_icons/.pubignore (95%)
create mode 100644 scripts/pana.sh
delete mode 100644 tmpfile
diff --git a/.github/workflows/on-release.yml b/.github/workflows/on-release.yml
index fe814e1f..e4d5d65c 100644
--- a/.github/workflows/on-release.yml
+++ b/.github/workflows/on-release.yml
@@ -21,12 +21,12 @@ jobs:
flutter-version: 3.27.x
- name: Install dependencies
run: flutter pub get
- - name: Format code
- run: dart format --fix .
+ - name: Install melos
+ run: pub global activate melos
- name: Check Publish Warnings
- run: dart pub publish --dry-run
+ run: melos publish
- name: Publish
- run: dart pub publish --force
+ run: melos publish --no-dry-run
deploy-website:
runs-on: ubuntu-latest
diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml
index 04bc39ef..de49ccfd 100644
--- a/.github/workflows/pull-request.yml
+++ b/.github/workflows/pull-request.yml
@@ -1,7 +1,6 @@
name: CI - Pull Request
on:
- pull_request:
- # pull_request_target:
+ pull_request_target:
# Pull Request Runs on the same branch will be cancelled
concurrency:
@@ -22,13 +21,13 @@ jobs:
cache: true
channel: stable
flutter-version: 3.27.x
+ - run: dart pub global activate melos
- run: dart run build_runner build --delete-conflicting-outputs
- run: |
cd widgetbook
flutter pub get
- name: Setup LCOV
uses: hrishikesh-kadam/setup-lcov@v1
- - run: dart pub global activate melos
- uses: ZebraDevs/flutter-code-quality@change-test-command
with:
token: ${{secrets.GITHUB_TOKEN}}
diff --git a/.gitignore b/.gitignore
index 7f6a732e..16ae6949 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,7 +23,6 @@ build/
**/.fvm/
.gradle/
local.properties
-*.log
captures/
.externalNativeBuild/
.cxx/
@@ -149,3 +148,5 @@ package-lock.json
/.coverage
.fvm/
pubspec_overrides.yaml
+/pana
+/doc/api
\ No newline at end of file
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 2e1d8786..708495ec 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -2,6 +2,5 @@
"packages/zeta_flutter": "0.20.1",
"packages/zeta_flutter_theme": "0.20.1",
"packages/zeta_flutter_utils": "0.20.1",
- "packages/zeta_icons": "0.20.1",
- ".": "0.20.1"
+ "packages/zeta_icons": "0.20.1"
}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index d39b323a..00000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,2371 +0,0 @@
-# Changelog
-
-## [1.0.0-alpha](https://github.com/ZebraDevs/zeta_flutter/compare/v0.20.2...v1.0.0) (2025-01-09)
-
-### ⚠ BREAKING CHANGES
-
-- **UX-1144:** Integrate color tokens with Figma ([#227](https://github.com/ZebraDevs/zeta_flutter/issues/227))
-- Update to Flutter 3.27.0
-
-### ✨ New Features
-
-- **UX-1144:** Integrate color tokens with Figma ([#227](https://github.com/ZebraDevs/zeta_flutter/issues/227)) ([2f23529](https://github.com/ZebraDevs/zeta_flutter/commit/2f235292f860e58a0a62cfc18875b516d87f1e2e))
-
-### 🪲 Bug Fixes
-
-- Use new Color / opacity values ([3588c1c](https://github.com/ZebraDevs/zeta_flutter/commit/3588c1cafd781efd18df98253d9b2deb61ac0344))
-
-### ⛓️ Dependencies
-
-- Update intl and zds_analysis ([1bec853](https://github.com/ZebraDevs/zeta_flutter/commit/1bec8532834e6955b8507b6a38b92184b2f1016b))
-- Update to Flutter 3.27.0 ([3588c1c](https://github.com/ZebraDevs/zeta_flutter/commit/3588c1cafd781efd18df98253d9b2deb61ac0344))
-
-### 🧪 Tests
-
-- Update tests for color changes ([3588c1c](https://github.com/ZebraDevs/zeta_flutter/commit/3588c1cafd781efd18df98253d9b2deb61ac0344))
-
-### 🧹 Miscellaneous Chores
-
-- Remove deprecated fields ([1bec853](https://github.com/ZebraDevs/zeta_flutter/commit/1bec8532834e6955b8507b6a38b92184b2f1016b))
-- Update and implement new lint rules ([#233](https://github.com/ZebraDevs/zeta_flutter/issues/233)) ([1bec853](https://github.com/ZebraDevs/zeta_flutter/commit/1bec8532834e6955b8507b6a38b92184b2f1016b))
-- Update publignore to not ignore docs ([#230](https://github.com/ZebraDevs/zeta_flutter/issues/230)) ([3588c1c](https://github.com/ZebraDevs/zeta_flutter/commit/3588c1cafd781efd18df98253d9b2deb61ac0344))
-- Update publignore to not ignore docs ([#230](https://github.com/ZebraDevs/zeta_flutter/issues/230)) ([9c529fc](https://github.com/ZebraDevs/zeta_flutter/commit/9c529fc978b0654503335279948a982c7d505cbe))
-- **UX-1347:** Update to Flutter 3.27.x ([#232](https://github.com/ZebraDevs/zeta_flutter/issues/232)) ([3588c1c](https://github.com/ZebraDevs/zeta_flutter/commit/3588c1cafd781efd18df98253d9b2deb61ac0344))
-- **UX-1352:** Use dart enhanced enums ([#228](https://github.com/ZebraDevs/zeta_flutter/issues/228)) ([c965dd5](https://github.com/ZebraDevs/zeta_flutter/commit/c965dd5c6a7a3bb98599982f7bf0e12589743652))
-
-## [0.20.2](https://github.com/ZebraDevs/zeta_flutter/compare/v0.20.1...v0.20.2) (2024-12-20)
-
-### ⛓️ Dependencies
-
-- **automated:** Update icons ([#225](https://github.com/ZebraDevs/zeta_flutter/issues/225)) ([b1729e3](https://github.com/ZebraDevs/zeta_flutter/commit/b1729e3a99e74b5eaf0c81b2003c10229bf83b59))
-
-## [0.20.1](https://github.com/ZebraDevs/zeta_flutter/compare/v0.20.0...v0.20.1) (2024-12-13)
-
-### 🪲 Bug Fixes
-
-- Fab icon color ([#222](https://github.com/ZebraDevs/zeta_flutter/issues/222)) ([58b9222](https://github.com/ZebraDevs/zeta_flutter/commit/58b9222446e47d976761ffd347546717b043aa23))
-
-## [0.20.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.19.0...v0.20.0) (2024-12-12)
-
-### ✨ New Features
-
-- Created Range Selector ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-- **UX-881:** Range Selector ([#217](https://github.com/ZebraDevs/zeta_flutter/issues/217)) ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-
-### 🪲 Bug Fixes
-
-- Fixed issue where avatar lower badge was not showing ([#218](https://github.com/ZebraDevs/zeta_flutter/issues/218)) ([a1742a3](https://github.com/ZebraDevs/zeta_flutter/commit/a1742a3cabb9aad03d2f79ee4bf832a54cec928f))
-- removed defaults to true on showValues ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-- removed large thumbs ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-- removed rounded from widgetbook ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-- Top app bar padding ([#215](https://github.com/ZebraDevs/zeta_flutter/issues/215)) ([7b374b7](https://github.com/ZebraDevs/zeta_flutter/commit/7b374b7e929c07d20220d9ab8e9ee09a12206442))
-
-### 📈 Documentation
-
-- widgetbook and example for range selector ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-
-### ⛓️ Dependencies
-
-- **automated:** Update icons ([#219](https://github.com/ZebraDevs/zeta_flutter/issues/219)) ([1bd8bfa](https://github.com/ZebraDevs/zeta_flutter/commit/1bd8bfa0a8a6fda8782860779fa02e1d195f67ea))
-- **automated:** Update icons ([#221](https://github.com/ZebraDevs/zeta_flutter/issues/221)) ([10cc97c](https://github.com/ZebraDevs/zeta_flutter/commit/10cc97c225e6644099b10b8fefa537546d842408))
-
-### 🧪 Tests
-
-- adjusted golden tolerance ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-- created interaction tests ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-- testing range selector ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-- wrote 1 test for range selector ([7257c40](https://github.com/ZebraDevs/zeta_flutter/commit/7257c409afaaf10b51a577856ab9623510d43e70))
-
-## [0.19.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.18.0...v0.19.0) (2024-11-18)
-
-### ✨ New Features
-
-- Added shrink items to navigation bar so the items can expand to fill the space and shrink ([5a785f0](https://github.com/ZebraDevs/zeta_flutter/commit/5a785f0cd35a827297ca2d8b96a7f96cf45215cc))
-- **UX-1096:** Added shrink items to navigation bar so the items can expand or shrink. To match web ([#210](https://github.com/ZebraDevs/zeta_flutter/issues/210)) ([5a785f0](https://github.com/ZebraDevs/zeta_flutter/commit/5a785f0cd35a827297ca2d8b96a7f96cf45215cc))
-
-### 🪲 Bug Fixes
-
-- add SafeArea to ZetaNavigationBar ([#211](https://github.com/ZebraDevs/zeta_flutter/issues/211)) ([aa7a1e4](https://github.com/ZebraDevs/zeta_flutter/commit/aa7a1e4eff10274f4fb11111a825e21a496522a6))
-- added shrink items to widgetbook ([5a785f0](https://github.com/ZebraDevs/zeta_flutter/commit/5a785f0cd35a827297ca2d8b96a7f96cf45215cc))
-- breadcrumb now removes the items after the one that is clicked ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- breadcrumb select index ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- Changed font size of medium indicator from 12 to 11 ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- Extra verbose semantic label ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- hover color on navigation item ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- indicator semantic labels ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- intruduced a value listenable builder to handle hover and pressed states on breadcrumb item ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- made NavigationItem visible for testing ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- navigation bar semantic labels ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- removed active icon prop ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- rounded now affects breadcrumb icons ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- set navigation item highlight shape to rectangle ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- The icon that was passed in now shows on breadcrumb ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- truncated only hides any breadcrumbs over the maxItemsShown number ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- typo ";abel" => "label" ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- **UX-1232:** Breadcrumb Issues ([#214](https://github.com/ZebraDevs/zeta_flutter/issues/214)) ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- **UX-1315:** Update license ([#208](https://github.com/ZebraDevs/zeta_flutter/issues/208)) ([bfbfa23](https://github.com/ZebraDevs/zeta_flutter/commit/bfbfa238f3356368d1f36d32d15ba8de4706646e))
-- **UX-1316:** Update macro desciption ([bfbfa23](https://github.com/ZebraDevs/zeta_flutter/commit/bfbfa238f3356368d1f36d32d15ba8de4706646e))
-
-### ⛓️ Dependencies
-
-- Update example app android dependencies ([#212](https://github.com/ZebraDevs/zeta_flutter/issues/212)) ([179c2cb](https://github.com/ZebraDevs/zeta_flutter/commit/179c2cba6ef0f65523d273d8dad2399f8292e220))
-
-### 🧪 Tests
-
-- added more tests for navigation bar ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- breadcrumb items are spaced equally ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- breadcrumb label and icon default colors ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-- edited test to pass after merge ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- fixed debug fill props avatar ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- hardcoded offset ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- Navigation Bar ([#213](https://github.com/ZebraDevs/zeta_flutter/issues/213)) ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- navigation item calls onTap when an item is tapped off center ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- ran test counter ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- Uncommented text contrast tests ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- writing tests for navigation bar ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- wrote content and accessibility tests ([d97440b](https://github.com/ZebraDevs/zeta_flutter/commit/d97440b6acde461ed615b1ea827064b4b53af351))
-
-### 🧹 Miscellaneous Chores
-
-- **automated:** Lint commit and format ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-- **automated:** Lint commit and format ([9f6ed48](https://github.com/ZebraDevs/zeta_flutter/commit/9f6ed48a91d5a0f681d7c3df43da49dc40852f1d))
-
-## [0.18.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.17.0...v0.18.0) (2024-11-11)
-
-### ✨ New Features
-
-- Added disabled variant to chip ([321b57d](https://github.com/ZebraDevs/zeta_flutter/commit/321b57de1cfc39cc940d28716fa1a49efc577d84))
-- Added label prop to progress circle which overrides default percentage label ([e035a47](https://github.com/ZebraDevs/zeta_flutter/commit/e035a47178efd5b1528c86fc4f5c46bd7ad179f5))
-- added maxValue to progress circle ([e035a47](https://github.com/ZebraDevs/zeta_flutter/commit/e035a47178efd5b1528c86fc4f5c46bd7ad179f5))
-- Added mouse region to avatar for give click pointer ([37b0f8e](https://github.com/ZebraDevs/zeta_flutter/commit/37b0f8e284d0b734a1ca9b3e17fccbbca6c60fa5))
-- Added NavRail focus state ([39c5cdf](https://github.com/ZebraDevs/zeta_flutter/commit/39c5cdf4a150b6aae1c57cfc4a7daa1c70f09883))
-- Added NavRail hover state ([#204](https://github.com/ZebraDevs/zeta_flutter/issues/204)) ([39c5cdf](https://github.com/ZebraDevs/zeta_flutter/commit/39c5cdf4a150b6aae1c57cfc4a7daa1c70f09883))
-- added onTap to widgetbook ([321b57d](https://github.com/ZebraDevs/zeta_flutter/commit/321b57de1cfc39cc940d28716fa1a49efc577d84))
-- Added onTaps to chips in example app ([321b57d](https://github.com/ZebraDevs/zeta_flutter/commit/321b57de1cfc39cc940d28716fa1a49efc577d84))
-- added rounded to widgetbook ([321b57d](https://github.com/ZebraDevs/zeta_flutter/commit/321b57de1cfc39cc940d28716fa1a49efc577d84))
-- created status chip ([c69d3b7](https://github.com/ZebraDevs/zeta_flutter/commit/c69d3b76afcd14a8ffa5777483687f818ac70876))
-- implemented status chip widgetbook use case ([c69d3b7](https://github.com/ZebraDevs/zeta_flutter/commit/c69d3b76afcd14a8ffa5777483687f818ac70876))
-- **UX-1233:** Added disabled variant to chip ([#203](https://github.com/ZebraDevs/zeta_flutter/issues/203)) ([321b57d](https://github.com/ZebraDevs/zeta_flutter/commit/321b57de1cfc39cc940d28716fa1a49efc577d84))
-- **UX-1234:** Status Chip ([#201](https://github.com/ZebraDevs/zeta_flutter/issues/201)) ([c69d3b7](https://github.com/ZebraDevs/zeta_flutter/commit/c69d3b76afcd14a8ffa5777483687f818ac70876))
-- **UX-1247:** extend ZetaProgressCircle ([#199](https://github.com/ZebraDevs/zeta_flutter/issues/199)) ([e035a47](https://github.com/ZebraDevs/zeta_flutter/commit/e035a47178efd5b1528c86fc4f5c46bd7ad179f5))
-- **UX-1310:** Added more customization options to ZetaListItem ([#205](https://github.com/ZebraDevs/zeta_flutter/issues/205)) ([6e13502](https://github.com/ZebraDevs/zeta_flutter/commit/6e135020cbddcf7e448abdfadd7eaca127acff56))
-
-### 🪲 Bug Fixes
-
-- Banner title alignment when centered ([044ed2e](https://github.com/ZebraDevs/zeta_flutter/commit/044ed2ea47ae9e82ce7433ff251582a2fc861271))
-- changed \_updateControllerState to \_handleDisabledState ([321b57d](https://github.com/ZebraDevs/zeta_flutter/commit/321b57de1cfc39cc940d28716fa1a49efc577d84))
-- converted child widget function to a stateless widget class in status chip ([c69d3b7](https://github.com/ZebraDevs/zeta_flutter/commit/c69d3b76afcd14a8ffa5777483687f818ac70876))
-- Removed hit test behavior from avatar rail ([37b0f8e](https://github.com/ZebraDevs/zeta_flutter/commit/37b0f8e284d0b734a1ca9b3e17fccbbca6c60fa5))
-- removed hit test behaviour from avatar rail ([#197](https://github.com/ZebraDevs/zeta_flutter/issues/197)) ([37b0f8e](https://github.com/ZebraDevs/zeta_flutter/commit/37b0f8e284d0b734a1ca9b3e17fccbbca6c60fa5))
-- set rounded to default to true ([c69d3b7](https://github.com/ZebraDevs/zeta_flutter/commit/c69d3b76afcd14a8ffa5777483687f818ac70876))
-- used variable ([321b57d](https://github.com/ZebraDevs/zeta_flutter/commit/321b57de1cfc39cc940d28716fa1a49efc577d84))
-- **UX-1161:** banner title alignment when centered ([#200](https://github.com/ZebraDevs/zeta_flutter/issues/200)) ([044ed2e](https://github.com/ZebraDevs/zeta_flutter/commit/044ed2ea47ae9e82ce7433ff251582a2fc861271))
-- **UX-1298:** ZetaDialog button overflow ([51b4172](https://github.com/ZebraDevs/zeta_flutter/commit/51b4172d3e926e9fa2c87fd1be4f2c2ec5b4a71b))
-- **UX-1303:** Update avatar boarder width ([#202](https://github.com/ZebraDevs/zeta_flutter/issues/202)) ([51b4172](https://github.com/ZebraDevs/zeta_flutter/commit/51b4172d3e926e9fa2c87fd1be4f2c2ec5b4a71b))
-- **UX-1309:** Wrapped initials with FittedBox inside ZetaAvatar so that the text scales correctly with device text scaling ([6e13502](https://github.com/ZebraDevs/zeta_flutter/commit/6e135020cbddcf7e448abdfadd7eaca127acff56))
-
-### 📈 Documentation
-
-- added description for status chip ([c69d3b7](https://github.com/ZebraDevs/zeta_flutter/commit/c69d3b76afcd14a8ffa5777483687f818ac70876))
-- added more info to global header. Info about where to use the header ([#206](https://github.com/ZebraDevs/zeta_flutter/issues/206)) ([c9c84c0](https://github.com/ZebraDevs/zeta_flutter/commit/c9c84c0d7b80934e59b76ba3501639d6de37f35a))
-
-### ⛓️ Dependencies
-
-- **automated:** Update icons ([#207](https://github.com/ZebraDevs/zeta_flutter/issues/207)) ([87a5df1](https://github.com/ZebraDevs/zeta_flutter/commit/87a5df158653a7623f09894961fe985635362d95))
-
-### 🧪 Tests
-
-- Add a log on debugFillPropertiesTest if it fails ([51b4172](https://github.com/ZebraDevs/zeta_flutter/commit/51b4172d3e926e9fa2c87fd1be4f2c2ec5b4a71b))
-- Added debugfillproperties test to chip_test ([321b57d](https://github.com/ZebraDevs/zeta_flutter/commit/321b57de1cfc39cc940d28716fa1a49efc577d84))
-- **UX-1305:** Update avatar test ([51b4172](https://github.com/ZebraDevs/zeta_flutter/commit/51b4172d3e926e9fa2c87fd1be4f2c2ec5b4a71b))
-- wrote tests for status chip ([c69d3b7](https://github.com/ZebraDevs/zeta_flutter/commit/c69d3b76afcd14a8ffa5777483687f818ac70876))
-
-## [0.17.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.16.0...v0.17.0) (2024-10-28)
-
-### ✨ New Features
-
-- added label to avatar ([823370e](https://github.com/ZebraDevs/zeta_flutter/commit/823370e161dd753abd22060d8dd862752dc8a34f))
-- created avatar rail ([823370e](https://github.com/ZebraDevs/zeta_flutter/commit/823370e161dd753abd22060d8dd862752dc8a34f))
-- **UX-1231:** created avatar rail ([#196](https://github.com/ZebraDevs/zeta_flutter/issues/196)) ([823370e](https://github.com/ZebraDevs/zeta_flutter/commit/823370e161dd753abd22060d8dd862752dc8a34f))
-
-### 🪲 Bug Fixes
-
-- added MainAxisSize.min to avatar column to regulate height ([823370e](https://github.com/ZebraDevs/zeta_flutter/commit/823370e161dd753abd22060d8dd862752dc8a34f))
-- widgetbook max lines avatar rail ([823370e](https://github.com/ZebraDevs/zeta_flutter/commit/823370e161dd753abd22060d8dd862752dc8a34f))
-
-### 🧪 Tests
-
-- changed the word 'Dimension' to 'Dimensions' ([#194](https://github.com/ZebraDevs/zeta_flutter/issues/194)) ([17a6995](https://github.com/ZebraDevs/zeta_flutter/commit/17a69951628d17edc635408d1b026abbf3dc92c5))
-- created tests for avatar rail ([823370e](https://github.com/ZebraDevs/zeta_flutter/commit/823370e161dd753abd22060d8dd862752dc8a34f))
-- fixed parent folder for stepper ([823370e](https://github.com/ZebraDevs/zeta_flutter/commit/823370e161dd753abd22060d8dd862752dc8a34f))
-
-### 🧹 Miscellaneous Chores
-
-- **automated:** Lint commit and format ([823370e](https://github.com/ZebraDevs/zeta_flutter/commit/823370e161dd753abd22060d8dd862752dc8a34f))
-
-## [0.16.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.15.2...v0.16.0) (2024-10-22)
-
-### ✨ New Features
-
-- added swipe-able actions to notification list item ([057defd](https://github.com/ZebraDevs/zeta_flutter/commit/057defd5a945382826ae8746416473943304da32))
-- comms buttons ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- updated notification list item to match latest design ([057defd](https://github.com/ZebraDevs/zeta_flutter/commit/057defd5a945382826ae8746416473943304da32))
-- **UX-1064:** Comms Buttons ([#182](https://github.com/ZebraDevs/zeta_flutter/issues/182)) ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- **UX-1073:** List Item notification ([#172](https://github.com/ZebraDevs/zeta_flutter/issues/172)) ([057defd](https://github.com/ZebraDevs/zeta_flutter/commit/057defd5a945382826ae8746416473943304da32))
-
-### 🪲 Bug Fixes
-
-- \_getSlidableExtend() now won't return over 1.0 ([057defd](https://github.com/ZebraDevs/zeta_flutter/commit/057defd5a945382826ae8746416473943304da32))
-- A variety of small bug fixes ([#168](https://github.com/ZebraDevs/zeta_flutter/issues/168)) ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
-- Add PlatformIs to not use dart:io ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
-- added different constructors to zetacommsbutton ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- added golden group to testing_conventions.mdx ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- added some commas ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- added styles to banner text ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- Border sizes ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
-- changed avatar xs so it shows two initals ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- changed Colors.transparent to Zeta.of(context).colors.surfaceDefault ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- changed example back ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- changed storybook to widgetbook in name of deploy preview in pull request github action ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- chat item ([#174](https://github.com/ZebraDevs/zeta_flutter/issues/174)) ([3ac64a7](https://github.com/ZebraDevs/zeta_flutter/commit/3ac64a7fa68de77d865c0f95745fdbac760d0984))
-- chat item actions \_getSlidableExtend now won't return over 1.0 ([3ac64a7](https://github.com/ZebraDevs/zeta_flutter/commit/3ac64a7fa68de77d865c0f95745fdbac760d0984))
-- Components using the internal text input are now sized correctly ([38b865b](https://github.com/ZebraDevs/zeta_flutter/commit/38b865b8460fe0b8543bab3fa8245750ac2d3d6d))
-- get initials now returns the first and last name initials rather than first and second names. ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- moved analyzer package from dependencies to dev dependencies ([5987c21](https://github.com/ZebraDevs/zeta_flutter/commit/5987c211f79ff6357a47b462a654ca191f64498b))
-- put dev dependencies in alphabetical order ([5987c21](https://github.com/ZebraDevs/zeta_flutter/commit/5987c211f79ff6357a47b462a654ca191f64498b))
-- removed '$componentName' from all test files ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- removed analyzer from dependencies ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- set toggle related properties on non-toggle constructors to null ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- Spacings in example app ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
-- **UX-1105:** Updated search bar to use internal text field ([#186](https://github.com/ZebraDevs/zeta_flutter/issues/186)) ([38b865b](https://github.com/ZebraDevs/zeta_flutter/commit/38b865b8460fe0b8543bab3fa8245750ac2d3d6d))
-- **UX-1141:** Update Spacing tokens ([#159](https://github.com/ZebraDevs/zeta_flutter/issues/159)) ([d22898f](https://github.com/ZebraDevs/zeta_flutter/commit/d22898f7e77704b5a4dd628320662530f1c2a1b4))
-- **UX-1207:** The search box on the search app bar now gets closed when the back button is pressed. ([58fc7f5](https://github.com/ZebraDevs/zeta_flutter/commit/58fc7f5c3e40888ade19a30a5592e70f5340585a))
-- **UX-1241:** Fixed inkwell on ZetaStepper ([#190](https://github.com/ZebraDevs/zeta_flutter/issues/190)) ([60a137f](https://github.com/ZebraDevs/zeta_flutter/commit/60a137f17dbeb989cf2a9f0b0dc3ee4b78ebb488))
-- **UX-1242:** Fixed extended app bar alignment ([#189](https://github.com/ZebraDevs/zeta_flutter/issues/189)) ([58fc7f5](https://github.com/ZebraDevs/zeta_flutter/commit/58fc7f5c3e40888ade19a30a5592e70f5340585a))
-- **UX-922:** FAB-redesign ([#181](https://github.com/ZebraDevs/zeta_flutter/issues/181)) ([11f266b](https://github.com/ZebraDevs/zeta_flutter/commit/11f266bbd955df2ef993f7edee2989bc9be60655))
-
-### 📈 Documentation
-
-- abstracted functions in test_counter ([5987c21](https://github.com/ZebraDevs/zeta_flutter/commit/5987c211f79ff6357a47b462a654ca191f64498b))
-- added brief docs for fontSize function in avatar ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- added comments to the class about named constructors ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- added doc comments to test_counter script and utils file ([5987c21](https://github.com/ZebraDevs/zeta_flutter/commit/5987c211f79ff6357a47b462a654ca191f64498b))
-- added figma and widgetbook links to all components ([#180](https://github.com/ZebraDevs/zeta_flutter/issues/180)) ([e1d2ba0](https://github.com/ZebraDevs/zeta_flutter/commit/e1d2ba04bfae99f7f383566b483c6558d9a91ec5))
-- added helper function section to TESTING_README ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- added info about how to run the script to testing read me ([5987c21](https://github.com/ZebraDevs/zeta_flutter/commit/5987c211f79ff6357a47b462a654ca191f64498b))
-- added link to excel sheet in TESTING_README ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- added testing_conventions.mdx to keep track how we are testing in flutter ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- changed comms button example to use assorted constructors ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- created test counter script ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- moved helper functions from test_counter to utils file ([5987c21](https://github.com/ZebraDevs/zeta_flutter/commit/5987c211f79ff6357a47b462a654ca191f64498b))
-- set initial values for comms button on widgetbook ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- test counter ([#187](https://github.com/ZebraDevs/zeta_flutter/issues/187)) ([5987c21](https://github.com/ZebraDevs/zeta_flutter/commit/5987c211f79ff6357a47b462a654ca191f64498b))
-- test_counter script improvements ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- testing counter script ([5987c21](https://github.com/ZebraDevs/zeta_flutter/commit/5987c211f79ff6357a47b462a654ca191f64498b))
-
-### ⛓️ Dependencies
-
-- **automated:** Update icons ([#191](https://github.com/ZebraDevs/zeta_flutter/issues/191)) ([0c09633](https://github.com/ZebraDevs/zeta_flutter/commit/0c09633b330594cb66457604ff684ab082ab2a4b))
-- **automated:** Update icons 2024-10-14 ([18ea9a2](https://github.com/ZebraDevs/zeta_flutter/commit/18ea9a2b123182f6da3382b9ee042297a4d721ae))
-- **automated:** Update tokens - 2024-08-27 ([#163](https://github.com/ZebraDevs/zeta_flutter/issues/163)) ([b499e22](https://github.com/ZebraDevs/zeta_flutter/commit/b499e221c58327ac6e6d18851986d3a503464de6))
-- **automated:** Update tokens ([#170](https://github.com/ZebraDevs/zeta_flutter/issues/170)) ([361b1c7](https://github.com/ZebraDevs/zeta_flutter/commit/361b1c7b7a271a990994ce35ac5d800315e7a753))
-- **automated:** Update tokens ([#176](https://github.com/ZebraDevs/zeta_flutter/issues/176)) ([2bd38de](https://github.com/ZebraDevs/zeta_flutter/commit/2bd38de3454f7544c0e19f9b60f1c2ce9e8e310c))
-- Update widgetbook dep for text scale addon ([#193](https://github.com/ZebraDevs/zeta_flutter/issues/193)) ([1852502](https://github.com/ZebraDevs/zeta_flutter/commit/185250206e151ce46e8311fd752bdeb23c82b6b6))
-
-### 🧪 Tests
-
-- Add new GoldenFiles class to simplify generating golden file Uris ([a77211a](https://github.com/ZebraDevs/zeta_flutter/commit/a77211a9fd33dfee170605a33098e9df6d634be2))
-- added background color test ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- added debugFillProperties test helper function ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- added loop for zetaavatar with border color for $size ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- added test count script ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- avatar ([#183](https://github.com/ZebraDevs/zeta_flutter/issues/183)) ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- banner ([#184](https://github.com/ZebraDevs/zeta_flutter/issues/184)) ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- banner tests ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- changed extension test to reflect changes ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- changed the iconbutton to a ZetaIcon for golden tests ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- comms goldens ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- Fix bug in golden tests that meant they failed on windows ([#177](https://github.com/ZebraDevs/zeta_flutter/issues/177)) ([a77211a](https://github.com/ZebraDevs/zeta_flutter/commit/a77211a9fd33dfee170605a33098e9df6d634be2))
-- implemented helper function in avatar and banner tests ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- improved banner tests ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- moved script files to different PR ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- organizing tests into groups ([#188](https://github.com/ZebraDevs/zeta_flutter/issues/188)) ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- removed comment that was cause github action to fail ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- removed unused import ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- replaced IconButton with Icon from golden tests ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- standardizing tests for badges ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- started making banner tests ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- Wrote tests for ZetaStepper ([60a137f](https://github.com/ZebraDevs/zeta_flutter/commit/60a137f17dbeb989cf2a9f0b0dc3ee4b78ebb488))
-- Wrote tests for ZetaTopAppbar ([58fc7f5](https://github.com/ZebraDevs/zeta_flutter/commit/58fc7f5c3e40888ade19a30a5592e70f5340585a))
-
-### 🧹 Miscellaneous Chores
-
-- **automated:** Lint commit and format ([ba4901d](https://github.com/ZebraDevs/zeta_flutter/commit/ba4901d74fff20d6319050f331c5f6d60f99b438))
-- **automated:** Lint commit and format ([ef050af](https://github.com/ZebraDevs/zeta_flutter/commit/ef050af9af8caf9552aa2b7aa1a4465320e4c870))
-- **automated:** Lint commit and format ([7fba9b2](https://github.com/ZebraDevs/zeta_flutter/commit/7fba9b27e399fc3ac5ebc0c09908ae4c3be92e3c))
-- **automated:** Lint commit and format ([af95815](https://github.com/ZebraDevs/zeta_flutter/commit/af958159b3e4f3fad06c24e64983aff5861a9482))
-- **automated:** Lint commit and format ([3ac64a7](https://github.com/ZebraDevs/zeta_flutter/commit/3ac64a7fa68de77d865c0f95745fdbac760d0984))
-- Merged goldenTest and goldenTestWithCallbacks. Also made the widgetType parameter optional and defaulted it to the type of widget. ([58fc7f5](https://github.com/ZebraDevs/zeta_flutter/commit/58fc7f5c3e40888ade19a30a5592e70f5340585a))
-- Update third party licenses ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
-
-## [0.15.2](https://github.com/ZebraDevs/zeta_flutter/compare/v0.15.1...v0.15.2) (2024-08-23)
-
-### 🪲 Bug Fixes
-
-- **UX-1141:** Integrating ZetaSemanticRadii ([#158](https://github.com/ZebraDevs/zeta_flutter/issues/158)) ([d2c57db](https://github.com/ZebraDevs/zeta_flutter/commit/d2c57db208184bdcb40631447661ff846ff6c447))
-- **UX-1171:** ExtendedTopAppBar padding without leading ([#157](https://github.com/ZebraDevs/zeta_flutter/issues/157)) ([280c63d](https://github.com/ZebraDevs/zeta_flutter/commit/280c63d53a9fbdc172617306c65effd3c2e7ad56))
-- **UX-1201:** Update Slidable button colors in ZetaChatItem ([#156](https://github.com/ZebraDevs/zeta_flutter/issues/156)) ([0b18961](https://github.com/ZebraDevs/zeta_flutter/commit/0b18961211b4f03c66f365d229616c3942a1f93a))
-
-### ⛓️ Dependencies
-
-- **automated:** Update icons 2024-08-20 ([#153](https://github.com/ZebraDevs/zeta_flutter/issues/153)) ([6ed3978](https://github.com/ZebraDevs/zeta_flutter/commit/6ed397837b37df34fa3a59cd597a4909b09e56f4))
-
-### 🧪 Tests
-
-- Add basic tests for ExtendedTopAppBar ([280c63d](https://github.com/ZebraDevs/zeta_flutter/commit/280c63d53a9fbdc172617306c65effd3c2e7ad56))
-- Added basic test cases for ZetaChatItem ([0b18961](https://github.com/ZebraDevs/zeta_flutter/commit/0b18961211b4f03c66f365d229616c3942a1f93a))
-
-## [0.15.1](https://github.com/ZebraDevs/zeta_flutter/compare/v0.15.0...v0.15.1) (2024-08-19)
-
-### 🪲 Bug Fixes
-
-- Allow custom icons in ZetaFilterSelection ([#152](https://github.com/ZebraDevs/zeta_flutter/issues/152)) ([a493129](https://github.com/ZebraDevs/zeta_flutter/commit/a4931291504613d71a09584b442e28d34c71d4a6))
-
-### ⛓️ Dependencies
-
-- Update pubspec ([faaa6fe](https://github.com/ZebraDevs/zeta_flutter/commit/faaa6fe5a77953e7b318386a0244f1e98cb88772))
-
-### 🧹 Miscellaneous Chores
-
-- Remve support for deprecated buttonBarTheme in ThemeData ([a493129](https://github.com/ZebraDevs/zeta_flutter/commit/a4931291504613d71a09584b442e28d34c71d4a6))
-
-## [0.15.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.14.1...v0.15.0) (2024-07-30)
-
-### ✨ New Features
-
-- Added focus node and keyboard type properties to ZetaTextInput ([d99d40c](https://github.com/ZebraDevs/zeta_flutter/commit/d99d40c0121fa5f323f1dc9dd85652f23e2dd845))
-
-### 🪲 Bug Fixes
-
-- Add min/max values in slider ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-- Dropdown menus now scroll ([d99d40c](https://github.com/ZebraDevs/zeta_flutter/commit/d99d40c0121fa5f323f1dc9dd85652f23e2dd845))
-- FAB expanded state ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-- Make Navigation rail and list item stateless ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-- **UX-1129:** Accordion, Chip, StepperInput didUpdateState ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-- **UX-1129:** Add didUpdateStates to StatefulWidgets ([#138](https://github.com/ZebraDevs/zeta_flutter/issues/138)) ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-
-### 📈 Documentation
-
-- **UX-1130:** Add dartdoc categories to classes ([#134](https://github.com/ZebraDevs/zeta_flutter/issues/134)) ([cdbd1d1](https://github.com/ZebraDevs/zeta_flutter/commit/cdbd1d1b38ea609dee852e98b9375b5e4e0c6878))
-
-### ⛓️ Dependencies
-
-- Update flutter-code-quality to v1.0.6 ([074e11a](https://github.com/ZebraDevs/zeta_flutter/commit/074e11a0843e5db8eec0ea708b1ef5f2ac7ea8b4))
-
-### 🧪 Tests
-
-- Accordion, Chip, StepperInput didUpdateState, ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-- FAB expanded state ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-- Improve existing accordion tests ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-- Min/max values in slider ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-
-### 🧹 Miscellaneous Chores
-
-- Make some classes private that we don't need to export([#134](https://github.com/ZebraDevs/zeta_flutter/issues/134)) ([cdbd1d1](https://github.com/ZebraDevs/zeta_flutter/commit/cdbd1d1b38ea609dee852e98b9375b5e4e0c6878))
-- Refactor existing didUpdateWidgets to best practices - remove setStates and put super call first ([7905388](https://github.com/ZebraDevs/zeta_flutter/commit/7905388e1aeffbc5e59bdfca4a7c5f53a18cd6cd))
-
-## [0.14.1](https://github.com/ZebraDevs/zeta_flutter/compare/v0.14.0...v0.14.1) (2024-07-15)
-
-### ✨ New Features
-
-- Add FocusNode to ZetaSearchBar ([#132](https://github.com/ZebraDevs/zeta_flutter/issues/132)) ([02f5d4c](https://github.com/ZebraDevs/zeta_flutter/commit/02f5d4cd3dcb5dd05039e945748b08cffd15a80e))
-- **UX-1118:** Add basic semantics for all components ([#131](https://github.com/ZebraDevs/zeta_flutter/issues/131)) ([9c26ef1](https://github.com/ZebraDevs/zeta_flutter/commit/9c26ef1e776476f3ba83d28dc02eb8db60650865))
-
-### 🪲 Bug Fixes
-
-- Update size of thumb on slider ([9c26ef1](https://github.com/ZebraDevs/zeta_flutter/commit/9c26ef1e776476f3ba83d28dc02eb8db60650865))
-
-### 🧪 Tests
-
-- adds tests for ZetaSearchBar ([02f5d4c](https://github.com/ZebraDevs/zeta_flutter/commit/02f5d4cd3dcb5dd05039e945748b08cffd15a80e))
-- Update tests for recently changed files ([9c26ef1](https://github.com/ZebraDevs/zeta_flutter/commit/9c26ef1e776476f3ba83d28dc02eb8db60650865))
-
-### 🧹 Miscellaneous Chores
-
-- release 0.14.1 ([1b06765](https://github.com/ZebraDevs/zeta_flutter/commit/1b06765a4621ad813aab3f7448b51b50d1582e3d))
-
-## [0.14.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.13.0...v0.14.0) (2024-07-08)
-
-### ✨ New Features
-
-- **UX-1121:** Added ZetaProvider.base to allow for better developer experience ([#123](https://github.com/ZebraDevs/zeta_flutter/issues/123)) ([3cc79b0](https://github.com/ZebraDevs/zeta_flutter/commit/3cc79b04366dedddb2551ef46d1bf1aa5391b5ea))
-- ZetaIcon component added ([#121](https://github.com/ZebraDevs/zeta_flutter/issues/121)) ([3b2ddef](https://github.com/ZebraDevs/zeta_flutter/commit/3b2ddefe37a79b0191cbe87910f398097dd93f89))
-
-### 🪲 Bug Fixes
-
-- Improve semantics for ChatListItem ([#128](https://github.com/ZebraDevs/zeta_flutter/issues/128)) ([1690a30](https://github.com/ZebraDevs/zeta_flutter/commit/1690a30422567f650f9d31deab8bbfbde0274406))
-
-### 📈 Documentation
-
-- Update widget book theme ([#126](https://github.com/ZebraDevs/zeta_flutter/issues/126)) ([8d9d429](https://github.com/ZebraDevs/zeta_flutter/commit/8d9d429f7f7fa91d5225b8ce8ec4d91426d27aca))
-
-### ⛓️ Dependencies
-
-- Update zeta-icon library ([#129](https://github.com/ZebraDevs/zeta_flutter/issues/129)) ([a6f72d8](https://github.com/ZebraDevs/zeta_flutter/commit/a6f72d8cbe47394733603f402bb978f640612e90))
-
-### 🧪 Tests
-
-- Added test for ZetaIcon ([3b2ddef](https://github.com/ZebraDevs/zeta_flutter/commit/3b2ddefe37a79b0191cbe87910f398097dd93f89))
-- Update golden tests for rounded state change ([3cc79b0](https://github.com/ZebraDevs/zeta_flutter/commit/3cc79b04366dedddb2551ef46d1bf1aa5391b5ea))
-
-### 🧹 Miscellaneous Chores
-
-- Add rounded switch to example app ([3cc79b0](https://github.com/ZebraDevs/zeta_flutter/commit/3cc79b04366dedddb2551ef46d1bf1aa5391b5ea))
-- typos ([ff7ecd8](https://github.com/ZebraDevs/zeta_flutter/commit/ff7ecd8e80264a3aca47abaefe79c3f2c04c5e93))
-- Update android app ([ff7ecd8](https://github.com/ZebraDevs/zeta_flutter/commit/ff7ecd8e80264a3aca47abaefe79c3f2c04c5e93))
-
-## [0.13.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.12.0...v0.13.0) (2024-06-28)
-
-### ✨ New Features
-
-- **UX-1117:** Semantic tags for SYNC ([#119](https://github.com/ZebraDevs/zeta_flutter/issues/119)) ([1177222](https://github.com/ZebraDevs/zeta_flutter/commit/1177222bb50904dd5a17c12ccf77994239c4f881))
-
-### 🪲 Bug Fixes
-
-- add braces to fab color ([#110](https://github.com/ZebraDevs/zeta_flutter/issues/110)) ([82c5feb](https://github.com/ZebraDevs/zeta_flutter/commit/82c5febf32a0529493d886e3f8c3290071bbce53))
-- Changed the functionality of dropdown sizes. Mini now sets the width of the menu to its largest child, and standard will set the minimum width to the width of the dropdown's parent. ([d9bfe19](https://github.com/ZebraDevs/zeta_flutter/commit/d9bfe19f7b32daac5963e628e7d3499d07ff17c1))
-- Removed the default offest from dropdown and added an offest. ([d9bfe19](https://github.com/ZebraDevs/zeta_flutter/commit/d9bfe19f7b32daac5963e628e7d3499d07ff17c1))
-- syntax error in action ([#118](https://github.com/ZebraDevs/zeta_flutter/issues/118)) ([a5fee0b](https://github.com/ZebraDevs/zeta_flutter/commit/a5fee0b4b30db040b400c86db1acd217a10ddc76))
-- **UX-1006:** Gave dropdown functionality to dropdown buttons in button groups ([#115](https://github.com/ZebraDevs/zeta_flutter/issues/115)) ([d9bfe19](https://github.com/ZebraDevs/zeta_flutter/commit/d9bfe19f7b32daac5963e628e7d3499d07ff17c1))
-
-## [0.12.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.11.2...v0.12.0) (2024-06-24)
-
-### ✨ New Features
-
-- added inkwells to checkbox and radio button ([a8b31d3](https://github.com/ZebraDevs/zeta_flutter/commit/a8b31d32fbe0f0ea3943bd8f03478d3bb4b6d4b5))
-- create slider component ([#53](https://github.com/ZebraDevs/zeta_flutter/issues/53)) ([6394ef6](https://github.com/ZebraDevs/zeta_flutter/commit/6394ef6b2a96bd919149e0d9e139815615ddf715))
-- Created dropdown list item ([#101](https://github.com/ZebraDevs/zeta_flutter/issues/101)) ([868b26c](https://github.com/ZebraDevs/zeta_flutter/commit/868b26cfbd64a521d6726e3271421a052257ec06))
-- Created list item variants ([#98](https://github.com/ZebraDevs/zeta_flutter/issues/98)) ([a8b31d3](https://github.com/ZebraDevs/zeta_flutter/commit/a8b31d32fbe0f0ea3943bd8f03478d3bb4b6d4b5))
-- Created ZetaAnimationDuration tokens ([868b26c](https://github.com/ZebraDevs/zeta_flutter/commit/868b26cfbd64a521d6726e3271421a052257ec06))
-- created ZetaList to add borders to list items ([a8b31d3](https://github.com/ZebraDevs/zeta_flutter/commit/a8b31d32fbe0f0ea3943bd8f03478d3bb4b6d4b5))
-
-### 🪲 Bug Fixes
-
-- minor bugs on ZetaChatItem ([#105](https://github.com/ZebraDevs/zeta_flutter/issues/105)) ([c37e51d](https://github.com/ZebraDevs/zeta_flutter/commit/c37e51d1b2be40e03d35f63db79939247315696c))
-- removed hover color on disabled radio buttons ([a8b31d3](https://github.com/ZebraDevs/zeta_flutter/commit/a8b31d32fbe0f0ea3943bd8f03478d3bb4b6d4b5))
-- **UX-1078:** fixed button group disabled color. ([88d82d8](https://github.com/ZebraDevs/zeta_flutter/commit/88d82d8ae85340cc4c32025c478b25bb955fe8e2))
-- **UX-1080:** Add snackbar action bold text ([88d82d8](https://github.com/ZebraDevs/zeta_flutter/commit/88d82d8ae85340cc4c32025c478b25bb955fe8e2))
-- **UX-1081:** Change snackbar action color ([88d82d8](https://github.com/ZebraDevs/zeta_flutter/commit/88d82d8ae85340cc4c32025c478b25bb955fe8e2))
-- **UX-977:** change indicator border color ([88d82d8](https://github.com/ZebraDevs/zeta_flutter/commit/88d82d8ae85340cc4c32025c478b25bb955fe8e2))
-
-### 📈 Documentation
-
-- Added guides for golden and unit testing ([4b41f73](https://github.com/ZebraDevs/zeta_flutter/commit/4b41f738da8d9c45783159a0b8e36299f9cf6df3))
-- Fix documentation macros ([c37e51d](https://github.com/ZebraDevs/zeta_flutter/commit/c37e51d1b2be40e03d35f63db79939247315696c))
-
-### ⛓️ Dependencies
-
-- Update zeta-icon library ([#107](https://github.com/ZebraDevs/zeta_flutter/issues/107)) ([ccaf8a9](https://github.com/ZebraDevs/zeta_flutter/commit/ccaf8a98123c46f3415f02fad5df655a91b3ac63))
-
-### 🧪 Tests
-
-- 100% test coverage for theme, utils, Zeta and ZetaProvider ([4b41f73](https://github.com/ZebraDevs/zeta_flutter/commit/4b41f738da8d9c45783159a0b8e36299f9cf6df3))
-- Added ZetaTooltip test ([4b41f73](https://github.com/ZebraDevs/zeta_flutter/commit/4b41f738da8d9c45783159a0b8e36299f9cf6df3))
-- Organise tests folder, and increase code coverage and add goldens for existing tests ([0e2d8be](https://github.com/ZebraDevs/zeta_flutter/commit/0e2d8be214c499cb547fb49da3791a606ec839b7))
-
-### 🧹 Miscellaneous Chores
-
-- organise existing tests ([#108](https://github.com/ZebraDevs/zeta_flutter/issues/108)) ([0e2d8be](https://github.com/ZebraDevs/zeta_flutter/commit/0e2d8be214c499cb547fb49da3791a606ec839b7))
-- rename debounce file ([c37e51d](https://github.com/ZebraDevs/zeta_flutter/commit/c37e51d1b2be40e03d35f63db79939247315696c))
-- Update widgetbook to pull readme from github ([c37e51d](https://github.com/ZebraDevs/zeta_flutter/commit/c37e51d1b2be40e03d35f63db79939247315696c))
-
-## [0.11.2](https://github.com/ZebraDevs/zeta_flutter/compare/v0.11.1...v0.11.2) (2024-06-11)
-
-### 🪲 Bug Fixes
-
-- revert avatar size enum change ([b387a1b](https://github.com/ZebraDevs/zeta_flutter/commit/b387a1b22642dd5f23bed00e756badb272d5d420))
-
-## [0.11.1](https://github.com/ZebraDevs/zeta_flutter/compare/v0.11.0...v0.11.1) (2024-06-10)
-
-### 🪲 Bug Fixes
-
-- amend token-names ([9430ca1](https://github.com/ZebraDevs/zeta_flutter/commit/9430ca13f4694034c94a619ccaa3b6d48dfa9243))
-
-## [0.11.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.10.0...v0.11.0) (2024-06-10)
-
-### ✨ New Features
-
-- Created Select input ([#89](https://github.com/ZebraDevs/zeta_flutter/issues/89)) ([6ac8c4d](https://github.com/ZebraDevs/zeta_flutter/commit/6ac8c4deb449e247cc2dddee4fa98b921c9a16d9))
-- Dropdown now has a builder function to allow building custom children ([6ac8c4d](https://github.com/ZebraDevs/zeta_flutter/commit/6ac8c4deb449e247cc2dddee4fa98b921c9a16d9))
-- Notification list item ([#45](https://github.com/ZebraDevs/zeta_flutter/issues/45)) ([a89c615](https://github.com/ZebraDevs/zeta_flutter/commit/a89c6155866f7418f72f7099b3c7309df7bf5184))
-
-### 🪲 Bug Fixes
-
-- avatar icon badge background color null fallback ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-- breadcrumb rounded icon ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-- default avatar size in chip ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-- Dropdown focused behavior ([#46](https://github.com/ZebraDevs/zeta_flutter/issues/46)) ([1930723](https://github.com/ZebraDevs/zeta_flutter/commit/1930723269049092703cfbe7ffd0dd55236647f3))
-- Dropdown rendering direction ([#50](https://github.com/ZebraDevs/zeta_flutter/issues/50)) ([4b5c568](https://github.com/ZebraDevs/zeta_flutter/commit/4b5c568d84f42b89926b012e218eba16202907a4))
-- navigation bar text color ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-- Select input menu appears in the correct position below the input ([6ac8c4d](https://github.com/ZebraDevs/zeta_flutter/commit/6ac8c4deb449e247cc2dddee4fa98b921c9a16d9))
-- Spacings + Radii tokens ([#48](https://github.com/ZebraDevs/zeta_flutter/issues/48)) ([7db99a9](https://github.com/ZebraDevs/zeta_flutter/commit/7db99a939fcde9a22886f3ae5e88b457423b2480))
-- Updating checkbox to match designs ([#83](https://github.com/ZebraDevs/zeta_flutter/issues/83)) ([05a32ac](https://github.com/ZebraDevs/zeta_flutter/commit/05a32ac386424c881c63d4f97e6a9ab3b4bb0df0))
-
-### 📈 Documentation
-
-- adding link to template repo ([c0a9668](https://github.com/ZebraDevs/zeta_flutter/commit/c0a9668a1c6b99aa5d45075aebddf0ea4d8f640f))
-- remove default size in widgetbook ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-- update widgetbook organization and styling ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-- widgetbook hide addons panel ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-
-### 🧹 Miscellaneous Chores
-
-- Add deprecation warnings to old tokens ([c0a9668](https://github.com/ZebraDevs/zeta_flutter/commit/c0a9668a1c6b99aa5d45075aebddf0ea4d8f640f))
-- organise ([#49](https://github.com/ZebraDevs/zeta_flutter/issues/49)) ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-- rename ZetaBadge to ZetaLabel to match designs ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-- rename ZetaSystemBanner to ZetaBanner to match designs ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-- reorganise directories to match designs ([2dc8fe4](https://github.com/ZebraDevs/zeta_flutter/commit/2dc8fe4ea5f7c4b919845c55b6355af2ecaaa594))
-
-## [0.10.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.9.1...v0.10.0) (2024-05-24)
-
-### ✨ New Features
-
-- Created text input ([#78](https://github.com/ZebraDevs/zeta_flutter/issues/78)) ([57c72f4](https://github.com/ZebraDevs/zeta_flutter/commit/57c72f4f4037e46327a21183ccd87a2daf03b704))
-- Update colors tokens ([#81](https://github.com/ZebraDevs/zeta_flutter/issues/81)) ([418cc1d](https://github.com/ZebraDevs/zeta_flutter/commit/418cc1d16e2be4a2f4e28cbf44f507f000be469a))
-
-### 📈 Documentation
-
-- Add introduction page to widgetbook ([f1eb918](https://github.com/ZebraDevs/zeta_flutter/commit/f1eb9181971368059393e94fe298b7580c27009b))
-- Add new addons to widgetbook ([f1eb918](https://github.com/ZebraDevs/zeta_flutter/commit/f1eb9181971368059393e94fe298b7580c27009b))
-
-### ⛓️ Dependencies
-
-- Update example app / widgetbook deps ([f1eb918](https://github.com/ZebraDevs/zeta_flutter/commit/f1eb9181971368059393e94fe298b7580c27009b))
-
-### 🧹 Miscellaneous Chores
-
-- Add deprecation warning on breaking colors ([418cc1d](https://github.com/ZebraDevs/zeta_flutter/commit/418cc1d16e2be4a2f4e28cbf44f507f000be469a))
-- Add version to example app and widgetbook ([#79](https://github.com/ZebraDevs/zeta_flutter/issues/79)) ([f1eb918](https://github.com/ZebraDevs/zeta_flutter/commit/f1eb9181971368059393e94fe298b7580c27009b))
-- update example app web implementation ([f1eb918](https://github.com/ZebraDevs/zeta_flutter/commit/f1eb9181971368059393e94fe298b7580c27009b))
-
-## [0.9.1](https://github.com/ZebraDevs/zeta_flutter/compare/v0.9.0...v0.9.1) (2024-05-20)
-
-### Bug Fixes
-
-- dependencies ([#76](https://github.com/ZebraDevs/zeta_flutter/issues/76)) ([db8345a](https://github.com/ZebraDevs/zeta_flutter/commit/db8345a2c0452c014dd8869a9df52c89c828b757))
-
-## [0.9.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.8.2...v0.9.0) (2024-05-16)
-
-### Features
-
-- Created stepper input ([#67](https://github.com/ZebraDevs/zeta_flutter/issues/67)) ([ca51b1f](https://github.com/ZebraDevs/zeta_flutter/commit/ca51b1f71b4b0df621d1ce6038e3725d6e85432f))
-- Created Time Input ([#75](https://github.com/ZebraDevs/zeta_flutter/issues/75)) ([fb7b629](https://github.com/ZebraDevs/zeta_flutter/commit/fb7b6295dfc507a0a94de28cc7b0d11f338db13e))
-- Global Header (zebrafed[#38](https://github.com/ZebraDevs/zeta_flutter/issues/38)) ([0822d4f](https://github.com/ZebraDevs/zeta_flutter/commit/0822d4f070c6997a6599442e5ce3391a8f26e002))
-
-### Bug Fixes
-
-- breadcrumb rounded icon ([c46788d](https://github.com/ZebraDevs/zeta_flutter/commit/c46788d46b77d785fa023954219c53d51fa7952b))
-- Button update (zebrafed[#42](https://github.com/ZebraDevs/zeta_flutter/issues/42)) ([0822d4f](https://github.com/ZebraDevs/zeta_flutter/commit/0822d4f070c6997a6599442e5ce3391a8f26e002))
-- Correct colors on Radio button hover / focus states ([c46788d](https://github.com/ZebraDevs/zeta_flutter/commit/c46788d46b77d785fa023954219c53d51fa7952b))
-- enable mouse region on desktop for selectable areas ([c46788d](https://github.com/ZebraDevs/zeta_flutter/commit/c46788d46b77d785fa023954219c53d51fa7952b))
-- navigation bar text color ([c46788d](https://github.com/ZebraDevs/zeta_flutter/commit/c46788d46b77d785fa023954219c53d51fa7952b))
-- Remove calls to zeta in button that are not needed ([c46788d](https://github.com/ZebraDevs/zeta_flutter/commit/c46788d46b77d785fa023954219c53d51fa7952b))
-- UX-1090 - Add expansion option for TopAppBar ([#73](https://github.com/ZebraDevs/zeta_flutter/issues/73)) ([ab36e8e](https://github.com/ZebraDevs/zeta_flutter/commit/ab36e8e35566835711cc88e7b05b6460ef9453ea))
-
-## [0.8.2](https://github.com/ZebraDevs/zeta_flutter/compare/v0.8.1...v0.8.2) (2024-05-08)
-
-### Bug Fixes
-
-- revert intl to 0.18.1 for wider compatibility ([#66](https://github.com/ZebraDevs/zeta_flutter/issues/66)) ([6831c2f](https://github.com/ZebraDevs/zeta_flutter/commit/6831c2fa017457414339f12ec81b302e231d4496))
-
-## [0.8.1](https://github.com/ZebraDevs/zeta_flutter/compare/v0.8.0...v0.8.1) (2024-05-07)
-
-### Bug Fixes
-
-- Remove FirstWhereOrNull as it causes conflicts with dart:collection ([#62](https://github.com/ZebraDevs/zeta_flutter/issues/62)) ([7b9a737](https://github.com/ZebraDevs/zeta_flutter/commit/7b9a737956b43b4566e3909060d588baae79b50b))
-
-## [0.8.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.7.0...v0.8.0) (2024-05-02)
-
-### Features
-
-- Chat Item ([#37](https://github.com/ZebraDevs/zeta_flutter/issues/37)) ([c2dd630](https://github.com/ZebraDevs/zeta_flutter/commit/c2dd6308d57ebda6f715bef1225ad326ab4ea64b))
-- Filter Selection ([#36](https://github.com/ZebraDevs/zeta_flutter/issues/36)) ([53af9e7](https://github.com/ZebraDevs/zeta_flutter/commit/53af9e77f6909236a968aa5d3c6a32ba04712fda))
-- Select input ([#35](https://github.com/ZebraDevs/zeta_flutter/issues/35)) ([07ddba1](https://github.com/ZebraDevs/zeta_flutter/commit/07ddba1550d0a201477ef738064a2a251ecdfdeb))
-- ZetaScreenHeaderBar ([#39](https://github.com/ZebraDevs/zeta_flutter/issues/39)) ([e07fc48](https://github.com/ZebraDevs/zeta_flutter/commit/e07fc482e8a4ed06a33b8aa22388456f7e1cf5fc))
-
-### Bug Fixes
-
-- Avatar update ([#30](https://github.com/ZebraDevs/zeta_flutter/issues/30)) ([3f51508](https://github.com/ZebraDevs/zeta_flutter/commit/3f5150814a2372381a91816fb4e0300c91965421))
-- Update banners ([#41](https://github.com/ZebraDevs/zeta_flutter/issues/41)) ([0a881b5](https://github.com/ZebraDevs/zeta_flutter/commit/0a881b580f1f52402ae15b55cc72b8c26027254b))
-
-## [0.7.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.6.0...v0.7.0) (2024-04-25)
-
-### Features
-
-- AppBar ([#19](https://github.com/ZebraDevs/zeta_flutter/issues/19)) ([96f4aad](https://github.com/ZebraDevs/zeta_flutter/commit/96f4aad15d5ba90956860a32b63e63b7dffd9ba7))
-- Component dialog ([#18](https://github.com/ZebraDevs/zeta_flutter/issues/18)) ([7b762e6](https://github.com/ZebraDevs/zeta_flutter/commit/7b762e6c258057d5e3f07db0381cb48a631a7299))
-- Component dialog ([#22](https://github.com/ZebraDevs/zeta_flutter/issues/22)) ([8dc5be2](https://github.com/ZebraDevs/zeta_flutter/commit/8dc5be2898883a6eee751f8f1ad3372a25aaa222))
-- Component phone input ([#25](https://github.com/ZebraDevs/zeta_flutter/issues/25)) ([a4f7b89](https://github.com/ZebraDevs/zeta_flutter/commit/a4f7b899ef8919c12962a716281be985d929dd24))
-- Component phone input ([#34](https://github.com/ZebraDevs/zeta_flutter/issues/34)) ([d19547b](https://github.com/ZebraDevs/zeta_flutter/commit/d19547b15ce4687927d22ac1667250806178dcbc))
-- Component search bar ([#29](https://github.com/ZebraDevs/zeta_flutter/issues/29)) ([837f482](https://github.com/ZebraDevs/zeta_flutter/commit/837f4822f26430ce126787f90f814a2925a6a045))
-- Component tooltip ([#33](https://github.com/ZebraDevs/zeta_flutter/issues/33)) ([85cab8e](https://github.com/ZebraDevs/zeta_flutter/commit/85cab8ed440dde3a1d088ba9f2dcf9c901b60b97))
-- **main:** AppBar ([#19](https://github.com/ZebraDevs/zeta_flutter/issues/19)) ([eefcb61](https://github.com/ZebraDevs/zeta_flutter/commit/eefcb616044975605ea36e19c9fb9d314c05ee4c))
-- **main:** Segmented control ([#26](https://github.com/ZebraDevs/zeta_flutter/issues/26)) ([adb93ff](https://github.com/ZebraDevs/zeta_flutter/commit/adb93ffbf291d8ac915c6cf651f485d9f72488cb))
-- Navigation rail ([#27](https://github.com/ZebraDevs/zeta_flutter/issues/27)) ([8d57df3](https://github.com/ZebraDevs/zeta_flutter/commit/8d57df3236179c6bbdde72bb814e00a4cd6c954c))
-- Pagination ([#46](https://github.com/ZebraDevs/zeta_flutter/issues/46)) ([d782481](https://github.com/ZebraDevs/zeta_flutter/commit/d7824815e7d94ca9b9eeaaba2858fcfa14085e0e))
-- Segmented control ([#26](https://github.com/ZebraDevs/zeta_flutter/issues/26)) ([090ffc7](https://github.com/ZebraDevs/zeta_flutter/commit/090ffc7cb32471a7522e134b37747fb5336fe230))
-
-## [0.6.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.5.0...v0.6.0) (2024-04-12)
-
-### Features
-
-- Add List Item ([#5](https://github.com/ZebraDevs/zeta_flutter/issues/5)) ([64879e1](https://github.com/ZebraDevs/zeta_flutter/commit/64879e1756b1031c416861216dc0199b33a78827))
-- **main:** SnackBar ([#10](https://github.com/ZebraDevs/zeta_flutter/issues/10)) ([cbf46d9](https://github.com/ZebraDevs/zeta_flutter/commit/cbf46d97acf2a5533d73456f142b01b9ed6352d1))
-- **main:** Stepper ([#17](https://github.com/ZebraDevs/zeta_flutter/issues/17)) ([cab9f85](https://github.com/ZebraDevs/zeta_flutter/commit/cab9f859f288aa21769d6783e70aa2525fdaf0cd))
-- **main:** Tabs ([#11](https://github.com/ZebraDevs/zeta_flutter/issues/11)) ([31bc20a](https://github.com/ZebraDevs/zeta_flutter/commit/31bc20a7ee22844bf272b633f44994e1d6e50bc4))
-
-### Bug Fixes
-
-- Fix button group immutability ([#1](https://github.com/ZebraDevs/zeta_flutter/issues/1)) ([0fdf9da](https://github.com/ZebraDevs/zeta_flutter/commit/0fdf9da2520d65decd80cfb3a976daff74af38b0))
-- **main:** ListItem disabled color ([#8](https://github.com/ZebraDevs/zeta_flutter/issues/8)) ([ac996d9](https://github.com/ZebraDevs/zeta_flutter/commit/ac996d942450e8004d920c2a93b8009d0b5960ee))
-- switch on web ([#14](https://github.com/ZebraDevs/zeta_flutter/issues/14)) ([554fe7f](https://github.com/ZebraDevs/zeta_flutter/commit/554fe7f54fc3099f140bf7648fe78ce5e15d5b0f))
-- Widgetbook icons and reusable snippets ([#35](https://github.com/ZebraDevs/zeta_flutter/issues/35)) ([0d23f7c](https://github.com/ZebraDevs/zeta_flutter/commit/0d23f7cbb9fdbb6114b47837b99b83829e74c79a))
-
-## [0.5.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.4.0...v0.5.0) (2024-03-05)
-
-### Features
-
-- Dial Pad ([#30](https://github.com/ZebraDevs/zeta_flutter/issues/30)) ([f16df26](https://github.com/ZebraDevs/zeta_flutter/commit/f16df261feb703b20147c4ba406ed1fa3450348b))
-- Icon button ([#26](https://github.com/ZebraDevs/zeta_flutter/issues/26)) ([88cd90a](https://github.com/ZebraDevs/zeta_flutter/commit/88cd90a8180df39e3e44c168ca028055333643a6))
-- Navigation bar ([#32](https://github.com/ZebraDevs/zeta_flutter/issues/32)) ([36a60e7](https://github.com/ZebraDevs/zeta_flutter/commit/36a60e7087af7d38bfd64578009056d85b0f1e56))
-- Progress Bar ([#29](https://github.com/ZebraDevs/zeta_flutter/issues/29)) ([d18dbd2](https://github.com/ZebraDevs/zeta_flutter/commit/d18dbd276177c368e5d5cf80e482ea11564270a9))
-- update icons/0.1.65 ([#24](https://github.com/ZebraDevs/zeta_flutter/issues/24)) ([9f0e7f2](https://github.com/ZebraDevs/zeta_flutter/commit/9f0e7f286470c99722e928e726b5a9eb1b0b7b8b))
-- Widgetbook hot reload ([#33](https://github.com/ZebraDevs/zeta_flutter/issues/33)) ([44b8f98](https://github.com/ZebraDevs/zeta_flutter/commit/44b8f989850aaa1a6d862526bad26a01ffad361a))
-
-## [0.4.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.3.0...v0.4.0) (2024-02-14)
-
-### Features
-
-- **type:** Add xSmall and conform to latest figma designs. ([17b2299](https://github.com/ZebraDevs/zeta_flutter/commit/17b22994ae27d0abd1da7f756f49b46248b8b4b7))
-
-### Bug Fixes
-
-- **actions:** Updated actions to push changelog to zeta. ([#6](https://github.com/ZebraDevs/zeta_flutter/issues/6)) ([f7a8d9a](https://github.com/ZebraDevs/zeta_flutter/commit/f7a8d9a2ba078bf08fe80de07f6e9c871af9e451))
-- Widgetbook run / build ([#15](https://github.com/ZebraDevs/zeta_flutter/issues/15)) ([a2347ad](https://github.com/ZebraDevs/zeta_flutter/commit/a2347ad7a43a77e398571f3be26948585e22c068))
-- WIdgetbook theme ([#16](https://github.com/ZebraDevs/zeta_flutter/issues/16)) ([5e1c48a](https://github.com/ZebraDevs/zeta_flutter/commit/5e1c48aca84bbe49233deca10f64dcd6e8b8eb59))
-
-## [0.3.0](https://github.com/ZebraDevs/zeta_flutter/compare/zeta_flutter-v0.2.0...zeta_flutter-v0.3.0) (2024-02-05)
-
-### Features
-
-- **type:** Add xSmall and conform to latest figma designs. ([17b2299](https://github.com/ZebraDevs/zeta_flutter/commit/17b22994ae27d0abd1da7f756f49b46248b8b4b7))
-
-### Bug Fixes
-
-- **actions:** Updated actions to push changelog to zeta. ([#6](https://github.com/ZebraDevs/zeta_flutter/issues/6)) ([f7a8d9a](https://github.com/ZebraDevs/zeta_flutter/commit/f7a8d9a2ba078bf08fe80de07f6e9c871af9e451))
-
-## [0.1.1+22] - 2024-01-19
-
-### :boom: BREAKING CHANGES
-
-- due to [`7b543ac`](https://github.com/zebratechnologies/zeta-flutter/commit/7b543ac7b92dc53a866af4de313c36b5728e912e) - Remove legacy code _(PR [#51](https://github.com/zebratechnologies/zeta-flutter/pull/51) by [@thelukewalton](https://github.com/thelukewalton))_:
-
- Removed ZetaGrid and ZetaSpacing components, renamed widget padding extensions
- https://jira.zebra.com/browse/UX-910
- Remove ZetaGrid, ZetaSpacing and ZetaText widgets as these are no longer
- part of the library. Functionality is retained in some cases (text
- styles, padding extensions) but widgets themselves are removed.
-
- ***
-
-### :sparkles: New Features
-
-- [`7b543ac`](https://github.com/zebratechnologies/zeta-flutter/commit/7b543ac7b92dc53a866af4de313c36b5728e912e) - Remove legacy code _(PR [#51](https://github.com/zebratechnologies/zeta-flutter/pull/51) by [@thelukewalton](https://github.com/thelukewalton))_
-
-### :wrench: Chores
-
-- [`ccbdeb9`](https://github.com/zebratechnologies/zeta-flutter/commit/ccbdeb93b6995eb3a3ff66562d957bc7e2470432) - Update Widgetbook to correct functionality _(PR [#52](https://github.com/zebratechnologies/zeta-flutter/pull/52) by [@thelukewalton](https://github.com/thelukewalton))_
-
-## [0.1.1+21] - 2024-01-18
-
-### :sparkles: New Features
-
-- [`6ae1269`](https://github.com/zebratechnologies/zeta-flutter/commit/6ae1269422180bbf2ecbfd05814969bfcbb725f1) - Update text styles to match latest designs _(PR [#50](https://github.com/zebratechnologies/zeta-flutter/pull/50) by [@thelukewalton](https://github.com/thelukewalton))_
-- [`977d7e6`](https://github.com/zebratechnologies/zeta-flutter/commit/977d7e6f7cb0c2b67085ab40f5cf1d410e5680c8) - Remove legacy code _(PR [#51](https://github.com/zebratechnologies/zeta-flutter/pull/51) by [@thelukewalton](https://github.com/thelukewalton))_
-
-## [0.1.1+20] - 2024-01-17
-
-### :sparkles: New Features
-
-- [`35d1d7e`](https://github.com/zebratechnologies/zeta-flutter/commit/35d1d7eed509d4b89593c17e2a48a4a2c79a6ce4) - Update text styles to match latest designs _(PR [#50](https://github.com/zebratechnologies/zeta-flutter/pull/50) by [@thelukewalton](https://github.com/thelukewalton))_
-
-### :wrench: Chores
-
-- [`6787220`](https://github.com/zebratechnologies/zeta-flutter/commit/67872203f0dc96de02e6945f0ac4409f95872262) - Organize ilb/ to match web _(PR [#49](https://github.com/zebratechnologies/zeta-flutter/pull/49) by [@thelukewalton](https://github.com/thelukewalton))_
-
-## [0.1.1+19] - 2024-01-17
-
-### :wrench: Chores
-
-- [`d1c0125`](https://github.com/zebratechnologies/zeta-flutter/commit/d1c012523e16ebbf3f38c7028598660cfc7b7ea9) - Organize ilb/ to match web _(PR [#49](https://github.com/zebratechnologies/zeta-flutter/pull/49) by [@thelukewalton](https://github.com/thelukewalton))_
-
-### :flying_saucer: Other Changes
-
-- [`aff41a3`](https://github.com/zebratechnologies/zeta-flutter/commit/aff41a372a2e3ba7eef06e1d69dc3e57b423c3dd) - chore(deps): bump tj-actions/changed-files from 35 to 41 in /.github/workflows ([#48](https://github.com/zebratechnologies/zeta-flutter/pull/48))
-
-Bumps
-[tj-actions/changed-files](https://github.com/tj-actions/changed-files)
-from 35 to 41.
-
-
-Release notes
-Sourced from tj-actions/changed-files's
-releases.
-
-v41
-Changes in v41.0.1
-What's Changed
-
-Full Changelog: https://github.com/tj-actions/changed-files/compare/v41...v41.0.1
-
-Changes in v41.0.0
-🔥 🔥 BREAKING CHANGE 🔥 🔥
-A new safe_output
input is now available to prevent
-outputting unsafe filename characters (Enabled by default). This would
-escape characters in the filename that could be used for command
-injection.
-
-[!NOTE]
-This can be disabled by setting the safe_output
to false
-this comes with a recommendation to store all outputs generated in an
-environment variable first before using them.
-
-Example
-...
- - name: Get changed files
- id: changed-files
- uses: tj-actions/changed-files@v40
- with:
-safe_output: false # set to false because we are using an environment
-variable to store the output and avoid command injection.
-- name: List all added files
- env:
- ADDED_FILES: ${{ steps.changed-files.outputs.added_files }}
- run: |
- for file in "$ADDED_FILES"; do
- echo "$file was added"
- done
-
-...
-
-What's Changed
-
-
-
-... (truncated)
-
-
-Changelog
-Sourced from tj-actions/changed-files's
-changelog.
-
-Changelog
-41.0.1
-- (2023-12-24)
-🐛 Bug Fixes
-
-⚙️ Miscellaneous Tasks
-
-- deps: Update dependency eslint-plugin-prettier to
-v5.1.2 (7aaf10d)
-- (renovate[bot])
-
-⬆️ Upgrades
-
-Co-authored-by: jackton1 jackton1@users.noreply.github.com
-(cc08e17)
-- (tj-actions[bot])
-41.0.0
-- (2023-12-23)
-🐛 Bug Fixes
-
-⏪ Reverts
-
-(4f573fe)
-- (Tonye Jack)
-🔄 Update
-
-Co-authored-by: renovate[bot] (1864078)
-- (tj-actions[bot])
-
-(47371c5)
-- (Tonye Jack)
-📝 Other
-
-- Merge pull request from GHSA-mcph-m25j-8j63
-
-
-
-
-... (truncated)
-
-
-Commits
-
-
-
-
-[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
-
-Dependabot will resolve any conflicts with this PR as long as you don't
-alter it yourself. You can also trigger a rebase manually by commenting
-`@dependabot rebase`.
-
-[//]: # "dependabot-automerge-start"
-[//]: # "dependabot-automerge-end"
-
----
-
-
-Dependabot commands and options
-
-
-You can trigger Dependabot actions by commenting on this PR:
-
-- `@dependabot rebase` will rebase this PR
-- `@dependabot recreate` will recreate this PR, overwriting any edits
- that have been made to it
-- `@dependabot merge` will merge this PR after your CI passes on it
-- `@dependabot squash and merge` will squash and merge this PR after
- your CI passes on it
-- `@dependabot cancel merge` will cancel a previously requested merge
- and block automerging
-- `@dependabot reopen` will reopen this PR if it is closed
-- `@dependabot close` will close this PR and stop Dependabot recreating
- it. You can achieve the same result by closing it manually
-- `@dependabot show ignore conditions` will show all
- of the ignore conditions of the specified dependency
-- `@dependabot ignore this major version` will close this PR and stop
- Dependabot creating any more for this major version (unless you reopen
- the PR or upgrade to it yourself)
-- `@dependabot ignore this minor version` will close this PR and stop
- Dependabot creating any more for this minor version (unless you reopen
- the PR or upgrade to it yourself)
-- `@dependabot ignore this dependency` will close this PR and stop
- Dependabot creating any more for this dependency (unless you reopen the
- PR or upgrade to it yourself)
- You can disable automated security fix PRs for this repo from the
- [Security Alerts
- page](https://github.com/zebratechnologies/zeta-flutter/network/alerts).
-
-
-
-Signed-off-by: dependabot[bot]
-Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> _(commit by [@dependabot[bot]](https://github.com/apps/dependabot))_
-
-## [0.1.1+18] - 2024-01-10
-
-### :flying_saucer: Other Changes
-
-- [`caea7bd`](https://github.com/zebratechnologies/zeta-flutter/commit/caea7bdc061149db64344526bd16cd5232a219c2) - chore(deps): bump tj-actions/changed-files from 35 to 41 in /.github/workflows ([#48](https://github.com/zebratechnologies/zeta-flutter/pull/48))
-
-Bumps
-[tj-actions/changed-files](https://github.com/tj-actions/changed-files)
-from 35 to 41.
-
-
-Release notes
-Sourced from tj-actions/changed-files's
-releases.
-
-v41
-Changes in v41.0.1
-What's Changed
-
-Full Changelog: https://github.com/tj-actions/changed-files/compare/v41...v41.0.1
-
-Changes in v41.0.0
-🔥 🔥 BREAKING CHANGE 🔥 🔥
-A new safe_output
input is now available to prevent
-outputting unsafe filename characters (Enabled by default). This would
-escape characters in the filename that could be used for command
-injection.
-
-[!NOTE]
-This can be disabled by setting the safe_output
to false
-this comes with a recommendation to store all outputs generated in an
-environment variable first before using them.
-
-Example
-...
- - name: Get changed files
- id: changed-files
- uses: tj-actions/changed-files@v40
- with:
-safe_output: false # set to false because we are using an environment
-variable to store the output and avoid command injection.
-- name: List all added files
- env:
- ADDED_FILES: ${{ steps.changed-files.outputs.added_files }}
- run: |
- for file in "$ADDED_FILES"; do
- echo "$file was added"
- done
-
-...
-
-What's Changed
-
-
-
-... (truncated)
-
-
-Changelog
-Sourced from tj-actions/changed-files's
-changelog.
-
-Changelog
-41.0.1
-- (2023-12-24)
-🐛 Bug Fixes
-
-⚙️ Miscellaneous Tasks
-
-- deps: Update dependency eslint-plugin-prettier to
-v5.1.2 (7aaf10d)
-- (renovate[bot])
-
-⬆️ Upgrades
-
-Co-authored-by: jackton1 jackton1@users.noreply.github.com
-(cc08e17)
-- (tj-actions[bot])
-41.0.0
-- (2023-12-23)
-🐛 Bug Fixes
-
-⏪ Reverts
-
-(4f573fe)
-- (Tonye Jack)
-🔄 Update
-
-Co-authored-by: renovate[bot] (1864078)
-- (tj-actions[bot])
-
-(47371c5)
-- (Tonye Jack)
-📝 Other
-
-- Merge pull request from GHSA-mcph-m25j-8j63
-
-
-
-
-... (truncated)
-
-
-Commits
-
-
-
-
-[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
-
-Dependabot will resolve any conflicts with this PR as long as you don't
-alter it yourself. You can also trigger a rebase manually by commenting
-`@dependabot rebase`.
-
-[//]: # "dependabot-automerge-start"
-[//]: # "dependabot-automerge-end"
-
----
-
-
-Dependabot commands and options
-
-
-You can trigger Dependabot actions by commenting on this PR:
-
-- `@dependabot rebase` will rebase this PR
-- `@dependabot recreate` will recreate this PR, overwriting any edits
- that have been made to it
-- `@dependabot merge` will merge this PR after your CI passes on it
-- `@dependabot squash and merge` will squash and merge this PR after
- your CI passes on it
-- `@dependabot cancel merge` will cancel a previously requested merge
- and block automerging
-- `@dependabot reopen` will reopen this PR if it is closed
-- `@dependabot close` will close this PR and stop Dependabot recreating
- it. You can achieve the same result by closing it manually
-- `@dependabot show ignore conditions` will show all
- of the ignore conditions of the specified dependency
-- `@dependabot ignore this major version` will close this PR and stop
- Dependabot creating any more for this major version (unless you reopen
- the PR or upgrade to it yourself)
-- `@dependabot ignore this minor version` will close this PR and stop
- Dependabot creating any more for this minor version (unless you reopen
- the PR or upgrade to it yourself)
-- `@dependabot ignore this dependency` will close this PR and stop
- Dependabot creating any more for this dependency (unless you reopen the
- PR or upgrade to it yourself)
- You can disable automated security fix PRs for this repo from the
- [Security Alerts
- page](https://github.com/zebratechnologies/zeta-flutter/network/alerts).
-
-
-
-Signed-off-by: dependabot[bot]
-Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> _(commit by [@dependabot[bot]](https://github.com/apps/dependabot))_
-
-## [0.1.1+16] - 2024-01-02
-
-### :flying_saucer: Other Changes
-
-- [`225a059`](https://github.com/zebratechnologies/zeta-flutter/commit/225a059aa191f595db4982960c854c2e94c5bdc4) - create bottom sheet ([#45](https://github.com/zebratechnologies/zeta-flutter/pull/45))
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`656ca24`](https://github.com/zebratechnologies/zeta-flutter/commit/656ca2470112a171064f0d2d7477bf087a4f98bd) - Password input ([#47](https://github.com/zebratechnologies/zeta-flutter/pull/47))
-
-Co-authored-by: github-actions
-Co-authored-by: Atanas Yordanov _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.1+15] - 2024-01-02
-
-### :flying_saucer: Other Changes
-
-- [`36b9808`](https://github.com/zebratechnologies/zeta-flutter/commit/36b980896602320114c845b68a99a1c4c2e03ecb) - Page banner ([#40](https://github.com/zebratechnologies/zeta-flutter/pull/40))
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`03f2ed7`](https://github.com/zebratechnologies/zeta-flutter/commit/03f2ed7fb7f34dd995cb850f67582b76a2132111) - create bottom sheet ([#45](https://github.com/zebratechnologies/zeta-flutter/pull/45))
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.1+14] - 2023-12-21
-
-### :flying_saucer: Other Changes
-
-- [`be7cf58`](https://github.com/zebratechnologies/zeta-flutter/commit/be7cf587995ef4a51c57fc497d91abfccf82c65b) - component floating action button ([#41](https://github.com/zebratechnologies/zeta-flutter/pull/41))
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`a5d7181`](https://github.com/zebratechnologies/zeta-flutter/commit/a5d71816ff9d6aa9426cda38ee9d6f1116a36496) - Page banner ([#40](https://github.com/zebratechnologies/zeta-flutter/pull/40))
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.1+13] - 2023-12-21
-
-### :flying_saucer: Other Changes
-
-- [`51caca7`](https://github.com/zebratechnologies/zeta-flutter/commit/51caca71fce57681cabeb82e979499da9a16f4c1) - Menu Items - horizontal & vertical ([#44](https://github.com/zebratechnologies/zeta-flutter/pull/44))
-
-* Menu Items - horizontal & vertical
-
-The ZetaDefaults class was updated to Zeta inheriting from InheritedWidget. This change allows easy access to the Zeta theme settings (contrast, theme mode, theme data, color set) from anywhere in the widget tree. The ZetaAppBuilder function was updated to take in ThemeData and ThemeMode. The ZetaProvider was added to provide Zeta theming and contrast data down the widget tree. The code for the color and typography examples was adjusted to use the new Zeta context extension, instead of using Theme.of(context) to get colorScheme. This change was crucial to simplify the process of adapting the application visuals to different themes."
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`8fe8750`](https://github.com/zebratechnologies/zeta-flutter/commit/8fe87502764834cdbdcc7580bddaa5def36ae518) - component floating action button ([#41](https://github.com/zebratechnologies/zeta-flutter/pull/41))
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.1+12] - 2023-12-20
-
-### :flying_saucer: Other Changes
-
-- [`dcafe1f`](https://github.com/zebratechnologies/zeta-flutter/commit/dcafe1f2f0436adf75e9cb36e0c4dd1bb8015def) - fix sizings and replace icons with zeta icons ([#43](https://github.com/zebratechnologies/zeta-flutter/pull/43))
-
-* fix sizings and replace icons with zeta icons
-
-- Refactor color swatch generation to utilize zeta
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`231fa4b`](https://github.com/zebratechnologies/zeta-flutter/commit/231fa4b860d4ecbb551ba7ec65b783d26fed43a0) - Menu Items - horizontal & vertical ([#44](https://github.com/zebratechnologies/zeta-flutter/pull/44))
-
-* Menu Items - horizontal & vertical
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.1+11] - 2023-12-19
-
-### :flying_saucer: Other Changes
-
-- [`c506b81`](https://github.com/zebratechnologies/zeta-flutter/commit/c506b81c0f00b23192ddef4e484dabf8a0f36890) - Component accordion ([#39](https://github.com/zebratechnologies/zeta-flutter/pull/39))
-
-* first draft of the ZetaAccordion
-
-* create ZetaAccordion component
-
-* add icon padding
-
-* add list separator & margin
-
-* Tag component ([#37](https://github.com/zebratechnologies/zeta-flutter/pull/37))
-
-* initial
-
-* inital
-
-* initial
-
-* tag component
-
-* tag component
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions
-Co-authored-by: Atanas Yordanov
-
-- add comments and more examples
-
-- pubspec
-
-- [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: Genoveva Georgieva <151932404+genovevageorgieva@users.noreply.github.com>
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`10a075e`](https://github.com/zebratechnologies/zeta-flutter/commit/10a075ed9dc7aac6021ccc08fde574f520b2fc9e) - fix sizings and replace icons with zeta icons ([#43](https://github.com/zebratechnologies/zeta-flutter/pull/43))
-
-* fix sizings and replace icons with zeta icons
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.1+10] - 2023-12-19
-
-### :flying_saucer: Other Changes
-
-- [`c79686a`](https://github.com/zebratechnologies/zeta-flutter/commit/c79686a8221a029280332e144da3fdb6eca0ead8) - Tag component ([#37](https://github.com/zebratechnologies/zeta-flutter/pull/37))
-
-* initial
-
-* inital
-
-* initial
-
-* tag component
-
-* tag component
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions
-Co-authored-by: Atanas Yordanov _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`df9eb66`](https://github.com/zebratechnologies/zeta-flutter/commit/df9eb66803c2f005099aa67a9394e520626401d3) - Component accordion ([#39](https://github.com/zebratechnologies/zeta-flutter/pull/39))
-
-* first draft of the ZetaAccordion
-
-* create ZetaAccordion component
-
-* add icon padding
-
-* add list separator & margin
-
-* Tag component ([#37](https://github.com/zebratechnologies/zeta-flutter/pull/37))
-
-* initial
-
-* inital
-
-* initial
-
-* tag component
-
-* tag component
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions
-Co-authored-by: Atanas Yordanov
-
-- add comments and more examples
-
-- pubspec
-
-- [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: Genoveva Georgieva <151932404+genovevageorgieva@users.noreply.github.com>
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.1+9] - 2023-12-18
-
-### :flying_saucer: Other Changes
-
-- [`541ec63`](https://github.com/zebratechnologies/zeta-flutter/commit/541ec633f31f117b685671a33342e57c89823434) - force Material 3 ([#38](https://github.com/zebratechnologies/zeta-flutter/pull/38))
-
-* force Material 3
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`0be43ac`](https://github.com/zebratechnologies/zeta-flutter/commit/0be43acce7c8f3b69a778f95420f542f92e725cf) - Tag component ([#37](https://github.com/zebratechnologies/zeta-flutter/pull/37))
-
-* initial
-
-* inital
-
-* initial
-
-* tag component
-
-* tag component
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions
-Co-authored-by: Atanas Yordanov _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.1+8] - 2023-12-18
-
-### :flying_saucer: Other Changes
-
-- [`4ca71f3`](https://github.com/zebratechnologies/zeta-flutter/commit/4ca71f3f83535e55c3af36961a5332fced0ecdbf) - Button component ([#36](https://github.com/zebratechnologies/zeta-flutter/pull/36))
-
-* initial
-
-* format_error
-
-* [automated commit] lint format and import sort
-
-* button component optimizations
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* colors change
-
-* colors change
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`ba9062b`](https://github.com/zebratechnologies/zeta-flutter/commit/ba9062bb2268310a8c22d5230227c04afa178166) - force Material 3 ([#38](https://github.com/zebratechnologies/zeta-flutter/pull/38))
-
-* force Material 3
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.1+7] - 2023-12-18
-
-### :flying_saucer: Other Changes
-
-- [`ac2b269`](https://github.com/zebratechnologies/zeta-flutter/commit/ac2b269c5806d2af310a063231abc1e412aea1a1) - fix the border of the indicator component ([#31](https://github.com/zebratechnologies/zeta-flutter/pull/31))
-
-* fix the border of the component
-
-* [automated commit] lint format and import sort
-
-* inverseBorder
-
-* [automated commit] lint format and import sort
-
-* rounded = true by default
-
-* running on iPhone
-
-* try to adjust font height
-
-* horizontal alignment
-
-* try to remove the line height
-
-* stick to Material 2 for now
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`cb330c7`](https://github.com/zebratechnologies/zeta-flutter/commit/cb330c7c1952ca2493b5d6c9272e2ade1050f53b) - Button component ([#36](https://github.com/zebratechnologies/zeta-flutter/pull/36))
-
-* initial
-
-* format_error
-
-* [automated commit] lint format and import sort
-
-* button component optimizations
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* colors change
-
-* colors change
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.1+6] - 2023-12-18
-
-### :flying_saucer: Other Changes
-
-- [`354040c`](https://github.com/zebratechnologies/zeta-flutter/commit/354040c91731f53f9186ce0cbce341706dc30b3a) - Workcloud indicators ([#34](https://github.com/zebratechnologies/zeta-flutter/pull/34))
-
-* initial
-
-* workcloud indicator
-
-* typo
-
-* .
-
-* [automated commit] lint format and import sort
-
-* .
-
-* .
-
-* .
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* add default values
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`88080ad`](https://github.com/zebratechnologies/zeta-flutter/commit/88080ada71811b47fe20f73dfba23c52e5223d38) - fix the border of the indicator component ([#31](https://github.com/zebratechnologies/zeta-flutter/pull/31))
-
-* fix the border of the component
-
-* [automated commit] lint format and import sort
-
-* inverseBorder
-
-* [automated commit] lint format and import sort
-
-* rounded = true by default
-
-* running on iPhone
-
-* try to adjust font height
-
-* horizontal alignment
-
-* try to remove the line height
-
-* stick to Material 2 for now
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.1+5] - 2023-12-18
-
-### :flying_saucer: Other Changes
-
-- [`1268c92`](https://github.com/zebratechnologies/zeta-flutter/commit/1268c92c7e0057cd166c40bc9ccd53ccf80c2fef) - App bar ([#35](https://github.com/zebratechnologies/zeta-flutter/pull/35))
-
-* create ZetaAppBar in four variants with example screens
-
-* [automated commit] lint format and import sort
-
-* remove Flexible
-
-* rename
-
-* titleIcon should be of type Icon instead of Widget
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`077d161`](https://github.com/zebratechnologies/zeta-flutter/commit/077d16138d5d3f579fbc2bfcba3048b1c5d28afc) - Workcloud indicators ([#34](https://github.com/zebratechnologies/zeta-flutter/pull/34))
-
-* initial
-
-* workcloud indicator
-
-* typo
-
-* .
-
-* [automated commit] lint format and import sort
-
-* .
-
-* .
-
-* .
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* add default values
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.1+4] - 2023-12-15
-
-### :flying_saucer: Other Changes
-
-- [`8f621dc`](https://github.com/zebratechnologies/zeta-flutter/commit/8f621dc82bd58ace9c994057420cdb1f41a74200) - Component ZetaAvatar ([#32](https://github.com/zebratechnologies/zeta-flutter/pull/32))
-
-* add empty avatar example page; upgrade packages
-
-* add icons
-
-* [automated commit] lint format and import sort
-
-* create avatar component with examples
-
-* create ZetaIndicator component with examples
-
-* fix value
-
-* fix & improve; add badges (indicators)
-
-* add more comments
-
-* add factory constructors for the different types
-
-* add widgetbook
-
-* add avatar to widgetbook
-
-* [automated commit] lint format and import sort
-
-* Badge ([#29](https://github.com/zebratechnologies/zeta-flutter/pull/29))
-
-* initial
-
-* Badge
-
-* fix test
-
-* [automated commit] lint format and import sort
-
-* change default border type
-
-* fix test
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* fix example
-
-* fix sizing
-
-* add foreground colors
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions
-
-- [automated commit] lint format and import sort
-
-- replace photo with image
-
-- [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions
-Co-authored-by: Genoveva Georgieva <151932404+genovevageorgieva@users.noreply.github.com> _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`350adec`](https://github.com/zebratechnologies/zeta-flutter/commit/350adecf4b0498afc6a476a653d2223a7cb74e0f) - App bar ([#35](https://github.com/zebratechnologies/zeta-flutter/pull/35))
-
-* create ZetaAppBar in four variants with example screens
-
-* [automated commit] lint format and import sort
-
-* remove Flexible
-
-* rename
-
-* titleIcon should be of type Icon instead of Widget
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.1+3] - 2023-12-15
-
-### :flying_saucer: Other Changes
-
-- [`5f0a33e`](https://github.com/zebratechnologies/zeta-flutter/commit/5f0a33e8e3b92de83d83170f267e6cd3f5fca068) - Merge from zebradevs ([#27](https://github.com/zebratechnologies/zeta-flutter/pull/27))
-
-* Merge from zebradevs
-
-* spelling and finals
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-
-- [`b20aef1`](https://github.com/zebratechnologies/zeta-flutter/commit/b20aef109944e6cfc02db9b0041e7a6009c9e52e) - Component ZetaAvatar ([#32](https://github.com/zebratechnologies/zeta-flutter/pull/32))
-
-* add empty avatar example page; upgrade packages
-
-* add icons
-
-* [automated commit] lint format and import sort
-
-* create avatar component with examples
-
-* create ZetaIndicator component with examples
-
-* fix value
-
-* fix & improve; add badges (indicators)
-
-* add more comments
-
-* add factory constructors for the different types
-
-* add widgetbook
-
-* add avatar to widgetbook
-
-* [automated commit] lint format and import sort
-
-* Badge ([#29](https://github.com/zebratechnologies/zeta-flutter/pull/29))
-
-* initial
-
-* Badge
-
-* fix test
-
-* [automated commit] lint format and import sort
-
-* change default border type
-
-* fix test
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* fix example
-
-* fix sizing
-
-* add foreground colors
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions
-
-- [automated commit] lint format and import sort
-
-- replace photo with image
-
-- [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions
-Co-authored-by: Genoveva Georgieva <151932404+genovevageorgieva@users.noreply.github.com> _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.1+2] - 2023-12-13
-
-### :flying_saucer: Other Changes
-
-- [`063386f`](https://github.com/zebratechnologies/zeta-flutter/commit/063386f83490bf3bfb6d26fc6a95dd445006d656) - some sizings were not exactly as shown in Figma ([#33](https://github.com/zebratechnologies/zeta-flutter/pull/33))
-
-* .
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`1c8ca4c`](https://github.com/zebratechnologies/zeta-flutter/commit/1c8ca4c4b5dbd8378710a18765303a6d37472cf0) - Merge from zebradevs ([#27](https://github.com/zebratechnologies/zeta-flutter/pull/27))
-
-* Merge from zebradevs
-
-* spelling and finals
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-
-## [0.1.1+1] - 2023-12-01
-
-- feature: Refactor theme declaration and introduce theme service
-
-Theme extensions were deleted and its contents were moved to colors.dart to consolidate all color-related codes in one file for easier navigation and editing. Additional enhancements include optimizing color assignments and making ZetaColors immutable for more robust color management.
-
-## [0.1.0+9] - 2023-12-12
-
-### :flying_saucer: Other Changes
-
-- [`b97fd3b`](https://github.com/zebratechnologies/zeta-flutter/commit/b97fd3bd881a85c8d4ee4f5ea5856e7a8ebf2d09) - Badge ([#29](https://github.com/zebratechnologies/zeta-flutter/pull/29))
-
-* initial
-
-* Badge
-
-* fix test
-
-* [automated commit] lint format and import sort
-
-* change default border type
-
-* fix test
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* fix example
-
-* fix sizing
-
-* add foreground colors
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`30fd121`](https://github.com/zebratechnologies/zeta-flutter/commit/30fd12131af2549c0b5b31bf89e12553557a009b) - some sizings were not exactly as shown in Figma ([#33](https://github.com/zebratechnologies/zeta-flutter/pull/33))
-
-* .
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.0+8] - 2023-12-11
-
-### :flying_saucer: Other Changes
-
-- [`36f72c1`](https://github.com/zebratechnologies/zeta-flutter/commit/36f72c1df09fecc9d3eeb6dbf1bbf889493529c0) - Component indicator ([#30](https://github.com/zebratechnologies/zeta-flutter/pull/30))
-
-* add icons
-
-* [automated commit] lint format and import sort
-
-* create ZetaIndicator component with examples
-
-* fix value
-
-* add more comments
-
-* add widgetbook
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`895bbfa`](https://github.com/zebratechnologies/zeta-flutter/commit/895bbfa876c7fea331d6bdb14c77e25632aab28d) - Badge ([#29](https://github.com/zebratechnologies/zeta-flutter/pull/29))
-
-* initial
-
-* Badge
-
-* fix test
-
-* [automated commit] lint format and import sort
-
-* change default border type
-
-* fix test
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
-* fix example
-
-* fix sizing
-
-* add foreground colors
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.0+7] - 2023-12-11
-
-### :flying_saucer: Other Changes
-
-- [`19e7d93`](https://github.com/zebratechnologies/zeta-flutter/commit/19e7d933456938d473f1f5c6ef2696e02349e196) - Priority Pill ([#28](https://github.com/zebratechnologies/zeta-flutter/pull/28))
-
-* Priority Pill
-
-* [automated commit] lint format and import sort
-
-* remove unnecessary param
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`fe4fe8d`](https://github.com/zebratechnologies/zeta-flutter/commit/fe4fe8d088fddf9443ce5810a1d2c068b13c75d9) - Component indicator ([#30](https://github.com/zebratechnologies/zeta-flutter/pull/30))
-
-* add icons
-
-* [automated commit] lint format and import sort
-
-* create ZetaIndicator component with examples
-
-* fix value
-
-* add more comments
-
-* add widgetbook
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.0+6] - 2023-12-08
-
-### :flying_saucer: Other Changes
-
-- [`2f21a18`](https://github.com/zebratechnologies/zeta-flutter/commit/2f21a18e30425fe91fe7bb0ee3c4df7ab8baca35) - add icons ([#24](https://github.com/zebratechnologies/zeta-flutter/pull/24))
-
-* add icons
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`2442420`](https://github.com/zebratechnologies/zeta-flutter/commit/2442420da15739e538d50e14c2a18c63de8d6f96) - Priority Pill ([#28](https://github.com/zebratechnologies/zeta-flutter/pull/28))
-
-* Priority Pill
-
-* [automated commit] lint format and import sort
-
-* remove unnecessary param
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: github-actions _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.0+5] - 2023-12-08
-
-### :flying_saucer: Other Changes
-
-- [`ef44d24`](https://github.com/zebratechnologies/zeta-flutter/commit/ef44d244589a7cc652a934f25a5122bbd1657c05) - status_label ([#25](https://github.com/zebratechnologies/zeta-flutter/pull/25))
-
-* status_label
-
-* [automated commit] lint format and import sort
-
-* spacing changes
-
-* extract BorderType in utils
-
-* chore(deps): bump tj-actions/branch-names in /.github/workflows ([#26](https://github.com/zebratechnologies/zeta-flutter/pull/26))
-
-Bumps [tj-actions/branch-names](https://github.com/tj-actions/branch-names) from 5.1 to 7.0.7.
-
-- [Release notes](https://github.com/tj-actions/branch-names/releases)
-- [Changelog](https://github.com/tj-actions/branch-names/blob/main/HISTORY.md)
-- [Commits](https://github.com/tj-actions/branch-names/compare/v5.1...v7.0.7)
-
----
-
-updated-dependencies:
-
-- dependency-name: tj-actions/branch-names
- dependency-type: direct:production
- ...
-
-Signed-off-by: dependabot[bot]
-Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
-- [automated commit] lint format and import sort
-
----
-
-Signed-off-by: dependabot[bot]
-Co-authored-by: github-actions
-Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-- [`c90349b`](https://github.com/zebratechnologies/zeta-flutter/commit/c90349b104f3000956f821934b01dfd74f37a5e2) - add icons ([#24](https://github.com/zebratechnologies/zeta-flutter/pull/24))
-
-* add icons
-
-* [automated commit] lint format and import sort
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.0+4] - 2023-12-06
-
-### :wrench: Chores
-
-- [`0794b08`](https://github.com/zebratechnologies/zeta-flutter/commit/0794b08d029e9954457dbfac56bd576aaf8f0e82) - **deps**: bump tj-actions/branch-names in /.github/workflows _(PR [#26](https://github.com/zebratechnologies/zeta-flutter/pull/26) by [@dependabot[bot]](https://github.com/apps/dependabot))_
-
-### :flying_saucer: Other Changes
-
-- [`65bf57f`](https://github.com/zebratechnologies/zeta-flutter/commit/65bf57fc1d7f13d4017b0e21f5f52d62552b502c) - status_label ([#25](https://github.com/zebratechnologies/zeta-flutter/pull/25))
-
-* status_label
-
-* [automated commit] lint format and import sort
-
-* spacing changes
-
-* extract BorderType in utils
-
-* chore(deps): bump tj-actions/branch-names in /.github/workflows ([#26](https://github.com/zebratechnologies/zeta-flutter/pull/26))
-
-Bumps [tj-actions/branch-names](https://github.com/tj-actions/branch-names) from 5.1 to 7.0.7.
-
-- [Release notes](https://github.com/tj-actions/branch-names/releases)
-- [Changelog](https://github.com/tj-actions/branch-names/blob/main/HISTORY.md)
-- [Commits](https://github.com/tj-actions/branch-names/compare/v5.1...v7.0.7)
-
----
-
-updated-dependencies:
-
-- dependency-name: tj-actions/branch-names
- dependency-type: direct:production
- ...
-
-Signed-off-by: dependabot[bot]
-Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
-- [automated commit] lint format and import sort
-
----
-
-Signed-off-by: dependabot[bot]
-Co-authored-by: github-actions
-Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> _(commit by [@genovevageorgieva](https://github.com/genovevageorgieva))_
-
-## [0.1.0+3] - 2023-12-06
-
-### :wrench: Chores
-
-- [`63b94a6`](https://github.com/zebratechnologies/zeta-flutter/commit/63b94a60da570ce3848aa9c1af7a129a2c952399) - **deps**: bump tj-actions/branch-names in /.github/workflows _(PR [#26](https://github.com/zebratechnologies/zeta-flutter/pull/26) by [@dependabot[bot]](https://github.com/apps/dependabot))_
-
-### :flying_saucer: Other Changes
-
-- [`f333429`](https://github.com/zebratechnologies/zeta-flutter/commit/f333429083f0cf790627211788e69285bcff3a37) - Cleanup dart warnings; fix text scale ([#23](https://github.com/zebratechnologies/zeta-flutter/pull/23))
-
-* fix endtemplate in comments; upgrade flutter packages
-
-* remove unnecessary text scaling
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-## [0.1.0+2] - 2023-12-01
-
-### :wrench: Chores
-
-- [`d22dd29`](https://github.com/zebratechnologies/zeta-flutter/commit/d22dd29b506affccc8cdc7ecfb15a57fcf330646) - Tidy, reorganise and prepare repo _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-
-### :flying_saucer: Other Changes
-
-- [`199328c`](https://github.com/zebratechnologies/zeta-flutter/commit/199328c28ccfa8a05a1494c08ad93aaf13dd3b28) - Update to mirror 0.1.0+1 from ZebraDevs _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-- [`0ee6171`](https://github.com/zebratechnologies/zeta-flutter/commit/0ee6171e779c6db9995308aa35f2f598b9db372c) - Cleanup dart warnings; fix text scale ([#23](https://github.com/zebratechnologies/zeta-flutter/pull/23))
-
-* fix endtemplate in comments; upgrade flutter packages
-
-* remove unnecessary text scaling
-
-* [automated commit] lint format and import sort
-
----
-
-Co-authored-by: Atanas Yordanov
-Co-authored-by: github-actions _(commit by [@atanasyordanov21](https://github.com/atanasyordanov21))_
-
-- [`f91e8ef`](https://github.com/zebratechnologies/zeta-flutter/commit/f91e8ef85c0a1670227d66bd441513bc33e6242c) - Feature/color ([#21](https://github.com/zebratechnologies/zeta-flutter/pull/21))
-
-* feat(color): Adding color defs
-
-* feat(color): starting colorswatch util
-
-* bug(quality): updating lint rules
-
-* feat(color): adding widgetbook and tests
-
-* bug(platforms): adding windows into example
-
-* bug(type): Fixing reset height and tests failing _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-
-## [0.0.1+11] - 2023-08-09
-
-### :sparkles: New Features
-
-- [`193dc42`](https://github.com/zebratechnologies/zeta-flutter/commit/193dc42c8e7419d9087afdffce0eae915af12819) - Color ([#21](https://github.com/zebratechnologies/zeta-flutter/pull/21)) _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-
-- [`a605819`](https://github.com/zebratechnologies/zeta-flutter/commit/a60581973764b5d06711fe6470f9963af934b7ad) - Adding color defs by [@thelukewalton](https://github.com/thelukewalton)
-- [`f519cd8`](https://github.com/zebratechnologies/zeta-flutter/commit/f519cd856c7b4793ea7e24dc16f3abba0cffcf66) - starting colorswatch util by [@thelukewalton](https://github.com/thelukewalton)
-- [`7445db0`](https://github.com/zebratechnologies/zeta-flutter/commit/7445db0b7da2434f5a55d3067369b3bd35df363b) - adding widgetbook and tests by [@thelukewalton](https://github.com/thelukewalton)
-
-### :bug: Bug Fixes
-
-- [`7529402`](https://github.com/zebratechnologies/zeta-flutter/commit/75294029f65d2a23cd41b5604165987fe434ea2e) - bug(quality): updating lint rules by [@thelukewalton](https://github.com/thelukewalton)
-- [`3479adb`](https://github.com/zebratechnologies/zeta-flutter/commit/3479adb574c9ec1073552f888631f7cee12fe4cb) -bug(platforms): adding windows into example by [@thelukewalton](https://github.com/thelukewalton)
-- [`70a6144`](https://github.com/zebratechnologies/zeta-flutter/commit/70a614446c4d526315eb3229478d89dbd1c031de) - bug(type): Fixing reset height and tests failing by [@thelukewalton](https://github.com/thelukewalton)
-
-## [0.0.1+10] - 2023-07-11
-
-### :sparkles: New Features
-
-- [`546739c`](https://github.com/zebratechnologies/zeta-flutter/commit/546739c888e026b46546e22b3e1ea59c69e992d3) - Dimensions by [@thelukewalton](https://github.com/thelukewalton)
-
-### :bug: Bug Fixes
-
-- [`6638e94`](https://github.com/zebratechnologies/zeta-flutter/commit/6638e941b4027136c293c403c5c00e051fee5c97) - bug: Refactoring tokens by [@thelukewalton](https://github.com/thelukewalton)
-- [`133a7ac`](https://github.com/zebratechnologies/zeta-flutter/commit/133a7acb3286af77a728479f8fafe9cef532130e) - bug: grid widgetbook hybrid example fix by [@thelukewalton](https://github.com/thelukewalton)
-
-- [`988964e`](https://github.com/zebratechnologies/zeta-flutter/commit/988964e122128c4f9e4423fd849b70b6283ccea7) - removing unused dependency; by [@thelukewalton](https://github.com/thelukewalton)
-
-## [0.0.1+9]- 2023-03-28
-
-### :sparkles: New Features
-
-- [`ffb9596`](https://github.com/zebratechnologies/zeta-flutter/commit/ffb9596ee04456147b87c2c35b3a08e8763bf7c2) - Typography _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-
-### :memo: Documentation Changes
-
-- [`fb835a4`](https://github.com/zebratechnologies/zeta-flutter/commit/fb835a43a94945989d5b0793d61894ea807bc745) - Updated spacing and grid documentation and edge cases _(PR [#11](https://github.com/zebratechnologies/zeta-flutter/pull/11) by [@thelukewalton](https://github.com/thelukewalton))_
-- [`2a1cea3`](https://github.com/zebratechnologies/zeta-flutter/commit/2a1cea32d40c324cf36517cf05b5bb705d6eadb3) - Update typography documentation _(PR [#16](https://github.com/zebratechnologies/zeta-flutter/pull/16) by [@thelukewalton](https://github.com/thelukewalton))_
-- [`709f771`](https://github.com/zebratechnologies/zeta-flutter/commit/709f77185be705507475d90f044f94b2908fa5bb) - update docs _(PR [#17](https://github.com/zebratechnologies/zeta-flutter/pull/17) by [@thelukewalton](https://github.com/thelukewalton))_
-
-- [`5a50e46`](https://github.com/zebratechnologies/zeta-flutter/commit/5a50e46f3500a9b186515305514839651576a444) - Update README.md ([#12](https://github.com/zebratechnologies/zeta-flutter/pull/12)), Update README.md, adding in tag to pass the CodeQL enablement exeption, - [automated commit] lint format and import sort. Co-authored-by: github-actions _(commit by [@knxp34](https://github.com/knxp34))_
-
-### :bug: Bug Fixes
-
-- [`591b757`](https://github.com/zebratechnologies/zeta-flutter/commit/591b7572ebf85da7510a8b6a3f9f8451dc93535a) - inject token to action; _(PR [#15](https://github.com/zebratechnologies/zeta-flutter/pull/15) by [@thelukewalton](https://github.com/thelukewalton))_
-- [`d591856`](https://github.com/zebratechnologies/zeta-flutter/commit/d59185680879bf2f938c4f2a6bd2328f29a3ddd2) - test _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-- [`1dcbcae`](https://github.com/zebratechnologies/zeta-flutter/commit/1dcbcaec2600210efcefc80861c29aaa7e44c27e) - removing hardcoded shas _(PR [#19](https://github.com/zebratechnologies/zeta-flutter/pull/19) by [@thelukewalton](https://github.com/thelukewalton))_
-
-## [0.0.1+6]- Spacing - 2023-03-06
-
-### :sparkles: New Features
-
-- [`a2ca78e`](https://github.com/zebratechnologies/zeta-flutter/commit/a2ca78e863405f70b8199a889be3bc4f9c61ab1a) - Spacing ([#9](https://github.com/zebratechnologies/zeta-flutter/pull/9))
- _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-
-### :bug: Bug Fixes
-
-- [`e29e53b`](https://github.com/zebratechnologies/zeta-flutter/commit/e29e53ba132cd155f2d40f4cfa6f6c3060558b4e) - another attempt at fixing actions checkout _(PR [#8](https://github.com/zebratechnologies/zeta-flutter/pull/8) by [@thelukewalton](https://github.com/thelukewalton))_
-
-### :memo: Documentation Changes
-
-- [`1dc0e1b`](https://github.com/zebratechnologies/zeta-flutter/commit/1dc0e1b64cb870685110516c5159b20fb903f2c3) - Update README.md _(commit by [@benken](https://github.com/benken))_
-
-## [0.0.1+5] - Grid - 2023-02-17
-
-### :sparkles: New Features
-
-- [`60527e8`](https://github.com/zebratechnologies/zeta-flutter/commit/60527e86da15b4a804990c7e67bae5c46d25dc7f) - Grid ([#1](https://github.com/zebratechnologies/zeta-flutter/pull/1))
-
-### :bug: Bug Fixes
-
-- [`f7a8d9a`](https://github.com/zebratechnologies/zeta-flutter/commit/f7a8d9a2ba078bf08fe80de07f6e9c871af9e451) - **actions**: Updated actions to push changelog to zeta. _(PR [#6](https://github.com/zebratechnologies/zeta-flutter/pull/6) by [@thelukewalton](https://github.com/thelukewalton))_ - actions _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-
-- [`0340212`](https://github.com/zebratechnologies/zeta-flutter/commit/0340212963606fbe755aa94cbb98d38d663a5854) - fixing action ([#4](https://github.com/zebratechnologies/zeta-flutter/pull/4))
-
-- [`b0ad7f1`](https://github.com/zebratechnologies/zeta-flutter/commit/b0ad7f12b8b583fb928d225ce9d1c1f3244046e5) - No ticket/code examples ([#5](https://github.com/zebratechnologies/zeta-flutter/pull/5))- adding code example _(commit by [@thelukewalton](https://github.com/thelukewalton))_
-
-- [`4acf3c1`](https://github.com/zebratechnologies/zeta-flutter/commit/4acf3c1134b6c8d17827d8e2c665250d6f6ead1d) - fix(actions) Fix action refs _(PR [#7](https://github.com/zebratechnologies/zeta-flutter/pull/7) by [@thelukewalton](https://github.com/thelukewalton))_
-- [`83e073b`](https://github.com/zebratechnologies/zeta-flutter/commit/83e073b16808d89373a74dba35172bb7a978e765) - fix(actions) another attempt at fixing actions checkout _(PR [#8](https://github.com/zebratechnologies/zeta-flutter/pull/8) by [@thelukewalton](https://github.com/thelukewalton))_
-
-## [0.0.1+1] - Initial setup
-
-- Initial setup
-
-[0.1.1+2]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.0+9...0.1.1+2
-[0.1.1+3]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+2...0.1.1+3
-[0.1.1+4]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+3...0.1.1+4
-[0.1.1+5]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+4...0.1.1+5
-[0.1.1+6]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+5...0.1.1+6
-[0.1.1+7]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+6...0.1.1+7
-[0.1.1+8]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+7...0.1.1+8
-[0.1.1+9]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+8...0.1.1+9
-[0.1.1+10]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+9...0.1.1+10
-[0.1.1+11]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+10...0.1.1+11
-[0.1.1+12]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+11...0.1.1+12
-[0.1.1+13]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+12...0.1.1+13
-[0.1.1+14]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+13...0.1.1+14
-[0.1.1+15]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+14...0.1.1+15
-[0.1.1+16]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+15...0.1.1+16
-[0.1.1+18]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+17...0.1.1+18
-[0.1.1+19]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+18...0.1.1+19
-[0.1.1+20]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+19...0.1.1+20
-[0.1.1+21]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+20...0.1.1+21
-[0.1.1+22]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+21...0.1.1+22
-[0.1.1+23]: https://github.com/zebratechnologies/zeta-flutter/compare/0.1.1+22...0.1.1+23
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..2ecb76a1
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2024 Zebra Technologies Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/example/lib/home.dart b/example/lib/home.dart
index 8446846d..9c61113b 100644
--- a/example/lib/home.dart
+++ b/example/lib/home.dart
@@ -162,7 +162,7 @@ class _HomeState extends State {
final _theme = theme..sort((a, b) => a.name.compareTo(b.name));
return ExampleScaffold(
// x-release-please-start-version
- name: 'zeta_flutter v1.0.0-alpha',
+ name: 'zeta_flutter v1.0.0-alpha.2',
// x-release-please-end
child: SingleChildScrollView(
child: Column(
diff --git a/melos.yaml b/melos.yaml
index 1eb97fd9..0d5d7f7d 100644
--- a/melos.yaml
+++ b/melos.yaml
@@ -5,6 +5,13 @@ packages:
- example/*
- widgetbook/*
+command:
+ publish:
+ hooks:
+ pre: |
+ dart format packages --fix
+ dart fix --apply
+
scripts:
doc: dart doc packages/zeta_flutter
build_runner:
@@ -13,3 +20,4 @@ scripts:
rm -rf .coverage
melos exec -- bash ../../scripts/cov_move.sh
bash scripts/lcov_combine.sh
+ pana: melos exec -- bash ../../scripts/pana.sh
diff --git a/packages/zeta_flutter/.pubignore b/packages/zeta_flutter/.pubignore
new file mode 100644
index 00000000..b820b4f7
--- /dev/null
+++ b/packages/zeta_flutter/.pubignore
@@ -0,0 +1,23 @@
+custom_docs/
+example/build
+example/android
+example/ios
+example/linux
+example/macos
+example/web
+example/windows
+example/widgetbook
+appium/
+test/
+build/
+.coverage/
+scripts/
+example/example.iml
+example/assets/
+example/lib/
+example/pubspec.yaml
+example/analysis_options.yaml
+firebase.json
+release-please-config.json
+widgetbook/
+doc/
diff --git a/packages/zeta_flutter/CHANGELOG.md b/packages/zeta_flutter/CHANGELOG.md
index 57016348..3947c78c 100644
--- a/packages/zeta_flutter/CHANGELOG.md
+++ b/packages/zeta_flutter/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [1.0.0-alpha.2] (2025-01-24)
+
+### 📈 Documentation
+
+- Update documentation for zeta_flutter, zeta_flutter_utils, zeta_flutter_theme and zeta_flutter_icons ([3012e02](https://github.com/ZebraDevs/zeta_flutter/commit/3012e02e5f7f6cf2fbc3a799985840ccd362ca38))
+- Update example app and widgetbook ([3012e02](https://github.com/ZebraDevs/zeta_flutter/commit/3012e02e5f7f6cf2fbc3a799985840ccd362ca38))
+
## [1.0.0-alpha.1] - Initial alpha release
## [0.20.2](https://github.com/ZebraDevs/zeta_flutter/compare/v0.20.1...v0.20.2) (2024-12-20)
diff --git a/packages/zeta_flutter/README.md b/packages/zeta_flutter/README.md
index e68c8f0b..49c434f5 100644
--- a/packages/zeta_flutter/README.md
+++ b/packages/zeta_flutter/README.md
@@ -168,6 +168,6 @@ With these configurations, Zeta makes it easy to achieve consistent theming thro
## Licensing
-This software is licensed with the MIT license (see [LICENSE](./LICENSE) and [THIRD PARTY LICENSES](./LICENSE-3RD-PARTY)).
+This software is licensed with the MIT license (see [LICENSE](https://github.com/zebradevs/zeta_flutter/tree/main/LICENSE) and [THIRD PARTY LICENSES](https://github.com/zebradevs/zeta_flutter//tree/main/LICENSE-3RD-PARTY)).
---
diff --git a/packages/zeta_flutter/pubspec.yaml b/packages/zeta_flutter/pubspec.yaml
index d7ca5511..e4b10d23 100644
--- a/packages/zeta_flutter/pubspec.yaml
+++ b/packages/zeta_flutter/pubspec.yaml
@@ -1,12 +1,11 @@
name: zeta_flutter
-version: 1.0.0-alpha.1
+version: 1.0.0-alpha.2
description: Zeta is the new, formal, standardized Zebra Design System based off
the successes of ZDS (Zebra Design System). This package is in pre-release,
and so many aspects are incomplete.
homepage: https://design.zebra.com
-repository: https://github.com/ZebraDevs/zeta_flutter/tree/develop/packages/zeta_flutter # TODO: Luke Update develop to
+repository: https://github.com/zebradevs/zeta_flutter/tree/develop/packages/zeta_flutter # TODO: Luke Update develop to
issue_tracker: https://github.com/zebradevs/zeta_flutter/issues
-documentation: https://design.zebra.com/flutter/dartdoc/index.html
environment:
sdk: ^3.6.0
@@ -21,9 +20,9 @@ dependencies:
flutter_slidable: ^3.1.2
intl: ^0.20.1
mask_text_input_formatter: ^2.9.0
- zeta_flutter_theme: ^1.0.0-alpha.1
- zeta_flutter_utils: ^1.0.0-alpha.1
- zeta_icons: ^1.0.0-alpha.1
+ zeta_flutter_theme: ^1.0.0-alpha.2
+ zeta_flutter_utils: ^1.0.0-alpha.2
+ zeta_icons: ^1.0.0-alpha.2
dev_dependencies:
flutter_test:
diff --git a/packages/zeta_flutter/test_utils/tolerant_comparator.dart b/packages/zeta_flutter/test_utils/tolerant_comparator.dart
deleted file mode 100644
index 59fc02a0..00000000
--- a/packages/zeta_flutter/test_utils/tolerant_comparator.dart
+++ /dev/null
@@ -1,77 +0,0 @@
-import 'dart:io';
-
-import 'package:flutter/foundation.dart';
-import 'package:flutter_test/flutter_test.dart';
-import 'package:image/image.dart' as img;
-
-import '../test/test_utils/test_utils.dart';
-
-/// A comparator that compares images with a tolerance.
-///
-/// Used with [goldenTest] to compare images with a tolerance.
-@visibleForTesting
-class TolerantComparator extends LocalFileComparator {
- /// Constructs a [TolerantComparator] instance with default tolerance of 0.01.
- TolerantComparator(Uri testFile, {this.tolerance = 0.01}) : super(testFile.replace(scheme: 'file'));
-
- /// Tolerance used to compare images.
- ///
- /// Defaults to 0.01 but should be changed to ensure no false positives.
- final double tolerance;
-
- @override
- Future compare(Uint8List imageBytes, Uri golden) async {
- final goldenFile = File.fromUri(golden.replace(scheme: 'file'));
- if (!goldenFile.existsSync()) {
- goldenFile
- ..createSync(recursive: true)
- ..writeAsBytesSync(imageBytes);
- return true;
- }
-
- final goldenBytes = goldenFile.readAsBytesSync();
- final testImage = img.decodeImage(imageBytes);
- final goldenImage = img.decodeImage(goldenBytes);
-
- if (testImage == null || goldenImage == null) {
- return false;
- }
-
- return _compareImages(testImage, goldenImage);
- }
-
- bool _compareImages(img.Image testImage, img.Image goldenImage) {
- if (testImage.width != goldenImage.width || testImage.height != goldenImage.height) {
- return false;
- }
-
- int diffPixels = 0;
- for (int y = 0; y < testImage.height; y++) {
- for (int x = 0; x < testImage.width; x++) {
- final testPixel = testImage.getPixel(x, y);
- final goldenPixel = goldenImage.getPixel(x, y);
-
- if (!_isPixelWithinTolerance(testPixel, goldenPixel)) {
- diffPixels++;
- }
- }
- }
-
- final diffPercentage = diffPixels / (testImage.width * testImage.height);
- return diffPercentage <= tolerance;
- }
-
- bool _isPixelWithinTolerance(img.Pixel testPixel, img.Pixel goldenPixel) {
- final tr = testPixel.r;
- final tg = testPixel.g;
- final tb = testPixel.b;
-
- final gr = goldenPixel.r;
- final gg = goldenPixel.g;
- final gb = goldenPixel.b;
-
- return (tr - gr).abs() <= 255 * tolerance &&
- (tg - gg).abs() <= 255 * tolerance &&
- (tb - gb).abs() <= 255 * tolerance;
- }
-}
diff --git a/packages/zeta_flutter_theme/.pubignore b/packages/zeta_flutter_theme/.pubignore
new file mode 100644
index 00000000..b820b4f7
--- /dev/null
+++ b/packages/zeta_flutter_theme/.pubignore
@@ -0,0 +1,23 @@
+custom_docs/
+example/build
+example/android
+example/ios
+example/linux
+example/macos
+example/web
+example/windows
+example/widgetbook
+appium/
+test/
+build/
+.coverage/
+scripts/
+example/example.iml
+example/assets/
+example/lib/
+example/pubspec.yaml
+example/analysis_options.yaml
+firebase.json
+release-please-config.json
+widgetbook/
+doc/
diff --git a/packages/zeta_flutter_theme/CHANGELOG.md b/packages/zeta_flutter_theme/CHANGELOG.md
index 77614f70..b4af5e35 100644
--- a/packages/zeta_flutter_theme/CHANGELOG.md
+++ b/packages/zeta_flutter_theme/CHANGELOG.md
@@ -1,3 +1,10 @@
# Changelog
+## [1.0.0-alpha.2] (2025-01-24)
+
+### 📈 Documentation
+
+- Update documentation for zeta_flutter, zeta_flutter_utils, zeta_flutter_theme and zeta_flutter_icons ([3012e02](https://github.com/ZebraDevs/zeta_flutter/commit/3012e02e5f7f6cf2fbc3a799985840ccd362ca38))
+- Update example app and widgetbook ([3012e02](https://github.com/ZebraDevs/zeta_flutter/commit/3012e02e5f7f6cf2fbc3a799985840ccd362ca38))
+
## [1.0.0-alpha.1] - Initial alpha release
diff --git a/packages/zeta_flutter_theme/pubspec.yaml b/packages/zeta_flutter_theme/pubspec.yaml
index 10d01fe4..cd4f262c 100644
--- a/packages/zeta_flutter_theme/pubspec.yaml
+++ b/packages/zeta_flutter_theme/pubspec.yaml
@@ -1,10 +1,9 @@
name: zeta_flutter_theme
description: "Theme resources for the Zeta Design System from Zebra Technologies."
-version: 1.0.0-alpha.1
+version: 1.0.0-alpha.2
homepage: https://design.zebra.com
-repository: https://github.com/ZebraDevs/zeta_flutter/tree/develop/packages/zeta_flutter_theme # TODO: Luke Update develop to main
+repository: https://github.com/zebradevs/zeta_flutter/tree/develop/packages/zeta_flutter_theme # TODO: Luke Update develop to main
issue_tracker: https://github.com/zebradevs/zeta_flutter/issues
-documentation: https://design.zebra.com/flutter/dartdoc/index.html
environment:
sdk: ^3.6.0
diff --git a/packages/zeta_flutter_utils/.pubignore b/packages/zeta_flutter_utils/.pubignore
new file mode 100644
index 00000000..b820b4f7
--- /dev/null
+++ b/packages/zeta_flutter_utils/.pubignore
@@ -0,0 +1,23 @@
+custom_docs/
+example/build
+example/android
+example/ios
+example/linux
+example/macos
+example/web
+example/windows
+example/widgetbook
+appium/
+test/
+build/
+.coverage/
+scripts/
+example/example.iml
+example/assets/
+example/lib/
+example/pubspec.yaml
+example/analysis_options.yaml
+firebase.json
+release-please-config.json
+widgetbook/
+doc/
diff --git a/packages/zeta_flutter_utils/CHANGELOG.md b/packages/zeta_flutter_utils/CHANGELOG.md
index 77614f70..b4af5e35 100644
--- a/packages/zeta_flutter_utils/CHANGELOG.md
+++ b/packages/zeta_flutter_utils/CHANGELOG.md
@@ -1,3 +1,10 @@
# Changelog
+## [1.0.0-alpha.2] (2025-01-24)
+
+### 📈 Documentation
+
+- Update documentation for zeta_flutter, zeta_flutter_utils, zeta_flutter_theme and zeta_flutter_icons ([3012e02](https://github.com/ZebraDevs/zeta_flutter/commit/3012e02e5f7f6cf2fbc3a799985840ccd362ca38))
+- Update example app and widgetbook ([3012e02](https://github.com/ZebraDevs/zeta_flutter/commit/3012e02e5f7f6cf2fbc3a799985840ccd362ca38))
+
## [1.0.0-alpha.1] - Initial alpha release
diff --git a/packages/zeta_flutter_utils/pubspec.yaml b/packages/zeta_flutter_utils/pubspec.yaml
index a63cc2ed..8a3f762c 100644
--- a/packages/zeta_flutter_utils/pubspec.yaml
+++ b/packages/zeta_flutter_utils/pubspec.yaml
@@ -1,10 +1,9 @@
name: zeta_flutter_utils
description: "Utility functions for the Zeta Design System from Zebra Technologies."
-version: 1.0.0-alpha.1
+version: 1.0.0-alpha.2
homepage: https://design.zebra.com
-repository: https://github.com/ZebraDevs/zeta_flutter/tree/develop/packages/zeta_flutter_utils # TODO: Luke Update develop to main
+repository: https://github.com/zebradevs/zeta_flutter/tree/develop/packages/zeta_flutter_utils # TODO: Luke Update develop to main
issue_tracker: https://github.com/zebradevs/zeta_flutter/issues
-documentation: https://design.zebra.com/flutter/dartdoc/index.html
environment:
sdk: ^3.6.0
@@ -25,3 +24,5 @@ dev_dependencies:
zds_analysis: ^1.1.1
zeta_flutter:
path: ../zeta_flutter
+ zeta_flutter_theme:
+ path: ../zeta_flutter_theme
diff --git a/.pubignore b/packages/zeta_icons/.pubignore
similarity index 95%
rename from .pubignore
rename to packages/zeta_icons/.pubignore
index d124fe89..e732ec8b 100644
--- a/.pubignore
+++ b/packages/zeta_icons/.pubignore
@@ -19,4 +19,5 @@ example/pubspec.yaml
example/analysis_options.yaml
firebase.json
release-please-config.json
-widgetbook/
\ No newline at end of file
+widgetbook/
+doc/
\ No newline at end of file
diff --git a/packages/zeta_icons/CHANGELOG.md b/packages/zeta_icons/CHANGELOG.md
index 77614f70..b4af5e35 100644
--- a/packages/zeta_icons/CHANGELOG.md
+++ b/packages/zeta_icons/CHANGELOG.md
@@ -1,3 +1,10 @@
# Changelog
+## [1.0.0-alpha.2] (2025-01-24)
+
+### 📈 Documentation
+
+- Update documentation for zeta_flutter, zeta_flutter_utils, zeta_flutter_theme and zeta_flutter_icons ([3012e02](https://github.com/ZebraDevs/zeta_flutter/commit/3012e02e5f7f6cf2fbc3a799985840ccd362ca38))
+- Update example app and widgetbook ([3012e02](https://github.com/ZebraDevs/zeta_flutter/commit/3012e02e5f7f6cf2fbc3a799985840ccd362ca38))
+
## [1.0.0-alpha.1] - Initial alpha release
diff --git a/packages/zeta_icons/pubspec.yaml b/packages/zeta_icons/pubspec.yaml
index bb3762b4..320417ae 100644
--- a/packages/zeta_icons/pubspec.yaml
+++ b/packages/zeta_icons/pubspec.yaml
@@ -1,10 +1,9 @@
name: zeta_icons
description: "An icon library for the Zeta Design System by Zebra Technologies."
-version: 1.0.0-alpha.1
+version: 1.0.0-alpha.2
homepage: https://design.zebra.com
-repository: https://github.com/ZebraDevs/zeta_flutter/tree/develop/packages/zeta_icons # TODO: Luke Update develop to main
+repository: https://github.com/zebradevs/zeta_flutter/tree/develop/packages/zeta_icons # TODO: Luke Update develop to main
issue_tracker: https://github.com/zebradevs/zeta_flutter/issues
-documentation: https://design.zebra.com/flutter/dartdoc/index.html
environment:
sdk: ^3.6.0
diff --git a/release-please-config.json b/release-please-config.json
index 4885e685..116f0af4 100644
--- a/release-please-config.json
+++ b/release-please-config.json
@@ -15,10 +15,6 @@
"packages/zeta_icons": {
"release-type": "dart",
"package-name": "zeta_icons"
- },
- ".": {
- "release-type": "dart",
- "package-name": "workspace"
}
},
"include-component-in-tag": false,
diff --git a/scripts/pana.sh b/scripts/pana.sh
new file mode 100644
index 00000000..a1c51c63
--- /dev/null
+++ b/scripts/pana.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+mkdir pana || true
+current_dir_name=$(basename "$PWD")
+OUT=$(pana . -j -l 120)
+echo "$OUT" > ../../pana/${current_dir_name}.json
\ No newline at end of file
diff --git a/tmpfile b/tmpfile
deleted file mode 100644
index fde2965ba256898dcf386e308c179ac08641cff7..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 102
zcmdN(&M!+XN=#4HuSzXRj8DrcEh$MYiZ3n6%qeEj!zzhGIKCt!H8&MqGBY_pub2S<
D@mMDz
diff --git a/widgetbook/lib/introduction.dart b/widgetbook/lib/introduction.dart
index 5b42f9de..b7e2d465 100644
--- a/widgetbook/lib/introduction.dart
+++ b/widgetbook/lib/introduction.dart
@@ -73,7 +73,7 @@ class _IntroductionWidgetbookState extends State {
Expanded(
child: Text(
// x-release-please-start-version
- 'zeta_flutter v0.15.2',
+ 'zeta_flutter v1.0.0-alpha.2',
// x-release-please-end
style: ZetaTextStyles.displayLarge
.copyWith(fontSize: largeScreen ? null : 24, color: colors.mainDefault),