Skip to content

Commit

Permalink
update theme
Browse files Browse the repository at this point in the history
  • Loading branch information
overclokk committed Feb 25, 2024
1 parent f06b797 commit 7b0853c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions src/Asset/Application/Root/Buttons.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Settings\PresetsInterface;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Border;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Color;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\CssExperimental;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Css;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Outline;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Spacing;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Typography;
Expand All @@ -21,15 +21,15 @@ class Buttons
private Border $border;
private Spacing $spacing;
private Outline $outline;
private CssExperimental $css;
private Css $css;

public function __construct(
Color $color,
Typography $typography,
Border $border,
Spacing $spacing,
Outline $outline,
CssExperimental $css
Css $css
) {
$this->color = $color;
$this->typography = $typography;
Expand Down
2 changes: 1 addition & 1 deletion src/Asset/Application/Root/Elements.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use ItalyStrap\ThemeJsonGenerator\Application\Config\Blueprint;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Border;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Color;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\CssExperimental;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Css;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Spacing;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Typography;

Expand Down
12 changes: 6 additions & 6 deletions src/Asset/Application/Root/GlobalStyle.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Settings\PresetsInterface;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Border;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Color;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\CssExperimental;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Css;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Spacing;
use ItalyStrap\ThemeJsonGenerator\Domain\Input\Styles\Typography;

Expand All @@ -19,14 +19,14 @@ class GlobalStyle
private Color $color;
private Typography $typography;
private Spacing $spacing;
private CssExperimental $css;
private Css $css;
private PresetsInterface $presets;

public function __construct(
Color $color,
Typography $typography,
Spacing $spacing,
CssExperimental $css,
Color $color,
Typography $typography,
Spacing $spacing,
Css $css,
PresetsInterface $presets
) {
$this->color = $color;
Expand Down

0 comments on commit 7b0853c

Please sign in to comment.