@pactor-app/ui 1.3.0 → 1.8.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/{chunk-P54Y23AP.js → chunk-7YOIAVV6.js} +587 -282
- package/dist/{chunk-EVGIS2ZE.js → chunk-PECP7DJB.js} +120 -7
- package/dist/{chunk-TDVG7MZ5.js → chunk-TAJXMOEX.js} +2 -2
- package/dist/{chunk-L4Z7MNYY.js → chunk-VM4FESQB.js} +16 -2
- package/dist/{chunk-UKA7C3JP.js → chunk-XUIXZJDQ.js} +4 -4
- package/dist/components/index.cjs +1024 -605
- package/dist/components/index.d.cts +91 -5
- package/dist/components/index.d.ts +91 -5
- package/dist/components/index.js +6 -4
- package/dist/index.cjs +1177 -758
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +7 -5
- package/dist/layout/index.cjs +138 -12
- package/dist/layout/index.js +3 -3
- package/dist/{typography-DsGdDBc2.d.cts → typography-BYDh5oku.d.cts} +14 -1
- package/dist/{typography-DsGdDBc2.d.ts → typography-BYDh5oku.d.ts} +14 -1
- package/dist/ui/index.cjs +19 -5
- package/dist/ui/index.d.cts +3 -12
- package/dist/ui/index.d.ts +3 -12
- package/dist/ui/index.js +2 -2
- package/package.json +5 -5
- package/styles.css +58 -29
package/styles.css
CHANGED
|
@@ -656,6 +656,9 @@
|
|
|
656
656
|
.w-40 {
|
|
657
657
|
width: calc(var(--spacing) * 40);
|
|
658
658
|
}
|
|
659
|
+
.w-48 {
|
|
660
|
+
width: calc(var(--spacing) * 48);
|
|
661
|
+
}
|
|
659
662
|
.w-52 {
|
|
660
663
|
width: calc(var(--spacing) * 52);
|
|
661
664
|
}
|
|
@@ -800,6 +803,9 @@
|
|
|
800
803
|
.rotate-90 {
|
|
801
804
|
rotate: 90deg;
|
|
802
805
|
}
|
|
806
|
+
.rotate-180 {
|
|
807
|
+
rotate: 180deg;
|
|
808
|
+
}
|
|
803
809
|
.transform {
|
|
804
810
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
805
811
|
}
|
|
@@ -1002,6 +1008,12 @@
|
|
|
1002
1008
|
.rounded-\(--pagination-active-radius\) {
|
|
1003
1009
|
border-radius: var(--pagination-active-radius);
|
|
1004
1010
|
}
|
|
1011
|
+
.rounded-2xl {
|
|
1012
|
+
border-radius: calc(var(--radius) * 1.8);
|
|
1013
|
+
}
|
|
1014
|
+
.rounded-3xl {
|
|
1015
|
+
border-radius: calc(var(--radius) * 2.2);
|
|
1016
|
+
}
|
|
1005
1017
|
.rounded-\[2px\] {
|
|
1006
1018
|
border-radius: 2px;
|
|
1007
1019
|
}
|
|
@@ -1020,6 +1032,9 @@
|
|
|
1020
1032
|
.rounded-md {
|
|
1021
1033
|
border-radius: calc(var(--radius) * 0.8);
|
|
1022
1034
|
}
|
|
1035
|
+
.rounded-none {
|
|
1036
|
+
border-radius: 0;
|
|
1037
|
+
}
|
|
1023
1038
|
.rounded-sm {
|
|
1024
1039
|
border-radius: calc(var(--radius) * 0.6);
|
|
1025
1040
|
}
|
|
@@ -1081,6 +1096,9 @@
|
|
|
1081
1096
|
--tw-border-style: none;
|
|
1082
1097
|
border-style: none;
|
|
1083
1098
|
}
|
|
1099
|
+
.border-\(--calendar-today-border\) {
|
|
1100
|
+
border-color: var(--calendar-today-border);
|
|
1101
|
+
}
|
|
1084
1102
|
.border-\(color\:--pagination-active-border\) {
|
|
1085
1103
|
border-color: var(--pagination-active-border);
|
|
1086
1104
|
}
|
|
@@ -2035,6 +2053,12 @@
|
|
|
2035
2053
|
.hover\:text-\(--calendar-day-hover-foreground\):hover {
|
|
2036
2054
|
color: var(--calendar-day-hover-foreground);
|
|
2037
2055
|
}
|
|
2056
|
+
.hover\:text-\(--calendar-selected-foreground\):hover {
|
|
2057
|
+
color: var(--calendar-selected-foreground);
|
|
2058
|
+
}
|
|
2059
|
+
.hover\:text-\(--calendar-today-foreground\):hover {
|
|
2060
|
+
color: var(--calendar-today-foreground);
|
|
2061
|
+
}
|
|
2038
2062
|
.hover\:text-\(--menu-hover-foreground\):hover {
|
|
2039
2063
|
color: var(--menu-hover-foreground);
|
|
2040
2064
|
}
|
|
@@ -2957,19 +2981,21 @@
|
|
|
2957
2981
|
.\[\&\>\[data-slot\=text\]\]\:text-muted-foreground > [data-slot=text] {
|
|
2958
2982
|
color: var(--muted-foreground);
|
|
2959
2983
|
}
|
|
2960
|
-
.\[
|
|
2984
|
+
.\[\&\>button\]\:hidden > button {
|
|
2985
|
+
display: none;
|
|
2986
|
+
}
|
|
2987
|
+
.\[\&\>button\]\:rounded-none > button {
|
|
2961
2988
|
border-radius: 0;
|
|
2962
2989
|
}
|
|
2963
|
-
.\[
|
|
2964
|
-
border-
|
|
2965
|
-
border-
|
|
2990
|
+
.\[\&\>button\]\:border > button {
|
|
2991
|
+
border-style: var(--tw-border-style);
|
|
2992
|
+
border-width: 1px;
|
|
2966
2993
|
}
|
|
2967
|
-
.\[
|
|
2968
|
-
border-
|
|
2969
|
-
border-bottom-right-radius: calc(var(--radius) * 0.8);
|
|
2994
|
+
.\[\&\>button\]\:border-\(--calendar-today-border\) > button {
|
|
2995
|
+
border-color: var(--calendar-today-border);
|
|
2970
2996
|
}
|
|
2971
|
-
.\[\&\>button\]\:
|
|
2972
|
-
|
|
2997
|
+
.\[\&\>button\]\:bg-\(--calendar-range-background\) > button {
|
|
2998
|
+
background-color: var(--calendar-range-background);
|
|
2973
2999
|
}
|
|
2974
3000
|
.\[\&\>button\]\:bg-\(--calendar-selected-background\) > button {
|
|
2975
3001
|
background-color: var(--calendar-selected-background);
|
|
@@ -2977,6 +3003,9 @@
|
|
|
2977
3003
|
.\[\&\>button\]\:bg-\(--calendar-today-background\) > button {
|
|
2978
3004
|
background-color: var(--calendar-today-background);
|
|
2979
3005
|
}
|
|
3006
|
+
.\[\&\>button\]\:text-\(--calendar-range-foreground\) > button {
|
|
3007
|
+
color: var(--calendar-range-foreground);
|
|
3008
|
+
}
|
|
2980
3009
|
.\[\&\>button\]\:text-\(--calendar-selected-foreground\) > button {
|
|
2981
3010
|
color: var(--calendar-selected-foreground);
|
|
2982
3011
|
}
|
|
@@ -2987,6 +3016,15 @@
|
|
|
2987
3016
|
.\[\&\>button\]\:hover\:bg-\(--calendar-selected-background\) > button:hover {
|
|
2988
3017
|
background-color: var(--calendar-selected-background);
|
|
2989
3018
|
}
|
|
3019
|
+
.\[\&\>button\]\:hover\:bg-\(--calendar-today-background\) > button:hover {
|
|
3020
|
+
background-color: var(--calendar-today-background);
|
|
3021
|
+
}
|
|
3022
|
+
.\[\&\>button\]\:hover\:text-\(--calendar-selected-foreground\) > button:hover {
|
|
3023
|
+
color: var(--calendar-selected-foreground);
|
|
3024
|
+
}
|
|
3025
|
+
.\[\&\>button\]\:hover\:text-\(--calendar-today-foreground\) > button:hover {
|
|
3026
|
+
color: var(--calendar-today-foreground);
|
|
3027
|
+
}
|
|
2990
3028
|
}
|
|
2991
3029
|
.\[\&\>li\]\:mt-2 > li {
|
|
2992
3030
|
margin-top: calc(var(--spacing) * 2);
|
|
@@ -3164,14 +3202,14 @@
|
|
|
3164
3202
|
--chart-3: oklch(0.398 0.07 227.392);
|
|
3165
3203
|
--chart-4: oklch(0.828 0.189 84.429);
|
|
3166
3204
|
--chart-5: oklch(0.769 0.188 70.08);
|
|
3167
|
-
--sidebar:
|
|
3168
|
-
--sidebar-foreground:
|
|
3169
|
-
--sidebar-primary:
|
|
3170
|
-
--sidebar-primary-foreground:
|
|
3171
|
-
--sidebar-accent:
|
|
3172
|
-
--sidebar-accent-foreground:
|
|
3173
|
-
--sidebar-border:
|
|
3174
|
-
--sidebar-ring:
|
|
3205
|
+
--sidebar: var(--card);
|
|
3206
|
+
--sidebar-foreground: var(--card-foreground);
|
|
3207
|
+
--sidebar-primary: var(--primary);
|
|
3208
|
+
--sidebar-primary-foreground: var(--primary-foreground);
|
|
3209
|
+
--sidebar-accent: var(--accent);
|
|
3210
|
+
--sidebar-accent-foreground: var(--accent-foreground);
|
|
3211
|
+
--sidebar-border: var(--border);
|
|
3212
|
+
--sidebar-ring: var(--ring);
|
|
3175
3213
|
--font-sans: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
|
|
3176
3214
|
'Helvetica Neue', Arial, sans-serif;
|
|
3177
3215
|
--background-image: none;
|
|
@@ -3205,6 +3243,9 @@
|
|
|
3205
3243
|
--calendar-selected-foreground: var(--primary-foreground);
|
|
3206
3244
|
--calendar-today-background: var(--accent);
|
|
3207
3245
|
--calendar-today-foreground: var(--accent-foreground);
|
|
3246
|
+
--calendar-today-border: var(--primary);
|
|
3247
|
+
--calendar-range-background: var(--accent);
|
|
3248
|
+
--calendar-range-foreground: var(--accent-foreground);
|
|
3208
3249
|
--flex-gap: 12px;
|
|
3209
3250
|
--flex-gap-sm: calc(var(--flex-gap) * 0.67);
|
|
3210
3251
|
--flex-gap-md: calc(var(--flex-gap) * 1.33);
|
|
@@ -3240,14 +3281,8 @@
|
|
|
3240
3281
|
--chart-3: oklch(0.769 0.188 70.08);
|
|
3241
3282
|
--chart-4: oklch(0.627 0.265 303.9);
|
|
3242
3283
|
--chart-5: oklch(0.645 0.246 16.439);
|
|
3243
|
-
--sidebar: oklch(0.205 0 0);
|
|
3244
|
-
--sidebar-foreground: oklch(0.985 0 0);
|
|
3245
3284
|
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
3246
3285
|
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
3247
|
-
--sidebar-accent: oklch(0.269 0 0);
|
|
3248
|
-
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
3249
|
-
--sidebar-border: oklch(1 0 0 / 10%);
|
|
3250
|
-
--sidebar-ring: oklch(0.556 0 0);
|
|
3251
3286
|
--bubble-background: oklch(from var(--primary) 0.3 calc(c * 0.4) h);
|
|
3252
3287
|
--bubble-hover-background: oklch(
|
|
3253
3288
|
from var(--primary) 0.35 calc(c * 0.5) h
|
|
@@ -3283,14 +3318,8 @@
|
|
|
3283
3318
|
--chart-3: oklch(0.769 0.188 70.08);
|
|
3284
3319
|
--chart-4: oklch(0.627 0.265 303.9);
|
|
3285
3320
|
--chart-5: oklch(0.645 0.246 16.439);
|
|
3286
|
-
--sidebar: oklch(0.205 0 0);
|
|
3287
|
-
--sidebar-foreground: oklch(0.985 0 0);
|
|
3288
3321
|
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
3289
3322
|
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
3290
|
-
--sidebar-accent: oklch(0.269 0 0);
|
|
3291
|
-
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
3292
|
-
--sidebar-border: oklch(1 0 0 / 10%);
|
|
3293
|
-
--sidebar-ring: oklch(0.556 0 0);
|
|
3294
3323
|
--bubble-background: oklch(from var(--primary) 0.3 calc(c * 0.4) h);
|
|
3295
3324
|
--bubble-hover-background: oklch(
|
|
3296
3325
|
from var(--primary) 0.35 calc(c * 0.5) h
|