@typlog/ui 0.11.2 → 0.11.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/components/button.css +1 -1
- package/dist/components/dialog.css +186 -132
- package/dist/components/inset.css +29 -8
- package/dist/components/pagination.css +1 -1
- package/dist/components.css +113 -59
- package/dist/components.d.ts +54 -44
- package/dist/components.js +96 -67
- package/package.json +1 -1
package/dist/components.css
CHANGED
|
@@ -212,10 +212,10 @@
|
|
|
212
212
|
--margin-bottom: 0px;
|
|
213
213
|
--margin-left: 0px;
|
|
214
214
|
overflow: hidden;
|
|
215
|
-
margin-top: var(--margin-top-override);
|
|
216
|
-
margin-right: var(--margin-right-override);
|
|
217
|
-
margin-bottom: var(--margin-bottom-override);
|
|
218
|
-
margin-left: var(--margin-left-override);
|
|
215
|
+
margin-top: var(--margin-top-override, var(--margin-top));
|
|
216
|
+
margin-right: var(--margin-right-override, var(--margin-right));
|
|
217
|
+
margin-bottom: var(--margin-bottom-override, var(--margin-bottom));
|
|
218
|
+
margin-left: var(--margin-left-override, var(--margin-left));
|
|
219
219
|
}
|
|
220
220
|
.ui-Inset > * {
|
|
221
221
|
--margin-top-override: initial;
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
--inset-padding-bottom-calc: calc(var(--inset-padding-bottom, 0px) + var(--inset-border-width, 0px));
|
|
238
238
|
--inset-padding-left-calc: calc(var(--inset-padding-left, 0px) + var(--inset-border-width, 0px));
|
|
239
239
|
}
|
|
240
|
-
.ui-Inset:where(.
|
|
240
|
+
.ui-Inset:where(.r-side-top) {
|
|
241
241
|
--margin-top-override: calc(var(--margin-top) - var(--inset-padding-top-calc));
|
|
242
242
|
--margin-right-override: calc(var(--margin-right) - var(--inset-padding-right-calc));
|
|
243
243
|
--margin-bottom-override: var(--margin-bottom);
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
border-bottom-left-radius: 0px;
|
|
248
248
|
border-bottom-right-radius: 0px;
|
|
249
249
|
}
|
|
250
|
-
.ui-Inset:where(.
|
|
250
|
+
.ui-Inset:where(.r-side-bottom) {
|
|
251
251
|
--margin-top-override: var(--margin-top);
|
|
252
252
|
--margin-right-override: calc(var(--margin-right) - var(--inset-padding-right-calc));
|
|
253
253
|
--margin-bottom-override: calc(var(--margin-bottom) - var(--inset-padding-bottom-calc));
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
border-bottom-left-radius: var(--inset-border-radius-calc);
|
|
258
258
|
border-bottom-right-radius: var(--inset-border-radius-calc);
|
|
259
259
|
}
|
|
260
|
-
.ui-Inset:where(.
|
|
260
|
+
.ui-Inset:where(.r-side-left) {
|
|
261
261
|
--margin-top-override: calc(var(--margin-top) - var(--inset-padding-top-calc));
|
|
262
262
|
--margin-bottom-override: calc(var(--margin-bottom) - var(--inset-padding-bottom-calc));
|
|
263
263
|
--margin-left-override: calc(var(--margin-left) - var(--inset-padding-left-calc));
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
border-bottom-left-radius: var(--inset-border-radius-calc);
|
|
268
268
|
border-bottom-right-radius: 0px;
|
|
269
269
|
}
|
|
270
|
-
.ui-Inset:where(.
|
|
270
|
+
.ui-Inset:where(.r-side-right) {
|
|
271
271
|
--margin-top-override: calc(var(--margin-top) - var(--inset-padding-top-calc));
|
|
272
272
|
--margin-right-override: calc(var(--margin-right) - var(--inset-padding-right-calc));
|
|
273
273
|
--margin-bottom-override: calc(var(--margin-bottom) - var(--inset-padding-bottom-calc));
|
|
@@ -277,6 +277,27 @@
|
|
|
277
277
|
border-bottom-left-radius: 0px;
|
|
278
278
|
border-bottom-right-radius: var(--inset-border-radius-calc);
|
|
279
279
|
}
|
|
280
|
+
.ui-Inset:where(.r-side-x) {
|
|
281
|
+
--margin-top-override: var(--margin-top);
|
|
282
|
+
--margin-right-override: calc(var(--margin-right) - var(--inset-padding-right-calc));
|
|
283
|
+
--margin-bottom-override: var(--margin-bottom);
|
|
284
|
+
--margin-left-override: calc(var(--margin-left) - var(--inset-padding-left-calc));
|
|
285
|
+
border-radius: 0px;
|
|
286
|
+
}
|
|
287
|
+
.ui-Inset:where(.r-side-y) {
|
|
288
|
+
--margin-top-override: calc(var(--margin-top) - var(--inset-padding-top-calc));
|
|
289
|
+
--margin-right-override: var(--margin-right);
|
|
290
|
+
--margin-bottom-override: calc(var(--margin-bottom) - var(--inset-padding-bottom-calc));
|
|
291
|
+
--margin-left-override: var(--margin-left);
|
|
292
|
+
border-radius: 0px;
|
|
293
|
+
}
|
|
294
|
+
.ui-Inset:where(.r-side-all) {
|
|
295
|
+
--margin-top-override: calc(var(--margin-top) - var(--inset-padding-top-calc));
|
|
296
|
+
--margin-right-override: calc(var(--margin-right) - var(--inset-padding-right-calc));
|
|
297
|
+
--margin-bottom-override: calc(var(--margin-bottom) - var(--inset-padding-bottom-calc));
|
|
298
|
+
--margin-left-override: calc(var(--margin-left) - var(--inset-padding-left-calc));
|
|
299
|
+
border-radius: var(--inset-border-radius-calc);
|
|
300
|
+
}
|
|
280
301
|
|
|
281
302
|
.ui-Card {
|
|
282
303
|
display: block;
|
|
@@ -519,7 +540,7 @@
|
|
|
519
540
|
background-color: var(--gray-a3);
|
|
520
541
|
}
|
|
521
542
|
.ui-Button:where(.r-variant-ghost) {
|
|
522
|
-
padding: var(--button-ghost-padding-y) var(--button-
|
|
543
|
+
padding: var(--button-ghost-padding-y) var(--button-padding-x);
|
|
523
544
|
}
|
|
524
545
|
@media (hover: hover) {
|
|
525
546
|
.ui-Button:where(.r-variant-ghost):where(:hover) {
|
|
@@ -788,6 +809,31 @@
|
|
|
788
809
|
background-color: var(--gray-a9);
|
|
789
810
|
}
|
|
790
811
|
|
|
812
|
+
.ui-DialogTitle {
|
|
813
|
+
display: flex;
|
|
814
|
+
justify-content: space-between;
|
|
815
|
+
align-items: center;
|
|
816
|
+
padding: var(--dialog-content-padding);
|
|
817
|
+
background-color: var(--color-panel-solid);
|
|
818
|
+
}
|
|
819
|
+
.ui-DialogTitle:where(.r-variant-ghost) {
|
|
820
|
+
margin-bottom: 0;
|
|
821
|
+
}
|
|
822
|
+
.ui-DialogTitle:where(.r-variant-outline),
|
|
823
|
+
.ui-DialogTitle:where(.r-variant-solid) {
|
|
824
|
+
border-bottom: 1px solid var(--gray-a4);
|
|
825
|
+
margin-bottom: var(--dialog-content-padding);
|
|
826
|
+
}
|
|
827
|
+
.ui-DialogTitle:where(.r-variant-solid),
|
|
828
|
+
.ui-DialogTitle:where(.r-variant-surface) {
|
|
829
|
+
background-color: var(--gray-a2);
|
|
830
|
+
margin-bottom: var(--dialog-content-padding);
|
|
831
|
+
}
|
|
832
|
+
.ui-DialogTitleText {
|
|
833
|
+
flex-grow: 1;
|
|
834
|
+
font-weight: var(--font-weight-medium);
|
|
835
|
+
}
|
|
836
|
+
|
|
791
837
|
.ui-DialogOverlay {
|
|
792
838
|
position: fixed;
|
|
793
839
|
inset: 0;
|
|
@@ -798,61 +844,80 @@
|
|
|
798
844
|
inset: 0;
|
|
799
845
|
background-color: var(--color-overlay);
|
|
800
846
|
}
|
|
801
|
-
.ui-
|
|
847
|
+
.ui-DialogWrapper {
|
|
802
848
|
display: flex;
|
|
803
|
-
overflow:
|
|
849
|
+
overflow: hidden;
|
|
804
850
|
position: absolute;
|
|
805
851
|
inset: 0;
|
|
806
852
|
}
|
|
807
|
-
.ui-
|
|
853
|
+
.ui-DialogContainer {
|
|
854
|
+
display: flex;
|
|
855
|
+
flex-direction: column;
|
|
808
856
|
flex-grow: 1;
|
|
809
|
-
|
|
857
|
+
align-items: center;
|
|
858
|
+
justify-content: flex-end;
|
|
859
|
+
width: 100%;
|
|
860
|
+
box-sizing: border-box;
|
|
810
861
|
padding-top: var(--space-6);
|
|
811
|
-
padding-bottom: max(var(--space-6), 6vh);
|
|
812
|
-
padding-left: var(--space-4);
|
|
813
|
-
padding-right: var(--space-4);
|
|
814
|
-
}
|
|
815
|
-
.ui-DialogScrollPadding[data-align="start"] {
|
|
816
|
-
margin-top: 0;
|
|
817
|
-
}
|
|
818
|
-
.ui-DialogScrollPadding[data-align="center"] {
|
|
819
|
-
margin-top: auto;
|
|
820
862
|
}
|
|
821
863
|
.ui-DialogContent {
|
|
822
|
-
|
|
864
|
+
--inset-padding-top: var(--dialog-content-padding);
|
|
865
|
+
--inset-padding-right: var(--dialog-content-padding);
|
|
866
|
+
--inset-padding-bottom: var(--dialog-content-padding);
|
|
867
|
+
--inset-padding-left: var(--dialog-content-padding);
|
|
868
|
+
|
|
823
869
|
width: 100%;
|
|
824
870
|
max-height: calc(100vh - var(--space-6) * 2);
|
|
825
871
|
position: relative;
|
|
826
872
|
box-sizing: border-box;
|
|
827
873
|
overflow: auto;
|
|
828
874
|
text-align: left;
|
|
829
|
-
|
|
830
|
-
--inset-padding-top: var(--dialog-content-padding);
|
|
831
|
-
--inset-padding-right: var(--dialog-content-padding);
|
|
832
|
-
--inset-padding-bottom: var(--dialog-content-padding);
|
|
833
|
-
--inset-padding-left: var(--dialog-content-padding);
|
|
834
875
|
padding: var(--dialog-content-padding);
|
|
835
876
|
box-sizing: border-box;
|
|
836
|
-
|
|
837
877
|
background-color: var(--color-panel-solid);
|
|
838
|
-
box-shadow: var(--shadow-6);
|
|
839
878
|
outline: none;
|
|
879
|
+
border-top-left-radius: var(--dialog-content-radius);
|
|
880
|
+
border-top-right-radius: var(--dialog-content-radius);
|
|
840
881
|
}
|
|
841
|
-
.ui-DialogContent
|
|
882
|
+
.ui-DialogContent:where(.r-size-1) {
|
|
883
|
+
--dialog-content-radius: var(--radius-4);
|
|
884
|
+
--dialog-content-padding: var(--space-2);
|
|
885
|
+
}
|
|
886
|
+
.ui-DialogContent:where(.r-size-2) {
|
|
887
|
+
--dialog-content-radius: var(--radius-4);
|
|
842
888
|
--dialog-content-padding: var(--space-3);
|
|
843
|
-
border-radius: var(--radius-4);
|
|
844
889
|
}
|
|
845
|
-
.ui-DialogContent
|
|
890
|
+
.ui-DialogContent:where(.r-size-3) {
|
|
891
|
+
--dialog-content-radius: var(--radius-5);
|
|
846
892
|
--dialog-content-padding: var(--space-4);
|
|
847
|
-
border-radius: var(--radius-4);
|
|
848
893
|
}
|
|
849
|
-
.ui-DialogContent
|
|
894
|
+
.ui-DialogContent:where(.r-size-4) {
|
|
895
|
+
--dialog-content-radius: var(--radius-5);
|
|
850
896
|
--dialog-content-padding: var(--space-5);
|
|
851
|
-
border-radius: var(--radius-5);
|
|
852
897
|
}
|
|
853
|
-
.ui-DialogContent[
|
|
854
|
-
|
|
855
|
-
|
|
898
|
+
.ui-DialogContent > h2[id^="reka-dialog-title"] {
|
|
899
|
+
font-size: var(--font-size-5);
|
|
900
|
+
font-weight: var(--font-weight-bold);
|
|
901
|
+
line-height: var(--line-height-4);
|
|
902
|
+
margin-bottom: var(--space-3);
|
|
903
|
+
}
|
|
904
|
+
.ui-DialogContent > p[id^="reka-dialog-description"] {
|
|
905
|
+
font-size: var(--font-size-2);
|
|
906
|
+
line-height: var(--line-height-2);
|
|
907
|
+
letter-spacing: var(--letter-spacing-2);
|
|
908
|
+
}
|
|
909
|
+
@media (min-width: 520px) {
|
|
910
|
+
.ui-DialogContainer {
|
|
911
|
+
justify-content: center;
|
|
912
|
+
padding-bottom: max(var(--space-6), 6vh);
|
|
913
|
+
padding-left: var(--space-4);
|
|
914
|
+
padding-right: var(--space-4);
|
|
915
|
+
}
|
|
916
|
+
.ui-DialogContent {
|
|
917
|
+
box-shadow: var(--shadow-6);
|
|
918
|
+
border-bottom-left-radius: var(--dialog-content-radius);
|
|
919
|
+
border-bottom-right-radius: var(--dialog-content-radius);
|
|
920
|
+
}
|
|
856
921
|
}
|
|
857
922
|
@media (prefers-reduced-motion: no-preference) {
|
|
858
923
|
@keyframes ui-dialog-overlay-no-op {
|
|
@@ -865,22 +930,22 @@ to {
|
|
|
865
930
|
}
|
|
866
931
|
@keyframes ui-dialog-content-show {
|
|
867
932
|
from {
|
|
868
|
-
opacity: 0;
|
|
869
|
-
transform: translateY(
|
|
933
|
+
opacity: 0.1;
|
|
934
|
+
transform: translateY(var(--space-6));
|
|
870
935
|
}
|
|
871
936
|
to {
|
|
872
937
|
opacity: 1;
|
|
873
|
-
transform: translateY(
|
|
938
|
+
transform: translateY(0);
|
|
874
939
|
}
|
|
875
940
|
}
|
|
876
941
|
@keyframes ui-dialog-content-hide {
|
|
877
942
|
from {
|
|
878
943
|
opacity: 1;
|
|
879
|
-
transform: translateY(
|
|
944
|
+
transform: translateY(0);
|
|
880
945
|
}
|
|
881
946
|
to {
|
|
882
|
-
opacity: 0;
|
|
883
|
-
transform: translateY(
|
|
947
|
+
opacity: 0.1;
|
|
948
|
+
transform: translateY(var(--space-6));
|
|
884
949
|
}
|
|
885
950
|
}
|
|
886
951
|
.ui-DialogOverlay[data-state='closed'] {
|
|
@@ -892,23 +957,12 @@ to {
|
|
|
892
957
|
.ui-DialogOverlay[data-state='closed']::before {
|
|
893
958
|
animation: ui-fade-out 160ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
894
959
|
}
|
|
895
|
-
.ui-
|
|
960
|
+
.ui-DialogOverlay[data-state='open'] :where(.ui-DialogContent) {
|
|
896
961
|
animation: ui-dialog-content-show 200ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
897
962
|
}
|
|
898
|
-
.ui-
|
|
899
|
-
animation: ui-dialog-content-hide
|
|
900
|
-
}
|
|
963
|
+
.ui-DialogOverlay[data-state='closed'] :where(.ui-DialogContent) {
|
|
964
|
+
animation: ui-dialog-content-hide 150ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
901
965
|
}
|
|
902
|
-
.ui-DialogContent > h2[id^="reka-dialog-title"] {
|
|
903
|
-
font-size: var(--font-size-5);
|
|
904
|
-
font-weight: var(--font-weight-bold);
|
|
905
|
-
line-height: var(--line-height-4);
|
|
906
|
-
margin-bottom: var(--space-3);
|
|
907
|
-
}
|
|
908
|
-
.ui-DialogContent > p[id^="reka-dialog-description"] {
|
|
909
|
-
font-size: var(--font-size-2);
|
|
910
|
-
line-height: var(--line-height-2);
|
|
911
|
-
letter-spacing: var(--letter-spacing-2);
|
|
912
966
|
}
|
|
913
967
|
|
|
914
968
|
.ui-DialogHead {
|
package/dist/components.d.ts
CHANGED
|
@@ -30,7 +30,6 @@ import { DialogClose } from 'reka-ui';
|
|
|
30
30
|
import { DialogContentProps as DialogContentProps_2 } from 'reka-ui';
|
|
31
31
|
import { DialogDescription } from 'reka-ui';
|
|
32
32
|
import { DialogRoot } from 'reka-ui';
|
|
33
|
-
import { DialogTitle } from 'reka-ui';
|
|
34
33
|
import { DialogTrigger } from 'reka-ui';
|
|
35
34
|
import { DropdownMenuContentProps as DropdownMenuContentProps_2 } from 'reka-ui';
|
|
36
35
|
import { DropdownMenuItemProps as DropdownMenuItemProps_2 } from 'reka-ui';
|
|
@@ -362,6 +361,12 @@ declare type __VLS_WithTemplateSlots_42<T, S> = T & {
|
|
|
362
361
|
};
|
|
363
362
|
};
|
|
364
363
|
|
|
364
|
+
declare type __VLS_WithTemplateSlots_43<T, S> = T & {
|
|
365
|
+
new (): {
|
|
366
|
+
$slots: S;
|
|
367
|
+
};
|
|
368
|
+
};
|
|
369
|
+
|
|
365
370
|
declare type __VLS_WithTemplateSlots_5<T, S> = T & {
|
|
366
371
|
new (): {
|
|
367
372
|
$slots: S;
|
|
@@ -392,19 +397,19 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
392
397
|
};
|
|
393
398
|
};
|
|
394
399
|
|
|
395
|
-
export declare const AccordionContent:
|
|
400
|
+
export declare const AccordionContent: __VLS_WithTemplateSlots_38<DefineComponent<AccordionContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
396
401
|
default?(_: {}): any;
|
|
397
402
|
}>;
|
|
398
403
|
|
|
399
404
|
export { AccordionContentProps }
|
|
400
405
|
|
|
401
|
-
export declare const AccordionItem:
|
|
406
|
+
export declare const AccordionItem: __VLS_WithTemplateSlots_37<DefineComponent<AccordionItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AccordionItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
402
407
|
default?(_: {}): any;
|
|
403
408
|
}>;
|
|
404
409
|
|
|
405
410
|
export { AccordionItemProps }
|
|
406
411
|
|
|
407
|
-
export declare const AccordionRoot:
|
|
412
|
+
export declare const AccordionRoot: __VLS_WithTemplateSlots_36<DefineComponent<AccordionRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
408
413
|
"update:modelValue": (value: string | string[] | undefined) => any;
|
|
409
414
|
}, string, PublicProps, Readonly<AccordionRootProps> & Readonly<{
|
|
410
415
|
"onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
|
|
@@ -418,7 +423,7 @@ export declare interface AccordionRootProps extends AccordionRootProps_2 {
|
|
|
418
423
|
size?: '1' | '2' | '3';
|
|
419
424
|
}
|
|
420
425
|
|
|
421
|
-
export declare const AccordionTrigger:
|
|
426
|
+
export declare const AccordionTrigger: __VLS_WithTemplateSlots_39<DefineComponent<AccordionTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AccordionTriggerProps> & Readonly<{}>, {
|
|
422
427
|
indicator: "plus-minus" | "chevron";
|
|
423
428
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
424
429
|
default?(_: {}): any;
|
|
@@ -626,7 +631,7 @@ declare interface CheckboxGroupItemProps extends CheckboxProps {
|
|
|
626
631
|
value: string;
|
|
627
632
|
}
|
|
628
633
|
|
|
629
|
-
export declare const CheckboxGroupRoot:
|
|
634
|
+
export declare const CheckboxGroupRoot: __VLS_WithTemplateSlots_15<DefineComponent< {
|
|
630
635
|
modelValue?: any[];
|
|
631
636
|
} & CheckboxGroupRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
632
637
|
"update:modelValue": (value: any[]) => any;
|
|
@@ -658,7 +663,7 @@ declare interface ChevronIconProps {
|
|
|
658
663
|
arrowTransform?: 'right-down' | 'right-up' | 'up-down' | 'down-up';
|
|
659
664
|
}
|
|
660
665
|
|
|
661
|
-
export declare const CollapsibleContent:
|
|
666
|
+
export declare const CollapsibleContent: __VLS_WithTemplateSlots_40<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
662
667
|
|
|
663
668
|
export { CollapsibleRoot }
|
|
664
669
|
|
|
@@ -686,7 +691,7 @@ export declare interface ColorFieldProps {
|
|
|
686
691
|
|
|
687
692
|
export declare type ColorType = 'gray' | 'gold' | 'bronze' | 'brown' | 'yellow' | 'amber' | 'orange' | 'tomato' | 'red' | 'ruby' | 'crimson' | 'pink' | 'plum' | 'purple' | 'violet' | 'iris' | 'indigo' | 'blue' | 'cyan' | 'teal' | 'jade' | 'green' | 'grass' | 'lime' | 'mint' | 'sky';
|
|
688
693
|
|
|
689
|
-
export declare const ComboboxContent:
|
|
694
|
+
export declare const ComboboxContent: __VLS_WithTemplateSlots_27<DefineComponent<ComboboxContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
690
695
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
691
696
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
692
697
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -712,7 +717,7 @@ export { ComboboxEmpty }
|
|
|
712
717
|
|
|
713
718
|
export { ComboboxGroup }
|
|
714
719
|
|
|
715
|
-
export declare const ComboboxInput:
|
|
720
|
+
export declare const ComboboxInput: __VLS_WithTemplateSlots_26<DefineComponent<ComboboxInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
716
721
|
"update:modelValue": (args_0: string) => any;
|
|
717
722
|
}, string, PublicProps, Readonly<ComboboxInputProps> & Readonly<{
|
|
718
723
|
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
@@ -730,13 +735,13 @@ declare interface ComboboxInputProps extends ComboboxInputProps_2 {
|
|
|
730
735
|
placeholder?: string;
|
|
731
736
|
}
|
|
732
737
|
|
|
733
|
-
export declare const ComboboxItem:
|
|
738
|
+
export declare const ComboboxItem: __VLS_WithTemplateSlots_28<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
734
739
|
|
|
735
|
-
export declare const ComboboxLabel:
|
|
740
|
+
export declare const ComboboxLabel: __VLS_WithTemplateSlots_29<DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
736
741
|
default?(_: {}): any;
|
|
737
742
|
}>;
|
|
738
743
|
|
|
739
|
-
export declare const ComboboxRoot:
|
|
744
|
+
export declare const ComboboxRoot: __VLS_WithTemplateSlots_25<DefineComponent<ComboboxRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
740
745
|
"update:modelValue": (value: AcceptableValue) => any;
|
|
741
746
|
"update:open": (value: boolean) => any;
|
|
742
747
|
highlight: (payload: {
|
|
@@ -763,7 +768,7 @@ export declare interface ComboboxRootProps extends ComboboxRootProps_2 {
|
|
|
763
768
|
highContrast?: boolean;
|
|
764
769
|
}
|
|
765
770
|
|
|
766
|
-
declare const _default:
|
|
771
|
+
declare const _default: __VLS_WithTemplateSlots_30<DefineComponent<RadioGroupRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
767
772
|
"update:modelValue": (payload: string) => any;
|
|
768
773
|
}, string, PublicProps, Readonly<RadioGroupRootProps> & Readonly<{
|
|
769
774
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
@@ -778,7 +783,7 @@ export { _default as RadioGroupRoot }
|
|
|
778
783
|
|
|
779
784
|
export { DialogClose }
|
|
780
785
|
|
|
781
|
-
export declare const DialogContent:
|
|
786
|
+
export declare const DialogContent: __VLS_WithTemplateSlots_11<DefineComponent<DialogContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
782
787
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
783
788
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
784
789
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -794,7 +799,6 @@ onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
|
794
799
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
795
800
|
}>, {
|
|
796
801
|
size: "1" | "2" | "3" | "4";
|
|
797
|
-
align: string;
|
|
798
802
|
maxWidth: string;
|
|
799
803
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
800
804
|
default?(_: {}): any;
|
|
@@ -802,8 +806,6 @@ maxWidth: string;
|
|
|
802
806
|
|
|
803
807
|
export declare interface DialogContentProps extends DialogContentProps_2 {
|
|
804
808
|
to?: string | HTMLElement;
|
|
805
|
-
align?: string;
|
|
806
|
-
class?: string;
|
|
807
809
|
size?: '1' | '2' | '3' | '4';
|
|
808
810
|
width?: string;
|
|
809
811
|
minWidth?: string;
|
|
@@ -819,11 +821,21 @@ export declare const DialogHead: DefineComponent<__VLS_Props, {}, {}, {}, {}, Co
|
|
|
819
821
|
|
|
820
822
|
export { DialogRoot }
|
|
821
823
|
|
|
822
|
-
export
|
|
824
|
+
export declare const DialogTitle: __VLS_WithTemplateSlots_10<DefineComponent<DialogTitleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
|
|
825
|
+
variant: "ghost" | "surface" | "solid" | "outline";
|
|
826
|
+
as: AsTag | Component;
|
|
827
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
828
|
+
default?(_: {}): any;
|
|
829
|
+
}>;
|
|
830
|
+
|
|
831
|
+
export declare interface DialogTitleProps extends PrimitiveProps {
|
|
832
|
+
variant?: 'ghost' | 'surface' | 'solid' | 'outline';
|
|
833
|
+
close?: boolean;
|
|
834
|
+
}
|
|
823
835
|
|
|
824
836
|
export { DialogTrigger }
|
|
825
837
|
|
|
826
|
-
export declare const DropdownMenuContent:
|
|
838
|
+
export declare const DropdownMenuContent: __VLS_WithTemplateSlots_12<DefineComponent<DropdownMenuContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
827
839
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
828
840
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
829
841
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -855,7 +867,7 @@ export declare interface DropdownMenuContentProps extends DropdownMenuContentPro
|
|
|
855
867
|
highContrast?: boolean;
|
|
856
868
|
}
|
|
857
869
|
|
|
858
|
-
export declare const DropdownMenuItem:
|
|
870
|
+
export declare const DropdownMenuItem: __VLS_WithTemplateSlots_13<DefineComponent<DropdownMenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
859
871
|
select: (event: Event) => any;
|
|
860
872
|
}, string, PublicProps, Readonly<DropdownMenuItemProps> & Readonly<{
|
|
861
873
|
onSelect?: ((event: Event) => any) | undefined;
|
|
@@ -919,22 +931,20 @@ export declare interface IconCircleProps {
|
|
|
919
931
|
}
|
|
920
932
|
|
|
921
933
|
export declare const Inset: __VLS_WithTemplateSlots_2<DefineComponent<InsetProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<InsetProps> & Readonly<{}>, {
|
|
922
|
-
side:
|
|
934
|
+
side: InsetSide;
|
|
923
935
|
clip: "border-box" | "padding-box";
|
|
924
936
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
925
937
|
default?(_: {}): any;
|
|
926
938
|
}>;
|
|
927
939
|
|
|
928
940
|
export declare interface InsetProps {
|
|
929
|
-
side?:
|
|
930
|
-
top?: boolean;
|
|
931
|
-
bottom?: boolean;
|
|
932
|
-
left?: boolean;
|
|
933
|
-
right?: boolean;
|
|
941
|
+
side?: InsetSide;
|
|
934
942
|
clip?: 'border-box' | 'padding-box';
|
|
935
943
|
}
|
|
936
944
|
|
|
937
|
-
|
|
945
|
+
declare type InsetSide = 'all' | 'x' | 'y' | 'top' | 'bottom' | 'left' | 'right';
|
|
946
|
+
|
|
947
|
+
export declare const Pagination: __VLS_WithTemplateSlots_41<DefineComponent< {
|
|
938
948
|
page: number;
|
|
939
949
|
} & PaginationProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
940
950
|
"update:page": (value: number) => any;
|
|
@@ -989,7 +999,7 @@ declare interface PlusMinusIconProps {
|
|
|
989
999
|
|
|
990
1000
|
export { PopoverClose }
|
|
991
1001
|
|
|
992
|
-
export declare const PopoverContent:
|
|
1002
|
+
export declare const PopoverContent: __VLS_WithTemplateSlots_14<DefineComponent<PopoverContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
993
1003
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
994
1004
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
995
1005
|
focusOutside: (event: FocusOutsideEvent) => any;
|
|
@@ -1038,11 +1048,11 @@ variant: "surface" | "soft";
|
|
|
1038
1048
|
size: "1" | "2" | "3";
|
|
1039
1049
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLInputElement>;
|
|
1040
1050
|
|
|
1041
|
-
export declare const RadioCardsItem:
|
|
1051
|
+
export declare const RadioCardsItem: __VLS_WithTemplateSlots_32<DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<RadioGroupItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1042
1052
|
default?(_: {}): any;
|
|
1043
1053
|
}>;
|
|
1044
1054
|
|
|
1045
|
-
export declare const RadioGroupItem:
|
|
1055
|
+
export declare const RadioGroupItem: __VLS_WithTemplateSlots_31<DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<RadioGroupItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>, {
|
|
1046
1056
|
default?(_: {}): any;
|
|
1047
1057
|
}>;
|
|
1048
1058
|
|
|
@@ -1065,7 +1075,7 @@ export declare interface RadioProps {
|
|
|
1065
1075
|
|
|
1066
1076
|
export { RadioTabsItem }
|
|
1067
1077
|
|
|
1068
|
-
export declare const RadioTabsList:
|
|
1078
|
+
export declare const RadioTabsList: __VLS_WithTemplateSlots_33<DefineComponent<RadioTabsListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1069
1079
|
"update:modelValue": (payload: string) => any;
|
|
1070
1080
|
}, string, PublicProps, Readonly<RadioTabsListProps> & Readonly<{
|
|
1071
1081
|
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
@@ -1105,7 +1115,7 @@ export declare interface ScrollAreaProps extends ScrollAreaRootProps {
|
|
|
1105
1115
|
scrollbars?: 'vertical' | 'horizontal' | 'both';
|
|
1106
1116
|
}
|
|
1107
1117
|
|
|
1108
|
-
export declare const SelectContent:
|
|
1118
|
+
export declare const SelectContent: __VLS_WithTemplateSlots_21<DefineComponent<SelectContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectContentProps> & Readonly<{}>, {
|
|
1109
1119
|
variant: "solid" | "soft";
|
|
1110
1120
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1111
1121
|
default?(_: {}): any;
|
|
@@ -1118,19 +1128,19 @@ export declare interface SelectContentProps extends SelectContentProps_2 {
|
|
|
1118
1128
|
|
|
1119
1129
|
export { SelectGroup }
|
|
1120
1130
|
|
|
1121
|
-
export declare const SelectItem:
|
|
1131
|
+
export declare const SelectItem: __VLS_WithTemplateSlots_23<DefineComponent<SelectItemProps<AcceptableValue>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectItemProps<AcceptableValue>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1122
1132
|
default?(_: {}): any;
|
|
1123
1133
|
}>;
|
|
1124
1134
|
|
|
1125
1135
|
export { SelectItemProps }
|
|
1126
1136
|
|
|
1127
|
-
export declare const SelectLabel:
|
|
1137
|
+
export declare const SelectLabel: __VLS_WithTemplateSlots_24<DefineComponent<SelectLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1128
1138
|
default?(_: {}): any;
|
|
1129
1139
|
}>;
|
|
1130
1140
|
|
|
1131
1141
|
export { SelectLabelProps }
|
|
1132
1142
|
|
|
1133
|
-
export declare const SelectRoot:
|
|
1143
|
+
export declare const SelectRoot: __VLS_WithTemplateSlots_20<DefineComponent<SelectRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1134
1144
|
"update:modelValue": (value: AcceptableValue) => any;
|
|
1135
1145
|
"update:open": (value: boolean) => any;
|
|
1136
1146
|
}, string, PublicProps, Readonly<SelectRootProps> & Readonly<{
|
|
@@ -1150,7 +1160,7 @@ export declare interface SelectRootProps extends SelectRootProps_2 {
|
|
|
1150
1160
|
|
|
1151
1161
|
export declare const SelectSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1152
1162
|
|
|
1153
|
-
export declare const SelectTrigger:
|
|
1163
|
+
export declare const SelectTrigger: __VLS_WithTemplateSlots_22<DefineComponent<SelectTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SelectTriggerProps> & Readonly<{}>, {
|
|
1154
1164
|
variant: "surface" | "soft" | "ghost";
|
|
1155
1165
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1156
1166
|
default?(_: {
|
|
@@ -1225,7 +1235,7 @@ export declare interface SwitchProps extends SwitchRootProps {
|
|
|
1225
1235
|
radius?: RadiusType;
|
|
1226
1236
|
}
|
|
1227
1237
|
|
|
1228
|
-
export declare const Table:
|
|
1238
|
+
export declare const Table: __VLS_WithTemplateSlots_42<DefineComponent<TableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TableProps> & Readonly<{}>, {
|
|
1229
1239
|
variant: "surface" | "ghost";
|
|
1230
1240
|
size: "1" | "2" | "3";
|
|
1231
1241
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>, {
|
|
@@ -1240,7 +1250,7 @@ export declare interface TableProps {
|
|
|
1240
1250
|
|
|
1241
1251
|
export { TabsContent }
|
|
1242
1252
|
|
|
1243
|
-
export declare const TabsList:
|
|
1253
|
+
export declare const TabsList: __VLS_WithTemplateSlots_34<DefineComponent<TabsListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TabsListProps> & Readonly<{}>, {
|
|
1244
1254
|
size: "1" | "2";
|
|
1245
1255
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
|
|
1246
1256
|
default?(_: {}): any;
|
|
@@ -1254,7 +1264,7 @@ export declare interface TabsListProps {
|
|
|
1254
1264
|
|
|
1255
1265
|
export { TabsRoot }
|
|
1256
1266
|
|
|
1257
|
-
export declare const TabsTrigger:
|
|
1267
|
+
export declare const TabsTrigger: __VLS_WithTemplateSlots_35<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
1258
1268
|
|
|
1259
1269
|
export declare const TextArea: DefineComponent< {
|
|
1260
1270
|
modelValue?: string;
|
|
@@ -1278,7 +1288,7 @@ export declare interface TextAreaProps {
|
|
|
1278
1288
|
radius?: RadiusType;
|
|
1279
1289
|
}
|
|
1280
1290
|
|
|
1281
|
-
export declare const TextField:
|
|
1291
|
+
export declare const TextField: __VLS_WithTemplateSlots_19<DefineComponent< {
|
|
1282
1292
|
modelValue?: any;
|
|
1283
1293
|
} & TextFieldProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1284
1294
|
"update:modelValue": (value: any) => any;
|
|
@@ -1307,7 +1317,7 @@ export declare interface TextFieldProps {
|
|
|
1307
1317
|
type?: 'date' | 'datetime-local' | 'email' | 'hidden' | 'month' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'time' | 'url' | 'week' | 'file';
|
|
1308
1318
|
}
|
|
1309
1319
|
|
|
1310
|
-
export declare const Toggle:
|
|
1320
|
+
export declare const Toggle: __VLS_WithTemplateSlots_16<DefineComponent<ToggleProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1311
1321
|
"update:modelValue": (value: boolean) => any;
|
|
1312
1322
|
}, string, PublicProps, Readonly<ToggleProps> & Readonly<{
|
|
1313
1323
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -1318,9 +1328,9 @@ size: "1" | "2" | "3";
|
|
|
1318
1328
|
default?(_: {}): any;
|
|
1319
1329
|
}>;
|
|
1320
1330
|
|
|
1321
|
-
export declare const ToggleGroupItem:
|
|
1331
|
+
export declare const ToggleGroupItem: __VLS_WithTemplateSlots_18<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
1322
1332
|
|
|
1323
|
-
export declare const ToggleGroupRoot:
|
|
1333
|
+
export declare const ToggleGroupRoot: __VLS_WithTemplateSlots_17<DefineComponent<ToggleGroupRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1324
1334
|
"update:modelValue": (payload: AcceptableValue | AcceptableValue[]) => any;
|
|
1325
1335
|
}, string, PublicProps, Readonly<ToggleGroupRootProps> & Readonly<{
|
|
1326
1336
|
"onUpdate:modelValue"?: ((payload: AcceptableValue | AcceptableValue[]) => any) | undefined;
|
|
@@ -1347,7 +1357,7 @@ export declare interface ToggleProps extends ToggleProps_2 {
|
|
|
1347
1357
|
radius?: RadiusType;
|
|
1348
1358
|
}
|
|
1349
1359
|
|
|
1350
|
-
export declare const Tooltip:
|
|
1360
|
+
export declare const Tooltip: __VLS_WithTemplateSlots_43<DefineComponent<TooltipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProps> & Readonly<{}>, {
|
|
1351
1361
|
side: "top" | "bottom" | "left" | "right";
|
|
1352
1362
|
sideOffset: number;
|
|
1353
1363
|
avoidCollisions: boolean;
|