Skip to content

Commit

Permalink
fix(UX-1315): Update license (#208)
Browse files Browse the repository at this point in the history
fix(UX-1316): Update macro desciption
ci(UX-1272): Update release action workflow dispath
  • Loading branch information
thelukewalton authored Nov 12, 2024
1 parent bba2111 commit bfbfa23
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ jobs:
repo: 'zeta',
workflow_id: 'deploy.yml',
ref: 'main',
environment: 'stage',
environment: 'production',
})
22 changes: 18 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
Copyright 2024 Zebra Technologies
MIT License

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:
Copyright (c) 2024 Zebra Technologies Inc.

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
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 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.
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.
8 changes: 7 additions & 1 deletion lib/src/theme/color_swatch.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ import 'color_extensions.dart';
import 'colors_base.dart';
import 'contrast.dart';

/// A swatch of colors with values from 10 (light) to 100 (dark).
/// {@template zeta-color-swatch}
/// A swatch of colors with values from 10 (light) to 100 (dark).
///
/// See also:
/// * [MaterialColor].
/// {@endtemplate}
///
/// {@category Theme}
@immutable
class ZetaColorSwatch extends ColorSwatch<int> with EquatableMixin {
Expand Down
7 changes: 1 addition & 6 deletions lib/src/theme/colors_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,7 @@ abstract final class ZetaColorBase {

/// Pure
///
/// {@template zeta-color-swatch}
/// Contains shades from 10 (light) to 100 (dark).
///
/// See also:
/// * [ZetaColorSwatch].
/// {@endtemplate}
/// {@macro zeta-color-swatch}
static const ZetaColorSwatch pure = ZetaColorSwatch(
primary: 0xFF151519,
swatch: {
Expand Down

0 comments on commit bfbfa23

Please sign in to comment.