@plaidev/karte-action-sdk 1.1.249-28756003.d2de3054 → 1.1.249-28767073.9402c9fc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hydrate/index.es.d.ts +6 -1
- package/dist/hydrate/index.es.js +315 -254
- package/dist/index.es.d.ts +6 -1
- package/dist/index.es.js +304 -254
- package/package.json +1 -1
@@ -2457,9 +2457,13 @@ declare const BUTTON_ICON_ANGLE: {
|
|
2457
2457
|
readonly row: "\u5DE6\u5074";
|
2458
2458
|
readonly "row-reverse": "\u53F3\u5074";
|
2459
2459
|
};
|
2460
|
-
type ButtonProps = CommonProps & ClickableProps & BorderProps & {
|
2460
|
+
type ButtonProps = CommonProps & ClickableProps & ShadowProps & BorderProps & {
|
2461
2461
|
label?: string;
|
2462
2462
|
size?: keyof typeof BUTTON_SIZE;
|
2463
|
+
height?: Properties["height"];
|
2464
|
+
paddingLeft?: Properties["paddingLeft"];
|
2465
|
+
paddingRight?: Properties["paddingRight"];
|
2466
|
+
fontSize?: Properties["fontSize"];
|
2463
2467
|
theme?: keyof typeof BUTTON_THEME;
|
2464
2468
|
round?: keyof typeof BUTTON_ROUND;
|
2465
2469
|
isLink?: boolean;
|
@@ -2586,6 +2590,7 @@ declare const ICON_VARIANTS: {
|
|
2586
2590
|
readonly cart_shopping: typeof IconArrowDown;
|
2587
2591
|
readonly check: typeof IconArrowDown;
|
2588
2592
|
readonly chevrons_right: typeof IconArrowDown;
|
2593
|
+
readonly chevron_right: typeof IconArrowDown;
|
2589
2594
|
readonly circle: typeof IconArrowDown;
|
2590
2595
|
readonly circle_info: typeof IconArrowDown;
|
2591
2596
|
readonly circle_question: typeof IconArrowDown;
|