@helpwave/hightide 0.8.1 → 0.8.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/dist/index.d.mts +34 -22
- package/dist/index.d.ts +34 -22
- package/dist/index.js +343 -296
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +340 -286
- package/dist/index.mjs.map +1 -1
- package/dist/style/globals.css +7 -0
- package/dist/style/uncompiled/theme/components/date-time-input.css +7 -0
- package/package.json +1 -1
package/dist/style/globals.css
CHANGED
|
@@ -958,6 +958,9 @@
|
|
|
958
958
|
.gap-4 {
|
|
959
959
|
gap: calc(var(--spacing) * 4);
|
|
960
960
|
}
|
|
961
|
+
.gap-8 {
|
|
962
|
+
gap: calc(var(--spacing) * 8);
|
|
963
|
+
}
|
|
961
964
|
.gap-x-1 {
|
|
962
965
|
column-gap: calc(var(--spacing) * 1);
|
|
963
966
|
}
|
|
@@ -5150,6 +5153,10 @@
|
|
|
5150
5153
|
&:hover {
|
|
5151
5154
|
cursor: pointer;
|
|
5152
5155
|
}
|
|
5156
|
+
&[type="date"]::-webkit-calendar-picker-indicator, &[type="datetime-local"]::-webkit-calendar-picker-indicator, &[type="time"]::-webkit-calendar-picker-indicator {
|
|
5157
|
+
display: none;
|
|
5158
|
+
-webkit-appearance: none;
|
|
5159
|
+
}
|
|
5153
5160
|
}
|
|
5154
5161
|
}
|
|
5155
5162
|
:root {
|
|
@@ -5,5 +5,12 @@
|
|
|
5
5
|
&:hover {
|
|
6
6
|
@apply cursor-pointer;
|
|
7
7
|
}
|
|
8
|
+
|
|
9
|
+
&[type="date"]::-webkit-calendar-picker-indicator,
|
|
10
|
+
&[type="datetime-local"]::-webkit-calendar-picker-indicator,
|
|
11
|
+
&[type="time"]::-webkit-calendar-picker-indicator {
|
|
12
|
+
display: none;
|
|
13
|
+
-webkit-appearance: none;
|
|
14
|
+
}
|
|
8
15
|
}
|
|
9
16
|
}
|