@plaidev/karte-action-sdk 1.1.268-29127795.266c63a4 → 1.1.268-29130290.f4c098fe

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.
Files changed (42) hide show
  1. package/dist/components-flex/avatar/types.d.ts +2 -2
  2. package/dist/components-flex/close-button/types.d.ts +4 -4
  3. package/dist/components-flex/image/types.d.ts +2 -2
  4. package/dist/components-flex/layout/types.d.ts +1 -0
  5. package/dist/components-flex/list/types.d.ts +2 -5
  6. package/dist/components-flex/multi-column/types.d.ts +2 -5
  7. package/dist/components-flex/props.d.ts +18 -11
  8. package/dist/components-flex/utils/prop-to-style.d.ts +3 -2
  9. package/dist/components-flex/variants.d.ts +8 -2
  10. package/dist/hydrate/components-flex/avatar/types.d.ts +2 -2
  11. package/dist/hydrate/components-flex/close-button/types.d.ts +4 -4
  12. package/dist/hydrate/components-flex/image/types.d.ts +2 -2
  13. package/dist/hydrate/components-flex/layout/types.d.ts +1 -0
  14. package/dist/hydrate/components-flex/list/types.d.ts +2 -5
  15. package/dist/hydrate/components-flex/multi-column/types.d.ts +2 -5
  16. package/dist/hydrate/components-flex/props.d.ts +18 -11
  17. package/dist/hydrate/components-flex/utils/prop-to-style.d.ts +3 -2
  18. package/dist/hydrate/components-flex/variants.d.ts +8 -2
  19. package/dist/hydrate/index.es.js +304 -181
  20. package/dist/index.es.js +300 -178
  21. package/dist/svelte5/components-flex/avatar/types.d.ts +2 -2
  22. package/dist/svelte5/components-flex/close-button/types.d.ts +4 -4
  23. package/dist/svelte5/components-flex/image/types.d.ts +2 -2
  24. package/dist/svelte5/components-flex/layout/types.d.ts +1 -0
  25. package/dist/svelte5/components-flex/list/types.d.ts +2 -5
  26. package/dist/svelte5/components-flex/multi-column/types.d.ts +2 -5
  27. package/dist/svelte5/components-flex/props.d.ts +18 -11
  28. package/dist/svelte5/components-flex/utils/prop-to-style.d.ts +3 -2
  29. package/dist/svelte5/components-flex/variants.d.ts +8 -2
  30. package/dist/svelte5/hydrate/components-flex/avatar/types.d.ts +2 -2
  31. package/dist/svelte5/hydrate/components-flex/close-button/types.d.ts +4 -4
  32. package/dist/svelte5/hydrate/components-flex/image/types.d.ts +2 -2
  33. package/dist/svelte5/hydrate/components-flex/layout/types.d.ts +1 -0
  34. package/dist/svelte5/hydrate/components-flex/list/types.d.ts +2 -5
  35. package/dist/svelte5/hydrate/components-flex/multi-column/types.d.ts +2 -5
  36. package/dist/svelte5/hydrate/components-flex/props.d.ts +18 -11
  37. package/dist/svelte5/hydrate/components-flex/utils/prop-to-style.d.ts +3 -2
  38. package/dist/svelte5/hydrate/components-flex/variants.d.ts +8 -2
  39. package/dist/svelte5/hydrate/index.es.js +206 -93
  40. package/dist/svelte5/index.es.js +206 -93
  41. package/dist/svelte5/index.front2.es.js +209 -92
  42. package/package.json +1 -1
@@ -3164,6 +3164,52 @@ const SHADOW_VARIANT = {
3164
3164
  }
3165
3165
  };
3166
3166
  const SHADOW_VARIANTS = toVariantArray(SHADOW_VARIANT);
3167
+ const BACKGROUND_COLOR_VARIANT = {
3168
+ base: {
3169
+ name: "ホワイト",
3170
+ getProps: () => ({ backgroundColor: "#FFFFFF" })
3171
+ },
3172
+ dark: {
3173
+ name: "ブラック",
3174
+ getProps: () => ({ backgroundColor: "#000000" })
3175
+ },
3176
+ gray: {
3177
+ name: "グレー",
3178
+ getProps: () => ({ backgroundColor: "#ECECEC" })
3179
+ },
3180
+ brand: {
3181
+ name: "ブランド",
3182
+ getProps: (kit) => ({ backgroundColor: getBrandKit(kit).color_brand })
3183
+ },
3184
+ danger: {
3185
+ name: "デンジャー",
3186
+ getProps: (kit) => ({ backgroundColor: getBrandKit(kit).color_danger })
3187
+ }
3188
+ };
3189
+ const BACKGROUND_COLOR_VARIANTS = toVariantArray(BACKGROUND_COLOR_VARIANT);
3190
+ const BORDER_COLOR_VARIANT = {
3191
+ black: {
3192
+ name: "ブラック",
3193
+ getProps: () => ({ borderColor: "#000000" })
3194
+ },
3195
+ gray: {
3196
+ name: "グレー",
3197
+ getProps: () => ({ borderColor: "#DBDBDB" })
3198
+ },
3199
+ brand: {
3200
+ name: "ブランド",
3201
+ getProps: (kit) => ({ borderColor: getBrandKit(kit).color_brand })
3202
+ },
3203
+ danger: {
3204
+ name: "デンジャー",
3205
+ getProps: (kit) => ({ borderColor: getBrandKit(kit).color_danger })
3206
+ },
3207
+ base: {
3208
+ name: "ホワイト",
3209
+ getProps: () => ({ borderColor: "#FFFFFF" })
3210
+ }
3211
+ };
3212
+ const BORDER_COLOR_VARIANTS = toVariantArray(BORDER_COLOR_VARIANT);
3167
3213
 
