@enos5/enos-vue-default 1.6.10 → 1.7.1

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/styles.css CHANGED
@@ -11,6 +11,16 @@
11
11
  .date-input[data-v-35dd480a]:disabled::-webkit-calendar-picker-indicator {
12
12
  cursor: default;
13
13
  }
14
+
15
+ .date-range-input[data-v-36446810] {
16
+ color-scheme: light;
17
+ }
18
+ .dark .date-range-input[data-v-36446810] {
19
+ color-scheme: dark;
20
+ }
21
+ .date-range-input[data-v-36446810]:disabled {
22
+ cursor: not-allowed;
23
+ }
14
24
  .tox {
15
25
  box-shadow: none;
16
26
  box-sizing: content-box;
@@ -5724,6 +5734,8 @@ body.tox-dialog__disable-scroll {
5724
5734
  --color-blue-500: oklch(62.3% .214 259.815);
5725
5735
  --color-blue-600: oklch(54.6% .245 262.881);
5726
5736
  --color-blue-700: oklch(48.8% .243 264.376);
5737
+ --color-blue-900: oklch(37.9% .146 265.522);
5738
+ --color-blue-950: oklch(28.2% .091 267.935);
5727
5739
  --color-rose-100: oklch(94.1% .03 12.58);
5728
5740
  --color-rose-600: oklch(58.6% .253 17.585);
5729
5741
  --color-rose-700: oklch(51.4% .222 16.935);
@@ -6102,6 +6114,14 @@ body.tox-dialog__disable-scroll {
6102
6114
  inset-block: calc(var(--spacing) * 0);
6103
6115
  }
6104
6116
 
6117
+ .start {
6118
+ inset-inline-start: var(--spacing);
6119
+ }
6120
+
6121
+ .end {
6122
+ inset-inline-end: var(--spacing);
6123
+ }
6124
+
6105
6125
  .top-2 {
6106
6126
  top: calc(var(--spacing) * 2);
6107
6127
  }
@@ -6114,6 +6134,10 @@ body.tox-dialog__disable-scroll {
6114
6134
  top: calc(var(--spacing) * 6);
6115
6135
  }
6116
6136
 
6137
+ .top-full {
6138
+ top: 100%;
6139
+ }
6140
+
6117
6141
  .right-0 {
6118
6142
  right: calc(var(--spacing) * 0);
6119
6143
  }
@@ -6389,6 +6413,10 @@ body.tox-dialog__disable-scroll {
6389
6413
  width: calc(var(--spacing) * 48);
6390
6414
  }
6391
6415
 
6416
+ .w-80 {
6417
+ width: calc(var(--spacing) * 80);
6418
+ }
6419
+
6392
6420
  .w-auto {
6393
6421
  width: auto;
6394
6422
  }
@@ -6539,6 +6567,10 @@ body.tox-dialog__disable-scroll {
6539
6567
  grid-template-columns: repeat(6, minmax(0, 1fr));
6540
6568
  }
6541
6569
 
6570
+ .grid-cols-7 {
6571
+ grid-template-columns: repeat(7, minmax(0, 1fr));
6572
+ }
6573
+
6542
6574
  .flex-col {
6543
6575
  flex-direction: column;
6544
6576
  }
@@ -6712,11 +6744,21 @@ body.tox-dialog__disable-scroll {
6712
6744
  border-top-right-radius: var(--radius-xl);
6713
6745
  }
6714
6746
 
6747
+ .rounded-l-full {
6748
+ border-top-left-radius: 3.40282e38px;
6749
+ border-bottom-left-radius: 3.40282e38px;
6750
+ }
6751
+
6715
6752
  .rounded-l-lg {
6716
6753
  border-top-left-radius: var(--radius-lg);
6717
6754
  border-bottom-left-radius: var(--radius-lg);
6718
6755
  }
6719
6756
 
6757
+ .rounded-r-full {
6758
+ border-top-right-radius: 3.40282e38px;
6759
+ border-bottom-right-radius: 3.40282e38px;
6760
+ }
6761
+
6720
6762
  .rounded-r-lg {
6721
6763
  border-top-right-radius: var(--radius-lg);
6722
6764
  border-bottom-right-radius: var(--radius-lg);
@@ -6843,6 +6885,10 @@ body.tox-dialog__disable-scroll {
6843
6885
  background-color: var(--color-blue-100);
6844
6886
  }
6845
6887
 
6888
+ .bg-blue-500 {
6889
+ background-color: var(--color-blue-500);
6890
+ }
6891
+
6846
6892
  .bg-blue-600 {
6847
6893
  background-color: var(--color-blue-600);
6848
6894
  }
@@ -7025,6 +7071,10 @@ body.tox-dialog__disable-scroll {
7025
7071
  object-fit: contain;
7026
7072
  }
7027
7073
 
7074
+ .p-1 {
7075
+ padding: calc(var(--spacing) * 1);
7076
+ }
7077
+
7028
7078
  .p-2 {
7029
7079
  padding: calc(var(--spacing) * 2);
7030
7080
  }
@@ -7319,6 +7369,10 @@ body.tox-dialog__disable-scroll {
7319
7369
  color: var(--color-neutral-50);
7320
7370
  }
7321
7371
 
7372
+ .text-neutral-300 {
7373
+ color: var(--color-neutral-300);
7374
+ }
7375
+
7322
7376
  .text-neutral-400 {
7323
7377
  color: var(--color-neutral-400);
7324
7378
  }
@@ -7840,6 +7894,10 @@ body.tox-dialog__disable-scroll {
7840
7894
  }
7841
7895
  }
7842
7896
 
7897
+ .hover\:bg-blue-600:hover {
7898
+ background-color: var(--color-blue-600);
7899
+ }
7900
+
7843
7901
  .hover\:bg-destructive\/15:hover {
7844
7902
  background-color: var(--destructive);
7845
7903
  }
@@ -8509,6 +8567,14 @@ body.tox-dialog__disable-scroll {
8509
8567
  }
8510
8568
  }
8511
8569
 
8570
+ .dark\:bg-blue-900:where(.dark, .dark *) {
8571
+ background-color: var(--color-blue-900);
8572
+ }
8573
+
8574
+ .dark\:bg-blue-950:where(.dark, .dark *) {
8575
+ background-color: var(--color-blue-950);
8576
+ }
8577
+
8512
8578
  .dark\:bg-destructive\/20:where(.dark, .dark *) {
8513
8579
  background-color: var(--destructive);
8514
8580
  }
@@ -8555,6 +8621,10 @@ body.tox-dialog__disable-scroll {
8555
8621
  background-color: var(--color-neutral-100);
8556
8622
  }
8557
8623
 
8624
+ .dark\:bg-neutral-700:where(.dark, .dark *) {
8625
+ background-color: var(--color-neutral-700);
8626
+ }
8627
+
8558
8628
  .dark\:bg-neutral-800:where(.dark, .dark *) {
8559
8629
  background-color: var(--color-neutral-800);
8560
8630
  }
@@ -8705,6 +8775,10 @@ body.tox-dialog__disable-scroll {
8705
8775
  color: var(--color-neutral-200);
8706
8776
  }
8707
8777
 
8778
+ .dark\:text-neutral-300:where(.dark, .dark *) {
8779
+ color: var(--color-neutral-300);
8780
+ }
8781
+
8708
8782
  .dark\:text-neutral-400:where(.dark, .dark *) {
8709
8783
  color: var(--color-neutral-400);
8710
8784
  }
@@ -8713,6 +8787,10 @@ body.tox-dialog__disable-scroll {
8713
8787
  color: var(--color-neutral-500);
8714
8788
  }
8715
8789
 
8790
+ .dark\:text-neutral-600:where(.dark, .dark *) {
8791
+ color: var(--color-neutral-600);
8792
+ }
8793
+
8716
8794
  .dark\:text-white:where(.dark, .dark *) {
8717
8795
  color: var(--color-white);
8718
8796
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enos5/enos-vue-default",
3
- "version": "1.6.10",
3
+ "version": "1.7.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "files": [