Skip to content

Commit d47e020

Browse files
committed
updates changelog
1 parent 3f8d130 commit d47e020

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ Laravel Enso 9.0.0 aligns the ecosystem with Laravel 13 and raises the minimum P
2424
- realigned shared components, tables, filters, forms, menus, settings, and shell layouts around a cleaner Bulma-first visual language
2525
- updated the ecosystem with a clear goal of bringing the Enso frontend stack and package contracts to a current, maintainable baseline
2626
- normalized shared styling ownership so UI policy lives in the shared UI layer instead of being scattered across package-local overrides
27+
- retired legacy helper-class conventions such as `is-paddingless`, `is-marginless`, `raises-on-hover`, and `has-background-dark` from the shared UI baseline
28+
- kept spacing migration explicit at the utility level: `is-paddingless` now maps to `p-0`, while `is-marginless` now maps to `m-0`
29+
- did not introduce generic one-to-one replacements for `raises-on-hover` or `has-background-dark`; applications should remove those legacy helpers unless they still have a local app-specific reason to keep an equivalent style
2730

2831
#### frontend runtime
2932

@@ -660,6 +663,8 @@ In practice:
660663
- update local route bootstrap and package route imports to consume the published modules exposed by the owning packages
661664
- update `client/src/sass/app.scss` so it only keeps app-local branding and Bulma token overrides; do not move auth layout styling into the host app
662665
- update `client/src/sass/enso.scss` so it wraps local styles around the shared Enso UI entrypoint instead of reintroducing legacy shared styling layers; at minimum it must import `@enso-ui/ui/src/bulma/styles/enso` and then the local `app.scss`, otherwise guest/auth pages will miss the shared Bulma / Enso base styles and render with broken form layout
666+
- replace legacy spacing helpers in local templates: `is-paddingless` becomes `p-0` and `is-marginless` becomes `m-0`
667+
- remove legacy helper classes such as `raises-on-hover` and `has-background-dark` from local page chrome during the upgrade unless the host app intentionally reintroduces an app-owned equivalent
663668
- remove remaining assumptions that route and state ownership live implicitly inside `@enso-ui/ui`
664669
- if your application has published Enso config overrides, align local button classes in `config/forms.php` and `config/tables.php` with the new `is-dark` default action style for a more uniform look
665670
- if your application overrides delete confirmation text through local Enso config, align those messages with the current backend package defaults from `laravel-enso/forms` and `laravel-enso/tables`; for the Enso 9 baseline documented here, both default destroy confirmations are simply `Are you sure?`

client/.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
API_URL=http://enso.test:80/
22
VUE_APP_PROFILE=bulma
3+
VUE_ENV=local

0 commit comments

Comments
 (0)