@geomak/ui 1.6.1 → 1.7.0
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/index.cjs +160 -132
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +74 -2
- package/dist/index.d.ts +74 -2
- package/dist/index.js +63 -36
- package/dist/index.js.map +1 -1
- package/dist/styles.css +16 -6
- package/package.json +8 -10
package/dist/styles.css
CHANGED
|
@@ -718,15 +718,15 @@ video {
|
|
|
718
718
|
.pointer-events-none {
|
|
719
719
|
pointer-events: none;
|
|
720
720
|
}
|
|
721
|
+
.pointer-events-auto {
|
|
722
|
+
pointer-events: auto;
|
|
723
|
+
}
|
|
721
724
|
.\!visible {
|
|
722
725
|
visibility: visible !important;
|
|
723
726
|
}
|
|
724
727
|
.visible {
|
|
725
728
|
visibility: visible;
|
|
726
729
|
}
|
|
727
|
-
.invisible {
|
|
728
|
-
visibility: hidden;
|
|
729
|
-
}
|
|
730
730
|
.static {
|
|
731
731
|
position: static;
|
|
732
732
|
}
|
|
@@ -773,9 +773,15 @@ video {
|
|
|
773
773
|
.left-14 {
|
|
774
774
|
left: 3.5rem;
|
|
775
775
|
}
|
|
776
|
+
.left-4 {
|
|
777
|
+
left: 1rem;
|
|
778
|
+
}
|
|
776
779
|
.right-0 {
|
|
777
780
|
right: 0px;
|
|
778
781
|
}
|
|
782
|
+
.right-4 {
|
|
783
|
+
right: 1rem;
|
|
784
|
+
}
|
|
779
785
|
.right-\[-5px\] {
|
|
780
786
|
right: -5px;
|
|
781
787
|
}
|
|
@@ -788,9 +794,6 @@ video {
|
|
|
788
794
|
.top-10 {
|
|
789
795
|
top: 2.5rem;
|
|
790
796
|
}
|
|
791
|
-
.top-14 {
|
|
792
|
-
top: 3.5rem;
|
|
793
|
-
}
|
|
794
797
|
.top-4 {
|
|
795
798
|
top: 1rem;
|
|
796
799
|
}
|
|
@@ -1176,6 +1179,9 @@ video {
|
|
|
1176
1179
|
--tw-scale-y: 1.25;
|
|
1177
1180
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1178
1181
|
}
|
|
1182
|
+
.transform {
|
|
1183
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1184
|
+
}
|
|
1179
1185
|
@keyframes ping {
|
|
1180
1186
|
75%, 100% {
|
|
1181
1187
|
transform: scale(2);
|
|
@@ -1845,6 +1851,10 @@ video {
|
|
|
1845
1851
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1846
1852
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1847
1853
|
}
|
|
1854
|
+
.drop-shadow {
|
|
1855
|
+
--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
|
|
1856
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1857
|
+
}
|
|
1848
1858
|
.drop-shadow-md {
|
|
1849
1859
|
--tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
|
|
1850
1860
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geomak/ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Oxygen Design System — reusable UI primitives built with Radix UI behaviours and Tailwind CSS styling",
|
|
5
5
|
"author": "G-MAKROGLOU",
|
|
6
6
|
"license": "MIT",
|
|
@@ -65,16 +65,13 @@
|
|
|
65
65
|
"react-dom": "^19.0.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@chromatic-com/storybook": "^
|
|
68
|
+
"@chromatic-com/storybook": "^5.2.1",
|
|
69
69
|
"@semantic-release/changelog": "^6.0.3",
|
|
70
70
|
"@semantic-release/git": "^10.0.1",
|
|
71
|
-
"@storybook/addon-
|
|
72
|
-
"@storybook/addon-
|
|
73
|
-
"@storybook/
|
|
74
|
-
"@
|
|
75
|
-
"@storybook/react": "^8.6.12",
|
|
76
|
-
"@storybook/react-vite": "^8.6.12",
|
|
77
|
-
"@storybook/test": "^8.6.12",
|
|
71
|
+
"@storybook/addon-docs": "^10.4.1",
|
|
72
|
+
"@storybook/addon-links": "^10.4.1",
|
|
73
|
+
"@storybook/react-vite": "^10.4.1",
|
|
74
|
+
"@testing-library/dom": "^10.4.1",
|
|
78
75
|
"@testing-library/jest-dom": "^6.9.1",
|
|
79
76
|
"@testing-library/react": "^16.3.2",
|
|
80
77
|
"@testing-library/user-event": "^14.6.1",
|
|
@@ -89,6 +86,7 @@
|
|
|
89
86
|
"eslint": "^9.0.0",
|
|
90
87
|
"eslint-plugin-react": "^7.37.0",
|
|
91
88
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
89
|
+
"eslint-plugin-storybook": "^10.4.1",
|
|
92
90
|
"jsdom": "^29.1.1",
|
|
93
91
|
"msw": "2",
|
|
94
92
|
"msw-storybook-addon": "2",
|
|
@@ -97,7 +95,7 @@
|
|
|
97
95
|
"remark-gfm": "^4.0.1",
|
|
98
96
|
"sass": "^1.100.0",
|
|
99
97
|
"semantic-release": "^24.0.0",
|
|
100
|
-
"storybook": "^
|
|
98
|
+
"storybook": "^10.4.1",
|
|
101
99
|
"tailwindcss": "^3.1.8",
|
|
102
100
|
"tsup": "^8.5.0",
|
|
103
101
|
"typescript": "^6.0.3",
|