@shohojdhara/atomix 0.3.10 → 0.3.12
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 +9 -1
- package/dist/atomix.css +9 -6
- package/dist/atomix.css.map +1 -1
- package/dist/atomix.min.css +9 -6
- package/dist/atomix.min.css.map +1 -1
- package/dist/charts.js +82 -60
- package/dist/charts.js.map +1 -1
- package/dist/core.js +82 -60
- package/dist/core.js.map +1 -1
- package/dist/forms.js +82 -60
- package/dist/forms.js.map +1 -1
- package/dist/heavy.js +82 -60
- package/dist/heavy.js.map +1 -1
- package/dist/index.d.ts +11 -107
- package/dist/index.esm.js +165 -407
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +169 -412
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/theme.d.ts +1 -32
- package/dist/theme.js +12 -207
- package/dist/theme.js.map +1 -1
- package/package.json +1 -1
- package/src/components/AtomixGlass/AtomixGlass.tsx +124 -127
- package/src/components/AtomixGlass/AtomixGlassContainer.tsx +28 -32
- package/src/components/AtomixGlass/GlassFilter.tsx +15 -4
- package/src/components/EdgePanel/EdgePanel.stories.tsx +2 -7
- package/src/components/EdgePanel/EdgePanel.tsx +0 -10
- package/src/components/Form/Radio.stories.tsx +235 -103
- package/src/components/Navigation/Nav/NavDropdown.tsx +8 -4
- package/src/components/Navigation/SideMenu/SideMenu.tsx +2 -22
- package/src/components/Navigation/SideMenu/SideMenuItem.tsx +11 -15
- package/src/lib/config/index.ts +5 -5
- package/src/lib/theme/config/index.ts +1 -1
- package/src/lib/theme/core/createTheme.ts +11 -40
- package/src/lib/theme/generators/index.ts +1 -4
- package/src/lib/theme/index.ts +4 -16
- package/src/lib/theme/runtime/ThemeProvider.tsx +1 -16
- package/src/lib/types/components.ts +2 -26
- package/src/styles/06-components/_components.edge-panel.scss +4 -4
- package/src/styles/06-components/_components.nav.scss +3 -0
- package/src/lib/config/loader.ts +0 -147
- package/src/lib/theme/config/__tests__/configLoader.test.ts +0 -207
- package/src/lib/theme/config/configLoader.ts +0 -113
- package/src/lib/theme/config/loader.ts +0 -293
- package/src/lib/theme/generators/cssFile.ts +0 -79
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7dbaeb5: patchFix fs/promises module resolution error by removing server-side only functions (saveTheme, saveCSSFile, loadThemeFromConfig) from the browser bundle. This makes the library fully compatible with Next.js App Router and other browser environments. Breaking Change: Removed Node.js specific file-system utilities from main exports.
|
|
8
|
+
|
|
3
9
|
## [0.3.10] - 2026-01-06
|
|
4
10
|
|
|
5
11
|
### Fixed
|
|
12
|
+
|
|
6
13
|
- Fixed `Module not found: Can't resolve './lib/config/loader'` by bundling `loadAtomixConfig` instead of treating it as external.
|
|
7
14
|
|
|
8
15
|
## [0.3.9] - 2026-01-06
|
|
9
16
|
|
|
10
17
|
### Fixed
|
|
18
|
+
|
|
11
19
|
- Fixed `Module not found` error by replacing dynamic `require` with static import in `ThemeProvider`. This resolves build issues in external projects (e.g. Next.js).
|
|
12
|
-
All notable changes to this project will be documented in this file.
|
|
20
|
+
All notable changes to this project will be documented in this file.
|
|
13
21
|
|
|
14
22
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
15
23
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
package/dist/atomix.css
CHANGED
|
@@ -5781,22 +5781,22 @@ a, a:hover {
|
|
|
5781
5781
|
.c-edge-panel--glass .c-edge-panel__backdrop.is-animating-out {
|
|
5782
5782
|
animation: fadeOut 0.3s ease forwards;
|
|
5783
5783
|
}
|
|
5784
|
-
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-
|
|
5784
|
+
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-content {
|
|
5785
5785
|
animation: slideInStart 0.3s ease forwards;
|
|
5786
5786
|
}
|
|
5787
|
-
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-
|
|
5787
|
+
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-content.is-animating-out {
|
|
5788
5788
|
animation: slideOutStart 0.3s ease forwards;
|
|
5789
5789
|
}
|
|
5790
|
-
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-
|
|
5790
|
+
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-content {
|
|
5791
5791
|
animation: slideInEnd 0.3s ease forwards;
|
|
5792
5792
|
}
|
|
5793
|
-
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-
|
|
5793
|
+
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-content.is-animating-out {
|
|
5794
5794
|
animation: slideOutEnd 0.3s ease forwards;
|
|
5795
5795
|
}
|
|
5796
|
-
.c-edge-panel--glass.c-edge-panel--top .c-edge-panel__glass-
|
|
5796
|
+
.c-edge-panel--glass.c-edge-panel--top .c-edge-panel__glass-content {
|
|
5797
5797
|
animation: slideInTop 0.3s ease forwards;
|
|
5798
5798
|
}
|
|
5799
|
-
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__glass-
|
|
5799
|
+
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__glass-content {
|
|
5800
5800
|
animation: slideInBottom 0.3s ease forwards;
|
|
5801
5801
|
}
|
|
5802
5802
|
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__container, .c-edge-panel--glass.c-edge-panel--top .c-edge-panel__container {
|
|
@@ -8030,6 +8030,9 @@ a, a:hover {
|
|
|
8030
8030
|
visibility: hidden;
|
|
8031
8031
|
opacity: 0;
|
|
8032
8032
|
white-space: nowrap;
|
|
8033
|
+
list-style: none;
|
|
8034
|
+
padding: 0;
|
|
8035
|
+
margin: 0;
|
|
8033
8036
|
transition-property: all;
|
|
8034
8037
|
transition-duration: 0.2s;
|
|
8035
8038
|
transition-timing-function: ease-in-out;
|