@xsolla/xui-core 0.160.2 → 0.161.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/index.d.mts +1017 -201
- package/index.d.ts +1017 -201
- package/index.js +211 -90
- package/index.js.map +1 -1
- package/index.mjs +208 -90
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -2515,6 +2515,308 @@ declare const radius: {
|
|
|
2515
2515
|
avatarLarge: number;
|
|
2516
2516
|
avatarCircle: number;
|
|
2517
2517
|
};
|
|
2518
|
+
/** Primitive radius scale. Mirrors Figma "Scale / radius/*" variables. */
|
|
2519
|
+
declare const radiusScale: {
|
|
2520
|
+
readonly "25": 2;
|
|
2521
|
+
readonly "50": 4;
|
|
2522
|
+
readonly "75": 6;
|
|
2523
|
+
readonly "100": 8;
|
|
2524
|
+
readonly "150": 12;
|
|
2525
|
+
readonly "200": 16;
|
|
2526
|
+
readonly "250": 20;
|
|
2527
|
+
readonly "300": 24;
|
|
2528
|
+
readonly "350": 28;
|
|
2529
|
+
readonly "400": 32;
|
|
2530
|
+
readonly "999": 999;
|
|
2531
|
+
};
|
|
2532
|
+
/** Primitive border-width scale. Mirrors Figma "Scale / stroke/*" variables. */
|
|
2533
|
+
declare const stroke: {
|
|
2534
|
+
readonly "1": 1;
|
|
2535
|
+
readonly "2": 2;
|
|
2536
|
+
readonly "3": 3;
|
|
2537
|
+
};
|
|
2538
|
+
|
|
2539
|
+
/**
|
|
2540
|
+
* Semantic shape tokens. Mirrors Figma "Theme / Shape" variable collection,
|
|
2541
|
+
* Xsolla Default mode. Values alias into the radiusScale and stroke primitives.
|
|
2542
|
+
*/
|
|
2543
|
+
declare const shape: {
|
|
2544
|
+
readonly button: {
|
|
2545
|
+
readonly xl: {
|
|
2546
|
+
readonly borderRadius: 8;
|
|
2547
|
+
readonly borderWidth: 1;
|
|
2548
|
+
};
|
|
2549
|
+
readonly lg: {
|
|
2550
|
+
readonly borderRadius: 8;
|
|
2551
|
+
readonly borderWidth: 1;
|
|
2552
|
+
};
|
|
2553
|
+
readonly md: {
|
|
2554
|
+
readonly borderRadius: 6;
|
|
2555
|
+
readonly borderWidth: 1;
|
|
2556
|
+
};
|
|
2557
|
+
readonly sm: {
|
|
2558
|
+
readonly borderRadius: 4;
|
|
2559
|
+
readonly borderWidth: 1;
|
|
2560
|
+
};
|
|
2561
|
+
readonly xs: {
|
|
2562
|
+
readonly borderRadius: 4;
|
|
2563
|
+
readonly borderWidth: 1;
|
|
2564
|
+
};
|
|
2565
|
+
};
|
|
2566
|
+
readonly checkbox: {
|
|
2567
|
+
readonly xl: {
|
|
2568
|
+
readonly borderRadius: 4;
|
|
2569
|
+
readonly borderWidth: 1;
|
|
2570
|
+
};
|
|
2571
|
+
readonly lg: {
|
|
2572
|
+
readonly borderRadius: 4;
|
|
2573
|
+
readonly borderWidth: 1;
|
|
2574
|
+
};
|
|
2575
|
+
readonly md: {
|
|
2576
|
+
readonly borderRadius: 4;
|
|
2577
|
+
readonly borderWidth: 1;
|
|
2578
|
+
};
|
|
2579
|
+
readonly sm: {
|
|
2580
|
+
readonly borderRadius: 4;
|
|
2581
|
+
readonly borderWidth: 1;
|
|
2582
|
+
};
|
|
2583
|
+
};
|
|
2584
|
+
readonly input: {
|
|
2585
|
+
readonly xl: {
|
|
2586
|
+
readonly borderRadius: 8;
|
|
2587
|
+
readonly borderWidth: 1;
|
|
2588
|
+
};
|
|
2589
|
+
readonly lg: {
|
|
2590
|
+
readonly borderRadius: 8;
|
|
2591
|
+
readonly borderWidth: 1;
|
|
2592
|
+
};
|
|
2593
|
+
readonly md: {
|
|
2594
|
+
readonly borderRadius: 8;
|
|
2595
|
+
readonly borderWidth: 1;
|
|
2596
|
+
};
|
|
2597
|
+
readonly sm: {
|
|
2598
|
+
readonly borderRadius: 4;
|
|
2599
|
+
readonly borderWidth: 1;
|
|
2600
|
+
};
|
|
2601
|
+
readonly xs: {
|
|
2602
|
+
readonly borderRadius: 4;
|
|
2603
|
+
readonly borderWidth: 1;
|
|
2604
|
+
};
|
|
2605
|
+
};
|
|
2606
|
+
readonly segmented: {
|
|
2607
|
+
readonly xl: {
|
|
2608
|
+
readonly borderRadius: 8;
|
|
2609
|
+
readonly borderWidth: 1;
|
|
2610
|
+
};
|
|
2611
|
+
readonly lg: {
|
|
2612
|
+
readonly borderRadius: 8;
|
|
2613
|
+
readonly borderWidth: 1;
|
|
2614
|
+
};
|
|
2615
|
+
readonly md: {
|
|
2616
|
+
readonly borderRadius: 8;
|
|
2617
|
+
readonly borderWidth: 1;
|
|
2618
|
+
};
|
|
2619
|
+
readonly sm: {
|
|
2620
|
+
readonly borderRadius: 4;
|
|
2621
|
+
readonly borderWidth: 1;
|
|
2622
|
+
};
|
|
2623
|
+
};
|
|
2624
|
+
readonly segmentedItem: {
|
|
2625
|
+
readonly xl: {
|
|
2626
|
+
readonly borderRadius: 4;
|
|
2627
|
+
readonly borderWidth: 1;
|
|
2628
|
+
};
|
|
2629
|
+
readonly lg: {
|
|
2630
|
+
readonly borderRadius: 4;
|
|
2631
|
+
readonly borderWidth: 1;
|
|
2632
|
+
};
|
|
2633
|
+
readonly md: {
|
|
2634
|
+
readonly borderRadius: 4;
|
|
2635
|
+
readonly borderWidth: 1;
|
|
2636
|
+
};
|
|
2637
|
+
readonly sm: {
|
|
2638
|
+
readonly borderRadius: 2;
|
|
2639
|
+
readonly borderWidth: 1;
|
|
2640
|
+
};
|
|
2641
|
+
};
|
|
2642
|
+
readonly switch: {
|
|
2643
|
+
readonly xl: {
|
|
2644
|
+
readonly borderRadius: 4;
|
|
2645
|
+
readonly borderWidth: 1;
|
|
2646
|
+
};
|
|
2647
|
+
readonly lg: {
|
|
2648
|
+
readonly borderRadius: 4;
|
|
2649
|
+
readonly borderWidth: 1;
|
|
2650
|
+
};
|
|
2651
|
+
readonly md: {
|
|
2652
|
+
readonly borderRadius: 4;
|
|
2653
|
+
readonly borderWidth: 1;
|
|
2654
|
+
};
|
|
2655
|
+
readonly sm: {
|
|
2656
|
+
readonly borderRadius: 4;
|
|
2657
|
+
readonly borderWidth: 1;
|
|
2658
|
+
};
|
|
2659
|
+
};
|
|
2660
|
+
readonly knob: {
|
|
2661
|
+
readonly xl: {
|
|
2662
|
+
readonly borderRadius: 2;
|
|
2663
|
+
};
|
|
2664
|
+
readonly lg: {
|
|
2665
|
+
readonly borderRadius: 2;
|
|
2666
|
+
};
|
|
2667
|
+
readonly md: {
|
|
2668
|
+
readonly borderRadius: 2;
|
|
2669
|
+
};
|
|
2670
|
+
readonly sm: {
|
|
2671
|
+
readonly borderRadius: 2;
|
|
2672
|
+
};
|
|
2673
|
+
};
|
|
2674
|
+
readonly tabItem: {
|
|
2675
|
+
readonly xl: {
|
|
2676
|
+
readonly borderRadius: 8;
|
|
2677
|
+
};
|
|
2678
|
+
readonly lg: {
|
|
2679
|
+
readonly borderRadius: 8;
|
|
2680
|
+
};
|
|
2681
|
+
readonly md: {
|
|
2682
|
+
readonly borderRadius: 4;
|
|
2683
|
+
};
|
|
2684
|
+
readonly sm: {
|
|
2685
|
+
readonly borderRadius: 4;
|
|
2686
|
+
};
|
|
2687
|
+
};
|
|
2688
|
+
readonly tag: {
|
|
2689
|
+
readonly xl: {
|
|
2690
|
+
readonly borderRadius: 8;
|
|
2691
|
+
readonly borderWidth: 1;
|
|
2692
|
+
};
|
|
2693
|
+
readonly lg: {
|
|
2694
|
+
readonly borderRadius: 8;
|
|
2695
|
+
readonly borderWidth: 1;
|
|
2696
|
+
};
|
|
2697
|
+
readonly md: {
|
|
2698
|
+
readonly borderRadius: 6;
|
|
2699
|
+
readonly borderWidth: 1;
|
|
2700
|
+
};
|
|
2701
|
+
readonly sm: {
|
|
2702
|
+
readonly borderRadius: 4;
|
|
2703
|
+
readonly borderWidth: 1;
|
|
2704
|
+
};
|
|
2705
|
+
readonly xs: {
|
|
2706
|
+
readonly borderRadius: 4;
|
|
2707
|
+
readonly borderWidth: 1;
|
|
2708
|
+
};
|
|
2709
|
+
readonly label: {
|
|
2710
|
+
readonly borderRadius: 0;
|
|
2711
|
+
};
|
|
2712
|
+
};
|
|
2713
|
+
readonly tooltip: {
|
|
2714
|
+
readonly xl: {
|
|
2715
|
+
readonly borderRadius: 8;
|
|
2716
|
+
};
|
|
2717
|
+
readonly lg: {
|
|
2718
|
+
readonly borderRadius: 8;
|
|
2719
|
+
};
|
|
2720
|
+
readonly md: {
|
|
2721
|
+
readonly borderRadius: 8;
|
|
2722
|
+
};
|
|
2723
|
+
readonly sm: {
|
|
2724
|
+
readonly borderRadius: 4;
|
|
2725
|
+
};
|
|
2726
|
+
};
|
|
2727
|
+
readonly radio: {
|
|
2728
|
+
readonly xl: {
|
|
2729
|
+
readonly borderRadius: 999;
|
|
2730
|
+
readonly borderWidth: 1;
|
|
2731
|
+
};
|
|
2732
|
+
readonly lg: {
|
|
2733
|
+
readonly borderRadius: 999;
|
|
2734
|
+
readonly borderWidth: 1;
|
|
2735
|
+
};
|
|
2736
|
+
readonly md: {
|
|
2737
|
+
readonly borderRadius: 999;
|
|
2738
|
+
readonly borderWidth: 1;
|
|
2739
|
+
};
|
|
2740
|
+
readonly sm: {
|
|
2741
|
+
readonly borderRadius: 999;
|
|
2742
|
+
readonly borderWidth: 1;
|
|
2743
|
+
};
|
|
2744
|
+
};
|
|
2745
|
+
readonly contextMenu: {
|
|
2746
|
+
readonly xl: {
|
|
2747
|
+
readonly borderRadius: 8;
|
|
2748
|
+
};
|
|
2749
|
+
readonly lg: {
|
|
2750
|
+
readonly borderRadius: 8;
|
|
2751
|
+
};
|
|
2752
|
+
readonly md: {
|
|
2753
|
+
readonly borderRadius: 8;
|
|
2754
|
+
};
|
|
2755
|
+
readonly sm: {
|
|
2756
|
+
readonly borderRadius: 4;
|
|
2757
|
+
};
|
|
2758
|
+
readonly xs: {
|
|
2759
|
+
readonly borderRadius: 4;
|
|
2760
|
+
};
|
|
2761
|
+
};
|
|
2762
|
+
readonly avatar: {
|
|
2763
|
+
readonly xl: {
|
|
2764
|
+
readonly borderRadius: 8;
|
|
2765
|
+
readonly borderWidth: 2;
|
|
2766
|
+
};
|
|
2767
|
+
readonly lg: {
|
|
2768
|
+
readonly borderRadius: 6;
|
|
2769
|
+
readonly borderWidth: 2;
|
|
2770
|
+
};
|
|
2771
|
+
readonly md: {
|
|
2772
|
+
readonly borderRadius: 6;
|
|
2773
|
+
readonly borderWidth: 2;
|
|
2774
|
+
};
|
|
2775
|
+
readonly sm: {
|
|
2776
|
+
readonly borderRadius: 4;
|
|
2777
|
+
readonly borderWidth: 2;
|
|
2778
|
+
};
|
|
2779
|
+
readonly xs: {
|
|
2780
|
+
readonly borderRadius: 4;
|
|
2781
|
+
readonly borderWidth: 2;
|
|
2782
|
+
};
|
|
2783
|
+
readonly xxs: {
|
|
2784
|
+
readonly borderRadius: 2;
|
|
2785
|
+
readonly borderWidth: 2;
|
|
2786
|
+
};
|
|
2787
|
+
};
|
|
2788
|
+
readonly modal: {
|
|
2789
|
+
readonly borderRadius: 8;
|
|
2790
|
+
};
|
|
2791
|
+
readonly toast: {
|
|
2792
|
+
readonly borderRadius: 4;
|
|
2793
|
+
};
|
|
2794
|
+
readonly toggleButtonGroup: {
|
|
2795
|
+
readonly xl: {
|
|
2796
|
+
readonly borderRadius: 8;
|
|
2797
|
+
readonly borderWidth: 1;
|
|
2798
|
+
};
|
|
2799
|
+
readonly lg: {
|
|
2800
|
+
readonly borderRadius: 8;
|
|
2801
|
+
readonly borderWidth: 1;
|
|
2802
|
+
};
|
|
2803
|
+
readonly md: {
|
|
2804
|
+
readonly borderRadius: 6;
|
|
2805
|
+
readonly borderWidth: 1;
|
|
2806
|
+
};
|
|
2807
|
+
readonly sm: {
|
|
2808
|
+
readonly borderRadius: 4;
|
|
2809
|
+
readonly borderWidth: 1;
|
|
2810
|
+
};
|
|
2811
|
+
readonly xs: {
|
|
2812
|
+
readonly borderRadius: 4;
|
|
2813
|
+
readonly borderWidth: 1;
|
|
2814
|
+
};
|
|
2815
|
+
};
|
|
2816
|
+
readonly tagLabel: {
|
|
2817
|
+
readonly borderRadius: 0;
|
|
2818
|
+
};
|
|
2819
|
+
};
|
|
2518
2820
|
|
|
2519
2821
|
declare const shadow: {
|
|
2520
2822
|
active: string;
|
|
@@ -3912,17 +4214,282 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3912
4214
|
l: number;
|
|
3913
4215
|
xl: number;
|
|
3914
4216
|
};
|
|
3915
|
-
|
|
3916
|
-
button:
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
4217
|
+
shape: {
|
|
4218
|
+
readonly button: {
|
|
4219
|
+
readonly xl: {
|
|
4220
|
+
readonly borderRadius: 8;
|
|
4221
|
+
readonly borderWidth: 1;
|
|
4222
|
+
};
|
|
4223
|
+
readonly lg: {
|
|
4224
|
+
readonly borderRadius: 8;
|
|
4225
|
+
readonly borderWidth: 1;
|
|
4226
|
+
};
|
|
4227
|
+
readonly md: {
|
|
4228
|
+
readonly borderRadius: 6;
|
|
4229
|
+
readonly borderWidth: 1;
|
|
4230
|
+
};
|
|
4231
|
+
readonly sm: {
|
|
4232
|
+
readonly borderRadius: 4;
|
|
4233
|
+
readonly borderWidth: 1;
|
|
4234
|
+
};
|
|
4235
|
+
readonly xs: {
|
|
4236
|
+
readonly borderRadius: 4;
|
|
4237
|
+
readonly borderWidth: 1;
|
|
4238
|
+
};
|
|
4239
|
+
};
|
|
4240
|
+
readonly checkbox: {
|
|
4241
|
+
readonly xl: {
|
|
4242
|
+
readonly borderRadius: 4;
|
|
4243
|
+
readonly borderWidth: 1;
|
|
4244
|
+
};
|
|
4245
|
+
readonly lg: {
|
|
4246
|
+
readonly borderRadius: 4;
|
|
4247
|
+
readonly borderWidth: 1;
|
|
4248
|
+
};
|
|
4249
|
+
readonly md: {
|
|
4250
|
+
readonly borderRadius: 4;
|
|
4251
|
+
readonly borderWidth: 1;
|
|
4252
|
+
};
|
|
4253
|
+
readonly sm: {
|
|
4254
|
+
readonly borderRadius: 4;
|
|
4255
|
+
readonly borderWidth: 1;
|
|
4256
|
+
};
|
|
4257
|
+
};
|
|
4258
|
+
readonly input: {
|
|
4259
|
+
readonly xl: {
|
|
4260
|
+
readonly borderRadius: 8;
|
|
4261
|
+
readonly borderWidth: 1;
|
|
4262
|
+
};
|
|
4263
|
+
readonly lg: {
|
|
4264
|
+
readonly borderRadius: 8;
|
|
4265
|
+
readonly borderWidth: 1;
|
|
4266
|
+
};
|
|
4267
|
+
readonly md: {
|
|
4268
|
+
readonly borderRadius: 8;
|
|
4269
|
+
readonly borderWidth: 1;
|
|
4270
|
+
};
|
|
4271
|
+
readonly sm: {
|
|
4272
|
+
readonly borderRadius: 4;
|
|
4273
|
+
readonly borderWidth: 1;
|
|
4274
|
+
};
|
|
4275
|
+
readonly xs: {
|
|
4276
|
+
readonly borderRadius: 4;
|
|
4277
|
+
readonly borderWidth: 1;
|
|
4278
|
+
};
|
|
4279
|
+
};
|
|
4280
|
+
readonly segmented: {
|
|
4281
|
+
readonly xl: {
|
|
4282
|
+
readonly borderRadius: 8;
|
|
4283
|
+
readonly borderWidth: 1;
|
|
4284
|
+
};
|
|
4285
|
+
readonly lg: {
|
|
4286
|
+
readonly borderRadius: 8;
|
|
4287
|
+
readonly borderWidth: 1;
|
|
4288
|
+
};
|
|
4289
|
+
readonly md: {
|
|
4290
|
+
readonly borderRadius: 8;
|
|
4291
|
+
readonly borderWidth: 1;
|
|
4292
|
+
};
|
|
4293
|
+
readonly sm: {
|
|
4294
|
+
readonly borderRadius: 4;
|
|
4295
|
+
readonly borderWidth: 1;
|
|
4296
|
+
};
|
|
4297
|
+
};
|
|
4298
|
+
readonly segmentedItem: {
|
|
4299
|
+
readonly xl: {
|
|
4300
|
+
readonly borderRadius: 4;
|
|
4301
|
+
readonly borderWidth: 1;
|
|
4302
|
+
};
|
|
4303
|
+
readonly lg: {
|
|
4304
|
+
readonly borderRadius: 4;
|
|
4305
|
+
readonly borderWidth: 1;
|
|
4306
|
+
};
|
|
4307
|
+
readonly md: {
|
|
4308
|
+
readonly borderRadius: 4;
|
|
4309
|
+
readonly borderWidth: 1;
|
|
4310
|
+
};
|
|
4311
|
+
readonly sm: {
|
|
4312
|
+
readonly borderRadius: 2;
|
|
4313
|
+
readonly borderWidth: 1;
|
|
4314
|
+
};
|
|
4315
|
+
};
|
|
4316
|
+
readonly switch: {
|
|
4317
|
+
readonly xl: {
|
|
4318
|
+
readonly borderRadius: 4;
|
|
4319
|
+
readonly borderWidth: 1;
|
|
4320
|
+
};
|
|
4321
|
+
readonly lg: {
|
|
4322
|
+
readonly borderRadius: 4;
|
|
4323
|
+
readonly borderWidth: 1;
|
|
4324
|
+
};
|
|
4325
|
+
readonly md: {
|
|
4326
|
+
readonly borderRadius: 4;
|
|
4327
|
+
readonly borderWidth: 1;
|
|
4328
|
+
};
|
|
4329
|
+
readonly sm: {
|
|
4330
|
+
readonly borderRadius: 4;
|
|
4331
|
+
readonly borderWidth: 1;
|
|
4332
|
+
};
|
|
4333
|
+
};
|
|
4334
|
+
readonly knob: {
|
|
4335
|
+
readonly xl: {
|
|
4336
|
+
readonly borderRadius: 2;
|
|
4337
|
+
};
|
|
4338
|
+
readonly lg: {
|
|
4339
|
+
readonly borderRadius: 2;
|
|
4340
|
+
};
|
|
4341
|
+
readonly md: {
|
|
4342
|
+
readonly borderRadius: 2;
|
|
4343
|
+
};
|
|
4344
|
+
readonly sm: {
|
|
4345
|
+
readonly borderRadius: 2;
|
|
4346
|
+
};
|
|
4347
|
+
};
|
|
4348
|
+
readonly tabItem: {
|
|
4349
|
+
readonly xl: {
|
|
4350
|
+
readonly borderRadius: 8;
|
|
4351
|
+
};
|
|
4352
|
+
readonly lg: {
|
|
4353
|
+
readonly borderRadius: 8;
|
|
4354
|
+
};
|
|
4355
|
+
readonly md: {
|
|
4356
|
+
readonly borderRadius: 4;
|
|
4357
|
+
};
|
|
4358
|
+
readonly sm: {
|
|
4359
|
+
readonly borderRadius: 4;
|
|
4360
|
+
};
|
|
4361
|
+
};
|
|
4362
|
+
readonly tag: {
|
|
4363
|
+
readonly xl: {
|
|
4364
|
+
readonly borderRadius: 8;
|
|
4365
|
+
readonly borderWidth: 1;
|
|
4366
|
+
};
|
|
4367
|
+
readonly lg: {
|
|
4368
|
+
readonly borderRadius: 8;
|
|
4369
|
+
readonly borderWidth: 1;
|
|
4370
|
+
};
|
|
4371
|
+
readonly md: {
|
|
4372
|
+
readonly borderRadius: 6;
|
|
4373
|
+
readonly borderWidth: 1;
|
|
4374
|
+
};
|
|
4375
|
+
readonly sm: {
|
|
4376
|
+
readonly borderRadius: 4;
|
|
4377
|
+
readonly borderWidth: 1;
|
|
4378
|
+
};
|
|
4379
|
+
readonly xs: {
|
|
4380
|
+
readonly borderRadius: 4;
|
|
4381
|
+
readonly borderWidth: 1;
|
|
4382
|
+
};
|
|
4383
|
+
readonly label: {
|
|
4384
|
+
readonly borderRadius: 0;
|
|
4385
|
+
};
|
|
4386
|
+
};
|
|
4387
|
+
readonly tooltip: {
|
|
4388
|
+
readonly xl: {
|
|
4389
|
+
readonly borderRadius: 8;
|
|
4390
|
+
};
|
|
4391
|
+
readonly lg: {
|
|
4392
|
+
readonly borderRadius: 8;
|
|
4393
|
+
};
|
|
4394
|
+
readonly md: {
|
|
4395
|
+
readonly borderRadius: 8;
|
|
4396
|
+
};
|
|
4397
|
+
readonly sm: {
|
|
4398
|
+
readonly borderRadius: 4;
|
|
4399
|
+
};
|
|
4400
|
+
};
|
|
4401
|
+
readonly radio: {
|
|
4402
|
+
readonly xl: {
|
|
4403
|
+
readonly borderRadius: 999;
|
|
4404
|
+
readonly borderWidth: 1;
|
|
4405
|
+
};
|
|
4406
|
+
readonly lg: {
|
|
4407
|
+
readonly borderRadius: 999;
|
|
4408
|
+
readonly borderWidth: 1;
|
|
4409
|
+
};
|
|
4410
|
+
readonly md: {
|
|
4411
|
+
readonly borderRadius: 999;
|
|
4412
|
+
readonly borderWidth: 1;
|
|
4413
|
+
};
|
|
4414
|
+
readonly sm: {
|
|
4415
|
+
readonly borderRadius: 999;
|
|
4416
|
+
readonly borderWidth: 1;
|
|
4417
|
+
};
|
|
4418
|
+
};
|
|
4419
|
+
readonly contextMenu: {
|
|
4420
|
+
readonly xl: {
|
|
4421
|
+
readonly borderRadius: 8;
|
|
4422
|
+
};
|
|
4423
|
+
readonly lg: {
|
|
4424
|
+
readonly borderRadius: 8;
|
|
4425
|
+
};
|
|
4426
|
+
readonly md: {
|
|
4427
|
+
readonly borderRadius: 8;
|
|
4428
|
+
};
|
|
4429
|
+
readonly sm: {
|
|
4430
|
+
readonly borderRadius: 4;
|
|
4431
|
+
};
|
|
4432
|
+
readonly xs: {
|
|
4433
|
+
readonly borderRadius: 4;
|
|
4434
|
+
};
|
|
4435
|
+
};
|
|
4436
|
+
readonly avatar: {
|
|
4437
|
+
readonly xl: {
|
|
4438
|
+
readonly borderRadius: 8;
|
|
4439
|
+
readonly borderWidth: 2;
|
|
4440
|
+
};
|
|
4441
|
+
readonly lg: {
|
|
4442
|
+
readonly borderRadius: 6;
|
|
4443
|
+
readonly borderWidth: 2;
|
|
4444
|
+
};
|
|
4445
|
+
readonly md: {
|
|
4446
|
+
readonly borderRadius: 6;
|
|
4447
|
+
readonly borderWidth: 2;
|
|
4448
|
+
};
|
|
4449
|
+
readonly sm: {
|
|
4450
|
+
readonly borderRadius: 4;
|
|
4451
|
+
readonly borderWidth: 2;
|
|
4452
|
+
};
|
|
4453
|
+
readonly xs: {
|
|
4454
|
+
readonly borderRadius: 4;
|
|
4455
|
+
readonly borderWidth: 2;
|
|
4456
|
+
};
|
|
4457
|
+
readonly xxs: {
|
|
4458
|
+
readonly borderRadius: 2;
|
|
4459
|
+
readonly borderWidth: 2;
|
|
4460
|
+
};
|
|
4461
|
+
};
|
|
4462
|
+
readonly modal: {
|
|
4463
|
+
readonly borderRadius: 8;
|
|
4464
|
+
};
|
|
4465
|
+
readonly toast: {
|
|
4466
|
+
readonly borderRadius: 4;
|
|
4467
|
+
};
|
|
4468
|
+
readonly toggleButtonGroup: {
|
|
4469
|
+
readonly xl: {
|
|
4470
|
+
readonly borderRadius: 8;
|
|
4471
|
+
readonly borderWidth: 1;
|
|
4472
|
+
};
|
|
4473
|
+
readonly lg: {
|
|
4474
|
+
readonly borderRadius: 8;
|
|
4475
|
+
readonly borderWidth: 1;
|
|
4476
|
+
};
|
|
4477
|
+
readonly md: {
|
|
4478
|
+
readonly borderRadius: 6;
|
|
4479
|
+
readonly borderWidth: 1;
|
|
4480
|
+
};
|
|
4481
|
+
readonly sm: {
|
|
4482
|
+
readonly borderRadius: 4;
|
|
4483
|
+
readonly borderWidth: 1;
|
|
4484
|
+
};
|
|
4485
|
+
readonly xs: {
|
|
4486
|
+
readonly borderRadius: 4;
|
|
4487
|
+
readonly borderWidth: 1;
|
|
4488
|
+
};
|
|
4489
|
+
};
|
|
4490
|
+
readonly tagLabel: {
|
|
4491
|
+
readonly borderRadius: 0;
|
|
4492
|
+
};
|
|
3926
4493
|
};
|
|
3927
4494
|
shadow: {
|
|
3928
4495
|
active: string;
|
|
@@ -3956,7 +4523,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3956
4523
|
iconContainerSize: number;
|
|
3957
4524
|
iconPadding: number;
|
|
3958
4525
|
loadingPadding: number;
|
|
3959
|
-
borderRadius:
|
|
4526
|
+
borderRadius: 8;
|
|
3960
4527
|
labelIconSize: number;
|
|
3961
4528
|
labelIconGap: number;
|
|
3962
4529
|
} | {
|
|
@@ -3969,7 +4536,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3969
4536
|
iconContainerSize: number;
|
|
3970
4537
|
iconPadding: number;
|
|
3971
4538
|
loadingPadding: number;
|
|
3972
|
-
borderRadius:
|
|
4539
|
+
borderRadius: 8;
|
|
3973
4540
|
labelIconSize: number;
|
|
3974
4541
|
labelIconGap: number;
|
|
3975
4542
|
} | {
|
|
@@ -3982,7 +4549,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3982
4549
|
iconContainerSize: number;
|
|
3983
4550
|
iconPadding: number;
|
|
3984
4551
|
loadingPadding: number;
|
|
3985
|
-
borderRadius:
|
|
4552
|
+
borderRadius: 6;
|
|
3986
4553
|
labelIconSize: number;
|
|
3987
4554
|
labelIconGap: number;
|
|
3988
4555
|
} | {
|
|
@@ -3995,7 +4562,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3995
4562
|
iconContainerSize: number;
|
|
3996
4563
|
iconPadding: number;
|
|
3997
4564
|
loadingPadding: number;
|
|
3998
|
-
borderRadius:
|
|
4565
|
+
borderRadius: 4;
|
|
3999
4566
|
labelIconSize: number;
|
|
4000
4567
|
labelIconGap: number;
|
|
4001
4568
|
} | {
|
|
@@ -4008,7 +4575,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4008
4575
|
iconContainerSize: number;
|
|
4009
4576
|
iconPadding: number;
|
|
4010
4577
|
loadingPadding: number;
|
|
4011
|
-
borderRadius:
|
|
4578
|
+
borderRadius: 4;
|
|
4012
4579
|
labelIconSize: number;
|
|
4013
4580
|
labelIconGap: number;
|
|
4014
4581
|
};
|
|
@@ -4018,35 +4585,35 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4018
4585
|
fontSize: number;
|
|
4019
4586
|
spinnerSize: number;
|
|
4020
4587
|
iconSize: number;
|
|
4021
|
-
borderRadius:
|
|
4588
|
+
borderRadius: 4;
|
|
4022
4589
|
} | {
|
|
4023
4590
|
height: number;
|
|
4024
4591
|
padding: number;
|
|
4025
4592
|
fontSize: number;
|
|
4026
4593
|
spinnerSize: number;
|
|
4027
4594
|
iconSize: number;
|
|
4028
|
-
borderRadius:
|
|
4595
|
+
borderRadius: 4;
|
|
4029
4596
|
} | {
|
|
4030
4597
|
height: number;
|
|
4031
4598
|
padding: number;
|
|
4032
4599
|
fontSize: number;
|
|
4033
4600
|
spinnerSize: number;
|
|
4034
4601
|
iconSize: number;
|
|
4035
|
-
borderRadius:
|
|
4602
|
+
borderRadius: 2;
|
|
4036
4603
|
} | {
|
|
4037
4604
|
height: number;
|
|
4038
4605
|
padding: number;
|
|
4039
4606
|
fontSize: number;
|
|
4040
4607
|
spinnerSize: number;
|
|
4041
4608
|
iconSize: number;
|
|
4042
|
-
borderRadius:
|
|
4609
|
+
borderRadius: 2;
|
|
4043
4610
|
} | {
|
|
4044
4611
|
height: number;
|
|
4045
4612
|
padding: number;
|
|
4046
4613
|
fontSize: number;
|
|
4047
4614
|
spinnerSize: number;
|
|
4048
4615
|
iconSize: number;
|
|
4049
|
-
borderRadius:
|
|
4616
|
+
borderRadius: 2;
|
|
4050
4617
|
};
|
|
4051
4618
|
checkbox: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4052
4619
|
size: number;
|
|
@@ -4054,28 +4621,28 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4054
4621
|
descriptionFontSize: number;
|
|
4055
4622
|
labelGap: number;
|
|
4056
4623
|
textGap: number;
|
|
4057
|
-
borderRadius:
|
|
4624
|
+
borderRadius: 4;
|
|
4058
4625
|
} | {
|
|
4059
4626
|
size: number;
|
|
4060
4627
|
fontSize: number;
|
|
4061
4628
|
descriptionFontSize: number;
|
|
4062
4629
|
labelGap: number;
|
|
4063
4630
|
textGap: number;
|
|
4064
|
-
borderRadius:
|
|
4631
|
+
borderRadius: 4;
|
|
4065
4632
|
} | {
|
|
4066
4633
|
size: number;
|
|
4067
4634
|
fontSize: number;
|
|
4068
4635
|
descriptionFontSize: number;
|
|
4069
4636
|
labelGap: number;
|
|
4070
4637
|
textGap: number;
|
|
4071
|
-
borderRadius:
|
|
4638
|
+
borderRadius: 4;
|
|
4072
4639
|
} | {
|
|
4073
4640
|
size: number;
|
|
4074
4641
|
fontSize: number;
|
|
4075
4642
|
descriptionFontSize: number;
|
|
4076
4643
|
labelGap: number;
|
|
4077
4644
|
textGap: number;
|
|
4078
|
-
borderRadius:
|
|
4645
|
+
borderRadius: 4;
|
|
4079
4646
|
};
|
|
4080
4647
|
radio: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4081
4648
|
size: number;
|
|
@@ -4124,7 +4691,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4124
4691
|
paddingHorizontal: number;
|
|
4125
4692
|
fontSize: number;
|
|
4126
4693
|
iconSize: number;
|
|
4127
|
-
radius:
|
|
4694
|
+
radius: 8;
|
|
4128
4695
|
borderWidth: number;
|
|
4129
4696
|
fieldGap: number;
|
|
4130
4697
|
lineHeight: number;
|
|
@@ -4134,7 +4701,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4134
4701
|
paddingHorizontal: number;
|
|
4135
4702
|
fontSize: number;
|
|
4136
4703
|
iconSize: number;
|
|
4137
|
-
radius:
|
|
4704
|
+
radius: 8;
|
|
4138
4705
|
borderWidth: number;
|
|
4139
4706
|
fieldGap: number;
|
|
4140
4707
|
lineHeight: number;
|
|
@@ -4144,7 +4711,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4144
4711
|
paddingHorizontal: number;
|
|
4145
4712
|
fontSize: number;
|
|
4146
4713
|
iconSize: number;
|
|
4147
|
-
radius:
|
|
4714
|
+
radius: 8;
|
|
4148
4715
|
borderWidth: number;
|
|
4149
4716
|
fieldGap: number;
|
|
4150
4717
|
lineHeight: number;
|
|
@@ -4154,7 +4721,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4154
4721
|
paddingHorizontal: number;
|
|
4155
4722
|
fontSize: number;
|
|
4156
4723
|
iconSize: number;
|
|
4157
|
-
radius:
|
|
4724
|
+
radius: 4;
|
|
4158
4725
|
borderWidth: number;
|
|
4159
4726
|
fieldGap: number;
|
|
4160
4727
|
lineHeight: number;
|
|
@@ -4164,7 +4731,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4164
4731
|
paddingHorizontal: number;
|
|
4165
4732
|
fontSize: number;
|
|
4166
4733
|
iconSize: number;
|
|
4167
|
-
radius:
|
|
4734
|
+
radius: 4;
|
|
4168
4735
|
borderWidth: number;
|
|
4169
4736
|
fieldGap: number;
|
|
4170
4737
|
lineHeight: number;
|
|
@@ -4181,7 +4748,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4181
4748
|
errorFontSize: number;
|
|
4182
4749
|
errorLineHeight: number;
|
|
4183
4750
|
errorGap: number;
|
|
4184
|
-
radius:
|
|
4751
|
+
radius: 8;
|
|
4185
4752
|
borderWidth: number;
|
|
4186
4753
|
} | {
|
|
4187
4754
|
box: number;
|
|
@@ -4195,7 +4762,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4195
4762
|
errorFontSize: number;
|
|
4196
4763
|
errorLineHeight: number;
|
|
4197
4764
|
errorGap: number;
|
|
4198
|
-
radius:
|
|
4765
|
+
radius: 8;
|
|
4199
4766
|
borderWidth: number;
|
|
4200
4767
|
} | {
|
|
4201
4768
|
box: number;
|
|
@@ -4209,7 +4776,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4209
4776
|
errorFontSize: number;
|
|
4210
4777
|
errorLineHeight: number;
|
|
4211
4778
|
errorGap: number;
|
|
4212
|
-
radius:
|
|
4779
|
+
radius: 8;
|
|
4213
4780
|
borderWidth: number;
|
|
4214
4781
|
} | {
|
|
4215
4782
|
box: number;
|
|
@@ -4223,7 +4790,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4223
4790
|
errorFontSize: number;
|
|
4224
4791
|
errorLineHeight: number;
|
|
4225
4792
|
errorGap: number;
|
|
4226
|
-
radius:
|
|
4793
|
+
radius: 4;
|
|
4227
4794
|
borderWidth: number;
|
|
4228
4795
|
} | {
|
|
4229
4796
|
box: number;
|
|
@@ -4237,7 +4804,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4237
4804
|
errorFontSize: number;
|
|
4238
4805
|
errorLineHeight: number;
|
|
4239
4806
|
errorGap: number;
|
|
4240
|
-
radius:
|
|
4807
|
+
radius: 4;
|
|
4241
4808
|
borderWidth: number;
|
|
4242
4809
|
};
|
|
4243
4810
|
dragDropUploader: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
@@ -4385,35 +4952,35 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4385
4952
|
size: number;
|
|
4386
4953
|
gap: number;
|
|
4387
4954
|
fontSize: number;
|
|
4388
|
-
radius:
|
|
4955
|
+
radius: 8;
|
|
4389
4956
|
borderWidth: number;
|
|
4390
4957
|
fieldGap: number;
|
|
4391
4958
|
} | {
|
|
4392
4959
|
size: number;
|
|
4393
4960
|
gap: number;
|
|
4394
4961
|
fontSize: number;
|
|
4395
|
-
radius:
|
|
4962
|
+
radius: 8;
|
|
4396
4963
|
borderWidth: number;
|
|
4397
4964
|
fieldGap: number;
|
|
4398
4965
|
} | {
|
|
4399
4966
|
size: number;
|
|
4400
4967
|
gap: number;
|
|
4401
4968
|
fontSize: number;
|
|
4402
|
-
radius:
|
|
4969
|
+
radius: 8;
|
|
4403
4970
|
borderWidth: number;
|
|
4404
4971
|
fieldGap: number;
|
|
4405
4972
|
} | {
|
|
4406
4973
|
size: number;
|
|
4407
4974
|
gap: number;
|
|
4408
4975
|
fontSize: number;
|
|
4409
|
-
radius:
|
|
4976
|
+
radius: 4;
|
|
4410
4977
|
borderWidth: number;
|
|
4411
4978
|
fieldGap: number;
|
|
4412
4979
|
} | {
|
|
4413
4980
|
size: number;
|
|
4414
4981
|
gap: number;
|
|
4415
4982
|
fontSize: number;
|
|
4416
|
-
radius:
|
|
4983
|
+
radius: 4;
|
|
4417
4984
|
borderWidth: number;
|
|
4418
4985
|
fieldGap: number;
|
|
4419
4986
|
};
|
|
@@ -4422,31 +4989,31 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4422
4989
|
padding: number;
|
|
4423
4990
|
fontSize: number;
|
|
4424
4991
|
iconSize: number;
|
|
4425
|
-
radius:
|
|
4992
|
+
radius: 8;
|
|
4426
4993
|
} | {
|
|
4427
4994
|
height: number;
|
|
4428
4995
|
padding: number;
|
|
4429
4996
|
fontSize: number;
|
|
4430
4997
|
iconSize: number;
|
|
4431
|
-
radius:
|
|
4998
|
+
radius: 8;
|
|
4432
4999
|
} | {
|
|
4433
5000
|
height: number;
|
|
4434
5001
|
padding: number;
|
|
4435
5002
|
fontSize: number;
|
|
4436
5003
|
iconSize: number;
|
|
4437
|
-
radius:
|
|
5004
|
+
radius: 8;
|
|
4438
5005
|
} | {
|
|
4439
5006
|
height: number;
|
|
4440
5007
|
padding: number;
|
|
4441
5008
|
fontSize: number;
|
|
4442
5009
|
iconSize: number;
|
|
4443
|
-
radius:
|
|
5010
|
+
radius: 4;
|
|
4444
5011
|
} | {
|
|
4445
5012
|
height: number;
|
|
4446
5013
|
padding: number;
|
|
4447
5014
|
fontSize: number;
|
|
4448
5015
|
iconSize: number;
|
|
4449
|
-
radius:
|
|
5016
|
+
radius: 4;
|
|
4450
5017
|
};
|
|
4451
5018
|
switch: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4452
5019
|
width: number;
|
|
@@ -4458,8 +5025,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4458
5025
|
descriptionLineHeight: number;
|
|
4459
5026
|
labelGap: number;
|
|
4460
5027
|
textGap: number;
|
|
4461
|
-
frameBorderRadius:
|
|
4462
|
-
knobBorderRadius:
|
|
5028
|
+
frameBorderRadius: 4;
|
|
5029
|
+
knobBorderRadius: 2;
|
|
4463
5030
|
} | {
|
|
4464
5031
|
width: number;
|
|
4465
5032
|
height: number;
|
|
@@ -4470,8 +5037,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4470
5037
|
descriptionLineHeight: number;
|
|
4471
5038
|
labelGap: number;
|
|
4472
5039
|
textGap: number;
|
|
4473
|
-
frameBorderRadius:
|
|
4474
|
-
knobBorderRadius:
|
|
5040
|
+
frameBorderRadius: 4;
|
|
5041
|
+
knobBorderRadius: 2;
|
|
4475
5042
|
} | {
|
|
4476
5043
|
width: number;
|
|
4477
5044
|
height: number;
|
|
@@ -4482,8 +5049,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4482
5049
|
descriptionLineHeight: number;
|
|
4483
5050
|
labelGap: number;
|
|
4484
5051
|
textGap: number;
|
|
4485
|
-
frameBorderRadius:
|
|
4486
|
-
knobBorderRadius:
|
|
5052
|
+
frameBorderRadius: 4;
|
|
5053
|
+
knobBorderRadius: 2;
|
|
4487
5054
|
} | {
|
|
4488
5055
|
width: number;
|
|
4489
5056
|
height: number;
|
|
@@ -4494,8 +5061,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4494
5061
|
descriptionLineHeight: number;
|
|
4495
5062
|
labelGap: number;
|
|
4496
5063
|
textGap: number;
|
|
4497
|
-
frameBorderRadius:
|
|
4498
|
-
knobBorderRadius:
|
|
5064
|
+
frameBorderRadius: 4;
|
|
5065
|
+
knobBorderRadius: 2;
|
|
4499
5066
|
};
|
|
4500
5067
|
avatar: (size: "xl" | "lg" | "md" | "sm" | "xs" | "xxs") => {
|
|
4501
5068
|
size: number;
|
|
@@ -4510,8 +5077,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4510
5077
|
right: number;
|
|
4511
5078
|
top: number;
|
|
4512
5079
|
};
|
|
4513
|
-
borderRadiusSquare:
|
|
4514
|
-
borderRadiusCircle:
|
|
5080
|
+
borderRadiusSquare: 8;
|
|
5081
|
+
borderRadiusCircle: 999;
|
|
4515
5082
|
} | {
|
|
4516
5083
|
size: number;
|
|
4517
5084
|
fontSize: number;
|
|
@@ -4525,8 +5092,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4525
5092
|
right: number;
|
|
4526
5093
|
top: number;
|
|
4527
5094
|
};
|
|
4528
|
-
borderRadiusSquare:
|
|
4529
|
-
borderRadiusCircle:
|
|
5095
|
+
borderRadiusSquare: 6;
|
|
5096
|
+
borderRadiusCircle: 999;
|
|
4530
5097
|
} | {
|
|
4531
5098
|
size: number;
|
|
4532
5099
|
fontSize: number;
|
|
@@ -4540,8 +5107,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4540
5107
|
right: number;
|
|
4541
5108
|
top: number;
|
|
4542
5109
|
};
|
|
4543
|
-
borderRadiusSquare:
|
|
4544
|
-
borderRadiusCircle:
|
|
5110
|
+
borderRadiusSquare: 6;
|
|
5111
|
+
borderRadiusCircle: 999;
|
|
4545
5112
|
} | {
|
|
4546
5113
|
size: number;
|
|
4547
5114
|
fontSize: number;
|
|
@@ -4555,8 +5122,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4555
5122
|
right: number;
|
|
4556
5123
|
top: number;
|
|
4557
5124
|
};
|
|
4558
|
-
borderRadiusSquare:
|
|
4559
|
-
borderRadiusCircle:
|
|
5125
|
+
borderRadiusSquare: 4;
|
|
5126
|
+
borderRadiusCircle: 999;
|
|
4560
5127
|
} | {
|
|
4561
5128
|
size: number;
|
|
4562
5129
|
fontSize: number;
|
|
@@ -4570,8 +5137,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4570
5137
|
right: number;
|
|
4571
5138
|
top: number;
|
|
4572
5139
|
};
|
|
4573
|
-
borderRadiusSquare:
|
|
4574
|
-
borderRadiusCircle:
|
|
5140
|
+
borderRadiusSquare: 4;
|
|
5141
|
+
borderRadiusCircle: 999;
|
|
4575
5142
|
} | {
|
|
4576
5143
|
size: number;
|
|
4577
5144
|
fontSize: number;
|
|
@@ -4585,8 +5152,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4585
5152
|
right: number;
|
|
4586
5153
|
top: number;
|
|
4587
5154
|
};
|
|
4588
|
-
borderRadiusSquare:
|
|
4589
|
-
borderRadiusCircle:
|
|
5155
|
+
borderRadiusSquare: 2;
|
|
5156
|
+
borderRadiusCircle: 999;
|
|
4590
5157
|
};
|
|
4591
5158
|
tag: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
4592
5159
|
height: number;
|
|
@@ -4595,7 +5162,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4595
5162
|
lineHeight: number;
|
|
4596
5163
|
gap: number;
|
|
4597
5164
|
iconSize: number;
|
|
4598
|
-
radius:
|
|
5165
|
+
radius: 8;
|
|
4599
5166
|
borderWidth: number;
|
|
4600
5167
|
} | {
|
|
4601
5168
|
height: number;
|
|
@@ -4604,7 +5171,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4604
5171
|
lineHeight: number;
|
|
4605
5172
|
gap: number;
|
|
4606
5173
|
iconSize: number;
|
|
4607
|
-
radius:
|
|
5174
|
+
radius: 8;
|
|
4608
5175
|
borderWidth: number;
|
|
4609
5176
|
} | {
|
|
4610
5177
|
height: number;
|
|
@@ -4613,7 +5180,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4613
5180
|
lineHeight: number;
|
|
4614
5181
|
gap: number;
|
|
4615
5182
|
iconSize: number;
|
|
4616
|
-
radius:
|
|
5183
|
+
radius: 6;
|
|
4617
5184
|
borderWidth: number;
|
|
4618
5185
|
} | {
|
|
4619
5186
|
height: number;
|
|
@@ -4622,7 +5189,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4622
5189
|
lineHeight: number;
|
|
4623
5190
|
gap: number;
|
|
4624
5191
|
iconSize: number;
|
|
4625
|
-
radius:
|
|
5192
|
+
radius: 4;
|
|
4626
5193
|
borderWidth: number;
|
|
4627
5194
|
} | {
|
|
4628
5195
|
height: number;
|
|
@@ -4631,7 +5198,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4631
5198
|
lineHeight: number;
|
|
4632
5199
|
gap: number;
|
|
4633
5200
|
iconSize: number;
|
|
4634
|
-
radius:
|
|
5201
|
+
radius: 4;
|
|
4635
5202
|
borderWidth: number;
|
|
4636
5203
|
};
|
|
4637
5204
|
divider: (size: "lg" | "md" | "sm") => {
|
|
@@ -4695,11 +5262,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4695
5262
|
segmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4696
5263
|
height: number;
|
|
4697
5264
|
containerPadding: number;
|
|
4698
|
-
containerRadius:
|
|
5265
|
+
containerRadius: 8;
|
|
4699
5266
|
itemHeight: number;
|
|
4700
5267
|
itemPaddingHorizontal: number;
|
|
4701
5268
|
itemPaddingVertical: number;
|
|
4702
|
-
itemRadius:
|
|
5269
|
+
itemRadius: 4;
|
|
4703
5270
|
fontSize: number;
|
|
4704
5271
|
lineHeight: number;
|
|
4705
5272
|
iconSize: number;
|
|
@@ -4707,11 +5274,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4707
5274
|
} | {
|
|
4708
5275
|
height: number;
|
|
4709
5276
|
containerPadding: number;
|
|
4710
|
-
containerRadius:
|
|
5277
|
+
containerRadius: 8;
|
|
4711
5278
|
itemHeight: number;
|
|
4712
5279
|
itemPaddingHorizontal: number;
|
|
4713
5280
|
itemPaddingVertical: number;
|
|
4714
|
-
itemRadius:
|
|
5281
|
+
itemRadius: 4;
|
|
4715
5282
|
fontSize: number;
|
|
4716
5283
|
lineHeight: number;
|
|
4717
5284
|
iconSize: number;
|
|
@@ -4719,11 +5286,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4719
5286
|
} | {
|
|
4720
5287
|
height: number;
|
|
4721
5288
|
containerPadding: number;
|
|
4722
|
-
containerRadius:
|
|
5289
|
+
containerRadius: 8;
|
|
4723
5290
|
itemHeight: number;
|
|
4724
5291
|
itemPaddingHorizontal: number;
|
|
4725
5292
|
itemPaddingVertical: number;
|
|
4726
|
-
itemRadius:
|
|
5293
|
+
itemRadius: 4;
|
|
4727
5294
|
fontSize: number;
|
|
4728
5295
|
lineHeight: number;
|
|
4729
5296
|
iconSize: number;
|
|
@@ -4731,11 +5298,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4731
5298
|
} | {
|
|
4732
5299
|
height: number;
|
|
4733
5300
|
containerPadding: number;
|
|
4734
|
-
containerRadius:
|
|
5301
|
+
containerRadius: 4;
|
|
4735
5302
|
itemHeight: number;
|
|
4736
5303
|
itemPaddingHorizontal: number;
|
|
4737
5304
|
itemPaddingVertical: number;
|
|
4738
|
-
itemRadius:
|
|
5305
|
+
itemRadius: 2;
|
|
4739
5306
|
fontSize: number;
|
|
4740
5307
|
lineHeight: number;
|
|
4741
5308
|
iconSize: number;
|
|
@@ -4744,10 +5311,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4744
5311
|
tabsSegmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4745
5312
|
height: number;
|
|
4746
5313
|
containerPadding: number;
|
|
4747
|
-
containerRadius: number;
|
|
4748
5314
|
itemPaddingHorizontal: number;
|
|
4749
5315
|
itemPaddingVertical: number;
|
|
4750
|
-
itemRadius: number;
|
|
4751
5316
|
fontSize: number;
|
|
4752
5317
|
lineHeight: number;
|
|
4753
5318
|
iconSize: number;
|
|
@@ -4755,10 +5320,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4755
5320
|
} | {
|
|
4756
5321
|
height: number;
|
|
4757
5322
|
containerPadding: number;
|
|
4758
|
-
containerRadius: number;
|
|
4759
5323
|
itemPaddingHorizontal: number;
|
|
4760
5324
|
itemPaddingVertical: number;
|
|
4761
|
-
itemRadius: number;
|
|
4762
5325
|
fontSize: number;
|
|
4763
5326
|
lineHeight: number;
|
|
4764
5327
|
iconSize: number;
|
|
@@ -4766,10 +5329,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4766
5329
|
} | {
|
|
4767
5330
|
height: number;
|
|
4768
5331
|
containerPadding: number;
|
|
4769
|
-
containerRadius: number;
|
|
4770
5332
|
itemPaddingHorizontal: number;
|
|
4771
5333
|
itemPaddingVertical: number;
|
|
4772
|
-
itemRadius: number;
|
|
4773
5334
|
fontSize: number;
|
|
4774
5335
|
lineHeight: number;
|
|
4775
5336
|
iconSize: number;
|
|
@@ -4777,10 +5338,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4777
5338
|
} | {
|
|
4778
5339
|
height: number;
|
|
4779
5340
|
containerPadding: number;
|
|
4780
|
-
containerRadius: number;
|
|
4781
5341
|
itemPaddingHorizontal: number;
|
|
4782
5342
|
itemPaddingVertical: number;
|
|
4783
|
-
itemRadius: number;
|
|
4784
5343
|
fontSize: number;
|
|
4785
5344
|
lineHeight: number;
|
|
4786
5345
|
iconSize: number;
|
|
@@ -4793,7 +5352,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4793
5352
|
fontSize: number;
|
|
4794
5353
|
lineHeight: number;
|
|
4795
5354
|
gap: number;
|
|
4796
|
-
borderRadius:
|
|
5355
|
+
borderRadius: 4;
|
|
4797
5356
|
} | {
|
|
4798
5357
|
height: number;
|
|
4799
5358
|
paddingHorizontal: number;
|
|
@@ -4801,7 +5360,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4801
5360
|
fontSize: number;
|
|
4802
5361
|
lineHeight: number;
|
|
4803
5362
|
gap: number;
|
|
4804
|
-
borderRadius:
|
|
5363
|
+
borderRadius: 4;
|
|
4805
5364
|
} | {
|
|
4806
5365
|
height: number;
|
|
4807
5366
|
paddingHorizontal: number;
|
|
@@ -4809,7 +5368,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4809
5368
|
fontSize: number;
|
|
4810
5369
|
lineHeight: number;
|
|
4811
5370
|
gap: number;
|
|
4812
|
-
borderRadius:
|
|
5371
|
+
borderRadius: 2;
|
|
4813
5372
|
} | {
|
|
4814
5373
|
height: number;
|
|
4815
5374
|
paddingHorizontal: number;
|
|
@@ -4817,7 +5376,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4817
5376
|
fontSize: number;
|
|
4818
5377
|
lineHeight: number;
|
|
4819
5378
|
gap: number;
|
|
4820
|
-
borderRadius:
|
|
5379
|
+
borderRadius: 2;
|
|
4821
5380
|
};
|
|
4822
5381
|
badge: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
4823
5382
|
size: number;
|
|
@@ -4859,7 +5418,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4859
5418
|
messageSize: number;
|
|
4860
5419
|
iconSize: number;
|
|
4861
5420
|
iconWrapperSize: number;
|
|
4862
|
-
radius:
|
|
5421
|
+
radius: 4;
|
|
4863
5422
|
} | {
|
|
4864
5423
|
width: string;
|
|
4865
5424
|
paddingHorizontal: number;
|
|
@@ -4869,13 +5428,13 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4869
5428
|
messageSize: number;
|
|
4870
5429
|
iconSize: number;
|
|
4871
5430
|
iconWrapperSize: number;
|
|
4872
|
-
radius:
|
|
5431
|
+
radius: 8;
|
|
4873
5432
|
};
|
|
4874
5433
|
notificationPanel: () => {
|
|
4875
5434
|
minHeight: number;
|
|
4876
5435
|
iconFrameWidth: number;
|
|
4877
5436
|
iconSize: number;
|
|
4878
|
-
borderRadius:
|
|
5437
|
+
borderRadius: 8;
|
|
4879
5438
|
bodyPaddingHorizontal: number;
|
|
4880
5439
|
bodyPaddingVertical: number;
|
|
4881
5440
|
textGap: number;
|
|
@@ -5089,7 +5648,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5089
5648
|
searchIconSize: number;
|
|
5090
5649
|
};
|
|
5091
5650
|
modal: () => {
|
|
5092
|
-
borderRadius:
|
|
5651
|
+
borderRadius: 8;
|
|
5093
5652
|
headerPadding: string;
|
|
5094
5653
|
contentPadding: number;
|
|
5095
5654
|
headerButtonSize: "xs";
|
|
@@ -5217,7 +5776,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5217
5776
|
minHeight: number;
|
|
5218
5777
|
paddingHorizontal: number;
|
|
5219
5778
|
paddingVertical: number;
|
|
5220
|
-
borderRadius:
|
|
5779
|
+
borderRadius: 4;
|
|
5221
5780
|
gap: number;
|
|
5222
5781
|
iconSize: number;
|
|
5223
5782
|
closeButtonSize: number;
|
|
@@ -5235,7 +5794,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5235
5794
|
lineHeight: number;
|
|
5236
5795
|
iconSize: number;
|
|
5237
5796
|
gap: number;
|
|
5238
|
-
borderRadius:
|
|
5797
|
+
borderRadius: 8;
|
|
5239
5798
|
itemGap: number;
|
|
5240
5799
|
} | {
|
|
5241
5800
|
height: number;
|
|
@@ -5244,7 +5803,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5244
5803
|
lineHeight: number;
|
|
5245
5804
|
iconSize: number;
|
|
5246
5805
|
gap: number;
|
|
5247
|
-
borderRadius:
|
|
5806
|
+
borderRadius: 8;
|
|
5248
5807
|
itemGap: number;
|
|
5249
5808
|
} | {
|
|
5250
5809
|
height: number;
|
|
@@ -5253,7 +5812,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5253
5812
|
lineHeight: number;
|
|
5254
5813
|
iconSize: number;
|
|
5255
5814
|
gap: number;
|
|
5256
|
-
borderRadius:
|
|
5815
|
+
borderRadius: 6;
|
|
5257
5816
|
itemGap: number;
|
|
5258
5817
|
} | {
|
|
5259
5818
|
height: number;
|
|
@@ -5262,7 +5821,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5262
5821
|
lineHeight: number;
|
|
5263
5822
|
iconSize: number;
|
|
5264
5823
|
gap: number;
|
|
5265
|
-
borderRadius:
|
|
5824
|
+
borderRadius: 4;
|
|
5266
5825
|
itemGap: number;
|
|
5267
5826
|
} | {
|
|
5268
5827
|
height: number;
|
|
@@ -5271,7 +5830,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5271
5830
|
lineHeight: number;
|
|
5272
5831
|
iconSize: number;
|
|
5273
5832
|
gap: number;
|
|
5274
|
-
borderRadius:
|
|
5833
|
+
borderRadius: 4;
|
|
5275
5834
|
itemGap: number;
|
|
5276
5835
|
};
|
|
5277
5836
|
table: {
|
|
@@ -6536,17 +7095,282 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6536
7095
|
l: number;
|
|
6537
7096
|
xl: number;
|
|
6538
7097
|
};
|
|
6539
|
-
|
|
6540
|
-
button:
|
|
6541
|
-
|
|
6542
|
-
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
|
|
6546
|
-
|
|
6547
|
-
|
|
6548
|
-
|
|
6549
|
-
|
|
7098
|
+
shape: {
|
|
7099
|
+
readonly button: {
|
|
7100
|
+
readonly xl: {
|
|
7101
|
+
readonly borderRadius: 8;
|
|
7102
|
+
readonly borderWidth: 1;
|
|
7103
|
+
};
|
|
7104
|
+
readonly lg: {
|
|
7105
|
+
readonly borderRadius: 8;
|
|
7106
|
+
readonly borderWidth: 1;
|
|
7107
|
+
};
|
|
7108
|
+
readonly md: {
|
|
7109
|
+
readonly borderRadius: 6;
|
|
7110
|
+
readonly borderWidth: 1;
|
|
7111
|
+
};
|
|
7112
|
+
readonly sm: {
|
|
7113
|
+
readonly borderRadius: 4;
|
|
7114
|
+
readonly borderWidth: 1;
|
|
7115
|
+
};
|
|
7116
|
+
readonly xs: {
|
|
7117
|
+
readonly borderRadius: 4;
|
|
7118
|
+
readonly borderWidth: 1;
|
|
7119
|
+
};
|
|
7120
|
+
};
|
|
7121
|
+
readonly checkbox: {
|
|
7122
|
+
readonly xl: {
|
|
7123
|
+
readonly borderRadius: 4;
|
|
7124
|
+
readonly borderWidth: 1;
|
|
7125
|
+
};
|
|
7126
|
+
readonly lg: {
|
|
7127
|
+
readonly borderRadius: 4;
|
|
7128
|
+
readonly borderWidth: 1;
|
|
7129
|
+
};
|
|
7130
|
+
readonly md: {
|
|
7131
|
+
readonly borderRadius: 4;
|
|
7132
|
+
readonly borderWidth: 1;
|
|
7133
|
+
};
|
|
7134
|
+
readonly sm: {
|
|
7135
|
+
readonly borderRadius: 4;
|
|
7136
|
+
readonly borderWidth: 1;
|
|
7137
|
+
};
|
|
7138
|
+
};
|
|
7139
|
+
readonly input: {
|
|
7140
|
+
readonly xl: {
|
|
7141
|
+
readonly borderRadius: 8;
|
|
7142
|
+
readonly borderWidth: 1;
|
|
7143
|
+
};
|
|
7144
|
+
readonly lg: {
|
|
7145
|
+
readonly borderRadius: 8;
|
|
7146
|
+
readonly borderWidth: 1;
|
|
7147
|
+
};
|
|
7148
|
+
readonly md: {
|
|
7149
|
+
readonly borderRadius: 8;
|
|
7150
|
+
readonly borderWidth: 1;
|
|
7151
|
+
};
|
|
7152
|
+
readonly sm: {
|
|
7153
|
+
readonly borderRadius: 4;
|
|
7154
|
+
readonly borderWidth: 1;
|
|
7155
|
+
};
|
|
7156
|
+
readonly xs: {
|
|
7157
|
+
readonly borderRadius: 4;
|
|
7158
|
+
readonly borderWidth: 1;
|
|
7159
|
+
};
|
|
7160
|
+
};
|
|
7161
|
+
readonly segmented: {
|
|
7162
|
+
readonly xl: {
|
|
7163
|
+
readonly borderRadius: 8;
|
|
7164
|
+
readonly borderWidth: 1;
|
|
7165
|
+
};
|
|
7166
|
+
readonly lg: {
|
|
7167
|
+
readonly borderRadius: 8;
|
|
7168
|
+
readonly borderWidth: 1;
|
|
7169
|
+
};
|
|
7170
|
+
readonly md: {
|
|
7171
|
+
readonly borderRadius: 8;
|
|
7172
|
+
readonly borderWidth: 1;
|
|
7173
|
+
};
|
|
7174
|
+
readonly sm: {
|
|
7175
|
+
readonly borderRadius: 4;
|
|
7176
|
+
readonly borderWidth: 1;
|
|
7177
|
+
};
|
|
7178
|
+
};
|
|
7179
|
+
readonly segmentedItem: {
|
|
7180
|
+
readonly xl: {
|
|
7181
|
+
readonly borderRadius: 4;
|
|
7182
|
+
readonly borderWidth: 1;
|
|
7183
|
+
};
|
|
7184
|
+
readonly lg: {
|
|
7185
|
+
readonly borderRadius: 4;
|
|
7186
|
+
readonly borderWidth: 1;
|
|
7187
|
+
};
|
|
7188
|
+
readonly md: {
|
|
7189
|
+
readonly borderRadius: 4;
|
|
7190
|
+
readonly borderWidth: 1;
|
|
7191
|
+
};
|
|
7192
|
+
readonly sm: {
|
|
7193
|
+
readonly borderRadius: 2;
|
|
7194
|
+
readonly borderWidth: 1;
|
|
7195
|
+
};
|
|
7196
|
+
};
|
|
7197
|
+
readonly switch: {
|
|
7198
|
+
readonly xl: {
|
|
7199
|
+
readonly borderRadius: 4;
|
|
7200
|
+
readonly borderWidth: 1;
|
|
7201
|
+
};
|
|
7202
|
+
readonly lg: {
|
|
7203
|
+
readonly borderRadius: 4;
|
|
7204
|
+
readonly borderWidth: 1;
|
|
7205
|
+
};
|
|
7206
|
+
readonly md: {
|
|
7207
|
+
readonly borderRadius: 4;
|
|
7208
|
+
readonly borderWidth: 1;
|
|
7209
|
+
};
|
|
7210
|
+
readonly sm: {
|
|
7211
|
+
readonly borderRadius: 4;
|
|
7212
|
+
readonly borderWidth: 1;
|
|
7213
|
+
};
|
|
7214
|
+
};
|
|
7215
|
+
readonly knob: {
|
|
7216
|
+
readonly xl: {
|
|
7217
|
+
readonly borderRadius: 2;
|
|
7218
|
+
};
|
|
7219
|
+
readonly lg: {
|
|
7220
|
+
readonly borderRadius: 2;
|
|
7221
|
+
};
|
|
7222
|
+
readonly md: {
|
|
7223
|
+
readonly borderRadius: 2;
|
|
7224
|
+
};
|
|
7225
|
+
readonly sm: {
|
|
7226
|
+
readonly borderRadius: 2;
|
|
7227
|
+
};
|
|
7228
|
+
};
|
|
7229
|
+
readonly tabItem: {
|
|
7230
|
+
readonly xl: {
|
|
7231
|
+
readonly borderRadius: 8;
|
|
7232
|
+
};
|
|
7233
|
+
readonly lg: {
|
|
7234
|
+
readonly borderRadius: 8;
|
|
7235
|
+
};
|
|
7236
|
+
readonly md: {
|
|
7237
|
+
readonly borderRadius: 4;
|
|
7238
|
+
};
|
|
7239
|
+
readonly sm: {
|
|
7240
|
+
readonly borderRadius: 4;
|
|
7241
|
+
};
|
|
7242
|
+
};
|
|
7243
|
+
readonly tag: {
|
|
7244
|
+
readonly xl: {
|
|
7245
|
+
readonly borderRadius: 8;
|
|
7246
|
+
readonly borderWidth: 1;
|
|
7247
|
+
};
|
|
7248
|
+
readonly lg: {
|
|
7249
|
+
readonly borderRadius: 8;
|
|
7250
|
+
readonly borderWidth: 1;
|
|
7251
|
+
};
|
|
7252
|
+
readonly md: {
|
|
7253
|
+
readonly borderRadius: 6;
|
|
7254
|
+
readonly borderWidth: 1;
|
|
7255
|
+
};
|
|
7256
|
+
readonly sm: {
|
|
7257
|
+
readonly borderRadius: 4;
|
|
7258
|
+
readonly borderWidth: 1;
|
|
7259
|
+
};
|
|
7260
|
+
readonly xs: {
|
|
7261
|
+
readonly borderRadius: 4;
|
|
7262
|
+
readonly borderWidth: 1;
|
|
7263
|
+
};
|
|
7264
|
+
readonly label: {
|
|
7265
|
+
readonly borderRadius: 0;
|
|
7266
|
+
};
|
|
7267
|
+
};
|
|
7268
|
+
readonly tooltip: {
|
|
7269
|
+
readonly xl: {
|
|
7270
|
+
readonly borderRadius: 8;
|
|
7271
|
+
};
|
|
7272
|
+
readonly lg: {
|
|
7273
|
+
readonly borderRadius: 8;
|
|
7274
|
+
};
|
|
7275
|
+
readonly md: {
|
|
7276
|
+
readonly borderRadius: 8;
|
|
7277
|
+
};
|
|
7278
|
+
readonly sm: {
|
|
7279
|
+
readonly borderRadius: 4;
|
|
7280
|
+
};
|
|
7281
|
+
};
|
|
7282
|
+
readonly radio: {
|
|
7283
|
+
readonly xl: {
|
|
7284
|
+
readonly borderRadius: 999;
|
|
7285
|
+
readonly borderWidth: 1;
|
|
7286
|
+
};
|
|
7287
|
+
readonly lg: {
|
|
7288
|
+
readonly borderRadius: 999;
|
|
7289
|
+
readonly borderWidth: 1;
|
|
7290
|
+
};
|
|
7291
|
+
readonly md: {
|
|
7292
|
+
readonly borderRadius: 999;
|
|
7293
|
+
readonly borderWidth: 1;
|
|
7294
|
+
};
|
|
7295
|
+
readonly sm: {
|
|
7296
|
+
readonly borderRadius: 999;
|
|
7297
|
+
readonly borderWidth: 1;
|
|
7298
|
+
};
|
|
7299
|
+
};
|
|
7300
|
+
readonly contextMenu: {
|
|
7301
|
+
readonly xl: {
|
|
7302
|
+
readonly borderRadius: 8;
|
|
7303
|
+
};
|
|
7304
|
+
readonly lg: {
|
|
7305
|
+
readonly borderRadius: 8;
|
|
7306
|
+
};
|
|
7307
|
+
readonly md: {
|
|
7308
|
+
readonly borderRadius: 8;
|
|
7309
|
+
};
|
|
7310
|
+
readonly sm: {
|
|
7311
|
+
readonly borderRadius: 4;
|
|
7312
|
+
};
|
|
7313
|
+
readonly xs: {
|
|
7314
|
+
readonly borderRadius: 4;
|
|
7315
|
+
};
|
|
7316
|
+
};
|
|
7317
|
+
readonly avatar: {
|
|
7318
|
+
readonly xl: {
|
|
7319
|
+
readonly borderRadius: 8;
|
|
7320
|
+
readonly borderWidth: 2;
|
|
7321
|
+
};
|
|
7322
|
+
readonly lg: {
|
|
7323
|
+
readonly borderRadius: 6;
|
|
7324
|
+
readonly borderWidth: 2;
|
|
7325
|
+
};
|
|
7326
|
+
readonly md: {
|
|
7327
|
+
readonly borderRadius: 6;
|
|
7328
|
+
readonly borderWidth: 2;
|
|
7329
|
+
};
|
|
7330
|
+
readonly sm: {
|
|
7331
|
+
readonly borderRadius: 4;
|
|
7332
|
+
readonly borderWidth: 2;
|
|
7333
|
+
};
|
|
7334
|
+
readonly xs: {
|
|
7335
|
+
readonly borderRadius: 4;
|
|
7336
|
+
readonly borderWidth: 2;
|
|
7337
|
+
};
|
|
7338
|
+
readonly xxs: {
|
|
7339
|
+
readonly borderRadius: 2;
|
|
7340
|
+
readonly borderWidth: 2;
|
|
7341
|
+
};
|
|
7342
|
+
};
|
|
7343
|
+
readonly modal: {
|
|
7344
|
+
readonly borderRadius: 8;
|
|
7345
|
+
};
|
|
7346
|
+
readonly toast: {
|
|
7347
|
+
readonly borderRadius: 4;
|
|
7348
|
+
};
|
|
7349
|
+
readonly toggleButtonGroup: {
|
|
7350
|
+
readonly xl: {
|
|
7351
|
+
readonly borderRadius: 8;
|
|
7352
|
+
readonly borderWidth: 1;
|
|
7353
|
+
};
|
|
7354
|
+
readonly lg: {
|
|
7355
|
+
readonly borderRadius: 8;
|
|
7356
|
+
readonly borderWidth: 1;
|
|
7357
|
+
};
|
|
7358
|
+
readonly md: {
|
|
7359
|
+
readonly borderRadius: 6;
|
|
7360
|
+
readonly borderWidth: 1;
|
|
7361
|
+
};
|
|
7362
|
+
readonly sm: {
|
|
7363
|
+
readonly borderRadius: 4;
|
|
7364
|
+
readonly borderWidth: 1;
|
|
7365
|
+
};
|
|
7366
|
+
readonly xs: {
|
|
7367
|
+
readonly borderRadius: 4;
|
|
7368
|
+
readonly borderWidth: 1;
|
|
7369
|
+
};
|
|
7370
|
+
};
|
|
7371
|
+
readonly tagLabel: {
|
|
7372
|
+
readonly borderRadius: 0;
|
|
7373
|
+
};
|
|
6550
7374
|
};
|
|
6551
7375
|
shadow: {
|
|
6552
7376
|
active: string;
|
|
@@ -6580,7 +7404,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6580
7404
|
iconContainerSize: number;
|
|
6581
7405
|
iconPadding: number;
|
|
6582
7406
|
loadingPadding: number;
|
|
6583
|
-
borderRadius:
|
|
7407
|
+
borderRadius: 8;
|
|
6584
7408
|
labelIconSize: number;
|
|
6585
7409
|
labelIconGap: number;
|
|
6586
7410
|
} | {
|
|
@@ -6593,7 +7417,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6593
7417
|
iconContainerSize: number;
|
|
6594
7418
|
iconPadding: number;
|
|
6595
7419
|
loadingPadding: number;
|
|
6596
|
-
borderRadius:
|
|
7420
|
+
borderRadius: 8;
|
|
6597
7421
|
labelIconSize: number;
|
|
6598
7422
|
labelIconGap: number;
|
|
6599
7423
|
} | {
|
|
@@ -6606,7 +7430,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6606
7430
|
iconContainerSize: number;
|
|
6607
7431
|
iconPadding: number;
|
|
6608
7432
|
loadingPadding: number;
|
|
6609
|
-
borderRadius:
|
|
7433
|
+
borderRadius: 6;
|
|
6610
7434
|
labelIconSize: number;
|
|
6611
7435
|
labelIconGap: number;
|
|
6612
7436
|
} | {
|
|
@@ -6619,7 +7443,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6619
7443
|
iconContainerSize: number;
|
|
6620
7444
|
iconPadding: number;
|
|
6621
7445
|
loadingPadding: number;
|
|
6622
|
-
borderRadius:
|
|
7446
|
+
borderRadius: 4;
|
|
6623
7447
|
labelIconSize: number;
|
|
6624
7448
|
labelIconGap: number;
|
|
6625
7449
|
} | {
|
|
@@ -6632,7 +7456,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6632
7456
|
iconContainerSize: number;
|
|
6633
7457
|
iconPadding: number;
|
|
6634
7458
|
loadingPadding: number;
|
|
6635
|
-
borderRadius:
|
|
7459
|
+
borderRadius: 4;
|
|
6636
7460
|
labelIconSize: number;
|
|
6637
7461
|
labelIconGap: number;
|
|
6638
7462
|
};
|
|
@@ -6642,35 +7466,35 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6642
7466
|
fontSize: number;
|
|
6643
7467
|
spinnerSize: number;
|
|
6644
7468
|
iconSize: number;
|
|
6645
|
-
borderRadius:
|
|
7469
|
+
borderRadius: 4;
|
|
6646
7470
|
} | {
|
|
6647
7471
|
height: number;
|
|
6648
7472
|
padding: number;
|
|
6649
7473
|
fontSize: number;
|
|
6650
7474
|
spinnerSize: number;
|
|
6651
7475
|
iconSize: number;
|
|
6652
|
-
borderRadius:
|
|
7476
|
+
borderRadius: 4;
|
|
6653
7477
|
} | {
|
|
6654
7478
|
height: number;
|
|
6655
7479
|
padding: number;
|
|
6656
7480
|
fontSize: number;
|
|
6657
7481
|
spinnerSize: number;
|
|
6658
7482
|
iconSize: number;
|
|
6659
|
-
borderRadius:
|
|
7483
|
+
borderRadius: 2;
|
|
6660
7484
|
} | {
|
|
6661
7485
|
height: number;
|
|
6662
7486
|
padding: number;
|
|
6663
7487
|
fontSize: number;
|
|
6664
7488
|
spinnerSize: number;
|
|
6665
7489
|
iconSize: number;
|
|
6666
|
-
borderRadius:
|
|
7490
|
+
borderRadius: 2;
|
|
6667
7491
|
} | {
|
|
6668
7492
|
height: number;
|
|
6669
7493
|
padding: number;
|
|
6670
7494
|
fontSize: number;
|
|
6671
7495
|
spinnerSize: number;
|
|
6672
7496
|
iconSize: number;
|
|
6673
|
-
borderRadius:
|
|
7497
|
+
borderRadius: 2;
|
|
6674
7498
|
};
|
|
6675
7499
|
checkbox: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6676
7500
|
size: number;
|
|
@@ -6678,28 +7502,28 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6678
7502
|
descriptionFontSize: number;
|
|
6679
7503
|
labelGap: number;
|
|
6680
7504
|
textGap: number;
|
|
6681
|
-
borderRadius:
|
|
7505
|
+
borderRadius: 4;
|
|
6682
7506
|
} | {
|
|
6683
7507
|
size: number;
|
|
6684
7508
|
fontSize: number;
|
|
6685
7509
|
descriptionFontSize: number;
|
|
6686
7510
|
labelGap: number;
|
|
6687
7511
|
textGap: number;
|
|
6688
|
-
borderRadius:
|
|
7512
|
+
borderRadius: 4;
|
|
6689
7513
|
} | {
|
|
6690
7514
|
size: number;
|
|
6691
7515
|
fontSize: number;
|
|
6692
7516
|
descriptionFontSize: number;
|
|
6693
7517
|
labelGap: number;
|
|
6694
7518
|
textGap: number;
|
|
6695
|
-
borderRadius:
|
|
7519
|
+
borderRadius: 4;
|
|
6696
7520
|
} | {
|
|
6697
7521
|
size: number;
|
|
6698
7522
|
fontSize: number;
|
|
6699
7523
|
descriptionFontSize: number;
|
|
6700
7524
|
labelGap: number;
|
|
6701
7525
|
textGap: number;
|
|
6702
|
-
borderRadius:
|
|
7526
|
+
borderRadius: 4;
|
|
6703
7527
|
};
|
|
6704
7528
|
radio: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6705
7529
|
size: number;
|
|
@@ -6748,7 +7572,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6748
7572
|
paddingHorizontal: number;
|
|
6749
7573
|
fontSize: number;
|
|
6750
7574
|
iconSize: number;
|
|
6751
|
-
radius:
|
|
7575
|
+
radius: 8;
|
|
6752
7576
|
borderWidth: number;
|
|
6753
7577
|
fieldGap: number;
|
|
6754
7578
|
lineHeight: number;
|
|
@@ -6758,7 +7582,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6758
7582
|
paddingHorizontal: number;
|
|
6759
7583
|
fontSize: number;
|
|
6760
7584
|
iconSize: number;
|
|
6761
|
-
radius:
|
|
7585
|
+
radius: 8;
|
|
6762
7586
|
borderWidth: number;
|
|
6763
7587
|
fieldGap: number;
|
|
6764
7588
|
lineHeight: number;
|
|
@@ -6768,7 +7592,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6768
7592
|
paddingHorizontal: number;
|
|
6769
7593
|
fontSize: number;
|
|
6770
7594
|
iconSize: number;
|
|
6771
|
-
radius:
|
|
7595
|
+
radius: 8;
|
|
6772
7596
|
borderWidth: number;
|
|
6773
7597
|
fieldGap: number;
|
|
6774
7598
|
lineHeight: number;
|
|
@@ -6778,7 +7602,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6778
7602
|
paddingHorizontal: number;
|
|
6779
7603
|
fontSize: number;
|
|
6780
7604
|
iconSize: number;
|
|
6781
|
-
radius:
|
|
7605
|
+
radius: 4;
|
|
6782
7606
|
borderWidth: number;
|
|
6783
7607
|
fieldGap: number;
|
|
6784
7608
|
lineHeight: number;
|
|
@@ -6788,7 +7612,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6788
7612
|
paddingHorizontal: number;
|
|
6789
7613
|
fontSize: number;
|
|
6790
7614
|
iconSize: number;
|
|
6791
|
-
radius:
|
|
7615
|
+
radius: 4;
|
|
6792
7616
|
borderWidth: number;
|
|
6793
7617
|
fieldGap: number;
|
|
6794
7618
|
lineHeight: number;
|
|
@@ -6805,7 +7629,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6805
7629
|
errorFontSize: number;
|
|
6806
7630
|
errorLineHeight: number;
|
|
6807
7631
|
errorGap: number;
|
|
6808
|
-
radius:
|
|
7632
|
+
radius: 8;
|
|
6809
7633
|
borderWidth: number;
|
|
6810
7634
|
} | {
|
|
6811
7635
|
box: number;
|
|
@@ -6819,7 +7643,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6819
7643
|
errorFontSize: number;
|
|
6820
7644
|
errorLineHeight: number;
|
|
6821
7645
|
errorGap: number;
|
|
6822
|
-
radius:
|
|
7646
|
+
radius: 8;
|
|
6823
7647
|
borderWidth: number;
|
|
6824
7648
|
} | {
|
|
6825
7649
|
box: number;
|
|
@@ -6833,7 +7657,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6833
7657
|
errorFontSize: number;
|
|
6834
7658
|
errorLineHeight: number;
|
|
6835
7659
|
errorGap: number;
|
|
6836
|
-
radius:
|
|
7660
|
+
radius: 8;
|
|
6837
7661
|
borderWidth: number;
|
|
6838
7662
|
} | {
|
|
6839
7663
|
box: number;
|
|
@@ -6847,7 +7671,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6847
7671
|
errorFontSize: number;
|
|
6848
7672
|
errorLineHeight: number;
|
|
6849
7673
|
errorGap: number;
|
|
6850
|
-
radius:
|
|
7674
|
+
radius: 4;
|
|
6851
7675
|
borderWidth: number;
|
|
6852
7676
|
} | {
|
|
6853
7677
|
box: number;
|
|
@@ -6861,7 +7685,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6861
7685
|
errorFontSize: number;
|
|
6862
7686
|
errorLineHeight: number;
|
|
6863
7687
|
errorGap: number;
|
|
6864
|
-
radius:
|
|
7688
|
+
radius: 4;
|
|
6865
7689
|
borderWidth: number;
|
|
6866
7690
|
};
|
|
6867
7691
|
dragDropUploader: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
@@ -7009,35 +7833,35 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7009
7833
|
size: number;
|
|
7010
7834
|
gap: number;
|
|
7011
7835
|
fontSize: number;
|
|
7012
|
-
radius:
|
|
7836
|
+
radius: 8;
|
|
7013
7837
|
borderWidth: number;
|
|
7014
7838
|
fieldGap: number;
|
|
7015
7839
|
} | {
|
|
7016
7840
|
size: number;
|
|
7017
7841
|
gap: number;
|
|
7018
7842
|
fontSize: number;
|
|
7019
|
-
radius:
|
|
7843
|
+
radius: 8;
|
|
7020
7844
|
borderWidth: number;
|
|
7021
7845
|
fieldGap: number;
|
|
7022
7846
|
} | {
|
|
7023
7847
|
size: number;
|
|
7024
7848
|
gap: number;
|
|
7025
7849
|
fontSize: number;
|
|
7026
|
-
radius:
|
|
7850
|
+
radius: 8;
|
|
7027
7851
|
borderWidth: number;
|
|
7028
7852
|
fieldGap: number;
|
|
7029
7853
|
} | {
|
|
7030
7854
|
size: number;
|
|
7031
7855
|
gap: number;
|
|
7032
7856
|
fontSize: number;
|
|
7033
|
-
radius:
|
|
7857
|
+
radius: 4;
|
|
7034
7858
|
borderWidth: number;
|
|
7035
7859
|
fieldGap: number;
|
|
7036
7860
|
} | {
|
|
7037
7861
|
size: number;
|
|
7038
7862
|
gap: number;
|
|
7039
7863
|
fontSize: number;
|
|
7040
|
-
radius:
|
|
7864
|
+
radius: 4;
|
|
7041
7865
|
borderWidth: number;
|
|
7042
7866
|
fieldGap: number;
|
|
7043
7867
|
};
|
|
@@ -7046,31 +7870,31 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7046
7870
|
padding: number;
|
|
7047
7871
|
fontSize: number;
|
|
7048
7872
|
iconSize: number;
|
|
7049
|
-
radius:
|
|
7873
|
+
radius: 8;
|
|
7050
7874
|
} | {
|
|
7051
7875
|
height: number;
|
|
7052
7876
|
padding: number;
|
|
7053
7877
|
fontSize: number;
|
|
7054
7878
|
iconSize: number;
|
|
7055
|
-
radius:
|
|
7879
|
+
radius: 8;
|
|
7056
7880
|
} | {
|
|
7057
7881
|
height: number;
|
|
7058
7882
|
padding: number;
|
|
7059
7883
|
fontSize: number;
|
|
7060
7884
|
iconSize: number;
|
|
7061
|
-
radius:
|
|
7885
|
+
radius: 8;
|
|
7062
7886
|
} | {
|
|
7063
7887
|
height: number;
|
|
7064
7888
|
padding: number;
|
|
7065
7889
|
fontSize: number;
|
|
7066
7890
|
iconSize: number;
|
|
7067
|
-
radius:
|
|
7891
|
+
radius: 4;
|
|
7068
7892
|
} | {
|
|
7069
7893
|
height: number;
|
|
7070
7894
|
padding: number;
|
|
7071
7895
|
fontSize: number;
|
|
7072
7896
|
iconSize: number;
|
|
7073
|
-
radius:
|
|
7897
|
+
radius: 4;
|
|
7074
7898
|
};
|
|
7075
7899
|
switch: (size: "xl" | "lg" | "md" | "sm") => {
|
|
7076
7900
|
width: number;
|
|
@@ -7082,8 +7906,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7082
7906
|
descriptionLineHeight: number;
|
|
7083
7907
|
labelGap: number;
|
|
7084
7908
|
textGap: number;
|
|
7085
|
-
frameBorderRadius:
|
|
7086
|
-
knobBorderRadius:
|
|
7909
|
+
frameBorderRadius: 4;
|
|
7910
|
+
knobBorderRadius: 2;
|
|
7087
7911
|
} | {
|
|
7088
7912
|
width: number;
|
|
7089
7913
|
height: number;
|
|
@@ -7094,8 +7918,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7094
7918
|
descriptionLineHeight: number;
|
|
7095
7919
|
labelGap: number;
|
|
7096
7920
|
textGap: number;
|
|
7097
|
-
frameBorderRadius:
|
|
7098
|
-
knobBorderRadius:
|
|
7921
|
+
frameBorderRadius: 4;
|
|
7922
|
+
knobBorderRadius: 2;
|
|
7099
7923
|
} | {
|
|
7100
7924
|
width: number;
|
|
7101
7925
|
height: number;
|
|
@@ -7106,8 +7930,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7106
7930
|
descriptionLineHeight: number;
|
|
7107
7931
|
labelGap: number;
|
|
7108
7932
|
textGap: number;
|
|
7109
|
-
frameBorderRadius:
|
|
7110
|
-
knobBorderRadius:
|
|
7933
|
+
frameBorderRadius: 4;
|
|
7934
|
+
knobBorderRadius: 2;
|
|
7111
7935
|
} | {
|
|
7112
7936
|
width: number;
|
|
7113
7937
|
height: number;
|
|
@@ -7118,8 +7942,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7118
7942
|
descriptionLineHeight: number;
|
|
7119
7943
|
labelGap: number;
|
|
7120
7944
|
textGap: number;
|
|
7121
|
-
frameBorderRadius:
|
|
7122
|
-
knobBorderRadius:
|
|
7945
|
+
frameBorderRadius: 4;
|
|
7946
|
+
knobBorderRadius: 2;
|
|
7123
7947
|
};
|
|
7124
7948
|
avatar: (size: "xl" | "lg" | "md" | "sm" | "xs" | "xxs") => {
|
|
7125
7949
|
size: number;
|
|
@@ -7134,8 +7958,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7134
7958
|
right: number;
|
|
7135
7959
|
top: number;
|
|
7136
7960
|
};
|
|
7137
|
-
borderRadiusSquare:
|
|
7138
|
-
borderRadiusCircle:
|
|
7961
|
+
borderRadiusSquare: 8;
|
|
7962
|
+
borderRadiusCircle: 999;
|
|
7139
7963
|
} | {
|
|
7140
7964
|
size: number;
|
|
7141
7965
|
fontSize: number;
|
|
@@ -7149,8 +7973,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7149
7973
|
right: number;
|
|
7150
7974
|
top: number;
|
|
7151
7975
|
};
|
|
7152
|
-
borderRadiusSquare:
|
|
7153
|
-
borderRadiusCircle:
|
|
7976
|
+
borderRadiusSquare: 6;
|
|
7977
|
+
borderRadiusCircle: 999;
|
|
7154
7978
|
} | {
|
|
7155
7979
|
size: number;
|
|
7156
7980
|
fontSize: number;
|
|
@@ -7164,8 +7988,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7164
7988
|
right: number;
|
|
7165
7989
|
top: number;
|
|
7166
7990
|
};
|
|
7167
|
-
borderRadiusSquare:
|
|
7168
|
-
borderRadiusCircle:
|
|
7991
|
+
borderRadiusSquare: 6;
|
|
7992
|
+
borderRadiusCircle: 999;
|
|
7169
7993
|
} | {
|
|
7170
7994
|
size: number;
|
|
7171
7995
|
fontSize: number;
|
|
@@ -7179,8 +8003,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7179
8003
|
right: number;
|
|
7180
8004
|
top: number;
|
|
7181
8005
|
};
|
|
7182
|
-
borderRadiusSquare:
|
|
7183
|
-
borderRadiusCircle:
|
|
8006
|
+
borderRadiusSquare: 4;
|
|
8007
|
+
borderRadiusCircle: 999;
|
|
7184
8008
|
} | {
|
|
7185
8009
|
size: number;
|
|
7186
8010
|
fontSize: number;
|
|
@@ -7194,8 +8018,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7194
8018
|
right: number;
|
|
7195
8019
|
top: number;
|
|
7196
8020
|
};
|
|
7197
|
-
borderRadiusSquare:
|
|
7198
|
-
borderRadiusCircle:
|
|
8021
|
+
borderRadiusSquare: 4;
|
|
8022
|
+
borderRadiusCircle: 999;
|
|
7199
8023
|
} | {
|
|
7200
8024
|
size: number;
|
|
7201
8025
|
fontSize: number;
|
|
@@ -7209,8 +8033,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7209
8033
|
right: number;
|
|
7210
8034
|
top: number;
|
|
7211
8035
|
};
|
|
7212
|
-
borderRadiusSquare:
|
|
7213
|
-
borderRadiusCircle:
|
|
8036
|
+
borderRadiusSquare: 2;
|
|
8037
|
+
borderRadiusCircle: 999;
|
|
7214
8038
|
};
|
|
7215
8039
|
tag: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
7216
8040
|
height: number;
|
|
@@ -7219,7 +8043,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7219
8043
|
lineHeight: number;
|
|
7220
8044
|
gap: number;
|
|
7221
8045
|
iconSize: number;
|
|
7222
|
-
radius:
|
|
8046
|
+
radius: 8;
|
|
7223
8047
|
borderWidth: number;
|
|
7224
8048
|
} | {
|
|
7225
8049
|
height: number;
|
|
@@ -7228,7 +8052,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7228
8052
|
lineHeight: number;
|
|
7229
8053
|
gap: number;
|
|
7230
8054
|
iconSize: number;
|
|
7231
|
-
radius:
|
|
8055
|
+
radius: 8;
|
|
7232
8056
|
borderWidth: number;
|
|
7233
8057
|
} | {
|
|
7234
8058
|
height: number;
|
|
@@ -7237,7 +8061,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7237
8061
|
lineHeight: number;
|
|
7238
8062
|
gap: number;
|
|
7239
8063
|
iconSize: number;
|
|
7240
|
-
radius:
|
|
8064
|
+
radius: 6;
|
|
7241
8065
|
borderWidth: number;
|
|
7242
8066
|
} | {
|
|
7243
8067
|
height: number;
|
|
@@ -7246,7 +8070,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7246
8070
|
lineHeight: number;
|
|
7247
8071
|
gap: number;
|
|
7248
8072
|
iconSize: number;
|
|
7249
|
-
radius:
|
|
8073
|
+
radius: 4;
|
|
7250
8074
|
borderWidth: number;
|
|
7251
8075
|
} | {
|
|
7252
8076
|
height: number;
|
|
@@ -7255,7 +8079,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7255
8079
|
lineHeight: number;
|
|
7256
8080
|
gap: number;
|
|
7257
8081
|
iconSize: number;
|
|
7258
|
-
radius:
|
|
8082
|
+
radius: 4;
|
|
7259
8083
|
borderWidth: number;
|
|
7260
8084
|
};
|
|
7261
8085
|
divider: (size: "lg" | "md" | "sm") => {
|
|
@@ -7319,11 +8143,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7319
8143
|
segmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
7320
8144
|
height: number;
|
|
7321
8145
|
containerPadding: number;
|
|
7322
|
-
containerRadius:
|
|
8146
|
+
containerRadius: 8;
|
|
7323
8147
|
itemHeight: number;
|
|
7324
8148
|
itemPaddingHorizontal: number;
|
|
7325
8149
|
itemPaddingVertical: number;
|
|
7326
|
-
itemRadius:
|
|
8150
|
+
itemRadius: 4;
|
|
7327
8151
|
fontSize: number;
|
|
7328
8152
|
lineHeight: number;
|
|
7329
8153
|
iconSize: number;
|
|
@@ -7331,11 +8155,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7331
8155
|
} | {
|
|
7332
8156
|
height: number;
|
|
7333
8157
|
containerPadding: number;
|
|
7334
|
-
containerRadius:
|
|
8158
|
+
containerRadius: 8;
|
|
7335
8159
|
itemHeight: number;
|
|
7336
8160
|
itemPaddingHorizontal: number;
|
|
7337
8161
|
itemPaddingVertical: number;
|
|
7338
|
-
itemRadius:
|
|
8162
|
+
itemRadius: 4;
|
|
7339
8163
|
fontSize: number;
|
|
7340
8164
|
lineHeight: number;
|
|
7341
8165
|
iconSize: number;
|
|
@@ -7343,11 +8167,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7343
8167
|
} | {
|
|
7344
8168
|
height: number;
|
|
7345
8169
|
containerPadding: number;
|
|
7346
|
-
containerRadius:
|
|
8170
|
+
containerRadius: 8;
|
|
7347
8171
|
itemHeight: number;
|
|
7348
8172
|
itemPaddingHorizontal: number;
|
|
7349
8173
|
itemPaddingVertical: number;
|
|
7350
|
-
itemRadius:
|
|
8174
|
+
itemRadius: 4;
|
|
7351
8175
|
fontSize: number;
|
|
7352
8176
|
lineHeight: number;
|
|
7353
8177
|
iconSize: number;
|
|
@@ -7355,11 +8179,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7355
8179
|
} | {
|
|
7356
8180
|
height: number;
|
|
7357
8181
|
containerPadding: number;
|
|
7358
|
-
containerRadius:
|
|
8182
|
+
containerRadius: 4;
|
|
7359
8183
|
itemHeight: number;
|
|
7360
8184
|
itemPaddingHorizontal: number;
|
|
7361
8185
|
itemPaddingVertical: number;
|
|
7362
|
-
itemRadius:
|
|
8186
|
+
itemRadius: 2;
|
|
7363
8187
|
fontSize: number;
|
|
7364
8188
|
lineHeight: number;
|
|
7365
8189
|
iconSize: number;
|
|
@@ -7368,10 +8192,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7368
8192
|
tabsSegmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
7369
8193
|
height: number;
|
|
7370
8194
|
containerPadding: number;
|
|
7371
|
-
containerRadius: number;
|
|
7372
8195
|
itemPaddingHorizontal: number;
|
|
7373
8196
|
itemPaddingVertical: number;
|
|
7374
|
-
itemRadius: number;
|
|
7375
8197
|
fontSize: number;
|
|
7376
8198
|
lineHeight: number;
|
|
7377
8199
|
iconSize: number;
|
|
@@ -7379,10 +8201,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7379
8201
|
} | {
|
|
7380
8202
|
height: number;
|
|
7381
8203
|
containerPadding: number;
|
|
7382
|
-
containerRadius: number;
|
|
7383
8204
|
itemPaddingHorizontal: number;
|
|
7384
8205
|
itemPaddingVertical: number;
|
|
7385
|
-
itemRadius: number;
|
|
7386
8206
|
fontSize: number;
|
|
7387
8207
|
lineHeight: number;
|
|
7388
8208
|
iconSize: number;
|
|
@@ -7390,10 +8210,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7390
8210
|
} | {
|
|
7391
8211
|
height: number;
|
|
7392
8212
|
containerPadding: number;
|
|
7393
|
-
containerRadius: number;
|
|
7394
8213
|
itemPaddingHorizontal: number;
|
|
7395
8214
|
itemPaddingVertical: number;
|
|
7396
|
-
itemRadius: number;
|
|
7397
8215
|
fontSize: number;
|
|
7398
8216
|
lineHeight: number;
|
|
7399
8217
|
iconSize: number;
|
|
@@ -7401,10 +8219,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7401
8219
|
} | {
|
|
7402
8220
|
height: number;
|
|
7403
8221
|
containerPadding: number;
|
|
7404
|
-
containerRadius: number;
|
|
7405
8222
|
itemPaddingHorizontal: number;
|
|
7406
8223
|
itemPaddingVertical: number;
|
|
7407
|
-
itemRadius: number;
|
|
7408
8224
|
fontSize: number;
|
|
7409
8225
|
lineHeight: number;
|
|
7410
8226
|
iconSize: number;
|
|
@@ -7417,7 +8233,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7417
8233
|
fontSize: number;
|
|
7418
8234
|
lineHeight: number;
|
|
7419
8235
|
gap: number;
|
|
7420
|
-
borderRadius:
|
|
8236
|
+
borderRadius: 4;
|
|
7421
8237
|
} | {
|
|
7422
8238
|
height: number;
|
|
7423
8239
|
paddingHorizontal: number;
|
|
@@ -7425,7 +8241,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7425
8241
|
fontSize: number;
|
|
7426
8242
|
lineHeight: number;
|
|
7427
8243
|
gap: number;
|
|
7428
|
-
borderRadius:
|
|
8244
|
+
borderRadius: 4;
|
|
7429
8245
|
} | {
|
|
7430
8246
|
height: number;
|
|
7431
8247
|
paddingHorizontal: number;
|
|
@@ -7433,7 +8249,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7433
8249
|
fontSize: number;
|
|
7434
8250
|
lineHeight: number;
|
|
7435
8251
|
gap: number;
|
|
7436
|
-
borderRadius:
|
|
8252
|
+
borderRadius: 2;
|
|
7437
8253
|
} | {
|
|
7438
8254
|
height: number;
|
|
7439
8255
|
paddingHorizontal: number;
|
|
@@ -7441,7 +8257,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7441
8257
|
fontSize: number;
|
|
7442
8258
|
lineHeight: number;
|
|
7443
8259
|
gap: number;
|
|
7444
|
-
borderRadius:
|
|
8260
|
+
borderRadius: 2;
|
|
7445
8261
|
};
|
|
7446
8262
|
badge: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
7447
8263
|
size: number;
|
|
@@ -7483,7 +8299,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7483
8299
|
messageSize: number;
|
|
7484
8300
|
iconSize: number;
|
|
7485
8301
|
iconWrapperSize: number;
|
|
7486
|
-
radius:
|
|
8302
|
+
radius: 4;
|
|
7487
8303
|
} | {
|
|
7488
8304
|
width: string;
|
|
7489
8305
|
paddingHorizontal: number;
|
|
@@ -7493,13 +8309,13 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7493
8309
|
messageSize: number;
|
|
7494
8310
|
iconSize: number;
|
|
7495
8311
|
iconWrapperSize: number;
|
|
7496
|
-
radius:
|
|
8312
|
+
radius: 8;
|
|
7497
8313
|
};
|
|
7498
8314
|
notificationPanel: () => {
|
|
7499
8315
|
minHeight: number;
|
|
7500
8316
|
iconFrameWidth: number;
|
|
7501
8317
|
iconSize: number;
|
|
7502
|
-
borderRadius:
|
|
8318
|
+
borderRadius: 8;
|
|
7503
8319
|
bodyPaddingHorizontal: number;
|
|
7504
8320
|
bodyPaddingVertical: number;
|
|
7505
8321
|
textGap: number;
|
|
@@ -7713,7 +8529,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7713
8529
|
searchIconSize: number;
|
|
7714
8530
|
};
|
|
7715
8531
|
modal: () => {
|
|
7716
|
-
borderRadius:
|
|
8532
|
+
borderRadius: 8;
|
|
7717
8533
|
headerPadding: string;
|
|
7718
8534
|
contentPadding: number;
|
|
7719
8535
|
headerButtonSize: "xs";
|
|
@@ -7841,7 +8657,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7841
8657
|
minHeight: number;
|
|
7842
8658
|
paddingHorizontal: number;
|
|
7843
8659
|
paddingVertical: number;
|
|
7844
|
-
borderRadius:
|
|
8660
|
+
borderRadius: 4;
|
|
7845
8661
|
gap: number;
|
|
7846
8662
|
iconSize: number;
|
|
7847
8663
|
closeButtonSize: number;
|
|
@@ -7859,7 +8675,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7859
8675
|
lineHeight: number;
|
|
7860
8676
|
iconSize: number;
|
|
7861
8677
|
gap: number;
|
|
7862
|
-
borderRadius:
|
|
8678
|
+
borderRadius: 8;
|
|
7863
8679
|
itemGap: number;
|
|
7864
8680
|
} | {
|
|
7865
8681
|
height: number;
|
|
@@ -7868,7 +8684,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7868
8684
|
lineHeight: number;
|
|
7869
8685
|
iconSize: number;
|
|
7870
8686
|
gap: number;
|
|
7871
|
-
borderRadius:
|
|
8687
|
+
borderRadius: 8;
|
|
7872
8688
|
itemGap: number;
|
|
7873
8689
|
} | {
|
|
7874
8690
|
height: number;
|
|
@@ -7877,7 +8693,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7877
8693
|
lineHeight: number;
|
|
7878
8694
|
iconSize: number;
|
|
7879
8695
|
gap: number;
|
|
7880
|
-
borderRadius:
|
|
8696
|
+
borderRadius: 6;
|
|
7881
8697
|
itemGap: number;
|
|
7882
8698
|
} | {
|
|
7883
8699
|
height: number;
|
|
@@ -7886,7 +8702,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7886
8702
|
lineHeight: number;
|
|
7887
8703
|
iconSize: number;
|
|
7888
8704
|
gap: number;
|
|
7889
|
-
borderRadius:
|
|
8705
|
+
borderRadius: 4;
|
|
7890
8706
|
itemGap: number;
|
|
7891
8707
|
} | {
|
|
7892
8708
|
height: number;
|
|
@@ -7895,7 +8711,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7895
8711
|
lineHeight: number;
|
|
7896
8712
|
iconSize: number;
|
|
7897
8713
|
gap: number;
|
|
7898
|
-
borderRadius:
|
|
8714
|
+
borderRadius: 4;
|
|
7899
8715
|
itemGap: number;
|
|
7900
8716
|
};
|
|
7901
8717
|
table: {
|
|
@@ -7936,4 +8752,4 @@ declare const ModalIdContext: React.Context<string | null>;
|
|
|
7936
8752
|
*/
|
|
7937
8753
|
declare const useModalId: () => string | null;
|
|
7938
8754
|
|
|
7939
|
-
export { type BreakpointKey, FontLoader, MOBILE_MAX_WIDTH, ModalIdContext, type ProductContext, type ResponsiveValue, SCALE_STEPS, type ScaleStep, type ThemeColors, type ThemeMode, type ThemeOverrideProps, type TypographyBodyVariant, TypographyStyleLoader, type TypographyTokens, type TypographyVariant, XUIProvider, breakpoints, colors, cssVar, defaultProductContext, fontFacesCSS, fontSize, fonts, generateTypographyCSS, getFonts, getTypographyTokens, getTypographyVariant, isAndroid, isIOS, isNative, isWeb, lineHeightCompact, lineHeightDisplay, lineHeightText, radius, responsiveTypographyScale, shadow, spacing, themeConfig, typography, typographyTokens, useDesignSystem, useId, useModalId, useResolvedTheme };
|
|
8755
|
+
export { type BreakpointKey, FontLoader, MOBILE_MAX_WIDTH, ModalIdContext, type ProductContext, type ResponsiveValue, SCALE_STEPS, type ScaleStep, type ThemeColors, type ThemeMode, type ThemeOverrideProps, type TypographyBodyVariant, TypographyStyleLoader, type TypographyTokens, type TypographyVariant, XUIProvider, breakpoints, colors, cssVar, defaultProductContext, fontFacesCSS, fontSize, fonts, generateTypographyCSS, getFonts, getTypographyTokens, getTypographyVariant, isAndroid, isIOS, isNative, isWeb, lineHeightCompact, lineHeightDisplay, lineHeightText, radius, radiusScale, responsiveTypographyScale, shadow, shape, spacing, stroke, themeConfig, typography, typographyTokens, useDesignSystem, useId, useModalId, useResolvedTheme };
|