@erpsquad/common 1.7.2 → 1.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +0 -25
- package/README.md +934 -946
- package/dist/{article-cell-editor-JDI676YI-Bgq3iI1C.esm.js → article-cell-editor-JDI676YI-Dc_C73-P.esm.js} +2 -2
- package/dist/{article-cell-editor-JDI676YI-Bgq3iI1C.esm.js.map → article-cell-editor-JDI676YI-Dc_C73-P.esm.js.map} +1 -1
- package/dist/{article-cell-editor-JDI676YI-C7s2Yz0q.js → article-cell-editor-JDI676YI-DdLmEDri.js} +2 -2
- package/dist/{article-cell-editor-JDI676YI-C7s2Yz0q.js.map → article-cell-editor-JDI676YI-DdLmEDri.js.map} +1 -1
- package/dist/components/index.d.ts +9 -0
- package/dist/components/index.esm.js +91 -82
- package/dist/components/index.js +1 -1
- package/dist/{index-Ctq0WMb1.js → index-Ch4YhLU3.js} +168 -152
- package/dist/index-Ch4YhLU3.js.map +1 -0
- package/dist/{index-D-LS9re6.esm.js → index-Ck1uBa0H.esm.js} +1830 -833
- package/dist/index-Ck1uBa0H.esm.js.map +1 -0
- package/dist/index.esm.js +109 -100
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/{number-overlay-editor-FPDVTUA6-C0znNQy0.esm.js → number-overlay-editor-FPDVTUA6-CIQKpJh_.esm.js} +2 -2
- package/dist/{number-overlay-editor-FPDVTUA6-C0znNQy0.esm.js.map → number-overlay-editor-FPDVTUA6-CIQKpJh_.esm.js.map} +1 -1
- package/dist/{number-overlay-editor-FPDVTUA6-BUC63sqH.js → number-overlay-editor-FPDVTUA6-CJNQkl_m.js} +2 -2
- package/dist/{number-overlay-editor-FPDVTUA6-BUC63sqH.js.map → number-overlay-editor-FPDVTUA6-CJNQkl_m.js.map} +1 -1
- package/dist/style.css +3 -3
- package/package.json +293 -293
- package/src/styles/css/reset.css +1 -7
- package/src/styles/index.ts +8 -7
- package/src/styles/sass/main.scss +4 -7
- package/dist/index-Ctq0WMb1.js.map +0 -1
- package/dist/index-D-LS9re6.esm.js.map +0 -1
- package/src/styles/sass/_mui-overrides.scss +0 -177
package/CHANGELOG.md
CHANGED
|
@@ -5,31 +5,6 @@ All notable changes to the ERP UI Library will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [1.6.3] - 2024-11-17
|
|
9
|
-
|
|
10
|
-
### Fixed - CRITICAL
|
|
11
|
-
- **MUI Style Override Issue**: Fixed MUI's Emotion styles overriding component styles
|
|
12
|
-
- Removed `normalize.css` import that conflicted with MUI's CssBaseline
|
|
13
|
-
- Added `_mui-overrides.scss` layer with automatic specificity boost using `:where(html)` selector
|
|
14
|
-
- Component styles now properly override MUI without requiring file modifications
|
|
15
|
-
- No breaking changes - existing components work automatically
|
|
16
|
-
|
|
17
|
-
### Added
|
|
18
|
-
- **MUI Override Layer**: New `_mui-overrides.scss` provides automatic specificity boost for all MUI components
|
|
19
|
-
- **App Wrapper Class**: `.erp-ui-app` class for additional specificity control when needed
|
|
20
|
-
- **Documentation**: `QUICK_FIX_GUIDE.md` for quick reference and `FIX_MUI_OVERRIDE_ISSUE.md` for comprehensive guide
|
|
21
|
-
|
|
22
|
-
### Changed
|
|
23
|
-
- Updated CSS import order: Variables → MUI Overrides → Components (83 files) → Utilities
|
|
24
|
-
- Removed `normalize.css` from `reset.css` (MUI's CssBaseline component handles browser normalization)
|
|
25
|
-
- Updated README with MUI app wrapper guidance for optimal style override
|
|
26
|
-
|
|
27
|
-
### Technical Details
|
|
28
|
-
- Uses `:where(html)` selector for specificity boost without increasing cascade complexity
|
|
29
|
-
- Automatically targets all MUI component classes with override patterns
|
|
30
|
-
- No changes required in individual component SCSS files
|
|
31
|
-
- Compatible with all existing MUI theme customization approaches
|
|
32
|
-
|
|
33
8
|
## [1.0.0] - 2024-01-15
|
|
34
9
|
|
|
35
10
|
### Added
|