@plaidev/karte-action-sdk 1.1.241-28708101.49567078 → 1.1.241-28708191.857eef2c
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 +1 -1
- package/dist/hydrate/index.es.js +3 -2
- package/dist/index.es.d.ts +1 -1
- package/dist/index.es.js +3 -2
- package/package.json +1 -1
@@ -2441,7 +2441,7 @@ declare const BUTTON_ICON_ANGLE: {
|
|
2441
2441
|
readonly row: "\u5DE6\u5074";
|
2442
2442
|
readonly "row-reverse": "\u53F3\u5074";
|
2443
2443
|
};
|
2444
|
-
type ButtonProps = CommonProps & {
|
2444
|
+
type ButtonProps = CommonProps & BorderProps & {
|
2445
2445
|
label?: string;
|
2446
2446
|
size?: keyof typeof BUTTON_SIZE;
|
2447
2447
|
theme?: keyof typeof BUTTON_THEME;
|
package/dist/hydrate/index.es.js
CHANGED
@@ -14370,7 +14370,7 @@ function add_css$7(target) {
|
|
14370
14370
|
append_styles(target, "svelte-bo01kn", ".button.svelte-bo01kn{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;cursor:pointer;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.button-icon.svelte-bo01kn{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
|
14371
14371
|
}
|
14372
14372
|
|
14373
|
-
// (
|
14373
|
+
// (45:2) {#if (props.isIcon && props.iconVariant)}
|
14374
14374
|
function create_if_block$4(ctx) {
|
14375
14375
|
let div;
|
14376
14376
|
let icon;
|
@@ -14584,7 +14584,8 @@ function instance$7($$self, $$props, $$invalidate) {
|
|
14584
14584
|
...props.iconAngle
|
14585
14585
|
? { flexDirection: props.iconAngle }
|
14586
14586
|
: {},
|
14587
|
-
...toCssCommon(props)
|
14587
|
+
...toCssCommon(props),
|
14588
|
+
...toCssBorder(props)
|
14588
14589
|
}));
|
14589
14590
|
}
|
14590
14591
|
};
|
package/dist/index.es.d.ts
CHANGED
@@ -2441,7 +2441,7 @@ declare const BUTTON_ICON_ANGLE: {
|
|
2441
2441
|
readonly row: "\u5DE6\u5074";
|
2442
2442
|
readonly "row-reverse": "\u53F3\u5074";
|
2443
2443
|
};
|
2444
|
-
type ButtonProps = CommonProps & {
|
2444
|
+
type ButtonProps = CommonProps & BorderProps & {
|
2445
2445
|
label?: string;
|
2446
2446
|
size?: keyof typeof BUTTON_SIZE;
|
2447
2447
|
theme?: keyof typeof BUTTON_THEME;
|
package/dist/index.es.js
CHANGED
@@ -13356,7 +13356,7 @@ function add_css$7(target) {
|
|
13356
13356
|
append_styles(target, "svelte-bo01kn", ".button.svelte-bo01kn{display:inline-flex;align-content:center;justify-content:center;gap:0.65em;cursor:pointer;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s}.button-icon.svelte-bo01kn{display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em}");
|
13357
13357
|
}
|
13358
13358
|
|
13359
|
-
// (
|
13359
|
+
// (45:2) {#if (props.isIcon && props.iconVariant)}
|
13360
13360
|
function create_if_block$4(ctx) {
|
13361
13361
|
let div;
|
13362
13362
|
let icon;
|
@@ -13540,7 +13540,8 @@ function instance$7($$self, $$props, $$invalidate) {
|
|
13540
13540
|
...props.iconAngle
|
13541
13541
|
? { flexDirection: props.iconAngle }
|
13542
13542
|
: {},
|
13543
|
-
...toCssCommon(props)
|
13543
|
+
...toCssCommon(props),
|
13544
|
+
...toCssBorder(props)
|
13544
13545
|
}));
|
13545
13546
|
}
|
13546
13547
|
};
|