prez-components 4.1.4 → 4.2.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.
Files changed (30) hide show
  1. package/README.md +0 -48
  2. package/dist/components/DataProvider.vue.d.ts +21 -21
  3. package/dist/components/ui/alert/AlertTitle.vue.d.ts +2 -2
  4. package/dist/components/ui/badge/Badge.vue.d.ts +4 -3
  5. package/dist/components/ui/breadcrumb/BreadcrumbLink.vue.d.ts +2 -2
  6. package/dist/components/ui/button/Button.vue.d.ts +2 -2
  7. package/dist/components/ui/dropdown-menu/DropdownMenu.vue.d.ts +1 -1
  8. package/dist/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +3 -3
  9. package/dist/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +36 -0
  10. package/dist/components/ui/dropdown-menu/DropdownMenuGroup.vue.d.ts +1 -1
  11. package/dist/components/ui/dropdown-menu/DropdownMenuItem.vue.d.ts +5 -2
  12. package/dist/components/ui/dropdown-menu/DropdownMenuLabel.vue.d.ts +1 -1
  13. package/dist/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts +1 -1
  14. package/dist/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +1 -1
  15. package/dist/components/ui/dropdown-menu/DropdownMenuSeparator.vue.d.ts +1 -1
  16. package/dist/components/ui/dropdown-menu/DropdownMenuSub.vue.d.ts +1 -1
  17. package/dist/components/ui/dropdown-menu/DropdownMenuSubContent.vue.d.ts +38 -0
  18. package/dist/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +2 -1
  19. package/dist/components/ui/dropdown-menu/DropdownMenuTrigger.vue.d.ts +1 -1
  20. package/dist/components/ui/dropdown-menu/index.d.ts +1 -1
  21. package/dist/components/ui/table/utils.d.ts +3 -0
  22. package/dist/components/ui/tooltip/Tooltip.vue.d.ts +1 -1
  23. package/dist/components/ui/tooltip/TooltipContent.vue.d.ts +1 -1
  24. package/dist/components/ui/tooltip/TooltipProvider.vue.d.ts +4 -2
  25. package/dist/components/ui/tooltip/TooltipTrigger.vue.d.ts +1 -1
  26. package/dist/prez-components.css +1 -0
  27. package/dist/prez-components.js +92739 -88650
  28. package/dist/prez-components.umd.cjs +1180 -1034
  29. package/package.json +28 -26
  30. package/dist/style.css +0 -1
package/README.md CHANGED
@@ -51,51 +51,3 @@ export default defineNuxtConfig({
51
51
  ...
52
52
  });
