@plaidev/karte-action-sdk 1.1.270-29289706.9d4a9d322 → 1.1.270-29291355.57078a51c

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.
@@ -1,7 +1,7 @@
1
1
  import type { ButtonProps } from "./button/types.js";
2
2
  import type { AvatarProps } from "./avatar/types.js";
3
3
  import type { LayerLayoutProps } from "./layout/types.js";
4
- import type { ClipboardProps, CloseButtonProps, CountDownProps, IconProps, ImageProps, ListProps, ListItemProps, LayerTextProps } from "../index.svelte5.js";
4
+ import type { ClipboardProps, CloseButtonProps, CountDownProps, IconProps, ImageProps, ListProps, ListItemProps, LayerTextProps, ButtonOutlinedProps, ButtonTextProps, CodeProps, MultiColumnProps, MultiColumnItemProps, SliderProps, SliderItemProps, TextLinkProps, YoutubeProps } from "../index.svelte5.js";
5
5
  type FlexComponentSchemaPropType = "string" | "url" | "number" | "boolean" | "color" | "date_string";
6
6
  type FlexComponentSchemaProp<
7
7
  Props extends Record<string, any>,
@@ -32,5 +32,15 @@ export declare const flexComponentSchemes: {
32
32
  readonly FlexList: FlexComponentSchema<ListProps>;
33
33
  readonly FlexListItem: FlexComponentSchema<ListItemProps>;
34
34
  readonly FlexText: FlexComponentSchema<LayerTextProps>;
35
+ readonly FlexButtonOutlined: FlexComponentSchema<ButtonOutlinedProps>;
36
+ readonly FlexButtonText: FlexComponentSchema<ButtonTextProps>;
37
+ readonly FlexCode: FlexComponentSchema<CodeProps>;
38
+ readonly FlexMultiColumn: FlexComponentSchema<MultiColumnProps>;
39
+ readonly FlexMultiColumnItem: FlexComponentSchema<MultiColumnItemProps>;
40
+ readonly FlexRichText: FlexComponentSchema<LayerTextProps>;
41
+ readonly FlexSlider: FlexComponentSchema<SliderProps>;
42
+ readonly FlexSliderItem: FlexComponentSchema<SliderItemProps>;
43
+ readonly FlexTextLink: FlexComponentSchema<TextLinkProps>;
44
+ readonly FlexYoutube: FlexComponentSchema<YoutubeProps>;
35
45
  };
36
46
  export {};
@@ -1,7 +1,7 @@
1
1
  import type { ButtonProps } from "./button/types.js";
2
2
  import type { AvatarProps } from "./avatar/types.js";
3
3
  import type { LayerLayoutProps } from "./layout/types.js";
4
- import type { ClipboardProps, CloseButtonProps, CountDownProps, IconProps, ImageProps, ListProps, ListItemProps, LayerTextProps } from "../index.svelte5.js";
4
+ import type { ClipboardProps, CloseButtonProps, CountDownProps, IconProps, ImageProps, ListProps, ListItemProps, LayerTextProps, ButtonOutlinedProps, ButtonTextProps, CodeProps, MultiColumnProps, MultiColumnItemProps, SliderProps, SliderItemProps, TextLinkProps, YoutubeProps } from "../index.svelte5.js";
5
5
  type FlexComponentSchemaPropType = "string" | "url" | "number" | "boolean" | "color" | "date_string";
6
6
  type FlexComponentSchemaProp<
7
7
  Props extends Record<string, any>,
@@ -32,5 +32,15 @@ export declare const flexComponentSchemes: {
32
32
  readonly FlexList: FlexComponentSchema<ListProps>;
33
33
  readonly FlexListItem: FlexComponentSchema<ListItemProps>;
34
34
  readonly FlexText: FlexComponentSchema<LayerTextProps>;
35
+ readonly FlexButtonOutlined: FlexComponentSchema<ButtonOutlinedProps>;
36
+ readonly FlexButtonText: FlexComponentSchema<ButtonTextProps>;
37
+ readonly FlexCode: FlexComponentSchema<CodeProps>;
38
+ readonly FlexMultiColumn: FlexComponentSchema<MultiColumnProps>;
39
+ readonly FlexMultiColumnItem: FlexComponentSchema<MultiColumnItemProps>;
40
+ readonly FlexRichText: FlexComponentSchema<LayerTextProps>;
41
+ readonly FlexSlider: FlexComponentSchema<SliderProps>;
42
+ readonly FlexSliderItem: FlexComponentSchema<SliderItemProps>;
43
+ readonly FlexTextLink: FlexComponentSchema<TextLinkProps>;
44
+ readonly FlexYoutube: FlexComponentSchema<YoutubeProps>;
35
45
  };
36
46
  export {};
@@ -21671,6 +21671,11 @@ const borderProps = [
21671
21671
  createProp("borderBottomWidth", "string"),
21672
21672
  createProp("borderColor", "color")
21673
21673
  ];
