@parto-system-design/ui 1.0.4 → 1.1.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 +1164 -1021
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +78 -347
- package/dist/index.d.cts +54 -25
- package/dist/index.d.ts +54 -25
- package/dist/index.js +1181 -1041
- package/dist/index.js.map +1 -1
- package/package.json +21 -4
- package/tailwind.config.ts +13 -297
package/dist/index.css
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
container-type: inline-size;
|
|
5
5
|
container-name: field-group;
|
|
6
6
|
}
|
|
7
|
+
.\@container {
|
|
8
|
+
container-type: inline-size;
|
|
9
|
+
}
|
|
7
10
|
.pointer-events-auto {
|
|
8
11
|
pointer-events: auto;
|
|
9
12
|
}
|
|
@@ -245,6 +248,9 @@
|
|
|
245
248
|
.max-h-\[300px\] {
|
|
246
249
|
max-height: 300px;
|
|
247
250
|
}
|
|
251
|
+
.min-h-\[38px\] {
|
|
252
|
+
min-height: 38px;
|
|
253
|
+
}
|
|
248
254
|
.min-h-\[200px\] {
|
|
249
255
|
min-height: 200px;
|
|
250
256
|
}
|
|
@@ -317,6 +323,9 @@
|
|
|
317
323
|
.min-w-\[12rem\] {
|
|
318
324
|
min-width: 12rem;
|
|
319
325
|
}
|
|
326
|
+
.min-w-\[120px\] {
|
|
327
|
+
min-width: 120px;
|
|
328
|
+
}
|
|
320
329
|
.min-w-\[140px\] {
|
|
321
330
|
min-width: 140px;
|
|
322
331
|
}
|
|
@@ -814,9 +823,6 @@
|
|
|
814
823
|
background-color: color-mix(in oklab, hsl(var(--foreground-default)) 2.6%, transparent);
|
|
815
824
|
}
|
|
816
825
|
}
|
|
817
|
-
.bg-green-500 {
|
|
818
|
-
background-color: #22c55e;
|
|
819
|
-
}
|
|
820
826
|
.bg-input {
|
|
821
827
|
background-color: hsl(var(--background-control));
|
|
822
828
|
}
|
|
@@ -826,6 +832,12 @@
|
|
|
826
832
|
.bg-muted {
|
|
827
833
|
background-color: hsl(var(--background-muted));
|
|
828
834
|
}
|
|
835
|
+
.bg-muted\/10 {
|
|
836
|
+
background-color: hsl(var(--background-muted));
|
|
837
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
838
|
+
background-color: color-mix(in oklab, hsl(var(--background-muted)) 10%, transparent);
|
|
839
|
+
}
|
|
840
|
+
}
|
|
829
841
|
.bg-muted\/30 {
|
|
830
842
|
background-color: hsl(var(--background-muted));
|
|
831
843
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -877,26 +889,10 @@
|
|
|
877
889
|
.bg-warning-600 {
|
|
878
890
|
background-color: hsl(var(--warning-600));
|
|
879
891
|
}
|
|
880
|
-
.bg-yellow-500 {
|
|
881
|
-
background-color: #eab308;
|
|
882
|
-
}
|
|
883
892
|
.bg-gradient-to-br {
|
|
884
893
|
--tw-gradient-position: to bottom right in oklab;
|
|
885
894
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
886
895
|
}
|
|
887
|
-
.from-amber-500 {
|
|
888
|
-
--tw-gradient-from: #f59e0b;
|
|
889
|
-
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
890
|
-
}
|
|
891
|
-
.via-yellow-400 {
|
|
892
|
-
--tw-gradient-via: #facc15;
|
|
893
|
-
--tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
|
|
894
|
-
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
895
|
-
}
|
|
896
|
-
.to-amber-500 {
|
|
897
|
-
--tw-gradient-to: #f59e0b;
|
|
898
|
-
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
899
|
-
}
|
|
900
896
|
.fill-brand {
|
|
901
897
|
fill: hsl(var(--brand-default));
|
|
902
898
|
}
|
|
@@ -1043,6 +1039,12 @@
|
|
|
1043
1039
|
.text-muted-foreground {
|
|
1044
1040
|
color: hsl(var(--foreground-muted));
|
|
1045
1041
|
}
|
|
1042
|
+
.text-muted-foreground\/50 {
|
|
1043
|
+
color: hsl(var(--foreground-muted));
|
|
1044
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1045
|
+
color: color-mix(in oklab, hsl(var(--foreground-muted)) 50%, transparent);
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1046
1048
|
.text-popover-foreground {
|
|
1047
1049
|
color: hsl(var(--foreground-default));
|
|
1048
1050
|
}
|
|
@@ -1632,6 +1634,23 @@
|
|
|
1632
1634
|
z-index: 20;
|
|
1633
1635
|
}
|
|
1634
1636
|
}
|
|
1637
|
+
.focus-within\:ring-2 {
|
|
1638
|
+
&:focus-within {
|
|
1639
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1640
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1641
|
+
}
|
|
1642
|
+
}
|
|
1643
|
+
.focus-within\:ring-background-control {
|
|
1644
|
+
&:focus-within {
|
|
1645
|
+
--tw-ring-color: hsl(var(--background-control));
|
|
1646
|
+
}
|
|
1647
|
+
}
|
|
1648
|
+
.focus-within\:ring-offset-2 {
|
|
1649
|
+
&:focus-within {
|
|
1650
|
+
--tw-ring-offset-width: 2px;
|
|
1651
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1652
|
+
}
|
|
1653
|
+
}
|
|
1635
1654
|
.hover\:border-brand-600 {
|
|
1636
1655
|
&:hover {
|
|
1637
1656
|
@media (hover: hover) {
|
|
@@ -1698,6 +1717,16 @@
|
|
|
1698
1717
|
}
|
|
1699
1718
|
}
|
|
1700
1719
|
}
|
|
1720
|
+
.hover\:\!bg-primary\/20 {
|
|
1721
|
+
&:hover {
|
|
1722
|
+
@media (hover: hover) {
|
|
1723
|
+
background-color: hsl(var(--brand-default)) !important;
|
|
1724
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1725
|
+
background-color: color-mix(in oklab, hsl(var(--brand-default)) 20%, transparent) !important;
|
|
1726
|
+
}
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
}
|
|
1701
1730
|
.hover\:\!bg-selection {
|
|
1702
1731
|
&:hover {
|
|
1703
1732
|
@media (hover: hover) {
|
|
@@ -1826,6 +1855,13 @@
|
|
|
1826
1855
|
}
|
|
1827
1856
|
}
|
|
1828
1857
|
}
|
|
1858
|
+
.hover\:\!text-primary {
|
|
1859
|
+
&:hover {
|
|
1860
|
+
@media (hover: hover) {
|
|
1861
|
+
color: hsl(var(--brand-default)) !important;
|
|
1862
|
+
}
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1829
1865
|
.hover\:text-accent-foreground {
|
|
1830
1866
|
&:hover {
|
|
1831
1867
|
@media (hover: hover) {
|
|
@@ -2088,11 +2124,6 @@
|
|
|
2088
2124
|
outline-offset: 1px;
|
|
2089
2125
|
}
|
|
2090
2126
|
}
|
|
2091
|
-
.focus-visible\:outline-amber-700 {
|
|
2092
|
-
&:focus-visible {
|
|
2093
|
-
outline-color: #b45309;
|
|
2094
|
-
}
|
|
2095
|
-
}
|
|
2096
2127
|
.focus-visible\:outline-border-strong {
|
|
2097
2128
|
&:focus-visible {
|
|
2098
2129
|
outline-color: hsl(var(--border-strong));
|
|
@@ -3268,6 +3299,14 @@
|
|
|
3268
3299
|
background-color: hsl(var(--background-muted));
|
|
3269
3300
|
}
|
|
3270
3301
|
}
|
|
3302
|
+
.dark\:bg-muted\/5 {
|
|
3303
|
+
&:is([data-theme*="dark"] *) {
|
|
3304
|
+
background-color: hsl(var(--background-muted));
|
|
3305
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3306
|
+
background-color: color-mix(in oklab, hsl(var(--background-muted)) 5%, transparent);
|
|
3307
|
+
}
|
|
3308
|
+
}
|
|
3309
|
+
}
|
|
3271
3310
|
.dark\:bg-transparent {
|
|
3272
3311
|
&:is([data-theme*="dark"] *) {
|
|
3273
3312
|
background-color: transparent;
|
|
@@ -3484,6 +3523,11 @@
|
|
|
3484
3523
|
border-width: 0px;
|
|
3485
3524
|
}
|
|
3486
3525
|
}
|
|
3526
|
+
.\[\&\:hover_svg\]\:\!text-primary {
|
|
3527
|
+
&:hover svg {
|
|
3528
|
+
color: hsl(var(--brand-default)) !important;
|
|
3529
|
+
}
|
|
3530
|
+
}
|
|
3487
3531
|
.data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive {
|
|
3488
3532
|
&[data-variant="destructive"] {
|
|
3489
3533
|
:is(& > *) {
|
|
@@ -3638,11 +3682,6 @@
|
|
|
3638
3682
|
flex-shrink: 0;
|
|
3639
3683
|
}
|
|
3640
3684
|
}
|
|
3641
|
-
.\[\&\>svg\]\:text-blue-600 {
|
|
3642
|
-
&>svg {
|
|
3643
|
-
color: #2563eb;
|
|
3644
|
-
}
|
|
3645
|
-
}
|
|
3646
3685
|
.\[\&\>svg\]\:text-brand-600 {
|
|
3647
3686
|
&>svg {
|
|
3648
3687
|
color: hsl(var(--brand-600));
|
|
@@ -3668,13 +3707,6 @@
|
|
|
3668
3707
|
color: hsl(var(--warning-600));
|
|
3669
3708
|
}
|
|
3670
3709
|
}
|
|
3671
|
-
.dark\:\[\&\>svg\]\:text-blue-400 {
|
|
3672
|
-
&:is([data-theme*="dark"] *) {
|
|
3673
|
-
&>svg {
|
|
3674
|
-
color: #60a5fa;
|
|
3675
|
-
}
|
|
3676
|
-
}
|
|
3677
|
-
}
|
|
3678
3710
|
.\[\&\>tr\]\:last\:border-b-0 {
|
|
3679
3711
|
&>tr {
|
|
3680
3712
|
&:last-child {
|
|
@@ -3727,6 +3759,16 @@
|
|
|
3727
3759
|
}
|
|
3728
3760
|
}
|
|
3729
3761
|
:root {
|
|
3762
|
+
--duration-instant: 50ms;
|
|
3763
|
+
--duration-fast: 100ms;
|
|
3764
|
+
--duration-normal: 200ms;
|
|
3765
|
+
--duration-slow: 350ms;
|
|
3766
|
+
--duration-slower: 500ms;
|
|
3767
|
+
--ease-default: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3768
|
+
--ease-in: cubic-bezier(0.4, 0, 1, 1);
|
|
3769
|
+
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
3770
|
+
--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
3771
|
+
--ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
3730
3772
|
--colors-black: 0deg 0% 0%;
|
|
3731
3773
|
--colors-white: 0deg 0% 100%;
|
|
3732
3774
|
--colors-gray-dark-100: 0deg 0% 8.6%;
|
|
@@ -4124,258 +4166,6 @@
|
|
|
4124
4166
|
--chart-5: var(--chart-5);
|
|
4125
4167
|
}
|
|
4126
4168
|
}
|
|
4127
|
-
@layer utilities {
|
|
4128
|
-
.ms-0 {
|
|
4129
|
-
margin-inline-start: 0;
|
|
4130
|
-
}
|
|
4131
|
-
.ms-1 {
|
|
4132
|
-
margin-inline-start: 0.25rem;
|
|
4133
|
-
}
|
|
4134
|
-
.ms-2 {
|
|
4135
|
-
margin-inline-start: 0.5rem;
|
|
4136
|
-
}
|
|
4137
|
-
.ms-3 {
|
|
4138
|
-
margin-inline-start: 0.75rem;
|
|
4139
|
-
}
|
|
4140
|
-
.ms-4 {
|
|
4141
|
-
margin-inline-start: 1rem;
|
|
4142
|
-
}
|
|
4143
|
-
.ms-5 {
|
|
4144
|
-
margin-inline-start: 1.25rem;
|
|
4145
|
-
}
|
|
4146
|
-
.ms-6 {
|
|
4147
|
-
margin-inline-start: 1.5rem;
|
|
4148
|
-
}
|
|
4149
|
-
.ms-8 {
|
|
4150
|
-
margin-inline-start: 2rem;
|
|
4151
|
-
}
|
|
4152
|
-
.ms-10 {
|
|
4153
|
-
margin-inline-start: 2.5rem;
|
|
4154
|
-
}
|
|
4155
|
-
.ms-12 {
|
|
4156
|
-
margin-inline-start: 3rem;
|
|
4157
|
-
}
|
|
4158
|
-
.ms-16 {
|
|
4159
|
-
margin-inline-start: 4rem;
|
|
4160
|
-
}
|
|
4161
|
-
.ms-auto {
|
|
4162
|
-
margin-inline-start: auto;
|
|
4163
|
-
}
|
|
4164
|
-
.me-0 {
|
|
4165
|
-
margin-inline-end: 0;
|
|
4166
|
-
}
|
|
4167
|
-
.me-1 {
|
|
4168
|
-
margin-inline-end: 0.25rem;
|
|
4169
|
-
}
|
|
4170
|
-
.me-2 {
|
|
4171
|
-
margin-inline-end: 0.5rem;
|
|
4172
|
-
}
|
|
4173
|
-
.me-3 {
|
|
4174
|
-
margin-inline-end: 0.75rem;
|
|
4175
|
-
}
|
|
4176
|
-
.me-4 {
|
|
4177
|
-
margin-inline-end: 1rem;
|
|
4178
|
-
}
|
|
4179
|
-
.me-5 {
|
|
4180
|
-
margin-inline-end: 1.25rem;
|
|
4181
|
-
}
|
|
4182
|
-
.me-6 {
|
|
4183
|
-
margin-inline-end: 1.5rem;
|
|
4184
|
-
}
|
|
4185
|
-
.me-8 {
|
|
4186
|
-
margin-inline-end: 2rem;
|
|
4187
|
-
}
|
|
4188
|
-
.me-10 {
|
|
4189
|
-
margin-inline-end: 2.5rem;
|
|
4190
|
-
}
|
|
4191
|
-
.me-12 {
|
|
4192
|
-
margin-inline-end: 3rem;
|
|
4193
|
-
}
|
|
4194
|
-
.me-16 {
|
|
4195
|
-
margin-inline-end: 4rem;
|
|
4196
|
-
}
|
|
4197
|
-
.me-auto {
|
|
4198
|
-
margin-inline-end: auto;
|
|
4199
|
-
}
|
|
4200
|
-
.ps-0 {
|
|
4201
|
-
padding-inline-start: 0;
|
|
4202
|
-
}
|
|
4203
|
-
.ps-1 {
|
|
4204
|
-
padding-inline-start: 0.25rem;
|
|
4205
|
-
}
|
|
4206
|
-
.ps-2 {
|
|
4207
|
-
padding-inline-start: 0.5rem;
|
|
4208
|
-
}
|
|
4209
|
-
.ps-3 {
|
|
4210
|
-
padding-inline-start: 0.75rem;
|
|
4211
|
-
}
|
|
4212
|
-
.ps-4 {
|
|
4213
|
-
padding-inline-start: 1rem;
|
|
4214
|
-
}
|
|
4215
|
-
.ps-5 {
|
|
4216
|
-
padding-inline-start: 1.25rem;
|
|
4217
|
-
}
|
|
4218
|
-
.ps-6 {
|
|
4219
|
-
padding-inline-start: 1.5rem;
|
|
4220
|
-
}
|
|
4221
|
-
.ps-7 {
|
|
4222
|
-
padding-inline-start: 1.75rem;
|
|
4223
|
-
}
|
|
4224
|
-
.ps-8 {
|
|
4225
|
-
padding-inline-start: 2rem;
|
|
4226
|
-
}
|
|
4227
|
-
.ps-10 {
|
|
4228
|
-
padding-inline-start: 2.5rem;
|
|
4229
|
-
}
|
|
4230
|
-
.ps-12 {
|
|
4231
|
-
padding-inline-start: 3rem;
|
|
4232
|
-
}
|
|
4233
|
-
.pe-0 {
|
|
4234
|
-
padding-inline-end: 0;
|
|
4235
|
-
}
|
|
4236
|
-
.pe-1 {
|
|
4237
|
-
padding-inline-end: 0.25rem;
|
|
4238
|
-
}
|
|
4239
|
-
.pe-2 {
|
|
4240
|
-
padding-inline-end: 0.5rem;
|
|
4241
|
-
}
|
|
4242
|
-
.pe-3 {
|
|
4243
|
-
padding-inline-end: 0.75rem;
|
|
4244
|
-
}
|
|
4245
|
-
.pe-4 {
|
|
4246
|
-
padding-inline-end: 1rem;
|
|
4247
|
-
}
|
|
4248
|
-
.pe-5 {
|
|
4249
|
-
padding-inline-end: 1.25rem;
|
|
4250
|
-
}
|
|
4251
|
-
.pe-6 {
|
|
4252
|
-
padding-inline-end: 1.5rem;
|
|
4253
|
-
}
|
|
4254
|
-
.pe-7 {
|
|
4255
|
-
padding-inline-end: 1.75rem;
|
|
4256
|
-
}
|
|
4257
|
-
.pe-8 {
|
|
4258
|
-
padding-inline-end: 2rem;
|
|
4259
|
-
}
|
|
4260
|
-
.pe-10 {
|
|
4261
|
-
padding-inline-end: 2.5rem;
|
|
4262
|
-
}
|
|
4263
|
-
.pe-12 {
|
|
4264
|
-
padding-inline-end: 3rem;
|
|
4265
|
-
}
|
|
4266
|
-
.start-0 {
|
|
4267
|
-
inset-inline-start: 0;
|
|
4268
|
-
}
|
|
4269
|
-
.start-1 {
|
|
4270
|
-
inset-inline-start: 0.25rem;
|
|
4271
|
-
}
|
|
4272
|
-
.start-2 {
|
|
4273
|
-
inset-inline-start: 0.5rem;
|
|
4274
|
-
}
|
|
4275
|
-
.start-4 {
|
|
4276
|
-
inset-inline-start: 1rem;
|
|
4277
|
-
}
|
|
4278
|
-
.start-6 {
|
|
4279
|
-
inset-inline-start: 1.5rem;
|
|
4280
|
-
}
|
|
4281
|
-
.start-8 {
|
|
4282
|
-
inset-inline-start: 2rem;
|
|
4283
|
-
}
|
|
4284
|
-
.end-0 {
|
|
4285
|
-
inset-inline-end: 0;
|
|
4286
|
-
}
|
|
4287
|
-
.end-1 {
|
|
4288
|
-
inset-inline-end: 0.25rem;
|
|
4289
|
-
}
|
|
4290
|
-
.end-2 {
|
|
4291
|
-
inset-inline-end: 0.5rem;
|
|
4292
|
-
}
|
|
4293
|
-
.end-4 {
|
|
4294
|
-
inset-inline-end: 1rem;
|
|
4295
|
-
}
|
|
4296
|
-
.end-6 {
|
|
4297
|
-
inset-inline-end: 1.5rem;
|
|
4298
|
-
}
|
|
4299
|
-
.end-8 {
|
|
4300
|
-
inset-inline-end: 2rem;
|
|
4301
|
-
}
|
|
4302
|
-
.border-s {
|
|
4303
|
-
border-inline-start-width: 1px;
|
|
4304
|
-
}
|
|
4305
|
-
.border-s-0 {
|
|
4306
|
-
border-inline-start-width: 0;
|
|
4307
|
-
}
|
|
4308
|
-
.border-s-2 {
|
|
4309
|
-
border-inline-start-width: 2px;
|
|
4310
|
-
}
|
|
4311
|
-
.border-s-4 {
|
|
4312
|
-
border-inline-start-width: 4px;
|
|
4313
|
-
}
|
|
4314
|
-
.border-e {
|
|
4315
|
-
border-inline-end-width: 1px;
|
|
4316
|
-
}
|
|
4317
|
-
.border-e-0 {
|
|
4318
|
-
border-inline-end-width: 0;
|
|
4319
|
-
}
|
|
4320
|
-
.border-e-2 {
|
|
4321
|
-
border-inline-end-width: 2px;
|
|
4322
|
-
}
|
|
4323
|
-
.border-e-4 {
|
|
4324
|
-
border-inline-end-width: 4px;
|
|
4325
|
-
}
|
|
4326
|
-
.rounded-s {
|
|
4327
|
-
border-start-start-radius: 0.25rem;
|
|
4328
|
-
border-end-start-radius: 0.25rem;
|
|
4329
|
-
}
|
|
4330
|
-
.rounded-s-none {
|
|
4331
|
-
border-start-start-radius: 0;
|
|
4332
|
-
border-end-start-radius: 0;
|
|
4333
|
-
}
|
|
4334
|
-
.rounded-s-sm {
|
|
4335
|
-
border-start-start-radius: 0.125rem;
|
|
4336
|
-
border-end-start-radius: 0.125rem;
|
|
4337
|
-
}
|
|
4338
|
-
.rounded-s-md {
|
|
4339
|
-
border-start-start-radius: 0.375rem;
|
|
4340
|
-
border-end-start-radius: 0.375rem;
|
|
4341
|
-
}
|
|
4342
|
-
.rounded-s-lg {
|
|
4343
|
-
border-start-start-radius: 0.5rem;
|
|
4344
|
-
border-end-start-radius: 0.5rem;
|
|
4345
|
-
}
|
|
4346
|
-
.rounded-e {
|
|
4347
|
-
border-start-end-radius: 0.25rem;
|
|
4348
|
-
border-end-end-radius: 0.25rem;
|
|
4349
|
-
}
|
|
4350
|
-
.rounded-e-none {
|
|
4351
|
-
border-start-end-radius: 0;
|
|
4352
|
-
border-end-end-radius: 0;
|
|
4353
|
-
}
|
|
4354
|
-
.rounded-e-sm {
|
|
4355
|
-
border-start-end-radius: 0.125rem;
|
|
4356
|
-
border-end-end-radius: 0.125rem;
|
|
4357
|
-
}
|
|
4358
|
-
.rounded-e-md {
|
|
4359
|
-
border-start-end-radius: 0.375rem;
|
|
4360
|
-
border-end-end-radius: 0.375rem;
|
|
4361
|
-
}
|
|
4362
|
-
.rounded-e-lg {
|
|
4363
|
-
border-start-end-radius: 0.5rem;
|
|
4364
|
-
border-end-end-radius: 0.5rem;
|
|
4365
|
-
}
|
|
4366
|
-
.text-start {
|
|
4367
|
-
text-align: start;
|
|
4368
|
-
}
|
|
4369
|
-
.text-end {
|
|
4370
|
-
text-align: end;
|
|
4371
|
-
}
|
|
4372
|
-
[dir='rtl'] .rtl\:rotate-180 {
|
|
4373
|
-
transform: rotate(180deg);
|
|
4374
|
-
}
|
|
4375
|
-
[dir='rtl'] .rtl\:scale-x-flip {
|
|
4376
|
-
transform: scaleX(-1);
|
|
4377
|
-
}
|
|
4378
|
-
}
|
|
4379
4169
|
[data-slot='progress-indicator'] {
|
|
4380
4170
|
transform-origin: left center;
|
|
4381
4171
|
}
|
|
@@ -4912,14 +4702,6 @@
|
|
|
4912
4702
|
font-feature-settings: "lnum";
|
|
4913
4703
|
}
|
|
4914
4704
|
}
|
|
4915
|
-
h1, h2, h3, h4, h5, h6 {
|
|
4916
|
-
margin: 0 !important;
|
|
4917
|
-
padding: 0 !important;
|
|
4918
|
-
}
|
|
4919
|
-
p {
|
|
4920
|
-
margin: 0 !important;
|
|
4921
|
-
padding: 0 !important;
|
|
4922
|
-
}
|
|
4923
4705
|
@keyframes enter {
|
|
4924
4706
|
from {
|
|
4925
4707
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -4972,48 +4754,6 @@ p {
|
|
|
4972
4754
|
inherits: false;
|
|
4973
4755
|
initial-value: solid;
|
|
4974
4756
|
}
|
|
4975
|
-
@property --tw-gradient-position {
|
|
4976
|
-
syntax: "*";
|
|
4977
|
-
inherits: false;
|
|
4978
|
-
}
|
|
4979
|
-
@property --tw-gradient-from {
|
|
4980
|
-
syntax: "<color>";
|
|
4981
|
-
inherits: false;
|
|
4982
|
-
initial-value: #0000;
|
|
4983
|
-
}
|
|
4984
|
-
@property --tw-gradient-via {
|
|
4985
|
-
syntax: "<color>";
|
|
4986
|
-
inherits: false;
|
|
4987
|
-
initial-value: #0000;
|
|
4988
|
-
}
|
|
4989
|
-
@property --tw-gradient-to {
|
|
4990
|
-
syntax: "<color>";
|
|
4991
|
-
inherits: false;
|
|
4992
|
-
initial-value: #0000;
|
|
4993
|
-
}
|
|
4994
|
-
@property --tw-gradient-stops {
|
|
4995
|
-
syntax: "*";
|
|
4996
|
-
inherits: false;
|
|
4997
|
-
}
|
|
4998
|
-
@property --tw-gradient-via-stops {
|
|
4999
|
-
syntax: "*";
|
|
5000
|
-
inherits: false;
|
|
5001
|
-
}
|
|
5002
|
-
@property --tw-gradient-from-position {
|
|
5003
|
-
syntax: "<length-percentage>";
|
|
5004
|
-
inherits: false;
|
|
5005
|
-
initial-value: 0%;
|
|
5006
|
-
}
|
|
5007
|
-
@property --tw-gradient-via-position {
|
|
5008
|
-
syntax: "<length-percentage>";
|
|
5009
|
-
inherits: false;
|
|
5010
|
-
initial-value: 50%;
|
|
5011
|
-
}
|
|
5012
|
-
@property --tw-gradient-to-position {
|
|
5013
|
-
syntax: "<length-percentage>";
|
|
5014
|
-
inherits: false;
|
|
5015
|
-
initial-value: 100%;
|
|
5016
|
-
}
|
|
5017
4757
|
@property --tw-leading {
|
|
5018
4758
|
syntax: "*";
|
|
5019
4759
|
inherits: false;
|
|
@@ -5152,15 +4892,6 @@ p {
|
|
|
5152
4892
|
--tw-skew-x: initial;
|
|
5153
4893
|
--tw-skew-y: initial;
|
|
5154
4894
|
--tw-border-style: solid;
|
|
5155
|
-
--tw-gradient-position: initial;
|
|
5156
|
-
--tw-gradient-from: #0000;
|
|
5157
|
-
--tw-gradient-via: #0000;
|
|
5158
|
-
--tw-gradient-to: #0000;
|
|
5159
|
-
--tw-gradient-stops: initial;
|
|
5160
|
-
--tw-gradient-via-stops: initial;
|
|
5161
|
-
--tw-gradient-from-position: 0%;
|
|
5162
|
-
--tw-gradient-via-position: 50%;
|
|
5163
|
-
--tw-gradient-to-position: 100%;
|
|
5164
4895
|
--tw-leading: initial;
|
|
5165
4896
|
--tw-font-weight: initial;
|
|
5166
4897
|
--tw-ordinal: initial;
|
package/dist/index.d.cts
CHANGED
|
@@ -46,24 +46,6 @@ import { BarSvgProps } from '@nivo/bar';
|
|
|
46
46
|
import { PieSvgProps } from '@nivo/pie';
|
|
47
47
|
import { HeatMapSvgProps } from '@nivo/heatmap';
|
|
48
48
|
|
|
49
|
-
declare function cn(...inputs: ClassValue[]): string;
|
|
50
|
-
/**
|
|
51
|
-
* Format number to Instagram-style short format
|
|
52
|
-
* @example formatNumber(123456, 'short') => '123K'
|
|
53
|
-
* @example formatNumber(123456, 'exact') => '123,456'
|
|
54
|
-
*/
|
|
55
|
-
declare function formatNumber(num: number | undefined, format?: 'exact' | 'short'): string;
|
|
56
|
-
/**
|
|
57
|
-
* Format date to relative time with absolute on hover (Persian)
|
|
58
|
-
* @example formatRelativeTime(new Date()) => '۲ ساعت پیش'
|
|
59
|
-
*/
|
|
60
|
-
declare function formatRelativeTime(date: Date | string | number): string;
|
|
61
|
-
/**
|
|
62
|
-
* Format date to absolute format (Persian)
|
|
63
|
-
* @example formatAbsoluteTime(new Date()) => '۱۵ دی ۱۴۰۳، ۱۵:۳۰'
|
|
64
|
-
*/
|
|
65
|
-
declare function formatAbsoluteTime(date: Date | string | number): string;
|
|
66
|
-
|
|
67
49
|
/**
|
|
68
50
|
* Persian/Farsi month names
|
|
69
51
|
*/
|
|
@@ -91,7 +73,7 @@ declare function toEnglishDigits(str: string): string;
|
|
|
91
73
|
/**
|
|
92
74
|
* Format a Date object to Persian/Jalali date string
|
|
93
75
|
*/
|
|
94
|
-
declare function formatJalaliDate(date: Date,
|
|
76
|
+
declare function formatJalaliDate(date: Date, formatStr?: string): string;
|
|
95
77
|
/**
|
|
96
78
|
* Get Persian month name from a Date object
|
|
97
79
|
*/
|
|
@@ -139,23 +121,44 @@ declare function getPersianYearsForDropdown(fromYear: number, toYear: number): A
|
|
|
139
121
|
label: string;
|
|
140
122
|
}>;
|
|
141
123
|
|
|
124
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
125
|
+
/**
|
|
126
|
+
* Format number to Instagram-style short format
|
|
127
|
+
* @example formatNumber(123456, 'short') => '123K'
|
|
128
|
+
* @example formatNumber(123456, 'exact') => '123,456'
|
|
129
|
+
*/
|
|
130
|
+
declare function formatNumber(num: number | undefined, format?: 'exact' | 'short'): string;
|
|
131
|
+
/**
|
|
132
|
+
* Format date to relative time with absolute on hover (Persian)
|
|
133
|
+
* @example formatRelativeTime(new Date()) => '۲ ساعت پیش'
|
|
134
|
+
*/
|
|
135
|
+
declare function formatRelativeTime(date: Date | string | number): string;
|
|
136
|
+
/**
|
|
137
|
+
* Format date to absolute Jalali (Persian calendar) date string.
|
|
138
|
+
* Uses moment-jalaali for accurate Gregorian → Jalali conversion.
|
|
139
|
+
* @example formatAbsoluteTime(new Date()) => '۱۵ دی ۱۴۰۳، ۱۵:۳۰'
|
|
140
|
+
*/
|
|
141
|
+
declare function formatAbsoluteTime(date: Date | string | number): string;
|
|
142
|
+
|
|
142
143
|
type Icon = LucideIcon;
|
|
143
144
|
/**
|
|
144
145
|
* Icon Collection for Parto Design System
|
|
145
146
|
*
|
|
146
147
|
* RTL Support Guidelines:
|
|
147
148
|
* ----------------------
|
|
148
|
-
* Directional icons (arrows, chevrons) should be flipped in RTL contexts when they
|
|
149
|
+
* Directional icons (arrows, chevrons) should be flipped in RTL contexts when they
|
|
150
|
+
* indicate navigation direction. Use Tailwind's built-in `rtl:` variant:
|
|
149
151
|
*
|
|
150
|
-
*
|
|
151
|
-
* -
|
|
152
|
-
* - For UI direction: <Icons.chevronRight className="rtl:rotate-180" />
|
|
152
|
+
* - <Icons.arrowRight className="rtl:rotate-180" /> ← navigation/directional
|
|
153
|
+
* - <Icons.chevronRight className="rtl:rotate-180" /> ← submenu indicators
|
|
153
154
|
*
|
|
154
155
|
* Icons that should NOT be flipped:
|
|
155
156
|
* - Non-directional icons (check, close, settings, etc.)
|
|
156
157
|
* - Icons representing real-world objects
|
|
157
158
|
*/
|
|
158
|
-
|
|
159
|
+
/** Strongly-typed list of all icon names in the Parto Design System */
|
|
160
|
+
type IconName = 'logo' | 'parto' | 'alertCircle' | 'alertTriangle' | 'arrowRight' | 'arrowLeft' | 'bold' | 'building' | 'calendar' | 'check' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUp' | 'circle' | 'clock' | 'close' | 'copy' | 'download' | 'eye' | 'eyeOff' | 'file' | 'fileText' | 'gitHub' | 'heart' | 'home' | 'image' | 'images' | 'inbox' | 'info' | 'instagram' | 'italic' | 'loader' | 'menu' | 'messageCircle' | 'moon' | 'moreHorizontal' | 'moreVertical' | 'plus' | 'rocket' | 'search' | 'settings' | 'share' | 'sparkles' | 'sun' | 'trash' | 'twitter' | 'underline' | 'user' | 'users' | 'video' | 'userCheck' | 'trendingUp' | 'award' | 'crown' | 'minus' | 'imageOff' | 'externalLink' | 'gripVertical' | 'panelLeft' | 'xCircle';
|
|
161
|
+
declare const Icons: Record<IconName, React$1.FC<React$1.SVGProps<SVGSVGElement>> | LucideIcon>;
|
|
159
162
|
|
|
160
163
|
declare function Accordion({ ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
161
164
|
declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
@@ -768,6 +771,32 @@ declare const InputVariants: (props?: ({
|
|
|
768
771
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
769
772
|
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
770
773
|
|
|
774
|
+
declare const tagInputVariants: (props?: ({
|
|
775
|
+
variant?: "default" | "secondary" | null | undefined;
|
|
776
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
777
|
+
interface TagInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue">, VariantProps<typeof tagInputVariants> {
|
|
778
|
+
value?: string[];
|
|
779
|
+
defaultValue?: string[];
|
|
780
|
+
onChange?: (value: string[]) => void;
|
|
781
|
+
placeholder?: string;
|
|
782
|
+
disabled?: boolean;
|
|
783
|
+
maxTags?: number;
|
|
784
|
+
}
|
|
785
|
+
declare const TagInput: React$1.ForwardRefExoticComponent<TagInputProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
786
|
+
|
|
787
|
+
declare const hashtagInputVariants: (props?: ({
|
|
788
|
+
variant?: "default" | "secondary" | null | undefined;
|
|
789
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
790
|
+
interface HashtagInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue">, VariantProps<typeof hashtagInputVariants> {
|
|
791
|
+
value?: string[];
|
|
792
|
+
defaultValue?: string[];
|
|
793
|
+
onChange?: (value: string[]) => void;
|
|
794
|
+
placeholder?: string;
|
|
795
|
+
disabled?: boolean;
|
|
796
|
+
maxTags?: number;
|
|
797
|
+
}
|
|
798
|
+
declare const HashtagInput: React$1.ForwardRefExoticComponent<HashtagInputProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
799
|
+
|
|
771
800
|
interface InputGroupProps extends React$1.ComponentProps<"div"> {
|
|
772
801
|
/**
|
|
773
802
|
* Direction of the input group.
|
|
@@ -1387,4 +1416,4 @@ declare function PartoWordCloud({ words, width, height, className, minFontSize,
|
|
|
1387
1416
|
|
|
1388
1417
|
declare function useIsMobile(): boolean;
|
|
1389
1418
|
|
|
1390
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, type AspectRatioType, Autocomplete, type AutocompleteItem, type AutocompleteProps, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, type ButtonVariantProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommentCard, type CommentCardProps, type CommentTag, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DatePicker, type DatePickerProps, DateRangePicker, DateRangePickerInline, type DateRangePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyDescription, EmptyIcon, EmptyTitle, EngagementRate, EngagementRateBar, type EngagementRateBarProps, type EngagementRateProps, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, Icons, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, InputVariants, InstagramPost, type InstagramPostProps, type InstagramProfileInfo, Kbd, KbdGroup, Label, type LoadingVariantProps, type MediaItem, type MediaType, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricCard, MetricCardContent, MetricCardDifferential, MetricCardHeader, MetricCardLabel, MetricCardSparkline, MetricCardValue, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type NumberFormat, PERSIAN_MONTHS, PERSIAN_MONTHS_SHORT, PERSIAN_WEEKDAYS, PERSIAN_WEEKDAYS_SHORT, Pagination, PaginationContent, PaginationControlled, type PaginationControlledProps, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PartoBarChart, type PartoBarChartProps, PartoHeatMap, type PartoHeatMapProps, PartoLineChart, type PartoLineChartProps, PartoPieChart, type PartoPieChartProps, PartoWordCloud, type PartoWordCloudProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PostStats, ProfileCard, type ProfileCardProps, ProfileInfo, type ProfileInfoProps, Progress, type ProgressProps, RadioCardDescription, RadioCardItem, RadioCardTitle, RadioCards, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, SONNER_DEFAULT_DURATION, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TimeFormat, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UserAutocomplete, type UserAutocompleteProps, type UserItem, type WordData, badgeVariants, buttonGroupVariants, buttonVariants, cn, formatAbsoluteTime, formatJalaliDate, formatNumber, formatPersianDateRange, formatRelativeTime, getPersianDay, getPersianMonth, getPersianMonthName, getPersianMonthNameShort, getPersianMonthsForDropdown, getPersianWeekdayName, getPersianYear, getPersianYearsForDropdown, instagramPostVariants, jalaliToGregorian, navigationMenuTriggerStyle, toEnglishDigits, toPersianDigits, toggleVariants, useFormField, useIsMobile, useSidebar };
|
|
1419
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, type AspectRatioType, Autocomplete, type AutocompleteItem, type AutocompleteProps, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, type ButtonVariantProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommentCard, type CommentCardProps, type CommentTag, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DatePicker, type DatePickerProps, DateRangePicker, DateRangePickerInline, type DateRangePickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyDescription, EmptyIcon, EmptyTitle, EngagementRate, EngagementRateBar, type EngagementRateBarProps, type EngagementRateProps, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HashtagInput, type HashtagInputProps, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, type IconName, Icons, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, InputVariants, InstagramPost, type InstagramPostProps, type InstagramProfileInfo, Kbd, KbdGroup, Label, type LoadingVariantProps, type MediaItem, type MediaType, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MetricCard, MetricCardContent, MetricCardDifferential, MetricCardHeader, MetricCardLabel, MetricCardSparkline, MetricCardValue, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type NumberFormat, PERSIAN_MONTHS, PERSIAN_MONTHS_SHORT, PERSIAN_WEEKDAYS, PERSIAN_WEEKDAYS_SHORT, Pagination, PaginationContent, PaginationControlled, type PaginationControlledProps, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PartoBarChart, type PartoBarChartProps, PartoHeatMap, type PartoHeatMapProps, PartoLineChart, type PartoLineChartProps, PartoPieChart, type PartoPieChartProps, PartoWordCloud, type PartoWordCloudProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PostStats, ProfileCard, type ProfileCardProps, ProfileInfo, type ProfileInfoProps, Progress, type ProgressProps, RadioCardDescription, RadioCardItem, RadioCardTitle, RadioCards, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, SONNER_DEFAULT_DURATION, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagInput, type TagInputProps, Textarea, type TimeFormat, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UserAutocomplete, type UserAutocompleteProps, type UserItem, type WordData, badgeVariants, buttonGroupVariants, buttonVariants, cn, formatAbsoluteTime, formatJalaliDate, formatNumber, formatPersianDateRange, formatRelativeTime, getPersianDay, getPersianMonth, getPersianMonthName, getPersianMonthNameShort, getPersianMonthsForDropdown, getPersianWeekdayName, getPersianYear, getPersianYearsForDropdown, hashtagInputVariants, instagramPostVariants, jalaliToGregorian, navigationMenuTriggerStyle, tagInputVariants, toEnglishDigits, toPersianDigits, toggleVariants, useFormField, useIsMobile, useSidebar };
|