@kanda-libs/ks-component-ts 0.2.477 → 0.2.478

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.
@@ -2572,6 +2572,10 @@ input[type="number"]::-webkit-inner-spin-button,
2572
2572
  padding: 10px;
2573
2573
  }
2574
2574
 
2575
+ .p-5 {
2576
+ padding: 20px;
2577
+ }
2578
+
2575
2579
  .p-8 {
2576
2580
  padding: 32px;
2577
2581
  }
@@ -2636,6 +2640,11 @@ input[type="number"]::-webkit-inner-spin-button,
2636
2640
  padding-right: 32px;
2637
2641
  }
2638
2642
 
2643
+ .px-1 {
2644
+ padding-left: 4px;
2645
+ padding-right: 4px;
2646
+ }
2647
+
2639
2648
  .py-2\.5 {
2640
2649
  padding-top: 10px;
2641
2650
  padding-bottom: 10px;
@@ -2661,11 +2670,6 @@ input[type="number"]::-webkit-inner-spin-button,
2661
2670
  padding-right: 10px;
2662
2671
  }
2663
2672
 
2664
- .px-5 {
2665
- padding-left: 20px;
2666
- padding-right: 20px;
2667
- }
2668
-
2669
2673
  .px-6 {
2670
2674
  padding-left: 24px;
2671
2675
  padding-right: 24px;
@@ -2686,11 +2690,6 @@ input[type="number"]::-webkit-inner-spin-button,
2686
2690
  padding-right: 6px;
2687
2691
  }
2688
2692
 
2689
- .px-1 {
2690
- padding-left: 4px;
2691
- padding-right: 4px;
2692
- }
2693
-
2694
2693
  .py-8 {
2695
2694
  padding-top: 32px;
2696
2695
  padding-bottom: 32px;
package/src/types.d.ts CHANGED
@@ -21,4 +21,5 @@ export interface Theme {
21
21
  helperText: string;
22
22
  };
23
23
  buttonClasses?: string;
24
+ variant?: string;
24
25
  }