3168
3214
  //#endregion
3169
3215
  //#region src/components-flex/utils/prop-to-style.ts
@@ -3180,11 +3226,12 @@ const toCssPosition = (p) => {
3180
3226
  const toCssCommon = (p) => {
3181
3227
  return { ...toCssPosition(p) };
3182
3228
  };
3183
- const toCssBorder = (p) => {
3229
+ const toCssBorder = (p, brandKit) => {
3184
3230
  const borderWidth = p?.borderTopWidth ?? p?.borderRightWidth ?? p?.borderLeftWidth ?? p?.borderBottomWidth ?? null;
3185
3231
  if (borderWidth === null) return {};
3232
+ const variant = BORDER_COLOR_VARIANT[p?.borderColorVariant];
3186
3233
  return {
3187
- borderColor: p?.borderColor,
3234
+ borderColor: p?.borderColor ?? variant?.getProps(brandKit)?.borderColor,
3188
3235
  borderStyle: "solid",
3189
3236
  borderTopWidth: p?.borderTopWidth,
3190
3237
  borderLeftWidth: p?.borderLeftWidth,
@@ -3200,16 +3247,19 @@ const toCssPadding = (p) => {
3200
3247
  paddingBottom: p?.paddingBottom
3201
3248
  };
3202
3249
  };
3203
- const toCssBackground = (p) => {
3250
+ const toCssBackground = (p, brandKit) => {
3204
3251
  const url = p?.backgroundImageUrl;
3252
+ const variant = BACKGROUND_COLOR_VARIANT[p?.backgroundColorVariant];
3205
3253
  return {
3206
- backgroundImage: url ? `url(${url})` : void 0,
3207
- backgroundSize: url ? "cover" : void 0,
3208
- backgroundPositionX: p?.backgroundPositionX ?? "center",
3209
- backgroundPositionY: p?.backgroundPositionY ?? "center",
3210
- backgroundBlendMode: p?.backgroundBlendMode,
3211
- backgroundColor: p?.backgroundBlendColor ?? p?.backgroundColor,
3212
- backgroundRepeat: "no-repeat"
3254
+ backgroundColor: p?.backgroundBlendColor ?? p?.backgroundColor ?? variant?.getProps(brandKit)?.backgroundColor,
3255
+ ...url ? {
3256
+ backgroundSize: url ? "cover" : void 0,
3257
+ backgroundImage: url ? `url(${url})` : void 0,
3258
+ backgroundPositionX: p?.backgroundPositionX ?? "center",
3259
+ backgroundPositionY: p?.backgroundPositionY ?? "center",
3260
+ backgroundBlendMode: p?.backgroundBlendMode,
3261
+ backgroundRepeat: "no-repeat"
3262
+ } : {}
3213
3263
  };
3214
3264
  };
3215
3265
  const toCssRadius = (p) => {
@@ -3484,14 +3534,15 @@ const AVATAR_SIZE_STYLES = {
3484
3534
 
3485
3535
  //#endregion
3486
3536
  //#region src/components-flex/avatar/Avatar.svelte
3487
- var root_1$8 = $$55.template(`<img class="avatar-image svelte-3nxn6f">`);
3537
+ var root_1$8 = $$55.template(`<img class="avatar-image svelte-1xhdr99">`);
3488
3538
  const $$css$22 = {
3489
- hash: "svelte-3nxn6f",
3490
- code: ".avatar.svelte-3nxn6f {display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0;border:0;background:none;padding:0;margin:0;text-align:left;-webkit-appearance:none;}"
3539
+ hash: "svelte-1xhdr99",
3540
+ code: ".avatar.svelte-1xhdr99 {display:flex;align-items:center;justify-content:center;overflow:hidden;flex-shrink:0;border:0;background:none;padding:0;margin:0;text-align:left;-webkit-appearance:none;}"
3491
3541
  };
3492
3542
  function Avatar($$anchor, $$props) {
3493
3543
  $$55.push($$props, false);
3494
3544
  $$55.append_styles($$anchor, $$css$22);
3545
+ const styleObj = $$55.mutable_state();
3495
3546
  const style = $$55.mutable_state();
3496
3547
  const imgStyle = $$55.mutable_state();
3497
3548
  let props = $$55.prop($$props, "props", 24, () => ({}));
@@ -3507,20 +3558,36 @@ function Avatar($$anchor, $$props) {
3507
3558
  square: { borderRadius: "0.25em" },
3508
3559
  rounded: { borderRadius: "1em" }
3509
3560
  } };
3510
- $$55.legacy_pre_effect(() => ($$55.deep_read_state(props()), toCssBorder), () => {
3511
- $$55.set(style, objToStyle({
3561
+ const calcImgRadius = (parentRadius, borderWidth) => {
3562
+ const radiusSize = parentRadius ? parseInt(parentRadius) : 0;
3563
+ if (radiusSize === 0) return 0;
3564
+ if (parentRadius === "100%") return "100%";
3565
+ return radiusSize > 0 ? `calc(${parentRadius} - ${borderWidth})` : void 0;
3566
+ };
3567
+ $$55.legacy_pre_effect(() => ($$55.deep_read_state(props()), toCssPadding), () => {
3568
+ $$55.set(styleObj, {
3512
3569
  ...VARIANTS.shape[props().shape ?? "square"],
3513
3570
  width: props().width ?? avatarSizeStyle.width,
3514
3571
  height: props().height ?? avatarSizeStyle.height,
3515
3572
  ...toCssCommon(props()),
3516
- ...toCssBorder(props())
3517
- }));
3573
+ ...toCssBorder(props()),
3574
+ ...toCssPadding(props())
3575
+ });
3518
3576
  });
3519
- $$55.legacy_pre_effect(() => objToStyle, () => {
3577
+ $$55.legacy_pre_effect(() => $$55.get(styleObj), () => {
3578
+ $$55.set(style, objToStyle($$55.get(styleObj)));
3579
+ });
3580
+ $$55.legacy_pre_effect(() => $$55.get(styleObj), () => {
3520
3581
  $$55.set(imgStyle, objToStyle({
3521
3582
  width: "100%",
3522
3583
  height: "100%",
3523
- objectFit: "cover"
3584
+ objectFit: "cover",
3585
+ ...toCssRadius({
3586
+ borderTopLeftRadius: calcImgRadius($$55.get(styleObj).borderRadius, $$55.get(styleObj).borderTopWidth),
3587
+ borderTopRightRadius: calcImgRadius($$55.get(styleObj).borderRadius, $$55.get(styleObj).borderTopWidth),
3588
+ borderBottomLeftRadius: calcImgRadius($$55.get(styleObj).borderRadius, $$55.get(styleObj).borderTopWidth),
3589
+ borderBottomRightRadius: calcImgRadius($$55.get(styleObj).borderRadius, $$55.get(styleObj).borderTopWidth)
3590
+ })
3524
3591
  }));
3525
3592
  });
3526
3593
  $$55.legacy_pre_effect_reset();
@@ -3534,7 +3601,7 @@ function Avatar($$anchor, $$props) {
3534
3601
  class: "avatar",
3535
3602
  style: $$55.get(style),
3536
3603
  "data-layer-id": layerId()
3537
- }, "svelte-3nxn6f"));
3604
+ }, "svelte-1xhdr99"));
3538
3605
  $$55.event("click", $$element, handleClick);
3539
3606
  var img = root_1$8();
3540
3607
  $$55.template_effect(() => {
@@ -4261,11 +4328,11 @@ function darkenColor(color, percent) {
4261
4328
 
4262
4329
  //#endregion
4263
4330
  //#region src/components-flex/button/Button.svelte
4264
- var root_2$4 = $$22.template(`<div class="button-icon svelte-o2gomt"><!></div>`);
4331
+ var root_2$4 = $$22.template(`<div class="button-icon svelte-l0rauj"><!></div>`);
4265
4332
  var root_1$7 = $$22.template(`<!> <span class="button-label"> </span>`, 1);
4266
4333
  const $$css$20 = {
4267
- hash: "svelte-o2gomt",
4268
- code: ".button.svelte-o2gomt {display:inline-flex;gap:0.8em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s, border-color 0.12s, color 0.12s;cursor:pointer;color:var(--color);border-color:var(--border-color);background-color:var(--bg-color);}.button.svelte-o2gomt:hover {background-color:var(--hover-bg-color);border-color:var(--hover-border-color);}.button-icon.svelte-o2gomt {display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em;}"
4334
+ hash: "svelte-l0rauj",
4335
+ code: ".button.svelte-l0rauj {display:inline-flex;gap:0.8em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s;cursor:pointer;color:var(--color);border-color:var(--border-color);background-color:var(--bg-color);}.button.svelte-l0rauj:hover {background-color:var(--hover-bg-color);border-color:var(--hover-border-color);}.button-icon.svelte-l0rauj {display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em;}"
4269
4336
  };
4270
4337
  function Button($$anchor, $$props) {
4271
4338
  $$22.push($$props, false);
@@ -4349,7 +4416,7 @@ function Button($$anchor, $$props) {
4349
4416
  style: $$22.get(style),
4350
4417
  "data-layer-id": layerId(),
4351
4418
  "data-variant": variant
4352
- }, "svelte-o2gomt"));
4419
+ }, "svelte-l0rauj"));
4353
4420
  $$22.event("click", $$element, handleClick);
4354
4421
  var fragment_1 = root_1$7();
4355
4422
  var node_1 = $$22.first_child(fragment_1);
@@ -4478,11 +4545,11 @@ const BUTTON_OUTLINED_WRAP_STYLES = {
4478
4545
 
4479
4546
  //#endregion
4480
4547
  //#region src/components-flex/button-outlined/ButtonOutlined.svelte
4481
- var root_2$3 = $$21.template(`<div class="button-outlined-icon svelte-38fju1"><!></div>`);
4482
- var root_1$6 = $$21.template(`<!> <span class="button-outlined-label svelte-38fju1"> </span>`, 1);
4548
+ var root_2$3 = $$21.template(`<div class="button-outlined-icon svelte-z8gomx"><!></div>`);
4549
+ var root_1$6 = $$21.template(`<!> <span class="button-outlined-label svelte-z8gomx"> </span>`, 1);
4483
4550
  const $$css$19 = {
4484
- hash: "svelte-38fju1",
4485
- code: ".button-outlined.svelte-38fju1 {display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s, border-color 0.12s, color 0.12s;cursor:pointer;background-color:var(--bg-color);}.button-outlined.svelte-38fju1:hover {background-color:var(--hover-bg-color);}.button-outlined-icon.svelte-38fju1 {display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em;margin-bottom:0.1em;}"
4551
+ hash: "svelte-z8gomx",
4552
+ code: ".button-outlined.svelte-z8gomx {display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border-width:1px;border-style:solid;line-height:1.5;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s;cursor:pointer;background-color:var(--bg-color);}.button-outlined.svelte-z8gomx:hover {background-color:var(--hover-bg-color);}.button-outlined-icon.svelte-z8gomx {display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em;margin-bottom:0.1em;}"
4486
4553
  };
4487
4554
  function ButtonOutlined($$anchor, $$props) {
4488
4555
  $$21.push($$props, false);
@@ -4533,7 +4600,7 @@ function ButtonOutlined($$anchor, $$props) {
4533
4600
  class: "button-outlined",
4534
4601
  style: $$21.get(style),
4535
4602
  "data-layer-id": layerId()
4536
- }, "svelte-38fju1"));
4603
+ }, "svelte-z8gomx"));
4537
4604
  $$21.event("click", $$element, handleClick);
4538
4605
  var fragment_1 = root_1$6();
4539
4606
  var node_1 = $$21.first_child(fragment_1);
@@ -4627,11 +4694,11 @@ const getButtonTextThemeStyles = getPropStyles(callback$2);
4627
4694
 
4628
4695
  //#endregion
4629
4696
  //#region src/components-flex/button-text/ButtonText.svelte
4630
- var root_2$2 = $$20.template(`<div class="button-text-icon svelte-1xgvp8r"><!></div>`);
4631
- var root_1$5 = $$20.template(`<!> <span class="button-text-label svelte-1xgvp8r"> </span>`, 1);
4697
+ var root_2$2 = $$20.template(`<div class="button-text-icon svelte-l90o4j"><!></div>`);
4698
+ var root_1$5 = $$20.template(`<!> <span class="button-text-label svelte-l90o4j"> </span>`, 1);
4632
4699
  const $$css$18 = {
4633
- hash: "svelte-1xgvp8r",
4634
- code: ".button-text.svelte-1xgvp8r {display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border:0;line-height:1.5;transition:background-color 0.12s, border-color 0.12s, color 0.12s;cursor:pointer;background-color:rgba(255, 255, 255, 0);}.button-text.svelte-1xgvp8r:hover {background-color:var(--hover-bg-color);}.button-text-icon.svelte-1xgvp8r {display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em;}"
4700
+ hash: "svelte-l90o4j",
4701
+ code: ".button-text.svelte-l90o4j {display:inline-flex;gap:0.65em;align-items:center;justify-content:center;text-decoration:none;outline:0;border:0;line-height:1.5;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s;cursor:pointer;background-color:rgba(255, 255, 255, 0);}.button-text.svelte-l90o4j:hover {background-color:var(--hover-bg-color);}.button-text-icon.svelte-l90o4j {display:flex;align-items:center;justify-content:center;margin-left:-0.2em;margin-right:-0.2em;}"
4635
4702
  };
4636
4703
  function ButtonText($$anchor, $$props) {
4637
4704
  $$20.push($$props, false);
@@ -4676,7 +4743,7 @@ function ButtonText($$anchor, $$props) {
4676
4743
  class: "button-text",
4677
4744
  style: $$20.get(style),
4678
4745
  "data-layer-id": layerId()
4679
- }, "svelte-1xgvp8r"));
4746
+ }, "svelte-l90o4j"));
4680
4747
  $$20.event("click", $$element, handleClick);
