@xsolla/xui-core 0.154.1 → 0.154.2-pr290.1778837451
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 +1023 -199
- package/index.d.ts +1023 -199
- package/index.js +214 -90
- package/index.js.map +1 -1
- package/index.mjs +210 -90
- package/index.mjs.map +1 -1
- package/package.json +1 -1
package/index.d.mts
CHANGED
|
@@ -2461,6 +2461,7 @@ declare const spacing: {
|
|
|
2461
2461
|
l: number;
|
|
2462
2462
|
xl: number;
|
|
2463
2463
|
};
|
|
2464
|
+
/** @deprecated Use shape tokens from shape.ts for per-component, per-size values */
|
|
2464
2465
|
declare const radius: {
|
|
2465
2466
|
button: number;
|
|
2466
2467
|
card: number;
|
|
@@ -2472,6 +2473,313 @@ declare const radius: {
|
|
|
2472
2473
|
avatarLarge: number;
|
|
2473
2474
|
avatarCircle: number;
|
|
2474
2475
|
};
|
|
2476
|
+
/** Primitive radius scale. Mirrors Figma "Scale / radius/*" variables. */
|
|
2477
|
+
declare const radiusScale: {
|
|
2478
|
+
readonly "25": 2;
|
|
2479
|
+
readonly "50": 4;
|
|
2480
|
+
readonly "75": 6;
|
|
2481
|
+
readonly "100": 8;
|
|
2482
|
+
readonly "150": 12;
|
|
2483
|
+
readonly "200": 16;
|
|
2484
|
+
readonly "250": 20;
|
|
2485
|
+
readonly "300": 24;
|
|
2486
|
+
readonly "350": 28;
|
|
2487
|
+
readonly "400": 32;
|
|
2488
|
+
readonly "999": 999;
|
|
2489
|
+
};
|
|
2490
|
+
/**
|
|
2491
|
+
* Full rounding (pill / circle). Figma uses radius/999 as a workaround for
|
|
2492
|
+
* the lack of percentage support; in CSS the correct value is 50%.
|
|
2493
|
+
*/
|
|
2494
|
+
declare const radiusFull: "50%";
|
|
2495
|
+
/** Primitive border-width scale. Mirrors Figma "Scale / stroke/*" variables. */
|
|
2496
|
+
declare const stroke: {
|
|
2497
|
+
readonly "1": 1;
|
|
2498
|
+
readonly "2": 2;
|
|
2499
|
+
readonly "3": 3;
|
|
2500
|
+
};
|
|
2501
|
+
|
|
2502
|
+
/**
|
|
2503
|
+
* Semantic shape tokens. Mirrors Figma "Theme / Shape" variable collection,
|
|
2504
|
+
* Xsolla Default mode. Values alias into the radiusScale and stroke primitives.
|
|
2505
|
+
*/
|
|
2506
|
+
declare const shape: {
|
|
2507
|
+
readonly button: {
|
|
2508
|
+
readonly xl: {
|
|
2509
|
+
readonly borderRadius: 8;
|
|
2510
|
+
readonly borderWidth: 1;
|
|
2511
|
+
};
|
|
2512
|
+
readonly lg: {
|
|
2513
|
+
readonly borderRadius: 8;
|
|
2514
|
+
readonly borderWidth: 1;
|
|
2515
|
+
};
|
|
2516
|
+
readonly md: {
|
|
2517
|
+
readonly borderRadius: 6;
|
|
2518
|
+
readonly borderWidth: 1;
|
|
2519
|
+
};
|
|
2520
|
+
readonly sm: {
|
|
2521
|
+
readonly borderRadius: 4;
|
|
2522
|
+
readonly borderWidth: 1;
|
|
2523
|
+
};
|
|
2524
|
+
readonly xs: {
|
|
2525
|
+
readonly borderRadius: 4;
|
|
2526
|
+
readonly borderWidth: 1;
|
|
2527
|
+
};
|
|
2528
|
+
};
|
|
2529
|
+
readonly checkbox: {
|
|
2530
|
+
readonly xl: {
|
|
2531
|
+
readonly borderRadius: 4;
|
|
2532
|
+
readonly borderWidth: 1;
|
|
2533
|
+
};
|
|
2534
|
+
readonly lg: {
|
|
2535
|
+
readonly borderRadius: 4;
|
|
2536
|
+
readonly borderWidth: 1;
|
|
2537
|
+
};
|
|
2538
|
+
readonly md: {
|
|
2539
|
+
readonly borderRadius: 4;
|
|
2540
|
+
readonly borderWidth: 1;
|
|
2541
|
+
};
|
|
2542
|
+
readonly sm: {
|
|
2543
|
+
readonly borderRadius: 4;
|
|
2544
|
+
readonly borderWidth: 1;
|
|
2545
|
+
};
|
|
2546
|
+
};
|
|
2547
|
+
readonly input: {
|
|
2548
|
+
readonly xl: {
|
|
2549
|
+
readonly borderRadius: 8;
|
|
2550
|
+
readonly borderWidth: 1;
|
|
2551
|
+
};
|
|
2552
|
+
readonly lg: {
|
|
2553
|
+
readonly borderRadius: 8;
|
|
2554
|
+
readonly borderWidth: 1;
|
|
2555
|
+
};
|
|
2556
|
+
readonly md: {
|
|
2557
|
+
readonly borderRadius: 8;
|
|
2558
|
+
readonly borderWidth: 1;
|
|
2559
|
+
};
|
|
2560
|
+
readonly sm: {
|
|
2561
|
+
readonly borderRadius: 4;
|
|
2562
|
+
readonly borderWidth: 1;
|
|
2563
|
+
};
|
|
2564
|
+
readonly xs: {
|
|
2565
|
+
readonly borderRadius: 4;
|
|
2566
|
+
readonly borderWidth: 1;
|
|
2567
|
+
};
|
|
2568
|
+
};
|
|
2569
|
+
readonly segmented: {
|
|
2570
|
+
readonly xl: {
|
|
2571
|
+
readonly borderRadius: 8;
|
|
2572
|
+
readonly borderWidth: 1;
|
|
2573
|
+
};
|
|
2574
|
+
readonly lg: {
|
|
2575
|
+
readonly borderRadius: 8;
|
|
2576
|
+
readonly borderWidth: 1;
|
|
2577
|
+
};
|
|
2578
|
+
readonly md: {
|
|
2579
|
+
readonly borderRadius: 8;
|
|
2580
|
+
readonly borderWidth: 1;
|
|
2581
|
+
};
|
|
2582
|
+
readonly sm: {
|
|
2583
|
+
readonly borderRadius: 4;
|
|
2584
|
+
readonly borderWidth: 1;
|
|
2585
|
+
};
|
|
2586
|
+
};
|
|
2587
|
+
readonly segmentedItem: {
|
|
2588
|
+
readonly xl: {
|
|
2589
|
+
readonly borderRadius: 4;
|
|
2590
|
+
readonly borderWidth: 1;
|
|
2591
|
+
};
|
|
2592
|
+
readonly lg: {
|
|
2593
|
+
readonly borderRadius: 4;
|
|
2594
|
+
readonly borderWidth: 1;
|
|
2595
|
+
};
|
|
2596
|
+
readonly md: {
|
|
2597
|
+
readonly borderRadius: 4;
|
|
2598
|
+
readonly borderWidth: 1;
|
|
2599
|
+
};
|
|
2600
|
+
readonly sm: {
|
|
2601
|
+
readonly borderRadius: 2;
|
|
2602
|
+
readonly borderWidth: 1;
|
|
2603
|
+
};
|
|
2604
|
+
};
|
|
2605
|
+
readonly switch: {
|
|
2606
|
+
readonly xl: {
|
|
2607
|
+
readonly borderRadius: 4;
|
|
2608
|
+
readonly borderWidth: 1;
|
|
2609
|
+
};
|
|
2610
|
+
readonly lg: {
|
|
2611
|
+
readonly borderRadius: 4;
|
|
2612
|
+
readonly borderWidth: 1;
|
|
2613
|
+
};
|
|
2614
|
+
readonly md: {
|
|
2615
|
+
readonly borderRadius: 4;
|
|
2616
|
+
readonly borderWidth: 1;
|
|
2617
|
+
};
|
|
2618
|
+
readonly sm: {
|
|
2619
|
+
readonly borderRadius: 4;
|
|
2620
|
+
readonly borderWidth: 1;
|
|
2621
|
+
};
|
|
2622
|
+
};
|
|
2623
|
+
readonly knob: {
|
|
2624
|
+
readonly xl: {
|
|
2625
|
+
readonly borderRadius: 2;
|
|
2626
|
+
};
|
|
2627
|
+
readonly lg: {
|
|
2628
|
+
readonly borderRadius: 2;
|
|
2629
|
+
};
|
|
2630
|
+
readonly md: {
|
|
2631
|
+
readonly borderRadius: 2;
|
|
2632
|
+
};
|
|
2633
|
+
readonly sm: {
|
|
2634
|
+
readonly borderRadius: 2;
|
|
2635
|
+
};
|
|
2636
|
+
};
|
|
2637
|
+
readonly tabItem: {
|
|
2638
|
+
readonly xl: {
|
|
2639
|
+
readonly borderRadius: 8;
|
|
2640
|
+
};
|
|
2641
|
+
readonly lg: {
|
|
2642
|
+
readonly borderRadius: 8;
|
|
2643
|
+
};
|
|
2644
|
+
readonly md: {
|
|
2645
|
+
readonly borderRadius: 4;
|
|
2646
|
+
};
|
|
2647
|
+
readonly sm: {
|
|
2648
|
+
readonly borderRadius: 4;
|
|
2649
|
+
};
|
|
2650
|
+
};
|
|
2651
|
+
readonly tag: {
|
|
2652
|
+
readonly xl: {
|
|
2653
|
+
readonly borderRadius: 8;
|
|
2654
|
+
readonly borderWidth: 1;
|
|
2655
|
+
};
|
|
2656
|
+
readonly lg: {
|
|
2657
|
+
readonly borderRadius: 8;
|
|
2658
|
+
readonly borderWidth: 1;
|
|
2659
|
+
};
|
|
2660
|
+
readonly md: {
|
|
2661
|
+
readonly borderRadius: 6;
|
|
2662
|
+
readonly borderWidth: 1;
|
|
2663
|
+
};
|
|
2664
|
+
readonly sm: {
|
|
2665
|
+
readonly borderRadius: 4;
|
|
2666
|
+
readonly borderWidth: 1;
|
|
2667
|
+
};
|
|
2668
|
+
readonly xs: {
|
|
2669
|
+
readonly borderRadius: 4;
|
|
2670
|
+
readonly borderWidth: 1;
|
|
2671
|
+
};
|
|
2672
|
+
readonly label: {
|
|
2673
|
+
readonly borderRadius: 0;
|
|
2674
|
+
};
|
|
2675
|
+
};
|
|
2676
|
+
readonly tooltip: {
|
|
2677
|
+
readonly xl: {
|
|
2678
|
+
readonly borderRadius: 8;
|
|
2679
|
+
};
|
|
2680
|
+
readonly lg: {
|
|
2681
|
+
readonly borderRadius: 8;
|
|
2682
|
+
};
|
|
2683
|
+
readonly md: {
|
|
2684
|
+
readonly borderRadius: 8;
|
|
2685
|
+
};
|
|
2686
|
+
readonly sm: {
|
|
2687
|
+
readonly borderRadius: 4;
|
|
2688
|
+
};
|
|
2689
|
+
};
|
|
2690
|
+
readonly radio: {
|
|
2691
|
+
readonly xl: {
|
|
2692
|
+
readonly borderRadius: "50%";
|
|
2693
|
+
readonly borderWidth: 1;
|
|
2694
|
+
};
|
|
2695
|
+
readonly lg: {
|
|
2696
|
+
readonly borderRadius: "50%";
|
|
2697
|
+
readonly borderWidth: 1;
|
|
2698
|
+
};
|
|
2699
|
+
readonly md: {
|
|
2700
|
+
readonly borderRadius: "50%";
|
|
2701
|
+
readonly borderWidth: 1;
|
|
2702
|
+
};
|
|
2703
|
+
readonly sm: {
|
|
2704
|
+
readonly borderRadius: "50%";
|
|
2705
|
+
readonly borderWidth: 1;
|
|
2706
|
+
};
|
|
2707
|
+
};
|
|
2708
|
+
readonly contextMenu: {
|
|
2709
|
+
readonly xl: {
|
|
2710
|
+
readonly borderRadius: 8;
|
|
2711
|
+
};
|
|
2712
|
+
readonly lg: {
|
|
2713
|
+
readonly borderRadius: 8;
|
|
2714
|
+
};
|
|
2715
|
+
readonly md: {
|
|
2716
|
+
readonly borderRadius: 8;
|
|
2717
|
+
};
|
|
2718
|
+
readonly sm: {
|
|
2719
|
+
readonly borderRadius: 4;
|
|
2720
|
+
};
|
|
2721
|
+
readonly xs: {
|
|
2722
|
+
readonly borderRadius: 4;
|
|
2723
|
+
};
|
|
2724
|
+
};
|
|
2725
|
+
readonly avatar: {
|
|
2726
|
+
readonly xl: {
|
|
2727
|
+
readonly borderRadius: 8;
|
|
2728
|
+
readonly borderWidth: 2;
|
|
2729
|
+
};
|
|
2730
|
+
readonly lg: {
|
|
2731
|
+
readonly borderRadius: 6;
|
|
2732
|
+
readonly borderWidth: 2;
|
|
2733
|
+
};
|
|
2734
|
+
readonly md: {
|
|
2735
|
+
readonly borderRadius: 6;
|
|
2736
|
+
readonly borderWidth: 2;
|
|
2737
|
+
};
|
|
2738
|
+
readonly sm: {
|
|
2739
|
+
readonly borderRadius: 4;
|
|
2740
|
+
readonly borderWidth: 2;
|
|
2741
|
+
};
|
|
2742
|
+
readonly xs: {
|
|
2743
|
+
readonly borderRadius: 4;
|
|
2744
|
+
readonly borderWidth: 2;
|
|
2745
|
+
};
|
|
2746
|
+
readonly xxs: {
|
|
2747
|
+
readonly borderRadius: 2;
|
|
2748
|
+
readonly borderWidth: 2;
|
|
2749
|
+
};
|
|
2750
|
+
};
|
|
2751
|
+
readonly modal: {
|
|
2752
|
+
readonly borderRadius: 8;
|
|
2753
|
+
};
|
|
2754
|
+
readonly toast: {
|
|
2755
|
+
readonly borderRadius: 4;
|
|
2756
|
+
};
|
|
2757
|
+
readonly toggleButtonGroup: {
|
|
2758
|
+
readonly xl: {
|
|
2759
|
+
readonly borderRadius: 8;
|
|
2760
|
+
readonly borderWidth: 1;
|
|
2761
|
+
};
|
|
2762
|
+
readonly lg: {
|
|
2763
|
+
readonly borderRadius: 8;
|
|
2764
|
+
readonly borderWidth: 1;
|
|
2765
|
+
};
|
|
2766
|
+
readonly md: {
|
|
2767
|
+
readonly borderRadius: 6;
|
|
2768
|
+
readonly borderWidth: 1;
|
|
2769
|
+
};
|
|
2770
|
+
readonly sm: {
|
|
2771
|
+
readonly borderRadius: 4;
|
|
2772
|
+
readonly borderWidth: 1;
|
|
2773
|
+
};
|
|
2774
|
+
readonly xs: {
|
|
2775
|
+
readonly borderRadius: 4;
|
|
2776
|
+
readonly borderWidth: 1;
|
|
2777
|
+
};
|
|
2778
|
+
};
|
|
2779
|
+
readonly tagLabel: {
|
|
2780
|
+
readonly borderRadius: 0;
|
|
2781
|
+
};
|
|
2782
|
+
};
|
|
2475
2783
|
|
|
2476
2784
|
declare const shadow: {
|
|
2477
2785
|
active: string;
|
|
@@ -3847,16 +4155,282 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3847
4155
|
l: number;
|
|
3848
4156
|
xl: number;
|
|
3849
4157
|
};
|
|
3850
|
-
|
|
3851
|
-
button:
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
4158
|
+
shape: {
|
|
4159
|
+
readonly button: {
|
|
4160
|
+
readonly xl: {
|
|
4161
|
+
readonly borderRadius: 8;
|
|
4162
|
+
readonly borderWidth: 1;
|
|
4163
|
+
};
|
|
4164
|
+
readonly lg: {
|
|
4165
|
+
readonly borderRadius: 8;
|
|
4166
|
+
readonly borderWidth: 1;
|
|
4167
|
+
};
|
|
4168
|
+
readonly md: {
|
|
4169
|
+
readonly borderRadius: 6;
|
|
4170
|
+
readonly borderWidth: 1;
|
|
4171
|
+
};
|
|
4172
|
+
readonly sm: {
|
|
4173
|
+
readonly borderRadius: 4;
|
|
4174
|
+
readonly borderWidth: 1;
|
|
4175
|
+
};
|
|
4176
|
+
readonly xs: {
|
|
4177
|
+
readonly borderRadius: 4;
|
|
4178
|
+
readonly borderWidth: 1;
|
|
4179
|
+
};
|
|
4180
|
+
};
|
|
4181
|
+
readonly checkbox: {
|
|
4182
|
+
readonly xl: {
|
|
4183
|
+
readonly borderRadius: 4;
|
|
4184
|
+
readonly borderWidth: 1;
|
|
4185
|
+
};
|
|
4186
|
+
readonly lg: {
|
|
4187
|
+
readonly borderRadius: 4;
|
|
4188
|
+
readonly borderWidth: 1;
|
|
4189
|
+
};
|
|
4190
|
+
readonly md: {
|
|
4191
|
+
readonly borderRadius: 4;
|
|
4192
|
+
readonly borderWidth: 1;
|
|
4193
|
+
};
|
|
4194
|
+
readonly sm: {
|
|
4195
|
+
readonly borderRadius: 4;
|
|
4196
|
+
readonly borderWidth: 1;
|
|
4197
|
+
};
|
|
4198
|
+
};
|
|
4199
|
+
readonly input: {
|
|
4200
|
+
readonly xl: {
|
|
4201
|
+
readonly borderRadius: 8;
|
|
4202
|
+
readonly borderWidth: 1;
|
|
4203
|
+
};
|
|
4204
|
+
readonly lg: {
|
|
4205
|
+
readonly borderRadius: 8;
|
|
4206
|
+
readonly borderWidth: 1;
|
|
4207
|
+
};
|
|
4208
|
+
readonly md: {
|
|
4209
|
+
readonly borderRadius: 8;
|
|
4210
|
+
readonly borderWidth: 1;
|
|
4211
|
+
};
|
|
4212
|
+
readonly sm: {
|
|
4213
|
+
readonly borderRadius: 4;
|
|
4214
|
+
readonly borderWidth: 1;
|
|
4215
|
+
};
|
|
4216
|
+
readonly xs: {
|
|
4217
|
+
readonly borderRadius: 4;
|
|
4218
|
+
readonly borderWidth: 1;
|
|
4219
|
+
};
|
|
4220
|
+
};
|
|
4221
|
+
readonly segmented: {
|
|
4222
|
+
readonly xl: {
|
|
4223
|
+
readonly borderRadius: 8;
|
|
4224
|
+
readonly borderWidth: 1;
|
|
4225
|
+
};
|
|
4226
|
+
readonly lg: {
|
|
4227
|
+
readonly borderRadius: 8;
|
|
4228
|
+
readonly borderWidth: 1;
|
|
4229
|
+
};
|
|
4230
|
+
readonly md: {
|
|
4231
|
+
readonly borderRadius: 8;
|
|
4232
|
+
readonly borderWidth: 1;
|
|
4233
|
+
};
|
|
4234
|
+
readonly sm: {
|
|
4235
|
+
readonly borderRadius: 4;
|
|
4236
|
+
readonly borderWidth: 1;
|
|
4237
|
+
};
|
|
4238
|
+
};
|
|
4239
|
+
readonly segmentedItem: {
|
|
4240
|
+
readonly xl: {
|
|
4241
|
+
readonly borderRadius: 4;
|
|
4242
|
+
readonly borderWidth: 1;
|
|
4243
|
+
};
|
|
4244
|
+
readonly lg: {
|
|
4245
|
+
readonly borderRadius: 4;
|
|
4246
|
+
readonly borderWidth: 1;
|
|
4247
|
+
};
|
|
4248
|
+
readonly md: {
|
|
4249
|
+
readonly borderRadius: 4;
|
|
4250
|
+
readonly borderWidth: 1;
|
|
4251
|
+
};
|
|
4252
|
+
readonly sm: {
|
|
4253
|
+
readonly borderRadius: 2;
|
|
4254
|
+
readonly borderWidth: 1;
|
|
4255
|
+
};
|
|
4256
|
+
};
|
|
4257
|
+
readonly switch: {
|
|
4258
|
+
readonly xl: {
|
|
4259
|
+
readonly borderRadius: 4;
|
|
4260
|
+
readonly borderWidth: 1;
|
|
4261
|
+
};
|
|
4262
|
+
readonly lg: {
|
|
4263
|
+
readonly borderRadius: 4;
|
|
4264
|
+
readonly borderWidth: 1;
|
|
4265
|
+
};
|
|
4266
|
+
readonly md: {
|
|
4267
|
+
readonly borderRadius: 4;
|
|
4268
|
+
readonly borderWidth: 1;
|
|
4269
|
+
};
|
|
4270
|
+
readonly sm: {
|
|
4271
|
+
readonly borderRadius: 4;
|
|
4272
|
+
readonly borderWidth: 1;
|
|
4273
|
+
};
|
|
4274
|
+
};
|
|
4275
|
+
readonly knob: {
|
|
4276
|
+
readonly xl: {
|
|
4277
|
+
readonly borderRadius: 2;
|
|
4278
|
+
};
|
|
4279
|
+
readonly lg: {
|
|
4280
|
+
readonly borderRadius: 2;
|
|
4281
|
+
};
|
|
4282
|
+
readonly md: {
|
|
4283
|
+
readonly borderRadius: 2;
|
|
4284
|
+
};
|
|
4285
|
+
readonly sm: {
|
|
4286
|
+
readonly borderRadius: 2;
|
|
4287
|
+
};
|
|
4288
|
+
};
|
|
4289
|
+
readonly tabItem: {
|
|
4290
|
+
readonly xl: {
|
|
4291
|
+
readonly borderRadius: 8;
|
|
4292
|
+
};
|
|
4293
|
+
readonly lg: {
|
|
4294
|
+
readonly borderRadius: 8;
|
|
4295
|
+
};
|
|
4296
|
+
readonly md: {
|
|
4297
|
+
readonly borderRadius: 4;
|
|
4298
|
+
};
|
|
4299
|
+
readonly sm: {
|
|
4300
|
+
readonly borderRadius: 4;
|
|
4301
|
+
};
|
|
4302
|
+
};
|
|
4303
|
+
readonly tag: {
|
|
4304
|
+
readonly xl: {
|
|
4305
|
+
readonly borderRadius: 8;
|
|
4306
|
+
readonly borderWidth: 1;
|
|
4307
|
+
};
|
|
4308
|
+
readonly lg: {
|
|
4309
|
+
readonly borderRadius: 8;
|
|
4310
|
+
readonly borderWidth: 1;
|
|
4311
|
+
};
|
|
4312
|
+
readonly md: {
|
|
4313
|
+
readonly borderRadius: 6;
|
|
4314
|
+
readonly borderWidth: 1;
|
|
4315
|
+
};
|
|
4316
|
+
readonly sm: {
|
|
4317
|
+
readonly borderRadius: 4;
|
|
4318
|
+
readonly borderWidth: 1;
|
|
4319
|
+
};
|
|
4320
|
+
readonly xs: {
|
|
4321
|
+
readonly borderRadius: 4;
|
|
4322
|
+
readonly borderWidth: 1;
|
|
4323
|
+
};
|
|
4324
|
+
readonly label: {
|
|
4325
|
+
readonly borderRadius: 0;
|
|
4326
|
+
};
|
|
4327
|
+
};
|
|
4328
|
+
readonly tooltip: {
|
|
4329
|
+
readonly xl: {
|
|
4330
|
+
readonly borderRadius: 8;
|
|
4331
|
+
};
|
|
4332
|
+
readonly lg: {
|
|
4333
|
+
readonly borderRadius: 8;
|
|
4334
|
+
};
|
|
4335
|
+
readonly md: {
|
|
4336
|
+
readonly borderRadius: 8;
|
|
4337
|
+
};
|
|
4338
|
+
readonly sm: {
|
|
4339
|
+
readonly borderRadius: 4;
|
|
4340
|
+
};
|
|
4341
|
+
};
|
|
4342
|
+
readonly radio: {
|
|
4343
|
+
readonly xl: {
|
|
4344
|
+
readonly borderRadius: "50%";
|
|
4345
|
+
readonly borderWidth: 1;
|
|
4346
|
+
};
|
|
4347
|
+
readonly lg: {
|
|
4348
|
+
readonly borderRadius: "50%";
|
|
4349
|
+
readonly borderWidth: 1;
|
|
4350
|
+
};
|
|
4351
|
+
readonly md: {
|
|
4352
|
+
readonly borderRadius: "50%";
|
|
4353
|
+
readonly borderWidth: 1;
|
|
4354
|
+
};
|
|
4355
|
+
readonly sm: {
|
|
4356
|
+
readonly borderRadius: "50%";
|
|
4357
|
+
readonly borderWidth: 1;
|
|
4358
|
+
};
|
|
4359
|
+
};
|
|
4360
|
+
readonly contextMenu: {
|
|
4361
|
+
readonly xl: {
|
|
4362
|
+
readonly borderRadius: 8;
|
|
4363
|
+
};
|
|
4364
|
+
readonly lg: {
|
|
4365
|
+
readonly borderRadius: 8;
|
|
4366
|
+
};
|
|
4367
|
+
readonly md: {
|
|
4368
|
+
readonly borderRadius: 8;
|
|
4369
|
+
};
|
|
4370
|
+
readonly sm: {
|
|
4371
|
+
readonly borderRadius: 4;
|
|
4372
|
+
};
|
|
4373
|
+
readonly xs: {
|
|
4374
|
+
readonly borderRadius: 4;
|
|
4375
|
+
};
|
|
4376
|
+
};
|
|
4377
|
+
readonly avatar: {
|
|
4378
|
+
readonly xl: {
|
|
4379
|
+
readonly borderRadius: 8;
|
|
4380
|
+
readonly borderWidth: 2;
|
|
4381
|
+
};
|
|
4382
|
+
readonly lg: {
|
|
4383
|
+
readonly borderRadius: 6;
|
|
4384
|
+
readonly borderWidth: 2;
|
|
4385
|
+
};
|
|
4386
|
+
readonly md: {
|
|
4387
|
+
readonly borderRadius: 6;
|
|
4388
|
+
readonly borderWidth: 2;
|
|
4389
|
+
};
|
|
4390
|
+
readonly sm: {
|
|
4391
|
+
readonly borderRadius: 4;
|
|
4392
|
+
readonly borderWidth: 2;
|
|
4393
|
+
};
|
|
4394
|
+
readonly xs: {
|
|
4395
|
+
readonly borderRadius: 4;
|
|
4396
|
+
readonly borderWidth: 2;
|
|
4397
|
+
};
|
|
4398
|
+
readonly xxs: {
|
|
4399
|
+
readonly borderRadius: 2;
|
|
4400
|
+
readonly borderWidth: 2;
|
|
4401
|
+
};
|
|
4402
|
+
};
|
|
4403
|
+
readonly modal: {
|
|
4404
|
+
readonly borderRadius: 8;
|
|
4405
|
+
};
|
|
4406
|
+
readonly toast: {
|
|
4407
|
+
readonly borderRadius: 4;
|
|
4408
|
+
};
|
|
4409
|
+
readonly toggleButtonGroup: {
|
|
4410
|
+
readonly xl: {
|
|
4411
|
+
readonly borderRadius: 8;
|
|
4412
|
+
readonly borderWidth: 1;
|
|
4413
|
+
};
|
|
4414
|
+
readonly lg: {
|
|
4415
|
+
readonly borderRadius: 8;
|
|
4416
|
+
readonly borderWidth: 1;
|
|
4417
|
+
};
|
|
4418
|
+
readonly md: {
|
|
4419
|
+
readonly borderRadius: 6;
|
|
4420
|
+
readonly borderWidth: 1;
|
|
4421
|
+
};
|
|
4422
|
+
readonly sm: {
|
|
4423
|
+
readonly borderRadius: 4;
|
|
4424
|
+
readonly borderWidth: 1;
|
|
4425
|
+
};
|
|
4426
|
+
readonly xs: {
|
|
4427
|
+
readonly borderRadius: 4;
|
|
4428
|
+
readonly borderWidth: 1;
|
|
4429
|
+
};
|
|
4430
|
+
};
|
|
4431
|
+
readonly tagLabel: {
|
|
4432
|
+
readonly borderRadius: 0;
|
|
4433
|
+
};
|
|
3860
4434
|
};
|
|
3861
4435
|
shadow: {
|
|
3862
4436
|
active: string;
|
|
@@ -3889,7 +4463,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3889
4463
|
iconContainerSize: number;
|
|
3890
4464
|
iconPadding: number;
|
|
3891
4465
|
loadingPadding: number;
|
|
3892
|
-
borderRadius:
|
|
4466
|
+
borderRadius: 8;
|
|
3893
4467
|
labelIconSize: number;
|
|
3894
4468
|
labelIconGap: number;
|
|
3895
4469
|
} | {
|
|
@@ -3902,7 +4476,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3902
4476
|
iconContainerSize: number;
|
|
3903
4477
|
iconPadding: number;
|
|
3904
4478
|
loadingPadding: number;
|
|
3905
|
-
borderRadius:
|
|
4479
|
+
borderRadius: 8;
|
|
3906
4480
|
labelIconSize: number;
|
|
3907
4481
|
labelIconGap: number;
|
|
3908
4482
|
} | {
|
|
@@ -3915,7 +4489,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3915
4489
|
iconContainerSize: number;
|
|
3916
4490
|
iconPadding: number;
|
|
3917
4491
|
loadingPadding: number;
|
|
3918
|
-
borderRadius:
|
|
4492
|
+
borderRadius: 6;
|
|
3919
4493
|
labelIconSize: number;
|
|
3920
4494
|
labelIconGap: number;
|
|
3921
4495
|
} | {
|
|
@@ -3928,7 +4502,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3928
4502
|
iconContainerSize: number;
|
|
3929
4503
|
iconPadding: number;
|
|
3930
4504
|
loadingPadding: number;
|
|
3931
|
-
borderRadius:
|
|
4505
|
+
borderRadius: 4;
|
|
3932
4506
|
labelIconSize: number;
|
|
3933
4507
|
labelIconGap: number;
|
|
3934
4508
|
} | {
|
|
@@ -3941,7 +4515,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3941
4515
|
iconContainerSize: number;
|
|
3942
4516
|
iconPadding: number;
|
|
3943
4517
|
loadingPadding: number;
|
|
3944
|
-
borderRadius:
|
|
4518
|
+
borderRadius: 4;
|
|
3945
4519
|
labelIconSize: number;
|
|
3946
4520
|
labelIconGap: number;
|
|
3947
4521
|
};
|
|
@@ -3951,35 +4525,35 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3951
4525
|
fontSize: number;
|
|
3952
4526
|
spinnerSize: number;
|
|
3953
4527
|
iconSize: number;
|
|
3954
|
-
borderRadius:
|
|
4528
|
+
borderRadius: 4;
|
|
3955
4529
|
} | {
|
|
3956
4530
|
height: number;
|
|
3957
4531
|
padding: number;
|
|
3958
4532
|
fontSize: number;
|
|
3959
4533
|
spinnerSize: number;
|
|
3960
4534
|
iconSize: number;
|
|
3961
|
-
borderRadius:
|
|
4535
|
+
borderRadius: 4;
|
|
3962
4536
|
} | {
|
|
3963
4537
|
height: number;
|
|
3964
4538
|
padding: number;
|
|
3965
4539
|
fontSize: number;
|
|
3966
4540
|
spinnerSize: number;
|
|
3967
4541
|
iconSize: number;
|
|
3968
|
-
borderRadius:
|
|
4542
|
+
borderRadius: 2;
|
|
3969
4543
|
} | {
|
|
3970
4544
|
height: number;
|
|
3971
4545
|
padding: number;
|
|
3972
4546
|
fontSize: number;
|
|
3973
4547
|
spinnerSize: number;
|
|
3974
4548
|
iconSize: number;
|
|
3975
|
-
borderRadius:
|
|
4549
|
+
borderRadius: 2;
|
|
3976
4550
|
} | {
|
|
3977
4551
|
height: number;
|
|
3978
4552
|
padding: number;
|
|
3979
4553
|
fontSize: number;
|
|
3980
4554
|
spinnerSize: number;
|
|
3981
4555
|
iconSize: number;
|
|
3982
|
-
borderRadius:
|
|
4556
|
+
borderRadius: 2;
|
|
3983
4557
|
};
|
|
3984
4558
|
checkbox: (size: "xl" | "lg" | "md" | "sm") => {
|
|
3985
4559
|
size: number;
|
|
@@ -3987,28 +4561,28 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3987
4561
|
descriptionFontSize: number;
|
|
3988
4562
|
labelGap: number;
|
|
3989
4563
|
textGap: number;
|
|
3990
|
-
borderRadius:
|
|
4564
|
+
borderRadius: 4;
|
|
3991
4565
|
} | {
|
|
3992
4566
|
size: number;
|
|
3993
4567
|
fontSize: number;
|
|
3994
4568
|
descriptionFontSize: number;
|
|
3995
4569
|
labelGap: number;
|
|
3996
4570
|
textGap: number;
|
|
3997
|
-
borderRadius:
|
|
4571
|
+
borderRadius: 4;
|
|
3998
4572
|
} | {
|
|
3999
4573
|
size: number;
|
|
4000
4574
|
fontSize: number;
|
|
4001
4575
|
descriptionFontSize: number;
|
|
4002
4576
|
labelGap: number;
|
|
4003
4577
|
textGap: number;
|
|
4004
|
-
borderRadius:
|
|
4578
|
+
borderRadius: 4;
|
|
4005
4579
|
} | {
|
|
4006
4580
|
size: number;
|
|
4007
4581
|
fontSize: number;
|
|
4008
4582
|
descriptionFontSize: number;
|
|
4009
4583
|
labelGap: number;
|
|
4010
4584
|
textGap: number;
|
|
4011
|
-
borderRadius:
|
|
4585
|
+
borderRadius: 4;
|
|
4012
4586
|
};
|
|
4013
4587
|
radio: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4014
4588
|
size: number;
|
|
@@ -4053,7 +4627,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4053
4627
|
paddingHorizontal: number;
|
|
4054
4628
|
fontSize: number;
|
|
4055
4629
|
iconSize: number;
|
|
4056
|
-
radius:
|
|
4630
|
+
radius: 8;
|
|
4057
4631
|
borderWidth: number;
|
|
4058
4632
|
fieldGap: number;
|
|
4059
4633
|
lineHeight: number;
|
|
@@ -4063,7 +4637,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4063
4637
|
paddingHorizontal: number;
|
|
4064
4638
|
fontSize: number;
|
|
4065
4639
|
iconSize: number;
|
|
4066
|
-
radius:
|
|
4640
|
+
radius: 8;
|
|
4067
4641
|
borderWidth: number;
|
|
4068
4642
|
fieldGap: number;
|
|
4069
4643
|
lineHeight: number;
|
|
@@ -4073,7 +4647,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4073
4647
|
paddingHorizontal: number;
|
|
4074
4648
|
fontSize: number;
|
|
4075
4649
|
iconSize: number;
|
|
4076
|
-
radius:
|
|
4650
|
+
radius: 8;
|
|
4077
4651
|
borderWidth: number;
|
|
4078
4652
|
fieldGap: number;
|
|
4079
4653
|
lineHeight: number;
|
|
@@ -4083,7 +4657,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4083
4657
|
paddingHorizontal: number;
|
|
4084
4658
|
fontSize: number;
|
|
4085
4659
|
iconSize: number;
|
|
4086
|
-
radius:
|
|
4660
|
+
radius: 4;
|
|
4087
4661
|
borderWidth: number;
|
|
4088
4662
|
fieldGap: number;
|
|
4089
4663
|
lineHeight: number;
|
|
@@ -4093,7 +4667,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4093
4667
|
paddingHorizontal: number;
|
|
4094
4668
|
fontSize: number;
|
|
4095
4669
|
iconSize: number;
|
|
4096
|
-
radius:
|
|
4670
|
+
radius: 4;
|
|
4097
4671
|
borderWidth: number;
|
|
4098
4672
|
fieldGap: number;
|
|
4099
4673
|
lineHeight: number;
|
|
@@ -4110,7 +4684,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4110
4684
|
errorFontSize: number;
|
|
4111
4685
|
errorLineHeight: number;
|
|
4112
4686
|
errorGap: number;
|
|
4113
|
-
radius:
|
|
4687
|
+
radius: 8;
|
|
4114
4688
|
borderWidth: number;
|
|
4115
4689
|
} | {
|
|
4116
4690
|
box: number;
|
|
@@ -4124,7 +4698,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4124
4698
|
errorFontSize: number;
|
|
4125
4699
|
errorLineHeight: number;
|
|
4126
4700
|
errorGap: number;
|
|
4127
|
-
radius:
|
|
4701
|
+
radius: 8;
|
|
4128
4702
|
borderWidth: number;
|
|
4129
4703
|
} | {
|
|
4130
4704
|
box: number;
|
|
@@ -4138,7 +4712,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4138
4712
|
errorFontSize: number;
|
|
4139
4713
|
errorLineHeight: number;
|
|
4140
4714
|
errorGap: number;
|
|
4141
|
-
radius:
|
|
4715
|
+
radius: 8;
|
|
4142
4716
|
borderWidth: number;
|
|
4143
4717
|
} | {
|
|
4144
4718
|
box: number;
|
|
@@ -4152,7 +4726,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4152
4726
|
errorFontSize: number;
|
|
4153
4727
|
errorLineHeight: number;
|
|
4154
4728
|
errorGap: number;
|
|
4155
|
-
radius:
|
|
4729
|
+
radius: 4;
|
|
4156
4730
|
borderWidth: number;
|
|
4157
4731
|
} | {
|
|
4158
4732
|
box: number;
|
|
@@ -4166,42 +4740,42 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4166
4740
|
errorFontSize: number;
|
|
4167
4741
|
errorLineHeight: number;
|
|
4168
4742
|
errorGap: number;
|
|
4169
|
-
radius:
|
|
4743
|
+
radius: 4;
|
|
4170
4744
|
borderWidth: number;
|
|
4171
4745
|
};
|
|
4172
4746
|
inputPin: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
4173
4747
|
size: number;
|
|
4174
4748
|
gap: number;
|
|
4175
4749
|
fontSize: number;
|
|
4176
|
-
radius:
|
|
4750
|
+
radius: 8;
|
|
4177
4751
|
borderWidth: number;
|
|
4178
4752
|
fieldGap: number;
|
|
4179
4753
|
} | {
|
|
4180
4754
|
size: number;
|
|
4181
4755
|
gap: number;
|
|
4182
4756
|
fontSize: number;
|
|
4183
|
-
radius:
|
|
4757
|
+
radius: 8;
|
|
4184
4758
|
borderWidth: number;
|
|
4185
4759
|
fieldGap: number;
|
|
4186
4760
|
} | {
|
|
4187
4761
|
size: number;
|
|
4188
4762
|
gap: number;
|
|
4189
4763
|
fontSize: number;
|
|
4190
|
-
radius:
|
|
4764
|
+
radius: 8;
|
|
4191
4765
|
borderWidth: number;
|
|
4192
4766
|
fieldGap: number;
|
|
4193
4767
|
} | {
|
|
4194
4768
|
size: number;
|
|
4195
4769
|
gap: number;
|
|
4196
4770
|
fontSize: number;
|
|
4197
|
-
radius:
|
|
4771
|
+
radius: 4;
|
|
4198
4772
|
borderWidth: number;
|
|
4199
4773
|
fieldGap: number;
|
|
4200
4774
|
} | {
|
|
4201
4775
|
size: number;
|
|
4202
4776
|
gap: number;
|
|
4203
4777
|
fontSize: number;
|
|
4204
|
-
radius:
|
|
4778
|
+
radius: 4;
|
|
4205
4779
|
borderWidth: number;
|
|
4206
4780
|
fieldGap: number;
|
|
4207
4781
|
};
|
|
@@ -4210,31 +4784,31 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4210
4784
|
padding: number;
|
|
4211
4785
|
fontSize: number;
|
|
4212
4786
|
iconSize: number;
|
|
4213
|
-
radius:
|
|
4787
|
+
radius: 8;
|
|
4214
4788
|
} | {
|
|
4215
4789
|
height: number;
|
|
4216
4790
|
padding: number;
|
|
4217
4791
|
fontSize: number;
|
|
4218
4792
|
iconSize: number;
|
|
4219
|
-
radius:
|
|
4793
|
+
radius: 8;
|
|
4220
4794
|
} | {
|
|
4221
4795
|
height: number;
|
|
4222
4796
|
padding: number;
|
|
4223
4797
|
fontSize: number;
|
|
4224
4798
|
iconSize: number;
|
|
4225
|
-
radius:
|
|
4799
|
+
radius: 8;
|
|
4226
4800
|
} | {
|
|
4227
4801
|
height: number;
|
|
4228
4802
|
padding: number;
|
|
4229
4803
|
fontSize: number;
|
|
4230
4804
|
iconSize: number;
|
|
4231
|
-
radius:
|
|
4805
|
+
radius: 4;
|
|
4232
4806
|
} | {
|
|
4233
4807
|
height: number;
|
|
4234
4808
|
padding: number;
|
|
4235
4809
|
fontSize: number;
|
|
4236
4810
|
iconSize: number;
|
|
4237
|
-
radius:
|
|
4811
|
+
radius: 4;
|
|
4238
4812
|
};
|
|
4239
4813
|
switch: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4240
4814
|
width: number;
|
|
@@ -4246,8 +4820,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4246
4820
|
descriptionLineHeight: number;
|
|
4247
4821
|
labelGap: number;
|
|
4248
4822
|
textGap: number;
|
|
4249
|
-
frameBorderRadius:
|
|
4250
|
-
knobBorderRadius:
|
|
4823
|
+
frameBorderRadius: 4;
|
|
4824
|
+
knobBorderRadius: 2;
|
|
4251
4825
|
} | {
|
|
4252
4826
|
width: number;
|
|
4253
4827
|
height: number;
|
|
@@ -4258,8 +4832,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4258
4832
|
descriptionLineHeight: number;
|
|
4259
4833
|
labelGap: number;
|
|
4260
4834
|
textGap: number;
|
|
4261
|
-
frameBorderRadius:
|
|
4262
|
-
knobBorderRadius:
|
|
4835
|
+
frameBorderRadius: 4;
|
|
4836
|
+
knobBorderRadius: 2;
|
|
4263
4837
|
} | {
|
|
4264
4838
|
width: number;
|
|
4265
4839
|
height: number;
|
|
@@ -4270,8 +4844,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4270
4844
|
descriptionLineHeight: number;
|
|
4271
4845
|
labelGap: number;
|
|
4272
4846
|
textGap: number;
|
|
4273
|
-
frameBorderRadius:
|
|
4274
|
-
knobBorderRadius:
|
|
4847
|
+
frameBorderRadius: 4;
|
|
4848
|
+
knobBorderRadius: 2;
|
|
4275
4849
|
} | {
|
|
4276
4850
|
width: number;
|
|
4277
4851
|
height: number;
|
|
@@ -4282,8 +4856,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4282
4856
|
descriptionLineHeight: number;
|
|
4283
4857
|
labelGap: number;
|
|
4284
4858
|
textGap: number;
|
|
4285
|
-
frameBorderRadius:
|
|
4286
|
-
knobBorderRadius:
|
|
4859
|
+
frameBorderRadius: 4;
|
|
4860
|
+
knobBorderRadius: 2;
|
|
4287
4861
|
};
|
|
4288
4862
|
avatar: (size: "xl" | "lg" | "md" | "sm" | "xs" | "xxs") => {
|
|
4289
4863
|
size: number;
|
|
@@ -4298,8 +4872,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4298
4872
|
right: number;
|
|
4299
4873
|
top: number;
|
|
4300
4874
|
};
|
|
4301
|
-
borderRadiusSquare:
|
|
4302
|
-
borderRadiusCircle:
|
|
4875
|
+
borderRadiusSquare: 8;
|
|
4876
|
+
borderRadiusCircle: "50%";
|
|
4303
4877
|
} | {
|
|
4304
4878
|
size: number;
|
|
4305
4879
|
fontSize: number;
|
|
@@ -4313,8 +4887,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4313
4887
|
right: number;
|
|
4314
4888
|
top: number;
|
|
4315
4889
|
};
|
|
4316
|
-
borderRadiusSquare:
|
|
4317
|
-
borderRadiusCircle:
|
|
4890
|
+
borderRadiusSquare: 6;
|
|
4891
|
+
borderRadiusCircle: "50%";
|
|
4318
4892
|
} | {
|
|
4319
4893
|
size: number;
|
|
4320
4894
|
fontSize: number;
|
|
@@ -4328,8 +4902,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4328
4902
|
right: number;
|
|
4329
4903
|
top: number;
|
|
4330
4904
|
};
|
|
4331
|
-
borderRadiusSquare:
|
|
4332
|
-
borderRadiusCircle:
|
|
4905
|
+
borderRadiusSquare: 6;
|
|
4906
|
+
borderRadiusCircle: "50%";
|
|
4333
4907
|
} | {
|
|
4334
4908
|
size: number;
|
|
4335
4909
|
fontSize: number;
|
|
@@ -4343,8 +4917,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4343
4917
|
right: number;
|
|
4344
4918
|
top: number;
|
|
4345
4919
|
};
|
|
4346
|
-
borderRadiusSquare:
|
|
4347
|
-
borderRadiusCircle:
|
|
4920
|
+
borderRadiusSquare: 4;
|
|
4921
|
+
borderRadiusCircle: "50%";
|
|
4348
4922
|
} | {
|
|
4349
4923
|
size: number;
|
|
4350
4924
|
fontSize: number;
|
|
@@ -4358,8 +4932,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4358
4932
|
right: number;
|
|
4359
4933
|
top: number;
|
|
4360
4934
|
};
|
|
4361
|
-
borderRadiusSquare:
|
|
4362
|
-
borderRadiusCircle:
|
|
4935
|
+
borderRadiusSquare: 4;
|
|
4936
|
+
borderRadiusCircle: "50%";
|
|
4363
4937
|
} | {
|
|
4364
4938
|
size: number;
|
|
4365
4939
|
fontSize: number;
|
|
@@ -4373,8 +4947,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4373
4947
|
right: number;
|
|
4374
4948
|
top: number;
|
|
4375
4949
|
};
|
|
4376
|
-
borderRadiusSquare:
|
|
4377
|
-
borderRadiusCircle:
|
|
4950
|
+
borderRadiusSquare: 2;
|
|
4951
|
+
borderRadiusCircle: "50%";
|
|
4378
4952
|
};
|
|
4379
4953
|
tag: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
4380
4954
|
height: number;
|
|
@@ -4383,7 +4957,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4383
4957
|
lineHeight: number;
|
|
4384
4958
|
gap: number;
|
|
4385
4959
|
iconSize: number;
|
|
4386
|
-
radius:
|
|
4960
|
+
radius: 8;
|
|
4387
4961
|
borderWidth: number;
|
|
4388
4962
|
} | {
|
|
4389
4963
|
height: number;
|
|
@@ -4392,7 +4966,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4392
4966
|
lineHeight: number;
|
|
4393
4967
|
gap: number;
|
|
4394
4968
|
iconSize: number;
|
|
4395
|
-
radius:
|
|
4969
|
+
radius: 8;
|
|
4396
4970
|
borderWidth: number;
|
|
4397
4971
|
} | {
|
|
4398
4972
|
height: number;
|
|
@@ -4401,7 +4975,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4401
4975
|
lineHeight: number;
|
|
4402
4976
|
gap: number;
|
|
4403
4977
|
iconSize: number;
|
|
4404
|
-
radius:
|
|
4978
|
+
radius: 6;
|
|
4405
4979
|
borderWidth: number;
|
|
4406
4980
|
} | {
|
|
4407
4981
|
height: number;
|
|
@@ -4410,7 +4984,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4410
4984
|
lineHeight: number;
|
|
4411
4985
|
gap: number;
|
|
4412
4986
|
iconSize: number;
|
|
4413
|
-
radius:
|
|
4987
|
+
radius: 4;
|
|
4414
4988
|
borderWidth: number;
|
|
4415
4989
|
} | {
|
|
4416
4990
|
height: number;
|
|
@@ -4419,7 +4993,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4419
4993
|
lineHeight: number;
|
|
4420
4994
|
gap: number;
|
|
4421
4995
|
iconSize: number;
|
|
4422
|
-
radius:
|
|
4996
|
+
radius: 4;
|
|
4423
4997
|
borderWidth: number;
|
|
4424
4998
|
};
|
|
4425
4999
|
divider: (size: "lg" | "md" | "sm") => {
|
|
@@ -4483,11 +5057,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4483
5057
|
segmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4484
5058
|
height: number;
|
|
4485
5059
|
containerPadding: number;
|
|
4486
|
-
containerRadius:
|
|
5060
|
+
containerRadius: 8;
|
|
4487
5061
|
itemHeight: number;
|
|
4488
5062
|
itemPaddingHorizontal: number;
|
|
4489
5063
|
itemPaddingVertical: number;
|
|
4490
|
-
itemRadius:
|
|
5064
|
+
itemRadius: 4;
|
|
4491
5065
|
fontSize: number;
|
|
4492
5066
|
lineHeight: number;
|
|
4493
5067
|
iconSize: number;
|
|
@@ -4495,11 +5069,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4495
5069
|
} | {
|
|
4496
5070
|
height: number;
|
|
4497
5071
|
containerPadding: number;
|
|
4498
|
-
containerRadius:
|
|
5072
|
+
containerRadius: 8;
|
|
4499
5073
|
itemHeight: number;
|
|
4500
5074
|
itemPaddingHorizontal: number;
|
|
4501
5075
|
itemPaddingVertical: number;
|
|
4502
|
-
itemRadius:
|
|
5076
|
+
itemRadius: 4;
|
|
4503
5077
|
fontSize: number;
|
|
4504
5078
|
lineHeight: number;
|
|
4505
5079
|
iconSize: number;
|
|
@@ -4507,11 +5081,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4507
5081
|
} | {
|
|
4508
5082
|
height: number;
|
|
4509
5083
|
containerPadding: number;
|
|
4510
|
-
containerRadius:
|
|
5084
|
+
containerRadius: 8;
|
|
4511
5085
|
itemHeight: number;
|
|
4512
5086
|
itemPaddingHorizontal: number;
|
|
4513
5087
|
itemPaddingVertical: number;
|
|
4514
|
-
itemRadius:
|
|
5088
|
+
itemRadius: 4;
|
|
4515
5089
|
fontSize: number;
|
|
4516
5090
|
lineHeight: number;
|
|
4517
5091
|
iconSize: number;
|
|
@@ -4519,11 +5093,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4519
5093
|
} | {
|
|
4520
5094
|
height: number;
|
|
4521
5095
|
containerPadding: number;
|
|
4522
|
-
containerRadius:
|
|
5096
|
+
containerRadius: 4;
|
|
4523
5097
|
itemHeight: number;
|
|
4524
5098
|
itemPaddingHorizontal: number;
|
|
4525
5099
|
itemPaddingVertical: number;
|
|
4526
|
-
itemRadius:
|
|
5100
|
+
itemRadius: 2;
|
|
4527
5101
|
fontSize: number;
|
|
4528
5102
|
lineHeight: number;
|
|
4529
5103
|
iconSize: number;
|
|
@@ -4532,10 +5106,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4532
5106
|
tabsSegmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4533
5107
|
height: number;
|
|
4534
5108
|
containerPadding: number;
|
|
4535
|
-
containerRadius: number;
|
|
4536
5109
|
itemPaddingHorizontal: number;
|
|
4537
5110
|
itemPaddingVertical: number;
|
|
4538
|
-
itemRadius: number;
|
|
4539
5111
|
fontSize: number;
|
|
4540
5112
|
lineHeight: number;
|
|
4541
5113
|
iconSize: number;
|
|
@@ -4543,10 +5115,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4543
5115
|
} | {
|
|
4544
5116
|
height: number;
|
|
4545
5117
|
containerPadding: number;
|
|
4546
|
-
containerRadius: number;
|
|
4547
5118
|
itemPaddingHorizontal: number;
|
|
4548
5119
|
itemPaddingVertical: number;
|
|
4549
|
-
itemRadius: number;
|
|
4550
5120
|
fontSize: number;
|
|
4551
5121
|
lineHeight: number;
|
|
4552
5122
|
iconSize: number;
|
|
@@ -4554,10 +5124,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4554
5124
|
} | {
|
|
4555
5125
|
height: number;
|
|
4556
5126
|
containerPadding: number;
|
|
4557
|
-
containerRadius: number;
|
|
4558
5127
|
itemPaddingHorizontal: number;
|
|
4559
5128
|
itemPaddingVertical: number;
|
|
4560
|
-
itemRadius: number;
|
|
4561
5129
|
fontSize: number;
|
|
4562
5130
|
lineHeight: number;
|
|
4563
5131
|
iconSize: number;
|
|
@@ -4565,10 +5133,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4565
5133
|
} | {
|
|
4566
5134
|
height: number;
|
|
4567
5135
|
containerPadding: number;
|
|
4568
|
-
containerRadius: number;
|
|
4569
5136
|
itemPaddingHorizontal: number;
|
|
4570
5137
|
itemPaddingVertical: number;
|
|
4571
|
-
itemRadius: number;
|
|
4572
5138
|
fontSize: number;
|
|
4573
5139
|
lineHeight: number;
|
|
4574
5140
|
iconSize: number;
|
|
@@ -4581,7 +5147,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4581
5147
|
fontSize: number;
|
|
4582
5148
|
lineHeight: number;
|
|
4583
5149
|
gap: number;
|
|
4584
|
-
borderRadius:
|
|
5150
|
+
borderRadius: 4;
|
|
4585
5151
|
} | {
|
|
4586
5152
|
height: number;
|
|
4587
5153
|
paddingHorizontal: number;
|
|
@@ -4589,7 +5155,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4589
5155
|
fontSize: number;
|
|
4590
5156
|
lineHeight: number;
|
|
4591
5157
|
gap: number;
|
|
4592
|
-
borderRadius:
|
|
5158
|
+
borderRadius: 4;
|
|
4593
5159
|
} | {
|
|
4594
5160
|
height: number;
|
|
4595
5161
|
paddingHorizontal: number;
|
|
@@ -4597,7 +5163,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4597
5163
|
fontSize: number;
|
|
4598
5164
|
lineHeight: number;
|
|
4599
5165
|
gap: number;
|
|
4600
|
-
borderRadius:
|
|
5166
|
+
borderRadius: 2;
|
|
4601
5167
|
} | {
|
|
4602
5168
|
height: number;
|
|
4603
5169
|
paddingHorizontal: number;
|
|
@@ -4605,7 +5171,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4605
5171
|
fontSize: number;
|
|
4606
5172
|
lineHeight: number;
|
|
4607
5173
|
gap: number;
|
|
4608
|
-
borderRadius:
|
|
5174
|
+
borderRadius: 2;
|
|
4609
5175
|
};
|
|
4610
5176
|
badge: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
4611
5177
|
size: number;
|
|
@@ -4647,7 +5213,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4647
5213
|
messageSize: number;
|
|
4648
5214
|
iconSize: number;
|
|
4649
5215
|
iconWrapperSize: number;
|
|
4650
|
-
radius:
|
|
5216
|
+
radius: 4;
|
|
4651
5217
|
} | {
|
|
4652
5218
|
width: string;
|
|
4653
5219
|
paddingHorizontal: number;
|
|
@@ -4657,13 +5223,13 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4657
5223
|
messageSize: number;
|
|
4658
5224
|
iconSize: number;
|
|
4659
5225
|
iconWrapperSize: number;
|
|
4660
|
-
radius:
|
|
5226
|
+
radius: 8;
|
|
4661
5227
|
};
|
|
4662
5228
|
notificationPanel: () => {
|
|
4663
5229
|
minHeight: number;
|
|
4664
5230
|
iconFrameWidth: number;
|
|
4665
5231
|
iconSize: number;
|
|
4666
|
-
borderRadius:
|
|
5232
|
+
borderRadius: 8;
|
|
4667
5233
|
bodyPaddingHorizontal: number;
|
|
4668
5234
|
bodyPaddingVertical: number;
|
|
4669
5235
|
textGap: number;
|
|
@@ -4857,7 +5423,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4857
5423
|
searchIconSize: number;
|
|
4858
5424
|
};
|
|
4859
5425
|
modal: () => {
|
|
4860
|
-
borderRadius:
|
|
5426
|
+
borderRadius: 8;
|
|
4861
5427
|
headerPadding: number;
|
|
4862
5428
|
contentPadding: number;
|
|
4863
5429
|
headerButtonSize: "xl";
|
|
@@ -4985,7 +5551,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4985
5551
|
minHeight: number;
|
|
4986
5552
|
paddingHorizontal: number;
|
|
4987
5553
|
paddingVertical: number;
|
|
4988
|
-
borderRadius:
|
|
5554
|
+
borderRadius: 4;
|
|
4989
5555
|
gap: number;
|
|
4990
5556
|
iconSize: number;
|
|
4991
5557
|
closeButtonSize: number;
|
|
@@ -5003,7 +5569,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5003
5569
|
lineHeight: number;
|
|
5004
5570
|
iconSize: number;
|
|
5005
5571
|
gap: number;
|
|
5006
|
-
borderRadius:
|
|
5572
|
+
borderRadius: 8;
|
|
5007
5573
|
itemGap: number;
|
|
5008
5574
|
} | {
|
|
5009
5575
|
height: number;
|
|
@@ -5012,7 +5578,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5012
5578
|
lineHeight: number;
|
|
5013
5579
|
iconSize: number;
|
|
5014
5580
|
gap: number;
|
|
5015
|
-
borderRadius:
|
|
5581
|
+
borderRadius: 8;
|
|
5016
5582
|
itemGap: number;
|
|
5017
5583
|
} | {
|
|
5018
5584
|
height: number;
|
|
@@ -5021,7 +5587,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5021
5587
|
lineHeight: number;
|
|
5022
5588
|
iconSize: number;
|
|
5023
5589
|
gap: number;
|
|
5024
|
-
borderRadius:
|
|
5590
|
+
borderRadius: 6;
|
|
5025
5591
|
itemGap: number;
|
|
5026
5592
|
} | {
|
|
5027
5593
|
height: number;
|
|
@@ -5030,7 +5596,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5030
5596
|
lineHeight: number;
|
|
5031
5597
|
iconSize: number;
|
|
5032
5598
|
gap: number;
|
|
5033
|
-
borderRadius:
|
|
5599
|
+
borderRadius: 4;
|
|
5034
5600
|
itemGap: number;
|
|
5035
5601
|
} | {
|
|
5036
5602
|
height: number;
|
|
@@ -5039,7 +5605,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5039
5605
|
lineHeight: number;
|
|
5040
5606
|
iconSize: number;
|
|
5041
5607
|
gap: number;
|
|
5042
|
-
borderRadius:
|
|
5608
|
+
borderRadius: 4;
|
|
5043
5609
|
itemGap: number;
|
|
5044
5610
|
};
|
|
5045
5611
|
table: {
|
|
@@ -6283,16 +6849,282 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6283
6849
|
l: number;
|
|
6284
6850
|
xl: number;
|
|
6285
6851
|
};
|
|
6286
|
-
|
|
6287
|
-
button:
|
|
6288
|
-
|
|
6289
|
-
|
|
6290
|
-
|
|
6291
|
-
|
|
6292
|
-
|
|
6293
|
-
|
|
6294
|
-
|
|
6295
|
-
|
|
6852
|
+
shape: {
|
|
6853
|
+
readonly button: {
|
|
6854
|
+
readonly xl: {
|
|
6855
|
+
readonly borderRadius: 8;
|
|
6856
|
+
readonly borderWidth: 1;
|
|
6857
|
+
};
|
|
6858
|
+
readonly lg: {
|
|
6859
|
+
readonly borderRadius: 8;
|
|
6860
|
+
readonly borderWidth: 1;
|
|
6861
|
+
};
|
|
6862
|
+
readonly md: {
|
|
6863
|
+
readonly borderRadius: 6;
|
|
6864
|
+
readonly borderWidth: 1;
|
|
6865
|
+
};
|
|
6866
|
+
readonly sm: {
|
|
6867
|
+
readonly borderRadius: 4;
|
|
6868
|
+
readonly borderWidth: 1;
|
|
6869
|
+
};
|
|
6870
|
+
readonly xs: {
|
|
6871
|
+
readonly borderRadius: 4;
|
|
6872
|
+
readonly borderWidth: 1;
|
|
6873
|
+
};
|
|
6874
|
+
};
|
|
6875
|
+
readonly checkbox: {
|
|
6876
|
+
readonly xl: {
|
|
6877
|
+
readonly borderRadius: 4;
|
|
6878
|
+
readonly borderWidth: 1;
|
|
6879
|
+
};
|
|
6880
|
+
readonly lg: {
|
|
6881
|
+
readonly borderRadius: 4;
|
|
6882
|
+
readonly borderWidth: 1;
|
|
6883
|
+
};
|
|
6884
|
+
readonly md: {
|
|
6885
|
+
readonly borderRadius: 4;
|
|
6886
|
+
readonly borderWidth: 1;
|
|
6887
|
+
};
|
|
6888
|
+
readonly sm: {
|
|
6889
|
+
readonly borderRadius: 4;
|
|
6890
|
+
readonly borderWidth: 1;
|
|
6891
|
+
};
|
|
6892
|
+
};
|
|
6893
|
+
readonly input: {
|
|
6894
|
+
readonly xl: {
|
|
6895
|
+
readonly borderRadius: 8;
|
|
6896
|
+
readonly borderWidth: 1;
|
|
6897
|
+
};
|
|
6898
|
+
readonly lg: {
|
|
6899
|
+
readonly borderRadius: 8;
|
|
6900
|
+
readonly borderWidth: 1;
|
|
6901
|
+
};
|
|
6902
|
+
readonly md: {
|
|
6903
|
+
readonly borderRadius: 8;
|
|
6904
|
+
readonly borderWidth: 1;
|
|
6905
|
+
};
|
|
6906
|
+
readonly sm: {
|
|
6907
|
+
readonly borderRadius: 4;
|
|
6908
|
+
readonly borderWidth: 1;
|
|
6909
|
+
};
|
|
6910
|
+
readonly xs: {
|
|
6911
|
+
readonly borderRadius: 4;
|
|
6912
|
+
readonly borderWidth: 1;
|
|
6913
|
+
};
|
|
6914
|
+
};
|
|
6915
|
+
readonly segmented: {
|
|
6916
|
+
readonly xl: {
|
|
6917
|
+
readonly borderRadius: 8;
|
|
6918
|
+
readonly borderWidth: 1;
|
|
6919
|
+
};
|
|
6920
|
+
readonly lg: {
|
|
6921
|
+
readonly borderRadius: 8;
|
|
6922
|
+
readonly borderWidth: 1;
|
|
6923
|
+
};
|
|
6924
|
+
readonly md: {
|
|
6925
|
+
readonly borderRadius: 8;
|
|
6926
|
+
readonly borderWidth: 1;
|
|
6927
|
+
};
|
|
6928
|
+
readonly sm: {
|
|
6929
|
+
readonly borderRadius: 4;
|
|
6930
|
+
readonly borderWidth: 1;
|
|
6931
|
+
};
|
|
6932
|
+
};
|
|
6933
|
+
readonly segmentedItem: {
|
|
6934
|
+
readonly xl: {
|
|
6935
|
+
readonly borderRadius: 4;
|
|
6936
|
+
readonly borderWidth: 1;
|
|
6937
|
+
};
|
|
6938
|
+
readonly lg: {
|
|
6939
|
+
readonly borderRadius: 4;
|
|
6940
|
+
readonly borderWidth: 1;
|
|
6941
|
+
};
|
|
6942
|
+
readonly md: {
|
|
6943
|
+
readonly borderRadius: 4;
|
|
6944
|
+
readonly borderWidth: 1;
|
|
6945
|
+
};
|
|
6946
|
+
readonly sm: {
|
|
6947
|
+
readonly borderRadius: 2;
|
|
6948
|
+
readonly borderWidth: 1;
|
|
6949
|
+
};
|
|
6950
|
+
};
|
|
6951
|
+
readonly switch: {
|
|
6952
|
+
readonly xl: {
|
|
6953
|
+
readonly borderRadius: 4;
|
|
6954
|
+
readonly borderWidth: 1;
|
|
6955
|
+
};
|
|
6956
|
+
readonly lg: {
|
|
6957
|
+
readonly borderRadius: 4;
|
|
6958
|
+
readonly borderWidth: 1;
|
|
6959
|
+
};
|
|
6960
|
+
readonly md: {
|
|
6961
|
+
readonly borderRadius: 4;
|
|
6962
|
+
readonly borderWidth: 1;
|
|
6963
|
+
};
|
|
6964
|
+
readonly sm: {
|
|
6965
|
+
readonly borderRadius: 4;
|
|
6966
|
+
readonly borderWidth: 1;
|
|
6967
|
+
};
|
|
6968
|
+
};
|
|
6969
|
+
readonly knob: {
|
|
6970
|
+
readonly xl: {
|
|
6971
|
+
readonly borderRadius: 2;
|
|
6972
|
+
};
|
|
6973
|
+
readonly lg: {
|
|
6974
|
+
readonly borderRadius: 2;
|
|
6975
|
+
};
|
|
6976
|
+
readonly md: {
|
|
6977
|
+
readonly borderRadius: 2;
|
|
6978
|
+
};
|
|
6979
|
+
readonly sm: {
|
|
6980
|
+
readonly borderRadius: 2;
|
|
6981
|
+
};
|
|
6982
|
+
};
|
|
6983
|
+
readonly tabItem: {
|
|
6984
|
+
readonly xl: {
|
|
6985
|
+
readonly borderRadius: 8;
|
|
6986
|
+
};
|
|
6987
|
+
readonly lg: {
|
|
6988
|
+
readonly borderRadius: 8;
|
|
6989
|
+
};
|
|
6990
|
+
readonly md: {
|
|
6991
|
+
readonly borderRadius: 4;
|
|
6992
|
+
};
|
|
6993
|
+
readonly sm: {
|
|
6994
|
+
readonly borderRadius: 4;
|
|
6995
|
+
};
|
|
6996
|
+
};
|
|
6997
|
+
readonly tag: {
|
|
6998
|
+
readonly xl: {
|
|
6999
|
+
readonly borderRadius: 8;
|
|
7000
|
+
readonly borderWidth: 1;
|
|
7001
|
+
};
|
|
7002
|
+
readonly lg: {
|
|
7003
|
+
readonly borderRadius: 8;
|
|
7004
|
+
readonly borderWidth: 1;
|
|
7005
|
+
};
|
|
7006
|
+
readonly md: {
|
|
7007
|
+
readonly borderRadius: 6;
|
|
7008
|
+
readonly borderWidth: 1;
|
|
7009
|
+
};
|
|
7010
|
+
readonly sm: {
|
|
7011
|
+
readonly borderRadius: 4;
|
|
7012
|
+
readonly borderWidth: 1;
|
|
7013
|
+
};
|
|
7014
|
+
readonly xs: {
|
|
7015
|
+
readonly borderRadius: 4;
|
|
7016
|
+
readonly borderWidth: 1;
|
|
7017
|
+
};
|
|
7018
|
+
readonly label: {
|
|
7019
|
+
readonly borderRadius: 0;
|
|
7020
|
+
};
|
|
7021
|
+
};
|
|
7022
|
+
readonly tooltip: {
|
|
7023
|
+
readonly xl: {
|
|
7024
|
+
readonly borderRadius: 8;
|
|
7025
|
+
};
|
|
7026
|
+
readonly lg: {
|
|
7027
|
+
readonly borderRadius: 8;
|
|
7028
|
+
};
|
|
7029
|
+
readonly md: {
|
|
7030
|
+
readonly borderRadius: 8;
|
|
7031
|
+
};
|
|
7032
|
+
readonly sm: {
|
|
7033
|
+
readonly borderRadius: 4;
|
|
7034
|
+
};
|
|
7035
|
+
};
|
|
7036
|
+
readonly radio: {
|
|
7037
|
+
readonly xl: {
|
|
7038
|
+
readonly borderRadius: "50%";
|
|
7039
|
+
readonly borderWidth: 1;
|
|
7040
|
+
};
|
|
7041
|
+
readonly lg: {
|
|
7042
|
+
readonly borderRadius: "50%";
|
|
7043
|
+
readonly borderWidth: 1;
|
|
7044
|
+
};
|
|
7045
|
+
readonly md: {
|
|
7046
|
+
readonly borderRadius: "50%";
|
|
7047
|
+
readonly borderWidth: 1;
|
|
7048
|
+
};
|
|
7049
|
+
readonly sm: {
|
|
7050
|
+
readonly borderRadius: "50%";
|
|
7051
|
+
readonly borderWidth: 1;
|
|
7052
|
+
};
|
|
7053
|
+
};
|
|
7054
|
+
readonly contextMenu: {
|
|
7055
|
+
readonly xl: {
|
|
7056
|
+
readonly borderRadius: 8;
|
|
7057
|
+
};
|
|
7058
|
+
readonly lg: {
|
|
7059
|
+
readonly borderRadius: 8;
|
|
7060
|
+
};
|
|
7061
|
+
readonly md: {
|
|
7062
|
+
readonly borderRadius: 8;
|
|
7063
|
+
};
|
|
7064
|
+
readonly sm: {
|
|
7065
|
+
readonly borderRadius: 4;
|
|
7066
|
+
};
|
|
7067
|
+
readonly xs: {
|
|
7068
|
+
readonly borderRadius: 4;
|
|
7069
|
+
};
|
|
7070
|
+
};
|
|
7071
|
+
readonly avatar: {
|
|
7072
|
+
readonly xl: {
|
|
7073
|
+
readonly borderRadius: 8;
|
|
7074
|
+
readonly borderWidth: 2;
|
|
7075
|
+
};
|
|
7076
|
+
readonly lg: {
|
|
7077
|
+
readonly borderRadius: 6;
|
|
7078
|
+
readonly borderWidth: 2;
|
|
7079
|
+
};
|
|
7080
|
+
readonly md: {
|
|
7081
|
+
readonly borderRadius: 6;
|
|
7082
|
+
readonly borderWidth: 2;
|
|
7083
|
+
};
|
|
7084
|
+
readonly sm: {
|
|
7085
|
+
readonly borderRadius: 4;
|
|
7086
|
+
readonly borderWidth: 2;
|
|
7087
|
+
};
|
|
7088
|
+
readonly xs: {
|
|
7089
|
+
readonly borderRadius: 4;
|
|
7090
|
+
readonly borderWidth: 2;
|
|
7091
|
+
};
|
|
7092
|
+
readonly xxs: {
|
|
7093
|
+
readonly borderRadius: 2;
|
|
7094
|
+
readonly borderWidth: 2;
|
|
7095
|
+
};
|
|
7096
|
+
};
|
|
7097
|
+
readonly modal: {
|
|
7098
|
+
readonly borderRadius: 8;
|
|
7099
|
+
};
|
|
7100
|
+
readonly toast: {
|
|
7101
|
+
readonly borderRadius: 4;
|
|
7102
|
+
};
|
|
7103
|
+
readonly toggleButtonGroup: {
|
|
7104
|
+
readonly xl: {
|
|
7105
|
+
readonly borderRadius: 8;
|
|
7106
|
+
readonly borderWidth: 1;
|
|
7107
|
+
};
|
|
7108
|
+
readonly lg: {
|
|
7109
|
+
readonly borderRadius: 8;
|
|
7110
|
+
readonly borderWidth: 1;
|
|
7111
|
+
};
|
|
7112
|
+
readonly md: {
|
|
7113
|
+
readonly borderRadius: 6;
|
|
7114
|
+
readonly borderWidth: 1;
|
|
7115
|
+
};
|
|
7116
|
+
readonly sm: {
|
|
7117
|
+
readonly borderRadius: 4;
|
|
7118
|
+
readonly borderWidth: 1;
|
|
7119
|
+
};
|
|
7120
|
+
readonly xs: {
|
|
7121
|
+
readonly borderRadius: 4;
|
|
7122
|
+
readonly borderWidth: 1;
|
|
7123
|
+
};
|
|
7124
|
+
};
|
|
7125
|
+
readonly tagLabel: {
|
|
7126
|
+
readonly borderRadius: 0;
|
|
7127
|
+
};
|
|
6296
7128
|
};
|
|
6297
7129
|
shadow: {
|
|
6298
7130
|
active: string;
|
|
@@ -6325,7 +7157,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6325
7157
|
iconContainerSize: number;
|
|
6326
7158
|
iconPadding: number;
|
|
6327
7159
|
loadingPadding: number;
|
|
6328
|
-
borderRadius:
|
|
7160
|
+
borderRadius: 8;
|
|
6329
7161
|
labelIconSize: number;
|
|
6330
7162
|
labelIconGap: number;
|
|
6331
7163
|
} | {
|
|
@@ -6338,7 +7170,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6338
7170
|
iconContainerSize: number;
|
|
6339
7171
|
iconPadding: number;
|
|
6340
7172
|
loadingPadding: number;
|
|
6341
|
-
borderRadius:
|
|
7173
|
+
borderRadius: 8;
|
|
6342
7174
|
labelIconSize: number;
|
|
6343
7175
|
labelIconGap: number;
|
|
6344
7176
|
} | {
|
|
@@ -6351,7 +7183,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6351
7183
|
iconContainerSize: number;
|
|
6352
7184
|
iconPadding: number;
|
|
6353
7185
|
loadingPadding: number;
|
|
6354
|
-
borderRadius:
|
|
7186
|
+
borderRadius: 6;
|
|
6355
7187
|
labelIconSize: number;
|
|
6356
7188
|
labelIconGap: number;
|
|
6357
7189
|
} | {
|
|
@@ -6364,7 +7196,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6364
7196
|
iconContainerSize: number;
|
|
6365
7197
|
iconPadding: number;
|
|
6366
7198
|
loadingPadding: number;
|
|
6367
|
-
borderRadius:
|
|
7199
|
+
borderRadius: 4;
|
|
6368
7200
|
labelIconSize: number;
|
|
6369
7201
|
labelIconGap: number;
|
|
6370
7202
|
} | {
|
|
@@ -6377,7 +7209,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6377
7209
|
iconContainerSize: number;
|
|
6378
7210
|
iconPadding: number;
|
|
6379
7211
|
loadingPadding: number;
|
|
6380
|
-
borderRadius:
|
|
7212
|
+
borderRadius: 4;
|
|
6381
7213
|
labelIconSize: number;
|
|
6382
7214
|
labelIconGap: number;
|
|
6383
7215
|
};
|
|
@@ -6387,35 +7219,35 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6387
7219
|
fontSize: number;
|
|
6388
7220
|
spinnerSize: number;
|
|
6389
7221
|
iconSize: number;
|
|
6390
|
-
borderRadius:
|
|
7222
|
+
borderRadius: 4;
|
|
6391
7223
|
} | {
|
|
6392
7224
|
height: number;
|
|
6393
7225
|
padding: number;
|
|
6394
7226
|
fontSize: number;
|
|
6395
7227
|
spinnerSize: number;
|
|
6396
7228
|
iconSize: number;
|
|
6397
|
-
borderRadius:
|
|
7229
|
+
borderRadius: 4;
|
|
6398
7230
|
} | {
|
|
6399
7231
|
height: number;
|
|
6400
7232
|
padding: number;
|
|
6401
7233
|
fontSize: number;
|
|
6402
7234
|
spinnerSize: number;
|
|
6403
7235
|
iconSize: number;
|
|
6404
|
-
borderRadius:
|
|
7236
|
+
borderRadius: 2;
|
|
6405
7237
|
} | {
|
|
6406
7238
|
height: number;
|
|
6407
7239
|
padding: number;
|
|
6408
7240
|
fontSize: number;
|
|
6409
7241
|
spinnerSize: number;
|
|
6410
7242
|
iconSize: number;
|
|
6411
|
-
borderRadius:
|
|
7243
|
+
borderRadius: 2;
|
|
6412
7244
|
} | {
|
|
6413
7245
|
height: number;
|
|
6414
7246
|
padding: number;
|
|
6415
7247
|
fontSize: number;
|
|
6416
7248
|
spinnerSize: number;
|
|
6417
7249
|
iconSize: number;
|
|
6418
|
-
borderRadius:
|
|
7250
|
+
borderRadius: 2;
|
|
6419
7251
|
};
|
|
6420
7252
|
checkbox: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6421
7253
|
size: number;
|
|
@@ -6423,28 +7255,28 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6423
7255
|
descriptionFontSize: number;
|
|
6424
7256
|
labelGap: number;
|
|
6425
7257
|
textGap: number;
|
|
6426
|
-
borderRadius:
|
|
7258
|
+
borderRadius: 4;
|
|
6427
7259
|
} | {
|
|
6428
7260
|
size: number;
|
|
6429
7261
|
fontSize: number;
|
|
6430
7262
|
descriptionFontSize: number;
|
|
6431
7263
|
labelGap: number;
|
|
6432
7264
|
textGap: number;
|
|
6433
|
-
borderRadius:
|
|
7265
|
+
borderRadius: 4;
|
|
6434
7266
|
} | {
|
|
6435
7267
|
size: number;
|
|
6436
7268
|
fontSize: number;
|
|
6437
7269
|
descriptionFontSize: number;
|
|
6438
7270
|
labelGap: number;
|
|
6439
7271
|
textGap: number;
|
|
6440
|
-
borderRadius:
|
|
7272
|
+
borderRadius: 4;
|
|
6441
7273
|
} | {
|
|
6442
7274
|
size: number;
|
|
6443
7275
|
fontSize: number;
|
|
6444
7276
|
descriptionFontSize: number;
|
|
6445
7277
|
labelGap: number;
|
|
6446
7278
|
textGap: number;
|
|
6447
|
-
borderRadius:
|
|
7279
|
+
borderRadius: 4;
|
|
6448
7280
|
};
|
|
6449
7281
|
radio: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6450
7282
|
size: number;
|
|
@@ -6489,7 +7321,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6489
7321
|
paddingHorizontal: number;
|
|
6490
7322
|
fontSize: number;
|
|
6491
7323
|
iconSize: number;
|
|
6492
|
-
radius:
|
|
7324
|
+
radius: 8;
|
|
6493
7325
|
borderWidth: number;
|
|
6494
7326
|
fieldGap: number;
|
|
6495
7327
|
lineHeight: number;
|
|
@@ -6499,7 +7331,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6499
7331
|
paddingHorizontal: number;
|
|
6500
7332
|
fontSize: number;
|
|
6501
7333
|
iconSize: number;
|
|
6502
|
-
radius:
|
|
7334
|
+
radius: 8;
|
|
6503
7335
|
borderWidth: number;
|
|
6504
7336
|
fieldGap: number;
|
|
6505
7337
|
lineHeight: number;
|
|
@@ -6509,7 +7341,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6509
7341
|
paddingHorizontal: number;
|
|
6510
7342
|
fontSize: number;
|
|
6511
7343
|
iconSize: number;
|
|
6512
|
-
radius:
|
|
7344
|
+
radius: 8;
|
|
6513
7345
|
borderWidth: number;
|
|
6514
7346
|
fieldGap: number;
|
|
6515
7347
|
lineHeight: number;
|
|
@@ -6519,7 +7351,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6519
7351
|
paddingHorizontal: number;
|
|
6520
7352
|
fontSize: number;
|
|
6521
7353
|
iconSize: number;
|
|
6522
|
-
radius:
|
|
7354
|
+
radius: 4;
|
|
6523
7355
|
borderWidth: number;
|
|
6524
7356
|
fieldGap: number;
|
|
6525
7357
|
lineHeight: number;
|
|
@@ -6529,7 +7361,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6529
7361
|
paddingHorizontal: number;
|
|
6530
7362
|
fontSize: number;
|
|
6531
7363
|
iconSize: number;
|
|
6532
|
-
radius:
|
|
7364
|
+
radius: 4;
|
|
6533
7365
|
borderWidth: number;
|
|
6534
7366
|
fieldGap: number;
|
|
6535
7367
|
lineHeight: number;
|
|
@@ -6546,7 +7378,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6546
7378
|
errorFontSize: number;
|
|
6547
7379
|
errorLineHeight: number;
|
|
6548
7380
|
errorGap: number;
|
|
6549
|
-
radius:
|
|
7381
|
+
radius: 8;
|
|
6550
7382
|
borderWidth: number;
|
|
6551
7383
|
} | {
|
|
6552
7384
|
box: number;
|
|
@@ -6560,7 +7392,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6560
7392
|
errorFontSize: number;
|
|
6561
7393
|
errorLineHeight: number;
|
|
6562
7394
|
errorGap: number;
|
|
6563
|
-
radius:
|
|
7395
|
+
radius: 8;
|
|
6564
7396
|
borderWidth: number;
|
|
6565
7397
|
} | {
|
|
6566
7398
|
box: number;
|
|
@@ -6574,7 +7406,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6574
7406
|
errorFontSize: number;
|
|
6575
7407
|
errorLineHeight: number;
|
|
6576
7408
|
errorGap: number;
|
|
6577
|
-
radius:
|
|
7409
|
+
radius: 8;
|
|
6578
7410
|
borderWidth: number;
|
|
6579
7411
|
} | {
|
|
6580
7412
|
box: number;
|
|
@@ -6588,7 +7420,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6588
7420
|
errorFontSize: number;
|
|
6589
7421
|
errorLineHeight: number;
|
|
6590
7422
|
errorGap: number;
|
|
6591
|
-
radius:
|
|
7423
|
+
radius: 4;
|
|
6592
7424
|
borderWidth: number;
|
|
6593
7425
|
} | {
|
|
6594
7426
|
box: number;
|
|
@@ -6602,42 +7434,42 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6602
7434
|
errorFontSize: number;
|
|
6603
7435
|
errorLineHeight: number;
|
|
6604
7436
|
errorGap: number;
|
|
6605
|
-
radius:
|
|
7437
|
+
radius: 4;
|
|
6606
7438
|
borderWidth: number;
|
|
6607
7439
|
};
|
|
6608
7440
|
inputPin: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
6609
7441
|
size: number;
|
|
6610
7442
|
gap: number;
|
|
6611
7443
|
fontSize: number;
|
|
6612
|
-
radius:
|
|
7444
|
+
radius: 8;
|
|
6613
7445
|
borderWidth: number;
|
|
6614
7446
|
fieldGap: number;
|
|
6615
7447
|
} | {
|
|
6616
7448
|
size: number;
|
|
6617
7449
|
gap: number;
|
|
6618
7450
|
fontSize: number;
|
|
6619
|
-
radius:
|
|
7451
|
+
radius: 8;
|
|
6620
7452
|
borderWidth: number;
|
|
6621
7453
|
fieldGap: number;
|
|
6622
7454
|
} | {
|
|
6623
7455
|
size: number;
|
|
6624
7456
|
gap: number;
|
|
6625
7457
|
fontSize: number;
|
|
6626
|
-
radius:
|
|
7458
|
+
radius: 8;
|
|
6627
7459
|
borderWidth: number;
|
|
6628
7460
|
fieldGap: number;
|
|
6629
7461
|
} | {
|
|
6630
7462
|
size: number;
|
|
6631
7463
|
gap: number;
|
|
6632
7464
|
fontSize: number;
|
|
6633
|
-
radius:
|
|
7465
|
+
radius: 4;
|
|
6634
7466
|
borderWidth: number;
|
|
6635
7467
|
fieldGap: number;
|
|
6636
7468
|
} | {
|
|
6637
7469
|
size: number;
|
|
6638
7470
|
gap: number;
|
|
6639
7471
|
fontSize: number;
|
|
6640
|
-
radius:
|
|
7472
|
+
radius: 4;
|
|
6641
7473
|
borderWidth: number;
|
|
6642
7474
|
fieldGap: number;
|
|
6643
7475
|
};
|
|
@@ -6646,31 +7478,31 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6646
7478
|
padding: number;
|
|
6647
7479
|
fontSize: number;
|
|
6648
7480
|
iconSize: number;
|
|
6649
|
-
radius:
|
|
7481
|
+
radius: 8;
|
|
6650
7482
|
} | {
|
|
6651
7483
|
height: number;
|
|
6652
7484
|
padding: number;
|
|
6653
7485
|
fontSize: number;
|
|
6654
7486
|
iconSize: number;
|
|
6655
|
-
radius:
|
|
7487
|
+
radius: 8;
|
|
6656
7488
|
} | {
|
|
6657
7489
|
height: number;
|
|
6658
7490
|
padding: number;
|
|
6659
7491
|
fontSize: number;
|
|
6660
7492
|
iconSize: number;
|
|
6661
|
-
radius:
|
|
7493
|
+
radius: 8;
|
|
6662
7494
|
} | {
|
|
6663
7495
|
height: number;
|
|
6664
7496
|
padding: number;
|
|
6665
7497
|
fontSize: number;
|
|
6666
7498
|
iconSize: number;
|
|
6667
|
-
radius:
|
|
7499
|
+
radius: 4;
|
|
6668
7500
|
} | {
|
|
6669
7501
|
height: number;
|
|
6670
7502
|
padding: number;
|
|
6671
7503
|
fontSize: number;
|
|
6672
7504
|
iconSize: number;
|
|
6673
|
-
radius:
|
|
7505
|
+
radius: 4;
|
|
6674
7506
|
};
|
|
6675
7507
|
switch: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6676
7508
|
width: number;
|
|
@@ -6682,8 +7514,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6682
7514
|
descriptionLineHeight: number;
|
|
6683
7515
|
labelGap: number;
|
|
6684
7516
|
textGap: number;
|
|
6685
|
-
frameBorderRadius:
|
|
6686
|
-
knobBorderRadius:
|
|
7517
|
+
frameBorderRadius: 4;
|
|
7518
|
+
knobBorderRadius: 2;
|
|
6687
7519
|
} | {
|
|
6688
7520
|
width: number;
|
|
6689
7521
|
height: number;
|
|
@@ -6694,8 +7526,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6694
7526
|
descriptionLineHeight: number;
|
|
6695
7527
|
labelGap: number;
|
|
6696
7528
|
textGap: number;
|
|
6697
|
-
frameBorderRadius:
|
|
6698
|
-
knobBorderRadius:
|
|
7529
|
+
frameBorderRadius: 4;
|
|
7530
|
+
knobBorderRadius: 2;
|
|
6699
7531
|
} | {
|
|
6700
7532
|
width: number;
|
|
6701
7533
|
height: number;
|
|
@@ -6706,8 +7538,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6706
7538
|
descriptionLineHeight: number;
|
|
6707
7539
|
labelGap: number;
|
|
6708
7540
|
textGap: number;
|
|
6709
|
-
frameBorderRadius:
|
|
6710
|
-
knobBorderRadius:
|
|
7541
|
+
frameBorderRadius: 4;
|
|
7542
|
+
knobBorderRadius: 2;
|
|
6711
7543
|
} | {
|
|
6712
7544
|
width: number;
|
|
6713
7545
|
height: number;
|
|
@@ -6718,8 +7550,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6718
7550
|
descriptionLineHeight: number;
|
|
6719
7551
|
labelGap: number;
|
|
6720
7552
|
textGap: number;
|
|
6721
|
-
frameBorderRadius:
|
|
6722
|
-
knobBorderRadius:
|
|
7553
|
+
frameBorderRadius: 4;
|
|
7554
|
+
knobBorderRadius: 2;
|
|
6723
7555
|
};
|
|
6724
7556
|
avatar: (size: "xl" | "lg" | "md" | "sm" | "xs" | "xxs") => {
|
|
6725
7557
|
size: number;
|
|
@@ -6734,8 +7566,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6734
7566
|
right: number;
|
|
6735
7567
|
top: number;
|
|
6736
7568
|
};
|
|
6737
|
-
borderRadiusSquare:
|
|
6738
|
-
borderRadiusCircle:
|
|
7569
|
+
borderRadiusSquare: 8;
|
|
7570
|
+
borderRadiusCircle: "50%";
|
|
6739
7571
|
} | {
|
|
6740
7572
|
size: number;
|
|
6741
7573
|
fontSize: number;
|
|
@@ -6749,8 +7581,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6749
7581
|
right: number;
|
|
6750
7582
|
top: number;
|
|
6751
7583
|
};
|
|
6752
|
-
borderRadiusSquare:
|
|
6753
|
-
borderRadiusCircle:
|
|
7584
|
+
borderRadiusSquare: 6;
|
|
7585
|
+
borderRadiusCircle: "50%";
|
|
6754
7586
|
} | {
|
|
6755
7587
|
size: number;
|
|
6756
7588
|
fontSize: number;
|
|
@@ -6764,8 +7596,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6764
7596
|
right: number;
|
|
6765
7597
|
top: number;
|
|
6766
7598
|
};
|
|
6767
|
-
borderRadiusSquare:
|
|
6768
|
-
borderRadiusCircle:
|
|
7599
|
+
borderRadiusSquare: 6;
|
|
7600
|
+
borderRadiusCircle: "50%";
|
|
6769
7601
|
} | {
|
|
6770
7602
|
size: number;
|
|
6771
7603
|
fontSize: number;
|
|
@@ -6779,8 +7611,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6779
7611
|
right: number;
|
|
6780
7612
|
top: number;
|
|
6781
7613
|
};
|
|
6782
|
-
borderRadiusSquare:
|
|
6783
|
-
borderRadiusCircle:
|
|
7614
|
+
borderRadiusSquare: 4;
|
|
7615
|
+
borderRadiusCircle: "50%";
|
|
6784
7616
|
} | {
|
|
6785
7617
|
size: number;
|
|
6786
7618
|
fontSize: number;
|
|
@@ -6794,8 +7626,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6794
7626
|
right: number;
|
|
6795
7627
|
top: number;
|
|
6796
7628
|
};
|
|
6797
|
-
borderRadiusSquare:
|
|
6798
|
-
borderRadiusCircle:
|
|
7629
|
+
borderRadiusSquare: 4;
|
|
7630
|
+
borderRadiusCircle: "50%";
|
|
6799
7631
|
} | {
|
|
6800
7632
|
size: number;
|
|
6801
7633
|
fontSize: number;
|
|
@@ -6809,8 +7641,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6809
7641
|
right: number;
|
|
6810
7642
|
top: number;
|
|
6811
7643
|
};
|
|
6812
|
-
borderRadiusSquare:
|
|
6813
|
-
borderRadiusCircle:
|
|
7644
|
+
borderRadiusSquare: 2;
|
|
7645
|
+
borderRadiusCircle: "50%";
|
|
6814
7646
|
};
|
|
6815
7647
|
tag: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
6816
7648
|
height: number;
|
|
@@ -6819,7 +7651,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6819
7651
|
lineHeight: number;
|
|
6820
7652
|
gap: number;
|
|
6821
7653
|
iconSize: number;
|
|
6822
|
-
radius:
|
|
7654
|
+
radius: 8;
|
|
6823
7655
|
borderWidth: number;
|
|
6824
7656
|
} | {
|
|
6825
7657
|
height: number;
|
|
@@ -6828,7 +7660,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6828
7660
|
lineHeight: number;
|
|
6829
7661
|
gap: number;
|
|
6830
7662
|
iconSize: number;
|
|
6831
|
-
radius:
|
|
7663
|
+
radius: 8;
|
|
6832
7664
|
borderWidth: number;
|
|
6833
7665
|
} | {
|
|
6834
7666
|
height: number;
|
|
@@ -6837,7 +7669,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6837
7669
|
lineHeight: number;
|
|
6838
7670
|
gap: number;
|
|
6839
7671
|
iconSize: number;
|
|
6840
|
-
radius:
|
|
7672
|
+
radius: 6;
|
|
6841
7673
|
borderWidth: number;
|
|
6842
7674
|
} | {
|
|
6843
7675
|
height: number;
|
|
@@ -6846,7 +7678,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6846
7678
|
lineHeight: number;
|
|
6847
7679
|
gap: number;
|
|
6848
7680
|
iconSize: number;
|
|
6849
|
-
radius:
|
|
7681
|
+
radius: 4;
|
|
6850
7682
|
borderWidth: number;
|
|
6851
7683
|
} | {
|
|
6852
7684
|
height: number;
|
|
@@ -6855,7 +7687,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6855
7687
|
lineHeight: number;
|
|
6856
7688
|
gap: number;
|
|
6857
7689
|
iconSize: number;
|
|
6858
|
-
radius:
|
|
7690
|
+
radius: 4;
|
|
6859
7691
|
borderWidth: number;
|
|
6860
7692
|
};
|
|
6861
7693
|
divider: (size: "lg" | "md" | "sm") => {
|
|
@@ -6919,11 +7751,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6919
7751
|
segmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6920
7752
|
height: number;
|
|
6921
7753
|
containerPadding: number;
|
|
6922
|
-
containerRadius:
|
|
7754
|
+
containerRadius: 8;
|
|
6923
7755
|
itemHeight: number;
|
|
6924
7756
|
itemPaddingHorizontal: number;
|
|
6925
7757
|
itemPaddingVertical: number;
|
|
6926
|
-
itemRadius:
|
|
7758
|
+
itemRadius: 4;
|
|
6927
7759
|
fontSize: number;
|
|
6928
7760
|
lineHeight: number;
|
|
6929
7761
|
iconSize: number;
|
|
@@ -6931,11 +7763,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6931
7763
|
} | {
|
|
6932
7764
|
height: number;
|
|
6933
7765
|
containerPadding: number;
|
|
6934
|
-
containerRadius:
|
|
7766
|
+
containerRadius: 8;
|
|
6935
7767
|
itemHeight: number;
|
|
6936
7768
|
itemPaddingHorizontal: number;
|
|
6937
7769
|
itemPaddingVertical: number;
|
|
6938
|
-
itemRadius:
|
|
7770
|
+
itemRadius: 4;
|
|
6939
7771
|
fontSize: number;
|
|
6940
7772
|
lineHeight: number;
|
|
6941
7773
|
iconSize: number;
|
|
@@ -6943,11 +7775,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6943
7775
|
} | {
|
|
6944
7776
|
height: number;
|
|
6945
7777
|
containerPadding: number;
|
|
6946
|
-
containerRadius:
|
|
7778
|
+
containerRadius: 8;
|
|
6947
7779
|
itemHeight: number;
|
|
6948
7780
|
itemPaddingHorizontal: number;
|
|
6949
7781
|
itemPaddingVertical: number;
|
|
6950
|
-
itemRadius:
|
|
7782
|
+
itemRadius: 4;
|
|
6951
7783
|
fontSize: number;
|
|
6952
7784
|
lineHeight: number;
|
|
6953
7785
|
iconSize: number;
|
|
@@ -6955,11 +7787,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6955
7787
|
} | {
|
|
6956
7788
|
height: number;
|
|
6957
7789
|
containerPadding: number;
|
|
6958
|
-
containerRadius:
|
|
7790
|
+
containerRadius: 4;
|
|
6959
7791
|
itemHeight: number;
|
|
6960
7792
|
itemPaddingHorizontal: number;
|
|
6961
7793
|
itemPaddingVertical: number;
|
|
6962
|
-
itemRadius:
|
|
7794
|
+
itemRadius: 2;
|
|
6963
7795
|
fontSize: number;
|
|
6964
7796
|
lineHeight: number;
|
|
6965
7797
|
iconSize: number;
|
|
@@ -6968,10 +7800,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6968
7800
|
tabsSegmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6969
7801
|
height: number;
|
|
6970
7802
|
containerPadding: number;
|
|
6971
|
-
containerRadius: number;
|
|
6972
7803
|
itemPaddingHorizontal: number;
|
|
6973
7804
|
itemPaddingVertical: number;
|
|
6974
|
-
itemRadius: number;
|
|
6975
7805
|
fontSize: number;
|
|
6976
7806
|
lineHeight: number;
|
|
6977
7807
|
iconSize: number;
|
|
@@ -6979,10 +7809,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6979
7809
|
} | {
|
|
6980
7810
|
height: number;
|
|
6981
7811
|
containerPadding: number;
|
|
6982
|
-
containerRadius: number;
|
|
6983
7812
|
itemPaddingHorizontal: number;
|
|
6984
7813
|
itemPaddingVertical: number;
|
|
6985
|
-
itemRadius: number;
|
|
6986
7814
|
fontSize: number;
|
|
6987
7815
|
lineHeight: number;
|
|
6988
7816
|
iconSize: number;
|
|
@@ -6990,10 +7818,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6990
7818
|
} | {
|
|
6991
7819
|
height: number;
|
|
6992
7820
|
containerPadding: number;
|
|
6993
|
-
containerRadius: number;
|
|
6994
7821
|
itemPaddingHorizontal: number;
|
|
6995
7822
|
itemPaddingVertical: number;
|
|
6996
|
-
itemRadius: number;
|
|
6997
7823
|
fontSize: number;
|
|
6998
7824
|
lineHeight: number;
|
|
6999
7825
|
iconSize: number;
|
|
@@ -7001,10 +7827,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7001
7827
|
} | {
|
|
7002
7828
|
height: number;
|
|
7003
7829
|
containerPadding: number;
|
|
7004
|
-
containerRadius: number;
|
|
7005
7830
|
itemPaddingHorizontal: number;
|
|
7006
7831
|
itemPaddingVertical: number;
|
|
7007
|
-
itemRadius: number;
|
|
7008
7832
|
fontSize: number;
|
|
7009
7833
|
lineHeight: number;
|
|
7010
7834
|
iconSize: number;
|
|
@@ -7017,7 +7841,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7017
7841
|
fontSize: number;
|
|
7018
7842
|
lineHeight: number;
|
|
7019
7843
|
gap: number;
|
|
7020
|
-
borderRadius:
|
|
7844
|
+
borderRadius: 4;
|
|
7021
7845
|
} | {
|
|
7022
7846
|
height: number;
|
|
7023
7847
|
paddingHorizontal: number;
|
|
@@ -7025,7 +7849,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7025
7849
|
fontSize: number;
|
|
7026
7850
|
lineHeight: number;
|
|
7027
7851
|
gap: number;
|
|
7028
|
-
borderRadius:
|
|
7852
|
+
borderRadius: 4;
|
|
7029
7853
|
} | {
|
|
7030
7854
|
height: number;
|
|
7031
7855
|
paddingHorizontal: number;
|
|
@@ -7033,7 +7857,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7033
7857
|
fontSize: number;
|
|
7034
7858
|
lineHeight: number;
|
|
7035
7859
|
gap: number;
|
|
7036
|
-
borderRadius:
|
|
7860
|
+
borderRadius: 2;
|
|
7037
7861
|
} | {
|
|
7038
7862
|
height: number;
|
|
7039
7863
|
paddingHorizontal: number;
|
|
@@ -7041,7 +7865,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7041
7865
|
fontSize: number;
|
|
7042
7866
|
lineHeight: number;
|
|
7043
7867
|
gap: number;
|
|
7044
|
-
borderRadius:
|
|
7868
|
+
borderRadius: 2;
|
|
7045
7869
|
};
|
|
7046
7870
|
badge: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
7047
7871
|
size: number;
|
|
@@ -7083,7 +7907,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7083
7907
|
messageSize: number;
|
|
7084
7908
|
iconSize: number;
|
|
7085
7909
|
iconWrapperSize: number;
|
|
7086
|
-
radius:
|
|
7910
|
+
radius: 4;
|
|
7087
7911
|
} | {
|
|
7088
7912
|
width: string;
|
|
7089
7913
|
paddingHorizontal: number;
|
|
@@ -7093,13 +7917,13 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7093
7917
|
messageSize: number;
|
|
7094
7918
|
iconSize: number;
|
|
7095
7919
|
iconWrapperSize: number;
|
|
7096
|
-
radius:
|
|
7920
|
+
radius: 8;
|
|
7097
7921
|
};
|
|
7098
7922
|
notificationPanel: () => {
|
|
7099
7923
|
minHeight: number;
|
|
7100
7924
|
iconFrameWidth: number;
|
|
7101
7925
|
iconSize: number;
|
|
7102
|
-
borderRadius:
|
|
7926
|
+
borderRadius: 8;
|
|
7103
7927
|
bodyPaddingHorizontal: number;
|
|
7104
7928
|
bodyPaddingVertical: number;
|
|
7105
7929
|
textGap: number;
|
|
@@ -7293,7 +8117,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7293
8117
|
searchIconSize: number;
|
|
7294
8118
|
};
|
|
7295
8119
|
modal: () => {
|
|
7296
|
-
borderRadius:
|
|
8120
|
+
borderRadius: 8;
|
|
7297
8121
|
headerPadding: number;
|
|
7298
8122
|
contentPadding: number;
|
|
7299
8123
|
headerButtonSize: "xl";
|
|
@@ -7421,7 +8245,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7421
8245
|
minHeight: number;
|
|
7422
8246
|
paddingHorizontal: number;
|
|
7423
8247
|
paddingVertical: number;
|
|
7424
|
-
borderRadius:
|
|
8248
|
+
borderRadius: 4;
|
|
7425
8249
|
gap: number;
|
|
7426
8250
|
iconSize: number;
|
|
7427
8251
|
closeButtonSize: number;
|
|
@@ -7439,7 +8263,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7439
8263
|
lineHeight: number;
|
|
7440
8264
|
iconSize: number;
|
|
7441
8265
|
gap: number;
|
|
7442
|
-
borderRadius:
|
|
8266
|
+
borderRadius: 8;
|
|
7443
8267
|
itemGap: number;
|
|
7444
8268
|
} | {
|
|
7445
8269
|
height: number;
|
|
@@ -7448,7 +8272,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7448
8272
|
lineHeight: number;
|
|
7449
8273
|
iconSize: number;
|
|
7450
8274
|
gap: number;
|
|
7451
|
-
borderRadius:
|
|
8275
|
+
borderRadius: 8;
|
|
7452
8276
|
itemGap: number;
|
|
7453
8277
|
} | {
|
|
7454
8278
|
height: number;
|
|
@@ -7457,7 +8281,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7457
8281
|
lineHeight: number;
|
|
7458
8282
|
iconSize: number;
|
|
7459
8283
|
gap: number;
|
|
7460
|
-
borderRadius:
|
|
8284
|
+
borderRadius: 6;
|
|
7461
8285
|
itemGap: number;
|
|
7462
8286
|
} | {
|
|
7463
8287
|
height: number;
|
|
@@ -7466,7 +8290,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7466
8290
|
lineHeight: number;
|
|
7467
8291
|
iconSize: number;
|
|
7468
8292
|
gap: number;
|
|
7469
|
-
borderRadius:
|
|
8293
|
+
borderRadius: 4;
|
|
7470
8294
|
itemGap: number;
|
|
7471
8295
|
} | {
|
|
7472
8296
|
height: number;
|
|
@@ -7475,7 +8299,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7475
8299
|
lineHeight: number;
|
|
7476
8300
|
iconSize: number;
|
|
7477
8301
|
gap: number;
|
|
7478
|
-
borderRadius:
|
|
8302
|
+
borderRadius: 4;
|
|
7479
8303
|
itemGap: number;
|
|
7480
8304
|
};
|
|
7481
8305
|
table: {
|
|
@@ -7516,4 +8340,4 @@ declare const ModalIdContext: React.Context<string | null>;
|
|
|
7516
8340
|
*/
|
|
7517
8341
|
declare const useModalId: () => string | null;
|
|
7518
8342
|
|
|
7519
|
-
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 };
|
|
8343
|
+
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, radiusFull, radiusScale, responsiveTypographyScale, shadow, shape, spacing, stroke, themeConfig, typography, typographyTokens, useDesignSystem, useId, useModalId, useResolvedTheme };
|