@shohojdhara/atomix 0.3.11 → 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/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 +9 -27
- package/dist/index.esm.js +151 -147
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +151 -147
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.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/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/dist/atomix.min.css
CHANGED
|
@@ -5611,22 +5611,22 @@ a,a:hover{
|
|
|
5611
5611
|
.c-edge-panel--glass .c-edge-panel__backdrop.is-animating-out{
|
|
5612
5612
|
animation:fadeOut .3s ease forwards;
|
|
5613
5613
|
}
|
|
5614
|
-
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-
|
|
5614
|
+
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-content{
|
|
5615
5615
|
animation:slideInStart .3s ease forwards;
|
|
5616
5616
|
}
|
|
5617
|
-
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-
|
|
5617
|
+
.c-edge-panel--glass.c-edge-panel--start .c-edge-panel__glass-content.is-animating-out{
|
|
5618
5618
|
animation:slideOutStart .3s ease forwards;
|
|
5619
5619
|
}
|
|
5620
|
-
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-
|
|
5620
|
+
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-content{
|
|
5621
5621
|
animation:slideInEnd .3s ease forwards;
|
|
5622
5622
|
}
|
|
5623
|
-
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-
|
|
5623
|
+
.c-edge-panel--glass.c-edge-panel--end .c-edge-panel__glass-content.is-animating-out{
|
|
5624
5624
|
animation:slideOutEnd .3s ease forwards;
|
|
5625
5625
|
}
|
|
5626
|
-
.c-edge-panel--glass.c-edge-panel--top .c-edge-panel__glass-
|
|
5626
|
+
.c-edge-panel--glass.c-edge-panel--top .c-edge-panel__glass-content{
|
|
5627
5627
|
animation:slideInTop .3s ease forwards;
|
|
5628
5628
|
}
|
|
5629
|
-
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__glass-
|
|
5629
|
+
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__glass-content{
|
|
5630
5630
|
animation:slideInBottom .3s ease forwards;
|
|
5631
5631
|
}
|
|
5632
5632
|
.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__container,.c-edge-panel--glass.c-edge-panel--bottom .c-edge-panel__glass-content,.c-edge-panel--glass.c-edge-panel--top .c-edge-panel__container,.c-edge-panel--glass.c-edge-panel--top .c-edge-panel__glass-content{
|
|
@@ -7809,7 +7809,10 @@ a,a:hover{
|
|
|
7809
7809
|
}
|
|
7810
7810
|
.c-nav__dropdown-menu{
|
|
7811
7811
|
left:0;
|
|
7812
|
+
list-style:none;
|
|
7813
|
+
margin:0;
|
|
7812
7814
|
opacity:0;
|
|
7815
|
+
padding:0;
|
|
7813
7816
|
position:absolute;
|
|
7814
7817
|
top:100%;
|
|
7815
7818
|
visibility:hidden;
|