4681
4748
  var fragment_1 = root_1$5();
4682
4749
  var node_1 = $$20.first_child(fragment_1);
@@ -4728,25 +4795,43 @@ const BUTTON_TEXT_THEME = {
4728
4795
  white: "White"
4729
4796
  };
4730
4797
 
4798
+ //#endregion
4799
+ //#region src/components-flex/text/styles.ts
4800
+ const callback$1 = ({ brandKit }) => ({
4801
+ default: { color: brandKit.color_text_primary },
4802
+ gray: { color: brandKit.color_text_secondary },
4803
+ brand: { color: brandKit.color_brand },
4804
+ success: { color: brandKit.color_success },
4805
+ warning: { color: brandKit.color_warning },
4806
+ danger: { color: brandKit.color_danger },
4807
+ info: { color: brandKit.color_info },
4808
+ white: { color: brandKit.color_white }
4809
+ });
4810
+ const getTextThemeStyles = getPropStyles(callback$1);
4811
+
4731
4812
  //#endregion
4732
4813
  //#region src/components-flex/close-button/CloseButton.svelte
4733
4814
  var root_2$1 = $$19.template(`<span></span>`);
4734
- var root_1$4 = $$19.template(`<span><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" style="width: 100%; height: 100%;" class="svelte-3mvsv6"><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"></path></svg></span> <!>`, 1);
4815
+ var root_1$4 = $$19.template(`<span><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" style="width: 100%; height: 100%;" class="svelte-18wmfyq"><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"></path></svg></span> <!>`, 1);
4735
4816
  const $$css$17 = {
4736
- hash: "svelte-3mvsv6",
4737
- code: ".close-button.svelte-3mvsv6 {display:inline-flex;align-items:center;justify-content:center;align-self:center;gap:8px;border-radius:100%;background:none;cursor:pointer;border:0;outline:0;transition:background-color 0.12s, border-color 0.12s, color 0.12s;}.close-button.svelte-3mvsv6 svg:where(.svelte-3mvsv6) {transition:transform 0.12s;}.close-button.svelte-3mvsv6:hover svg:where(.svelte-3mvsv6) {transform:rotate(90deg);}.close-button-order-one.svelte-3mvsv6 {order:1;}.close-button-order-two.svelte-3mvsv6 {order:2;}"
4817
+ hash: "svelte-18wmfyq",
4818
+ code: ".close-button.svelte-18wmfyq {display:inline-flex;align-items:center;justify-content:center;align-self:center;gap:8px;border-radius:100%;background:none;cursor:pointer;border:0;outline:0;flex-shrink:0;transition:background-color 0.12s,\n border-color 0.12s,\n color 0.12s;}.close-button.svelte-18wmfyq svg:where(.svelte-18wmfyq) {transition:transform 0.12s;}.close-button.svelte-18wmfyq:hover svg:where(.svelte-18wmfyq) {transform:rotate(90deg);}.close-button-order-one.svelte-18wmfyq {order:1;}.close-button-order-two.svelte-18wmfyq {order:2;}"
4738
4819
  };