21674
+ const borderSingleProps = [
21675
+ createProp("borderWidth", "string"),
21676
+ createProp("borderStyle", "string"),
21677
+ createProp("borderColor", "color")
21678
+ ];
21674
21679
  const radiusProps = [
21675
21680
  createProp("borderTopLeftRadius", "string"),
21676
21681
  createProp("borderTopRightRadius", "string"),
@@ -21685,6 +21690,11 @@ const paddingProps = [
21685
21690
  ];
21686
21691
  const backgroundColorProps = [createProp("backgroundColor", "string")];
21687
21692
  const backgroundImageProps = [createProp("backgroundImageUrl", "url")];
21693
+ const linkProps = [
21694
+ createProp("isLink", "boolean", [], 90),
21695
+ createProp("linkUrl", "url", [], 95),
21696
+ createProp("linkTarget", "string", byObj(BUTTON_LINK_TARGET), 80)
21697
+ ];
21688
21698
  const flexComponentSchemes = {
21689
21699
  FlexAvatar: { props: [
21690
21700
  createProp("size", "string", byObj(AVATAR_SIZE), 10),
@@ -21807,6 +21817,124 @@ const flexComponentSchemes = {
21807
21817
  createProp("width", "string", [], 10),
21808
21818
  createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
21809
21819
  createProp("fontFamily", "string", [])
21820
+ ] },
21821
+ FlexButtonOutlined: { props: [
21822
+ createProp("label", "string", [], 99),
21823
+ createProp("size", "string", byObj(BUTTON_SIZE), 50),
21824
+ createProp("theme", "string", byObj(BUTTON_THEME), 50),
21825
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
21826
+ createProp("wrap", "string", ["wrap", "nowrap"]),
21827
+ createProp("height", "string"),
21828
+ createProp("width", "string", [], 10),
21829
+ createProp("paddingLeft", "string"),
21830
+ createProp("paddingRight", "string"),
21831
+ createProp("fontSize", "string"),
21832
+ createProp("color", "color", [], 5),
21833
+ createProp("backgroundColor", "color", [], 5),
21834
+ createProp("borderColor", "color", [], 5),
21835
+ createProp("fontWeight", "string", ["normal", "bold"]),
21836
+ ...borderProps,
21837
+ ...radiusProps
21838
+ ] },
21839
+ FlexButtonText: { props: [
21840
+ createProp("label", "string", [], 99),
21841
+ createProp("size", "string", byObj(BUTTON_TEXT_SIZE), 50),
21842
+ createProp("theme", "string", byObj(BUTTON_TEXT_THEME), 50),
21843
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
21844
+ createProp("wrap", "string", ["wrap", "nowrap"]),
21845
+ createProp("height", "string"),
21846
+ createProp("width", "string", [], 10),
21847
+ createProp("paddingLeft", "string"),
21848
+ createProp("paddingRight", "string"),
21849
+ createProp("fontSize", "string"),
21850
+ createProp("color", "color", [], 5),
21851
+ createProp("backgroundColor", "color", [], 5),
21852
+ createProp("fontWeight", "string", ["normal", "bold"]),
21853
+ ...radiusProps
21854
+ ] },
21855
+ FlexCode: { props: [
21856
+ createProp("rawHtml", "string", [], 99),
21857
+ createProp("rawCss", "string", [], 98),
21858
+ createProp("rawScript", "string", [], 97)
21859
+ ] },
21860
+ FlexMultiColumn: { props: [
21861
+ createProp("gap", "string", [], 50),
21862
+ createProp("width", "string", [], 10),
21863
+ createProp("itemPaddingTop", "string", [], 5),
21864
+ createProp("itemPaddingLeft", "string", [], 5),
21865
+ createProp("itemPaddingRight", "string", [], 5),
21866
+ createProp("itemPaddingBottom", "string", [], 5),
21867
+ createProp("itemHeight", "string", [], 5),
21868
+ createProp("itemGap", "string", [], 5),
21869
+ ...borderSingleProps
21870
+ ] },
21871
+ FlexMultiColumnItem: { props: [createProp("gap", "number", [], 10)] },
21872
+ FlexRichText: { props: [
21873
+ createProp("content", "string", [], 99),
21874
+ createProp("theme", "string", byObj(TEXT_THEME), 50),
21875
+ createProp("size", "string", byObj(LAYER_TEXT_SIZE), 50),
21876
+ createProp("align", "string", [
21877
+ "left",
21878
+ "center",
21879
+ "right",
21880
+ "justify"
21881
+ ], 5),
21882
+ createProp("fontStyle", "string", ["normal", "italic"], 5),
21883
+ createProp("fontSize", "string", [], 5),
21884
+ createProp("fontWeight", "string", [
21885
+ "normal",
21886
+ "bold",
21887
+ "100",
21888
+ "200",
21889
+ "300",
21890
+ "400",
21891
+ "500",
21892
+ "600",
21893
+ "700",
21894
+ "800",
21895
+ "900"
21896
+ ], 5),
21897
+ createProp("lineHeight", "string", [], 5),
21898
+ createProp("color", "color", [], 5),
21899
+ createProp("width", "string", [], 10),
21900
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
21901
+ createProp("fontFamily", "string", [], 5)
21902
+ ] },
21903
+ FlexSlider: { props: [
21904
+ createProp("gap", "number", [], 50),
21905
+ createProp("itemWidthPercentage", "number", [], 50),
21906
+ createProp("auto", "boolean"),
21907
+ createProp("loop", "boolean"),
21908
+ createProp("hideIndicator", "boolean"),
21909
+ createProp("interval", "number")
21910
+ ] },
21911
+ FlexSliderItem: { props: [] },
21912
+ FlexTextLink: { props: [
21913
+ createProp("label", "string", [], 99),
21914
+ createProp("size", "string", byObj(TEXT_LINK_SIZE), 50),
21915
+ createProp("theme", "string", byObj(TEXT_LINK_THEME), 50),
21916
+ createProp("underline", "string", byObj(TEXT_LINK_UNDERLINE), 40),
21917
+ createProp("color", "color", [], 5),
21918
+ createProp("lineHeight", "string"),
21919
+ createProp("fontSize", "string"),
21920
+ createProp("fontWeight", "string"),
21921
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
21922
+ createProp("fontFamily", "string"),
21923
+ ...linkProps
21924
+ ] },
21925
+ FlexYoutube: { props: [
21926
+ createProp("videoId", "string", [], 99),
21927
+ createProp("loop", "boolean"),
21928
+ createProp("autoplay", "boolean"),
21929
+ createProp("mute", "boolean"),
21930
+ createProp("controls", "boolean"),
21931
+ createProp("showInfo", "boolean"),
21932
+ createProp("showSubtitle", "boolean"),
21933
+ createProp("showFullScreen", "boolean"),
21934
+ createProp("showRelatedMovies", "boolean"),
21935
+ createProp("shape", "string", byObj(IMAGE_ROUND_SHAPE), 10),
21936
+ createProp("width", "string", [], 10),
21937
+ ...borderProps
21810
21938
  ] }
21811
21939
  };
21812
21940
 
package/dist/index.es.js CHANGED
@@ -19349,6 +19349,11 @@ const borderProps = [
19349
19349
  createProp("borderBottomWidth", "string"),
19350
19350
  createProp("borderColor", "color")
19351
19351
  ];
19352
+ const borderSingleProps = [
19353
+ createProp("borderWidth", "string"),
19354
+ createProp("borderStyle", "string"),
19355
+ createProp("borderColor", "color")
19356
+ ];
19352
19357
  const radiusProps = [
19353
19358
  createProp("borderTopLeftRadius", "string"),
19354
19359
  createProp("borderTopRightRadius", "string"),
@@ -19363,6 +19368,11 @@ const paddingProps = [
19363
19368
  ];
19364
19369
  const backgroundColorProps = [createProp("backgroundColor", "string")];
19365
19370
  const backgroundImageProps = [createProp("backgroundImageUrl", "url")];
19371
+ const linkProps = [
19372
+ createProp("isLink", "boolean", [], 90),
19373
+ createProp("linkUrl", "url", [], 95),
19374
+ createProp("linkTarget", "string", byObj(BUTTON_LINK_TARGET), 80)
19375
+ ];
19366
19376
  const flexComponentSchemes = {
19367
19377
  FlexAvatar: { props: [
19368
19378
  createProp("size", "string", byObj(AVATAR_SIZE), 10),
@@ -19485,6 +19495,124 @@ const flexComponentSchemes = {
19485
19495
  createProp("width", "string", [], 10),
19486
19496
  createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
19487
19497
  createProp("fontFamily", "string", [])
19498
+ ] },
19499
+ FlexButtonOutlined: { props: [
19500
+ createProp("label", "string", [], 99),
19501
+ createProp("size", "string", byObj(BUTTON_SIZE), 50),
19502
+ createProp("theme", "string", byObj(BUTTON_THEME), 50),
19503
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
19504
+ createProp("wrap", "string", ["wrap", "nowrap"]),
19505
+ createProp("height", "string"),
19506
+ createProp("width", "string", [], 10),
19507
+ createProp("paddingLeft", "string"),
19508
+ createProp("paddingRight", "string"),
19509
+ createProp("fontSize", "string"),
19510
+ createProp("color", "color", [], 5),
19511
+ createProp("backgroundColor", "color", [], 5),
19512
+ createProp("borderColor", "color", [], 5),
19513
+ createProp("fontWeight", "string", ["normal", "bold"]),
19514
+ ...borderProps,
19515
+ ...radiusProps
19516
+ ] },
19517
+ FlexButtonText: { props: [
19518
+ createProp("label", "string", [], 99),
19519
+ createProp("size", "string", byObj(BUTTON_TEXT_SIZE), 50),
19520
+ createProp("theme", "string", byObj(BUTTON_TEXT_THEME), 50),
19521
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
19522
+ createProp("wrap", "string", ["wrap", "nowrap"]),
19523
+ createProp("height", "string"),
19524
+ createProp("width", "string", [], 10),
19525
+ createProp("paddingLeft", "string"),
19526
+ createProp("paddingRight", "string"),
19527
+ createProp("fontSize", "string"),
19528
+ createProp("color", "color", [], 5),
19529
+ createProp("backgroundColor", "color", [], 5),
19530
+ createProp("fontWeight", "string", ["normal", "bold"]),
19531
+ ...radiusProps
19532
+ ] },
19533
+ FlexCode: { props: [
19534
+ createProp("rawHtml", "string", [], 99),
19535
+ createProp("rawCss", "string", [], 98),
19536
+ createProp("rawScript", "string", [], 97)
19537
+ ] },
19538
+ FlexMultiColumn: { props: [
19539
+ createProp("gap", "string", [], 50),
19540
+ createProp("width", "string", [], 10),
19541
+ createProp("itemPaddingTop", "string", [], 5),
19542
+ createProp("itemPaddingLeft", "string", [], 5),
19543
+ createProp("itemPaddingRight", "string", [], 5),
19544
+ createProp("itemPaddingBottom", "string", [], 5),
19545
+ createProp("itemHeight", "string", [], 5),
19546
+ createProp("itemGap", "string", [], 5),
19547
+ ...borderSingleProps
19548
+ ] },
19549
+ FlexMultiColumnItem: { props: [createProp("gap", "number", [], 10)] },
19550
+ FlexRichText: { props: [
19551
+ createProp("content", "string", [], 99),
19552
+ createProp("theme", "string", byObj(TEXT_THEME), 50),
19553
+ createProp("size", "string", byObj(LAYER_TEXT_SIZE), 50),
19554
+ createProp("align", "string", [
19555
+ "left",
19556
+ "center",
19557
+ "right",
19558
+ "justify"
19559
+ ], 5),
19560
+ createProp("fontStyle", "string", ["normal", "italic"], 5),
19561
+ createProp("fontSize", "string", [], 5),
19562
+ createProp("fontWeight", "string", [
19563
+ "normal",
19564
+ "bold",
19565
+ "100",
19566
+ "200",
19567
+ "300",
19568
+ "400",
19569
+ "500",
19570
+ "600",
19571
+ "700",
19572
+ "800",
19573
+ "900"
19574
+ ], 5),
19575
+ createProp("lineHeight", "string", [], 5),
19576
+ createProp("color", "color", [], 5),
19577
+ createProp("width", "string", [], 10),
19578
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
19579
+ createProp("fontFamily", "string", [], 5)
19580
+ ] },
19581
+ FlexSlider: { props: [
19582
+ createProp("gap", "number", [], 50),
19583
+ createProp("itemWidthPercentage", "number", [], 50),
19584
+ createProp("auto", "boolean"),
19585
+ createProp("loop", "boolean"),
19586
+ createProp("hideIndicator", "boolean"),
19587
+ createProp("interval", "number")
19588
+ ] },
19589
+ FlexSliderItem: { props: [] },
19590
+ FlexTextLink: { props: [
19591
+ createProp("label", "string", [], 99),
19592
+ createProp("size", "string", byObj(TEXT_LINK_SIZE), 50),
19593
+ createProp("theme", "string", byObj(TEXT_LINK_THEME), 50),
19594
+ createProp("underline", "string", byObj(TEXT_LINK_UNDERLINE), 40),
19595
+ createProp("color", "color", [], 5),
19596
+ createProp("lineHeight", "string"),
19597
+ createProp("fontSize", "string"),
19598
+ createProp("fontWeight", "string"),
19599
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
19600
+ createProp("fontFamily", "string"),
19601
+ ...linkProps
19602
+ ] },
19603
+ FlexYoutube: { props: [
19604
+ createProp("videoId", "string", [], 99),
19605
+ createProp("loop", "boolean"),
19606
+ createProp("autoplay", "boolean"),
19607
+ createProp("mute", "boolean"),
19608
+ createProp("controls", "boolean"),
19609
+ createProp("showInfo", "boolean"),
19610
+ createProp("showSubtitle", "boolean"),
19611
+ createProp("showFullScreen", "boolean"),
19612
+ createProp("showRelatedMovies", "boolean"),
19613
+ createProp("shape", "string", byObj(IMAGE_ROUND_SHAPE), 10),
19614
+ createProp("width", "string", [], 10),
19615
+ ...borderProps
19488
19616
  ] }
19489
19617
  };
19490
19618
 
@@ -1,7 +1,7 @@
1
1
  import type { ButtonProps } from "./button/types.js";
2
2
  import type { AvatarProps } from "./avatar/types.js";
3
3
  import type { LayerLayoutProps } from "./layout/types.js";
4
- import type { ClipboardProps, CloseButtonProps, CountDownProps, IconProps, ImageProps, ListProps, ListItemProps, LayerTextProps } from "../index.svelte5.js";
4
+ import type { ClipboardProps, CloseButtonProps, CountDownProps, IconProps, ImageProps, ListProps, ListItemProps, LayerTextProps, ButtonOutlinedProps, ButtonTextProps, CodeProps, MultiColumnProps, MultiColumnItemProps, SliderProps, SliderItemProps, TextLinkProps, YoutubeProps } from "../index.svelte5.js";
5
5
  type FlexComponentSchemaPropType = "string" | "url" | "number" | "boolean" | "color" | "date_string";
6
6
  type FlexComponentSchemaProp<
7
7
  Props extends Record<string, any>,
@@ -32,5 +32,15 @@ export declare const flexComponentSchemes: {
32
32
  readonly FlexList: FlexComponentSchema<ListProps>;
33
33
  readonly FlexListItem: FlexComponentSchema<ListItemProps>;
34
34
  readonly FlexText: FlexComponentSchema<LayerTextProps>;
35
+ readonly FlexButtonOutlined: FlexComponentSchema<ButtonOutlinedProps>;
36
+ readonly FlexButtonText: FlexComponentSchema<ButtonTextProps>;
37
+ readonly FlexCode: FlexComponentSchema<CodeProps>;
38
+ readonly FlexMultiColumn: FlexComponentSchema<MultiColumnProps>;
39
+ readonly FlexMultiColumnItem: FlexComponentSchema<MultiColumnItemProps>;
40
+ readonly FlexRichText: FlexComponentSchema<LayerTextProps>;
41
+ readonly FlexSlider: FlexComponentSchema<SliderProps>;
42
+ readonly FlexSliderItem: FlexComponentSchema<SliderItemProps>;
43
+ readonly FlexTextLink: FlexComponentSchema<TextLinkProps>;
44
+ readonly FlexYoutube: FlexComponentSchema<YoutubeProps>;
35
45
  };
36
46
  export {};
@@ -1,7 +1,7 @@
1
1
  import type { ButtonProps } from "./button/types.js";
2
2
  import type { AvatarProps } from "./avatar/types.js";
3
3
  import type { LayerLayoutProps } from "./layout/types.js";
4
- import type { ClipboardProps, CloseButtonProps, CountDownProps, IconProps, ImageProps, ListProps, ListItemProps, LayerTextProps } from "../index.svelte5.js";
4
+ import type { ClipboardProps, CloseButtonProps, CountDownProps, IconProps, ImageProps, ListProps, ListItemProps, LayerTextProps, ButtonOutlinedProps, ButtonTextProps, CodeProps, MultiColumnProps, MultiColumnItemProps, SliderProps, SliderItemProps, TextLinkProps, YoutubeProps } from "../index.svelte5.js";
5
5
  type FlexComponentSchemaPropType = "string" | "url" | "number" | "boolean" | "color" | "date_string";
6
6
  type FlexComponentSchemaProp<
7
7
  Props extends Record<string, any>,
@@ -32,5 +32,15 @@ export declare const flexComponentSchemes: {
32
32
  readonly FlexList: FlexComponentSchema<ListProps>;
33
33
  readonly FlexListItem: FlexComponentSchema<ListItemProps>;
34
34
  readonly FlexText: FlexComponentSchema<LayerTextProps>;
35
+ readonly FlexButtonOutlined: FlexComponentSchema<ButtonOutlinedProps>;
36
+ readonly FlexButtonText: FlexComponentSchema<ButtonTextProps>;
37
+ readonly FlexCode: FlexComponentSchema<CodeProps>;
38
+ readonly FlexMultiColumn: FlexComponentSchema<MultiColumnProps>;
39
+ readonly FlexMultiColumnItem: FlexComponentSchema<MultiColumnItemProps>;
40
+ readonly FlexRichText: FlexComponentSchema<LayerTextProps>;
41
+ readonly FlexSlider: FlexComponentSchema<SliderProps>;
42
+ readonly FlexSliderItem: FlexComponentSchema<SliderItemProps>;
43
+ readonly FlexTextLink: FlexComponentSchema<TextLinkProps>;
44
+ readonly FlexYoutube: FlexComponentSchema<YoutubeProps>;
35
45
  };
36
46
  export {};
@@ -8206,6 +8206,11 @@ const borderProps = [
8206
8206
  createProp("borderBottomWidth", "string"),
8207
8207
  createProp("borderColor", "color")
8208
8208
  ];
8209
+ const borderSingleProps = [
8210
+ createProp("borderWidth", "string"),
8211
+ createProp("borderStyle", "string"),
8212
+ createProp("borderColor", "color")
8213
+ ];
8209
8214
  const radiusProps = [
8210
8215
  createProp("borderTopLeftRadius", "string"),
8211
8216
  createProp("borderTopRightRadius", "string"),
@@ -8220,6 +8225,11 @@ const paddingProps = [
8220
8225
  ];
8221
8226
  const backgroundColorProps = [createProp("backgroundColor", "string")];
8222
8227
  const backgroundImageProps = [createProp("backgroundImageUrl", "url")];
8228
+ const linkProps = [
8229
+ createProp("isLink", "boolean", [], 90),
8230
+ createProp("linkUrl", "url", [], 95),
8231
+ createProp("linkTarget", "string", byObj(BUTTON_LINK_TARGET), 80)
8232
+ ];
8223
8233
  const flexComponentSchemes = {
8224
8234
  FlexAvatar: { props: [
8225
8235
  createProp("size", "string", byObj(AVATAR_SIZE), 10),
@@ -8342,6 +8352,124 @@ const flexComponentSchemes = {
8342
8352
  createProp("width", "string", [], 10),
8343
8353
  createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
8344
8354
  createProp("fontFamily", "string", [])
8355
+ ] },
8356
+ FlexButtonOutlined: { props: [
8357
+ createProp("label", "string", [], 99),
8358
+ createProp("size", "string", byObj(BUTTON_SIZE), 50),
8359
+ createProp("theme", "string", byObj(BUTTON_THEME), 50),
8360
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
8361
+ createProp("wrap", "string", ["wrap", "nowrap"]),
8362
+ createProp("height", "string"),
8363
+ createProp("width", "string", [], 10),
8364
+ createProp("paddingLeft", "string"),
8365
+ createProp("paddingRight", "string"),
8366
+ createProp("fontSize", "string"),
8367
+ createProp("color", "color", [], 5),
8368
+ createProp("backgroundColor", "color", [], 5),
8369
+ createProp("borderColor", "color", [], 5),
8370
+ createProp("fontWeight", "string", ["normal", "bold"]),
8371
+ ...borderProps,
8372
+ ...radiusProps
8373
+ ] },
8374
+ FlexButtonText: { props: [
8375
+ createProp("label", "string", [], 99),
8376
+ createProp("size", "string", byObj(BUTTON_TEXT_SIZE), 50),
8377
+ createProp("theme", "string", byObj(BUTTON_TEXT_THEME), 50),
8378
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
8379
+ createProp("wrap", "string", ["wrap", "nowrap"]),
8380
+ createProp("height", "string"),
8381
+ createProp("width", "string", [], 10),
8382
+ createProp("paddingLeft", "string"),
8383
+ createProp("paddingRight", "string"),
8384
+ createProp("fontSize", "string"),
8385
+ createProp("color", "color", [], 5),
8386
+ createProp("backgroundColor", "color", [], 5),
8387
+ createProp("fontWeight", "string", ["normal", "bold"]),
8388
+ ...radiusProps
8389
+ ] },
8390
+ FlexCode: { props: [
8391
+ createProp("rawHtml", "string", [], 99),
8392
+ createProp("rawCss", "string", [], 98),
8393
+ createProp("rawScript", "string", [], 97)
8394
+ ] },
8395
+ FlexMultiColumn: { props: [
8396
+ createProp("gap", "string", [], 50),
8397
+ createProp("width", "string", [], 10),
8398
+ createProp("itemPaddingTop", "string", [], 5),
8399
+ createProp("itemPaddingLeft", "string", [], 5),
8400
+ createProp("itemPaddingRight", "string", [], 5),
8401
+ createProp("itemPaddingBottom", "string", [], 5),
8402
+ createProp("itemHeight", "string", [], 5),
8403
+ createProp("itemGap", "string", [], 5),
8404
+ ...borderSingleProps
8405
+ ] },
8406
+ FlexMultiColumnItem: { props: [createProp("gap", "number", [], 10)] },
8407
+ FlexRichText: { props: [
8408
+ createProp("content", "string", [], 99),
8409
+ createProp("theme", "string", byObj(TEXT_THEME), 50),
8410
+ createProp("size", "string", byObj(LAYER_TEXT_SIZE), 50),
8411
+ createProp("align", "string", [
8412
+ "left",
8413
+ "center",
8414
+ "right",
8415
+ "justify"
8416
+ ], 5),
8417
+ createProp("fontStyle", "string", ["normal", "italic"], 5),
8418
+ createProp("fontSize", "string", [], 5),
8419
+ createProp("fontWeight", "string", [
8420
+ "normal",
8421
+ "bold",
8422
+ "100",
8423
+ "200",
8424
+ "300",
8425
+ "400",
8426
+ "500",
8427
+ "600",
8428
+ "700",
8429
+ "800",
8430
+ "900"
8431
+ ], 5),
8432
+ createProp("lineHeight", "string", [], 5),
8433
+ createProp("color", "color", [], 5),
8434
+ createProp("width", "string", [], 10),
8435
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
8436
+ createProp("fontFamily", "string", [], 5)
8437
+ ] },
8438
+ FlexSlider: { props: [
8439
+ createProp("gap", "number", [], 50),
8440
+ createProp("itemWidthPercentage", "number", [], 50),
8441
+ createProp("auto", "boolean"),
8442
+ createProp("loop", "boolean"),
8443
+ createProp("hideIndicator", "boolean"),
8444
+ createProp("interval", "number")
8445
+ ] },
8446
+ FlexSliderItem: { props: [] },
8447
+ FlexTextLink: { props: [
8448
+ createProp("label", "string", [], 99),
8449
+ createProp("size", "string", byObj(TEXT_LINK_SIZE), 50),
8450
+ createProp("theme", "string", byObj(TEXT_LINK_THEME), 50),
8451
+ createProp("underline", "string", byObj(TEXT_LINK_UNDERLINE), 40),
8452
+ createProp("color", "color", [], 5),
8453
+ createProp("lineHeight", "string"),
8454
+ createProp("fontSize", "string"),
8455
+ createProp("fontWeight", "string"),
8456
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
8457
+ createProp("fontFamily", "string"),
8458
+ ...linkProps
8459
+ ] },
8460
+ FlexYoutube: { props: [
8461
+ createProp("videoId", "string", [], 99),
8462
+ createProp("loop", "boolean"),
8463
+ createProp("autoplay", "boolean"),
8464
+ createProp("mute", "boolean"),
8465
+ createProp("controls", "boolean"),
8466
+ createProp("showInfo", "boolean"),
8467
+ createProp("showSubtitle", "boolean"),
8468
+ createProp("showFullScreen", "boolean"),
8469
+ createProp("showRelatedMovies", "boolean"),
8470
+ createProp("shape", "string", byObj(IMAGE_ROUND_SHAPE), 10),
8471
+ createProp("width", "string", [], 10),
8472
+ ...borderProps
8345
8473
  ] }
8346
8474
  };
8347
8475
 
@@ -8175,6 +8175,11 @@ const borderProps = [
8175
8175
  createProp("borderBottomWidth", "string"),
8176
8176
  createProp("borderColor", "color")
8177
8177
  ];
8178
+ const borderSingleProps = [
8179
+ createProp("borderWidth", "string"),
8180
+ createProp("borderStyle", "string"),
8181
+ createProp("borderColor", "color")
8182
+ ];
8178
8183
  const radiusProps = [
8179
8184
  createProp("borderTopLeftRadius", "string"),
8180
8185
  createProp("borderTopRightRadius", "string"),
@@ -8189,6 +8194,11 @@ const paddingProps = [
8189
8194
  ];
8190
8195
  const backgroundColorProps = [createProp("backgroundColor", "string")];
8191
8196
  const backgroundImageProps = [createProp("backgroundImageUrl", "url")];
8197
+ const linkProps = [
8198
+ createProp("isLink", "boolean", [], 90),
8199
+ createProp("linkUrl", "url", [], 95),
8200
+ createProp("linkTarget", "string", byObj(BUTTON_LINK_TARGET), 80)
8201
+ ];
8192
8202
  const flexComponentSchemes = {
8193
8203
  FlexAvatar: { props: [
8194
8204
  createProp("size", "string", byObj(AVATAR_SIZE), 10),
@@ -8311,6 +8321,124 @@ const flexComponentSchemes = {
8311
8321
  createProp("width", "string", [], 10),
8312
8322
  createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
8313
8323
  createProp("fontFamily", "string", [])
8324
+ ] },
8325
+ FlexButtonOutlined: { props: [
8326
+ createProp("label", "string", [], 99),
8327
+ createProp("size", "string", byObj(BUTTON_SIZE), 50),
8328
+ createProp("theme", "string", byObj(BUTTON_THEME), 50),
8329
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
8330
+ createProp("wrap", "string", ["wrap", "nowrap"]),
8331
+ createProp("height", "string"),
8332
+ createProp("width", "string", [], 10),
8333
+ createProp("paddingLeft", "string"),
8334
+ createProp("paddingRight", "string"),
8335
+ createProp("fontSize", "string"),
8336
+ createProp("color", "color", [], 5),
8337
+ createProp("backgroundColor", "color", [], 5),
8338
+ createProp("borderColor", "color", [], 5),
8339
+ createProp("fontWeight", "string", ["normal", "bold"]),
8340
+ ...borderProps,
8341
+ ...radiusProps
8342
+ ] },
8343
+ FlexButtonText: { props: [
8344
+ createProp("label", "string", [], 99),
8345
+ createProp("size", "string", byObj(BUTTON_TEXT_SIZE), 50),
8346
+ createProp("theme", "string", byObj(BUTTON_TEXT_THEME), 50),
8347
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
8348
+ createProp("wrap", "string", ["wrap", "nowrap"]),
8349
+ createProp("height", "string"),
8350
+ createProp("width", "string", [], 10),
8351
+ createProp("paddingLeft", "string"),
8352
+ createProp("paddingRight", "string"),
8353
+ createProp("fontSize", "string"),
8354
+ createProp("color", "color", [], 5),
8355
+ createProp("backgroundColor", "color", [], 5),
8356
+ createProp("fontWeight", "string", ["normal", "bold"]),
8357
+ ...radiusProps
8358
+ ] },
8359
+ FlexCode: { props: [
8360
+ createProp("rawHtml", "string", [], 99),
8361
+ createProp("rawCss", "string", [], 98),
8362
+ createProp("rawScript", "string", [], 97)
8363
+ ] },
8364
+ FlexMultiColumn: { props: [
8365
+ createProp("gap", "string", [], 50),
8366
+ createProp("width", "string", [], 10),
8367
+ createProp("itemPaddingTop", "string", [], 5),
8368
+ createProp("itemPaddingLeft", "string", [], 5),
8369
+ createProp("itemPaddingRight", "string", [], 5),
8370
+ createProp("itemPaddingBottom", "string", [], 5),
8371
+ createProp("itemHeight", "string", [], 5),
8372
+ createProp("itemGap", "string", [], 5),
8373
+ ...borderSingleProps
8374
+ ] },
8375
+ FlexMultiColumnItem: { props: [createProp("gap", "number", [], 10)] },
8376
+ FlexRichText: { props: [
8377
+ createProp("content", "string", [], 99),
8378
+ createProp("theme", "string", byObj(TEXT_THEME), 50),
8379
+ createProp("size", "string", byObj(LAYER_TEXT_SIZE), 50),
8380
+ createProp("align", "string", [
8381
+ "left",
8382
+ "center",
8383
+ "right",
8384
+ "justify"
8385
+ ], 5),
8386
+ createProp("fontStyle", "string", ["normal", "italic"], 5),
8387
+ createProp("fontSize", "string", [], 5),
8388
+ createProp("fontWeight", "string", [
8389
+ "normal",
8390
+ "bold",
8391
+ "100",
8392
+ "200",
8393
+ "300",
8394
+ "400",
8395
+ "500",
8396
+ "600",
8397
+ "700",
8398
+ "800",
8399
+ "900"
8400
+ ], 5),
8401
+ createProp("lineHeight", "string", [], 5),
8402
+ createProp("color", "color", [], 5),
8403
+ createProp("width", "string", [], 10),
8404
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
8405
+ createProp("fontFamily", "string", [], 5)
8406
+ ] },
8407
+ FlexSlider: { props: [
8408
+ createProp("gap", "number", [], 50),
8409
+ createProp("itemWidthPercentage", "number", [], 50),
8410
+ createProp("auto", "boolean"),
8411
+ createProp("loop", "boolean"),
8412
+ createProp("hideIndicator", "boolean"),
8413
+ createProp("interval", "number")
8414
+ ] },
8415
+ FlexSliderItem: { props: [] },
8416
+ FlexTextLink: { props: [
8417
+ createProp("label", "string", [], 99),
8418
+ createProp("size", "string", byObj(TEXT_LINK_SIZE), 50),
8419
+ createProp("theme", "string", byObj(TEXT_LINK_THEME), 50),
8420
+ createProp("underline", "string", byObj(TEXT_LINK_UNDERLINE), 40),
8421
+ createProp("color", "color", [], 5),
8422
+ createProp("lineHeight", "string"),
8423
+ createProp("fontSize", "string"),
8424
+ createProp("fontWeight", "string"),
8425
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
8426
+ createProp("fontFamily", "string"),
8427
+ ...linkProps
8428
+ ] },
8429
+ FlexYoutube: { props: [
8430
+ createProp("videoId", "string", [], 99),
8431
+ createProp("loop", "boolean"),
8432
+ createProp("autoplay", "boolean"),
8433
+ createProp("mute", "boolean"),
8434
+ createProp("controls", "boolean"),
8435
+ createProp("showInfo", "boolean"),
8436
+ createProp("showSubtitle", "boolean"),
8437
+ createProp("showFullScreen", "boolean"),
8438
+ createProp("showRelatedMovies", "boolean"),
8439
+ createProp("shape", "string", byObj(IMAGE_ROUND_SHAPE), 10),
8440
+ createProp("width", "string", [], 10),
8441
+ ...borderProps
8314
8442
  ] }
8315
8443
  };
8316
8444
 
@@ -8175,6 +8175,11 @@ const borderProps = [
8175
8175
  createProp("borderBottomWidth", "string"),
8176
8176
  createProp("borderColor", "color")
8177
8177
  ];
8178
+ const borderSingleProps = [
8179
+ createProp("borderWidth", "string"),
8180
+ createProp("borderStyle", "string"),
8181
+ createProp("borderColor", "color")
8182
+ ];
8178
8183
  const radiusProps = [
8179
8184
  createProp("borderTopLeftRadius", "string"),
8180
8185
  createProp("borderTopRightRadius", "string"),
@@ -8189,6 +8194,11 @@ const paddingProps = [
8189
8194
  ];
8190
8195
  const backgroundColorProps = [createProp("backgroundColor", "string")];
8191
8196
  const backgroundImageProps = [createProp("backgroundImageUrl", "url")];
8197
+ const linkProps = [
8198
+ createProp("isLink", "boolean", [], 90),
8199
+ createProp("linkUrl", "url", [], 95),
8200
+ createProp("linkTarget", "string", byObj(BUTTON_LINK_TARGET), 80)
8201
+ ];
8192
8202
  const flexComponentSchemes = {
8193
8203
  FlexAvatar: { props: [
8194
8204
  createProp("size", "string", byObj(AVATAR_SIZE), 10),
@@ -8311,6 +8321,124 @@ const flexComponentSchemes = {
8311
8321
  createProp("width", "string", [], 10),
8312
8322
  createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
8313
8323
  createProp("fontFamily", "string", [])
8324
+ ] },
8325
+ FlexButtonOutlined: { props: [
8326
+ createProp("label", "string", [], 99),
8327
+ createProp("size", "string", byObj(BUTTON_SIZE), 50),
8328
+ createProp("theme", "string", byObj(BUTTON_THEME), 50),
8329
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
8330
+ createProp("wrap", "string", ["wrap", "nowrap"]),
8331
+ createProp("height", "string"),
8332
+ createProp("width", "string", [], 10),
8333
+ createProp("paddingLeft", "string"),
8334
+ createProp("paddingRight", "string"),
8335
+ createProp("fontSize", "string"),
8336
+ createProp("color", "color", [], 5),
8337
+ createProp("backgroundColor", "color", [], 5),
8338
+ createProp("borderColor", "color", [], 5),
8339
+ createProp("fontWeight", "string", ["normal", "bold"]),
8340
+ ...borderProps,
8341
+ ...radiusProps
8342
+ ] },
8343
+ FlexButtonText: { props: [
8344
+ createProp("label", "string", [], 99),
8345
+ createProp("size", "string", byObj(BUTTON_TEXT_SIZE), 50),
8346
+ createProp("theme", "string", byObj(BUTTON_TEXT_THEME), 50),
8347
+ createProp("round", "string", byObj(BUTTON_ROUND), 10),
8348
+ createProp("wrap", "string", ["wrap", "nowrap"]),
8349
+ createProp("height", "string"),
8350
+ createProp("width", "string", [], 10),
8351
+ createProp("paddingLeft", "string"),
8352
+ createProp("paddingRight", "string"),
8353
+ createProp("fontSize", "string"),
8354
+ createProp("color", "color", [], 5),
8355
+ createProp("backgroundColor", "color", [], 5),
8356
+ createProp("fontWeight", "string", ["normal", "bold"]),
8357
+ ...radiusProps
8358
+ ] },
8359
+ FlexCode: { props: [
8360
+ createProp("rawHtml", "string", [], 99),
8361
+ createProp("rawCss", "string", [], 98),
8362
+ createProp("rawScript", "string", [], 97)
8363
+ ] },
8364
+ FlexMultiColumn: { props: [
8365
+ createProp("gap", "string", [], 50),
8366
+ createProp("width", "string", [], 10),
8367
+ createProp("itemPaddingTop", "string", [], 5),
8368
+ createProp("itemPaddingLeft", "string", [], 5),
8369
+ createProp("itemPaddingRight", "string", [], 5),
8370
+ createProp("itemPaddingBottom", "string", [], 5),
8371
+ createProp("itemHeight", "string", [], 5),
8372
+ createProp("itemGap", "string", [], 5),
8373
+ ...borderSingleProps
8374
+ ] },
8375
+ FlexMultiColumnItem: { props: [createProp("gap", "number", [], 10)] },
8376
+ FlexRichText: { props: [
8377
+ createProp("content", "string", [], 99),
8378
+ createProp("theme", "string", byObj(TEXT_THEME), 50),
8379
+ createProp("size", "string", byObj(LAYER_TEXT_SIZE), 50),
8380
+ createProp("align", "string", [
8381
+ "left",
8382
+ "center",
8383
+ "right",
8384
+ "justify"
8385
+ ], 5),
8386
+ createProp("fontStyle", "string", ["normal", "italic"], 5),
8387
+ createProp("fontSize", "string", [], 5),
8388
+ createProp("fontWeight", "string", [
8389
+ "normal",
8390
+ "bold",
8391
+ "100",
8392
+ "200",
8393
+ "300",
8394
+ "400",
8395
+ "500",
8396
+ "600",
8397
+ "700",
8398
+ "800",
8399
+ "900"
8400
+ ], 5),
8401
+ createProp("lineHeight", "string", [], 5),
8402
+ createProp("color", "color", [], 5),
8403
+ createProp("width", "string", [], 10),
8404
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
8405
+ createProp("fontFamily", "string", [], 5)
8406
+ ] },
8407
+ FlexSlider: { props: [
8408
+ createProp("gap", "number", [], 50),
8409
+ createProp("itemWidthPercentage", "number", [], 50),
8410
+ createProp("auto", "boolean"),
8411
+ createProp("loop", "boolean"),
8412
+ createProp("hideIndicator", "boolean"),
8413
+ createProp("interval", "number")
8414
+ ] },
8415
+ FlexSliderItem: { props: [] },
8416
+ FlexTextLink: { props: [
8417
+ createProp("label", "string", [], 99),
8418
+ createProp("size", "string", byObj(TEXT_LINK_SIZE), 50),
8419
+ createProp("theme", "string", byObj(TEXT_LINK_THEME), 50),
8420
+ createProp("underline", "string", byObj(TEXT_LINK_UNDERLINE), 40),
8421
+ createProp("color", "color", [], 5),
8422
+ createProp("lineHeight", "string"),
8423
+ createProp("fontSize", "string"),
8424
+ createProp("fontWeight", "string"),
8425
+ createProp("fontFamilyVariant", "string", byObj(FONT_FAMILY_VARIANT), 10),
8426
+ createProp("fontFamily", "string"),
8427
+ ...linkProps
8428
+ ] },
8429
+ FlexYoutube: { props: [
8430
+ createProp("videoId", "string", [], 99),
8431
+ createProp("loop", "boolean"),
8432
+ createProp("autoplay", "boolean"),
8433
+ createProp("mute", "boolean"),
8434
+ createProp("controls", "boolean"),
8435
+ createProp("showInfo", "boolean"),
8436
+ createProp("showSubtitle", "boolean"),
8437
+ createProp("showFullScreen", "boolean"),
8438
+ createProp("showRelatedMovies", "boolean"),
8439
+ createProp("shape", "string", byObj(IMAGE_ROUND_SHAPE), 10),
8440
+ createProp("width", "string", [], 10),
8441
+ ...borderProps
8314
8442
  ] }
8315
8443
  };
8316
8444
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaidev/karte-action-sdk",
3
- "version": "1.1.270-29289706.9d4a9d322",
3
+ "version": "1.1.270-29291355.57078a51c",
4
4
  "author": "Plaid Inc.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",