zeta_flutter 0.11.2 copy "zeta_flutter: ^0.11.2" to clipboard
zeta_flutter: ^0.11.2 copied to clipboard

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.

Changelog #

0.11.2 (2024-06-11) #

🪲 Bug Fixes #

  • revert avatar size enum change (b387a1b)

0.11.1 (2024-06-10) #

🪲 Bug Fixes #

0.11.0 (2024-06-10) #

✨ New Features #

  • Created Select input (#89) (6ac8c4d)
  • Dropdown now has a builder function to allow building custom children (6ac8c4d)
  • Notification list item (#45) (a89c615)

🪲 Bug Fixes #

  • avatar icon badge background color null fallback (2dc8fe4)
  • breadcrumb rounded icon (2dc8fe4)
  • default avatar size in chip (2dc8fe4)
  • Dropdown focused behavior (#46) (1930723)
  • Dropdown rendering direction (#50) (4b5c568)
  • navigation bar text color (2dc8fe4)
  • Select input menu appears in the correct position below the input (6ac8c4d)
  • Spacings + Radii tokens (#48) (7db99a9)
  • Updating checkbox to match designs (#83) (05a32ac)

📈 Documentation #

  • adding link to template repo (c0a9668)
  • remove default size in widgetbook (2dc8fe4)
  • update widgetbook organization and styling (2dc8fe4)
  • widgetbook hide addons panel (2dc8fe4)

🧹 Miscellaneous Chores #

  • Add deprecation warnings to old tokens (c0a9668)
  • organise (#49) (2dc8fe4)
  • rename ZetaBadge to ZetaLabel to match designs (2dc8fe4)
  • rename ZetaSystemBanner to ZetaBanner to match designs (2dc8fe4)
  • reorganise directories to match designs (2dc8fe4)

0.10.0 (2024-05-24) #

✨ New Features #

📈 Documentation #

  • Add introduction page to widgetbook (f1eb918)
  • Add new addons to widgetbook (f1eb918)

⛓️ Dependencies #

  • Update example app / widgetbook deps (f1eb918)

🧹 Miscellaneous Chores #

  • Add deprecation warning on breaking colors (418cc1d)
  • Add version to example app and widgetbook (#79) (f1eb918)
  • update example app web implementation (f1eb918)

0.9.1 (2024-05-20) #

Bug Fixes #

0.9.0 (2024-05-16) #

Features #

Bug Fixes #

  • breadcrumb rounded icon (c46788d)
  • Button update (zebrafed#42) (0822d4f)
  • Correct colors on Radio button hover / focus states (c46788d)
  • enable mouse region on desktop for selectable areas (c46788d)
  • navigation bar text color (c46788d)
  • Remove calls to zeta in button that are not needed (c46788d)
  • UX-1090 - Add expansion option for TopAppBar (#73) (ab36e8e)

0.8.2 (2024-05-08) #

Bug Fixes #

  • revert intl to 0.18.1 for wider compatibility (#66) (6831c2f)

0.8.1 (2024-05-07) #

Bug Fixes #

  • Remove FirstWhereOrNull as it causes conflicts with dart:collection (#62) (7b9a737)

0.8.0 (2024-05-02) #

Features #

Bug Fixes #

0.7.0 (2024-04-25) #

Features #

0.6.0 (2024-04-12) #

Features #

Bug Fixes #

0.5.0 (2024-03-05) #

Features #

0.4.0 (2024-02-14) #

Features #

  • type: Add xSmall and conform to latest figma designs. (17b2299)

Bug Fixes #

0.3.0 (2024-02-05) #

Features #

  • type: Add xSmall and conform to latest figma designs. (17b2299)

Bug Fixes #

  • actions: Updated actions to push changelog to zeta. (#6) (f7a8d9a)

0.1.1+22 - 2024-01-19 #

💥 BREAKING CHANGES #

  • due to 7b543ac - Remove legacy code (PR #51 by @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.


✨ New Features #

🔧 Chores #

0.1.1+21 - 2024-01-18 #

✨ New Features #

0.1.1+20 - 2024-01-17 #

✨ New Features #

🔧 Chores #

0.1.1+19 - 2024-01-17 #

🔧 Chores #

🛸 Other Changes #

  • aff41a3 - chore(deps): bump tj-actions/changed-files from 35 to 41 in /.github/workflows (#48)

Bumps 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
  • feat: add safe_output input enabled by default

  • fix: migrate README to safe uses of interpolation

... (truncated)

Commits

Dependabot compatibility
score

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 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 <dependency name> 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.

Signed-off-by: dependabot[bot] support@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (commit by @dependabot[bot])

0.1.1+18 - 2024-01-10 #

🛸 Other Changes #

  • caea7bd - chore(deps): bump tj-actions/changed-files from 35 to 41 in /.github/workflows (#48)

Bumps 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 &quot;$ADDED_FILES&quot;; do
      echo &quot;$file was added&quot;
    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
  • feat: add safe_output input enabled by default

  • fix: migrate README to safe uses of interpolation

... (truncated)

Commits

Dependabot compatibility
score

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 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 <dependency name> 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.

Signed-off-by: dependabot[bot] support@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (commit by @dependabot[bot])

0.1.1+16 - 2024-01-02 #

🛸 Other Changes #

Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

Co-authored-by: github-actions github-actions@github.com Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com (commit by @genovevageorgieva)

0.1.1+15 - 2024-01-02 #

🛸 Other Changes #

Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

0.1.1+14 - 2023-12-21 #

🛸 Other Changes #

  • be7cf58 - component floating action button (#41)

Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

0.1.1+13 - 2023-12-21 #

🛸 Other Changes #

  • 51caca7 - Menu Items - horizontal & vertical (#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 atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

  • 8fe8750 - component floating action button (#41)

Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

0.1.1+12 - 2023-12-20 #

🛸 Other Changes #

  • dcafe1f - fix sizings and replace icons with zeta icons (#43)
  • fix sizings and replace icons with zeta icons
  • Refactor color swatch generation to utilize zeta

Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

  • 231fa4b - Menu Items - horizontal & vertical (#44)
  • Menu Items - horizontal & vertical

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

0.1.1+11 - 2023-12-19 #

🛸 Other Changes #

  • first draft of the ZetaAccordion

  • create ZetaAccordion component

  • add icon padding

  • add list separator & margin

  • Tag component (#37)

  • initial

  • inital

  • initial

  • tag component

  • tag component

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com

  • add comments and more examples

  • pubspec

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: Genoveva Georgieva 151932404+genovevageorgieva@users.noreply.github.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

  • 10a075e - fix sizings and replace icons with zeta icons (#43)
  • fix sizings and replace icons with zeta icons

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

0.1.1+10 - 2023-12-19 #

🛸 Other Changes #

  • initial

  • inital

  • initial

  • tag component

  • tag component

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com (commit by @genovevageorgieva)

  • first draft of the ZetaAccordion

  • create ZetaAccordion component

  • add icon padding

  • add list separator & margin

  • Tag component (#37)

  • initial

  • inital

  • initial

  • tag component

  • tag component

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com

  • add comments and more examples

  • pubspec

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: Genoveva Georgieva 151932404+genovevageorgieva@users.noreply.github.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

0.1.1+9 - 2023-12-18 #

🛸 Other Changes #

  • force Material 3

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

  • initial

  • inital

  • initial

  • tag component

  • tag component

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com (commit by @genovevageorgieva)

0.1.1+8 - 2023-12-18 #

🛸 Other Changes #

  • 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 github-actions@github.com (commit by @genovevageorgieva)

  • force Material 3

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

0.1.1+7 - 2023-12-18 #

🛸 Other Changes #

  • ac2b269 - fix the border of the indicator component (#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 atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

  • 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 github-actions@github.com (commit by @genovevageorgieva)

0.1.1+6 - 2023-12-18 #

🛸 Other Changes #

  • 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 github-actions@github.com (commit by @genovevageorgieva)

  • 88080ad - fix the border of the indicator component (#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 atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

0.1.1+5 - 2023-12-18 #

🛸 Other Changes #

  • 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 atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

  • 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 github-actions@github.com (commit by @genovevageorgieva)

0.1.1+4 - 2023-12-15 #

🛸 Other Changes #

  • 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)

  • 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 github-actions@github.com

  • [automated commit] lint format and import sort

  • replace photo with image

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com Co-authored-by: Genoveva Georgieva 151932404+genovevageorgieva@users.noreply.github.com (commit by @atanasyordanov21)

  • 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 atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

0.1.1+3 - 2023-12-15 #

🛸 Other Changes #

  • Merge from zebradevs

  • spelling and finals

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com (commit by @thelukewalton)

  • 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)

  • 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 github-actions@github.com

  • [automated commit] lint format and import sort

  • replace photo with image

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com Co-authored-by: Genoveva Georgieva 151932404+genovevageorgieva@users.noreply.github.com (commit by @atanasyordanov21)

0.1.1+2 - 2023-12-13 #

🛸 Other Changes #

  • 063386f - some sizings were not exactly as shown in Figma (#33)
  • .

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

  • Merge from zebradevs

  • spelling and finals

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com (commit by @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 #

🛸 Other Changes #

  • 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 github-actions@github.com (commit by @genovevageorgieva)

  • 30fd121 - some sizings were not exactly as shown in Figma (#33)
  • .

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

[0.1.0+8] - 2023-12-11 #

🛸 Other Changes #

  • 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 atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

  • 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 github-actions@github.com (commit by @genovevageorgieva)

[0.1.0+7] - 2023-12-11 #

🛸 Other Changes #

  • Priority Pill

  • [automated commit] lint format and import sort

  • remove unnecessary param

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

  • 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 atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

[0.1.0+6] - 2023-12-08 #

🛸 Other Changes #

  • add icons

  • [automated commit] lint format and import sort

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

  • Priority Pill

  • [automated commit] lint format and import sort

  • remove unnecessary param

  • [automated commit] lint format and import sort


Co-authored-by: github-actions github-actions@github.com (commit by @genovevageorgieva)

[0.1.0+5] - 2023-12-08 #

🛸 Other Changes #

  • 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)

Bumps tj-actions/branch-names from 5.1 to 7.0.7.


updated-dependencies:

  • dependency-name: tj-actions/branch-names dependency-type: direct:production ...

Signed-off-by: dependabot[bot] support@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

  • [automated commit] lint format and import sort

Signed-off-by: dependabot[bot] support@github.com Co-authored-by: github-actions github-actions@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (commit by @genovevageorgieva)

  • add icons

  • [automated commit] lint format and import sort

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

[0.1.0+4] - 2023-12-06 #

🔧 Chores #

🛸 Other Changes #

  • 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)

Bumps tj-actions/branch-names from 5.1 to 7.0.7.


updated-dependencies:

  • dependency-name: tj-actions/branch-names dependency-type: direct:production ...

Signed-off-by: dependabot[bot] support@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

  • [automated commit] lint format and import sort

Signed-off-by: dependabot[bot] support@github.com Co-authored-by: github-actions github-actions@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (commit by @genovevageorgieva)

[0.1.0+3] - 2023-12-06 #

🔧 Chores #

🛸 Other Changes #

  • f333429 - Cleanup dart warnings; fix text scale (#23)
  • fix endtemplate in comments; upgrade flutter packages

  • remove unnecessary text scaling

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

[0.1.0+2] - 2023-12-01 #

🔧 Chores #

🛸 Other Changes #

  • fix endtemplate in comments; upgrade flutter packages

  • remove unnecessary text scaling

  • [automated commit] lint format and import sort


Co-authored-by: Atanas Yordanov atanas.yordanov@athlonsofia.com Co-authored-by: github-actions github-actions@github.com (commit by @atanasyordanov21)

  • 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)

[0.0.1+11] - 2023-08-09 #

✨ New Features #

🐛 Bug Fixes #

[0.0.1+10] - 2023-07-11 #

✨ New Features #

🐛 Bug Fixes #

[0.0.1+9]- 2023-03-28 #

✨ New Features #

📝 Documentation Changes #

🐛 Bug Fixes #

[0.0.1+6]- Spacing - 2023-03-06 #

✨ New Features #

🐛 Bug Fixes #

📝 Documentation Changes #

[0.0.1+5] - Grid - 2023-02-17 #

✨ New Features #

🐛 Bug Fixes #

[0.0.1+1] - Initial setup #

  • Initial setup
5
likes
160
pub points
78%
popularity

Publisher

unverified uploader

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.

Repository (GitHub)
View/report issues
Contributing

Documentation

Documentation
API reference

License

MIT (LICENSE)

Dependencies

collection, flutter, flutter_slidable, intl, mask_text_input_formatter, web

More

Packages that depend on zeta_flutter