-
Notifications
You must be signed in to change notification settings - Fork 8
refactor(esl-image): officially deprecate ESLImage
#3742
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,5 @@ | ||
| import '@exadel/esl/modules/lib'; | ||
| export * from '@exadel/esl'; | ||
|
|
||
| // Export legacy modules for website demos | ||
| export {ESLImage} from '@exadel/esl/modules/esl-image/core'; |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -10,7 +10,6 @@ export * from './esl-traversing-query/core'; | |||||||
| export * from './esl-a11y-group/core'; | ||||||||
|
|
||||||||
| // Image | ||||||||
|
||||||||
| // Image | |
| // Image | |
| export * from './esl-image/core'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dropping
esl-image/core.lessfrom the aggregatedall.lessbundle changes the styling contract for consumers that previously relied on@exadel/esl/modules/all.lessto include legacyesl-imagestyles (e.g.,.img-containerand[lazy]/[ready]rules). If the goal is a gradual deprecation, consider keeping the import for now (possibly behind a separate legacy bundle) to avoid silent visual regressions, or ensure the removal is clearly communicated as a breaking change.