@lobehub/ui 5.19.3 → 5.20.1
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/es/Markdown/SyntaxMarkdown/CachedMarkdown.mjs +3 -2
- package/es/Markdown/SyntaxMarkdown/CachedMarkdown.mjs.map +1 -1
- package/es/Markdown/plugins/rehypeStreamAnimated.mjs.map +1 -1
- package/es/ThemeProvider/GlobalStyle/global.mjs +3 -2
- package/es/ThemeProvider/GlobalStyle/global.mjs.map +1 -1
- package/es/ThemeProvider/ThemeProvider.mjs +1 -1
- package/es/ThemeProvider/ThemeProvider.mjs.map +1 -1
- package/es/base-ui/AutoComplete/AutoComplete.d.mts +8 -0
- package/es/base-ui/AutoComplete/AutoComplete.mjs +91 -0
- package/es/base-ui/AutoComplete/AutoComplete.mjs.map +1 -0
- package/es/base-ui/AutoComplete/index.d.mts +3 -0
- package/es/base-ui/AutoComplete/style.d.mts +12 -0
- package/es/base-ui/AutoComplete/style.mjs +76 -0
- package/es/base-ui/AutoComplete/style.mjs.map +1 -0
- package/es/base-ui/AutoComplete/type.d.mts +40 -0
- package/es/base-ui/Button/style.mjs +6 -3
- package/es/base-ui/Button/style.mjs.map +1 -1
- package/es/base-ui/Checkbox/Checkbox.d.mts +8 -0
- package/es/base-ui/Checkbox/Checkbox.mjs +61 -0
- package/es/base-ui/Checkbox/Checkbox.mjs.map +1 -0
- package/es/base-ui/Checkbox/CheckboxGroup.d.mts +8 -0
- package/es/base-ui/Checkbox/CheckboxGroup.mjs +37 -0
- package/es/base-ui/Checkbox/CheckboxGroup.mjs.map +1 -0
- package/es/base-ui/Checkbox/index.d.mts +4 -0
- package/es/base-ui/Checkbox/style.d.mts +9 -0
- package/es/base-ui/Checkbox/style.mjs +70 -0
- package/es/base-ui/Checkbox/style.mjs.map +1 -0
- package/es/base-ui/Checkbox/type.d.mts +51 -0
- package/es/base-ui/Form/Form.mjs +155 -0
- package/es/base-ui/Form/Form.mjs.map +1 -0
- package/es/base-ui/Form/components/FormDivider.d.mts +8 -0
- package/es/base-ui/Form/components/FormDivider.mjs +19 -0
- package/es/base-ui/Form/components/FormDivider.mjs.map +1 -0
- package/es/base-ui/Form/components/FormField.d.mts +8 -0
- package/es/base-ui/Form/components/FormField.mjs +59 -0
- package/es/base-ui/Form/components/FormField.mjs.map +1 -0
- package/es/base-ui/Form/components/FormFlatGroup.d.mts +8 -0
- package/es/base-ui/Form/components/FormFlatGroup.mjs +20 -0
- package/es/base-ui/Form/components/FormFlatGroup.mjs.map +1 -0
- package/es/base-ui/Form/components/FormFooter.d.mts +8 -0
- package/es/base-ui/Form/components/FormFooter.mjs +20 -0
- package/es/base-ui/Form/components/FormFooter.mjs.map +1 -0
- package/es/base-ui/Form/components/FormGroup.d.mts +8 -0
- package/es/base-ui/Form/components/FormGroup.mjs +87 -0
- package/es/base-ui/Form/components/FormGroup.mjs.map +1 -0
- package/es/base-ui/Form/components/FormSubmitFooter.d.mts +8 -0
- package/es/base-ui/Form/components/FormSubmitFooter.mjs +118 -0
- package/es/base-ui/Form/components/FormSubmitFooter.mjs.map +1 -0
- package/es/base-ui/Form/components/FormTitle.d.mts +8 -0
- package/es/base-ui/Form/components/FormTitle.mjs +42 -0
- package/es/base-ui/Form/components/FormTitle.mjs.map +1 -0
- package/es/base-ui/Form/context.d.mts +6 -0
- package/es/base-ui/Form/context.mjs +15 -0
- package/es/base-ui/Form/context.mjs.map +1 -0
- package/es/base-ui/Form/index.d.mts +25 -0
- package/es/base-ui/Form/index.mjs +24 -0
- package/es/base-ui/Form/index.mjs.map +1 -0
- package/es/base-ui/Form/style.mjs +288 -0
- package/es/base-ui/Form/style.mjs.map +1 -0
- package/es/base-ui/Form/type.d.mts +139 -0
- package/es/base-ui/Input/Input.d.mts +8 -0
- package/es/base-ui/Input/Input.mjs +43 -0
- package/es/base-ui/Input/Input.mjs.map +1 -0
- package/es/base-ui/Input/InputNumber.d.mts +8 -0
- package/es/base-ui/Input/InputNumber.mjs +50 -0
- package/es/base-ui/Input/InputNumber.mjs.map +1 -0
- package/es/base-ui/Input/InputOTP.d.mts +8 -0
- package/es/base-ui/Input/InputOTP.mjs +31 -0
- package/es/base-ui/Input/InputOTP.mjs.map +1 -0
- package/es/base-ui/Input/InputPassword.d.mts +8 -0
- package/es/base-ui/Input/InputPassword.mjs +31 -0
- package/es/base-ui/Input/InputPassword.mjs.map +1 -0
- package/es/base-ui/Input/TextArea.d.mts +8 -0
- package/es/base-ui/Input/TextArea.mjs +43 -0
- package/es/base-ui/Input/TextArea.mjs.map +1 -0
- package/es/base-ui/Input/index.d.mts +7 -0
- package/es/base-ui/Input/style.d.mts +33 -0
- package/es/base-ui/Input/style.mjs +230 -0
- package/es/base-ui/Input/style.mjs.map +1 -0
- package/es/base-ui/Input/type.d.mts +122 -0
- package/es/base-ui/Select/style.mjs +4 -3
- package/es/base-ui/Select/style.mjs.map +1 -1
- package/es/base-ui/Slider/Slider.d.mts +8 -0
- package/es/base-ui/Slider/Slider.mjs +34 -0
- package/es/base-ui/Slider/Slider.mjs.map +1 -0
- package/es/base-ui/Slider/SliderWithInput.d.mts +8 -0
- package/es/base-ui/Slider/SliderWithInput.mjs +64 -0
- package/es/base-ui/Slider/SliderWithInput.mjs.map +1 -0
- package/es/base-ui/Slider/index.d.mts +4 -0
- package/es/base-ui/Slider/style.d.mts +11 -0
- package/es/base-ui/Slider/style.mjs +69 -0
- package/es/base-ui/Slider/style.mjs.map +1 -0
- package/es/base-ui/Slider/type.d.mts +47 -0
- package/es/base-ui/controlSize.d.mts +10 -0
- package/es/base-ui/controlSize.mjs +10 -0
- package/es/base-ui/controlSize.mjs.map +1 -0
- package/es/base-ui/index.d.mts +33 -4
- package/es/base-ui/index.mjs +28 -4
- package/es/eslint/index.mjs +25 -15
- package/es/eslint/index.mjs.map +1 -1
- package/es/node_modules/@types/hast/index.d.mts +642 -0
- package/package.json +4 -3
|
@@ -25,6 +25,648 @@ interface Data extends Data$1 {}
|
|
|
25
25
|
* Info associated with an element.
|
|
26
26
|
*/
|
|
27
27
|
interface Properties {
|
|
28
|
+
abbr?: string | undefined;
|
|
29
|
+
about?: Array<string> | undefined;
|
|
30
|
+
accentHeight?: number | string | undefined;
|
|
31
|
+
accept?: Array<string> | undefined;
|
|
32
|
+
acceptCharset?: Array<string> | undefined;
|
|
33
|
+
accessKey?: Array<string> | undefined;
|
|
34
|
+
accumulate?: string | undefined;
|
|
35
|
+
action?: string | undefined;
|
|
36
|
+
additive?: string | undefined;
|
|
37
|
+
align?: string | undefined;
|
|
38
|
+
alignmentBaseline?: string | undefined;
|
|
39
|
+
aLink?: string | undefined;
|
|
40
|
+
allow?: string | undefined;
|
|
41
|
+
allowFullScreen?: boolean | string | undefined;
|
|
42
|
+
allowPaymentRequest?: boolean | string | undefined;
|
|
43
|
+
allowTransparency?: string | undefined;
|
|
44
|
+
allowUserMedia?: boolean | string | undefined;
|
|
45
|
+
alpha?: boolean | string | undefined;
|
|
46
|
+
alphabetic?: number | string | undefined;
|
|
47
|
+
alt?: string | undefined;
|
|
48
|
+
amplitude?: number | string | undefined;
|
|
49
|
+
arabicForm?: string | undefined;
|
|
50
|
+
archive?: Array<string> | undefined;
|
|
51
|
+
ariaActiveDescendant?: string | undefined;
|
|
52
|
+
ariaAtomic?: "false" | "true" | (string & {}) | undefined;
|
|
53
|
+
ariaAutoComplete?: string | undefined;
|
|
54
|
+
ariaBusy?: "false" | "true" | (string & {}) | undefined;
|
|
55
|
+
ariaChecked?: "false" | "true" | (string & {}) | undefined;
|
|
56
|
+
ariaColCount?: number | string | undefined;
|
|
57
|
+
ariaColIndex?: number | string | undefined;
|
|
58
|
+
ariaColSpan?: number | string | undefined;
|
|
59
|
+
ariaControls?: Array<string> | undefined;
|
|
60
|
+
ariaCurrent?: string | undefined;
|
|
61
|
+
ariaDescribedBy?: Array<string> | undefined;
|
|
62
|
+
ariaDetails?: string | undefined;
|
|
63
|
+
ariaDisabled?: "false" | "true" | (string & {}) | undefined;
|
|
64
|
+
ariaDropEffect?: Array<string> | undefined;
|
|
65
|
+
ariaErrorMessage?: string | undefined;
|
|
66
|
+
ariaExpanded?: "false" | "true" | (string & {}) | undefined;
|
|
67
|
+
ariaFlowTo?: Array<string> | undefined;
|
|
68
|
+
ariaGrabbed?: "false" | "true" | (string & {}) | undefined;
|
|
69
|
+
ariaHasPopup?: string | undefined;
|
|
70
|
+
ariaHidden?: "false" | "true" | (string & {}) | undefined;
|
|
71
|
+
ariaInvalid?: string | undefined;
|
|
72
|
+
ariaKeyShortcuts?: string | undefined;
|
|
73
|
+
ariaLabel?: string | undefined;
|
|
74
|
+
ariaLabelledBy?: Array<string> | undefined;
|
|
75
|
+
ariaLevel?: number | string | undefined;
|
|
76
|
+
ariaLive?: string | undefined;
|
|
77
|
+
ariaModal?: "false" | "true" | (string & {}) | undefined;
|
|
78
|
+
ariaMultiLine?: "false" | "true" | (string & {}) | undefined;
|
|
79
|
+
ariaMultiSelectable?: "false" | "true" | (string & {}) | undefined;
|
|
80
|
+
ariaOrientation?: string | undefined;
|
|
81
|
+
ariaOwns?: Array<string> | undefined;
|
|
82
|
+
ariaPlaceholder?: string | undefined;
|
|
83
|
+
ariaPosInSet?: number | string | undefined;
|
|
84
|
+
ariaPressed?: "false" | "true" | (string & {}) | undefined;
|
|
85
|
+
ariaReadOnly?: "false" | "true" | (string & {}) | undefined;
|
|
86
|
+
ariaRelevant?: string | undefined;
|
|
87
|
+
ariaRequired?: "false" | "true" | (string & {}) | undefined;
|
|
88
|
+
ariaRoleDescription?: Array<string> | undefined;
|
|
89
|
+
ariaRowCount?: number | string | undefined;
|
|
90
|
+
ariaRowIndex?: number | string | undefined;
|
|
91
|
+
ariaRowSpan?: number | string | undefined;
|
|
92
|
+
ariaSelected?: "false" | "true" | (string & {}) | undefined;
|
|
93
|
+
ariaSetSize?: number | string | undefined;
|
|
94
|
+
ariaSort?: string | undefined;
|
|
95
|
+
ariaValueMax?: number | string | undefined;
|
|
96
|
+
ariaValueMin?: number | string | undefined;
|
|
97
|
+
ariaValueNow?: number | string | undefined;
|
|
98
|
+
ariaValueText?: string | undefined;
|
|
99
|
+
as?: string | undefined;
|
|
100
|
+
ascent?: number | string | undefined;
|
|
101
|
+
async?: boolean | string | undefined;
|
|
102
|
+
attributeName?: string | undefined;
|
|
103
|
+
attributeType?: string | undefined;
|
|
104
|
+
autoCapitalize?: string | undefined;
|
|
105
|
+
autoComplete?: Array<string> | undefined;
|
|
106
|
+
autoCorrect?: string | undefined;
|
|
107
|
+
autoFocus?: boolean | string | undefined;
|
|
108
|
+
autoPlay?: boolean | string | undefined;
|
|
109
|
+
autoSave?: string | undefined;
|
|
110
|
+
axis?: string | undefined;
|
|
111
|
+
azimuth?: number | string | undefined;
|
|
112
|
+
background?: string | undefined;
|
|
113
|
+
bandwidth?: string | undefined;
|
|
114
|
+
baseFrequency?: string | undefined;
|
|
115
|
+
baselineShift?: string | undefined;
|
|
116
|
+
baseProfile?: string | undefined;
|
|
117
|
+
bbox?: string | undefined;
|
|
118
|
+
begin?: string | undefined;
|
|
119
|
+
bgColor?: string | undefined;
|
|
120
|
+
bias?: number | string | undefined;
|
|
121
|
+
blocking?: Array<string> | undefined;
|
|
122
|
+
border?: number | string | undefined;
|
|
123
|
+
borderColor?: string | undefined;
|
|
124
|
+
bottomMargin?: number | string | undefined;
|
|
125
|
+
by?: string | undefined;
|
|
126
|
+
calcMode?: string | undefined;
|
|
127
|
+
capHeight?: number | string | undefined;
|
|
128
|
+
capture?: string | undefined;
|
|
129
|
+
cellPadding?: string | undefined;
|
|
130
|
+
cellSpacing?: string | undefined;
|
|
131
|
+
char?: string | undefined;
|
|
132
|
+
charOff?: string | undefined;
|
|
133
|
+
charSet?: string | undefined;
|
|
134
|
+
checked?: boolean | string | undefined;
|
|
135
|
+
cite?: string | undefined;
|
|
136
|
+
classId?: string | undefined;
|
|
137
|
+
className?: Array<string> | undefined;
|
|
138
|
+
clear?: string | undefined;
|
|
139
|
+
clip?: string | undefined;
|
|
140
|
+
clipPath?: string | undefined;
|
|
141
|
+
clipPathUnits?: string | undefined;
|
|
142
|
+
clipRule?: string | undefined;
|
|
143
|
+
closedBy?: string | undefined;
|
|
144
|
+
code?: string | undefined;
|
|
145
|
+
codeBase?: string | undefined;
|
|
146
|
+
codeType?: string | undefined;
|
|
147
|
+
color?: string | undefined;
|
|
148
|
+
colorInterpolation?: string | undefined;
|
|
149
|
+
colorInterpolationFilters?: string | undefined;
|
|
150
|
+
colorProfile?: string | undefined;
|
|
151
|
+
colorRendering?: string | undefined;
|
|
152
|
+
colorSpace?: string | undefined;
|
|
153
|
+
cols?: number | string | undefined;
|
|
154
|
+
colSpan?: number | string | undefined;
|
|
155
|
+
command?: string | undefined;
|
|
156
|
+
commandFor?: string | undefined;
|
|
157
|
+
compact?: boolean | string | undefined;
|
|
158
|
+
content?: string | undefined;
|
|
159
|
+
contentEditable?: "false" | "true" | (string & {}) | undefined;
|
|
160
|
+
contentScriptType?: string | undefined;
|
|
161
|
+
contentStyleType?: string | undefined;
|
|
162
|
+
controls?: boolean | string | undefined;
|
|
163
|
+
controlsList?: Array<string> | undefined;
|
|
164
|
+
coords?: Array<number | string> | undefined;
|
|
165
|
+
credentialless?: boolean | string | undefined;
|
|
166
|
+
crossOrigin?: string | undefined;
|
|
167
|
+
cursor?: string | undefined;
|
|
168
|
+
cx?: string | undefined;
|
|
169
|
+
cy?: string | undefined;
|
|
170
|
+
d?: string | undefined;
|
|
171
|
+
data?: string | undefined;
|
|
172
|
+
dataType?: string | undefined;
|
|
173
|
+
dateTime?: string | undefined;
|
|
174
|
+
declare?: boolean | string | undefined;
|
|
175
|
+
decoding?: string | undefined;
|
|
176
|
+
default?: boolean | string | undefined;
|
|
177
|
+
defaultAction?: string | undefined;
|
|
178
|
+
defer?: boolean | string | undefined;
|
|
179
|
+
descent?: number | string | undefined;
|
|
180
|
+
diffuseConstant?: number | string | undefined;
|
|
181
|
+
dir?: string | undefined;
|
|
182
|
+
direction?: string | undefined;
|
|
183
|
+
dirName?: string | undefined;
|
|
184
|
+
disabled?: boolean | string | undefined;
|
|
185
|
+
disablePictureInPicture?: boolean | string | undefined;
|
|
186
|
+
disableRemotePlayback?: boolean | string | undefined;
|
|
187
|
+
display?: string | undefined;
|
|
188
|
+
divisor?: number | string | undefined;
|
|
189
|
+
dominantBaseline?: string | undefined;
|
|
190
|
+
download?: boolean | string | undefined;
|
|
191
|
+
draggable?: "false" | "true" | (string & {}) | undefined;
|
|
192
|
+
dur?: string | undefined;
|
|
193
|
+
dx?: string | undefined;
|
|
194
|
+
dy?: string | undefined;
|
|
195
|
+
edgeMode?: string | undefined;
|
|
196
|
+
editable?: string | undefined;
|
|
197
|
+
elevation?: number | string | undefined;
|
|
198
|
+
enableBackground?: string | undefined;
|
|
199
|
+
encType?: string | undefined;
|
|
200
|
+
end?: string | undefined;
|
|
201
|
+
enterKeyHint?: string | undefined;
|
|
202
|
+
event?: string | undefined;
|
|
203
|
+
exponent?: number | string | undefined;
|
|
204
|
+
exportParts?: Array<string> | undefined;
|
|
205
|
+
externalResourcesRequired?: string | undefined;
|
|
206
|
+
face?: string | undefined;
|
|
207
|
+
fetchPriority?: string | undefined;
|
|
208
|
+
fill?: string | undefined;
|
|
209
|
+
fillOpacity?: number | string | undefined;
|
|
210
|
+
fillRule?: string | undefined;
|
|
211
|
+
filter?: string | undefined;
|
|
212
|
+
filterRes?: string | undefined;
|
|
213
|
+
filterUnits?: string | undefined;
|
|
214
|
+
floodColor?: string | undefined;
|
|
215
|
+
floodOpacity?: string | undefined;
|
|
216
|
+
focusable?: string | undefined;
|
|
217
|
+
focusHighlight?: string | undefined;
|
|
218
|
+
fontFamily?: string | undefined;
|
|
219
|
+
fontSize?: string | undefined;
|
|
220
|
+
fontSizeAdjust?: string | undefined;
|
|
221
|
+
fontStretch?: string | undefined;
|
|
222
|
+
fontStyle?: string | undefined;
|
|
223
|
+
fontVariant?: string | undefined;
|
|
224
|
+
fontWeight?: string | undefined;
|
|
225
|
+
form?: string | undefined;
|
|
226
|
+
formAction?: string | undefined;
|
|
227
|
+
format?: string | undefined;
|
|
228
|
+
formEncType?: string | undefined;
|
|
229
|
+
formMethod?: string | undefined;
|
|
230
|
+
formNoValidate?: boolean | string | undefined;
|
|
231
|
+
formTarget?: string | undefined;
|
|
232
|
+
fr?: string | undefined;
|
|
233
|
+
frame?: string | undefined;
|
|
234
|
+
frameBorder?: string | undefined;
|
|
235
|
+
from?: string | undefined;
|
|
236
|
+
fx?: string | undefined;
|
|
237
|
+
fy?: string | undefined;
|
|
238
|
+
g1?: Array<string> | undefined;
|
|
239
|
+
g2?: Array<string> | undefined;
|
|
240
|
+
glyphName?: Array<string> | undefined;
|
|
241
|
+
glyphOrientationHorizontal?: string | undefined;
|
|
242
|
+
glyphOrientationVertical?: string | undefined;
|
|
243
|
+
glyphRef?: string | undefined;
|
|
244
|
+
gradientTransform?: string | undefined;
|
|
245
|
+
gradientUnits?: string | undefined;
|
|
246
|
+
handler?: string | undefined;
|
|
247
|
+
hanging?: number | string | undefined;
|
|
248
|
+
hatchContentUnits?: string | undefined;
|
|
249
|
+
hatchUnits?: string | undefined;
|
|
250
|
+
headers?: Array<string> | undefined;
|
|
251
|
+
height?: number | string | undefined;
|
|
252
|
+
hidden?: boolean | string | undefined;
|
|
253
|
+
high?: number | string | undefined;
|
|
254
|
+
horizAdvX?: number | string | undefined;
|
|
255
|
+
horizOriginX?: number | string | undefined;
|
|
256
|
+
horizOriginY?: number | string | undefined;
|
|
257
|
+
href?: string | undefined;
|
|
258
|
+
hrefLang?: string | undefined;
|
|
259
|
+
hSpace?: number | string | undefined;
|
|
260
|
+
htmlFor?: Array<string> | undefined;
|
|
261
|
+
httpEquiv?: Array<string> | undefined;
|
|
262
|
+
id?: string | undefined;
|
|
263
|
+
ideographic?: number | string | undefined;
|
|
264
|
+
imageRendering?: string | undefined;
|
|
265
|
+
imageSizes?: string | undefined;
|
|
266
|
+
imageSrcSet?: string | undefined;
|
|
267
|
+
in?: string | undefined;
|
|
268
|
+
in2?: string | undefined;
|
|
269
|
+
inert?: boolean | string | undefined;
|
|
270
|
+
initialVisibility?: string | undefined;
|
|
271
|
+
inputMode?: string | undefined;
|
|
272
|
+
integrity?: string | undefined;
|
|
273
|
+
intercept?: number | string | undefined;
|
|
274
|
+
is?: string | undefined;
|
|
275
|
+
isMap?: boolean | string | undefined;
|
|
276
|
+
itemId?: string | undefined;
|
|
277
|
+
itemProp?: Array<string> | undefined;
|
|
278
|
+
itemRef?: Array<string> | undefined;
|
|
279
|
+
itemScope?: boolean | string | undefined;
|
|
280
|
+
itemType?: Array<string> | undefined;
|
|
281
|
+
k?: number | string | undefined;
|
|
282
|
+
k1?: number | string | undefined;
|
|
283
|
+
k2?: number | string | undefined;
|
|
284
|
+
k3?: number | string | undefined;
|
|
285
|
+
k4?: number | string | undefined;
|
|
286
|
+
kernelMatrix?: Array<string> | undefined;
|
|
287
|
+
kernelUnitLength?: string | undefined;
|
|
288
|
+
kerning?: string | undefined;
|
|
289
|
+
keyPoints?: string | undefined;
|
|
290
|
+
keySplines?: string | undefined;
|
|
291
|
+
keyTimes?: string | undefined;
|
|
292
|
+
kind?: string | undefined;
|
|
293
|
+
label?: string | undefined;
|
|
294
|
+
lang?: string | undefined;
|
|
295
|
+
language?: string | undefined;
|
|
296
|
+
leftMargin?: number | string | undefined;
|
|
297
|
+
lengthAdjust?: string | undefined;
|
|
298
|
+
letterSpacing?: string | undefined;
|
|
299
|
+
lightingColor?: string | undefined;
|
|
300
|
+
limitingConeAngle?: number | string | undefined;
|
|
301
|
+
link?: string | undefined;
|
|
302
|
+
list?: string | undefined;
|
|
303
|
+
loading?: string | undefined;
|
|
304
|
+
local?: string | undefined;
|
|
305
|
+
longDesc?: string | undefined;
|
|
306
|
+
loop?: boolean | string | undefined;
|
|
307
|
+
low?: number | string | undefined;
|
|
308
|
+
lowSrc?: string | undefined;
|
|
309
|
+
manifest?: string | undefined;
|
|
310
|
+
marginHeight?: number | string | undefined;
|
|
311
|
+
marginWidth?: number | string | undefined;
|
|
312
|
+
markerEnd?: string | undefined;
|
|
313
|
+
markerHeight?: string | undefined;
|
|
314
|
+
markerMid?: string | undefined;
|
|
315
|
+
markerStart?: string | undefined;
|
|
316
|
+
markerUnits?: string | undefined;
|
|
317
|
+
markerWidth?: string | undefined;
|
|
318
|
+
mask?: string | undefined;
|
|
319
|
+
maskContentUnits?: string | undefined;
|
|
320
|
+
maskType?: string | undefined;
|
|
321
|
+
maskUnits?: string | undefined;
|
|
322
|
+
mathematical?: string | undefined;
|
|
323
|
+
max?: string | undefined;
|
|
324
|
+
maxLength?: number | string | undefined;
|
|
325
|
+
media?: string | undefined;
|
|
326
|
+
mediaCharacterEncoding?: string | undefined;
|
|
327
|
+
mediaContentEncodings?: string | undefined;
|
|
328
|
+
mediaSize?: number | string | undefined;
|
|
329
|
+
mediaTime?: string | undefined;
|
|
330
|
+
method?: string | undefined;
|
|
331
|
+
min?: string | undefined;
|
|
332
|
+
minLength?: number | string | undefined;
|
|
333
|
+
mode?: string | undefined;
|
|
334
|
+
multiple?: boolean | string | undefined;
|
|
335
|
+
muted?: boolean | string | undefined;
|
|
336
|
+
name?: string | undefined;
|
|
337
|
+
navDown?: string | undefined;
|
|
338
|
+
navDownLeft?: string | undefined;
|
|
339
|
+
navDownRight?: string | undefined;
|
|
340
|
+
navLeft?: string | undefined;
|
|
341
|
+
navNext?: string | undefined;
|
|
342
|
+
navPrev?: string | undefined;
|
|
343
|
+
navRight?: string | undefined;
|
|
344
|
+
navUp?: string | undefined;
|
|
345
|
+
navUpLeft?: string | undefined;
|
|
346
|
+
navUpRight?: string | undefined;
|
|
347
|
+
noHref?: boolean | string | undefined;
|
|
348
|
+
noModule?: boolean | string | undefined;
|
|
349
|
+
nonce?: string | undefined;
|
|
350
|
+
noResize?: boolean | string | undefined;
|
|
351
|
+
noShade?: boolean | string | undefined;
|
|
352
|
+
noValidate?: boolean | string | undefined;
|
|
353
|
+
noWrap?: boolean | string | undefined;
|
|
354
|
+
numOctaves?: string | undefined;
|
|
355
|
+
object?: string | undefined;
|
|
356
|
+
observer?: string | undefined;
|
|
357
|
+
offset?: string | undefined;
|
|
358
|
+
onAbort?: string | undefined;
|
|
359
|
+
onActivate?: string | undefined;
|
|
360
|
+
onAfterPrint?: string | undefined;
|
|
361
|
+
onAuxClick?: string | undefined;
|
|
362
|
+
onBeforeMatch?: string | undefined;
|
|
363
|
+
onBeforePrint?: string | undefined;
|
|
364
|
+
onBeforeToggle?: string | undefined;
|
|
365
|
+
onBeforeUnload?: string | undefined;
|
|
366
|
+
onBegin?: string | undefined;
|
|
367
|
+
onBlur?: string | undefined;
|
|
368
|
+
onCancel?: string | undefined;
|
|
369
|
+
onCanPlay?: string | undefined;
|
|
370
|
+
onCanPlayThrough?: string | undefined;
|
|
371
|
+
onChange?: string | undefined;
|
|
372
|
+
onClick?: string | undefined;
|
|
373
|
+
onClose?: string | undefined;
|
|
374
|
+
onContextLost?: string | undefined;
|
|
375
|
+
onContextMenu?: string | undefined;
|
|
376
|
+
onContextRestored?: string | undefined;
|
|
377
|
+
onCopy?: string | undefined;
|
|
378
|
+
onCueChange?: string | undefined;
|
|
379
|
+
onCut?: string | undefined;
|
|
380
|
+
onDblClick?: string | undefined;
|
|
381
|
+
onDrag?: string | undefined;
|
|
382
|
+
onDragEnd?: string | undefined;
|
|
383
|
+
onDragEnter?: string | undefined;
|
|
384
|
+
onDragExit?: string | undefined;
|
|
385
|
+
onDragLeave?: string | undefined;
|
|
386
|
+
onDragOver?: string | undefined;
|
|
387
|
+
onDragStart?: string | undefined;
|
|
388
|
+
onDrop?: string | undefined;
|
|
389
|
+
onDurationChange?: string | undefined;
|
|
390
|
+
onEmptied?: string | undefined;
|
|
391
|
+
onEnd?: string | undefined;
|
|
392
|
+
onEnded?: string | undefined;
|
|
393
|
+
onError?: string | undefined;
|
|
394
|
+
onFocus?: string | undefined;
|
|
395
|
+
onFocusIn?: string | undefined;
|
|
396
|
+
onFocusOut?: string | undefined;
|
|
397
|
+
onFormData?: string | undefined;
|
|
398
|
+
onHashChange?: string | undefined;
|
|
399
|
+
onInput?: string | undefined;
|
|
400
|
+
onInvalid?: string | undefined;
|
|
401
|
+
onKeyDown?: string | undefined;
|
|
402
|
+
onKeyPress?: string | undefined;
|
|
403
|
+
onKeyUp?: string | undefined;
|
|
404
|
+
onLanguageChange?: string | undefined;
|
|
405
|
+
onLoad?: string | undefined;
|
|
406
|
+
onLoadedData?: string | undefined;
|
|
407
|
+
onLoadedMetadata?: string | undefined;
|
|
408
|
+
onLoadEnd?: string | undefined;
|
|
409
|
+
onLoadStart?: string | undefined;
|
|
410
|
+
onMessage?: string | undefined;
|
|
411
|
+
onMessageError?: string | undefined;
|
|
412
|
+
onMouseDown?: string | undefined;
|
|
413
|
+
onMouseEnter?: string | undefined;
|
|
414
|
+
onMouseLeave?: string | undefined;
|
|
415
|
+
onMouseMove?: string | undefined;
|
|
416
|
+
onMouseOut?: string | undefined;
|
|
417
|
+
onMouseOver?: string | undefined;
|
|
418
|
+
onMouseUp?: string | undefined;
|
|
419
|
+
onMouseWheel?: string | undefined;
|
|
420
|
+
onOffline?: string | undefined;
|
|
421
|
+
onOnline?: string | undefined;
|
|
422
|
+
onPageHide?: string | undefined;
|
|
423
|
+
onPageShow?: string | undefined;
|
|
424
|
+
onPaste?: string | undefined;
|
|
425
|
+
onPause?: string | undefined;
|
|
426
|
+
onPlay?: string | undefined;
|
|
427
|
+
onPlaying?: string | undefined;
|
|
428
|
+
onPopState?: string | undefined;
|
|
429
|
+
onProgress?: string | undefined;
|
|
430
|
+
onRateChange?: string | undefined;
|
|
431
|
+
onRejectionHandled?: string | undefined;
|
|
432
|
+
onRepeat?: string | undefined;
|
|
433
|
+
onReset?: string | undefined;
|
|
434
|
+
onResize?: string | undefined;
|
|
435
|
+
onScroll?: string | undefined;
|
|
436
|
+
onScrollEnd?: string | undefined;
|
|
437
|
+
onSecurityPolicyViolation?: string | undefined;
|
|
438
|
+
onSeeked?: string | undefined;
|
|
439
|
+
onSeeking?: string | undefined;
|
|
440
|
+
onSelect?: string | undefined;
|
|
441
|
+
onShow?: string | undefined;
|
|
442
|
+
onSlotChange?: string | undefined;
|
|
443
|
+
onStalled?: string | undefined;
|
|
444
|
+
onStorage?: string | undefined;
|
|
445
|
+
onSubmit?: string | undefined;
|
|
446
|
+
onSuspend?: string | undefined;
|
|
447
|
+
onTimeUpdate?: string | undefined;
|
|
448
|
+
onToggle?: string | undefined;
|
|
449
|
+
onUnhandledRejection?: string | undefined;
|
|
450
|
+
onUnload?: string | undefined;
|
|
451
|
+
onVolumeChange?: string | undefined;
|
|
452
|
+
onWaiting?: string | undefined;
|
|
453
|
+
onWheel?: string | undefined;
|
|
454
|
+
onZoom?: string | undefined;
|
|
455
|
+
opacity?: string | undefined;
|
|
456
|
+
open?: boolean | string | undefined;
|
|
457
|
+
operator?: string | undefined;
|
|
458
|
+
optimum?: number | string | undefined;
|
|
459
|
+
order?: string | undefined;
|
|
460
|
+
orient?: string | undefined;
|
|
461
|
+
orientation?: string | undefined;
|
|
462
|
+
origin?: string | undefined;
|
|
463
|
+
overflow?: string | undefined;
|
|
464
|
+
overlay?: string | undefined;
|
|
465
|
+
overlinePosition?: number | string | undefined;
|
|
466
|
+
overlineThickness?: number | string | undefined;
|
|
467
|
+
paintOrder?: string | undefined;
|
|
468
|
+
panose1?: string | undefined;
|
|
469
|
+
part?: Array<string> | undefined;
|
|
470
|
+
path?: string | undefined;
|
|
471
|
+
pathLength?: number | string | undefined;
|
|
472
|
+
pattern?: string | undefined;
|
|
473
|
+
patternContentUnits?: string | undefined;
|
|
474
|
+
patternTransform?: string | undefined;
|
|
475
|
+
patternUnits?: string | undefined;
|
|
476
|
+
phase?: string | undefined;
|
|
477
|
+
ping?: Array<string> | undefined;
|
|
478
|
+
pitch?: string | undefined;
|
|
479
|
+
placeholder?: string | undefined;
|
|
480
|
+
playbackOrder?: string | undefined;
|
|
481
|
+
playsInline?: boolean | string | undefined;
|
|
482
|
+
pointerEvents?: string | undefined;
|
|
483
|
+
points?: string | undefined;
|
|
484
|
+
pointsAtX?: number | string | undefined;
|
|
485
|
+
pointsAtY?: number | string | undefined;
|
|
486
|
+
pointsAtZ?: number | string | undefined;
|
|
487
|
+
popover?: string | undefined;
|
|
488
|
+
popoverTarget?: string | undefined;
|
|
489
|
+
popoverTargetAction?: string | undefined;
|
|
490
|
+
poster?: string | undefined;
|
|
491
|
+
prefix?: string | undefined;
|
|
492
|
+
preload?: string | undefined;
|
|
493
|
+
preserveAlpha?: string | undefined;
|
|
494
|
+
preserveAspectRatio?: string | undefined;
|
|
495
|
+
primitiveUnits?: string | undefined;
|
|
496
|
+
profile?: string | undefined;
|
|
497
|
+
prompt?: string | undefined;
|
|
498
|
+
propagate?: string | undefined;
|
|
499
|
+
property?: string | Array<string> | undefined;
|
|
500
|
+
r?: string | undefined;
|
|
501
|
+
radius?: string | undefined;
|
|
502
|
+
readOnly?: boolean | string | undefined;
|
|
503
|
+
referrerPolicy?: string | undefined;
|
|
504
|
+
refX?: string | undefined;
|
|
505
|
+
refY?: string | undefined;
|
|
506
|
+
rel?: Array<string> | undefined;
|
|
507
|
+
renderingIntent?: string | undefined;
|
|
508
|
+
repeatCount?: string | undefined;
|
|
509
|
+
repeatDur?: string | undefined;
|
|
510
|
+
required?: boolean | string | undefined;
|
|
511
|
+
requiredExtensions?: Array<string> | undefined;
|
|
512
|
+
requiredFeatures?: Array<string> | undefined;
|
|
513
|
+
requiredFonts?: Array<string> | undefined;
|
|
514
|
+
requiredFormats?: Array<string> | undefined;
|
|
515
|
+
resource?: string | undefined;
|
|
516
|
+
restart?: string | undefined;
|
|
517
|
+
result?: string | undefined;
|
|
518
|
+
results?: number | string | undefined;
|
|
519
|
+
rev?: string | Array<string> | undefined;
|
|
520
|
+
reversed?: boolean | string | undefined;
|
|
521
|
+
rightMargin?: number | string | undefined;
|
|
522
|
+
role?: string | undefined;
|
|
523
|
+
rotate?: string | undefined;
|
|
524
|
+
rows?: number | string | undefined;
|
|
525
|
+
rowSpan?: number | string | undefined;
|
|
526
|
+
rules?: string | undefined;
|
|
527
|
+
rx?: string | undefined;
|
|
528
|
+
ry?: string | undefined;
|
|
529
|
+
sandbox?: Array<string> | undefined;
|
|
530
|
+
scale?: string | undefined;
|
|
531
|
+
scheme?: string | undefined;
|
|
532
|
+
scope?: string | undefined;
|
|
533
|
+
scoped?: boolean | string | undefined;
|
|
534
|
+
scrolling?: "false" | "true" | (string & {}) | undefined;
|
|
535
|
+
seamless?: boolean | string | undefined;
|
|
536
|
+
security?: string | undefined;
|
|
537
|
+
seed?: string | undefined;
|
|
538
|
+
selected?: boolean | string | undefined;
|
|
539
|
+
shadowRootClonable?: boolean | string | undefined;
|
|
540
|
+
shadowRootCustomElementRegistry?: boolean | string | undefined;
|
|
541
|
+
shadowRootDelegatesFocus?: boolean | string | undefined;
|
|
542
|
+
shadowRootMode?: string | undefined;
|
|
543
|
+
shadowRootSerializable?: boolean | string | undefined;
|
|
544
|
+
shape?: string | undefined;
|
|
545
|
+
shapeRendering?: string | undefined;
|
|
546
|
+
side?: string | undefined;
|
|
547
|
+
size?: number | string | undefined;
|
|
548
|
+
sizes?: string | undefined;
|
|
549
|
+
slope?: string | undefined;
|
|
550
|
+
slot?: string | undefined;
|
|
551
|
+
snapshotTime?: string | undefined;
|
|
552
|
+
spacing?: string | undefined;
|
|
553
|
+
span?: number | string | undefined;
|
|
554
|
+
specularConstant?: number | string | undefined;
|
|
555
|
+
specularExponent?: number | string | undefined;
|
|
556
|
+
spellCheck?: "false" | "true" | (string & {}) | undefined;
|
|
557
|
+
spreadMethod?: string | undefined;
|
|
558
|
+
src?: string | undefined;
|
|
559
|
+
srcDoc?: string | undefined;
|
|
560
|
+
srcLang?: string | undefined;
|
|
561
|
+
srcSet?: string | undefined;
|
|
562
|
+
standby?: string | undefined;
|
|
563
|
+
start?: number | string | undefined;
|
|
564
|
+
startOffset?: string | undefined;
|
|
565
|
+
stdDeviation?: string | undefined;
|
|
566
|
+
stemh?: string | undefined;
|
|
567
|
+
stemv?: string | undefined;
|
|
568
|
+
step?: string | undefined;
|
|
569
|
+
stitchTiles?: string | undefined;
|
|
570
|
+
stopColor?: string | undefined;
|
|
571
|
+
stopOpacity?: string | undefined;
|
|
572
|
+
strikethroughPosition?: number | string | undefined;
|
|
573
|
+
strikethroughThickness?: number | string | undefined;
|
|
574
|
+
string?: string | undefined;
|
|
575
|
+
stroke?: string | undefined;
|
|
576
|
+
strokeDashArray?: Array<string> | undefined;
|
|
577
|
+
strokeDashOffset?: string | undefined;
|
|
578
|
+
strokeLineCap?: string | undefined;
|
|
579
|
+
strokeLineJoin?: string | undefined;
|
|
580
|
+
strokeMiterLimit?: number | string | undefined;
|
|
581
|
+
strokeOpacity?: number | string | undefined;
|
|
582
|
+
strokeWidth?: string | undefined;
|
|
583
|
+
style?: string | undefined;
|
|
584
|
+
summary?: string | undefined;
|
|
585
|
+
surfaceScale?: number | string | undefined;
|
|
586
|
+
syncBehavior?: string | undefined;
|
|
587
|
+
syncBehaviorDefault?: string | undefined;
|
|
588
|
+
syncMaster?: string | undefined;
|
|
589
|
+
syncTolerance?: string | undefined;
|
|
590
|
+
syncToleranceDefault?: string | undefined;
|
|
591
|
+
systemLanguage?: Array<string> | undefined;
|
|
592
|
+
tabIndex?: number | string | undefined;
|
|
593
|
+
tableValues?: string | undefined;
|
|
594
|
+
target?: string | undefined;
|
|
595
|
+
targetX?: number | string | undefined;
|
|
596
|
+
targetY?: number | string | undefined;
|
|
597
|
+
text?: string | undefined;
|
|
598
|
+
textAnchor?: string | undefined;
|
|
599
|
+
textDecoration?: string | undefined;
|
|
600
|
+
textLength?: string | undefined;
|
|
601
|
+
textRendering?: string | undefined;
|
|
602
|
+
timelineBegin?: string | undefined;
|
|
603
|
+
title?: string | undefined;
|
|
604
|
+
to?: string | undefined;
|
|
605
|
+
topMargin?: number | string | undefined;
|
|
606
|
+
transform?: string | undefined;
|
|
607
|
+
transformBehavior?: string | undefined;
|
|
608
|
+
transformOrigin?: string | undefined;
|
|
609
|
+
translate?: string | undefined;
|
|
610
|
+
type?: string | undefined;
|
|
611
|
+
typeMustMatch?: boolean | string | undefined;
|
|
612
|
+
typeOf?: Array<string> | undefined;
|
|
613
|
+
u1?: string | undefined;
|
|
614
|
+
u2?: string | undefined;
|
|
615
|
+
underlinePosition?: number | string | undefined;
|
|
616
|
+
underlineThickness?: number | string | undefined;
|
|
617
|
+
unicode?: string | undefined;
|
|
618
|
+
unicodeBidi?: string | undefined;
|
|
619
|
+
unicodeRange?: string | undefined;
|
|
620
|
+
unitsPerEm?: number | string | undefined;
|
|
621
|
+
unselectable?: string | undefined;
|
|
622
|
+
useMap?: string | undefined;
|
|
623
|
+
vAlign?: string | undefined;
|
|
624
|
+
vAlphabetic?: number | string | undefined;
|
|
625
|
+
value?: "false" | "true" | (string & {}) | undefined;
|
|
626
|
+
values?: string | undefined;
|
|
627
|
+
valueType?: string | undefined;
|
|
628
|
+
vectorEffect?: string | undefined;
|
|
629
|
+
version?: string | undefined;
|
|
630
|
+
vertAdvY?: number | string | undefined;
|
|
631
|
+
vertOriginX?: number | string | undefined;
|
|
632
|
+
vertOriginY?: number | string | undefined;
|
|
633
|
+
vHanging?: number | string | undefined;
|
|
634
|
+
vIdeographic?: number | string | undefined;
|
|
635
|
+
viewBox?: string | undefined;
|
|
636
|
+
viewTarget?: string | undefined;
|
|
637
|
+
visibility?: string | undefined;
|
|
638
|
+
vLink?: string | undefined;
|
|
639
|
+
vMathematical?: number | string | undefined;
|
|
640
|
+
vSpace?: number | string | undefined;
|
|
641
|
+
width?: number | string | undefined;
|
|
642
|
+
widths?: string | undefined;
|
|
643
|
+
wordSpacing?: string | undefined;
|
|
644
|
+
wrap?: string | undefined;
|
|
645
|
+
writingMode?: string | undefined;
|
|
646
|
+
writingSuggestions?: string | undefined;
|
|
647
|
+
x?: string | undefined;
|
|
648
|
+
x1?: string | undefined;
|
|
649
|
+
x2?: string | undefined;
|
|
650
|
+
xChannelSelector?: string | undefined;
|
|
651
|
+
xHeight?: number | string | undefined;
|
|
652
|
+
xLinkActuate?: string | undefined;
|
|
653
|
+
xLinkArcRole?: string | undefined;
|
|
654
|
+
xLinkHref?: string | undefined;
|
|
655
|
+
xLinkRole?: string | undefined;
|
|
656
|
+
xLinkShow?: string | undefined;
|
|
657
|
+
xLinkTitle?: string | undefined;
|
|
658
|
+
xLinkType?: string | undefined;
|
|
659
|
+
xmlBase?: string | undefined;
|
|
660
|
+
xmlLang?: string | undefined;
|
|
661
|
+
xmlns?: string | undefined;
|
|
662
|
+
xmlnsXLink?: string | undefined;
|
|
663
|
+
xmlSpace?: string | undefined;
|
|
664
|
+
y?: string | undefined;
|
|
665
|
+
y1?: string | undefined;
|
|
666
|
+
y2?: string | undefined;
|
|
667
|
+
yChannelSelector?: string | undefined;
|
|
668
|
+
z?: string | undefined;
|
|
669
|
+
zoomAndPan?: string | undefined;
|
|
28
670
|
[PropertyName: string]: boolean | number | string | null | undefined | Array<string | number>;
|
|
29
671
|
}
|
|
30
672
|
// ## Content maps
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.20.1",
|
|
4
4
|
"description": "Lobe UI is an open-source UI component library for building AIGC web apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lobehub",
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
},
|
|
141
141
|
"dependencies": {
|
|
142
142
|
"@ant-design/cssinjs": "^2.1.2",
|
|
143
|
-
"@base-ui/react": "1.
|
|
143
|
+
"@base-ui/react": "^1.6.0",
|
|
144
144
|
"@dnd-kit/core": "^6.3.1",
|
|
145
145
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
146
146
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -267,7 +267,8 @@
|
|
|
267
267
|
"typescript": "^6.0.3",
|
|
268
268
|
"unist-util-is": "^6.0.1",
|
|
269
269
|
"unist-util-visit": "^5.1.0",
|
|
270
|
-
"vitest": "^3.2.6"
|
|
270
|
+
"vitest": "^3.2.6",
|
|
271
|
+
"zod": "^4.4.3"
|
|
271
272
|
},
|
|
272
273
|
"peerDependencies": {
|
|
273
274
|
"@lobehub/fluent-emoji": "^4.0.0",
|