@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.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;
|