manolis-ui 0.17.1 → 0.17.3

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/style.css CHANGED
@@ -36,6 +36,7 @@
36
36
  --font-weight-bold: 700;
37
37
  --radius-sm: 0.25rem;
38
38
  --radius-md: 0.375rem;
39
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
39
40
  --default-transition-duration: 150ms;
40
41
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
41
42
  --default-font-family: var(--font-sans);
@@ -3146,6 +3147,9 @@
3146
3147
  .flex-shrink {
3147
3148
  flex-shrink: 1;
3148
3149
  }
3150
+ .flex-shrink-0 {
3151
+ flex-shrink: 0;
3152
+ }
3149
3153
  .shrink {
3150
3154
  flex-shrink: 1;
3151
3155
  }
@@ -3170,6 +3174,9 @@
3170
3174
  rotate: calc(45deg * -1);
3171
3175
  }
3172
3176
  }
3177
+ .rotate-90 {
3178
+ rotate: 90deg;
3179
+ }
3173
3180
  .rotate-180 {
3174
3181
  rotate: 180deg;
3175
3182
  }
@@ -3207,6 +3214,9 @@
3207
3214
  .cursor-default {
3208
3215
  cursor: default;
3209
3216
  }
3217
+ .cursor-grabbing {
3218
+ cursor: grabbing;
3219
+ }
3210
3220
  .cursor-pointer {
3211
3221
  cursor: pointer;
3212
3222
  }
@@ -3262,6 +3272,9 @@
3262
3272
  .gap-2\.5 {
3263
3273
  gap: calc(var(--spacing) * 2.5);
3264
3274
  }
3275
+ .gap-3 {
3276
+ gap: calc(var(--spacing) * 3);
3277
+ }
3265
3278
  .gap-4 {
3266
3279
  gap: calc(var(--spacing) * 4);
3267
3280
  }
@@ -3279,14 +3292,11 @@
3279
3292
  .overflow-x-hidden {
3280
3293
  overflow-x: hidden;
3281
3294
  }
3282
- .overflow-x-scroll {
3283
- overflow-x: scroll;
3284
- }
3285
3295
  .overflow-y-auto {
3286
3296
  overflow-y: auto;
3287
3297
  }
3288
- .scroll-smooth {
3289
- scroll-behavior: smooth;
3298
+ .overflow-y-scroll {
3299
+ overflow-y: scroll;
3290
3300
  }
3291
3301
  .\!rounded {
3292
3302
  border-radius: 0.25rem !important;
@@ -3823,6 +3833,19 @@
3823
3833
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3824
3834
  transition-duration: var(--tw-duration, var(--default-transition-duration));
3825
3835
  }
3836
+ .transition-transform {
3837
+ transition-property: transform, translate, scale, rotate;
3838
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3839
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3840
+ }
3841
+ .duration-0 {
3842
+ --tw-duration: 0ms;
3843
+ transition-duration: 0ms;
3844
+ }
3845
+ .ease-out {
3846
+ --tw-ease: var(--ease-out);
3847
+ transition-timing-function: var(--ease-out);
3848
+ }
3826
3849
  .btn-outline {
3827
3850
  &:not(.btn-active, :hover, :active:focus, :focus-visible, :disabled, [disabled], .btn-disabled) {
3828
3851
  --btn-shadow: "";
@@ -3832,6 +3855,10 @@
3832
3855
  --btn-noise: none;
3833
3856
  }
3834
3857
  }
3858
+ .\!select-none {
3859
+ -webkit-user-select: none !important;
3860
+ user-select: none !important;
3861
+ }
3835
3862
  .btn-accent {
3836
3863
  --btn-color: var(--color-accent);
3837
3864
  --btn-fg: var(--color-accent-content);
@@ -4178,11 +4205,6 @@
4178
4205
  cursor: auto;
4179
4206
  }
4180
4207
  }
4181
- .md\:snap-none {
4182
- @media (width >= 48rem) {
4183
- scroll-snap-type: none;
4184
- }
4185
- }
4186
4208
  .md\:px-10 {
4187
4209
  @media (width >= 48rem) {
4188
4210
  padding-inline: calc(var(--spacing) * 10);
@@ -4683,6 +4705,14 @@
4683
4705
  syntax: "*";
4684
4706
  inherits: false;
4685
4707
  }
4708
+ @property --tw-duration {
4709
+ syntax: "*";
4710
+ inherits: false;
4711
+ }
4712
+ @property --tw-ease {
4713
+ syntax: "*";
4714
+ inherits: false;
4715
+ }
4686
4716
  @property --tw-content {
4687
4717
  syntax: "*";
4688
4718
  initial-value: "";
@@ -4729,6 +4759,8 @@
4729
4759
  --tw-drop-shadow-color: initial;
4730
4760
  --tw-drop-shadow-alpha: 100%;
4731
4761
  --tw-drop-shadow-size: initial;
4762
+ --tw-duration: initial;
4763
+ --tw-ease: initial;
4732
4764
  --tw-content: "";
4733
4765
  }
4734
4766
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "manolis-ui",
3
3
  "private": false,
4
- "version": "0.17.1",
4
+ "version": "0.17.3",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist/*"