@erpsquad/common 1.7.0 → 1.7.2

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 CHANGED
@@ -1,301 +1,279 @@
1
- # Changelog
2
-
3
- All notable changes to the ERP UI Library will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [1.6.2] - 2024-11-17
9
-
10
- ### Added
11
- - **Complete SCSS Export System**: All SCSS files (variables, mixins, utilities, animations) are now properly exported and accessible
12
- - **Centralized Style Bundling**: Created `src/styles/index.ts` that imports all component styles
13
- - **SCSS Export Wrappers**: Added export files for easy importing:
14
- - `@erpsquad/common/styles/variables` - Color palette and design tokens
15
- - `@erpsquad/common/styles/mixins` - Flexbox, transitions, and responsive mixins
16
- - `@erpsquad/common/styles/utils` - Utility classes
17
- - `@erpsquad/common/styles/animations` - Keyframe animations
18
- - `@erpsquad/common/styles/all` - All SCSS features at once
19
- - **Package.json Exports**: Added proper exports configuration for all style resources
20
- - **SCSS Source Files in Package**: Added `src/styles` to the published package files
21
- - **Comprehensive Documentation**:
22
- - `src/styles/README.md` - Complete technical reference
23
- - `STYLES_USAGE.md` - User guide with examples
24
- - `STYLES_MIGRATION.md` - Migration guide
25
- - `STYLES_QUICK_REFERENCE.md` - Quick reference cheat sheet
26
- - `STYLES_TROUBLESHOOTING.md` - Troubleshooting guide
27
- - `STYLES_IMPLEMENTATION_SUMMARY.md` - Technical implementation details
28
-
29
- ### Fixed
30
- - **Bug in Utility Classes**: Fixed `.pl-1` and `.pr-1` which were incorrectly using `margin` instead of `padding`
31
- - **Empty main.scss**: Populated `main.scss` to properly import all shared SCSS files (variables, mixins, utils, animations)
32
- - **Missing SCSS Files**: SCSS source files are now included in the published package, resolving "Can't find stylesheet to import" errors
33
-
34
- ### Changed
35
- - Updated `main.scss` to import normalize.css, reset.css, and all core SCSS files
36
- - Enhanced `README.md` with comprehensive "Styles & SCSS" section
37
- - Updated Vite configuration to include `styles` as an entry point
38
- - Improved build process to bundle all component styles correctly
39
-
40
- ### Documentation
41
- - All styles documentation is now comprehensive and production-ready
42
- - Added usage examples for CSS bundle, SCSS variables, SCSS mixins, and utility classes
43
- - Provided troubleshooting guide for common style-related issues
44
- - Added migration guide showing what changed and how to use new features
45
-
46
- ### Breaking Changes
47
- - None! This update is 100% backward compatible
48
-
49
- ### Notes
50
- - Consumers can now import SCSS variables and mixins in their projects
51
- - Utility classes are fully documented and available via CSS import
52
- - Design tokens ensure consistency across consuming applications
53
- - Responsive breakpoints are available as SCSS mixins
54
-
55
- ## [1.0.0] - 2024-01-15
56
-
57
- ### Added
58
- - Initial release of the ERP UI Library as a standalone npm package
59
- - 80+ UI components extracted from erp-common workspace module
60
- - Comprehensive theming system with light/dark mode support
61
- - RTL/LTR text direction support
62
- - Flexible Redux integration (optional)
63
- - TypeScript definitions for all components and utilities
64
- - Custom hooks for authentication, language, permissions, and more
65
- - Utility functions for date formatting, file size, text manipulation, and colors
66
- - Context providers for auth, language, pages, and permissions
67
- - Enhanced components with flexible Redux/prop-based usage patterns
68
- - Comprehensive documentation and examples
69
- - Migration guide from erp-common workspace module
70
-
71
- ### Components
72
- - **Form Controls**: Button, TextField, Select, DatePicker, Checkbox, Radio, Switch, etc.
73
- - **Data Display**: MaterialTable, Grid, Card, Avatar, Chip, Typography, etc.
74
- - **Navigation**: Sidebar, Breadcrumb, Pagination, Tabs, Menu, etc.
75
- - **Feedback**: Snackbar, Toast, Loader, Alert, Modal, etc.
76
- - **Layout**: Box, Container, Stack, Divider, etc.
77
- - **Enhanced Components**: ShareModalEnhanced, HeaderEnhanced with flexible Redux integration
78
-
79
- ### Hooks
80
- - `useAuth` - Authentication state management
81
- - `useLanguage` - Internationalization and language switching
82
- - `usePermissions` - Role-based access control
83
- - `usePages` - Page state management
84
- - `useDeepMemo` - Deep memoization for complex objects
85
- - `useReduxIntegration` - Unified interface for Redux/prop-based components
86
-
87
- ### Utilities
88
- - `formatDate` - Date formatting with various patterns
89
- - `formatFileSize` - Human-readable file size formatting
90
- - `formatText` / `deformatText` - Text transformation utilities
91
- - `colorUtils` - Color manipulation and conversion utilities
92
-
93
- ### Theme System
94
- - `createLightTheme` - Light theme creation with custom colors
95
- - `createDarkTheme` - Dark theme creation with custom colors
96
- - `ERPUIProvider` - Main provider component with theme, context, and Redux integration
97
- - Support for custom primary colors and Material-UI theme extensions
98
-
99
- ### Redux Integration
100
- - Optional Redux slices for share, header, and reports functionality
101
- - `createLibraryStore` - Helper for creating Redux store with library slices
102
- - `createConfiguredApiClient` - API client configuration helper
103
- - `getLibrarySlices` - Export all library Redux slices
104
- - Flexible component design supporting both Redux and prop-based usage
105
-
106
- ### Breaking Changes from erp-common
107
-
108
- #### Import Path Changes
109
- - **Before**: `import Button from 'erp-common/src/components/button/button'`
110
- - **After**: `import { Button } from '@company/erp-ui-library'`
111
-
112
- #### Provider Requirements
113
- - **Before**: Theme and contexts automatically provided
114
- - **After**: Must wrap app with `ERPUIProvider`
115
-
116
- ```typescript
117
- // Before
118
- function App() {
119
- return <MyComponent />;
120
- }
121
-
122
- // After
123
- import { ERPUIProvider } from '@company/erp-ui-library';
124
-
125
- function App() {
126
- return (
127
- <ERPUIProvider>
128
- <MyComponent />
129
- </ERPUIProvider>
130
- );
131
- }
132
- ```
133
-
134
- #### Redux Integration Changes
135
- - **Before**: Components automatically used Redux
136
- - **After**: Must specify `useRedux` prop for enhanced components
137
-
138
- ```typescript
139
- // Before
140
- <ShareModal open={isOpen} onClose={handleClose} />
141
-
142
- // After - with Redux
143
- <ShareModalEnhanced useRedux={true} open={isOpen} onClose={handleClose} />
144
-
145
- // After - without Redux
146
- <ShareModalEnhanced
147
- useRedux={false}
148
- users={users}
149
- departments={departments}
150
- loading={loading}
151
- onFetchUsersAndDepartments={fetchData}
152
- open={isOpen}
153
- onClose={handleClose}
154
- />
155
- ```
156
-
157
- #### Store Configuration Changes
158
- - **Before**: Redux store automatically configured with all slices
159
- - **After**: Must explicitly configure store with library slices
160
-
161
- ```typescript
162
- // Before
163
- import { store } from 'erp-common/src/redux/store';
164
-
165
- // After
166
- import { configureStore } from '@reduxjs/toolkit';
167
- import { getLibrarySlices } from '@company/erp-ui-library';
168
-
169
- const store = configureStore({
170
- reducer: {
171
- ...getLibrarySlices(),
172
- // your app reducers
173
- }
174
- });
175
- ```
176
-
177
- #### API Client Configuration
178
- - **Before**: API client automatically configured
179
- - **After**: Must explicitly configure API client
180
-
181
- ```typescript
182
- // After
183
- import { createConfiguredApiClient } from '@company/erp-ui-library';
184
-
185
- const apiClient = createConfiguredApiClient(
186
- baseApiClient,
187
- () => ({ authorization: `Bearer ${getToken()}` })
188
- );
189
- ```
190
-
191
- ### Migration Path
192
-
193
- 1. **Install the library**: `npm install @company/erp-ui-library`
194
- 2. **Install peer dependencies**: React, Material-UI, etc.
195
- 3. **Update imports**: Change from workspace paths to npm package imports
196
- 4. **Add ERPUIProvider**: Wrap your app with the provider
197
- 5. **Configure Redux** (if using): Set up store with library slices
198
- 6. **Update enhanced components**: Add `useRedux` prop and handle both patterns
199
- 7. **Test thoroughly**: Ensure all functionality works as expected
200
- 8. **Remove old workspace**: Clean up erp-common workspace module
201
-
202
- ### Documentation
203
- - [README.md](README.md) - Installation and basic usage
204
- - [API.md](API.md) - Comprehensive API documentation
205
- - [EXAMPLES.md](EXAMPLES.md) - Usage examples and patterns
206
- - [MIGRATION.md](MIGRATION.md) - Detailed migration guide from erp-common
207
- - [TROUBLESHOOTING.md](TROUBLESHOOTING.md) - Common issues and solutions
208
-
209
- ### Development
210
- - TypeScript support with strict type checking
211
- - Jest testing framework with React Testing Library
212
- - ESLint configuration for code quality
213
- - Vite build system for fast development and optimized production builds
214
- - Size limit monitoring to prevent bundle bloat
215
- - Comprehensive test coverage for components, hooks, and utilities
216
-
217
- ### Performance
218
- - Tree shaking support for optimal bundle size
219
- - Lazy loading support for large components
220
- - Memoization utilities for expensive calculations
221
- - Optimized Material-UI theme integration
222
- - Minimal runtime overhead for unused features
223
-
224
- ---
225
-
226
- ## Version History
227
-
228
- ### [1.0.0] - 2024-01-15
229
- - Initial release as standalone npm package
230
- - Migration from erp-common workspace module
231
- - Comprehensive component library with 80+ components
232
- - Flexible Redux integration
233
- - Full TypeScript support
234
- - Theming system with light/dark modes
235
- - RTL/LTR support
236
- - Internationalization support
237
- - Complete documentation and migration guide
238
-
239
- ---
240
-
241
- ## Upgrade Guide
242
-
243
- ### From erp-common workspace to 1.0.0
244
-
245
- This is a major migration from a workspace module to an npm package. Please follow the detailed [Migration Guide](MIGRATION.md) for step-by-step instructions.
246
-
247
- **Key Changes:**
248
- 1. Package installation required
249
- 2. Import paths changed
250
- 3. Provider wrapper required
251
- 4. Redux integration made optional and explicit
252
- 5. Enhanced components with flexible usage patterns
253
-
254
- **Estimated Migration Time:** 1-2 weeks depending on application size
255
-
256
- **Support:** See [TROUBLESHOOTING.md](TROUBLESHOOTING.md) for common issues and solutions
257
-
258
- ---
259
-
260
- ## Future Releases
261
-
262
- ### Planned for 1.1.0
263
- - Additional form components (file upload, rich text editor)
264
- - Enhanced data visualization components
265
- - Improved accessibility features
266
- - Performance optimizations
267
- - Additional utility functions
268
-
269
- ### Planned for 1.2.0
270
- - Mobile-responsive component variants
271
- - Advanced theming capabilities
272
- - Component composition utilities
273
- - Enhanced testing utilities
274
-
275
- ### Planned for 2.0.0
276
- - React 19 support
277
- - Material-UI v6 upgrade
278
- - Breaking changes for improved API consistency
279
- - New component architecture patterns
280
-
281
- ---
282
-
283
- ## Contributing
284
-
285
- We welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details on:
286
- - Code style and standards
287
- - Testing requirements
288
- - Documentation standards
289
- - Pull request process
290
- - Issue reporting
291
-
292
- ## License
293
-
294
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
295
-
296
- ## Support
297
-
298
- - **Documentation**: [GitHub Repository](https://github.com/company/erp-ui-library)
299
- - **Issues**: [GitHub Issues](https://github.com/company/erp-ui-library/issues)
300
- - **Discussions**: [GitHub Discussions](https://github.com/company/erp-ui-library/discussions)
1
+ # Changelog
2
+
3
+ All notable changes to the ERP UI Library will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
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
+ ## [1.0.0] - 2024-01-15
34
+
35
+ ### Added
36
+ - Initial release of the ERP UI Library as a standalone npm package
37
+ - 80+ UI components extracted from erp-common workspace module
38
+ - Comprehensive theming system with light/dark mode support
39
+ - RTL/LTR text direction support
40
+ - Flexible Redux integration (optional)
41
+ - TypeScript definitions for all components and utilities
42
+ - Custom hooks for authentication, language, permissions, and more
43
+ - Utility functions for date formatting, file size, text manipulation, and colors
44
+ - Context providers for auth, language, pages, and permissions
45
+ - Enhanced components with flexible Redux/prop-based usage patterns
46
+ - Comprehensive documentation and examples
47
+ - Migration guide from erp-common workspace module
48
+
49
+ ### Components
50
+ - **Form Controls**: Button, TextField, Select, DatePicker, Checkbox, Radio, Switch, etc.
51
+ - **Data Display**: MaterialTable, Grid, Card, Avatar, Chip, Typography, etc.
52
+ - **Navigation**: Sidebar, Breadcrumb, Pagination, Tabs, Menu, etc.
53
+ - **Feedback**: Snackbar, Toast, Loader, Alert, Modal, etc.
54
+ - **Layout**: Box, Container, Stack, Divider, etc.
55
+ - **Enhanced Components**: ShareModalEnhanced, HeaderEnhanced with flexible Redux integration
56
+
57
+ ### Hooks
58
+ - `useAuth` - Authentication state management
59
+ - `useLanguage` - Internationalization and language switching
60
+ - `usePermissions` - Role-based access control
61
+ - `usePages` - Page state management
62
+ - `useDeepMemo` - Deep memoization for complex objects
63
+ - `useReduxIntegration` - Unified interface for Redux/prop-based components
64
+
65
+ ### Utilities
66
+ - `formatDate` - Date formatting with various patterns
67
+ - `formatFileSize` - Human-readable file size formatting
68
+ - `formatText` / `deformatText` - Text transformation utilities
69
+ - `colorUtils` - Color manipulation and conversion utilities
70
+
71
+ ### Theme System
72
+ - `createLightTheme` - Light theme creation with custom colors
73
+ - `createDarkTheme` - Dark theme creation with custom colors
74
+ - `ERPUIProvider` - Main provider component with theme, context, and Redux integration
75
+ - Support for custom primary colors and Material-UI theme extensions
76
+
77
+ ### Redux Integration
78
+ - Optional Redux slices for share, header, and reports functionality
79
+ - `createLibraryStore` - Helper for creating Redux store with library slices
80
+ - `createConfiguredApiClient` - API client configuration helper
81
+ - `getLibrarySlices` - Export all library Redux slices
82
+ - Flexible component design supporting both Redux and prop-based usage
83
+
84
+ ### Breaking Changes from erp-common
85
+
86
+ #### Import Path Changes
87
+ - **Before**: `import Button from 'erp-common/src/components/button/button'`
88
+ - **After**: `import { Button } from '@company/erp-ui-library'`
89
+
90
+ #### Provider Requirements
91
+ - **Before**: Theme and contexts automatically provided
92
+ - **After**: Must wrap app with `ERPUIProvider`
93
+
94
+ ```typescript
95
+ // Before
96
+ function App() {
97
+ return <MyComponent />;
98
+ }
99
+
100
+ // After
101
+ import { ERPUIProvider } from '@company/erp-ui-library';
102
+
103
+ function App() {
104
+ return (
105
+ <ERPUIProvider>
106
+ <MyComponent />
107
+ </ERPUIProvider>
108
+ );
109
+ }
110
+ ```
111
+
112
+ #### Redux Integration Changes
113
+ - **Before**: Components automatically used Redux
114
+ - **After**: Must specify `useRedux` prop for enhanced components
115
+
116
+ ```typescript
117
+ // Before
118
+ <ShareModal open={isOpen} onClose={handleClose} />
119
+
120
+ // After - with Redux
121
+ <ShareModalEnhanced useRedux={true} open={isOpen} onClose={handleClose} />
122
+
123
+ // After - without Redux
124
+ <ShareModalEnhanced
125
+ useRedux={false}
126
+ users={users}
127
+ departments={departments}
128
+ loading={loading}
129
+ onFetchUsersAndDepartments={fetchData}
130
+ open={isOpen}
131
+ onClose={handleClose}
132
+ />
133
+ ```
134
+
135
+ #### Store Configuration Changes
136
+ - **Before**: Redux store automatically configured with all slices
137
+ - **After**: Must explicitly configure store with library slices
138
+
139
+ ```typescript
140
+ // Before
141
+ import { store } from 'erp-common/src/redux/store';
142
+
143
+ // After
144
+ import { configureStore } from '@reduxjs/toolkit';
145
+ import { getLibrarySlices } from '@company/erp-ui-library';
146
+
147
+ const store = configureStore({
148
+ reducer: {
149
+ ...getLibrarySlices(),
150
+ // your app reducers
151
+ }
152
+ });
153
+ ```
154
+
155
+ #### API Client Configuration
156
+ - **Before**: API client automatically configured
157
+ - **After**: Must explicitly configure API client
158
+
159
+ ```typescript
160
+ // After
161
+ import { createConfiguredApiClient } from '@company/erp-ui-library';
162
+
163
+ const apiClient = createConfiguredApiClient(
164
+ baseApiClient,
165
+ () => ({ authorization: `Bearer ${getToken()}` })
166
+ );
167
+ ```
168
+
169
+ ### Migration Path
170
+
171
+ 1. **Install the library**: `npm install @company/erp-ui-library`
172
+ 2. **Install peer dependencies**: React, Material-UI, etc.
173
+ 3. **Update imports**: Change from workspace paths to npm package imports
174
+ 4. **Add ERPUIProvider**: Wrap your app with the provider
175
+ 5. **Configure Redux** (if using): Set up store with library slices
176
+ 6. **Update enhanced components**: Add `useRedux` prop and handle both patterns
177
+ 7. **Test thoroughly**: Ensure all functionality works as expected
178
+ 8. **Remove old workspace**: Clean up erp-common workspace module
179
+
180
+ ### Documentation
181
+ - [README.md](README.md) - Installation and basic usage
182
+ - [API.md](API.md) - Comprehensive API documentation
183
+ - [EXAMPLES.md](EXAMPLES.md) - Usage examples and patterns
184
+ - [MIGRATION.md](MIGRATION.md) - Detailed migration guide from erp-common
185
+ - [TROUBLESHOOTING.md](TROUBLESHOOTING.md) - Common issues and solutions
186
+
187
+ ### Development
188
+ - TypeScript support with strict type checking
189
+ - Jest testing framework with React Testing Library
190
+ - ESLint configuration for code quality
191
+ - Vite build system for fast development and optimized production builds
192
+ - Size limit monitoring to prevent bundle bloat
193
+ - Comprehensive test coverage for components, hooks, and utilities
194
+
195
+ ### Performance
196
+ - Tree shaking support for optimal bundle size
197
+ - Lazy loading support for large components
198
+ - Memoization utilities for expensive calculations
199
+ - Optimized Material-UI theme integration
200
+ - Minimal runtime overhead for unused features
201
+
202
+ ---
203
+
204
+ ## Version History
205
+
206
+ ### [1.0.0] - 2024-01-15
207
+ - Initial release as standalone npm package
208
+ - Migration from erp-common workspace module
209
+ - Comprehensive component library with 80+ components
210
+ - Flexible Redux integration
211
+ - Full TypeScript support
212
+ - Theming system with light/dark modes
213
+ - RTL/LTR support
214
+ - Internationalization support
215
+ - Complete documentation and migration guide
216
+
217
+ ---
218
+
219
+ ## Upgrade Guide
220
+
221
+ ### From erp-common workspace to 1.0.0
222
+
223
+ This is a major migration from a workspace module to an npm package. Please follow the detailed [Migration Guide](MIGRATION.md) for step-by-step instructions.
224
+
225
+ **Key Changes:**
226
+ 1. Package installation required
227
+ 2. Import paths changed
228
+ 3. Provider wrapper required
229
+ 4. Redux integration made optional and explicit
230
+ 5. Enhanced components with flexible usage patterns
231
+
232
+ **Estimated Migration Time:** 1-2 weeks depending on application size
233
+
234
+ **Support:** See [TROUBLESHOOTING.md](TROUBLESHOOTING.md) for common issues and solutions
235
+
236
+ ---
237
+
238
+ ## Future Releases
239
+
240
+ ### Planned for 1.1.0
241
+ - Additional form components (file upload, rich text editor)
242
+ - Enhanced data visualization components
243
+ - Improved accessibility features
244
+ - Performance optimizations
245
+ - Additional utility functions
246
+
247
+ ### Planned for 1.2.0
248
+ - Mobile-responsive component variants
249
+ - Advanced theming capabilities
250
+ - Component composition utilities
251
+ - Enhanced testing utilities
252
+
253
+ ### Planned for 2.0.0
254
+ - React 19 support
255
+ - Material-UI v6 upgrade
256
+ - Breaking changes for improved API consistency
257
+ - New component architecture patterns
258
+
259
+ ---
260
+
261
+ ## Contributing
262
+
263
+ We welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details on:
264
+ - Code style and standards
265
+ - Testing requirements
266
+ - Documentation standards
267
+ - Pull request process
268
+ - Issue reporting
269
+
270
+ ## License
271
+
272
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
273
+
274
+ ## Support
275
+
276
+ - **Documentation**: [GitHub Repository](https://github.com/company/erp-ui-library)
277
+ - **Issues**: [GitHub Issues](https://github.com/company/erp-ui-library/issues)
278
+ - **Discussions**: [GitHub Discussions](https://github.com/company/erp-ui-library/discussions)
301
279
  - **Email**: erp-ui-library@company.com
package/README.md CHANGED
@@ -260,6 +260,18 @@ Add this to your main application file:
260
260
  import '@erpsquad/common/style.css';
261
261
  ```
262
262
 
263
+ **Important for MUI users:** Wrap your app with the `erp-ui-app` class for proper style override:
264
+
265
+ ```tsx
266
+ function App() {
267
+ return (
268
+ <div className="erp-ui-app">
269
+ {/* Your components */}
270
+ </div>
271
+ );
272
+ }
273
+ ```
274
+
263
275
  This gives you:
264
276
  - All component styles
265
277
  - Utility classes for rapid development
@@ -1,4 +1,4 @@
1
- import { b1 as styled_default } from "./index-Dz5Y7-tW.esm.js";
1
+ import { b1 as styled_default } from "./index-D-LS9re6.esm.js";
2
2
  import * as React from "react";
3
3
  import React__default from "react";
4
4
  import { p as getAugmentedNamespace, q as getDefaultExportFromCjs } from "./DefaultPropsProvider-CbRS6pK4.esm.js";
@@ -46093,4 +46093,4 @@ var article_cell_editor_default = ArticleCellEditor;
46093
46093
  export {
46094
46094
  article_cell_editor_default as default
46095
46095
  };
46096
- //# sourceMappingURL=article-cell-editor-JDI676YI-ql1HEe0N.esm.js.map
46096
+ //# sourceMappingURL=article-cell-editor-JDI676YI-Bgq3iI1C.esm.js.map