@pathscale/ui 1.1.58 → 1.1.60
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.
|
@@ -80,15 +80,15 @@
|
|
|
80
80
|
max-height: min(24rem, 70vh);
|
|
81
81
|
overflow-y: auto;
|
|
82
82
|
overscroll-behavior: contain;
|
|
83
|
-
border-radius:
|
|
84
|
-
border: 1px solid color-mix(in oklab, var(--color-base-content), transparent
|
|
83
|
+
border-radius: 0.75rem;
|
|
84
|
+
border: 1px solid color-mix(in oklab, var(--color-base-content), transparent 94%);
|
|
85
85
|
background-color: var(--color-base-100);
|
|
86
86
|
box-shadow:
|
|
87
|
-
0
|
|
88
|
-
0
|
|
87
|
+
0 4px 16px oklch(0% 0 0 / 0.08),
|
|
88
|
+
0 1px 4px oklch(0% 0 0 / 0.05);
|
|
89
89
|
visibility: hidden;
|
|
90
90
|
opacity: 0;
|
|
91
|
-
transform: translateY(-4px) scale(0.
|
|
91
|
+
transform: translateY(-4px) scale(0.96);
|
|
92
92
|
transform-origin: top;
|
|
93
93
|
pointer-events: none;
|
|
94
94
|
will-change: opacity, transform;
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
flex-direction: column;
|
|
118
118
|
gap: 0.125rem;
|
|
119
119
|
overflow: clip;
|
|
120
|
-
padding: 0.
|
|
120
|
+
padding: 0.25rem;
|
|
121
121
|
outline: none;
|
|
122
122
|
}
|
|
123
123
|
|
|
@@ -134,19 +134,18 @@
|
|
|
134
134
|
width: 100%;
|
|
135
135
|
align-items: center;
|
|
136
136
|
justify-content: flex-start;
|
|
137
|
-
gap: 0.
|
|
137
|
+
gap: 0.625rem;
|
|
138
138
|
border: 0;
|
|
139
|
-
border-radius:
|
|
139
|
+
border-radius: 0.5rem;
|
|
140
140
|
background: transparent;
|
|
141
141
|
color: var(--color-base-content);
|
|
142
|
-
padding: 0.
|
|
142
|
+
padding: 0.5rem 0.75rem;
|
|
143
143
|
text-align: start;
|
|
144
144
|
font-size: 0.875rem;
|
|
145
|
-
line-height: 1.
|
|
145
|
+
line-height: 1.25;
|
|
146
146
|
cursor: pointer;
|
|
147
147
|
outline: none;
|
|
148
148
|
transition:
|
|
149
|
-
transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
|
|
150
149
|
background-color 150ms ease,
|
|
151
150
|
color 120ms ease,
|
|
152
151
|
opacity 120ms ease;
|
|
@@ -164,7 +163,6 @@
|
|
|
164
163
|
}
|
|
165
164
|
|
|
166
165
|
.dropdown__item:active:not(:disabled):not([data-disabled="true"]) {
|
|
167
|
-
transform: scale(0.98);
|
|
168
166
|
background-color: var(--color-base-300);
|
|
169
167
|
}
|
|
170
168
|
|
|
@@ -3,6 +3,7 @@ const createForm = (options)=>{
|
|
|
3
3
|
const tsForm = (0, __WEBPACK_EXTERNAL_MODULE__tanstack_solid_form_5af81884__.createForm)(()=>({
|
|
4
4
|
defaultValues: options.defaultValues,
|
|
5
5
|
validators: options.schema ? {
|
|
6
|
+
onChange: options.schema,
|
|
6
7
|
onBlur: options.schema,
|
|
7
8
|
onSubmit: options.schema
|
|
8
9
|
} : void 0,
|