53
53
  ```
54
-
55
- ## Developing `prez-components`
56
- ### Install & Run
57
-
58
- Run in the project root:
59
- ```bash
60
- pnpm install
61
- ```
62
-
63
- and to run:
64
- ```bash
65
- pnpm dev
66
- ```
67
-
68
- ### Writing Components for Overriding
69
- To support deep overriding of components in Nuxt layers, components in this library need their prop type declared in `types.ts`, and any child component dependencies in the component library need to be declared in a `components` object in the props:
70
-
71
- ```typescript
72
- // types.ts
73
- export interface MyComponentProps {
74
- // your prop types here
75
- _components?: {
76
- childComponent: Component,
77
- };
78
- };
79
- ```
80
-
81
- Using these child components must be done dynamically with defaults:
82
-
83
- ```vue
84
- // src/components/MyComponent.vue
85
- <script lang="ts" setup>
86
- import { MyComponentProps } from "@/types";
87
- import childComponent from "./ChildComponent.vue";
88
-
89
- const props = withDefaults(defineProps<MyComponentProps>(), {
90
- _components: () => {
91
- return {
92
- childComponent: ChildComponent,
93
- }
94
- }
95
- });
96
- </script>
97
-
98
- <template>
99
- <component :is="props._components.childComponent" />
100
- </template>
101
- ```
@@ -17,21 +17,21 @@ declare function __VLS_template(): {
17
17
  properties: {
18
18
  label?: {
19
19
  language?: string | undefined;
20
- datatype?: any | undefined;
20
+ datatype?: /*elided*/ any | undefined;
21
21
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
22
22
  value: string;
23
23
  termType: "Literal";
24
24
  } | undefined;
25
25
  description?: {
26
26
  language?: string | undefined;
27
- datatype?: any | undefined;
27
+ datatype?: /*elided*/ any | undefined;
28
28
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
29
29
  value: string;
30
30
  termType: "Literal";
31
31
  } | undefined;
32
32
  provenance?: {
33
33
  language?: string | undefined;
34
- datatype?: any | undefined;
34
+ datatype?: /*elided*/ any | undefined;
35
35
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
36
36
  value: string;
37
37
  termType: "Literal";
@@ -42,7 +42,7 @@ declare function __VLS_template(): {
42
42
  parents?: {
43
43
  label?: {
44
44
  language?: string | undefined;
45
- datatype?: any | undefined;
45
+ datatype?: /*elided*/ any | undefined;
46
46
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
47
47
  value: string;
48
48
  termType: "Literal";
@@ -56,7 +56,7 @@ declare function __VLS_template(): {
56
56
  parents?: {
57
57
  label?: {
58
58
  language?: string | undefined;
59
- datatype?: any | undefined;
59
+ datatype?: /*elided*/ any | undefined;
60
60
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
61
61
  value: string;
62
62
  termType: "Literal";
@@ -65,19 +65,19 @@ declare function __VLS_template(): {
65
65
  url: string;
66
66
  }[] | undefined;
67
67
  } | undefined;
68
- rdfTypes?: any[] | undefined;
68
+ rdfTypes?: /*elided*/ any[] | undefined;
69
69
  systemProperties?: import('prez-lib').PrezProperties | undefined;
70
- identifiers?: (any | {
70
+ identifiers?: (/*elided*/ any | {
71
71
  language?: string | undefined;
72
- datatype?: any | undefined;
72
+ datatype?: /*elided*/ any | undefined;
73
73
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
74
74
  value: string;
75
75
  termType: "Literal";
76
76
  } | {
77
77
  properties: import('prez-lib').PrezProperties;
78
78
  list?: {
79
- node: any;
80
- list?: any[] | undefined;
79
+ node: /*elided*/ any;
80
+ list?: /*elided*/ any[] | undefined;
81
81
  }[] | undefined;
82
82
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
83
83
  value: string;
@@ -86,21 +86,21 @@ declare function __VLS_template(): {
86
86
  properties?: import('prez-lib').PrezProperties | undefined;
87
87
  label?: {
88
88
  language?: string | undefined;
89
- datatype?: any | undefined;
89
+ datatype?: /*elided*/ any | undefined;
90
90
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
91
91
  value: string;
92
92
  termType: "Literal";
93
93
  } | undefined;
94
94
  description?: {
95
95
  language?: string | undefined;
96
- datatype?: any | undefined;
96
+ datatype?: /*elided*/ any | undefined;
97
97
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
98
98
  value: string;
99
99
  termType: "Literal";
100
100
  } | undefined;
101
101
  provenance?: {
102
102
  language?: string | undefined;
103
- datatype?: any | undefined;
103
+ datatype?: /*elided*/ any | undefined;
104
104
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
105
105
  value: string;
106
106
  termType: "Literal";
@@ -111,7 +111,7 @@ declare function __VLS_template(): {
111
111
  parents?: {
112
112
  label?: {
113
113
  language?: string | undefined;
114
- datatype?: any | undefined;
114
+ datatype?: /*elided*/ any | undefined;
115
115
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
116
116
  value: string;
117
117
  termType: "Literal";
@@ -125,7 +125,7 @@ declare function __VLS_template(): {
125
125
  parents?: {
126
126
  label?: {
127
127
  language?: string | undefined;
128
- datatype?: any | undefined;
128
+ datatype?: /*elided*/ any | undefined;
129
129
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
130
130
  value: string;
131
131
  termType: "Literal";
@@ -134,24 +134,24 @@ declare function __VLS_template(): {
134
134
  url: string;
135
135
  }[] | undefined;
136
136
  } | undefined;
137
- rdfTypes?: any[] | undefined;
137
+ rdfTypes?: /*elided*/ any[] | undefined;
138
138
  systemProperties?: import('prez-lib').PrezProperties | undefined;
139
- identifiers?: (any | {
139
+ identifiers?: (/*elided*/ any | {
140
140
  language?: string | undefined;
141
- datatype?: any | undefined;
141
+ datatype?: /*elided*/ any | undefined;
142
142
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
143
143
  value: string;
144
144
  termType: "Literal";
145
145
  } | {
146
146
  properties: import('prez-lib').PrezProperties;
147
147
  list?: {
148
- node: any;
149
- list?: any[] | undefined;
148
+ node: /*elided*/ any;
149
+ list?: /*elided*/ any[] | undefined;
150
150
  }[] | undefined;
151
151
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
152
152
  value: string;
153
153
  termType: "BlankNode";
154
- } | any)[] | undefined;
154
+ } | /*elided*/ any)[] | undefined;
155
155
  equals: (other: import('prez-lib').PrezTerm | null | undefined) => boolean;
156
156
  value: string;
157
157
  termType: "NamedNode";
@@ -8,10 +8,10 @@ declare function __VLS_template(): {
8
8
  default?(_: {}): any;
9
9
  };
10
10
  refs: {};
11
- rootEl: HTMLHeadingElement;
11
+ rootEl: HTMLDivElement;
12
12
  };
13
13
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLHeadingElement>;
14
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
15
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
16
  export default _default;
17
17
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,6 +1,7 @@
1
+ import { PrimitiveProps } from 'reka-ui';
1
2
  import { HTMLAttributes } from 'vue';
2
3
  import { BadgeVariants } from '.';
3
- type __VLS_Props = {
4
+ type __VLS_Props = PrimitiveProps & {
4
5
  variant?: BadgeVariants['variant'];
5
6
  class?: HTMLAttributes['class'];
6
7
  };
@@ -10,10 +11,10 @@ declare function __VLS_template(): {
10
11
  default?(_: {}): any;
11
12
  };
12
13
  refs: {};
13
- rootEl: HTMLDivElement;
14
+ rootEl: any;
14
15
  };
15
16
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
17
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
18
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
19
  export default _default;
19
20
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,5 +1,5 @@
1
1
  import { HTMLAttributes } from 'vue';
2
- import { PrimitiveProps } from 'radix-vue';
2
+ import { PrimitiveProps } from 'reka-ui';
3
3
  type __VLS_Props = PrimitiveProps & {
4
4
  class?: HTMLAttributes['class'];
5
5
  };
@@ -13,7 +13,7 @@ declare function __VLS_template(): {
13
13
  };
14
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
15
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
16
- as: import('radix-vue').AsTag | import('vue').Component;
16
+ as: import('reka-ui').AsTag | import('vue').Component;
17
17
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
18
18
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
19
19
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { HTMLAttributes } from 'vue';
2
- import { PrimitiveProps } from 'radix-vue';
2
+ import { PrimitiveProps } from 'reka-ui';
3
3
  import { ButtonVariants } from '.';
4
4
  interface Props extends PrimitiveProps {
5
5
  variant?: ButtonVariants['variant'];
@@ -16,7 +16,7 @@ declare function __VLS_template(): {
16
16
  };
17
17
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
18
18
  declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
19
- as: import('radix-vue').AsTag | import('vue').Component;
19
+ as: import('reka-ui').AsTag | import('vue').Component;
20
20
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
21
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
22
22
  export default _default;
@@ -1,4 +1,4 @@
1
- import { DropdownMenuRootProps } from 'radix-vue';
1
+ import { DropdownMenuRootProps } from 'reka-ui';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -1,5 +1,5 @@
1
- import { DropdownMenuCheckboxItemProps } from 'radix-vue';
2
1
  import { HTMLAttributes } from 'vue';
2
+ import { DropdownMenuCheckboxItemProps } from 'reka-ui';
3
3
  type __VLS_Props = DropdownMenuCheckboxItemProps & {
4
4
  class?: HTMLAttributes['class'];
5
5
  };
@@ -14,10 +14,10 @@ declare function __VLS_template(): {
14
14
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
15
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
16
  select: (event: Event) => any;
17
- "update:checked": (payload: boolean) => any;
17
+ "update:modelValue": (payload: boolean) => any;
18
18
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
19
19
  onSelect?: ((event: Event) => any) | undefined;
20
- "onUpdate:checked"?: ((payload: boolean) => any) | undefined;
20
+ "onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
21
21
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
22
22
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
23
23
  export default _default;
@@ -0,0 +1,36 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { DropdownMenuContentProps } from 'reka-ui';
3
+ type __VLS_Props = DropdownMenuContentProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ escapeKeyDown: (event: KeyboardEvent) => any;
17
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
18
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
19
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
20
+ closeAutoFocus: (event: Event) => any;
21
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
22
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
23
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
24
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
25
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
26
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
27
+ }>, {
28
+ sideOffset: number;
29
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
30
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
31
+ export default _default;
32
+ type __VLS_WithTemplateSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
@@ -1,4 +1,4 @@
1
- import { DropdownMenuGroupProps } from 'radix-vue';
1
+ import { DropdownMenuGroupProps } from 'reka-ui';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -1,8 +1,9 @@
1
- import { DropdownMenuItemProps } from 'radix-vue';
2
1
  import { HTMLAttributes } from 'vue';
2
+ import { DropdownMenuItemProps } from 'reka-ui';
3
3
  type __VLS_Props = DropdownMenuItemProps & {
4
4
  class?: HTMLAttributes['class'];
5
5
  inset?: boolean;
6
+ variant?: 'default' | 'destructive';
6
7
  };
7
8
  declare function __VLS_template(): {
8
9
  attrs: Partial<{}>;
@@ -13,7 +14,9 @@ declare function __VLS_template(): {
13
14
  rootEl: any;
14
15
  };
15
16
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
18
+ variant: "default" | "destructive";
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
20
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
21
  export default _default;
19
22
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,5 +1,5 @@
1
- import { DropdownMenuLabelProps } from 'radix-vue';
2
1
  import { HTMLAttributes } from 'vue';
2
+ import { DropdownMenuLabelProps } from 'reka-ui';
3
3
  type __VLS_Props = DropdownMenuLabelProps & {
4
4
  class?: HTMLAttributes['class'];
5
5
  inset?: boolean;
@@ -1,4 +1,4 @@
1
- import { DropdownMenuRadioGroupProps } from 'radix-vue';
1
+ import { DropdownMenuRadioGroupProps } from 'reka-ui';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -1,5 +1,5 @@
1
- import { DropdownMenuRadioItemProps } from 'radix-vue';
2
1
  import { HTMLAttributes } from 'vue';
2
+ import { DropdownMenuRadioItemProps } from 'reka-ui';
3
3
  type __VLS_Props = DropdownMenuRadioItemProps & {
4
4
  class?: HTMLAttributes['class'];
5
5
  };
@@ -1,5 +1,5 @@
1
- import { DropdownMenuSeparatorProps } from 'radix-vue';
2
1
  import { HTMLAttributes } from 'vue';
2
+ import { DropdownMenuSeparatorProps } from 'reka-ui';
3
3
  type __VLS_Props = DropdownMenuSeparatorProps & {
4
4
  class?: HTMLAttributes['class'];
5
5
  };
@@ -1,4 +1,4 @@
1
- import { DropdownMenuSubProps } from 'radix-vue';
1
+ import { DropdownMenuSubProps } from 'reka-ui';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -0,0 +1,38 @@
1
+ import { HTMLAttributes } from 'vue';
2
+ import { DropdownMenuSubContentProps } from 'reka-ui';
3
+ type __VLS_Props = DropdownMenuSubContentProps & {
4
+ class?: HTMLAttributes['class'];
5
+ };
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {}): any;
10
+ };
11
+ refs: {};
12
+ rootEl: any;
13
+ };
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ entryFocus: (event: Event) => any;
17
+ openAutoFocus: (event: Event) => any;
18
+ escapeKeyDown: (event: KeyboardEvent) => any;
19
+ pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
20
+ focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
21
+ interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
22
+ closeAutoFocus: (event: Event) => any;
23
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
24
+ onEntryFocus?: ((event: Event) => any) | undefined;
25
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
26
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
27
+ onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
28
+ onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
29
+ onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
30
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
31
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
32
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
33
+ export default _default;
34
+ type __VLS_WithTemplateSlots<T, S> = T & {
35
+ new (): {
36
+ $slots: S;
37
+ };
38
+ };
@@ -1,7 +1,8 @@
1
- import { DropdownMenuSubTriggerProps } from 'radix-vue';
2
1
  import { HTMLAttributes } from 'vue';
2
+ import { DropdownMenuSubTriggerProps } from 'reka-ui';
3
3
  type __VLS_Props = DropdownMenuSubTriggerProps & {
4
4
  class?: HTMLAttributes['class'];
5
+ inset?: boolean;
5
6
  };
6
7
  declare function __VLS_template(): {
7
8
  attrs: Partial<{}>;
@@ -1,4 +1,4 @@
1
- import { DropdownMenuTriggerProps } from 'radix-vue';
1
+ import { DropdownMenuTriggerProps } from 'reka-ui';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -12,4 +12,4 @@ export { default as DropdownMenuSub } from './DropdownMenuSub.vue';
12
12
  export { default as DropdownMenuSubContent } from './DropdownMenuSubContent.vue';
13
13
  export { default as DropdownMenuSubTrigger } from './DropdownMenuSubTrigger.vue';
14
14
  export { default as DropdownMenuTrigger } from './DropdownMenuTrigger.vue';
15
- export { DropdownMenuPortal } from 'radix-vue';
15
+ export { DropdownMenuPortal } from 'reka-ui';
@@ -0,0 +1,3 @@
1
+ import { Updater } from '@tanstack/vue-table';
2
+ import { Ref } from 'vue';
3
+ export declare function valueUpdater<T extends Updater<any>>(updaterOrValue: T, ref: Ref): void;
@@ -1,4 +1,4 @@
1
- import { TooltipRootProps } from 'radix-vue';
1
+ import { TooltipRootProps } from 'reka-ui';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -1,5 +1,5 @@
1
- import { TooltipContentProps } from 'radix-vue';
2
1
  import { HTMLAttributes } from 'vue';
2
+ import { TooltipContentProps } from 'reka-ui';
3
3
  type __VLS_Props = TooltipContentProps & {
4
4
  class?: HTMLAttributes['class'];
5
5
  };
@@ -1,4 +1,4 @@
1
- import { TooltipProviderProps } from 'radix-vue';
1
+ import { TooltipProviderProps } from 'reka-ui';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -8,7 +8,9 @@ declare function __VLS_template(): {
8
8
  rootEl: any;
9
9
  };
10
10
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
- declare const __VLS_component: import('vue').DefineComponent<TooltipProviderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
+ declare const __VLS_component: import('vue').DefineComponent<TooltipProviderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {
12
+ delayDuration: number;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
14
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
15
  export default _default;
14
16
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -1,4 +1,4 @@
1
- import { TooltipTriggerProps } from 'radix-vue';
1
+ import { TooltipTriggerProps } from 'reka-ui';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -0,0 +1 @@
1
+ /*! tailwindcss v4.1.13 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-content:"";--tw-leading:initial;--tw-animation-delay:0s;--tw-animation-direction:normal;--tw-animation-duration:initial;--tw-animation-fill-mode:none;--tw-animation-iteration-count:1;--tw-enter-blur:0;--tw-enter-opacity:1;--tw-enter-rotate:0;--tw-enter-scale:1;--tw-enter-translate-x:0;--tw-enter-translate-y:0;--tw-exit-blur:0;--tw-exit-opacity:1;--tw-exit-rotate:0;--tw-exit-scale:1;--tw-exit-translate-x:0;--tw-exit-translate-y:0}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-gray-100:oklch(96.7% .003 264.542);--color-gray-300:oklch(87.2% .01 258.338);--color-white:#fff;--spacing:.25rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--tracking-tight:-.025em;--tracking-widest:.1em;--leading-relaxed:1.625;--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-muted:var(--muted);--color-border:var(--border);--color-input:var(--input)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*{border-color:var(--border);outline-color:var(--ring)}@supports (color:color-mix(in lab,red,red)){*{outline-color:color-mix(in oklab,var(--ring)50%,transparent)}}body{background-color:var(--background);color:var(--foreground)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.top-0{top:calc(var(--spacing)*0)}.left-2{left:calc(var(--spacing)*2)}.z-50{z-index:50}.col-start-2{grid-column-start:2}.-mx-1{margin-inline:calc(var(--spacing)*-1)}.my-1{margin-block:calc(var(--spacing)*1)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-8{margin-top:calc(var(--spacing)*8)}.mr-auto{margin-right:auto}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.ml-0{margin-left:calc(var(--spacing)*0)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-2{margin-left:calc(var(--spacing)*2)}.ml-auto{margin-left:auto}.line-clamp-1{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.line-clamp-3{-webkit-line-clamp:3;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-flex{display:inline-flex}.table{display:table}.table-caption{display:table-caption}.table-cell{display:table-cell}.table-row{display:table-row}.size-2{width:calc(var(--spacing)*2);height:calc(var(--spacing)*2)}.size-2\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-3\.5{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-9{width:calc(var(--spacing)*9);height:calc(var(--spacing)*9)}.h-3{height:calc(var(--spacing)*3)}.h-4{height:calc(var(--spacing)*4)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-px{height:1px}.max-h-\(--reka-dropdown-menu-content-available-height\){max-height:var(--reka-dropdown-menu-content-available-height)}.max-h-60{max-height:calc(var(--spacing)*60)}.min-h-4{min-height:calc(var(--spacing)*4)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-16{width:calc(var(--spacing)*16)}.w-24{width:calc(var(--spacing)*24)}.w-28{width:calc(var(--spacing)*28)}.w-44{width:calc(var(--spacing)*44)}.w-48{width:calc(var(--spacing)*48)}.w-56{width:calc(var(--spacing)*56)}.w-\[1\%\]{width:1%}.w-\[100\%\]{width:100%}.w-\[200px\]{width:200px}.w-\[250px\]{width:250px}.w-\[300px\]{width:300px}.w-\[400px\]{width:400px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-\[14rem\]{max-width:14rem}.min-w-\[8rem\]{min-width:8rem}.min-w-\[50rem\]{min-width:50rem}.shrink-0{flex-shrink:0}.caption-bottom{caption-side:bottom}.origin-\(--reka-dropdown-menu-content-transform-origin\){transform-origin:var(--reka-dropdown-menu-content-transform-origin)}.translate-y-\[calc\(-50\%_-_2px\)\]{--tw-translate-y: calc(-50% - 2px) ;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-in{animation:enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.animate-pulse{animation:var(--animate-pulse)}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-\[0_1fr\]{grid-template-columns:0 1fr}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-items-start{justify-items:start}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-5{gap:calc(var(--spacing)*5)}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*4)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*4)*calc(1 - var(--tw-space-y-reverse)))}.gap-y-0\.5{row-gap:calc(var(--spacing)*.5)}.self-start{align-self:flex-start}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-\[2px\]{border-radius:2px}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.border{border-style:var(--tw-border-style);border-width:1px}.border-x-0{border-inline-style:var(--tw-border-style);border-inline-width:0}.border-y{border-block-style:var(--tw-border-style);border-block-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-\[2px\]{border-bottom-style:var(--tw-border-style);border-bottom-width:2px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-border{border-color:var(--border)}.border-destructive{border-color:var(--destructive)}.border-gray-300{border-color:var(--color-gray-300)}.border-input{border-color:var(--input)}.border-transparent{border-color:#0000}.bg-accent{background-color:var(--accent)}.bg-background{background-color:var(--background)}.bg-blue-500{background-color:var(--color-blue-500)}.bg-border{background-color:var(--border)}.bg-card{background-color:var(--card)}.bg-destructive{background-color:var(--destructive)}.bg-gray-100{background-color:var(--color-gray-100)}.bg-muted,.bg-muted\/50{background-color:var(--muted)}@supports (color:color-mix(in lab,red,red)){.bg-muted\/50{background-color:color-mix(in oklab,var(--muted)50%,transparent)}}.bg-muted\/80{background-color:var(--muted)}@supports (color:color-mix(in lab,red,red)){.bg-muted\/80{background-color:color-mix(in oklab,var(--muted)80%,transparent)}}.bg-popover{background-color:var(--popover)}.bg-primary{background-color:var(--primary)}.bg-secondary{background-color:var(--secondary)}.bg-sidebar-foreground{background-color:var(--sidebar-foreground)}.bg-tertiary{background-color:var(--tertiary)}.fill-current{fill:currentColor}.fill-sidebar-foreground{fill:var(--sidebar-foreground)}.p-1{padding:calc(var(--spacing)*1)}.p-2{padding:calc(var(--spacing)*2)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-6{padding-inline:calc(var(--spacing)*6)}.py-0{padding-block:calc(var(--spacing)*0)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-3{padding-block:calc(var(--spacing)*3)}.py-10{padding-block:calc(var(--spacing)*10)}.pt-1{padding-top:calc(var(--spacing)*1)}.pt-2{padding-top:calc(var(--spacing)*2)}.pr-2{padding-right:calc(var(--spacing)*2)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pl-2{padding-left:calc(var(--spacing)*2)}.pl-4{padding-left:calc(var(--spacing)*4)}.pl-8{padding-left:calc(var(--spacing)*8)}.text-left{text-align:left}.align-middle{vertical-align:middle}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-widest{--tw-tracking:var(--tracking-widest);letter-spacing:var(--tracking-widest)}.text-balance{text-wrap:balance}.break-words{overflow-wrap:break-word}.text-ellipsis{text-overflow:ellipsis}.whitespace-normal{white-space:normal}.whitespace-nowrap{white-space:nowrap}.text-accent-foreground{color:var(--accent-foreground)}.text-card-foreground{color:var(--card-foreground)}.text-destructive{color:var(--destructive)}.text-destructive-foreground{color:var(--destructive-foreground)}.text-foreground{color:var(--foreground)}.text-link{color:var(--link)}.text-muted{color:var(--muted)}.text-muted-foreground{color:var(--muted-foreground)}.text-popover-foreground{color:var(--popover-foreground)}.text-primary{color:var(--primary)}.text-primary-foreground{color:var(--primary-foreground)}.text-secondary-foreground{color:var(--secondary-foreground)}.text-sidebar{color:var(--sidebar)}.text-tertiary-foreground{color:var(--tertiary-foreground)}.text-white{color:var(--color-white)}.italic{font-style:italic}.underline-offset-4{text-underline-offset:4px}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-2{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-ring{--tw-ring-color:var(--ring)}.ring-offset-2{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,)0 0 0 var(--tw-ring-offset-width)var(--tw-ring-offset-color)}.ring-offset-background{--tw-ring-offset-color:var(--background)}.outline-hidden{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.transition-\[color\,box-shadow\]{transition-property:color,box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.fade-in-0{--tw-enter-opacity:0}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.zoom-in-95{--tw-enter-scale:.95}.before\:mr-2:before{content:var(--tw-content);margin-right:calc(var(--spacing)*2)}.before\:content-\[\\\'↳\\\'\]:before{--tw-content:\'↳\';content:var(--tw-content)}.odd\:bg-muted\/50:nth-child(odd){background-color:var(--muted)}@supports (color:color-mix(in lab,red,red)){.odd\:bg-muted\/50:nth-child(odd){background-color:color-mix(in oklab,var(--muted)50%,transparent)}}.even\:bg-muted\/50:nth-child(2n){background-color:var(--muted)}@supports (color:color-mix(in lab,red,red)){.even\:bg-muted\/50:nth-child(2n){background-color:color-mix(in oklab,var(--muted)50%,transparent)}}@media (hover:hover){.hover\:border-solid:hover{--tw-border-style:solid;border-style:solid}.hover\:border-primary:hover{border-color:var(--primary)}.hover\:bg-accent:hover{background-color:var(--accent)}.hover\:bg-blue-600:hover{background-color:var(--color-blue-600)}.hover\:bg-destructive\/90:hover{background-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}}.hover\:bg-muted\/50:hover{background-color:var(--muted)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-muted\/50:hover{background-color:color-mix(in oklab,var(--muted)50%,transparent)}}.hover\:bg-primary\/90:hover{background-color:var(--primary)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}}.hover\:bg-secondary\/80:hover{background-color:var(--secondary)}@supports (color:color-mix(in lab,red,red)){.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab,var(--secondary)80%,transparent)}}.hover\:text-accent-foreground:hover{color:var(--accent-foreground)}.hover\:text-foreground:hover{color:var(--foreground)}.hover\:no-underline:hover{text-decoration-line:none}.hover\:underline:hover{text-decoration-line:underline}}.focus\:bg-accent:focus{background-color:var(--accent)}.focus\:text-accent-foreground:focus{color:var(--accent-foreground)}.focus-visible\:border-ring:focus-visible{border-color:var(--ring)}.focus-visible\:ring-\[3px\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-destructive\/20:focus-visible{--tw-ring-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.focus-visible\:ring-destructive\/20:focus-visible{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}}.focus-visible\:ring-ring\/50:focus-visible{--tw-ring-color:var(--ring)}@supports (color:color-mix(in lab,red,red)){.focus-visible\:ring-ring\/50:focus-visible{--tw-ring-color:color-mix(in oklab,var(--ring)50%,transparent)}}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:opacity-50:disabled{opacity:.5}.has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\]:has(>svg){grid-template-columns:calc(var(--spacing)*4)1fr}.has-\[\>svg\]\:gap-x-3:has(>svg){column-gap:calc(var(--spacing)*3)}.has-\[\>svg\]\:px-2\.5:has(>svg){padding-inline:calc(var(--spacing)*2.5)}.has-\[\>svg\]\:px-3:has(>svg){padding-inline:calc(var(--spacing)*3)}.has-\[\>svg\]\:px-4:has(>svg){padding-inline:calc(var(--spacing)*4)}.aria-invalid\:border-destructive[aria-invalid=true]{border-color:var(--destructive)}.aria-invalid\:ring-destructive\/20[aria-invalid=true]{--tw-ring-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.aria-invalid\:ring-destructive\/20[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)20%,transparent)}}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[inset\]\:pl-8[data-inset]{padding-left:calc(var(--spacing)*8)}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]{--tw-enter-translate-y:calc(var(--spacing)*2*-1)}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]{--tw-enter-translate-x:calc(var(--spacing)*2)}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]{--tw-enter-translate-x:calc(var(--spacing)*2*-1)}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]{--tw-enter-translate-y:calc(var(--spacing)*2)}:is(.\*\:data-\[slot\=alert-description\]\:text-destructive\/90>*)[data-slot=alert-description]{color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){:is(.\*\:data-\[slot\=alert-description\]\:text-destructive\/90>*)[data-slot=alert-description]{color:color-mix(in oklab,var(--destructive)90%,transparent)}}.data-\[state\=closed\]\:animate-out[data-state=closed]{animation:exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=closed\]\:fade-out-0[data-state=closed]{--tw-exit-opacity:0}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{--tw-exit-scale:.95}.data-\[state\=open\]\:animate-in[data-state=open]{animation:enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=open\]\:bg-accent[data-state=open]{background-color:var(--accent)}.data-\[state\=open\]\:text-accent-foreground[data-state=open]{color:var(--accent-foreground)}.data-\[state\=open\]\:fade-in-0[data-state=open]{--tw-enter-opacity:0}.data-\[state\=open\]\:zoom-in-95[data-state=open]{--tw-enter-scale:.95}.data-\[state\=selected\]\:bg-muted[data-state=selected]{background-color:var(--muted)}.data-\[variant\=destructive\]\:text-destructive-foreground[data-variant=destructive]{color:var(--destructive-foreground)}.data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant=destructive]:focus{background-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.data-\[variant\=destructive\]\:focus\:bg-destructive\/10[data-variant=destructive]:focus{background-color:color-mix(in oklab,var(--destructive)10%,transparent)}}.data-\[variant\=destructive\]\:focus\:text-destructive-foreground[data-variant=destructive]:focus{color:var(--destructive-foreground)}@media (min-width:40rem){.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:gap-2\.5{gap:calc(var(--spacing)*2.5)}}@media (min-width:48rem){.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:64rem){.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}.dark\:border-input:is(.dark *){border-color:var(--input)}.dark\:bg-destructive\/60:is(.dark *){background-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.dark\:bg-destructive\/60:is(.dark *){background-color:color-mix(in oklab,var(--destructive)60%,transparent)}}.dark\:bg-input\/30:is(.dark *){background-color:var(--input)}@supports (color:color-mix(in lab,red,red)){.dark\:bg-input\/30:is(.dark *){background-color:color-mix(in oklab,var(--input)30%,transparent)}}@media (hover:hover){.dark\:hover\:bg-accent\/50:is(.dark *):hover{background-color:var(--accent)}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-accent\/50:is(.dark *):hover{background-color:color-mix(in oklab,var(--accent)50%,transparent)}}.dark\:hover\:bg-input\/50:is(.dark *):hover{background-color:var(--input)}@supports (color:color-mix(in lab,red,red)){.dark\:hover\:bg-input\/50:is(.dark *):hover{background-color:color-mix(in oklab,var(--input)50%,transparent)}}}.dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible{--tw-ring-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.dark\:focus-visible\:ring-destructive\/40:is(.dark *):focus-visible{--tw-ring-color:color-mix(in oklab,var(--destructive)40%,transparent)}}.dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid=true]{--tw-ring-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid=true]{--tw-ring-color:color-mix(in oklab,var(--destructive)40%,transparent)}}.dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/40:is(.dark *)[data-variant=destructive]:focus{background-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){.dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/40:is(.dark *)[data-variant=destructive]:focus{background-color:color-mix(in oklab,var(--destructive)40%,transparent)}}.\[\&_p\]\:leading-relaxed p{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*=text-]){color:var(--muted-foreground)}.\[\&_svg\:not\(\[class\*\=\\\'size-\\\'\]\)\]\:size-4 svg:not([class*="'size-'"]){width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\&_tr\]\:border-b tr{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.\[\&_tr\:last-child\]\:border-0 tr:last-child{border-style:var(--tw-border-style);border-width:0}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:calc(var(--spacing)*0)}:is(.data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive-foreground[data-variant=destructive]>*):is(svg){color:var(--destructive-foreground)!important}.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\]>[role=checkbox]{--tw-translate-y:2px;translate:var(--tw-translate-x)var(--tw-translate-y)}.\[\&\>svg\]\:pointer-events-none>svg{pointer-events:none}.\[\&\>svg\]\:size-3>svg{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}.\[\&\>svg\]\:size-3\.5>svg{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.\[\&\>svg\]\:size-4>svg{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.\[\&\>svg\]\:translate-y-0\.5>svg{--tw-translate-y:calc(var(--spacing)*.5);translate:var(--tw-translate-x)var(--tw-translate-y)}.\[\&\>svg\]\:text-current>svg{color:currentColor}.\[\&\>tr\]\:last\:border-b-0>tr:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}@media (hover:hover){a.\[a\&\]\:hover\:bg-accent:hover{background-color:var(--accent)}a.\[a\&\]\:hover\:bg-destructive\/90:hover{background-color:var(--destructive)}@supports (color:color-mix(in lab,red,red)){a.\[a\&\]\:hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--destructive)90%,transparent)}}a.\[a\&\]\:hover\:bg-primary\/90:hover{background-color:var(--primary)}@supports (color:color-mix(in lab,red,red)){a.\[a\&\]\:hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--primary)90%,transparent)}}a.\[a\&\]\:hover\:bg-secondary\/90:hover{background-color:var(--secondary)}@supports (color:color-mix(in lab,red,red)){a.\[a\&\]\:hover\:bg-secondary\/90:hover{background-color:color-mix(in oklab,var(--secondary)90%,transparent)}}a.\[a\&\]\:hover\:text-accent-foreground:hover{color:var(--accent-foreground)}}}@property --tw-animation-delay{syntax:"*";inherits:false;initial-value:0s}@property --tw-animation-direction{syntax:"*";inherits:false;initial-value:normal}@property --tw-animation-duration{syntax:"*";inherits:false}@property --tw-animation-fill-mode{syntax:"*";inherits:false;initial-value:none}@property --tw-animation-iteration-count{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-blur{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-opacity{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-rotate{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-scale{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-blur{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-opacity{syntax:"*";inherits:false;initial-value:1}@property --tw-exit-rotate{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-scale{syntax:"*";inherits:false;initial-value:1}@property --tw-exit-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-translate-y{syntax:"*";inherits:false;initial-value:0}:root{--background:#fff;--foreground:#0c0a09;--card:#fff;--card-foreground:#0c0a09;--popover:#fff;--popover-foreground:#0c0a09;--primary:#f97316;--primary-foreground:#fafaf9;--secondary:#5e656e;--secondary-foreground:#fafaf9;--tertiary:#1f2937;--tertiary-foreground:#fafaf9;--link:#2563eb;--link-foreground:#f8fafc;--muted:#f5f5f4;--muted-foreground:#78716c;--accent:#f5f5f4;--accent-foreground:#1c1917;--destructive:#ef4444;--destructive-foreground:#fafaf9;--border:#e7e5e4;--input:#e7e5e4;--ring:var(--primary);--chart-1:#f54900;--chart-2:#009487;--chart-3:#104f65;--chart-4:#ffba00;--chart-5:#ff9b00;--radius:.625rem;--sidebar:#f8fafc;--sidebar-foreground:#020618;--sidebar-primary:#0e162a;--sidebar-primary-foreground:#f8fafc;--sidebar-accent:#f1f5f9;--sidebar-accent-foreground:#0e162a;--sidebar-border:#e0e7f0;--sidebar-ring:var(--primary)}.dark{--background:#0c0a09;--foreground:#fafaf9;--card:#0c0a09;--card-foreground:#fafaf9;--popover:#0c0a09;--popover-foreground:#fafaf9;--primary:#ea580c;--primary-foreground:#fafaf9;--secondary:#4d535c;--secondary-foreground:#fafaf9;--tertiary:#1f2937;--tertiary-foreground:#fafaf9;--link:#2563eb;--link-foreground:#0f172a;--muted:#292524;--muted-foreground:#91a2ba;--accent:#292524;--accent-foreground:#fafaf9;--destructive:#dc2626;--destructive-foreground:#fafaf9;--border:#292524;--input:#292524;--ring:var(--primary);--chart-1:#1447e6;--chart-2:#00bd7d;--chart-3:#ff9b00;--chart-4:#ad47ff;--chart-5:#ff1f56;--sidebar:#0e162a;--sidebar-foreground:#f8fafc;--sidebar-primary:#1447e6;--sidebar-primary-foreground:#f8fafc;--sidebar-accent:#292524;--sidebar-accent-foreground:#f8fafc;--sidebar-border:#292524;--sidebar-ring:var(--primary)}a:not(header a):not(nav.main-nav a):not(footer a):not(.btn){color:var(--link)}a:not(header a):not(nav.main-nav a):not(.btn):hover{text-decoration:underline}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-content{syntax:"*";inherits:false;initial-value:""}@property --tw-leading{syntax:"*";inherits:false}@keyframes pulse{50%{opacity:.5}}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));filter:blur(var(--tw-enter-blur,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));filter:blur(var(--tw-exit-blur,0))}}.prezui-text[data-v-04ae5e5e]{display:flex;justify-content:space-between}.no-tailwind[data-v-04ae5e5e]{all:revert-layer;font-family:inherit;font-size:inherit}.no-tailwind img{max-width:100%!important;height:auto}.max-h-60[data-v-f8aff684]::-webkit-scrollbar{width:5px}.max-h-60[data-v-f8aff684]::-webkit-scrollbar-track{background:var(--color-muted);border-radius:3px}.max-h-60[data-v-f8aff684]::-webkit-scrollbar-thumb{background:var(--color-border);border-radius:3px}.max-h-60[data-v-f8aff684]::-webkit-scrollbar-thumb:hover{background:var(--color-input)}