@xsolla/xui-core 0.154.1 → 0.154.2-pr290.1778848446
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 +1018 -199
- package/index.d.ts +1018 -199
- 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
|
@@ -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,308 @@ 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
|
+
/** Primitive border-width scale. Mirrors Figma "Scale / stroke/*" variables. */
|
|
2491
|
+
declare const stroke: {
|
|
2492
|
+
readonly "1": 1;
|
|
2493
|
+
readonly "2": 2;
|
|
2494
|
+
readonly "3": 3;
|
|
2495
|
+
};
|
|
2496
|
+
|
|
2497
|
+
/**
|
|
2498
|
+
* Semantic shape tokens. Mirrors Figma "Theme / Shape" variable collection,
|
|
2499
|
+
* Xsolla Default mode. Values alias into the radiusScale and stroke primitives.
|
|
2500
|
+
*/
|
|
2501
|
+
declare const shape: {
|
|
2502
|
+
readonly button: {
|
|
2503
|
+
readonly xl: {
|
|
2504
|
+
readonly borderRadius: 8;
|
|
2505
|
+
readonly borderWidth: 1;
|
|
2506
|
+
};
|
|
2507
|
+
readonly lg: {
|
|
2508
|
+
readonly borderRadius: 8;
|
|
2509
|
+
readonly borderWidth: 1;
|
|
2510
|
+
};
|
|
2511
|
+
readonly md: {
|
|
2512
|
+
readonly borderRadius: 6;
|
|
2513
|
+
readonly borderWidth: 1;
|
|
2514
|
+
};
|
|
2515
|
+
readonly sm: {
|
|
2516
|
+
readonly borderRadius: 4;
|
|
2517
|
+
readonly borderWidth: 1;
|
|
2518
|
+
};
|
|
2519
|
+
readonly xs: {
|
|
2520
|
+
readonly borderRadius: 4;
|
|
2521
|
+
readonly borderWidth: 1;
|
|
2522
|
+
};
|
|
2523
|
+
};
|
|
2524
|
+
readonly checkbox: {
|
|
2525
|
+
readonly xl: {
|
|
2526
|
+
readonly borderRadius: 4;
|
|
2527
|
+
readonly borderWidth: 1;
|
|
2528
|
+
};
|
|
2529
|
+
readonly lg: {
|
|
2530
|
+
readonly borderRadius: 4;
|
|
2531
|
+
readonly borderWidth: 1;
|
|
2532
|
+
};
|
|
2533
|
+
readonly md: {
|
|
2534
|
+
readonly borderRadius: 4;
|
|
2535
|
+
readonly borderWidth: 1;
|
|
2536
|
+
};
|
|
2537
|
+
readonly sm: {
|
|
2538
|
+
readonly borderRadius: 4;
|
|
2539
|
+
readonly borderWidth: 1;
|
|
2540
|
+
};
|
|
2541
|
+
};
|
|
2542
|
+
readonly input: {
|
|
2543
|
+
readonly xl: {
|
|
2544
|
+
readonly borderRadius: 8;
|
|
2545
|
+
readonly borderWidth: 1;
|
|
2546
|
+
};
|
|
2547
|
+
readonly lg: {
|
|
2548
|
+
readonly borderRadius: 8;
|
|
2549
|
+
readonly borderWidth: 1;
|
|
2550
|
+
};
|
|
2551
|
+
readonly md: {
|
|
2552
|
+
readonly borderRadius: 8;
|
|
2553
|
+
readonly borderWidth: 1;
|
|
2554
|
+
};
|
|
2555
|
+
readonly sm: {
|
|
2556
|
+
readonly borderRadius: 4;
|
|
2557
|
+
readonly borderWidth: 1;
|
|
2558
|
+
};
|
|
2559
|
+
readonly xs: {
|
|
2560
|
+
readonly borderRadius: 4;
|
|
2561
|
+
readonly borderWidth: 1;
|
|
2562
|
+
};
|
|
2563
|
+
};
|
|
2564
|
+
readonly segmented: {
|
|
2565
|
+
readonly xl: {
|
|
2566
|
+
readonly borderRadius: 8;
|
|
2567
|
+
readonly borderWidth: 1;
|
|
2568
|
+
};
|
|
2569
|
+
readonly lg: {
|
|
2570
|
+
readonly borderRadius: 8;
|
|
2571
|
+
readonly borderWidth: 1;
|
|
2572
|
+
};
|
|
2573
|
+
readonly md: {
|
|
2574
|
+
readonly borderRadius: 8;
|
|
2575
|
+
readonly borderWidth: 1;
|
|
2576
|
+
};
|
|
2577
|
+
readonly sm: {
|
|
2578
|
+
readonly borderRadius: 4;
|
|
2579
|
+
readonly borderWidth: 1;
|
|
2580
|
+
};
|
|
2581
|
+
};
|
|
2582
|
+
readonly segmentedItem: {
|
|
2583
|
+
readonly xl: {
|
|
2584
|
+
readonly borderRadius: 4;
|
|
2585
|
+
readonly borderWidth: 1;
|
|
2586
|
+
};
|
|
2587
|
+
readonly lg: {
|
|
2588
|
+
readonly borderRadius: 4;
|
|
2589
|
+
readonly borderWidth: 1;
|
|
2590
|
+
};
|
|
2591
|
+
readonly md: {
|
|
2592
|
+
readonly borderRadius: 4;
|
|
2593
|
+
readonly borderWidth: 1;
|
|
2594
|
+
};
|
|
2595
|
+
readonly sm: {
|
|
2596
|
+
readonly borderRadius: 2;
|
|
2597
|
+
readonly borderWidth: 1;
|
|
2598
|
+
};
|
|
2599
|
+
};
|
|
2600
|
+
readonly switch: {
|
|
2601
|
+
readonly xl: {
|
|
2602
|
+
readonly borderRadius: 4;
|
|
2603
|
+
readonly borderWidth: 1;
|
|
2604
|
+
};
|
|
2605
|
+
readonly lg: {
|
|
2606
|
+
readonly borderRadius: 4;
|
|
2607
|
+
readonly borderWidth: 1;
|
|
2608
|
+
};
|
|
2609
|
+
readonly md: {
|
|
2610
|
+
readonly borderRadius: 4;
|
|
2611
|
+
readonly borderWidth: 1;
|
|
2612
|
+
};
|
|
2613
|
+
readonly sm: {
|
|
2614
|
+
readonly borderRadius: 4;
|
|
2615
|
+
readonly borderWidth: 1;
|
|
2616
|
+
};
|
|
2617
|
+
};
|
|
2618
|
+
readonly knob: {
|
|
2619
|
+
readonly xl: {
|
|
2620
|
+
readonly borderRadius: 2;
|
|
2621
|
+
};
|
|
2622
|
+
readonly lg: {
|
|
2623
|
+
readonly borderRadius: 2;
|
|
2624
|
+
};
|
|
2625
|
+
readonly md: {
|
|
2626
|
+
readonly borderRadius: 2;
|
|
2627
|
+
};
|
|
2628
|
+
readonly sm: {
|
|
2629
|
+
readonly borderRadius: 2;
|
|
2630
|
+
};
|
|
2631
|
+
};
|
|
2632
|
+
readonly tabItem: {
|
|
2633
|
+
readonly xl: {
|
|
2634
|
+
readonly borderRadius: 8;
|
|
2635
|
+
};
|
|
2636
|
+
readonly lg: {
|
|
2637
|
+
readonly borderRadius: 8;
|
|
2638
|
+
};
|
|
2639
|
+
readonly md: {
|
|
2640
|
+
readonly borderRadius: 4;
|
|
2641
|
+
};
|
|
2642
|
+
readonly sm: {
|
|
2643
|
+
readonly borderRadius: 4;
|
|
2644
|
+
};
|
|
2645
|
+
};
|
|
2646
|
+
readonly tag: {
|
|
2647
|
+
readonly xl: {
|
|
2648
|
+
readonly borderRadius: 8;
|
|
2649
|
+
readonly borderWidth: 1;
|
|
2650
|
+
};
|
|
2651
|
+
readonly lg: {
|
|
2652
|
+
readonly borderRadius: 8;
|
|
2653
|
+
readonly borderWidth: 1;
|
|
2654
|
+
};
|
|
2655
|
+
readonly md: {
|
|
2656
|
+
readonly borderRadius: 6;
|
|
2657
|
+
readonly borderWidth: 1;
|
|
2658
|
+
};
|
|
2659
|
+
readonly sm: {
|
|
2660
|
+
readonly borderRadius: 4;
|
|
2661
|
+
readonly borderWidth: 1;
|
|
2662
|
+
};
|
|
2663
|
+
readonly xs: {
|
|
2664
|
+
readonly borderRadius: 4;
|
|
2665
|
+
readonly borderWidth: 1;
|
|
2666
|
+
};
|
|
2667
|
+
readonly label: {
|
|
2668
|
+
readonly borderRadius: 0;
|
|
2669
|
+
};
|
|
2670
|
+
};
|
|
2671
|
+
readonly tooltip: {
|
|
2672
|
+
readonly xl: {
|
|
2673
|
+
readonly borderRadius: 8;
|
|
2674
|
+
};
|
|
2675
|
+
readonly lg: {
|
|
2676
|
+
readonly borderRadius: 8;
|
|
2677
|
+
};
|
|
2678
|
+
readonly md: {
|
|
2679
|
+
readonly borderRadius: 8;
|
|
2680
|
+
};
|
|
2681
|
+
readonly sm: {
|
|
2682
|
+
readonly borderRadius: 4;
|
|
2683
|
+
};
|
|
2684
|
+
};
|
|
2685
|
+
readonly radio: {
|
|
2686
|
+
readonly xl: {
|
|
2687
|
+
readonly borderRadius: 999;
|
|
2688
|
+
readonly borderWidth: 1;
|
|
2689
|
+
};
|
|
2690
|
+
readonly lg: {
|
|
2691
|
+
readonly borderRadius: 999;
|
|
2692
|
+
readonly borderWidth: 1;
|
|
2693
|
+
};
|
|
2694
|
+
readonly md: {
|
|
2695
|
+
readonly borderRadius: 999;
|
|
2696
|
+
readonly borderWidth: 1;
|
|
2697
|
+
};
|
|
2698
|
+
readonly sm: {
|
|
2699
|
+
readonly borderRadius: 999;
|
|
2700
|
+
readonly borderWidth: 1;
|
|
2701
|
+
};
|
|
2702
|
+
};
|
|
2703
|
+
readonly contextMenu: {
|
|
2704
|
+
readonly xl: {
|
|
2705
|
+
readonly borderRadius: 8;
|
|
2706
|
+
};
|
|
2707
|
+
readonly lg: {
|
|
2708
|
+
readonly borderRadius: 8;
|
|
2709
|
+
};
|
|
2710
|
+
readonly md: {
|
|
2711
|
+
readonly borderRadius: 8;
|
|
2712
|
+
};
|
|
2713
|
+
readonly sm: {
|
|
2714
|
+
readonly borderRadius: 4;
|
|
2715
|
+
};
|
|
2716
|
+
readonly xs: {
|
|
2717
|
+
readonly borderRadius: 4;
|
|
2718
|
+
};
|
|
2719
|
+
};
|
|
2720
|
+
readonly avatar: {
|
|
2721
|
+
readonly xl: {
|
|
2722
|
+
readonly borderRadius: 8;
|
|
2723
|
+
readonly borderWidth: 2;
|
|
2724
|
+
};
|
|
2725
|
+
readonly lg: {
|
|
2726
|
+
readonly borderRadius: 6;
|
|
2727
|
+
readonly borderWidth: 2;
|
|
2728
|
+
};
|
|
2729
|
+
readonly md: {
|
|
2730
|
+
readonly borderRadius: 6;
|
|
2731
|
+
readonly borderWidth: 2;
|
|
2732
|
+
};
|
|
2733
|
+
readonly sm: {
|
|
2734
|
+
readonly borderRadius: 4;
|
|
2735
|
+
readonly borderWidth: 2;
|
|
2736
|
+
};
|
|
2737
|
+
readonly xs: {
|
|
2738
|
+
readonly borderRadius: 4;
|
|
2739
|
+
readonly borderWidth: 2;
|
|
2740
|
+
};
|
|
2741
|
+
readonly xxs: {
|
|
2742
|
+
readonly borderRadius: 2;
|
|
2743
|
+
readonly borderWidth: 2;
|
|
2744
|
+
};
|
|
2745
|
+
};
|
|
2746
|
+
readonly modal: {
|
|
2747
|
+
readonly borderRadius: 8;
|
|
2748
|
+
};
|
|
2749
|
+
readonly toast: {
|
|
2750
|
+
readonly borderRadius: 4;
|
|
2751
|
+
};
|
|
2752
|
+
readonly toggleButtonGroup: {
|
|
2753
|
+
readonly xl: {
|
|
2754
|
+
readonly borderRadius: 8;
|
|
2755
|
+
readonly borderWidth: 1;
|
|
2756
|
+
};
|
|
2757
|
+
readonly lg: {
|
|
2758
|
+
readonly borderRadius: 8;
|
|
2759
|
+
readonly borderWidth: 1;
|
|
2760
|
+
};
|
|
2761
|
+
readonly md: {
|
|
2762
|
+
readonly borderRadius: 6;
|
|
2763
|
+
readonly borderWidth: 1;
|
|
2764
|
+
};
|
|
2765
|
+
readonly sm: {
|
|
2766
|
+
readonly borderRadius: 4;
|
|
2767
|
+
readonly borderWidth: 1;
|
|
2768
|
+
};
|
|
2769
|
+
readonly xs: {
|
|
2770
|
+
readonly borderRadius: 4;
|
|
2771
|
+
readonly borderWidth: 1;
|
|
2772
|
+
};
|
|
2773
|
+
};
|
|
2774
|
+
readonly tagLabel: {
|
|
2775
|
+
readonly borderRadius: 0;
|
|
2776
|
+
};
|
|
2777
|
+
};
|
|
2475
2778
|
|
|
2476
2779
|
declare const shadow: {
|
|
2477
2780
|
active: string;
|
|
@@ -3847,16 +4150,282 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3847
4150
|
l: number;
|
|
3848
4151
|
xl: number;
|
|
3849
4152
|
};
|
|
3850
|
-
|
|
3851
|
-
button:
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
4153
|
+
shape: {
|
|
4154
|
+
readonly button: {
|
|
4155
|
+
readonly xl: {
|
|
4156
|
+
readonly borderRadius: 8;
|
|
4157
|
+
readonly borderWidth: 1;
|
|
4158
|
+
};
|
|
4159
|
+
readonly lg: {
|
|
4160
|
+
readonly borderRadius: 8;
|
|
4161
|
+
readonly borderWidth: 1;
|
|
4162
|
+
};
|
|
4163
|
+
readonly md: {
|
|
4164
|
+
readonly borderRadius: 6;
|
|
4165
|
+
readonly borderWidth: 1;
|
|
4166
|
+
};
|
|
4167
|
+
readonly sm: {
|
|
4168
|
+
readonly borderRadius: 4;
|
|
4169
|
+
readonly borderWidth: 1;
|
|
4170
|
+
};
|
|
4171
|
+
readonly xs: {
|
|
4172
|
+
readonly borderRadius: 4;
|
|
4173
|
+
readonly borderWidth: 1;
|
|
4174
|
+
};
|
|
4175
|
+
};
|
|
4176
|
+
readonly checkbox: {
|
|
4177
|
+
readonly xl: {
|
|
4178
|
+
readonly borderRadius: 4;
|
|
4179
|
+
readonly borderWidth: 1;
|
|
4180
|
+
};
|
|
4181
|
+
readonly lg: {
|
|
4182
|
+
readonly borderRadius: 4;
|
|
4183
|
+
readonly borderWidth: 1;
|
|
4184
|
+
};
|
|
4185
|
+
readonly md: {
|
|
4186
|
+
readonly borderRadius: 4;
|
|
4187
|
+
readonly borderWidth: 1;
|
|
4188
|
+
};
|
|
4189
|
+
readonly sm: {
|
|
4190
|
+
readonly borderRadius: 4;
|
|
4191
|
+
readonly borderWidth: 1;
|
|
4192
|
+
};
|
|
4193
|
+
};
|
|
4194
|
+
readonly input: {
|
|
4195
|
+
readonly xl: {
|
|
4196
|
+
readonly borderRadius: 8;
|
|
4197
|
+
readonly borderWidth: 1;
|
|
4198
|
+
};
|
|
4199
|
+
readonly lg: {
|
|
4200
|
+
readonly borderRadius: 8;
|
|
4201
|
+
readonly borderWidth: 1;
|
|
4202
|
+
};
|
|
4203
|
+
readonly md: {
|
|
4204
|
+
readonly borderRadius: 8;
|
|
4205
|
+
readonly borderWidth: 1;
|
|
4206
|
+
};
|
|
4207
|
+
readonly sm: {
|
|
4208
|
+
readonly borderRadius: 4;
|
|
4209
|
+
readonly borderWidth: 1;
|
|
4210
|
+
};
|
|
4211
|
+
readonly xs: {
|
|
4212
|
+
readonly borderRadius: 4;
|
|
4213
|
+
readonly borderWidth: 1;
|
|
4214
|
+
};
|
|
4215
|
+
};
|
|
4216
|
+
readonly segmented: {
|
|
4217
|
+
readonly xl: {
|
|
4218
|
+
readonly borderRadius: 8;
|
|
4219
|
+
readonly borderWidth: 1;
|
|
4220
|
+
};
|
|
4221
|
+
readonly lg: {
|
|
4222
|
+
readonly borderRadius: 8;
|
|
4223
|
+
readonly borderWidth: 1;
|
|
4224
|
+
};
|
|
4225
|
+
readonly md: {
|
|
4226
|
+
readonly borderRadius: 8;
|
|
4227
|
+
readonly borderWidth: 1;
|
|
4228
|
+
};
|
|
4229
|
+
readonly sm: {
|
|
4230
|
+
readonly borderRadius: 4;
|
|
4231
|
+
readonly borderWidth: 1;
|
|
4232
|
+
};
|
|
4233
|
+
};
|
|
4234
|
+
readonly segmentedItem: {
|
|
4235
|
+
readonly xl: {
|
|
4236
|
+
readonly borderRadius: 4;
|
|
4237
|
+
readonly borderWidth: 1;
|
|
4238
|
+
};
|
|
4239
|
+
readonly lg: {
|
|
4240
|
+
readonly borderRadius: 4;
|
|
4241
|
+
readonly borderWidth: 1;
|
|
4242
|
+
};
|
|
4243
|
+
readonly md: {
|
|
4244
|
+
readonly borderRadius: 4;
|
|
4245
|
+
readonly borderWidth: 1;
|
|
4246
|
+
};
|
|
4247
|
+
readonly sm: {
|
|
4248
|
+
readonly borderRadius: 2;
|
|
4249
|
+
readonly borderWidth: 1;
|
|
4250
|
+
};
|
|
4251
|
+
};
|
|
4252
|
+
readonly switch: {
|
|
4253
|
+
readonly xl: {
|
|
4254
|
+
readonly borderRadius: 4;
|
|
4255
|
+
readonly borderWidth: 1;
|
|
4256
|
+
};
|
|
4257
|
+
readonly lg: {
|
|
4258
|
+
readonly borderRadius: 4;
|
|
4259
|
+
readonly borderWidth: 1;
|
|
4260
|
+
};
|
|
4261
|
+
readonly md: {
|
|
4262
|
+
readonly borderRadius: 4;
|
|
4263
|
+
readonly borderWidth: 1;
|
|
4264
|
+
};
|
|
4265
|
+
readonly sm: {
|
|
4266
|
+
readonly borderRadius: 4;
|
|
4267
|
+
readonly borderWidth: 1;
|
|
4268
|
+
};
|
|
4269
|
+
};
|
|
4270
|
+
readonly knob: {
|
|
4271
|
+
readonly xl: {
|
|
4272
|
+
readonly borderRadius: 2;
|
|
4273
|
+
};
|
|
4274
|
+
readonly lg: {
|
|
4275
|
+
readonly borderRadius: 2;
|
|
4276
|
+
};
|
|
4277
|
+
readonly md: {
|
|
4278
|
+
readonly borderRadius: 2;
|
|
4279
|
+
};
|
|
4280
|
+
readonly sm: {
|
|
4281
|
+
readonly borderRadius: 2;
|
|
4282
|
+
};
|
|
4283
|
+
};
|
|
4284
|
+
readonly tabItem: {
|
|
4285
|
+
readonly xl: {
|
|
4286
|
+
readonly borderRadius: 8;
|
|
4287
|
+
};
|
|
4288
|
+
readonly lg: {
|
|
4289
|
+
readonly borderRadius: 8;
|
|
4290
|
+
};
|
|
4291
|
+
readonly md: {
|
|
4292
|
+
readonly borderRadius: 4;
|
|
4293
|
+
};
|
|
4294
|
+
readonly sm: {
|
|
4295
|
+
readonly borderRadius: 4;
|
|
4296
|
+
};
|
|
4297
|
+
};
|
|
4298
|
+
readonly tag: {
|
|
4299
|
+
readonly xl: {
|
|
4300
|
+
readonly borderRadius: 8;
|
|
4301
|
+
readonly borderWidth: 1;
|
|
4302
|
+
};
|
|
4303
|
+
readonly lg: {
|
|
4304
|
+
readonly borderRadius: 8;
|
|
4305
|
+
readonly borderWidth: 1;
|
|
4306
|
+
};
|
|
4307
|
+
readonly md: {
|
|
4308
|
+
readonly borderRadius: 6;
|
|
4309
|
+
readonly borderWidth: 1;
|
|
4310
|
+
};
|
|
4311
|
+
readonly sm: {
|
|
4312
|
+
readonly borderRadius: 4;
|
|
4313
|
+
readonly borderWidth: 1;
|
|
4314
|
+
};
|
|
4315
|
+
readonly xs: {
|
|
4316
|
+
readonly borderRadius: 4;
|
|
4317
|
+
readonly borderWidth: 1;
|
|
4318
|
+
};
|
|
4319
|
+
readonly label: {
|
|
4320
|
+
readonly borderRadius: 0;
|
|
4321
|
+
};
|
|
4322
|
+
};
|
|
4323
|
+
readonly tooltip: {
|
|
4324
|
+
readonly xl: {
|
|
4325
|
+
readonly borderRadius: 8;
|
|
4326
|
+
};
|
|
4327
|
+
readonly lg: {
|
|
4328
|
+
readonly borderRadius: 8;
|
|
4329
|
+
};
|
|
4330
|
+
readonly md: {
|
|
4331
|
+
readonly borderRadius: 8;
|
|
4332
|
+
};
|
|
4333
|
+
readonly sm: {
|
|
4334
|
+
readonly borderRadius: 4;
|
|
4335
|
+
};
|
|
4336
|
+
};
|
|
4337
|
+
readonly radio: {
|
|
4338
|
+
readonly xl: {
|
|
4339
|
+
readonly borderRadius: 999;
|
|
4340
|
+
readonly borderWidth: 1;
|
|
4341
|
+
};
|
|
4342
|
+
readonly lg: {
|
|
4343
|
+
readonly borderRadius: 999;
|
|
4344
|
+
readonly borderWidth: 1;
|
|
4345
|
+
};
|
|
4346
|
+
readonly md: {
|
|
4347
|
+
readonly borderRadius: 999;
|
|
4348
|
+
readonly borderWidth: 1;
|
|
4349
|
+
};
|
|
4350
|
+
readonly sm: {
|
|
4351
|
+
readonly borderRadius: 999;
|
|
4352
|
+
readonly borderWidth: 1;
|
|
4353
|
+
};
|
|
4354
|
+
};
|
|
4355
|
+
readonly contextMenu: {
|
|
4356
|
+
readonly xl: {
|
|
4357
|
+
readonly borderRadius: 8;
|
|
4358
|
+
};
|
|
4359
|
+
readonly lg: {
|
|
4360
|
+
readonly borderRadius: 8;
|
|
4361
|
+
};
|
|
4362
|
+
readonly md: {
|
|
4363
|
+
readonly borderRadius: 8;
|
|
4364
|
+
};
|
|
4365
|
+
readonly sm: {
|
|
4366
|
+
readonly borderRadius: 4;
|
|
4367
|
+
};
|
|
4368
|
+
readonly xs: {
|
|
4369
|
+
readonly borderRadius: 4;
|
|
4370
|
+
};
|
|
4371
|
+
};
|
|
4372
|
+
readonly avatar: {
|
|
4373
|
+
readonly xl: {
|
|
4374
|
+
readonly borderRadius: 8;
|
|
4375
|
+
readonly borderWidth: 2;
|
|
4376
|
+
};
|
|
4377
|
+
readonly lg: {
|
|
4378
|
+
readonly borderRadius: 6;
|
|
4379
|
+
readonly borderWidth: 2;
|
|
4380
|
+
};
|
|
4381
|
+
readonly md: {
|
|
4382
|
+
readonly borderRadius: 6;
|
|
4383
|
+
readonly borderWidth: 2;
|
|
4384
|
+
};
|
|
4385
|
+
readonly sm: {
|
|
4386
|
+
readonly borderRadius: 4;
|
|
4387
|
+
readonly borderWidth: 2;
|
|
4388
|
+
};
|
|
4389
|
+
readonly xs: {
|
|
4390
|
+
readonly borderRadius: 4;
|
|
4391
|
+
readonly borderWidth: 2;
|
|
4392
|
+
};
|
|
4393
|
+
readonly xxs: {
|
|
4394
|
+
readonly borderRadius: 2;
|
|
4395
|
+
readonly borderWidth: 2;
|
|
4396
|
+
};
|
|
4397
|
+
};
|
|
4398
|
+
readonly modal: {
|
|
4399
|
+
readonly borderRadius: 8;
|
|
4400
|
+
};
|
|
4401
|
+
readonly toast: {
|
|
4402
|
+
readonly borderRadius: 4;
|
|
4403
|
+
};
|
|
4404
|
+
readonly toggleButtonGroup: {
|
|
4405
|
+
readonly xl: {
|
|
4406
|
+
readonly borderRadius: 8;
|
|
4407
|
+
readonly borderWidth: 1;
|
|
4408
|
+
};
|
|
4409
|
+
readonly lg: {
|
|
4410
|
+
readonly borderRadius: 8;
|
|
4411
|
+
readonly borderWidth: 1;
|
|
4412
|
+
};
|
|
4413
|
+
readonly md: {
|
|
4414
|
+
readonly borderRadius: 6;
|
|
4415
|
+
readonly borderWidth: 1;
|
|
4416
|
+
};
|
|
4417
|
+
readonly sm: {
|
|
4418
|
+
readonly borderRadius: 4;
|
|
4419
|
+
readonly borderWidth: 1;
|
|
4420
|
+
};
|
|
4421
|
+
readonly xs: {
|
|
4422
|
+
readonly borderRadius: 4;
|
|
4423
|
+
readonly borderWidth: 1;
|
|
4424
|
+
};
|
|
4425
|
+
};
|
|
4426
|
+
readonly tagLabel: {
|
|
4427
|
+
readonly borderRadius: 0;
|
|
4428
|
+
};
|
|
3860
4429
|
};
|
|
3861
4430
|
shadow: {
|
|
3862
4431
|
active: string;
|
|
@@ -3889,7 +4458,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3889
4458
|
iconContainerSize: number;
|
|
3890
4459
|
iconPadding: number;
|
|
3891
4460
|
loadingPadding: number;
|
|
3892
|
-
borderRadius:
|
|
4461
|
+
borderRadius: 8;
|
|
3893
4462
|
labelIconSize: number;
|
|
3894
4463
|
labelIconGap: number;
|
|
3895
4464
|
} | {
|
|
@@ -3902,7 +4471,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3902
4471
|
iconContainerSize: number;
|
|
3903
4472
|
iconPadding: number;
|
|
3904
4473
|
loadingPadding: number;
|
|
3905
|
-
borderRadius:
|
|
4474
|
+
borderRadius: 8;
|
|
3906
4475
|
labelIconSize: number;
|
|
3907
4476
|
labelIconGap: number;
|
|
3908
4477
|
} | {
|
|
@@ -3915,7 +4484,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3915
4484
|
iconContainerSize: number;
|
|
3916
4485
|
iconPadding: number;
|
|
3917
4486
|
loadingPadding: number;
|
|
3918
|
-
borderRadius:
|
|
4487
|
+
borderRadius: 6;
|
|
3919
4488
|
labelIconSize: number;
|
|
3920
4489
|
labelIconGap: number;
|
|
3921
4490
|
} | {
|
|
@@ -3928,7 +4497,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3928
4497
|
iconContainerSize: number;
|
|
3929
4498
|
iconPadding: number;
|
|
3930
4499
|
loadingPadding: number;
|
|
3931
|
-
borderRadius:
|
|
4500
|
+
borderRadius: 4;
|
|
3932
4501
|
labelIconSize: number;
|
|
3933
4502
|
labelIconGap: number;
|
|
3934
4503
|
} | {
|
|
@@ -3941,7 +4510,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3941
4510
|
iconContainerSize: number;
|
|
3942
4511
|
iconPadding: number;
|
|
3943
4512
|
loadingPadding: number;
|
|
3944
|
-
borderRadius:
|
|
4513
|
+
borderRadius: 4;
|
|
3945
4514
|
labelIconSize: number;
|
|
3946
4515
|
labelIconGap: number;
|
|
3947
4516
|
};
|
|
@@ -3951,35 +4520,35 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3951
4520
|
fontSize: number;
|
|
3952
4521
|
spinnerSize: number;
|
|
3953
4522
|
iconSize: number;
|
|
3954
|
-
borderRadius:
|
|
4523
|
+
borderRadius: 4;
|
|
3955
4524
|
} | {
|
|
3956
4525
|
height: number;
|
|
3957
4526
|
padding: number;
|
|
3958
4527
|
fontSize: number;
|
|
3959
4528
|
spinnerSize: number;
|
|
3960
4529
|
iconSize: number;
|
|
3961
|
-
borderRadius:
|
|
4530
|
+
borderRadius: 4;
|
|
3962
4531
|
} | {
|
|
3963
4532
|
height: number;
|
|
3964
4533
|
padding: number;
|
|
3965
4534
|
fontSize: number;
|
|
3966
4535
|
spinnerSize: number;
|
|
3967
4536
|
iconSize: number;
|
|
3968
|
-
borderRadius:
|
|
4537
|
+
borderRadius: 2;
|
|
3969
4538
|
} | {
|
|
3970
4539
|
height: number;
|
|
3971
4540
|
padding: number;
|
|
3972
4541
|
fontSize: number;
|
|
3973
4542
|
spinnerSize: number;
|
|
3974
4543
|
iconSize: number;
|
|
3975
|
-
borderRadius:
|
|
4544
|
+
borderRadius: 2;
|
|
3976
4545
|
} | {
|
|
3977
4546
|
height: number;
|
|
3978
4547
|
padding: number;
|
|
3979
4548
|
fontSize: number;
|
|
3980
4549
|
spinnerSize: number;
|
|
3981
4550
|
iconSize: number;
|
|
3982
|
-
borderRadius:
|
|
4551
|
+
borderRadius: 2;
|
|
3983
4552
|
};
|
|
3984
4553
|
checkbox: (size: "xl" | "lg" | "md" | "sm") => {
|
|
3985
4554
|
size: number;
|
|
@@ -3987,28 +4556,28 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
3987
4556
|
descriptionFontSize: number;
|
|
3988
4557
|
labelGap: number;
|
|
3989
4558
|
textGap: number;
|
|
3990
|
-
borderRadius:
|
|
4559
|
+
borderRadius: 4;
|
|
3991
4560
|
} | {
|
|
3992
4561
|
size: number;
|
|
3993
4562
|
fontSize: number;
|
|
3994
4563
|
descriptionFontSize: number;
|
|
3995
4564
|
labelGap: number;
|
|
3996
4565
|
textGap: number;
|
|
3997
|
-
borderRadius:
|
|
4566
|
+
borderRadius: 4;
|
|
3998
4567
|
} | {
|
|
3999
4568
|
size: number;
|
|
4000
4569
|
fontSize: number;
|
|
4001
4570
|
descriptionFontSize: number;
|
|
4002
4571
|
labelGap: number;
|
|
4003
4572
|
textGap: number;
|
|
4004
|
-
borderRadius:
|
|
4573
|
+
borderRadius: 4;
|
|
4005
4574
|
} | {
|
|
4006
4575
|
size: number;
|
|
4007
4576
|
fontSize: number;
|
|
4008
4577
|
descriptionFontSize: number;
|
|
4009
4578
|
labelGap: number;
|
|
4010
4579
|
textGap: number;
|
|
4011
|
-
borderRadius:
|
|
4580
|
+
borderRadius: 4;
|
|
4012
4581
|
};
|
|
4013
4582
|
radio: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4014
4583
|
size: number;
|
|
@@ -4053,7 +4622,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4053
4622
|
paddingHorizontal: number;
|
|
4054
4623
|
fontSize: number;
|
|
4055
4624
|
iconSize: number;
|
|
4056
|
-
radius:
|
|
4625
|
+
radius: 8;
|
|
4057
4626
|
borderWidth: number;
|
|
4058
4627
|
fieldGap: number;
|
|
4059
4628
|
lineHeight: number;
|
|
@@ -4063,7 +4632,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4063
4632
|
paddingHorizontal: number;
|
|
4064
4633
|
fontSize: number;
|
|
4065
4634
|
iconSize: number;
|
|
4066
|
-
radius:
|
|
4635
|
+
radius: 8;
|
|
4067
4636
|
borderWidth: number;
|
|
4068
4637
|
fieldGap: number;
|
|
4069
4638
|
lineHeight: number;
|
|
@@ -4073,7 +4642,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4073
4642
|
paddingHorizontal: number;
|
|
4074
4643
|
fontSize: number;
|
|
4075
4644
|
iconSize: number;
|
|
4076
|
-
radius:
|
|
4645
|
+
radius: 8;
|
|
4077
4646
|
borderWidth: number;
|
|
4078
4647
|
fieldGap: number;
|
|
4079
4648
|
lineHeight: number;
|
|
@@ -4083,7 +4652,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4083
4652
|
paddingHorizontal: number;
|
|
4084
4653
|
fontSize: number;
|
|
4085
4654
|
iconSize: number;
|
|
4086
|
-
radius:
|
|
4655
|
+
radius: 4;
|
|
4087
4656
|
borderWidth: number;
|
|
4088
4657
|
fieldGap: number;
|
|
4089
4658
|
lineHeight: number;
|
|
@@ -4093,7 +4662,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4093
4662
|
paddingHorizontal: number;
|
|
4094
4663
|
fontSize: number;
|
|
4095
4664
|
iconSize: number;
|
|
4096
|
-
radius:
|
|
4665
|
+
radius: 4;
|
|
4097
4666
|
borderWidth: number;
|
|
4098
4667
|
fieldGap: number;
|
|
4099
4668
|
lineHeight: number;
|
|
@@ -4110,7 +4679,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4110
4679
|
errorFontSize: number;
|
|
4111
4680
|
errorLineHeight: number;
|
|
4112
4681
|
errorGap: number;
|
|
4113
|
-
radius:
|
|
4682
|
+
radius: 8;
|
|
4114
4683
|
borderWidth: number;
|
|
4115
4684
|
} | {
|
|
4116
4685
|
box: number;
|
|
@@ -4124,7 +4693,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4124
4693
|
errorFontSize: number;
|
|
4125
4694
|
errorLineHeight: number;
|
|
4126
4695
|
errorGap: number;
|
|
4127
|
-
radius:
|
|
4696
|
+
radius: 8;
|
|
4128
4697
|
borderWidth: number;
|
|
4129
4698
|
} | {
|
|
4130
4699
|
box: number;
|
|
@@ -4138,7 +4707,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4138
4707
|
errorFontSize: number;
|
|
4139
4708
|
errorLineHeight: number;
|
|
4140
4709
|
errorGap: number;
|
|
4141
|
-
radius:
|
|
4710
|
+
radius: 8;
|
|
4142
4711
|
borderWidth: number;
|
|
4143
4712
|
} | {
|
|
4144
4713
|
box: number;
|
|
@@ -4152,7 +4721,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4152
4721
|
errorFontSize: number;
|
|
4153
4722
|
errorLineHeight: number;
|
|
4154
4723
|
errorGap: number;
|
|
4155
|
-
radius:
|
|
4724
|
+
radius: 4;
|
|
4156
4725
|
borderWidth: number;
|
|
4157
4726
|
} | {
|
|
4158
4727
|
box: number;
|
|
@@ -4166,42 +4735,42 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4166
4735
|
errorFontSize: number;
|
|
4167
4736
|
errorLineHeight: number;
|
|
4168
4737
|
errorGap: number;
|
|
4169
|
-
radius:
|
|
4738
|
+
radius: 4;
|
|
4170
4739
|
borderWidth: number;
|
|
4171
4740
|
};
|
|
4172
4741
|
inputPin: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
4173
4742
|
size: number;
|
|
4174
4743
|
gap: number;
|
|
4175
4744
|
fontSize: number;
|
|
4176
|
-
radius:
|
|
4745
|
+
radius: 8;
|
|
4177
4746
|
borderWidth: number;
|
|
4178
4747
|
fieldGap: number;
|
|
4179
4748
|
} | {
|
|
4180
4749
|
size: number;
|
|
4181
4750
|
gap: number;
|
|
4182
4751
|
fontSize: number;
|
|
4183
|
-
radius:
|
|
4752
|
+
radius: 8;
|
|
4184
4753
|
borderWidth: number;
|
|
4185
4754
|
fieldGap: number;
|
|
4186
4755
|
} | {
|
|
4187
4756
|
size: number;
|
|
4188
4757
|
gap: number;
|
|
4189
4758
|
fontSize: number;
|
|
4190
|
-
radius:
|
|
4759
|
+
radius: 8;
|
|
4191
4760
|
borderWidth: number;
|
|
4192
4761
|
fieldGap: number;
|
|
4193
4762
|
} | {
|
|
4194
4763
|
size: number;
|
|
4195
4764
|
gap: number;
|
|
4196
4765
|
fontSize: number;
|
|
4197
|
-
radius:
|
|
4766
|
+
radius: 4;
|
|
4198
4767
|
borderWidth: number;
|
|
4199
4768
|
fieldGap: number;
|
|
4200
4769
|
} | {
|
|
4201
4770
|
size: number;
|
|
4202
4771
|
gap: number;
|
|
4203
4772
|
fontSize: number;
|
|
4204
|
-
radius:
|
|
4773
|
+
radius: 4;
|
|
4205
4774
|
borderWidth: number;
|
|
4206
4775
|
fieldGap: number;
|
|
4207
4776
|
};
|
|
@@ -4210,31 +4779,31 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4210
4779
|
padding: number;
|
|
4211
4780
|
fontSize: number;
|
|
4212
4781
|
iconSize: number;
|
|
4213
|
-
radius:
|
|
4782
|
+
radius: 8;
|
|
4214
4783
|
} | {
|
|
4215
4784
|
height: number;
|
|
4216
4785
|
padding: number;
|
|
4217
4786
|
fontSize: number;
|
|
4218
4787
|
iconSize: number;
|
|
4219
|
-
radius:
|
|
4788
|
+
radius: 8;
|
|
4220
4789
|
} | {
|
|
4221
4790
|
height: number;
|
|
4222
4791
|
padding: number;
|
|
4223
4792
|
fontSize: number;
|
|
4224
4793
|
iconSize: number;
|
|
4225
|
-
radius:
|
|
4794
|
+
radius: 8;
|
|
4226
4795
|
} | {
|
|
4227
4796
|
height: number;
|
|
4228
4797
|
padding: number;
|
|
4229
4798
|
fontSize: number;
|
|
4230
4799
|
iconSize: number;
|
|
4231
|
-
radius:
|
|
4800
|
+
radius: 4;
|
|
4232
4801
|
} | {
|
|
4233
4802
|
height: number;
|
|
4234
4803
|
padding: number;
|
|
4235
4804
|
fontSize: number;
|
|
4236
4805
|
iconSize: number;
|
|
4237
|
-
radius:
|
|
4806
|
+
radius: 4;
|
|
4238
4807
|
};
|
|
4239
4808
|
switch: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4240
4809
|
width: number;
|
|
@@ -4246,8 +4815,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4246
4815
|
descriptionLineHeight: number;
|
|
4247
4816
|
labelGap: number;
|
|
4248
4817
|
textGap: number;
|
|
4249
|
-
frameBorderRadius:
|
|
4250
|
-
knobBorderRadius:
|
|
4818
|
+
frameBorderRadius: 4;
|
|
4819
|
+
knobBorderRadius: 2;
|
|
4251
4820
|
} | {
|
|
4252
4821
|
width: number;
|
|
4253
4822
|
height: number;
|
|
@@ -4258,8 +4827,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4258
4827
|
descriptionLineHeight: number;
|
|
4259
4828
|
labelGap: number;
|
|
4260
4829
|
textGap: number;
|
|
4261
|
-
frameBorderRadius:
|
|
4262
|
-
knobBorderRadius:
|
|
4830
|
+
frameBorderRadius: 4;
|
|
4831
|
+
knobBorderRadius: 2;
|
|
4263
4832
|
} | {
|
|
4264
4833
|
width: number;
|
|
4265
4834
|
height: number;
|
|
@@ -4270,8 +4839,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4270
4839
|
descriptionLineHeight: number;
|
|
4271
4840
|
labelGap: number;
|
|
4272
4841
|
textGap: number;
|
|
4273
|
-
frameBorderRadius:
|
|
4274
|
-
knobBorderRadius:
|
|
4842
|
+
frameBorderRadius: 4;
|
|
4843
|
+
knobBorderRadius: 2;
|
|
4275
4844
|
} | {
|
|
4276
4845
|
width: number;
|
|
4277
4846
|
height: number;
|
|
@@ -4282,8 +4851,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4282
4851
|
descriptionLineHeight: number;
|
|
4283
4852
|
labelGap: number;
|
|
4284
4853
|
textGap: number;
|
|
4285
|
-
frameBorderRadius:
|
|
4286
|
-
knobBorderRadius:
|
|
4854
|
+
frameBorderRadius: 4;
|
|
4855
|
+
knobBorderRadius: 2;
|
|
4287
4856
|
};
|
|
4288
4857
|
avatar: (size: "xl" | "lg" | "md" | "sm" | "xs" | "xxs") => {
|
|
4289
4858
|
size: number;
|
|
@@ -4298,8 +4867,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4298
4867
|
right: number;
|
|
4299
4868
|
top: number;
|
|
4300
4869
|
};
|
|
4301
|
-
borderRadiusSquare:
|
|
4302
|
-
borderRadiusCircle:
|
|
4870
|
+
borderRadiusSquare: 8;
|
|
4871
|
+
borderRadiusCircle: 999;
|
|
4303
4872
|
} | {
|
|
4304
4873
|
size: number;
|
|
4305
4874
|
fontSize: number;
|
|
@@ -4313,8 +4882,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4313
4882
|
right: number;
|
|
4314
4883
|
top: number;
|
|
4315
4884
|
};
|
|
4316
|
-
borderRadiusSquare:
|
|
4317
|
-
borderRadiusCircle:
|
|
4885
|
+
borderRadiusSquare: 6;
|
|
4886
|
+
borderRadiusCircle: 999;
|
|
4318
4887
|
} | {
|
|
4319
4888
|
size: number;
|
|
4320
4889
|
fontSize: number;
|
|
@@ -4328,8 +4897,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4328
4897
|
right: number;
|
|
4329
4898
|
top: number;
|
|
4330
4899
|
};
|
|
4331
|
-
borderRadiusSquare:
|
|
4332
|
-
borderRadiusCircle:
|
|
4900
|
+
borderRadiusSquare: 6;
|
|
4901
|
+
borderRadiusCircle: 999;
|
|
4333
4902
|
} | {
|
|
4334
4903
|
size: number;
|
|
4335
4904
|
fontSize: number;
|
|
@@ -4343,8 +4912,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4343
4912
|
right: number;
|
|
4344
4913
|
top: number;
|
|
4345
4914
|
};
|
|
4346
|
-
borderRadiusSquare:
|
|
4347
|
-
borderRadiusCircle:
|
|
4915
|
+
borderRadiusSquare: 4;
|
|
4916
|
+
borderRadiusCircle: 999;
|
|
4348
4917
|
} | {
|
|
4349
4918
|
size: number;
|
|
4350
4919
|
fontSize: number;
|
|
@@ -4358,8 +4927,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4358
4927
|
right: number;
|
|
4359
4928
|
top: number;
|
|
4360
4929
|
};
|
|
4361
|
-
borderRadiusSquare:
|
|
4362
|
-
borderRadiusCircle:
|
|
4930
|
+
borderRadiusSquare: 4;
|
|
4931
|
+
borderRadiusCircle: 999;
|
|
4363
4932
|
} | {
|
|
4364
4933
|
size: number;
|
|
4365
4934
|
fontSize: number;
|
|
@@ -4373,8 +4942,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4373
4942
|
right: number;
|
|
4374
4943
|
top: number;
|
|
4375
4944
|
};
|
|
4376
|
-
borderRadiusSquare:
|
|
4377
|
-
borderRadiusCircle:
|
|
4945
|
+
borderRadiusSquare: 2;
|
|
4946
|
+
borderRadiusCircle: 999;
|
|
4378
4947
|
};
|
|
4379
4948
|
tag: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
4380
4949
|
height: number;
|
|
@@ -4383,7 +4952,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4383
4952
|
lineHeight: number;
|
|
4384
4953
|
gap: number;
|
|
4385
4954
|
iconSize: number;
|
|
4386
|
-
radius:
|
|
4955
|
+
radius: 8;
|
|
4387
4956
|
borderWidth: number;
|
|
4388
4957
|
} | {
|
|
4389
4958
|
height: number;
|
|
@@ -4392,7 +4961,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4392
4961
|
lineHeight: number;
|
|
4393
4962
|
gap: number;
|
|
4394
4963
|
iconSize: number;
|
|
4395
|
-
radius:
|
|
4964
|
+
radius: 8;
|
|
4396
4965
|
borderWidth: number;
|
|
4397
4966
|
} | {
|
|
4398
4967
|
height: number;
|
|
@@ -4401,7 +4970,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4401
4970
|
lineHeight: number;
|
|
4402
4971
|
gap: number;
|
|
4403
4972
|
iconSize: number;
|
|
4404
|
-
radius:
|
|
4973
|
+
radius: 6;
|
|
4405
4974
|
borderWidth: number;
|
|
4406
4975
|
} | {
|
|
4407
4976
|
height: number;
|
|
@@ -4410,7 +4979,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4410
4979
|
lineHeight: number;
|
|
4411
4980
|
gap: number;
|
|
4412
4981
|
iconSize: number;
|
|
4413
|
-
radius:
|
|
4982
|
+
radius: 4;
|
|
4414
4983
|
borderWidth: number;
|
|
4415
4984
|
} | {
|
|
4416
4985
|
height: number;
|
|
@@ -4419,7 +4988,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4419
4988
|
lineHeight: number;
|
|
4420
4989
|
gap: number;
|
|
4421
4990
|
iconSize: number;
|
|
4422
|
-
radius:
|
|
4991
|
+
radius: 4;
|
|
4423
4992
|
borderWidth: number;
|
|
4424
4993
|
};
|
|
4425
4994
|
divider: (size: "lg" | "md" | "sm") => {
|
|
@@ -4483,11 +5052,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4483
5052
|
segmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4484
5053
|
height: number;
|
|
4485
5054
|
containerPadding: number;
|
|
4486
|
-
containerRadius:
|
|
5055
|
+
containerRadius: 8;
|
|
4487
5056
|
itemHeight: number;
|
|
4488
5057
|
itemPaddingHorizontal: number;
|
|
4489
5058
|
itemPaddingVertical: number;
|
|
4490
|
-
itemRadius:
|
|
5059
|
+
itemRadius: 4;
|
|
4491
5060
|
fontSize: number;
|
|
4492
5061
|
lineHeight: number;
|
|
4493
5062
|
iconSize: number;
|
|
@@ -4495,11 +5064,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4495
5064
|
} | {
|
|
4496
5065
|
height: number;
|
|
4497
5066
|
containerPadding: number;
|
|
4498
|
-
containerRadius:
|
|
5067
|
+
containerRadius: 8;
|
|
4499
5068
|
itemHeight: number;
|
|
4500
5069
|
itemPaddingHorizontal: number;
|
|
4501
5070
|
itemPaddingVertical: number;
|
|
4502
|
-
itemRadius:
|
|
5071
|
+
itemRadius: 4;
|
|
4503
5072
|
fontSize: number;
|
|
4504
5073
|
lineHeight: number;
|
|
4505
5074
|
iconSize: number;
|
|
@@ -4507,11 +5076,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4507
5076
|
} | {
|
|
4508
5077
|
height: number;
|
|
4509
5078
|
containerPadding: number;
|
|
4510
|
-
containerRadius:
|
|
5079
|
+
containerRadius: 8;
|
|
4511
5080
|
itemHeight: number;
|
|
4512
5081
|
itemPaddingHorizontal: number;
|
|
4513
5082
|
itemPaddingVertical: number;
|
|
4514
|
-
itemRadius:
|
|
5083
|
+
itemRadius: 4;
|
|
4515
5084
|
fontSize: number;
|
|
4516
5085
|
lineHeight: number;
|
|
4517
5086
|
iconSize: number;
|
|
@@ -4519,11 +5088,11 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4519
5088
|
} | {
|
|
4520
5089
|
height: number;
|
|
4521
5090
|
containerPadding: number;
|
|
4522
|
-
containerRadius:
|
|
5091
|
+
containerRadius: 4;
|
|
4523
5092
|
itemHeight: number;
|
|
4524
5093
|
itemPaddingHorizontal: number;
|
|
4525
5094
|
itemPaddingVertical: number;
|
|
4526
|
-
itemRadius:
|
|
5095
|
+
itemRadius: 2;
|
|
4527
5096
|
fontSize: number;
|
|
4528
5097
|
lineHeight: number;
|
|
4529
5098
|
iconSize: number;
|
|
@@ -4532,10 +5101,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4532
5101
|
tabsSegmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
4533
5102
|
height: number;
|
|
4534
5103
|
containerPadding: number;
|
|
4535
|
-
containerRadius: number;
|
|
4536
5104
|
itemPaddingHorizontal: number;
|
|
4537
5105
|
itemPaddingVertical: number;
|
|
4538
|
-
itemRadius: number;
|
|
4539
5106
|
fontSize: number;
|
|
4540
5107
|
lineHeight: number;
|
|
4541
5108
|
iconSize: number;
|
|
@@ -4543,10 +5110,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4543
5110
|
} | {
|
|
4544
5111
|
height: number;
|
|
4545
5112
|
containerPadding: number;
|
|
4546
|
-
containerRadius: number;
|
|
4547
5113
|
itemPaddingHorizontal: number;
|
|
4548
5114
|
itemPaddingVertical: number;
|
|
4549
|
-
itemRadius: number;
|
|
4550
5115
|
fontSize: number;
|
|
4551
5116
|
lineHeight: number;
|
|
4552
5117
|
iconSize: number;
|
|
@@ -4554,10 +5119,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4554
5119
|
} | {
|
|
4555
5120
|
height: number;
|
|
4556
5121
|
containerPadding: number;
|
|
4557
|
-
containerRadius: number;
|
|
4558
5122
|
itemPaddingHorizontal: number;
|
|
4559
5123
|
itemPaddingVertical: number;
|
|
4560
|
-
itemRadius: number;
|
|
4561
5124
|
fontSize: number;
|
|
4562
5125
|
lineHeight: number;
|
|
4563
5126
|
iconSize: number;
|
|
@@ -4565,10 +5128,8 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4565
5128
|
} | {
|
|
4566
5129
|
height: number;
|
|
4567
5130
|
containerPadding: number;
|
|
4568
|
-
containerRadius: number;
|
|
4569
5131
|
itemPaddingHorizontal: number;
|
|
4570
5132
|
itemPaddingVertical: number;
|
|
4571
|
-
itemRadius: number;
|
|
4572
5133
|
fontSize: number;
|
|
4573
5134
|
lineHeight: number;
|
|
4574
5135
|
iconSize: number;
|
|
@@ -4581,7 +5142,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4581
5142
|
fontSize: number;
|
|
4582
5143
|
lineHeight: number;
|
|
4583
5144
|
gap: number;
|
|
4584
|
-
borderRadius:
|
|
5145
|
+
borderRadius: 4;
|
|
4585
5146
|
} | {
|
|
4586
5147
|
height: number;
|
|
4587
5148
|
paddingHorizontal: number;
|
|
@@ -4589,7 +5150,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4589
5150
|
fontSize: number;
|
|
4590
5151
|
lineHeight: number;
|
|
4591
5152
|
gap: number;
|
|
4592
|
-
borderRadius:
|
|
5153
|
+
borderRadius: 4;
|
|
4593
5154
|
} | {
|
|
4594
5155
|
height: number;
|
|
4595
5156
|
paddingHorizontal: number;
|
|
@@ -4597,7 +5158,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4597
5158
|
fontSize: number;
|
|
4598
5159
|
lineHeight: number;
|
|
4599
5160
|
gap: number;
|
|
4600
|
-
borderRadius:
|
|
5161
|
+
borderRadius: 2;
|
|
4601
5162
|
} | {
|
|
4602
5163
|
height: number;
|
|
4603
5164
|
paddingHorizontal: number;
|
|
@@ -4605,7 +5166,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4605
5166
|
fontSize: number;
|
|
4606
5167
|
lineHeight: number;
|
|
4607
5168
|
gap: number;
|
|
4608
|
-
borderRadius:
|
|
5169
|
+
borderRadius: 2;
|
|
4609
5170
|
};
|
|
4610
5171
|
badge: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
4611
5172
|
size: number;
|
|
@@ -4647,7 +5208,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4647
5208
|
messageSize: number;
|
|
4648
5209
|
iconSize: number;
|
|
4649
5210
|
iconWrapperSize: number;
|
|
4650
|
-
radius:
|
|
5211
|
+
radius: 4;
|
|
4651
5212
|
} | {
|
|
4652
5213
|
width: string;
|
|
4653
5214
|
paddingHorizontal: number;
|
|
@@ -4657,13 +5218,13 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4657
5218
|
messageSize: number;
|
|
4658
5219
|
iconSize: number;
|
|
4659
5220
|
iconWrapperSize: number;
|
|
4660
|
-
radius:
|
|
5221
|
+
radius: 8;
|
|
4661
5222
|
};
|
|
4662
5223
|
notificationPanel: () => {
|
|
4663
5224
|
minHeight: number;
|
|
4664
5225
|
iconFrameWidth: number;
|
|
4665
5226
|
iconSize: number;
|
|
4666
|
-
borderRadius:
|
|
5227
|
+
borderRadius: 8;
|
|
4667
5228
|
bodyPaddingHorizontal: number;
|
|
4668
5229
|
bodyPaddingVertical: number;
|
|
4669
5230
|
textGap: number;
|
|
@@ -4857,7 +5418,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4857
5418
|
searchIconSize: number;
|
|
4858
5419
|
};
|
|
4859
5420
|
modal: () => {
|
|
4860
|
-
borderRadius:
|
|
5421
|
+
borderRadius: 8;
|
|
4861
5422
|
headerPadding: number;
|
|
4862
5423
|
contentPadding: number;
|
|
4863
5424
|
headerButtonSize: "xl";
|
|
@@ -4985,7 +5546,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
4985
5546
|
minHeight: number;
|
|
4986
5547
|
paddingHorizontal: number;
|
|
4987
5548
|
paddingVertical: number;
|
|
4988
|
-
borderRadius:
|
|
5549
|
+
borderRadius: 4;
|
|
4989
5550
|
gap: number;
|
|
4990
5551
|
iconSize: number;
|
|
4991
5552
|
closeButtonSize: number;
|
|
@@ -5003,7 +5564,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5003
5564
|
lineHeight: number;
|
|
5004
5565
|
iconSize: number;
|
|
5005
5566
|
gap: number;
|
|
5006
|
-
borderRadius:
|
|
5567
|
+
borderRadius: 8;
|
|
5007
5568
|
itemGap: number;
|
|
5008
5569
|
} | {
|
|
5009
5570
|
height: number;
|
|
@@ -5012,7 +5573,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5012
5573
|
lineHeight: number;
|
|
5013
5574
|
iconSize: number;
|
|
5014
5575
|
gap: number;
|
|
5015
|
-
borderRadius:
|
|
5576
|
+
borderRadius: 8;
|
|
5016
5577
|
itemGap: number;
|
|
5017
5578
|
} | {
|
|
5018
5579
|
height: number;
|
|
@@ -5021,7 +5582,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5021
5582
|
lineHeight: number;
|
|
5022
5583
|
iconSize: number;
|
|
5023
5584
|
gap: number;
|
|
5024
|
-
borderRadius:
|
|
5585
|
+
borderRadius: 6;
|
|
5025
5586
|
itemGap: number;
|
|
5026
5587
|
} | {
|
|
5027
5588
|
height: number;
|
|
@@ -5030,7 +5591,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5030
5591
|
lineHeight: number;
|
|
5031
5592
|
iconSize: number;
|
|
5032
5593
|
gap: number;
|
|
5033
|
-
borderRadius:
|
|
5594
|
+
borderRadius: 4;
|
|
5034
5595
|
itemGap: number;
|
|
5035
5596
|
} | {
|
|
5036
5597
|
height: number;
|
|
@@ -5039,7 +5600,7 @@ declare const themeConfig: (mode?: ThemeMode, productContext?: ProductContext) =
|
|
|
5039
5600
|
lineHeight: number;
|
|
5040
5601
|
iconSize: number;
|
|
5041
5602
|
gap: number;
|
|
5042
|
-
borderRadius:
|
|
5603
|
+
borderRadius: 4;
|
|
5043
5604
|
itemGap: number;
|
|
5044
5605
|
};
|
|
5045
5606
|
table: {
|
|
@@ -6283,16 +6844,282 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6283
6844
|
l: number;
|
|
6284
6845
|
xl: number;
|
|
6285
6846
|
};
|
|
6286
|
-
|
|
6287
|
-
button:
|
|
6288
|
-
|
|
6289
|
-
|
|
6290
|
-
|
|
6291
|
-
|
|
6292
|
-
|
|
6293
|
-
|
|
6294
|
-
|
|
6295
|
-
|
|
6847
|
+
shape: {
|
|
6848
|
+
readonly button: {
|
|
6849
|
+
readonly xl: {
|
|
6850
|
+
readonly borderRadius: 8;
|
|
6851
|
+
readonly borderWidth: 1;
|
|
6852
|
+
};
|
|
6853
|
+
readonly lg: {
|
|
6854
|
+
readonly borderRadius: 8;
|
|
6855
|
+
readonly borderWidth: 1;
|
|
6856
|
+
};
|
|
6857
|
+
readonly md: {
|
|
6858
|
+
readonly borderRadius: 6;
|
|
6859
|
+
readonly borderWidth: 1;
|
|
6860
|
+
};
|
|
6861
|
+
readonly sm: {
|
|
6862
|
+
readonly borderRadius: 4;
|
|
6863
|
+
readonly borderWidth: 1;
|
|
6864
|
+
};
|
|
6865
|
+
readonly xs: {
|
|
6866
|
+
readonly borderRadius: 4;
|
|
6867
|
+
readonly borderWidth: 1;
|
|
6868
|
+
};
|
|
6869
|
+
};
|
|
6870
|
+
readonly checkbox: {
|
|
6871
|
+
readonly xl: {
|
|
6872
|
+
readonly borderRadius: 4;
|
|
6873
|
+
readonly borderWidth: 1;
|
|
6874
|
+
};
|
|
6875
|
+
readonly lg: {
|
|
6876
|
+
readonly borderRadius: 4;
|
|
6877
|
+
readonly borderWidth: 1;
|
|
6878
|
+
};
|
|
6879
|
+
readonly md: {
|
|
6880
|
+
readonly borderRadius: 4;
|
|
6881
|
+
readonly borderWidth: 1;
|
|
6882
|
+
};
|
|
6883
|
+
readonly sm: {
|
|
6884
|
+
readonly borderRadius: 4;
|
|
6885
|
+
readonly borderWidth: 1;
|
|
6886
|
+
};
|
|
6887
|
+
};
|
|
6888
|
+
readonly input: {
|
|
6889
|
+
readonly xl: {
|
|
6890
|
+
readonly borderRadius: 8;
|
|
6891
|
+
readonly borderWidth: 1;
|
|
6892
|
+
};
|
|
6893
|
+
readonly lg: {
|
|
6894
|
+
readonly borderRadius: 8;
|
|
6895
|
+
readonly borderWidth: 1;
|
|
6896
|
+
};
|
|
6897
|
+
readonly md: {
|
|
6898
|
+
readonly borderRadius: 8;
|
|
6899
|
+
readonly borderWidth: 1;
|
|
6900
|
+
};
|
|
6901
|
+
readonly sm: {
|
|
6902
|
+
readonly borderRadius: 4;
|
|
6903
|
+
readonly borderWidth: 1;
|
|
6904
|
+
};
|
|
6905
|
+
readonly xs: {
|
|
6906
|
+
readonly borderRadius: 4;
|
|
6907
|
+
readonly borderWidth: 1;
|
|
6908
|
+
};
|
|
6909
|
+
};
|
|
6910
|
+
readonly segmented: {
|
|
6911
|
+
readonly xl: {
|
|
6912
|
+
readonly borderRadius: 8;
|
|
6913
|
+
readonly borderWidth: 1;
|
|
6914
|
+
};
|
|
6915
|
+
readonly lg: {
|
|
6916
|
+
readonly borderRadius: 8;
|
|
6917
|
+
readonly borderWidth: 1;
|
|
6918
|
+
};
|
|
6919
|
+
readonly md: {
|
|
6920
|
+
readonly borderRadius: 8;
|
|
6921
|
+
readonly borderWidth: 1;
|
|
6922
|
+
};
|
|
6923
|
+
readonly sm: {
|
|
6924
|
+
readonly borderRadius: 4;
|
|
6925
|
+
readonly borderWidth: 1;
|
|
6926
|
+
};
|
|
6927
|
+
};
|
|
6928
|
+
readonly segmentedItem: {
|
|
6929
|
+
readonly xl: {
|
|
6930
|
+
readonly borderRadius: 4;
|
|
6931
|
+
readonly borderWidth: 1;
|
|
6932
|
+
};
|
|
6933
|
+
readonly lg: {
|
|
6934
|
+
readonly borderRadius: 4;
|
|
6935
|
+
readonly borderWidth: 1;
|
|
6936
|
+
};
|
|
6937
|
+
readonly md: {
|
|
6938
|
+
readonly borderRadius: 4;
|
|
6939
|
+
readonly borderWidth: 1;
|
|
6940
|
+
};
|
|
6941
|
+
readonly sm: {
|
|
6942
|
+
readonly borderRadius: 2;
|
|
6943
|
+
readonly borderWidth: 1;
|
|
6944
|
+
};
|
|
6945
|
+
};
|
|
6946
|
+
readonly switch: {
|
|
6947
|
+
readonly xl: {
|
|
6948
|
+
readonly borderRadius: 4;
|
|
6949
|
+
readonly borderWidth: 1;
|
|
6950
|
+
};
|
|
6951
|
+
readonly lg: {
|
|
6952
|
+
readonly borderRadius: 4;
|
|
6953
|
+
readonly borderWidth: 1;
|
|
6954
|
+
};
|
|
6955
|
+
readonly md: {
|
|
6956
|
+
readonly borderRadius: 4;
|
|
6957
|
+
readonly borderWidth: 1;
|
|
6958
|
+
};
|
|
6959
|
+
readonly sm: {
|
|
6960
|
+
readonly borderRadius: 4;
|
|
6961
|
+
readonly borderWidth: 1;
|
|
6962
|
+
};
|
|
6963
|
+
};
|
|
6964
|
+
readonly knob: {
|
|
6965
|
+
readonly xl: {
|
|
6966
|
+
readonly borderRadius: 2;
|
|
6967
|
+
};
|
|
6968
|
+
readonly lg: {
|
|
6969
|
+
readonly borderRadius: 2;
|
|
6970
|
+
};
|
|
6971
|
+
readonly md: {
|
|
6972
|
+
readonly borderRadius: 2;
|
|
6973
|
+
};
|
|
6974
|
+
readonly sm: {
|
|
6975
|
+
readonly borderRadius: 2;
|
|
6976
|
+
};
|
|
6977
|
+
};
|
|
6978
|
+
readonly tabItem: {
|
|
6979
|
+
readonly xl: {
|
|
6980
|
+
readonly borderRadius: 8;
|
|
6981
|
+
};
|
|
6982
|
+
readonly lg: {
|
|
6983
|
+
readonly borderRadius: 8;
|
|
6984
|
+
};
|
|
6985
|
+
readonly md: {
|
|
6986
|
+
readonly borderRadius: 4;
|
|
6987
|
+
};
|
|
6988
|
+
readonly sm: {
|
|
6989
|
+
readonly borderRadius: 4;
|
|
6990
|
+
};
|
|
6991
|
+
};
|
|
6992
|
+
readonly tag: {
|
|
6993
|
+
readonly xl: {
|
|
6994
|
+
readonly borderRadius: 8;
|
|
6995
|
+
readonly borderWidth: 1;
|
|
6996
|
+
};
|
|
6997
|
+
readonly lg: {
|
|
6998
|
+
readonly borderRadius: 8;
|
|
6999
|
+
readonly borderWidth: 1;
|
|
7000
|
+
};
|
|
7001
|
+
readonly md: {
|
|
7002
|
+
readonly borderRadius: 6;
|
|
7003
|
+
readonly borderWidth: 1;
|
|
7004
|
+
};
|
|
7005
|
+
readonly sm: {
|
|
7006
|
+
readonly borderRadius: 4;
|
|
7007
|
+
readonly borderWidth: 1;
|
|
7008
|
+
};
|
|
7009
|
+
readonly xs: {
|
|
7010
|
+
readonly borderRadius: 4;
|
|
7011
|
+
readonly borderWidth: 1;
|
|
7012
|
+
};
|
|
7013
|
+
readonly label: {
|
|
7014
|
+
readonly borderRadius: 0;
|
|
7015
|
+
};
|
|
7016
|
+
};
|
|
7017
|
+
readonly tooltip: {
|
|
7018
|
+
readonly xl: {
|
|
7019
|
+
readonly borderRadius: 8;
|
|
7020
|
+
};
|
|
7021
|
+
readonly lg: {
|
|
7022
|
+
readonly borderRadius: 8;
|
|
7023
|
+
};
|
|
7024
|
+
readonly md: {
|
|
7025
|
+
readonly borderRadius: 8;
|
|
7026
|
+
};
|
|
7027
|
+
readonly sm: {
|
|
7028
|
+
readonly borderRadius: 4;
|
|
7029
|
+
};
|
|
7030
|
+
};
|
|
7031
|
+
readonly radio: {
|
|
7032
|
+
readonly xl: {
|
|
7033
|
+
readonly borderRadius: 999;
|
|
7034
|
+
readonly borderWidth: 1;
|
|
7035
|
+
};
|
|
7036
|
+
readonly lg: {
|
|
7037
|
+
readonly borderRadius: 999;
|
|
7038
|
+
readonly borderWidth: 1;
|
|
7039
|
+
};
|
|
7040
|
+
readonly md: {
|
|
7041
|
+
readonly borderRadius: 999;
|
|
7042
|
+
readonly borderWidth: 1;
|
|
7043
|
+
};
|
|
7044
|
+
readonly sm: {
|
|
7045
|
+
readonly borderRadius: 999;
|
|
7046
|
+
readonly borderWidth: 1;
|
|
7047
|
+
};
|
|
7048
|
+
};
|
|
7049
|
+
readonly contextMenu: {
|
|
7050
|
+
readonly xl: {
|
|
7051
|
+
readonly borderRadius: 8;
|
|
7052
|
+
};
|
|
7053
|
+
readonly lg: {
|
|
7054
|
+
readonly borderRadius: 8;
|
|
7055
|
+
};
|
|
7056
|
+
readonly md: {
|
|
7057
|
+
readonly borderRadius: 8;
|
|
7058
|
+
};
|
|
7059
|
+
readonly sm: {
|
|
7060
|
+
readonly borderRadius: 4;
|
|
7061
|
+
};
|
|
7062
|
+
readonly xs: {
|
|
7063
|
+
readonly borderRadius: 4;
|
|
7064
|
+
};
|
|
7065
|
+
};
|
|
7066
|
+
readonly avatar: {
|
|
7067
|
+
readonly xl: {
|
|
7068
|
+
readonly borderRadius: 8;
|
|
7069
|
+
readonly borderWidth: 2;
|
|
7070
|
+
};
|
|
7071
|
+
readonly lg: {
|
|
7072
|
+
readonly borderRadius: 6;
|
|
7073
|
+
readonly borderWidth: 2;
|
|
7074
|
+
};
|
|
7075
|
+
readonly md: {
|
|
7076
|
+
readonly borderRadius: 6;
|
|
7077
|
+
readonly borderWidth: 2;
|
|
7078
|
+
};
|
|
7079
|
+
readonly sm: {
|
|
7080
|
+
readonly borderRadius: 4;
|
|
7081
|
+
readonly borderWidth: 2;
|
|
7082
|
+
};
|
|
7083
|
+
readonly xs: {
|
|
7084
|
+
readonly borderRadius: 4;
|
|
7085
|
+
readonly borderWidth: 2;
|
|
7086
|
+
};
|
|
7087
|
+
readonly xxs: {
|
|
7088
|
+
readonly borderRadius: 2;
|
|
7089
|
+
readonly borderWidth: 2;
|
|
7090
|
+
};
|
|
7091
|
+
};
|
|
7092
|
+
readonly modal: {
|
|
7093
|
+
readonly borderRadius: 8;
|
|
7094
|
+
};
|
|
7095
|
+
readonly toast: {
|
|
7096
|
+
readonly borderRadius: 4;
|
|
7097
|
+
};
|
|
7098
|
+
readonly toggleButtonGroup: {
|
|
7099
|
+
readonly xl: {
|
|
7100
|
+
readonly borderRadius: 8;
|
|
7101
|
+
readonly borderWidth: 1;
|
|
7102
|
+
};
|
|
7103
|
+
readonly lg: {
|
|
7104
|
+
readonly borderRadius: 8;
|
|
7105
|
+
readonly borderWidth: 1;
|
|
7106
|
+
};
|
|
7107
|
+
readonly md: {
|
|
7108
|
+
readonly borderRadius: 6;
|
|
7109
|
+
readonly borderWidth: 1;
|
|
7110
|
+
};
|
|
7111
|
+
readonly sm: {
|
|
7112
|
+
readonly borderRadius: 4;
|
|
7113
|
+
readonly borderWidth: 1;
|
|
7114
|
+
};
|
|
7115
|
+
readonly xs: {
|
|
7116
|
+
readonly borderRadius: 4;
|
|
7117
|
+
readonly borderWidth: 1;
|
|
7118
|
+
};
|
|
7119
|
+
};
|
|
7120
|
+
readonly tagLabel: {
|
|
7121
|
+
readonly borderRadius: 0;
|
|
7122
|
+
};
|
|
6296
7123
|
};
|
|
6297
7124
|
shadow: {
|
|
6298
7125
|
active: string;
|
|
@@ -6325,7 +7152,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6325
7152
|
iconContainerSize: number;
|
|
6326
7153
|
iconPadding: number;
|
|
6327
7154
|
loadingPadding: number;
|
|
6328
|
-
borderRadius:
|
|
7155
|
+
borderRadius: 8;
|
|
6329
7156
|
labelIconSize: number;
|
|
6330
7157
|
labelIconGap: number;
|
|
6331
7158
|
} | {
|
|
@@ -6338,7 +7165,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6338
7165
|
iconContainerSize: number;
|
|
6339
7166
|
iconPadding: number;
|
|
6340
7167
|
loadingPadding: number;
|
|
6341
|
-
borderRadius:
|
|
7168
|
+
borderRadius: 8;
|
|
6342
7169
|
labelIconSize: number;
|
|
6343
7170
|
labelIconGap: number;
|
|
6344
7171
|
} | {
|
|
@@ -6351,7 +7178,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6351
7178
|
iconContainerSize: number;
|
|
6352
7179
|
iconPadding: number;
|
|
6353
7180
|
loadingPadding: number;
|
|
6354
|
-
borderRadius:
|
|
7181
|
+
borderRadius: 6;
|
|
6355
7182
|
labelIconSize: number;
|
|
6356
7183
|
labelIconGap: number;
|
|
6357
7184
|
} | {
|
|
@@ -6364,7 +7191,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6364
7191
|
iconContainerSize: number;
|
|
6365
7192
|
iconPadding: number;
|
|
6366
7193
|
loadingPadding: number;
|
|
6367
|
-
borderRadius:
|
|
7194
|
+
borderRadius: 4;
|
|
6368
7195
|
labelIconSize: number;
|
|
6369
7196
|
labelIconGap: number;
|
|
6370
7197
|
} | {
|
|
@@ -6377,7 +7204,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6377
7204
|
iconContainerSize: number;
|
|
6378
7205
|
iconPadding: number;
|
|
6379
7206
|
loadingPadding: number;
|
|
6380
|
-
borderRadius:
|
|
7207
|
+
borderRadius: 4;
|
|
6381
7208
|
labelIconSize: number;
|
|
6382
7209
|
labelIconGap: number;
|
|
6383
7210
|
};
|
|
@@ -6387,35 +7214,35 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6387
7214
|
fontSize: number;
|
|
6388
7215
|
spinnerSize: number;
|
|
6389
7216
|
iconSize: number;
|
|
6390
|
-
borderRadius:
|
|
7217
|
+
borderRadius: 4;
|
|
6391
7218
|
} | {
|
|
6392
7219
|
height: number;
|
|
6393
7220
|
padding: number;
|
|
6394
7221
|
fontSize: number;
|
|
6395
7222
|
spinnerSize: number;
|
|
6396
7223
|
iconSize: number;
|
|
6397
|
-
borderRadius:
|
|
7224
|
+
borderRadius: 4;
|
|
6398
7225
|
} | {
|
|
6399
7226
|
height: number;
|
|
6400
7227
|
padding: number;
|
|
6401
7228
|
fontSize: number;
|
|
6402
7229
|
spinnerSize: number;
|
|
6403
7230
|
iconSize: number;
|
|
6404
|
-
borderRadius:
|
|
7231
|
+
borderRadius: 2;
|
|
6405
7232
|
} | {
|
|
6406
7233
|
height: number;
|
|
6407
7234
|
padding: number;
|
|
6408
7235
|
fontSize: number;
|
|
6409
7236
|
spinnerSize: number;
|
|
6410
7237
|
iconSize: number;
|
|
6411
|
-
borderRadius:
|
|
7238
|
+
borderRadius: 2;
|
|
6412
7239
|
} | {
|
|
6413
7240
|
height: number;
|
|
6414
7241
|
padding: number;
|
|
6415
7242
|
fontSize: number;
|
|
6416
7243
|
spinnerSize: number;
|
|
6417
7244
|
iconSize: number;
|
|
6418
|
-
borderRadius:
|
|
7245
|
+
borderRadius: 2;
|
|
6419
7246
|
};
|
|
6420
7247
|
checkbox: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6421
7248
|
size: number;
|
|
@@ -6423,28 +7250,28 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6423
7250
|
descriptionFontSize: number;
|
|
6424
7251
|
labelGap: number;
|
|
6425
7252
|
textGap: number;
|
|
6426
|
-
borderRadius:
|
|
7253
|
+
borderRadius: 4;
|
|
6427
7254
|
} | {
|
|
6428
7255
|
size: number;
|
|
6429
7256
|
fontSize: number;
|
|
6430
7257
|
descriptionFontSize: number;
|
|
6431
7258
|
labelGap: number;
|
|
6432
7259
|
textGap: number;
|
|
6433
|
-
borderRadius:
|
|
7260
|
+
borderRadius: 4;
|
|
6434
7261
|
} | {
|
|
6435
7262
|
size: number;
|
|
6436
7263
|
fontSize: number;
|
|
6437
7264
|
descriptionFontSize: number;
|
|
6438
7265
|
labelGap: number;
|
|
6439
7266
|
textGap: number;
|
|
6440
|
-
borderRadius:
|
|
7267
|
+
borderRadius: 4;
|
|
6441
7268
|
} | {
|
|
6442
7269
|
size: number;
|
|
6443
7270
|
fontSize: number;
|
|
6444
7271
|
descriptionFontSize: number;
|
|
6445
7272
|
labelGap: number;
|
|
6446
7273
|
textGap: number;
|
|
6447
|
-
borderRadius:
|
|
7274
|
+
borderRadius: 4;
|
|
6448
7275
|
};
|
|
6449
7276
|
radio: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6450
7277
|
size: number;
|
|
@@ -6489,7 +7316,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6489
7316
|
paddingHorizontal: number;
|
|
6490
7317
|
fontSize: number;
|
|
6491
7318
|
iconSize: number;
|
|
6492
|
-
radius:
|
|
7319
|
+
radius: 8;
|
|
6493
7320
|
borderWidth: number;
|
|
6494
7321
|
fieldGap: number;
|
|
6495
7322
|
lineHeight: number;
|
|
@@ -6499,7 +7326,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6499
7326
|
paddingHorizontal: number;
|
|
6500
7327
|
fontSize: number;
|
|
6501
7328
|
iconSize: number;
|
|
6502
|
-
radius:
|
|
7329
|
+
radius: 8;
|
|
6503
7330
|
borderWidth: number;
|
|
6504
7331
|
fieldGap: number;
|
|
6505
7332
|
lineHeight: number;
|
|
@@ -6509,7 +7336,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6509
7336
|
paddingHorizontal: number;
|
|
6510
7337
|
fontSize: number;
|
|
6511
7338
|
iconSize: number;
|
|
6512
|
-
radius:
|
|
7339
|
+
radius: 8;
|
|
6513
7340
|
borderWidth: number;
|
|
6514
7341
|
fieldGap: number;
|
|
6515
7342
|
lineHeight: number;
|
|
@@ -6519,7 +7346,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6519
7346
|
paddingHorizontal: number;
|
|
6520
7347
|
fontSize: number;
|
|
6521
7348
|
iconSize: number;
|
|
6522
|
-
radius:
|
|
7349
|
+
radius: 4;
|
|
6523
7350
|
borderWidth: number;
|
|
6524
7351
|
fieldGap: number;
|
|
6525
7352
|
lineHeight: number;
|
|
@@ -6529,7 +7356,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6529
7356
|
paddingHorizontal: number;
|
|
6530
7357
|
fontSize: number;
|
|
6531
7358
|
iconSize: number;
|
|
6532
|
-
radius:
|
|
7359
|
+
radius: 4;
|
|
6533
7360
|
borderWidth: number;
|
|
6534
7361
|
fieldGap: number;
|
|
6535
7362
|
lineHeight: number;
|
|
@@ -6546,7 +7373,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6546
7373
|
errorFontSize: number;
|
|
6547
7374
|
errorLineHeight: number;
|
|
6548
7375
|
errorGap: number;
|
|
6549
|
-
radius:
|
|
7376
|
+
radius: 8;
|
|
6550
7377
|
borderWidth: number;
|
|
6551
7378
|
} | {
|
|
6552
7379
|
box: number;
|
|
@@ -6560,7 +7387,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6560
7387
|
errorFontSize: number;
|
|
6561
7388
|
errorLineHeight: number;
|
|
6562
7389
|
errorGap: number;
|
|
6563
|
-
radius:
|
|
7390
|
+
radius: 8;
|
|
6564
7391
|
borderWidth: number;
|
|
6565
7392
|
} | {
|
|
6566
7393
|
box: number;
|
|
@@ -6574,7 +7401,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6574
7401
|
errorFontSize: number;
|
|
6575
7402
|
errorLineHeight: number;
|
|
6576
7403
|
errorGap: number;
|
|
6577
|
-
radius:
|
|
7404
|
+
radius: 8;
|
|
6578
7405
|
borderWidth: number;
|
|
6579
7406
|
} | {
|
|
6580
7407
|
box: number;
|
|
@@ -6588,7 +7415,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6588
7415
|
errorFontSize: number;
|
|
6589
7416
|
errorLineHeight: number;
|
|
6590
7417
|
errorGap: number;
|
|
6591
|
-
radius:
|
|
7418
|
+
radius: 4;
|
|
6592
7419
|
borderWidth: number;
|
|
6593
7420
|
} | {
|
|
6594
7421
|
box: number;
|
|
@@ -6602,42 +7429,42 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6602
7429
|
errorFontSize: number;
|
|
6603
7430
|
errorLineHeight: number;
|
|
6604
7431
|
errorGap: number;
|
|
6605
|
-
radius:
|
|
7432
|
+
radius: 4;
|
|
6606
7433
|
borderWidth: number;
|
|
6607
7434
|
};
|
|
6608
7435
|
inputPin: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
6609
7436
|
size: number;
|
|
6610
7437
|
gap: number;
|
|
6611
7438
|
fontSize: number;
|
|
6612
|
-
radius:
|
|
7439
|
+
radius: 8;
|
|
6613
7440
|
borderWidth: number;
|
|
6614
7441
|
fieldGap: number;
|
|
6615
7442
|
} | {
|
|
6616
7443
|
size: number;
|
|
6617
7444
|
gap: number;
|
|
6618
7445
|
fontSize: number;
|
|
6619
|
-
radius:
|
|
7446
|
+
radius: 8;
|
|
6620
7447
|
borderWidth: number;
|
|
6621
7448
|
fieldGap: number;
|
|
6622
7449
|
} | {
|
|
6623
7450
|
size: number;
|
|
6624
7451
|
gap: number;
|
|
6625
7452
|
fontSize: number;
|
|
6626
|
-
radius:
|
|
7453
|
+
radius: 8;
|
|
6627
7454
|
borderWidth: number;
|
|
6628
7455
|
fieldGap: number;
|
|
6629
7456
|
} | {
|
|
6630
7457
|
size: number;
|
|
6631
7458
|
gap: number;
|
|
6632
7459
|
fontSize: number;
|
|
6633
|
-
radius:
|
|
7460
|
+
radius: 4;
|
|
6634
7461
|
borderWidth: number;
|
|
6635
7462
|
fieldGap: number;
|
|
6636
7463
|
} | {
|
|
6637
7464
|
size: number;
|
|
6638
7465
|
gap: number;
|
|
6639
7466
|
fontSize: number;
|
|
6640
|
-
radius:
|
|
7467
|
+
radius: 4;
|
|
6641
7468
|
borderWidth: number;
|
|
6642
7469
|
fieldGap: number;
|
|
6643
7470
|
};
|
|
@@ -6646,31 +7473,31 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6646
7473
|
padding: number;
|
|
6647
7474
|
fontSize: number;
|
|
6648
7475
|
iconSize: number;
|
|
6649
|
-
radius:
|
|
7476
|
+
radius: 8;
|
|
6650
7477
|
} | {
|
|
6651
7478
|
height: number;
|
|
6652
7479
|
padding: number;
|
|
6653
7480
|
fontSize: number;
|
|
6654
7481
|
iconSize: number;
|
|
6655
|
-
radius:
|
|
7482
|
+
radius: 8;
|
|
6656
7483
|
} | {
|
|
6657
7484
|
height: number;
|
|
6658
7485
|
padding: number;
|
|
6659
7486
|
fontSize: number;
|
|
6660
7487
|
iconSize: number;
|
|
6661
|
-
radius:
|
|
7488
|
+
radius: 8;
|
|
6662
7489
|
} | {
|
|
6663
7490
|
height: number;
|
|
6664
7491
|
padding: number;
|
|
6665
7492
|
fontSize: number;
|
|
6666
7493
|
iconSize: number;
|
|
6667
|
-
radius:
|
|
7494
|
+
radius: 4;
|
|
6668
7495
|
} | {
|
|
6669
7496
|
height: number;
|
|
6670
7497
|
padding: number;
|
|
6671
7498
|
fontSize: number;
|
|
6672
7499
|
iconSize: number;
|
|
6673
|
-
radius:
|
|
7500
|
+
radius: 4;
|
|
6674
7501
|
};
|
|
6675
7502
|
switch: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6676
7503
|
width: number;
|
|
@@ -6682,8 +7509,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6682
7509
|
descriptionLineHeight: number;
|
|
6683
7510
|
labelGap: number;
|
|
6684
7511
|
textGap: number;
|
|
6685
|
-
frameBorderRadius:
|
|
6686
|
-
knobBorderRadius:
|
|
7512
|
+
frameBorderRadius: 4;
|
|
7513
|
+
knobBorderRadius: 2;
|
|
6687
7514
|
} | {
|
|
6688
7515
|
width: number;
|
|
6689
7516
|
height: number;
|
|
@@ -6694,8 +7521,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6694
7521
|
descriptionLineHeight: number;
|
|
6695
7522
|
labelGap: number;
|
|
6696
7523
|
textGap: number;
|
|
6697
|
-
frameBorderRadius:
|
|
6698
|
-
knobBorderRadius:
|
|
7524
|
+
frameBorderRadius: 4;
|
|
7525
|
+
knobBorderRadius: 2;
|
|
6699
7526
|
} | {
|
|
6700
7527
|
width: number;
|
|
6701
7528
|
height: number;
|
|
@@ -6706,8 +7533,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6706
7533
|
descriptionLineHeight: number;
|
|
6707
7534
|
labelGap: number;
|
|
6708
7535
|
textGap: number;
|
|
6709
|
-
frameBorderRadius:
|
|
6710
|
-
knobBorderRadius:
|
|
7536
|
+
frameBorderRadius: 4;
|
|
7537
|
+
knobBorderRadius: 2;
|
|
6711
7538
|
} | {
|
|
6712
7539
|
width: number;
|
|
6713
7540
|
height: number;
|
|
@@ -6718,8 +7545,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6718
7545
|
descriptionLineHeight: number;
|
|
6719
7546
|
labelGap: number;
|
|
6720
7547
|
textGap: number;
|
|
6721
|
-
frameBorderRadius:
|
|
6722
|
-
knobBorderRadius:
|
|
7548
|
+
frameBorderRadius: 4;
|
|
7549
|
+
knobBorderRadius: 2;
|
|
6723
7550
|
};
|
|
6724
7551
|
avatar: (size: "xl" | "lg" | "md" | "sm" | "xs" | "xxs") => {
|
|
6725
7552
|
size: number;
|
|
@@ -6734,8 +7561,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6734
7561
|
right: number;
|
|
6735
7562
|
top: number;
|
|
6736
7563
|
};
|
|
6737
|
-
borderRadiusSquare:
|
|
6738
|
-
borderRadiusCircle:
|
|
7564
|
+
borderRadiusSquare: 8;
|
|
7565
|
+
borderRadiusCircle: 999;
|
|
6739
7566
|
} | {
|
|
6740
7567
|
size: number;
|
|
6741
7568
|
fontSize: number;
|
|
@@ -6749,8 +7576,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6749
7576
|
right: number;
|
|
6750
7577
|
top: number;
|
|
6751
7578
|
};
|
|
6752
|
-
borderRadiusSquare:
|
|
6753
|
-
borderRadiusCircle:
|
|
7579
|
+
borderRadiusSquare: 6;
|
|
7580
|
+
borderRadiusCircle: 999;
|
|
6754
7581
|
} | {
|
|
6755
7582
|
size: number;
|
|
6756
7583
|
fontSize: number;
|
|
@@ -6764,8 +7591,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6764
7591
|
right: number;
|
|
6765
7592
|
top: number;
|
|
6766
7593
|
};
|
|
6767
|
-
borderRadiusSquare:
|
|
6768
|
-
borderRadiusCircle:
|
|
7594
|
+
borderRadiusSquare: 6;
|
|
7595
|
+
borderRadiusCircle: 999;
|
|
6769
7596
|
} | {
|
|
6770
7597
|
size: number;
|
|
6771
7598
|
fontSize: number;
|
|
@@ -6779,8 +7606,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6779
7606
|
right: number;
|
|
6780
7607
|
top: number;
|
|
6781
7608
|
};
|
|
6782
|
-
borderRadiusSquare:
|
|
6783
|
-
borderRadiusCircle:
|
|
7609
|
+
borderRadiusSquare: 4;
|
|
7610
|
+
borderRadiusCircle: 999;
|
|
6784
7611
|
} | {
|
|
6785
7612
|
size: number;
|
|
6786
7613
|
fontSize: number;
|
|
@@ -6794,8 +7621,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6794
7621
|
right: number;
|
|
6795
7622
|
top: number;
|
|
6796
7623
|
};
|
|
6797
|
-
borderRadiusSquare:
|
|
6798
|
-
borderRadiusCircle:
|
|
7624
|
+
borderRadiusSquare: 4;
|
|
7625
|
+
borderRadiusCircle: 999;
|
|
6799
7626
|
} | {
|
|
6800
7627
|
size: number;
|
|
6801
7628
|
fontSize: number;
|
|
@@ -6809,8 +7636,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6809
7636
|
right: number;
|
|
6810
7637
|
top: number;
|
|
6811
7638
|
};
|
|
6812
|
-
borderRadiusSquare:
|
|
6813
|
-
borderRadiusCircle:
|
|
7639
|
+
borderRadiusSquare: 2;
|
|
7640
|
+
borderRadiusCircle: 999;
|
|
6814
7641
|
};
|
|
6815
7642
|
tag: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
6816
7643
|
height: number;
|
|
@@ -6819,7 +7646,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6819
7646
|
lineHeight: number;
|
|
6820
7647
|
gap: number;
|
|
6821
7648
|
iconSize: number;
|
|
6822
|
-
radius:
|
|
7649
|
+
radius: 8;
|
|
6823
7650
|
borderWidth: number;
|
|
6824
7651
|
} | {
|
|
6825
7652
|
height: number;
|
|
@@ -6828,7 +7655,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6828
7655
|
lineHeight: number;
|
|
6829
7656
|
gap: number;
|
|
6830
7657
|
iconSize: number;
|
|
6831
|
-
radius:
|
|
7658
|
+
radius: 8;
|
|
6832
7659
|
borderWidth: number;
|
|
6833
7660
|
} | {
|
|
6834
7661
|
height: number;
|
|
@@ -6837,7 +7664,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6837
7664
|
lineHeight: number;
|
|
6838
7665
|
gap: number;
|
|
6839
7666
|
iconSize: number;
|
|
6840
|
-
radius:
|
|
7667
|
+
radius: 6;
|
|
6841
7668
|
borderWidth: number;
|
|
6842
7669
|
} | {
|
|
6843
7670
|
height: number;
|
|
@@ -6846,7 +7673,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6846
7673
|
lineHeight: number;
|
|
6847
7674
|
gap: number;
|
|
6848
7675
|
iconSize: number;
|
|
6849
|
-
radius:
|
|
7676
|
+
radius: 4;
|
|
6850
7677
|
borderWidth: number;
|
|
6851
7678
|
} | {
|
|
6852
7679
|
height: number;
|
|
@@ -6855,7 +7682,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6855
7682
|
lineHeight: number;
|
|
6856
7683
|
gap: number;
|
|
6857
7684
|
iconSize: number;
|
|
6858
|
-
radius:
|
|
7685
|
+
radius: 4;
|
|
6859
7686
|
borderWidth: number;
|
|
6860
7687
|
};
|
|
6861
7688
|
divider: (size: "lg" | "md" | "sm") => {
|
|
@@ -6919,11 +7746,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6919
7746
|
segmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6920
7747
|
height: number;
|
|
6921
7748
|
containerPadding: number;
|
|
6922
|
-
containerRadius:
|
|
7749
|
+
containerRadius: 8;
|
|
6923
7750
|
itemHeight: number;
|
|
6924
7751
|
itemPaddingHorizontal: number;
|
|
6925
7752
|
itemPaddingVertical: number;
|
|
6926
|
-
itemRadius:
|
|
7753
|
+
itemRadius: 4;
|
|
6927
7754
|
fontSize: number;
|
|
6928
7755
|
lineHeight: number;
|
|
6929
7756
|
iconSize: number;
|
|
@@ -6931,11 +7758,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6931
7758
|
} | {
|
|
6932
7759
|
height: number;
|
|
6933
7760
|
containerPadding: number;
|
|
6934
|
-
containerRadius:
|
|
7761
|
+
containerRadius: 8;
|
|
6935
7762
|
itemHeight: number;
|
|
6936
7763
|
itemPaddingHorizontal: number;
|
|
6937
7764
|
itemPaddingVertical: number;
|
|
6938
|
-
itemRadius:
|
|
7765
|
+
itemRadius: 4;
|
|
6939
7766
|
fontSize: number;
|
|
6940
7767
|
lineHeight: number;
|
|
6941
7768
|
iconSize: number;
|
|
@@ -6943,11 +7770,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6943
7770
|
} | {
|
|
6944
7771
|
height: number;
|
|
6945
7772
|
containerPadding: number;
|
|
6946
|
-
containerRadius:
|
|
7773
|
+
containerRadius: 8;
|
|
6947
7774
|
itemHeight: number;
|
|
6948
7775
|
itemPaddingHorizontal: number;
|
|
6949
7776
|
itemPaddingVertical: number;
|
|
6950
|
-
itemRadius:
|
|
7777
|
+
itemRadius: 4;
|
|
6951
7778
|
fontSize: number;
|
|
6952
7779
|
lineHeight: number;
|
|
6953
7780
|
iconSize: number;
|
|
@@ -6955,11 +7782,11 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6955
7782
|
} | {
|
|
6956
7783
|
height: number;
|
|
6957
7784
|
containerPadding: number;
|
|
6958
|
-
containerRadius:
|
|
7785
|
+
containerRadius: 4;
|
|
6959
7786
|
itemHeight: number;
|
|
6960
7787
|
itemPaddingHorizontal: number;
|
|
6961
7788
|
itemPaddingVertical: number;
|
|
6962
|
-
itemRadius:
|
|
7789
|
+
itemRadius: 2;
|
|
6963
7790
|
fontSize: number;
|
|
6964
7791
|
lineHeight: number;
|
|
6965
7792
|
iconSize: number;
|
|
@@ -6968,10 +7795,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6968
7795
|
tabsSegmented: (size: "xl" | "lg" | "md" | "sm") => {
|
|
6969
7796
|
height: number;
|
|
6970
7797
|
containerPadding: number;
|
|
6971
|
-
containerRadius: number;
|
|
6972
7798
|
itemPaddingHorizontal: number;
|
|
6973
7799
|
itemPaddingVertical: number;
|
|
6974
|
-
itemRadius: number;
|
|
6975
7800
|
fontSize: number;
|
|
6976
7801
|
lineHeight: number;
|
|
6977
7802
|
iconSize: number;
|
|
@@ -6979,10 +7804,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6979
7804
|
} | {
|
|
6980
7805
|
height: number;
|
|
6981
7806
|
containerPadding: number;
|
|
6982
|
-
containerRadius: number;
|
|
6983
7807
|
itemPaddingHorizontal: number;
|
|
6984
7808
|
itemPaddingVertical: number;
|
|
6985
|
-
itemRadius: number;
|
|
6986
7809
|
fontSize: number;
|
|
6987
7810
|
lineHeight: number;
|
|
6988
7811
|
iconSize: number;
|
|
@@ -6990,10 +7813,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
6990
7813
|
} | {
|
|
6991
7814
|
height: number;
|
|
6992
7815
|
containerPadding: number;
|
|
6993
|
-
containerRadius: number;
|
|
6994
7816
|
itemPaddingHorizontal: number;
|
|
6995
7817
|
itemPaddingVertical: number;
|
|
6996
|
-
itemRadius: number;
|
|
6997
7818
|
fontSize: number;
|
|
6998
7819
|
lineHeight: number;
|
|
6999
7820
|
iconSize: number;
|
|
@@ -7001,10 +7822,8 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7001
7822
|
} | {
|
|
7002
7823
|
height: number;
|
|
7003
7824
|
containerPadding: number;
|
|
7004
|
-
containerRadius: number;
|
|
7005
7825
|
itemPaddingHorizontal: number;
|
|
7006
7826
|
itemPaddingVertical: number;
|
|
7007
|
-
itemRadius: number;
|
|
7008
7827
|
fontSize: number;
|
|
7009
7828
|
lineHeight: number;
|
|
7010
7829
|
iconSize: number;
|
|
@@ -7017,7 +7836,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7017
7836
|
fontSize: number;
|
|
7018
7837
|
lineHeight: number;
|
|
7019
7838
|
gap: number;
|
|
7020
|
-
borderRadius:
|
|
7839
|
+
borderRadius: 4;
|
|
7021
7840
|
} | {
|
|
7022
7841
|
height: number;
|
|
7023
7842
|
paddingHorizontal: number;
|
|
@@ -7025,7 +7844,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7025
7844
|
fontSize: number;
|
|
7026
7845
|
lineHeight: number;
|
|
7027
7846
|
gap: number;
|
|
7028
|
-
borderRadius:
|
|
7847
|
+
borderRadius: 4;
|
|
7029
7848
|
} | {
|
|
7030
7849
|
height: number;
|
|
7031
7850
|
paddingHorizontal: number;
|
|
@@ -7033,7 +7852,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7033
7852
|
fontSize: number;
|
|
7034
7853
|
lineHeight: number;
|
|
7035
7854
|
gap: number;
|
|
7036
|
-
borderRadius:
|
|
7855
|
+
borderRadius: 2;
|
|
7037
7856
|
} | {
|
|
7038
7857
|
height: number;
|
|
7039
7858
|
paddingHorizontal: number;
|
|
@@ -7041,7 +7860,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7041
7860
|
fontSize: number;
|
|
7042
7861
|
lineHeight: number;
|
|
7043
7862
|
gap: number;
|
|
7044
|
-
borderRadius:
|
|
7863
|
+
borderRadius: 2;
|
|
7045
7864
|
};
|
|
7046
7865
|
badge: (size: "xl" | "lg" | "md" | "sm" | "xs") => {
|
|
7047
7866
|
size: number;
|
|
@@ -7083,7 +7902,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7083
7902
|
messageSize: number;
|
|
7084
7903
|
iconSize: number;
|
|
7085
7904
|
iconWrapperSize: number;
|
|
7086
|
-
radius:
|
|
7905
|
+
radius: 4;
|
|
7087
7906
|
} | {
|
|
7088
7907
|
width: string;
|
|
7089
7908
|
paddingHorizontal: number;
|
|
@@ -7093,13 +7912,13 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7093
7912
|
messageSize: number;
|
|
7094
7913
|
iconSize: number;
|
|
7095
7914
|
iconWrapperSize: number;
|
|
7096
|
-
radius:
|
|
7915
|
+
radius: 8;
|
|
7097
7916
|
};
|
|
7098
7917
|
notificationPanel: () => {
|
|
7099
7918
|
minHeight: number;
|
|
7100
7919
|
iconFrameWidth: number;
|
|
7101
7920
|
iconSize: number;
|
|
7102
|
-
borderRadius:
|
|
7921
|
+
borderRadius: 8;
|
|
7103
7922
|
bodyPaddingHorizontal: number;
|
|
7104
7923
|
bodyPaddingVertical: number;
|
|
7105
7924
|
textGap: number;
|
|
@@ -7293,7 +8112,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7293
8112
|
searchIconSize: number;
|
|
7294
8113
|
};
|
|
7295
8114
|
modal: () => {
|
|
7296
|
-
borderRadius:
|
|
8115
|
+
borderRadius: 8;
|
|
7297
8116
|
headerPadding: number;
|
|
7298
8117
|
contentPadding: number;
|
|
7299
8118
|
headerButtonSize: "xl";
|
|
@@ -7421,7 +8240,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7421
8240
|
minHeight: number;
|
|
7422
8241
|
paddingHorizontal: number;
|
|
7423
8242
|
paddingVertical: number;
|
|
7424
|
-
borderRadius:
|
|
8243
|
+
borderRadius: 4;
|
|
7425
8244
|
gap: number;
|
|
7426
8245
|
iconSize: number;
|
|
7427
8246
|
closeButtonSize: number;
|
|
@@ -7439,7 +8258,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7439
8258
|
lineHeight: number;
|
|
7440
8259
|
iconSize: number;
|
|
7441
8260
|
gap: number;
|
|
7442
|
-
borderRadius:
|
|
8261
|
+
borderRadius: 8;
|
|
7443
8262
|
itemGap: number;
|
|
7444
8263
|
} | {
|
|
7445
8264
|
height: number;
|
|
@@ -7448,7 +8267,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7448
8267
|
lineHeight: number;
|
|
7449
8268
|
iconSize: number;
|
|
7450
8269
|
gap: number;
|
|
7451
|
-
borderRadius:
|
|
8270
|
+
borderRadius: 8;
|
|
7452
8271
|
itemGap: number;
|
|
7453
8272
|
} | {
|
|
7454
8273
|
height: number;
|
|
@@ -7457,7 +8276,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7457
8276
|
lineHeight: number;
|
|
7458
8277
|
iconSize: number;
|
|
7459
8278
|
gap: number;
|
|
7460
|
-
borderRadius:
|
|
8279
|
+
borderRadius: 6;
|
|
7461
8280
|
itemGap: number;
|
|
7462
8281
|
} | {
|
|
7463
8282
|
height: number;
|
|
@@ -7466,7 +8285,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7466
8285
|
lineHeight: number;
|
|
7467
8286
|
iconSize: number;
|
|
7468
8287
|
gap: number;
|
|
7469
|
-
borderRadius:
|
|
8288
|
+
borderRadius: 4;
|
|
7470
8289
|
itemGap: number;
|
|
7471
8290
|
} | {
|
|
7472
8291
|
height: number;
|
|
@@ -7475,7 +8294,7 @@ declare const useResolvedTheme: (overrides?: ThemeOverrideProps) => {
|
|
|
7475
8294
|
lineHeight: number;
|
|
7476
8295
|
iconSize: number;
|
|
7477
8296
|
gap: number;
|
|
7478
|
-
borderRadius:
|
|
8297
|
+
borderRadius: 4;
|
|
7479
8298
|
itemGap: number;
|
|
7480
8299
|
};
|
|
7481
8300
|
table: {
|
|
@@ -7516,4 +8335,4 @@ declare const ModalIdContext: React.Context<string | null>;
|
|
|
7516
8335
|
*/
|
|
7517
8336
|
declare const useModalId: () => string | null;
|
|
7518
8337
|
|
|
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 };
|
|
8338
|
+
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 };
|