@ht-rnd/json-schema-editor 1.0.7 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +318 -240
- package/dist/lib/main.es.js +9083 -18895
- package/dist/lib/main.umd.js +38 -70
- package/dist/types/index.d.ts +137 -25
- package/dist/types/lib/index.d.ts +1 -1
- package/package.json +33 -28
- package/dist/json-schema-editor.css +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ErrorObject } from 'ajv/dist/2020';
|
|
2
|
+
import { useForm } from 'react-hook-form';
|
|
2
3
|
import { z } from 'zod';
|
|
3
4
|
|
|
4
5
|
declare const baseSchema: z.ZodObject<{
|
|
@@ -9,6 +10,7 @@ declare const baseSchema: z.ZodObject<{
|
|
|
9
10
|
object: "object";
|
|
10
11
|
integer: "integer";
|
|
11
12
|
array: "array";
|
|
13
|
+
ref: "ref";
|
|
12
14
|
}>>;
|
|
13
15
|
title: z.ZodOptional<z.ZodString>;
|
|
14
16
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -34,43 +36,153 @@ declare const baseSchema: z.ZodObject<{
|
|
|
34
36
|
enum: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
35
37
|
$id: z.ZodOptional<z.ZodString>;
|
|
36
38
|
$schema: z.ZodOptional<z.ZodString>;
|
|
39
|
+
$ref: z.ZodOptional<z.ZodString>;
|
|
37
40
|
}, z.core.$strip>;
|
|
38
41
|
|
|
39
|
-
declare
|
|
42
|
+
export declare const createDefaultArraySchema: () => {
|
|
43
|
+
type: "array";
|
|
44
|
+
$schema: string;
|
|
45
|
+
items: {
|
|
46
|
+
type: "string";
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export declare const createDefaultField: (id: string) => {
|
|
51
|
+
id: string;
|
|
52
|
+
key: string;
|
|
53
|
+
isRequired: boolean;
|
|
54
|
+
schema: {
|
|
55
|
+
type: "string";
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
export declare const createDefaultObjectSchema: () => {
|
|
60
|
+
type: "object";
|
|
61
|
+
$schema: string;
|
|
62
|
+
additionalProperties: boolean;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
export declare const DEFAULT_SCHEMA_URI = "http://json-schema.org/draft/2020-12/schema";
|
|
66
|
+
|
|
67
|
+
export declare interface DefinitionItem {
|
|
68
|
+
id: string;
|
|
69
|
+
key: string;
|
|
70
|
+
schema: JSONSchema;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export declare interface FieldItem {
|
|
74
|
+
id: string;
|
|
75
|
+
key: string;
|
|
76
|
+
isRequired: boolean;
|
|
77
|
+
schema: JSONSchema;
|
|
78
|
+
fieldId: string;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export declare type FormSchema = z.infer<typeof formSchema>;
|
|
82
|
+
|
|
83
|
+
export declare const formSchema: z.ZodObject<{
|
|
84
|
+
root: z.ZodType<JSONSchema, unknown, z.core.$ZodTypeInternals<JSONSchema, unknown>>;
|
|
85
|
+
properties: z.ZodArray<z.ZodObject<{
|
|
86
|
+
id: z.ZodString;
|
|
87
|
+
key: z.ZodString;
|
|
88
|
+
isRequired: z.ZodBoolean;
|
|
89
|
+
schema: z.ZodType<JSONSchema, unknown, z.core.$ZodTypeInternals<JSONSchema, unknown>>;
|
|
90
|
+
}, z.core.$strip>>;
|
|
91
|
+
definitions: z.ZodArray<z.ZodObject<{
|
|
92
|
+
id: z.ZodString;
|
|
93
|
+
key: z.ZodString;
|
|
94
|
+
schema: z.ZodType<JSONSchema, unknown, z.core.$ZodTypeInternals<JSONSchema, unknown>>;
|
|
95
|
+
}, z.core.$strip>>;
|
|
96
|
+
}, z.core.$strip>;
|
|
97
|
+
|
|
98
|
+
export declare const formToSchema: (formData: FormSchema) => JSONSchema;
|
|
99
|
+
|
|
100
|
+
export declare const INTEGER_FORMATS: readonly ["int-32", "int-64"];
|
|
101
|
+
|
|
102
|
+
export declare type JSONSchema = z.infer<typeof baseSchema> & {
|
|
40
103
|
properties?: {
|
|
41
104
|
[key: string]: JSONSchema;
|
|
42
105
|
};
|
|
43
106
|
items?: JSONSchema | JSONSchema[];
|
|
44
107
|
required?: string[];
|
|
45
108
|
additionalProperties?: boolean | JSONSchema;
|
|
109
|
+
allOf?: JSONSchema[];
|
|
110
|
+
anyOf?: JSONSchema[];
|
|
111
|
+
oneOf?: JSONSchema[];
|
|
112
|
+
not?: JSONSchema;
|
|
113
|
+
$defs?: {
|
|
114
|
+
[key: string]: JSONSchema;
|
|
115
|
+
};
|
|
46
116
|
};
|
|
47
117
|
|
|
48
|
-
export declare
|
|
49
|
-
|
|
50
|
-
declare interface JsonSchemaEditorProps {
|
|
51
|
-
rootType: "object" | "array";
|
|
52
|
-
readOnly: boolean;
|
|
53
|
-
theme: "dark" | "light";
|
|
54
|
-
styles?: Styles;
|
|
55
|
-
onChange?: (schema: JSONSchema) => void;
|
|
118
|
+
export declare interface JsonSchemaEditorOptions {
|
|
119
|
+
rootType?: "object" | "array";
|
|
56
120
|
defaultValue?: JSONSchema;
|
|
121
|
+
onChange?: (schema: JSONSchema) => void;
|
|
57
122
|
}
|
|
58
123
|
|
|
59
|
-
declare
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
124
|
+
export declare const jsonSchemaZod: z.ZodType<JSONSchema>;
|
|
125
|
+
|
|
126
|
+
export declare const NUMBER_FORMATS: readonly ["float", "double", "big-decimal"];
|
|
127
|
+
|
|
128
|
+
export declare const SCHEMA_TYPES: readonly ["string", "integer", "number", "boolean", "object", "array"];
|
|
129
|
+
|
|
130
|
+
export declare const SCHEMA_TYPES_WITH_REF: readonly ["string", "integer", "number", "boolean", "object", "array", "ref"];
|
|
131
|
+
|
|
132
|
+
export declare const schemaToForm: (schema: JSONSchema) => FormSchema;
|
|
133
|
+
|
|
134
|
+
export declare type SchemaType = "string" | "number" | "integer" | "boolean" | "object" | "array" | "ref";
|
|
135
|
+
|
|
136
|
+
export declare type SchemaTypeValue = (typeof SCHEMA_TYPES)[number];
|
|
137
|
+
|
|
138
|
+
export declare type SchemaTypeWithRefValue = (typeof SCHEMA_TYPES_WITH_REF)[number];
|
|
139
|
+
|
|
140
|
+
export declare interface SettingsState {
|
|
141
|
+
isOpen: boolean;
|
|
142
|
+
fieldPath: string | null;
|
|
74
143
|
}
|
|
75
144
|
|
|
145
|
+
export declare const STRING_FORMATS: readonly ["date", "date-time", "local-date-time", "time", "duration", "email", "hostname", "ipv4", "ipv6", "password", "html", "json", "json-path", "uri", "uri-refrence", "uri-template", "relative-json-pointer", "json-pointer", "regex", "uuid"];
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Headless hook for building JSON Schema editors.
|
|
149
|
+
*
|
|
150
|
+
* Provides all the state management, validation, and actions needed
|
|
151
|
+
* to build a JSON Schema editor UI.
|
|
152
|
+
*
|
|
153
|
+
* @example
|
|
154
|
+
* ```tsx
|
|
155
|
+
* const editor = useJsonSchemaEditor({
|
|
156
|
+
* rootType: 'object',
|
|
157
|
+
* onChange: (schema) => console.log(schema)
|
|
158
|
+
* });
|
|
159
|
+
*
|
|
160
|
+
* // Use editor.form with FormProvider for react-hook-form integration
|
|
161
|
+
* // Use editor.fields to render field list
|
|
162
|
+
* // Use editor.schema to get the current JSON Schema
|
|
163
|
+
* ```
|
|
164
|
+
*/
|
|
165
|
+
export declare function useJsonSchemaEditor(options?: JsonSchemaEditorOptions): UseJsonSchemaEditorReturn;
|
|
166
|
+
|
|
167
|
+
export declare interface UseJsonSchemaEditorReturn {
|
|
168
|
+
schema: JSONSchema;
|
|
169
|
+
errors: ErrorObject[] | null;
|
|
170
|
+
fields: FieldItem[];
|
|
171
|
+
definitions: DefinitionItem[];
|
|
172
|
+
form: ReturnType<typeof useForm<FormSchema>>;
|
|
173
|
+
settingsState: SettingsState;
|
|
174
|
+
addField: () => void;
|
|
175
|
+
removeField: (index: number) => void;
|
|
176
|
+
addDefinition: () => void;
|
|
177
|
+
removeDefinition: (index: number) => void;
|
|
178
|
+
updateReferences: (oldKey: string, newKey: string | null) => void;
|
|
179
|
+
openSettings: (path: string) => void;
|
|
180
|
+
closeSettings: () => void;
|
|
181
|
+
handleTypeChange: (fieldPath: string, newType: string) => void;
|
|
182
|
+
addNestedField: (parentPath: string) => void;
|
|
183
|
+
reset: () => void;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export declare function validateSchema(schema: JSONSchema): ErrorObject[] | null;
|
|
187
|
+
|
|
76
188
|
export { }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { createDefaultArraySchema, createDefaultField, createDefaultObjectSchema, DEFAULT_SCHEMA_URI, type DefinitionItem, type FieldItem, type FormSchema, formSchema, formToSchema, INTEGER_FORMATS, type JSONSchema, type JsonSchemaEditorOptions, jsonSchemaZod, NUMBER_FORMATS, SCHEMA_TYPES, SCHEMA_TYPES_WITH_REF, type SchemaType, type SchemaTypeValue, type SchemaTypeWithRefValue, type SettingsState, STRING_FORMATS, schemaToForm, type UseJsonSchemaEditorReturn, useJsonSchemaEditor, validateSchema, } from './core';
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ht-rnd/json-schema-editor",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
|
+
"description": "Headless JSON Schema Editor - provides hooks and utilities for building JSON Schema editors",
|
|
5
6
|
"keywords": [
|
|
6
7
|
"json-schema",
|
|
7
|
-
"json-schema-editor"
|
|
8
|
+
"json-schema-editor",
|
|
9
|
+
"headless",
|
|
10
|
+
"react",
|
|
11
|
+
"hook"
|
|
8
12
|
],
|
|
9
13
|
"type": "module",
|
|
10
14
|
"main": "./dist/lib/main.umd.js",
|
|
@@ -13,6 +17,7 @@
|
|
|
13
17
|
"files": [
|
|
14
18
|
"dist"
|
|
15
19
|
],
|
|
20
|
+
"sideEffects": false,
|
|
16
21
|
"exports": {
|
|
17
22
|
".": {
|
|
18
23
|
"types": "./dist/types/lib/index.d.ts",
|
|
@@ -26,33 +31,23 @@
|
|
|
26
31
|
},
|
|
27
32
|
"scripts": {
|
|
28
33
|
"dev": "vite",
|
|
29
|
-
"build": "tsc && vite build",
|
|
30
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
34
|
+
"build": "tsc -b && vite build",
|
|
31
35
|
"preview": "vite preview",
|
|
32
|
-
"test": "vitest
|
|
36
|
+
"test": "vitest run --coverage",
|
|
37
|
+
"test:watch": "vitest",
|
|
38
|
+
"lint": "biome lint .",
|
|
39
|
+
"format": "biome format --write .",
|
|
40
|
+
"check": "biome check --write .",
|
|
41
|
+
"typecheck": "tsc --noEmit",
|
|
42
|
+
"demo": "npm --prefix demo install && npm --prefix demo run dev",
|
|
43
|
+
"demo:build": "npm --prefix demo install && npm --prefix demo run build"
|
|
33
44
|
},
|
|
34
45
|
"dependencies": {
|
|
35
46
|
"@hookform/resolvers": "^5.2.2",
|
|
36
|
-
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
37
|
-
"@radix-ui/react-checkbox": "^1.3.3",
|
|
38
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
39
|
-
"@radix-ui/react-label": "^2.1.8",
|
|
40
|
-
"@radix-ui/react-popover": "^1.1.15",
|
|
41
|
-
"@radix-ui/react-radio-group": "^1.3.8",
|
|
42
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
43
|
-
"@radix-ui/react-separator": "^1.1.8",
|
|
44
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
45
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
46
47
|
"ajv": "^8.17.1",
|
|
47
48
|
"ajv-formats": "^3.0.1",
|
|
48
|
-
"class-variance-authority": "^0.7.1",
|
|
49
|
-
"clsx": "^2.1.1",
|
|
50
|
-
"lucide-react": "^0.554.0",
|
|
51
49
|
"nanoid": "^5.1.6",
|
|
52
50
|
"react-hook-form": "^7.66.1",
|
|
53
|
-
"react-router-dom": "^7.9.6",
|
|
54
|
-
"tailwind-merge": "^3.4.0",
|
|
55
|
-
"vite-plugin-dts": "^4.5.4",
|
|
56
51
|
"zod": "^4.1.12"
|
|
57
52
|
},
|
|
58
53
|
"peerDependencies": {
|
|
@@ -60,7 +55,16 @@
|
|
|
60
55
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
61
56
|
},
|
|
62
57
|
"devDependencies": {
|
|
63
|
-
"@
|
|
58
|
+
"@biomejs/biome": "^2.3.8",
|
|
59
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
60
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
61
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
62
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
63
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
64
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
65
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
66
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
67
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
64
68
|
"@testing-library/dom": "^10.4.1",
|
|
65
69
|
"@testing-library/jest-dom": "^6.9.1",
|
|
66
70
|
"@testing-library/react": "^16.3.0",
|
|
@@ -70,19 +74,20 @@
|
|
|
70
74
|
"@vitejs/plugin-react": "^5.1.1",
|
|
71
75
|
"@vitest/coverage-istanbul": "^4.0.10",
|
|
72
76
|
"autoprefixer": "^10.4.22",
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"eslint-plugin-react-refresh": "^0.4.24",
|
|
76
|
-
"globals": "^16.5.0",
|
|
77
|
+
"class-variance-authority": "^0.7.1",
|
|
78
|
+
"clsx": "^2.1.1",
|
|
77
79
|
"jsdom": "^27.2.0",
|
|
80
|
+
"lucide-react": "^0.554.0",
|
|
78
81
|
"postcss": "^8.4.0",
|
|
79
82
|
"react": "19.2.0",
|
|
80
83
|
"react-dom": "19.2.0",
|
|
84
|
+
"react-router-dom": "^7.11.0",
|
|
85
|
+
"tailwind-merge": "^3.4.0",
|
|
81
86
|
"tailwindcss": "^3.4.18",
|
|
82
87
|
"tailwindcss-animate": "^1.0.7",
|
|
83
88
|
"typescript": "^5.9.3",
|
|
84
|
-
"typescript-eslint": "^8.47.0",
|
|
85
89
|
"vite": "^7.2.2",
|
|
90
|
+
"vite-plugin-dts": "^4.5.4",
|
|
86
91
|
"vitest": "^4.0.10"
|
|
87
92
|
}
|
|
88
|
-
}
|
|
93
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}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;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}:root{--background: 0 0% 100%;--foreground: 240 10% 3.9%;--primary: 329 100% 44%;--primary-hover: 329 100% 38%;--primary-pressed: 329 100% 31%;--primary-foreground: 0 0% 100%;--secondary: 240 4.8% 95.9%;--secondary-foreground: 240 5.9% 10%;--muted: 240 3.8% 80%;--muted-foreground: 240 3.8% 46.1%;--accent: 240 4.8% 95.9%;--accent-foreground: 240 5.9% 10%;--destructive: 0 100% 50%;--destructive-foreground: 0 0% 98%;--border: 240 5.9% 90%;--input: 240 5.9% 90%;--radius: .75rem}.dark{--background: 240 5.9% 10%;--foreground: 0 0% 92%;--primary: 330 96% 35%;--primary-hover: 330 96% 41%;--primary-pressed: 330 96% 48%;--primary-foreground: 240 17.1% 92%;--secondary: 240 3.7% 15.9%;--secondary-foreground: 0 0% 92%;--muted: 240 3.8% 40%;--muted-foreground: 240 5% 64.9%;--accent: 240 3.7% 15.9%;--accent-foreground: 0 0% 92%;--destructive: 0 100% 60%;--destructive-foreground: 0 0% 98%;--border: 240 3.7% 30%;--input: 240 3.7% 30%}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.left-1\/2,.left-\[50\%\]{left:50%}.right-2{right:.5rem}.right-4{right:1rem}.top-1\/2{top:50%}.top-4{top:1rem}.top-\[50\%\]{top:50%}.z-50{z-index:50}.col-start-2{grid-column-start:2}.row-span-2{grid-row:span 2 / span 2}.row-start-1{grid-row-start:1}.-mx-1{margin-left:-.25rem;margin-right:-.25rem}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-4{margin-top:1rem;margin-bottom:1rem}.mb-4{margin-bottom:1rem}.ml-2{margin-left:.5rem}.mr-11{margin-right:2.75rem}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-4{margin-top:1rem}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.aspect-square{aspect-ratio:1 / 1}.size-2{width:.5rem;height:.5rem}.size-2\.5{width:.625rem;height:.625rem}.size-3\.5{width:.875rem;height:.875rem}.size-4{width:1rem;height:1rem}.size-9{width:2.25rem;height:2.25rem}.h-10{height:2.5rem}.h-4{height:1rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[var\(--radix-select-trigger-height\)\]{height:var(--radix-select-trigger-height)}.h-px{height:1px}.max-h-48{max-height:12rem}.max-h-52{max-height:13rem}.max-h-\[300px\]{max-height:300px}.max-h-\[500px\]{max-height:500px}.max-h-\[800px\]{max-height:800px}.max-h-full{max-height:100%}.min-h-16{min-height:4rem}.w-4{width:1rem}.w-40{width:10rem}.w-72{width:18rem}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-0{min-width:0px}.min-w-\[8rem\]{min-width:8rem}.min-w-\[var\(--radix-select-trigger-width\)\]{min-width:var(--radix-select-trigger-width)}.min-w-fit{min-width:-moz-fit-content;min-width:fit-content}.max-w-\[1200px\]{max-width:1200px}.max-w-\[600px\]{max-width:600px}.max-w-\[800px\]{max-width:800px}.max-w-\[calc\(100\%-2rem\)\]{max-width:calc(100% - 2rem)}.flex-1{flex:1 1 0%}.shrink-0{flex-shrink:0}.-translate-x-1\/2{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-x-\[-50\%\]{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-\[-50\%\]{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-\[calc\(-50\%_-_2px\)\]{--tw-translate-y: calc(-50% - 2px) ;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-45{--tw-rotate: 45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-default{cursor:default}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.scroll-my-1{scroll-margin-top:.25rem;scroll-margin-bottom:.25rem}.auto-rows-min{grid-auto-rows:min-content}.grid-rows-\[auto_auto\]{grid-template-rows:auto auto}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(1rem * var(--tw-space-x-reverse));margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.self-start{align-self:flex-start}.justify-self-end{justify-self:end}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.text-balance{text-wrap:balance}.rounded{border-radius:.25rem}.rounded-\[2px\]{border-radius:2px}.rounded-\[4px\]{border-radius:4px}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:var(--radius)}.rounded-md{border-radius:calc(var(--radius) - 2px)}.rounded-sm{border-radius:calc(var(--radius) - 4px)}.rounded-xl{border-radius:calc(var(--radius) + 4px)}.rounded-xs{border-radius:calc(var(--radius) - 5px)}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-l-2{border-left-width:2px}.border-t{border-top-width:1px}.border-input{border-color:hsl(var(--input))}.border-transparent{border-color:transparent}.bg-background{background-color:hsl(var(--background))}.bg-black\/50{background-color:#00000080}.bg-border{background-color:hsl(var(--border))}.bg-card{background-color:hsl(var(--card))}.bg-destructive{--tw-bg-opacity: 1;background-color:hsl(var(--destructive) / var(--tw-bg-opacity, 1))}.bg-foreground{background-color:hsl(var(--foreground))}.bg-popover{background-color:hsl(var(--popover))}.bg-primary{background-color:hsl(var(--primary))}.bg-secondary{background-color:hsl(var(--secondary))}.bg-transparent{background-color:transparent}.fill-foreground{fill:hsl(var(--foreground))}.fill-primary{fill:hsl(var(--primary))}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.pr-8{padding-right:2rem}.pt-2{padding-top:.5rem}.text-center{text-align:center}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xs{font-size:.75rem;line-height:1rem}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.capitalize{text-transform:capitalize}.leading-none{line-height:1}.text-background{color:hsl(var(--background))}.text-blue-500{--tw-text-opacity: 1;color:rgb(59 130 246 / var(--tw-text-opacity, 1))}.text-card-foreground{color:hsl(var(--card-foreground))}.text-current{color:currentColor}.text-destructive{--tw-text-opacity: 1;color:hsl(var(--destructive) / var(--tw-text-opacity, 1))}.text-foreground{color:hsl(var(--foreground))}.text-green-500{--tw-text-opacity: 1;color:rgb(34 197 94 / var(--tw-text-opacity, 1))}.text-muted-foreground{color:hsl(var(--muted-foreground))}.text-popover-foreground{color:hsl(var(--popover-foreground))}.text-primary{color:hsl(var(--primary))}.text-primary-foreground{color:hsl(var(--primary-foreground))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity, 1))}.text-secondary-foreground{color:hsl(var(--secondary-foreground))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.underline-offset-4{text-underline-offset:4px}.caret-transparent{caret-color:transparent}.opacity-50{opacity:.5}.opacity-70{opacity:.7}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.ring-2{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-muted-foreground{--tw-ring-color: hsl(var(--muted-foreground))}.ring-offset-background{--tw-ring-offset-color: hsl(var(--background))}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-\[color\,box-shadow\]{transition-property:color,box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-none{transition-property:none}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-shadow{transition-property:box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-200{transition-duration:.2s}*{scrollbar-color:hsl(var(--muted)) hsl(var(--background))}.selection\:bg-primary *::-moz-selection{background-color:hsl(var(--primary))}.selection\:bg-primary *::selection{background-color:hsl(var(--primary))}.selection\:text-primary-foreground *::-moz-selection{color:hsl(var(--primary-foreground))}.selection\:text-primary-foreground *::selection{color:hsl(var(--primary-foreground))}.selection\:bg-primary::-moz-selection{background-color:hsl(var(--primary))}.selection\:bg-primary::selection{background-color:hsl(var(--primary))}.selection\:text-primary-foreground::-moz-selection{color:hsl(var(--primary-foreground))}.selection\:text-primary-foreground::selection{color:hsl(var(--primary-foreground))}.file\:inline-flex::file-selector-button{display:inline-flex}.file\:h-7::file-selector-button{height:1.75rem}.file\:border-0::file-selector-button{border-width:0px}.file\:bg-transparent::file-selector-button{background-color:transparent}.file\:text-sm::file-selector-button{font-size:.875rem;line-height:1.25rem}.file\:font-medium::file-selector-button{font-weight:500}.file\:text-foreground::file-selector-button{color:hsl(var(--foreground))}.placeholder\:text-muted-foreground::-moz-placeholder{color:hsl(var(--muted-foreground))}.placeholder\:text-muted-foreground::placeholder{color:hsl(var(--muted-foreground))}.focus-within\:ring-ring:focus-within{--tw-ring-color: hsl(var(--ring))}.hover\:bg-accent:hover{background-color:hsl(var(--accent))}.hover\:bg-destructive\/90:hover{background-color:hsl(var(--destructive) / .9)}.hover\:bg-primary\/90:hover{background-color:hsl(var(--primary) / .9)}.hover\:bg-secondary\/80:hover{background-color:hsl(var(--secondary) / .8)}.hover\:stroke-destructive:hover{stroke:hsl(var(--destructive) / 1)}.hover\:text-accent-foreground:hover{color:hsl(var(--accent-foreground))}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}.focus\:bg-accent:focus{background-color:hsl(var(--accent))}.focus\:text-accent-foreground:focus{color:hsl(var(--accent-foreground))}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-ring:focus{--tw-ring-color: hsl(var(--ring))}.focus\:ring-offset-2:focus{--tw-ring-offset-width: 2px}.focus-visible\:border-ring:focus-visible{border-color:hsl(var(--ring))}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:outline-0:focus-visible{outline-width:0px}.focus-visible\:ring-0:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-\[3px\]:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-destructive\/20:focus-visible{--tw-ring-color: hsl(var(--destructive) / .2)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color: hsl(var(--ring))}.focus-visible\:ring-ring\/50:focus-visible{--tw-ring-color: hsl(var(--ring) / .5)}.focus-visible\:ring-offset-0:focus-visible{--tw-ring-offset-width: 0px}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width: 2px}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.peer:disabled~.peer-disabled\:cursor-not-allowed{cursor:not-allowed}.peer:disabled~.peer-disabled\:opacity-50{opacity:.5}.has-\[\>svg\]\:px-2\.5:has(>svg){padding-left:.625rem;padding-right:.625rem}.has-\[\>svg\]\:px-3:has(>svg){padding-left:.75rem;padding-right:.75rem}.has-\[\>svg\]\:px-4:has(>svg){padding-left:1rem;padding-right:1rem}.aria-disabled\:cursor-not-allowed[aria-disabled=true]{cursor:not-allowed}.aria-disabled\:opacity-50[aria-disabled=true]{opacity:.5}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[orientation\=horizontal\]\:h-px[data-orientation=horizontal]{height:1px}.data-\[orientation\=vertical\]\:h-full[data-orientation=vertical]{height:100%}.data-\[size\=default\]\:h-9[data-size=default]{height:2.25rem}.data-\[size\=sm\]\:h-8[data-size=sm]{height:2rem}.data-\[orientation\=horizontal\]\:w-full[data-orientation=horizontal]{width:100%}.data-\[orientation\=vertical\]\:w-px[data-orientation=vertical]{width:1px}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y: .25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--tw-translate-x: -.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[side\=right\]\:translate-x-1[data-side=right]{--tw-translate-x: .25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--tw-translate-y: -.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[state\=checked\]\:border-primary[data-state=checked]{border-color:hsl(var(--primary))}.data-\[state\=checked\]\:bg-primary[data-state=checked]{background-color:hsl(var(--primary))}.data-\[state\=open\]\:bg-accent[data-state=open]{background-color:hsl(var(--accent))}.data-\[error\=true\]\:text-destructive[data-error=true]{--tw-text-opacity: 1;color:hsl(var(--destructive) / var(--tw-text-opacity, 1))}.data-\[placeholder\]\:text-muted-foreground[data-placeholder]{color:hsl(var(--muted-foreground))}.data-\[state\=checked\]\:text-primary-foreground[data-state=checked]{color:hsl(var(--primary-foreground))}.data-\[state\=open\]\:text-muted-foreground[data-state=open]{color:hsl(var(--muted-foreground))}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[active\=\'true\'\]\:ring-2[data-active=true]{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.data-\[active\=\'true\'\]\:ring-muted-foreground[data-active=true]{--tw-ring-color: hsl(var(--muted-foreground))}.\*\:data-\[slot\=select-value\]\:line-clamp-1[data-slot=select-value]>*{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.\*\:data-\[slot\=select-value\]\:flex[data-slot=select-value]>*{display:flex}.\*\:data-\[slot\=select-value\]\:items-center[data-slot=select-value]>*{align-items:center}.\*\:data-\[slot\=select-value\]\:gap-2[data-slot=select-value]>*{gap:.5rem}.group[data-disabled=true] .group-data-\[disabled\=true\]\:pointer-events-none{pointer-events:none}.group[data-disabled=true] .group-data-\[disabled\=true\]\:opacity-50{opacity:.5}.dark\:border-input:is(.dark *){border-color:hsl(var(--input))}.dark\:bg-destructive\/60:is(.dark *){background-color:hsl(var(--destructive) / .6)}.dark\:bg-input\/30:is(.dark *){background-color:hsl(var(--input) / .3)}.dark\:hover\:bg-accent\/50:hover:is(.dark *){background-color:hsl(var(--accent) / .5)}.dark\:hover\:bg-input\/50:hover:is(.dark *){background-color:hsl(var(--input) / .5)}.dark\:focus-visible\:ring-destructive\/40:focus-visible:is(.dark *){--tw-ring-color: hsl(var(--destructive) / .4)}.dark\:data-\[state\=checked\]\:bg-primary[data-state=checked]:is(.dark *){background-color:hsl(var(--primary))}@media(min-width:640px){.sm\:max-w-\[1000px\]{max-width:1000px}.sm\:max-w-\[500px\]{max-width:500px}.sm\:max-w-\[700px\]{max-width:700px}.sm\:max-w-full{max-width:100%}.sm\:max-w-lg{max-width:32rem}.sm\:flex-row{flex-direction:row}.sm\:justify-end{justify-content:flex-end}.sm\:text-left{text-align:left}}@media(min-width:768px){.md\:text-sm{font-size:.875rem;line-height:1.25rem}}.\[\&\>svg\]\:pointer-events-none>svg{pointer-events:none}.\[\&\>svg\]\:size-3>svg{width:.75rem;height:.75rem}.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]){width:1rem;height:1rem}.\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*=text-]){color:hsl(var(--muted-foreground))}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}a.\[a\&\]\:hover\:bg-accent:hover{background-color:hsl(var(--accent))}a.\[a\&\]\:hover\:bg-destructive\/90:hover{background-color:hsl(var(--destructive) / .9)}a.\[a\&\]\:hover\:bg-primary\/90:hover{background-color:hsl(var(--primary) / .9)}a.\[a\&\]\:hover\:bg-secondary\/90:hover{background-color:hsl(var(--secondary) / .9)}a.\[a\&\]\:hover\:text-accent-foreground:hover{color:hsl(var(--accent-foreground))}
|