@gomeniucivan/ui 1.0.47 → 1.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +518 -6
- package/dist/index.d.ts +518 -6
- package/dist/index.js +212 -209
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +175 -172
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -44,7 +44,7 @@ import { Root } from 'hast';
|
|
|
44
44
|
import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
|
|
45
45
|
import { TableProps as TableProps$1 } from 'antd/es/table';
|
|
46
46
|
import { GetCustomStylish, GetCustomToken, ThemeProviderProps as ThemeProviderProps$1, CustomStylishParams, CustomTokenParams, ThemeMode } from 'antd-style';
|
|
47
|
-
export { createStyles, cx
|
|
47
|
+
export { createStyles, cx } from 'antd-style';
|
|
48
48
|
import { AliasToken } from 'antd/es/theme/interface';
|
|
49
49
|
import { Toast } from '@base-ui/react/toast';
|
|
50
50
|
export { ErrorBoundary, ErrorBoundaryProps } from 'react-error-boundary';
|
|
@@ -2430,6 +2430,10 @@ interface FormProps<T extends Record<string, any>> extends Omit<FormHTMLAttribut
|
|
|
2430
2430
|
initialValues?: T;
|
|
2431
2431
|
validate?: (values: T) => Partial<Record<keyof T, string>>;
|
|
2432
2432
|
className?: string;
|
|
2433
|
+
/**
|
|
2434
|
+
* Maximum width of the form. Accepts any CSS width value (e.g., `'56rem'`, `'800px'`, `'100%'`).
|
|
2435
|
+
*/
|
|
2436
|
+
maxWidth?: string | number;
|
|
2433
2437
|
/**
|
|
2434
2438
|
* Layout of form fields.
|
|
2435
2439
|
* - `vertical`: label/description stacked above control (default)
|
|
@@ -2472,7 +2476,7 @@ interface FormGroupProps {
|
|
|
2472
2476
|
variant?: FormVariant;
|
|
2473
2477
|
}
|
|
2474
2478
|
|
|
2475
|
-
declare function Form<T extends Record<string, any>>({ children, onSubmit, form, initialValues, validate, className, style, layout, labelWidth, variant, fieldMinWidth, ...props }: FormProps<T>): react_jsx_runtime.JSX.Element;
|
|
2479
|
+
declare function Form<T extends Record<string, any>>({ children, onSubmit, form, initialValues, validate, className, style, layout, labelWidth, variant, fieldMinWidth, maxWidth, ...props }: FormProps<T>): react_jsx_runtime.JSX.Element;
|
|
2476
2480
|
declare namespace Form {
|
|
2477
2481
|
var displayName: string;
|
|
2478
2482
|
}
|
|
@@ -2528,9 +2532,16 @@ type FormLabelProps = {
|
|
|
2528
2532
|
className?: string;
|
|
2529
2533
|
description?: react__default.ReactNode;
|
|
2530
2534
|
required?: boolean;
|
|
2535
|
+
/**
|
|
2536
|
+
* Called when the label is clicked. Used by form field components
|
|
2537
|
+
* to focus inputs, open selects, toggle switches, etc.
|
|
2538
|
+
* When provided, the native `htmlFor` behaviour is prevented
|
|
2539
|
+
* so the callback has full control.
|
|
2540
|
+
*/
|
|
2541
|
+
onLabelClick?: () => void;
|
|
2531
2542
|
};
|
|
2532
2543
|
declare const FormLabel: {
|
|
2533
|
-
({ htmlFor, children, className, description, required }: FormLabelProps): react_jsx_runtime.JSX.Element;
|
|
2544
|
+
({ htmlFor, children, className, description, required, onLabelClick, }: FormLabelProps): react_jsx_runtime.JSX.Element;
|
|
2534
2545
|
displayName: string;
|
|
2535
2546
|
};
|
|
2536
2547
|
|
|
@@ -2557,7 +2568,7 @@ type FormCheckboxProps<T extends Record<string, any>> = Omit<CheckboxProps, 'che
|
|
|
2557
2568
|
onChange?: (checked: boolean) => void;
|
|
2558
2569
|
};
|
|
2559
2570
|
declare const FormCheckbox: {
|
|
2560
|
-
<T extends Record<string, any>>({ name, label, description, form, className, rules, onChange, ...rest }: FormCheckboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
2571
|
+
<T extends Record<string, any>>({ name, label, description, form, className, rules, onChange, disabled, ...rest }: FormCheckboxProps<T>): react_jsx_runtime.JSX.Element;
|
|
2561
2572
|
displayName: string;
|
|
2562
2573
|
};
|
|
2563
2574
|
|
|
@@ -2694,7 +2705,7 @@ type FormSwitchProps<T extends Record<string, any>> = Omit<SwitchProps, 'checked
|
|
|
2694
2705
|
onChange?: (checked: boolean) => void;
|
|
2695
2706
|
};
|
|
2696
2707
|
declare const FormSwitch: {
|
|
2697
|
-
<T extends Record<string, any>>({ name, label, description, form, className, rules, onChange, ...rest }: FormSwitchProps<T>): react_jsx_runtime.JSX.Element;
|
|
2708
|
+
<T extends Record<string, any>>({ name, label, description, form, className, rules, onChange, disabled, ...rest }: FormSwitchProps<T>): react_jsx_runtime.JSX.Element;
|
|
2698
2709
|
displayName: string;
|
|
2699
2710
|
};
|
|
2700
2711
|
|
|
@@ -4302,4 +4313,505 @@ declare const _default: {
|
|
|
4302
4313
|
type: string;
|
|
4303
4314
|
};
|
|
4304
4315
|
|
|
4305
|
-
|
|
4316
|
+
/**
|
|
4317
|
+
* Returns the full antd design token enriched with library-level context values
|
|
4318
|
+
* such as `isMobile` from `ThemeProvider`.
|
|
4319
|
+
*
|
|
4320
|
+
* ```tsx
|
|
4321
|
+
* const { colorPrimary, isMobile } = useToken();
|
|
4322
|
+
* ```
|
|
4323
|
+
*/
|
|
4324
|
+
declare const useToken: () => {
|
|
4325
|
+
isMobile: boolean;
|
|
4326
|
+
colorFillContentHover: string;
|
|
4327
|
+
colorFillAlter: string;
|
|
4328
|
+
colorFillContent: string;
|
|
4329
|
+
colorBgContainerDisabled: string;
|
|
4330
|
+
colorBgTextHover: string;
|
|
4331
|
+
colorBgTextActive: string;
|
|
4332
|
+
colorBorderBg: string;
|
|
4333
|
+
colorSplit: string;
|
|
4334
|
+
colorTextPlaceholder: string;
|
|
4335
|
+
colorTextDisabled: string;
|
|
4336
|
+
colorTextHeading: string;
|
|
4337
|
+
colorTextLabel: string;
|
|
4338
|
+
colorTextDescription: string;
|
|
4339
|
+
colorTextLightSolid: string;
|
|
4340
|
+
colorIcon: string;
|
|
4341
|
+
colorIconHover: string;
|
|
4342
|
+
colorHighlight: string;
|
|
4343
|
+
controlOutline: string;
|
|
4344
|
+
colorWarningOutline: string;
|
|
4345
|
+
colorErrorOutline: string;
|
|
4346
|
+
fontSizeIcon: number;
|
|
4347
|
+
fontWeightStrong: number;
|
|
4348
|
+
controlOutlineWidth: number;
|
|
4349
|
+
controlItemBgHover: string;
|
|
4350
|
+
controlItemBgActive: string;
|
|
4351
|
+
controlItemBgActiveHover: string;
|
|
4352
|
+
controlInteractiveSize: number;
|
|
4353
|
+
controlItemBgActiveDisabled: string;
|
|
4354
|
+
lineWidthFocus: number;
|
|
4355
|
+
paddingXXS: number;
|
|
4356
|
+
paddingXS: number;
|
|
4357
|
+
paddingSM: number;
|
|
4358
|
+
padding: number;
|
|
4359
|
+
paddingMD: number;
|
|
4360
|
+
paddingLG: number;
|
|
4361
|
+
paddingXL: number;
|
|
4362
|
+
paddingContentHorizontalLG: number;
|
|
4363
|
+
paddingContentHorizontal: number;
|
|
4364
|
+
paddingContentHorizontalSM: number;
|
|
4365
|
+
paddingContentVerticalLG: number;
|
|
4366
|
+
paddingContentVertical: number;
|
|
4367
|
+
paddingContentVerticalSM: number;
|
|
4368
|
+
marginXXS: number;
|
|
4369
|
+
marginXS: number;
|
|
4370
|
+
marginSM: number;
|
|
4371
|
+
margin: number;
|
|
4372
|
+
marginMD: number;
|
|
4373
|
+
marginLG: number;
|
|
4374
|
+
marginXL: number;
|
|
4375
|
+
marginXXL: number;
|
|
4376
|
+
opacityLoading: number;
|
|
4377
|
+
boxShadow: string;
|
|
4378
|
+
boxShadowSecondary: string;
|
|
4379
|
+
boxShadowTertiary: string;
|
|
4380
|
+
linkDecoration: React.CSSProperties["textDecoration"];
|
|
4381
|
+
linkHoverDecoration: React.CSSProperties["textDecoration"];
|
|
4382
|
+
linkFocusDecoration: React.CSSProperties["textDecoration"];
|
|
4383
|
+
controlPaddingHorizontal: number;
|
|
4384
|
+
controlPaddingHorizontalSM: number;
|
|
4385
|
+
screenXS: number;
|
|
4386
|
+
screenXSMin: number;
|
|
4387
|
+
screenXSMax: number;
|
|
4388
|
+
screenSM: number;
|
|
4389
|
+
screenSMMin: number;
|
|
4390
|
+
screenSMMax: number;
|
|
4391
|
+
screenMD: number;
|
|
4392
|
+
screenMDMin: number;
|
|
4393
|
+
screenMDMax: number;
|
|
4394
|
+
screenLG: number;
|
|
4395
|
+
screenLGMin: number;
|
|
4396
|
+
screenLGMax: number;
|
|
4397
|
+
screenXL: number;
|
|
4398
|
+
screenXLMin: number;
|
|
4399
|
+
screenXLMax: number;
|
|
4400
|
+
screenXXL: number;
|
|
4401
|
+
screenXXLMin: number;
|
|
4402
|
+
controlTmpOutline: string;
|
|
4403
|
+
colorPrimary: string;
|
|
4404
|
+
colorSuccess: string;
|
|
4405
|
+
colorWarning: string;
|
|
4406
|
+
colorError: string;
|
|
4407
|
+
colorInfo: string;
|
|
4408
|
+
colorTextBase: string;
|
|
4409
|
+
colorBgBase: string;
|
|
4410
|
+
colorLink: string;
|
|
4411
|
+
fontFamily: string;
|
|
4412
|
+
fontFamilyCode: string;
|
|
4413
|
+
fontSize: number;
|
|
4414
|
+
lineWidth: number;
|
|
4415
|
+
lineType: string;
|
|
4416
|
+
borderRadius: number;
|
|
4417
|
+
sizeUnit: number;
|
|
4418
|
+
sizeStep: number;
|
|
4419
|
+
sizePopupArrow: number;
|
|
4420
|
+
controlHeight: number;
|
|
4421
|
+
zIndexBase: number;
|
|
4422
|
+
zIndexPopupBase: number;
|
|
4423
|
+
opacityImage: number;
|
|
4424
|
+
motionUnit: number;
|
|
4425
|
+
motionBase: number;
|
|
4426
|
+
motionEaseOutCirc: string;
|
|
4427
|
+
motionEaseInOutCirc: string;
|
|
4428
|
+
motionEaseInOut: string;
|
|
4429
|
+
motionEaseOutBack: string;
|
|
4430
|
+
motionEaseInBack: string;
|
|
4431
|
+
motionEaseInQuint: string;
|
|
4432
|
+
motionEaseOutQuint: string;
|
|
4433
|
+
motionEaseOut: string;
|
|
4434
|
+
wireframe: boolean;
|
|
4435
|
+
motion: boolean;
|
|
4436
|
+
red: string;
|
|
4437
|
+
volcano: string;
|
|
4438
|
+
orange: string;
|
|
4439
|
+
gold: string;
|
|
4440
|
+
yellow: string;
|
|
4441
|
+
lime: string;
|
|
4442
|
+
green: string;
|
|
4443
|
+
cyan: string;
|
|
4444
|
+
blue: string;
|
|
4445
|
+
geekblue: string;
|
|
4446
|
+
purple: string;
|
|
4447
|
+
magenta: string;
|
|
4448
|
+
pink: string;
|
|
4449
|
+
red1: string;
|
|
4450
|
+
red2: string;
|
|
4451
|
+
red3: string;
|
|
4452
|
+
red4: string;
|
|
4453
|
+
red5: string;
|
|
4454
|
+
red6: string;
|
|
4455
|
+
red7: string;
|
|
4456
|
+
red8: string;
|
|
4457
|
+
red9: string;
|
|
4458
|
+
red10: string;
|
|
4459
|
+
volcano1: string;
|
|
4460
|
+
volcano2: string;
|
|
4461
|
+
volcano3: string;
|
|
4462
|
+
volcano4: string;
|
|
4463
|
+
volcano5: string;
|
|
4464
|
+
volcano6: string;
|
|
4465
|
+
volcano7: string;
|
|
4466
|
+
volcano8: string;
|
|
4467
|
+
volcano9: string;
|
|
4468
|
+
volcano10: string;
|
|
4469
|
+
orange1: string;
|
|
4470
|
+
orange2: string;
|
|
4471
|
+
orange3: string;
|
|
4472
|
+
orange4: string;
|
|
4473
|
+
orange5: string;
|
|
4474
|
+
orange6: string;
|
|
4475
|
+
orange7: string;
|
|
4476
|
+
orange8: string;
|
|
4477
|
+
orange9: string;
|
|
4478
|
+
orange10: string;
|
|
4479
|
+
gold1: string;
|
|
4480
|
+
gold2: string;
|
|
4481
|
+
gold3: string;
|
|
4482
|
+
gold4: string;
|
|
4483
|
+
gold5: string;
|
|
4484
|
+
gold6: string;
|
|
4485
|
+
gold7: string;
|
|
4486
|
+
gold8: string;
|
|
4487
|
+
gold9: string;
|
|
4488
|
+
gold10: string;
|
|
4489
|
+
yellow1: string;
|
|
4490
|
+
yellow2: string;
|
|
4491
|
+
yellow3: string;
|
|
4492
|
+
yellow4: string;
|
|
4493
|
+
yellow5: string;
|
|
4494
|
+
yellow6: string;
|
|
4495
|
+
yellow7: string;
|
|
4496
|
+
yellow8: string;
|
|
4497
|
+
yellow9: string;
|
|
4498
|
+
yellow10: string;
|
|
4499
|
+
lime1: string;
|
|
4500
|
+
lime2: string;
|
|
4501
|
+
lime3: string;
|
|
4502
|
+
lime4: string;
|
|
4503
|
+
lime5: string;
|
|
4504
|
+
lime6: string;
|
|
4505
|
+
lime7: string;
|
|
4506
|
+
lime8: string;
|
|
4507
|
+
lime9: string;
|
|
4508
|
+
lime10: string;
|
|
4509
|
+
green1: string;
|
|
4510
|
+
green2: string;
|
|
4511
|
+
green3: string;
|
|
4512
|
+
green4: string;
|
|
4513
|
+
green5: string;
|
|
4514
|
+
green6: string;
|
|
4515
|
+
green7: string;
|
|
4516
|
+
green8: string;
|
|
4517
|
+
green9: string;
|
|
4518
|
+
green10: string;
|
|
4519
|
+
cyan1: string;
|
|
4520
|
+
cyan2: string;
|
|
4521
|
+
cyan3: string;
|
|
4522
|
+
cyan4: string;
|
|
4523
|
+
cyan5: string;
|
|
4524
|
+
cyan6: string;
|
|
4525
|
+
cyan7: string;
|
|
4526
|
+
cyan8: string;
|
|
4527
|
+
cyan9: string;
|
|
4528
|
+
cyan10: string;
|
|
4529
|
+
blue1: string;
|
|
4530
|
+
blue2: string;
|
|
4531
|
+
blue3: string;
|
|
4532
|
+
blue4: string;
|
|
4533
|
+
blue5: string;
|
|
4534
|
+
blue6: string;
|
|
4535
|
+
blue7: string;
|
|
4536
|
+
blue8: string;
|
|
4537
|
+
blue9: string;
|
|
4538
|
+
blue10: string;
|
|
4539
|
+
geekblue1: string;
|
|
4540
|
+
geekblue2: string;
|
|
4541
|
+
geekblue3: string;
|
|
4542
|
+
geekblue4: string;
|
|
4543
|
+
geekblue5: string;
|
|
4544
|
+
geekblue6: string;
|
|
4545
|
+
geekblue7: string;
|
|
4546
|
+
geekblue8: string;
|
|
4547
|
+
geekblue9: string;
|
|
4548
|
+
geekblue10: string;
|
|
4549
|
+
purple1: string;
|
|
4550
|
+
purple2: string;
|
|
4551
|
+
purple3: string;
|
|
4552
|
+
purple4: string;
|
|
4553
|
+
purple5: string;
|
|
4554
|
+
purple6: string;
|
|
4555
|
+
purple7: string;
|
|
4556
|
+
purple8: string;
|
|
4557
|
+
purple9: string;
|
|
4558
|
+
purple10: string;
|
|
4559
|
+
magenta1: string;
|
|
4560
|
+
magenta2: string;
|
|
4561
|
+
magenta3: string;
|
|
4562
|
+
magenta4: string;
|
|
4563
|
+
magenta5: string;
|
|
4564
|
+
magenta6: string;
|
|
4565
|
+
magenta7: string;
|
|
4566
|
+
magenta8: string;
|
|
4567
|
+
magenta9: string;
|
|
4568
|
+
magenta10: string;
|
|
4569
|
+
pink1: string;
|
|
4570
|
+
pink2: string;
|
|
4571
|
+
pink3: string;
|
|
4572
|
+
pink4: string;
|
|
4573
|
+
pink5: string;
|
|
4574
|
+
pink6: string;
|
|
4575
|
+
pink7: string;
|
|
4576
|
+
pink8: string;
|
|
4577
|
+
pink9: string;
|
|
4578
|
+
pink10: string;
|
|
4579
|
+
"red-1": string;
|
|
4580
|
+
"red-2": string;
|
|
4581
|
+
"red-3": string;
|
|
4582
|
+
"red-4": string;
|
|
4583
|
+
"red-5": string;
|
|
4584
|
+
"red-6": string;
|
|
4585
|
+
"red-7": string;
|
|
4586
|
+
"red-8": string;
|
|
4587
|
+
"red-9": string;
|
|
4588
|
+
"red-10": string;
|
|
4589
|
+
"volcano-1": string;
|
|
4590
|
+
"volcano-2": string;
|
|
4591
|
+
"volcano-3": string;
|
|
4592
|
+
"volcano-4": string;
|
|
4593
|
+
"volcano-5": string;
|
|
4594
|
+
"volcano-6": string;
|
|
4595
|
+
"volcano-7": string;
|
|
4596
|
+
"volcano-8": string;
|
|
4597
|
+
"volcano-9": string;
|
|
4598
|
+
"volcano-10": string;
|
|
4599
|
+
"orange-1": string;
|
|
4600
|
+
"orange-2": string;
|
|
4601
|
+
"orange-3": string;
|
|
4602
|
+
"orange-4": string;
|
|
4603
|
+
"orange-5": string;
|
|
4604
|
+
"orange-6": string;
|
|
4605
|
+
"orange-7": string;
|
|
4606
|
+
"orange-8": string;
|
|
4607
|
+
"orange-9": string;
|
|
4608
|
+
"orange-10": string;
|
|
4609
|
+
"gold-1": string;
|
|
4610
|
+
"gold-2": string;
|
|
4611
|
+
"gold-3": string;
|
|
4612
|
+
"gold-4": string;
|
|
4613
|
+
"gold-5": string;
|
|
4614
|
+
"gold-6": string;
|
|
4615
|
+
"gold-7": string;
|
|
4616
|
+
"gold-8": string;
|
|
4617
|
+
"gold-9": string;
|
|
4618
|
+
"gold-10": string;
|
|
4619
|
+
"yellow-1": string;
|
|
4620
|
+
"yellow-2": string;
|
|
4621
|
+
"yellow-3": string;
|
|
4622
|
+
"yellow-4": string;
|
|
4623
|
+
"yellow-5": string;
|
|
4624
|
+
"yellow-6": string;
|
|
4625
|
+
"yellow-7": string;
|
|
4626
|
+
"yellow-8": string;
|
|
4627
|
+
"yellow-9": string;
|
|
4628
|
+
"yellow-10": string;
|
|
4629
|
+
"lime-1": string;
|
|
4630
|
+
"lime-2": string;
|
|
4631
|
+
"lime-3": string;
|
|
4632
|
+
"lime-4": string;
|
|
4633
|
+
"lime-5": string;
|
|
4634
|
+
"lime-6": string;
|
|
4635
|
+
"lime-7": string;
|
|
4636
|
+
"lime-8": string;
|
|
4637
|
+
"lime-9": string;
|
|
4638
|
+
"lime-10": string;
|
|
4639
|
+
"green-1": string;
|
|
4640
|
+
"green-2": string;
|
|
4641
|
+
"green-3": string;
|
|
4642
|
+
"green-4": string;
|
|
4643
|
+
"green-5": string;
|
|
4644
|
+
"green-6": string;
|
|
4645
|
+
"green-7": string;
|
|
4646
|
+
"green-8": string;
|
|
4647
|
+
"green-9": string;
|
|
4648
|
+
"green-10": string;
|
|
4649
|
+
"cyan-1": string;
|
|
4650
|
+
"cyan-2": string;
|
|
4651
|
+
"cyan-3": string;
|
|
4652
|
+
"cyan-4": string;
|
|
4653
|
+
"cyan-5": string;
|
|
4654
|
+
"cyan-6": string;
|
|
4655
|
+
"cyan-7": string;
|
|
4656
|
+
"cyan-8": string;
|
|
4657
|
+
"cyan-9": string;
|
|
4658
|
+
"cyan-10": string;
|
|
4659
|
+
"blue-1": string;
|
|
4660
|
+
"blue-2": string;
|
|
4661
|
+
"blue-3": string;
|
|
4662
|
+
"blue-4": string;
|
|
4663
|
+
"blue-5": string;
|
|
4664
|
+
"blue-6": string;
|
|
4665
|
+
"blue-7": string;
|
|
4666
|
+
"blue-8": string;
|
|
4667
|
+
"blue-9": string;
|
|
4668
|
+
"blue-10": string;
|
|
4669
|
+
"geekblue-1": string;
|
|
4670
|
+
"geekblue-2": string;
|
|
4671
|
+
"geekblue-3": string;
|
|
4672
|
+
"geekblue-4": string;
|
|
4673
|
+
"geekblue-5": string;
|
|
4674
|
+
"geekblue-6": string;
|
|
4675
|
+
"geekblue-7": string;
|
|
4676
|
+
"geekblue-8": string;
|
|
4677
|
+
"geekblue-9": string;
|
|
4678
|
+
"geekblue-10": string;
|
|
4679
|
+
"purple-1": string;
|
|
4680
|
+
"purple-2": string;
|
|
4681
|
+
"purple-3": string;
|
|
4682
|
+
"purple-4": string;
|
|
4683
|
+
"purple-5": string;
|
|
4684
|
+
"purple-6": string;
|
|
4685
|
+
"purple-7": string;
|
|
4686
|
+
"purple-8": string;
|
|
4687
|
+
"purple-9": string;
|
|
4688
|
+
"purple-10": string;
|
|
4689
|
+
"magenta-1": string;
|
|
4690
|
+
"magenta-2": string;
|
|
4691
|
+
"magenta-3": string;
|
|
4692
|
+
"magenta-4": string;
|
|
4693
|
+
"magenta-5": string;
|
|
4694
|
+
"magenta-6": string;
|
|
4695
|
+
"magenta-7": string;
|
|
4696
|
+
"magenta-8": string;
|
|
4697
|
+
"magenta-9": string;
|
|
4698
|
+
"magenta-10": string;
|
|
4699
|
+
"pink-1": string;
|
|
4700
|
+
"pink-2": string;
|
|
4701
|
+
"pink-3": string;
|
|
4702
|
+
"pink-4": string;
|
|
4703
|
+
"pink-5": string;
|
|
4704
|
+
"pink-6": string;
|
|
4705
|
+
"pink-7": string;
|
|
4706
|
+
"pink-8": string;
|
|
4707
|
+
"pink-9": string;
|
|
4708
|
+
"pink-10": string;
|
|
4709
|
+
colorWhite: string;
|
|
4710
|
+
colorBgMask: string;
|
|
4711
|
+
colorText: string;
|
|
4712
|
+
colorTextSecondary: string;
|
|
4713
|
+
colorTextTertiary: string;
|
|
4714
|
+
colorTextQuaternary: string;
|
|
4715
|
+
colorBorder: string;
|
|
4716
|
+
colorBorderSecondary: string;
|
|
4717
|
+
colorBorderDisabled: string;
|
|
4718
|
+
colorFill: string;
|
|
4719
|
+
colorFillSecondary: string;
|
|
4720
|
+
colorFillTertiary: string;
|
|
4721
|
+
colorFillQuaternary: string;
|
|
4722
|
+
colorBgLayout: string;
|
|
4723
|
+
colorBgContainer: string;
|
|
4724
|
+
colorBgElevated: string;
|
|
4725
|
+
colorBgSpotlight: string;
|
|
4726
|
+
colorBgBlur: string;
|
|
4727
|
+
colorBgSolid: string;
|
|
4728
|
+
colorBgSolidActive: string;
|
|
4729
|
+
colorBgSolidHover: string;
|
|
4730
|
+
colorPrimaryBg: string;
|
|
4731
|
+
colorPrimaryBgHover: string;
|
|
4732
|
+
colorPrimaryBorder: string;
|
|
4733
|
+
colorPrimaryBorderHover: string;
|
|
4734
|
+
colorPrimaryHover: string;
|
|
4735
|
+
colorPrimaryActive: string;
|
|
4736
|
+
colorPrimaryTextHover: string;
|
|
4737
|
+
colorPrimaryText: string;
|
|
4738
|
+
colorPrimaryTextActive: string;
|
|
4739
|
+
colorSuccessBg: string;
|
|
4740
|
+
colorSuccessBgHover: string;
|
|
4741
|
+
colorSuccessBorder: string;
|
|
4742
|
+
colorSuccessBorderHover: string;
|
|
4743
|
+
colorSuccessHover: string;
|
|
4744
|
+
colorSuccessActive: string;
|
|
4745
|
+
colorSuccessTextHover: string;
|
|
4746
|
+
colorSuccessText: string;
|
|
4747
|
+
colorSuccessTextActive: string;
|
|
4748
|
+
colorWarningBg: string;
|
|
4749
|
+
colorWarningBgHover: string;
|
|
4750
|
+
colorWarningBorder: string;
|
|
4751
|
+
colorWarningBorderHover: string;
|
|
4752
|
+
colorWarningHover: string;
|
|
4753
|
+
colorWarningActive: string;
|
|
4754
|
+
colorWarningTextHover: string;
|
|
4755
|
+
colorWarningText: string;
|
|
4756
|
+
colorWarningTextActive: string;
|
|
4757
|
+
colorErrorBg: string;
|
|
4758
|
+
colorErrorBgHover: string;
|
|
4759
|
+
colorErrorBgFilledHover: string;
|
|
4760
|
+
colorErrorBgActive: string;
|
|
4761
|
+
colorErrorBorder: string;
|
|
4762
|
+
colorErrorBorderHover: string;
|
|
4763
|
+
colorErrorHover: string;
|
|
4764
|
+
colorErrorActive: string;
|
|
4765
|
+
colorErrorTextHover: string;
|
|
4766
|
+
colorErrorText: string;
|
|
4767
|
+
colorErrorTextActive: string;
|
|
4768
|
+
colorInfoBg: string;
|
|
4769
|
+
colorInfoBgHover: string;
|
|
4770
|
+
colorInfoBorder: string;
|
|
4771
|
+
colorInfoBorderHover: string;
|
|
4772
|
+
colorInfoHover: string;
|
|
4773
|
+
colorInfoActive: string;
|
|
4774
|
+
colorInfoTextHover: string;
|
|
4775
|
+
colorInfoText: string;
|
|
4776
|
+
colorInfoTextActive: string;
|
|
4777
|
+
colorLinkHover: string;
|
|
4778
|
+
colorLinkActive: string;
|
|
4779
|
+
sizeXXL: number;
|
|
4780
|
+
sizeXL: number;
|
|
4781
|
+
sizeLG: number;
|
|
4782
|
+
sizeMD: number;
|
|
4783
|
+
sizeMS: number;
|
|
4784
|
+
size: number;
|
|
4785
|
+
sizeSM: number;
|
|
4786
|
+
sizeXS: number;
|
|
4787
|
+
sizeXXS: number;
|
|
4788
|
+
controlHeightXS: number;
|
|
4789
|
+
controlHeightSM: number;
|
|
4790
|
+
controlHeightLG: number;
|
|
4791
|
+
lineWidthBold: number;
|
|
4792
|
+
borderRadiusXS: number;
|
|
4793
|
+
borderRadiusSM: number;
|
|
4794
|
+
borderRadiusLG: number;
|
|
4795
|
+
borderRadiusOuter: number;
|
|
4796
|
+
fontSizeSM: number;
|
|
4797
|
+
fontSizeLG: number;
|
|
4798
|
+
fontSizeXL: number;
|
|
4799
|
+
fontSizeHeading1: number;
|
|
4800
|
+
fontSizeHeading2: number;
|
|
4801
|
+
fontSizeHeading3: number;
|
|
4802
|
+
fontSizeHeading4: number;
|
|
4803
|
+
fontSizeHeading5: number;
|
|
4804
|
+
lineHeight: number;
|
|
4805
|
+
lineHeightLG: number;
|
|
4806
|
+
lineHeightSM: number;
|
|
4807
|
+
lineHeightHeading1: number;
|
|
4808
|
+
lineHeightHeading2: number;
|
|
4809
|
+
lineHeightHeading3: number;
|
|
4810
|
+
lineHeightHeading4: number;
|
|
4811
|
+
lineHeightHeading5: number;
|
|
4812
|
+
motionDurationFast: string;
|
|
4813
|
+
motionDurationMid: string;
|
|
4814
|
+
motionDurationSlow: string;
|
|
4815
|
+
};
|
|
4816
|
+
|
|
4817
|
+
export { A, type AProps, Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, ActionIcon, ActionIconGroup, type ActionIconGroupEvent, type MenuItemType as ActionIconGroupItemType, type ActionIconGroupProps, type ActionIconProps, type ActionIconSize, Alert, type AlertProps, AutoComplete, type AutoCompleteProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type BaseMenuItemType, Block, type BlockProps, Burger, type BurgerProps, Button, type ButtonProps, type CDN, CLASSNAMES, CUSTOM_SELECT_CONTAINER_ATTR, CardForm, type CardFormProps, Checkbox, CheckboxGroup, type CheckboxGroupOption, type CheckboxGroupProps, type CheckboxProps, CodeDiff, type CodeDiffProps, CodeEditor, type CodeEditorProps, Collapse, type CollapseItemType, type CollapseProps, type ColorPalettes, type ColorPalettesAlpha, ColorSwatches, type ColorSwatchesProps, type ColorToken, type Config, ConfigProvider, type ContextMenuCheckboxItem, ContextMenuHost, type ContextMenuItem, ContextMenuTrigger, CopyButton, type CopyButtonProps, DROPDOWN_MENU_CONTAINER_ATTR, DatePicker, type DatePickerProps, type DiffViewMode, type DivProps, DownloadButton, type DownloadButtonProps, DraggablePanel, DraggablePanelBody, type DraggablePanelBodyProps, DraggablePanelContainer, type DraggablePanelContainerProps, DraggablePanelFooter, type DraggablePanelFooterProps, DraggablePanelHeader, type DraggablePanelHeaderProps, type DraggablePanelProps, DraggableSideNav, type DraggableSideNavProps, Drawer, type DrawerProps, Dropdown, type DropdownItem, DropdownMenu, type DropdownMenuCheckboxItem, DropdownMenuCheckboxItemIndicator, DropdownMenuCheckboxItemPrimitive, DropdownMenuGroup, DropdownMenuGroupLabel, type DropdownMenuGroupLabelProps, DropdownMenuItem, DropdownMenuItemContent, type DropdownMenuItemContentProps, DropdownMenuItemExtra, type DropdownMenuItemExtraProps, DropdownMenuItemIcon, type DropdownMenuItemIconProps, DropdownMenuItemLabel, type DropdownMenuItemLabelProps, type DropdownMenuItemProps, type MenuItemType as DropdownMenuItemType, type DropdownMenuPlacement, DropdownMenuPopup, type DropdownMenuPopupProps, DropdownMenuPortal, type DropdownMenuPortalProps, DropdownMenuPositioner, type DropdownMenuPositionerProps, type DropdownMenuProps, DropdownMenuRoot, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuSubmenuArrow, type DropdownMenuSubmenuArrowProps, DropdownMenuSubmenuRoot, DropdownMenuSubmenuTrigger, type DropdownMenuSubmenuTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, type DropdownProps, EditableText, type EditableTextProps, EditorSlashMenu, EditorSlashMenuGroup$1 as EditorSlashMenuGroup, type EditorSlashMenuItems, type EditorSlashMenuOption, EmojiPicker, type EmojiPickerProps, Empty, type EmptyProps, FileTypeIcon, type FileTypeIconProps, Flex, type FlexDirection, type FlexProps, FluentEmoji, type FluentEmojiProps, FontLoader, type FontLoaderProps, Footer, type FooterProps, FormComponentImpl as Form, FormCheckbox, type FormConfig, FormDatePicker, FormError, type FormFieldRules, FormGroup, FormInput, type FormInstance, FormLabel, FormModal, type FormModalProps, type FormProps, FormSegment, FormSelect, type FormState, FormSwitch, FormTimePicker, type GenericItemType, Grid, type GridProps, GroupAvatar, type GroupAvatarProps, GuideCard, type GuideCardProps, Header, type HeaderProps, Highlighter, type HighlighterProps, Hotkey, HotkeyInput, type HotkeyInputProps, type HotkeyProps, I18nProvider, type I18nProviderProps, Icon, type IconProps$1 as IconProps, IconProvider, type IconSize, Image, type ImageProps$1 as ImageProps, ImageSelect, type ImageSelectItem, type ImageSelectProps, type ImgProps, type ImperativeModalProps, Input, InputMask, type InputMaskProps, InputNumber, type InputNumberProps, InputOPT, type InputOPTProps, InputPassword, type InputPasswordProps, type InputProps, type ItemType, KeyMapEnum, Layout, LayoutFooter, type LayoutFooterProps, LayoutHeader, type LayoutHeaderProps, LayoutMain, type LayoutMainProps, type LayoutProps, LayoutSidebar, LayoutSidebarInner, type LayoutSidebarInnerProps, type LayoutSidebarProps, LayoutToc, type LayoutTocProps, A as Link, List, ListItem, type ListItemProps, type ListProps, type LobeCustomStylish, type LobeCustomToken, I18nProvider as LobeUIProvider, Markdown, type MarkdownProps, MaskShadow, type MaskShadowProps, MaterialFileTypeIcon, type MaterialFileTypeIconProps, Menu, type MenuCheckboxItemType, type MenuItemType, type MenuProps, Mermaid, type MermaidProps, Meta, type MetaProps, Modal, ModalHost, type ModalHostProps, type ModalInstance, type ModalProps, ModalProvider, MotionComponent, type MotionComponentType, MotionProvider, type NeutralColors, type NeutralColorsObj, POPOVER_CONTAINER_ATTR, PatchDiff, type PatchDiffProps, type Placement, type PlacementConfig, Popover, PopoverArrow, type PopoverArrowAtomProps, PopoverArrowIcon, PopoverBackdrop, type PopoverContextValue, PopoverGroup, type PopoverPlacement, PopoverPopup, type PopoverPopupAtomProps, PopoverPortal, type PopoverPortalAtomProps, PopoverPositioner, type PopoverPositionerAtomProps, type PopoverProps, PopoverProvider, PopoverRoot, type PopoverTrigger, PopoverTriggerElement, type PopoverTriggerElementProps, PopoverViewport, type PopoverViewportAtomProps, type PresetColorKey, type PresetColorType, type PresetSystemColorKey, type PresetSystemColorType, PreviewGroup, type PreviewGroupProps, type PrimaryColors, type PrimaryColorsObj, type RawModalComponent, type RawModalComponentProps, type RawModalInstance, type RawModalKeyOptions, type RawModalOptions, SELECT_CONTAINER_ATTR, ScrollArea, ScrollAreaContent, type ScrollAreaContentProps, ScrollAreaCorner, type ScrollAreaCornerProps, type ScrollAreaProps, ScrollAreaRoot, type ScrollAreaRootProps, ScrollAreaScrollbar, type ScrollAreaScrollbarProps, ScrollAreaThumb, type ScrollAreaThumbProps, ScrollAreaViewport, type ScrollAreaViewportProps, ScrollShadow, type ScrollShadowProps, SearchBar, type SearchBarProps, SearchResultCards, type SearchResultCardsProps, Segmented, type SegmentedProps, Select, SelectArrow, type SelectArrowProps, SelectBackdrop, type SelectBehaviorVariant, type SelectClassNames, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectIcon, type SelectIconProps, type SelectIndicatorVariant, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectList, type SelectListProps, type SelectOption, type SelectOptionGroup, type SelectOptions, SelectPopup, type SelectPopupProps, SelectPortal, type SelectPortalProps, SelectPositioner, type SelectPositionerProps, type SelectProps, SelectRoot, SelectScrollDownArrow, type SelectScrollDownArrowProps, SelectScrollUpArrow, type SelectScrollUpArrowProps, SelectSeparator, type SelectSize, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, type SelectVariant, _default as ShikiLobeTheme, SideNav, type SideNavProps, Skeleton, SkeletonAvatar, type SkeletonAvatarProps, SkeletonBlock, type SkeletonBlockProps, SkeletonButton, type SkeletonButtonProps, SkeletonParagraph, type SkeletonParagraphProps, type SkeletonProps, SkeletonTags, type SkeletonTagsProps, SkeletonTitle, type SkeletonTitleProps, SliderWithInput, type SliderWithInputProps, Snippet, type SnippetProps, SortableList, type SortableListProps, type SpanProps, type SvgProps, Switch, type SwitchChangeEventHandler, type SwitchClassNames, type SwitchClickEventHandler, type SwitchContextType, SwitchIcon, type SwitchIconPosition, type SwitchIconProps, type SwitchProps, SwitchRoot, type SwitchRootProps, type SwitchSize, type SwitchStyles, SwitchThumb, type SwitchThumbProps, SyntaxHighlighter, type SyntaxHighlighterProps, SyntaxMermaid, type SyntaxMermaidProps, type SystemColorToken, Table, type TableColumn, type TableDataSource, type TablePageSizeConfig, type TableProps, type TableReadConfig, Tabs, type TabsProps, Tag, type TagProps, Text, TextArea, type TextAreaProps, type TextProps, ThemeProvider, type ThemeProviderProps, ThemeSwitch, type ThemeSwitchProps, TimePicker, type Meridiem as TimePickerMeridiem, type TimePickerProps, type TimeValue as TimePickerValue, type ToastAPI, ToastHost, type ToastHostProps, type ToastInstance, type ToastOptions, type ToastPosition, type ToastPromiseOptions, type ToastProps, type ToastType, Toc, type TocProps, Tooltip, TooltipGroup, type TooltipProps, type Trigger, Typography, type TypographyProps, type UseFormReturn, Video, type VideoProps$1 as VideoProps, closeContextMenu, combineKeys, copyToClipboard, createModal, createRawModal, findCustomThemeName, genCdnUrl, generateColorNeutralPalette, generateColorPalette, highlighterThemes, generateCustomStylish as lobeCustomStylish, generateCustomToken as lobeCustomToken, staticStylish as lobeStaticStylish, styles as menuSharedStyles, mermaidThemes, neutralColors, neutralColorsSwatches, placementMap, preprocessMarkdownContent, preventDefault, preventDefaultAndStopPropagation, primaryColors, primaryColorsSwatches, rehypeCustomFootnotes, rehypeKatexDir, rehypeStreamAnimated, remarkBr, remarkColor, remarkCustomFootnotes, remarkGfmPlus, remarkVideo, renderDropdownMenuItems, runRules, showContextMenu, stopPropagation, toFloatingUIPlacement, toast, updateContextMenuItems, useCdnFn, useForm, useModalContext, useMotionComponent, usePopoverContext, usePopoverPortalContainer, useSwitchContext, useToast, useToken, useTranslation };
|