4739
4820
  function CloseButton($$anchor, $$props) {
4740
4821
  $$19.push($$props, false);
4741
4822
  $$19.append_styles($$anchor, $$css$17);
4742
4823
  const hasLabel = $$19.mutable_state();
4824
+ const styleObj = $$19.mutable_state();
4743
4825
  const style = $$19.mutable_state();
4826
+ const borderWidth = $$19.mutable_state();
4827
+ const paddingSize = $$19.mutable_state();
4744
4828
  const labelStyle = $$19.mutable_state();
4745
4829
  const iconStyle = $$19.mutable_state();
4746
4830
  let props = $$19.prop($$props, "props", 24, () => ({}));
4747
4831
  let layerId = $$19.prop($$props, "layerId", 8, "");
4748
4832
  let eventName = $$19.prop($$props, "eventName", 8, "");
4749
4833
  let eventValue = $$19.prop($$props, "eventValue", 8, void 0);
4834
+ const { brandKit } = useBrandKit();
4750
4835
  useInjectCustomizeCss(props());
4751
4836
  const { attributes, element, handleClick } = useClickable_default({
4752
4837
  onClick: {
@@ -4782,34 +4867,54 @@ function CloseButton($$anchor, $$props) {
4782
4867
  }
4783
4868
  };
4784
4869
  const size = props().size ?? 24;
4785
- const color = props().color ?? "#666";
4870
+ const color = props().color ?? getTextThemeStyles(brandKit)[props().colorVariant]?.color ?? "#666";
4786
4871
  const label = props().label;
4787
4872
  const isLeftLabelPlacement = props().labelPlacement === "left";
4788
4873
  $$19.legacy_pre_effect(() => {}, () => {
4789
4874
  $$19.set(hasLabel, label !== void 0 && label !== "");
4790
4875
  });
4791
4876
  $$19.legacy_pre_effect(() => ($$19.deep_read_state(props()), toCssBorder), () => {
4792
- $$19.set(style, objToStyle({
4793
- ...props().bordered && { border: "1px solid #666" },
4794
- height: `${size}px`,
4795
- boxSizing: "border-box",
4877
+ $$19.set(styleObj, {
4878
+ ...props().bordered && {
4879
+ borderTopWidth: "1px",
4880
+ borderLeftWidth: "1px",
4881
+ borderRightWidth: "1px",
4882
+ borderBottomWidth: "1px",
4883
+ borderStyle: "solid",
4884
+ borderColor: "#666666"
4885
+ },
4796
4886
  padding: "6px",
4797
- backgroundColor: props().backgroundColor ?? "transparent",
4887
+ boxSizing: "border-box",
4888
+ backgroundColor: toCssBackground(props(), brandKit)?.backgroundColor ?? "rgba(255,255,255,0)",
4798
4889
  ...VARIANTS.round[props().round ?? "default"],
4890
+ ...toCssPadding(props()),
4799
4891
  ...toCssCommon(props()),
4800
4892
  ...toCssBorder(props())
4801
- }));
4893
+ });
4802
4894
  });
4803
- $$19.legacy_pre_effect(() => $$19.deep_read_state(props()), () => {
4895
+ $$19.legacy_pre_effect(() => $$19.get(styleObj), () => {
4896
+ $$19.set(style, objToStyle($$19.get(styleObj)));
4897
+ });
4898
+ $$19.legacy_pre_effect(() => $$19.get(styleObj), () => {
4899
+ $$19.set(borderWidth, $$19.get(styleObj).borderTopWidth ? parseInt($$19.get(styleObj).borderTopWidth) : 0);
4900
+ });
4901
+ $$19.legacy_pre_effect(() => $$19.get(styleObj), () => {
4902
+ $$19.set(paddingSize, $$19.get(styleObj).paddingTop ? parseInt($$19.get(styleObj).paddingTop) : 6);
4903
+ });
4904
+ $$19.legacy_pre_effect(() => ($$19.deep_read_state(props()), getTextThemeStyles), () => {
4804
4905
  $$19.set(labelStyle, objToStyle({
4805
- color: props().labelColor ?? color,
4906
+ color: props().labelColor ?? getTextThemeStyles(brandKit)[props().labelColorVariant]?.color ?? color,
4806
4907
  fontSize: `${size / 2.1}px`
4807
4908
  }));
4808
4909
  });
4809
- $$19.legacy_pre_effect(() => objToStyle, () => {
4910
+ $$19.legacy_pre_effect(() => ($$19.get(paddingSize), $$19.get(borderWidth)), () => {
4810
4911
  $$19.set(iconStyle, objToStyle({
4811
- width: `${size - 12}px`,
4812
- height: `${size - 12}px`
4912
+ width: `${size - $$19.get(paddingSize) * 2 - $$19.get(borderWidth) * 2}px`,
4913
+ height: `${size - $$19.get(paddingSize) * 2 - $$19.get(borderWidth) * 2}px`,
4914
+ display: "flex",
4915
+ alignItems: "center",
4916
+ justifyContent: "center",
4917
+ flexShrink: 0
4813
4918
  }));
4814
4919
  });
4815
4920
  $$19.legacy_pre_effect_reset();
@@ -4823,7 +4928,7 @@ function CloseButton($$anchor, $$props) {
4823
4928
  class: `close-button ${isLeftLabelPlacement ? "close-button-order-two" : ""}`,
4824
4929
  "data-layer-id": layerId(),
4825
4930
  style: $$19.get(style)
4826
- }, "svelte-3mvsv6"));
4931
+ }, "svelte-18wmfyq"));
4827
4932
  $$19.event("click", $$element, handleClick);
4828
4933
  var fragment_1 = root_1$4();
4829
4934
  var span = $$19.first_child(fragment_1);
@@ -4834,7 +4939,7 @@ function CloseButton($$anchor, $$props) {
4834
4939
  {
4835
4940
  var consequent = ($$anchor$2) => {
4836
4941
  var span_1 = root_2$1();
4837
- $$19.set_class(span_1, 1, `close-button-label ${isLeftLabelPlacement ? "close-button-order-one" : ""}`, "svelte-3mvsv6");
4942
+ $$19.set_class(span_1, 1, `close-button-label ${isLeftLabelPlacement ? "close-button-order-one" : ""}`, "svelte-18wmfyq");
4838
4943
  span_1.textContent = label;
4839
4944
  $$19.template_effect(() => $$19.set_style(span_1, $$19.get(labelStyle)));
4840
4945
  $$19.append($$anchor$2, span_1);
@@ -4911,16 +5016,16 @@ const IMAGE_ROUND_STYLES = {
4911
5016
  borderBottomRightRadius: 0
4912
5017
  },
4913
5018
  rounded: {
4914
- borderTopLeftRadius: "0.4em",
4915
- borderTopRightRadius: "0.4em",
4916
- borderBottomLeftRadius: "0.4em",
4917
- borderBottomRightRadius: "0.4em"
5019
+ borderTopLeftRadius: "8px",
5020
+ borderTopRightRadius: "8px",
5021
+ borderBottomLeftRadius: "8px",
5022
+ borderBottomRightRadius: "8px"
4918
5023
  },
4919
5024
  circle: {
4920
- borderTopLeftRadius: "0.8em",
4921
- borderTopRightRadius: "0.8em",
4922
- borderBottomLeftRadius: "0.8em",
4923
- borderBottomRightRadius: "0.8em"
5025
+ borderTopLeftRadius: "16px",
5026
+ borderTopRightRadius: "16px",
5027
+ borderBottomLeftRadius: "16px",
5028
+ borderBottomRightRadius: "16px"
4924
5029
  }
4925
5030
  };
4926
5031
 
@@ -4934,23 +5039,43 @@ const $$css$16 = {
4934
5039
  function Image($$anchor, $$props) {
4935
5040
  $$18.push($$props, false);
4936
5041
  $$18.append_styles($$anchor, $$css$16);
5042
+ const styleObj = $$18.mutable_state();
4937
5043
  const style = $$18.mutable_state();
5044
+ const imgStyle = $$18.mutable_state();
4938
5045
  let props = $$18.prop($$props, "props", 24, () => ({}));
4939
5046
  let layerId = $$18.prop($$props, "layerId", 8, "");
4940
5047
  useInjectCustomizeCss(props());
4941
5048
  const { attributes, element, handleClick } = useClickable_default(props());
4942
5049
  const aspectVariantStyles = ASPECT_VARIANT[props().aspectVariant]?.getProps();
4943
5050
  const width = props().width ?? "100%";
4944
- $$18.legacy_pre_effect(() => ($$18.deep_read_state(props()), toCssBorder), () => {
4945
- $$18.set(style, objToStyle({
5051
+ const calcImgRadius = (parentRadius, borderWidth) => {
5052
+ const radiusSize = parentRadius ? parseInt(parentRadius) : 0;
5053
+ if (radiusSize === 0) return 0;
5054
+ if (parentRadius === "100%") return "100%";
5055
+ return radiusSize > 0 ? `calc(${parentRadius} - ${borderWidth})` : void 0;
5056
+ };
5057
+ $$18.legacy_pre_effect(() => ($$18.deep_read_state(props()), toCssPadding), () => {
5058
+ $$18.set(styleObj, {
4946
5059
  ...props().borderTopLeftRadius ? toCssRadius(props()) : IMAGE_ROUND_STYLES[props().shape ?? "square"],
4947
5060
  width,
4948
5061
  flexShrink: String(width).indexOf("px") !== -1 ? 0 : 1,
4949
5062
  height: props().height ?? "auto",
4950
5063
  aspectRatio: props().aspect ?? aspectVariantStyles?.aspect,
4951
5064
  ...toCssCommon(props()),
4952
- ...toCssBorder(props())
4953
- }));
5065
+ ...toCssBorder(props()),
5066
+ ...toCssPadding(props())
5067
+ });
5068
+ });
5069
+ $$18.legacy_pre_effect(() => $$18.get(styleObj), () => {
5070
+ $$18.set(style, objToStyle($$18.get(styleObj)));
5071
+ });
5072
+ $$18.legacy_pre_effect(() => $$18.get(styleObj), () => {
5073
+ $$18.set(imgStyle, objToStyle({ ...toCssRadius({
5074
+ borderTopLeftRadius: calcImgRadius($$18.get(styleObj).borderTopLeftRadius, $$18.get(styleObj).borderTopWidth),
5075
+ borderTopRightRadius: calcImgRadius($$18.get(styleObj).borderTopRightRadius, $$18.get(styleObj).borderTopWidth),
5076
+ borderBottomLeftRadius: calcImgRadius($$18.get(styleObj).borderBottomLeftRadius, $$18.get(styleObj).borderTopWidth),
5077
+ borderBottomRightRadius: calcImgRadius($$18.get(styleObj).borderBottomRightRadius, $$18.get(styleObj).borderTopWidth)
5078
+ }) }));
4954
5079
  });
4955
5080
  $$18.legacy_pre_effect_reset();
4956
5081
  $$18.init();
@@ -4969,6 +5094,7 @@ function Image($$anchor, $$props) {
4969
5094
  $$18.template_effect(() => {
4970
5095
  $$18.set_attribute(img, "src", props().image);
4971
5096
  $$18.set_attribute(img, "alt", props().alt);
5097
+ $$18.set_style(img, $$18.get(imgStyle));
4972
5098
  });
4973
5099
  $$18.append($$anchor$1, img);
4974
5100
  });
@@ -4999,8 +5125,8 @@ const IMAGE_ASPECT_VARIANTS = {
4999
5125
  //#endregion
5000
5126
  //#region src/components-flex/layout/Layout.svelte
5001
5127
  const $$css$15 = {
5002
- hash: "svelte-139vx15",
5003
- code: ".layout.svelte-139vx15 {text-decoration:none;color:inherit;}.layout[data-clickable=true].svelte-139vx15 {cursor:pointer;}.layout[data-clickable=true].svelte-139vx15:hover {opacity:0.8;}"
5128
+ hash: "svelte-1o103hp",
5129
+ code: ".layout.svelte-1o103hp {text-decoration:none;color:inherit;}.layout[data-clickable='true'].svelte-1o103hp {cursor:pointer;}.layout[data-clickable='true'].svelte-1o103hp:hover {opacity:0.8;}"
5004
5130
  };
5005
5131
  function Layout($$anchor, $$props) {
5006
5132
  $$17.push($$props, false);
@@ -5008,6 +5134,7 @@ function Layout($$anchor, $$props) {
5008
5134
  const style = $$17.mutable_state();
5009
5135
  let props = $$17.prop($$props, "props", 24, () => ({}));
5010
5136
  let layerId = $$17.prop($$props, "layerId", 8, "");
5137
+ const { brandKit } = useBrandKit();
5011
5138
  useInjectCustomizeCss(props());
5012
5139
  const { attributes, element, handleClick } = useClickable_default(props());
5013
5140
  $$17.legacy_pre_effect(() => ($$17.deep_read_state(props()), toCssBorder), () => {
@@ -5019,13 +5146,14 @@ function Layout($$anchor, $$props) {
5019
5146
  rowGap: props().rowGap ?? props().gap,
5020
5147
  columnGap: props().columnGap ?? props().gap,
5021
5148
  width: props().width,
5149
+ height: props().height,
5022
5150
  ...toCssOverflow(props()),
5023
5151
  ...toCssShadow(props()),
5024
5152
  ...toCssRadius(props()),
5025
- ...toCssBackground(props()),
5153
+ ...toCssBackground(props(), brandKit),
5026
5154
  ...toCssCommon(props()),
5027
5155
  ...toCssPadding(props()),
5028
- ...toCssBorder(props())
5156
+ ...toCssBorder(props(), brandKit)
5029
5157
  }));
5030
5158
  });
5031
5159
  $$17.legacy_pre_effect_reset();
@@ -5039,7 +5167,7 @@ function Layout($$anchor, $$props) {
5039
5167
  class: "layout",
5040
5168
  style: $$17.get(style),
5041
5169
  "data-layer-id": layerId()
5042
- }, "svelte-139vx15"));
5170
+ }, "svelte-1o103hp"));
5043
5171
  $$17.event("click", $$element, handleClick);
5044
5172
  var fragment_1 = $$17.comment();
5045
5173
  var node_1 = $$17.first_child(fragment_1);
@@ -5325,20 +5453,6 @@ function SliderItem($$anchor, $$props) {
5325
5453
  $$15.pop();
5326
5454
  }
5327
5455
 
5328
- //#endregion
5329
- //#region src/components-flex/text/styles.ts
5330
- const callback$1 = ({ brandKit }) => ({
5331
- default: { color: brandKit.color_text_primary },
5332
- gray: { color: brandKit.color_text_secondary },
5333
- brand: { color: brandKit.color_brand },
5334
- success: { color: brandKit.color_success },
5335
- warning: { color: brandKit.color_warning },
5336
- danger: { color: brandKit.color_danger },
5337
- info: { color: brandKit.color_info },
5338
- white: { color: brandKit.color_white }
5339
- });
5340
- const getTextThemeStyles = getPropStyles(callback$1);
5341
-
5342
5456
  //#endregion
5343
5457
  //#region src/components-flex/text/constants.ts
5344
5458
  const TEXT_VARIANTS = { size: {
@@ -6112,11 +6226,9 @@ function List($$anchor, $$props) {
6112
6226
  const style = $$7.mutable_state();
6113
6227
  let layerId = $$7.prop($$props, "layerId", 8);
6114
6228
  let props = $$7.prop($$props, "props", 8);
6229
+ const { brandKit } = useBrandKit();
6115
6230
  useInjectCustomizeCss(props());
6116
6231
  const vars = getVariables();
6117
- console.log(vars);
6118
- console.log(props().actionTableKey);
6119
- console.log(vars[props().actionTableKey]);
6120
6232
  setContext(LIST_ITEM_CONTEXT_KEY, {
6121
6233
  paddingTop: props().itemPaddingTop,
6122
6234
  paddingLeft: props().itemPaddingLeft,
@@ -6124,8 +6236,8 @@ function List($$anchor, $$props) {
6124
6236
  paddingBottom: props().itemPaddingBottom,
6125
6237
  height: props().itemHeight,
6126
6238
  borderTopWidth: props().borderWidth,
6127
- borderTopColor: props().borderColor,
6128
- borderTopStyle: props().borderStyle,
6239
+ borderTopColor: props().borderColor ?? BORDER_COLOR_VARIANT[props().borderColorVariant]?.getProps(brandKit)?.borderColor,
6240
+ borderTopStyle: "solid",
6129
6241
  gap: props().itemGap
6130
6242
  });
6131
6243
  $$7.legacy_pre_effect(() => $$7.deep_read_state(props()), () => {
@@ -6197,6 +6309,7 @@ function MultiColumn($$anchor, $$props) {
6197
6309
  const style = $$6.mutable_state();
6198
6310
  let layerId = $$6.prop($$props, "layerId", 8);
6199
6311
  let props = $$6.prop($$props, "props", 8);
6312
+ const { brandKit } = useBrandKit();
6200
6313
  useInjectCustomizeCss(props());
6201
6314
  let listGap = (() => {
6202
6315
  if (!props().gap) return "0";
@@ -6214,8 +6327,8 @@ function MultiColumn($$anchor, $$props) {
6214
6327
  paddingRight: props().itemPaddingRight,
6215
6328
  paddingBottom: props().itemPaddingBottom,
6216
6329
  borderLeftWidth: props().borderWidth,
6217
- borderLeftColor: props().borderColor,
6218
- borderLeftStyle: props().borderStyle,
6330
+ borderLeftColor: props().borderColor ?? BORDER_COLOR_VARIANT[props().borderColorVariant]?.getProps(brandKit)?.borderColor,
6331
+ borderLeftStyle: props().borderStyle ?? "solid",
6219
6332
  gap: listGap,
6220
6333
  innerGap: props().itemGap
6221
6334
  });
@@ -6584,10 +6697,10 @@ function CountDownValue($$anchor, $$props) {
6584
6697
 
6585
6698
  //#endregion
6586
6699
  //#region src/components-flex/clip-copy/ClipCopy.svelte
6587
- var root = $$1.template(`<div class="clipboard svelte-30zd8m"><button class="clipboard-button svelte-30zd8m"><!></button> <span class="clipboard-tooltip svelte-30zd8m">コピーしました</span></div>`);
6700
+ var root = $$1.template(`<div class="clipboard svelte-orhp4c"><button class="clipboard-button svelte-orhp4c"><!></button> <span class="clipboard-tooltip svelte-orhp4c">コピーしました</span></div>`);
6588
6701
  const $$css = {
6589
- hash: "svelte-30zd8m",
6590
- code: ".clipboard.svelte-30zd8m {position:relative;display:inline-flex;}.clipboard-button.svelte-30zd8m {position:relative;display:inline-flex;align-items:center;white-space:nowrap;gap:12px;background:none;border:0;transition:0.12s;cursor:pointer;}.clipboard-button.svelte-30zd8m:hover {opacity:0.8;}.clipboard-button.svelte-30zd8m:active {opacity:0.6;}.clipboard-tooltip.svelte-30zd8m {position:absolute;top:-8px;left:50%;display:block;transform:translate(-50%, -100%);padding:4px 10px;background-color:#333333;color:#ffffff;font-size:11px;font-weight:bold;border-radius:4px;transition:transform 0.2s ease-out;white-space:nowrap;pointer-events:none;}.clipboard-tooltip.svelte-30zd8m:after {content:'';display:block;position:absolute;bottom:0;left:50%;width:8px;height:8px;background-color:#333333;border-radius:1px;transform:translate(-50%, 40%) rotate(45deg);}.clipboard-tooltip[aria-hidden=\"true\"].svelte-30zd8m {opacity:0;transform:translate(-50%, -80%);}"
6702
+ hash: "svelte-orhp4c",
6703
+ code: ".clipboard.svelte-orhp4c {position:relative;display:inline-flex;}.clipboard-button.svelte-orhp4c {position:relative;display:inline-flex;align-items:center;white-space:nowrap;gap:12px;background:none;border:0;transition:0.12s;cursor:pointer;}.clipboard-button.svelte-orhp4c:hover {opacity:0.8;}.clipboard-button.svelte-orhp4c:active {opacity:0.6;}.clipboard-tooltip.svelte-orhp4c {position:absolute;top:-8px;left:50%;display:block;transform:translate(-50%, -100%);padding:4px 10px;background-color:#333333;color:#ffffff;font-size:11px;font-weight:bold;border-radius:4px;transition:transform 0.2s ease-out;white-space:nowrap;pointer-events:none;}.clipboard-tooltip.svelte-orhp4c:after {content:'';display:block;position:absolute;bottom:0;left:50%;width:8px;height:8px;background-color:#333333;border-radius:1px;transform:translate(-50%, 40%) rotate(45deg);}.clipboard-tooltip[aria-hidden='true'].svelte-orhp4c {opacity:0;transform:translate(-50%, -80%);}"
6591
6704
  };
6592
6705
  function ClipCopy($$anchor, $$props) {
6593
6706
  $$1.push($$props, false);
@@ -6845,6 +6958,10 @@ __export(index_svelte5_exports, {
6845
6958
  AVATAR_SIZE_STYLES: () => AVATAR_SIZE_STYLES,
6846
6959
  Alignments: () => Alignments,
6847
6960
  AnimationStyles: () => AnimationStyles,
6961
+ BACKGROUND_COLOR_VARIANT: () => BACKGROUND_COLOR_VARIANT,
6962
+ BACKGROUND_COLOR_VARIANTS: () => BACKGROUND_COLOR_VARIANTS,
6963
+ BORDER_COLOR_VARIANT: () => BORDER_COLOR_VARIANT,
6964
+ BORDER_COLOR_VARIANTS: () => BORDER_COLOR_VARIANTS,
6848
6965
  BUTTON_ICON_ANGLE: () => BUTTON_ICON_ANGLE,
6849
6966
  BUTTON_LINK_TARGET: () => BUTTON_LINK_TARGET,
6850
6967
  BUTTON_OUTLINED_ROUND_STYLES: () => BUTTON_OUTLINED_ROUND_STYLES,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaidev/karte-action-sdk",
3
- "version": "1.1.268-29127795.266c63a4",
3
+ "version": "1.1.268-29130290.f4c098fe",
4
4
  "author": "Plaid Inc.",
5
5
  "license": "Apache-2.0",
6
6
  "module": "./dist/index.es.js",