@plaidev/karte-action-sdk 1.1.262 → 1.1.263-29020527.5afd9416

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.
@@ -7,7 +7,6 @@ import { afterUpdate as afterUpdateSvelte } from "svelte";
7
7
  import { tick as tickSvelte } from "svelte";
8
8
  import { Properties } from "csstype";
9
9
  import { Properties as Properties$0 } from "preact/src/jsx-csstype";
10
- import IconArrowDown from "./variants/IconArrowDown.svelte";
11
10
  /** @internal */
12
11
  declare const ACTION_HOOK_LABEL = "__ACTION_HOOK__";
13
12
  // -------- The following codes are deprecated --------
@@ -133,7 +132,7 @@ interface ActionOptions<Props, Variables, VariablesQuery> {
133
132
  *
134
133
  * @defaultValue `{}`
135
134
  */
136
- variables?: Variables;
135
+ variables?: VariablesQuery;
137
136
  /**
138
137
  * アクションで使用されるアクション実行時に取得される変数
139
138
  *
@@ -145,7 +144,7 @@ interface ActionOptions<Props, Variables, VariablesQuery> {
145
144
  *
146
145
  * @defaultValue `() => {}`
147
146
  */
148
- onCreate?: ActionHook<Props, Variables & ActionVariables>;
147
+ onCreate?: ActionHook<Props, VariablesQuery & ActionVariables>;
149
148
  /**
150
149
  * KARTEテンプレートの情報
151
150
  *
@@ -402,6 +401,7 @@ declare function showOnScroll<ModalProps extends Pick<Props, "show_on_scroll" |
402
401
  * @internal
403
402
  */
404
403
  declare function showOnTime<ModalProps extends Pick<Props, "show_on_time" | "show_on_time_count">>(props: ModalProps, show?: Function): (() => void) | null;
404
+ declare function checkAndDo(checkFn: Function, fn: Function, ...conditionFns: Function[]): () => void | null;
405
405
  type ModalProps = Props;
406
406
  /**
407
407
  * アクションを作成する
@@ -935,33 +935,7 @@ type FontWeight = string;
935
935
  /** @internal */
936
936
  declare const SYSTEM_FONT = "sans-serif, serif, monospace, system-ui";
937
937
  /** @internal */
938
- declare const Fonts: readonly [
939
- "sans-serif, serif, monospace, system-ui",
940
- "Noto Sans JP",
941
- "Sawarabi Gothic",
942
- "Zen Kaku Gothic New",
943
- "Zen Maru Gothic",
944
- "Shippori Mincho",
945
- "M PLUS Rounded 1c",
946
- "M PLUS 1p",
947
- "Kosugi Maru",
948
- "Kosugi",
949
- "BIZ UDPGothic",
950
- "Noto Serif JP",
951
- "BIZ UDPMincho",
952
- "Roboto",
953
- "Open Sans",
954
- "Montserrat",
955
- "Lato",
956
- "Poppins",
957
- "Raleway",
958
- "Nunito",
959
- "Playfair Display",
960
- "Merriweather",
961
- "Lora",
962
- "Libre Baskerville",
963
- "EB Garamond"
964
- ];
938
+ declare const Fonts: string[];
965
939
  type Font = (typeof Fonts)[number];
966
940
  /** @internal */
967
941
  declare const Justifies: readonly [
@@ -1486,7 +1460,7 @@ interface App {
1486
1460
  *
1487
1461
  * @internal
1488
1462
  */
1489
- type AppOptions<Props, Variables, VariablesQuery> = ActionOptions<Props, Variables, VariablesQuery>;
1463
+ type AppOptions<Props, Variables, VariablesQuery> = ActionOptions<Props, VariablesQuery, VariablesQuery>;
1490
1464
  /**
1491
1465
  * 非推奨
1492
1466
  *
@@ -1502,7 +1476,7 @@ declare const ensureModalRoot: typeof ensureActionRoot;
1502
1476
  *
1503
1477
  * @internal
1504
1478
  */
1505
- declare function createApp<Props, Variables, VariablesQuery>(App: typeof SvelteComponentDev, options?: AppOptions<Props, Variables, VariablesQuery>): App;
1479
+ declare function createApp<Props, Variables, VariablesQuery>(App: typeof SvelteComponentDev, options?: AppOptions<Props, VariablesQuery, VariablesQuery>): App;
1506
1480
  /**
1507
1481
  * 非推奨
1508
1482
  *
@@ -1516,7 +1490,7 @@ declare function createFog({ color, opacity, zIndex, onclick }: {
1516
1490
  zIndex?: number;
1517
1491
  onclick: () => void;
1518
1492
  }): {
1519
- fog: HTMLDivElement;
1493
+ fog: HTMLElement | null;
1520
1494
  close: () => void;
1521
1495
  };
1522
1496
  type AnswerValue = {
@@ -1703,7 +1677,7 @@ declare namespace widget {
1703
1677
  *
1704
1678
  * @defaultValue `{}`
1705
1679
  */
1706
- variables?: Variables;
1680
+ variables?: VariablesQuery;
1707
1681
  /**
1708
1682
  * アクションで使用されるアクション実行時に取得される変数
1709
1683
  *
@@ -1715,7 +1689,7 @@ declare namespace widget {
1715
1689
  *
1716
1690
  * @defaultValue `() => {}`
1717
1691
  */
1718
- onCreate?: ActionHook<Props, Variables & ActionVariables>;
1692
+ onCreate?: ActionHook<Props, VariablesQuery & ActionVariables>;
1719
1693
  /**
1720
1694
  * KARTEテンプレートの情報
1721
1695
  *
@@ -1981,9 +1955,10 @@ declare namespace widget {
1981
1955
  */
1982
1956
  function showOnTime<ModalProps extends Pick<Props, "show_on_time" | "show_on_time_count">>(props: ModalProps, show?: Function): (() => void) | null;
1983
1957
  /** @internal */
1984
- function and(fn: Function, ...conditionFns: Function[]): () => void;
1958
+ function and(fn: Function, ...conditionFns: Function[]): ReturnType<typeof checkAndDo>;
1985
1959
  /** @internal */
1986
- function or(fn: Function, ...conditionFns: Function[]): () => void;
1960
+ function or(fn: Function, ...conditionFns: Function[]): ReturnType<typeof checkAndDo>;
1961
+ function checkAndDo(checkFn: Function, fn: Function, ...conditionFns: Function[]): () => void | null;
1987
1962
  type ModalProps = Props;
1988
1963
  /**
1989
1964
  * 表示アクショントリガー
@@ -2076,7 +2051,7 @@ declare namespace widget {
2076
2051
  */
2077
2052
  function getActionRoot(): ShadowRoot | null;
2078
2053
  /** @internal */
2079
- function createModal<Props extends ModalProps, Variables, VariablesQuery extends Array<VariableQuery>>(App: typeof SvelteComponentDev, options?: ActionOptions<Props, Variables & ActionVariables, VariablesQuery>): () => void;
2054
+ function createModal<Props extends ModalProps, Variables, VariablesQuery extends Array<VariableQuery>>(App: typeof SvelteComponentDev, options?: ActionOptions<Props, VariablesQuery & ActionVariables, VariablesQuery>): () => void;
2080
2055
  /** @internal */
2081
2056
  function ensureActionRoot(useShadow?: boolean): ShadowRoot | HTMLElement;
2082
2057
  // -------- The following codes are deprecated --------
@@ -2128,7 +2103,7 @@ declare namespace widget {
2128
2103
  *
2129
2104
  * @internal
2130
2105
  */
2131
- type AppOptions<Props, Variables, VariablesQuery> = ActionOptions<Props, Variables, VariablesQuery>;
2106
+ type AppOptions<Props, Variables, VariablesQuery> = ActionOptions<Props, VariablesQuery, VariablesQuery>;
2132
2107
  /**
2133
2108
  * 非推奨
2134
2109
  *
@@ -2136,7 +2111,7 @@ declare namespace widget {
2136
2111
  *
2137
2112
  * @internal
2138
2113
  */
2139
- type ModalOptions<Props, Variables, VariablesQuery> = ActionOptions<Props, Variables, VariablesQuery>;
2114
+ type ModalOptions<Props, Variables, VariablesQuery> = ActionOptions<Props, VariablesQuery, VariablesQuery>;
2140
2115
  /**
2141
2116
  * 非推奨
2142
2117
  *
@@ -2152,7 +2127,7 @@ declare namespace widget {
2152
2127
  *
2153
2128
  * @internal
2154
2129
  */
2155
- function createApp<Props, Variables, VariablesQuery>(App: typeof SvelteComponentDev, options?: AppOptions<Props, Variables, VariablesQuery>): App;
2130
+ function createApp<Props, Variables, VariablesQuery>(App: typeof SvelteComponentDev, options?: AppOptions<Props, VariablesQuery, VariablesQuery>): App;
2156
2131
  /**
2157
2132
  * 非推奨
2158
2133
  *
@@ -2166,15 +2141,16 @@ declare namespace widget {
2166
2141
  zIndex?: number;
2167
2142
  onclick: () => void;
2168
2143
  }): {
2169
- fog: HTMLDivElement;
2144
+ fog: HTMLElement | null;
2170
2145
  close: () => void;
2171
2146
  };
2172
- // @ts-ignore
2173
- type ChangeValCallback = ({ newVal, oldVal, key }: {
2147
+ const newCollection: typeof collection;
2148
+ type ChangeValCallbackArg = {
2174
2149
  newVal: any;
2175
2150
  oldVal: any;
2176
- key: any;
2177
- }) => void;
2151
+ key: string;
2152
+ };
2153
+ type ChangeValCallback = (arg: ChangeValCallbackArg) => void;
2178
2154
  type EventCallback = (event: any) => void;
2179
2155
  type WidgetEventName = "hide" | "clickBackdrop" | "destroyed";
2180
2156
  /**
@@ -2296,15 +2272,7 @@ declare namespace widget {
2296
2272
  *
2297
2273
  * @public
2298
2274
  */
2299
- function collection$0(table: string): {
2300
- get(key: string | string[], cb: (err: Error, items?: (string | number | boolean | Date) | (string | number | boolean | Date)[]) => void): void;
2301
- getByQuery(query_name: string, params: {
2302
- [key: string]: (string | number | boolean | Date) | (string | number | boolean | Date)[];
2303
- }, options: {
2304
- ignore_fields?: string[];
2305
- }, cb: (err: Error, items?: (string | number | boolean | Date)[]) => void): void;
2306
- set(key: string, value: string, cb: (err: Error) => void): void;
2307
- };
2275
+ function collection$0(table: string): ReturnType<typeof newCollection>;
2308
2276
  /**
2309
2277
  * アクションを表示する
2310
2278
  *
@@ -2347,7 +2315,7 @@ declare const afterUpdate: typeof afterUpdateSvelte;
2347
2315
  declare const tick: typeof tickSvelte;
2348
2316
  // @internal
2349
2317
  declare const LAYOUT_COMPONENT_NAMES: string[];
2350
- type PropStyles<Props extends Record<string, any>, K extends keyof Props> = Record<NonNullable<Props[K]>, Properties>;
2318
+ type PropStyles<Props extends Record<string, any>, K extends keyof Props> = Record<NonNullable<Props[K]>, Props | Properties>;
2351
2319
  declare const ROUND_VARIANT: {
2352
2320
  readonly extra_small: "XSmall (2px)";
2353
2321
  readonly small: "Small (4px)";
@@ -2357,20 +2325,28 @@ declare const ROUND_VARIANT: {
2357
2325
  readonly fulled: "Full (100%)";
2358
2326
  };
2359
2327
  declare const BUTTON_SIZE: {
2360
- readonly extra_small: "XSmall";
2361
- readonly small: "Small";
2362
- readonly medium: "Medium";
2363
- readonly large: "Large";
2364
- readonly extra_large: "XLarge";
2328
+ readonly extra_small: "\u30A8\u30AF\u30B9\u30C8\u30E9 \u30B9\u30E2\u30FC\u30EB";
2329
+ readonly small: "\u30B9\u30E2\u30FC\u30EB";
2330
+ readonly medium: "\u30DF\u30C7\u30A3\u30A2\u30E0";
2331
+ readonly large: "\u30E9\u30FC\u30B8";
2332
+ readonly extra_large: "\u30A8\u30AF\u30B9\u30C8\u30E9 \u30E9\u30FC\u30B8";
2365
2333
  };
2366
2334
  declare const BUTTON_THEME: {
2367
- readonly default: "Default";
2368
- readonly general: "General";
2369
- readonly success: "Success";
2370
- readonly warning: "Warning";
2371
- readonly danger: "Dander";
2372
- readonly info: "Info";
2373
- readonly white: "White";
2335
+ readonly default: "\u30CE\u30FC\u30DE\u30EB / \u30D6\u30E9\u30F3\u30C9";
2336
+ readonly general: "\u30CE\u30FC\u30DE\u30EB / \u30B8\u30A7\u30CD\u30E9\u30EB";
2337
+ readonly danger: "\u30CE\u30FC\u30DE\u30EB / \u30A2\u30E9\u30FC\u30C8";
2338
+ readonly white: "\u30CE\u30FC\u30DE\u30EB / \u30DB\u30EF\u30A4\u30C8";
2339
+ readonly default_outline: "\u30A2\u30A6\u30C8\u30E9\u30A4\u30F3 / \u30D6\u30E9\u30F3\u30C9";
2340
+ readonly general_outline: "\u30A2\u30A6\u30C8\u30E9\u30A4\u30F3 / \u30B8\u30A7\u30CD\u30E9\u30EB";
2341
+ readonly danger_outline: "\u30A2\u30A6\u30C8\u30E9\u30A4\u30F3 / \u30A2\u30E9\u30FC\u30C8";
2342
+ readonly default_text: "\u30C6\u30AD\u30B9\u30C8 / \u30D6\u30E9\u30F3\u30C9";
2343
+ readonly general_text: "\u30C6\u30AD\u30B9\u30C8 / \u30B8\u30A7\u30CD\u30E9\u30EB";
2344
+ readonly danger_text: "\u30C6\u30AD\u30B9\u30C8 / \u30A2\u30E9\u30FC\u30C8";
2345
+ };
2346
+ declare const BUTTON_VARIANT: {
2347
+ readonly normal: "\u30CE\u30FC\u30DE\u30EB";
2348
+ readonly outline: "\u30A2\u30A6\u30C8\u30E9\u30A4\u30F3";
2349
+ readonly text: "\u30C6\u30AD\u30B9\u30C8";
2374
2350
  };
2375
2351
  declare const BUTTON_ROUND: {
2376
2352
  readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
@@ -2385,7 +2361,7 @@ declare const BUTTON_ICON_ANGLE: {
2385
2361
  readonly row: "\u5DE6\u5074";
2386
2362
  readonly "row-reverse": "\u53F3\u5074";
2387
2363
  };
2388
- type ButtonProps = CommonProps & ClickableProps & ShadowProps & LinkProps & WithIconProps & BorderProps & {
2364
+ type ButtonProps = CommonProps & ClickableProps & ShadowProps & LinkProps & WithIconProps & RadiusProps & BorderProps & {
2389
2365
  label?: string;
2390
2366
  // size
2391
2367
  size?: keyof typeof BUTTON_SIZE | string;
@@ -2395,8 +2371,10 @@ type ButtonProps = CommonProps & ClickableProps & ShadowProps & LinkProps & With
2395
2371
  fontSize?: Properties["fontSize"];
2396
2372
  // theme
2397
2373
  theme?: keyof typeof BUTTON_THEME | string;
2374
+ variant?: keyof typeof BUTTON_VARIANT | string;
2398
2375
  color?: Properties["color"];
2399
2376
  backgroundColor?: Properties["backgroundColor"];
2377
+ borderColor?: Properties["borderColor"];
2400
2378
  // others
2401
2379
  fontWeight?: Properties["fontWeight"];
2402
2380
  round?: keyof typeof BUTTON_ROUND;
@@ -2424,34 +2402,44 @@ type VariantStyles<Props extends object = object> = Props & {
2424
2402
  hover?: Props;
2425
2403
  active?: Props;
2426
2404
  };
2427
- type VariantDefinition<Props extends object = object, Meta extends object = undefined> = {
2405
+ type VariantDefinition<Props extends object = object, Meta extends object = object> = {
2428
2406
  name: string;
2429
2407
  description?: string;
2430
2408
  getProps: (brandKit?: BrandKit) => VariantStyles<Props>;
2431
2409
  meta?: Meta;
2432
2410
  };
2433
- type VariantDefinitionGroup<Props extends object = object> = Record<string, VariantDefinition<Props>>;
2411
+ type VariantDefinitionGroup<Props extends object = object, Meta extends object = object> = Record<string, VariantDefinition<Props, Meta>>;
2412
+ type ToVariantArrayReturn<T> = T[keyof T] & {
2413
+ code: keyof T;
2414
+ };
2415
+ declare const toVariantArray: <T extends VariantDefinitionGroup>(group: T) => ToVariantArrayReturn<T>[];
2434
2416
  // ================================
2435
2417
  // Aspect
2436
2418
  // ================================
2437
2419
  declare const ASPECT_VARIANT: VariantDefinitionGroup<Omit<AspectProps, "aspectVariant">>;
2438
2420
  type AspectVariantCode = keyof typeof ASPECT_VARIANT;
2439
- declare const ASPECT_VARIANTS: (VariantDefinition<Omit<AspectProps, "aspectVariant">, undefined> & {
2440
- code: string;
2441
- })[];
2442
- declare const FONT_FAMILY_VARIANT: VariantDefinitionGroup<Omit<FontFamilyProps, "fontFamilyVariant">>;
2421
+ declare const ASPECT_VARIANTS: ReturnType<typeof toVariantArray>;
2422
+ // ================================
2423
+ // FontFamily
2424
+ // ================================
2425
+ type FontVariantMeta = {
2426
+ lang: "ja" | "en";
2427
+ type: "kaku" | "maru" | "min";
2428
+ };
2429
+ declare const FONT_FAMILY_VARIANT: VariantDefinitionGroup<Omit<FontFamilyProps, "fontFamilyVariant">, FontVariantMeta>;
2443
2430
  type FontFamilyVariantCode = keyof typeof FONT_FAMILY_VARIANT;
2444
- declare const FONT_FAMILY_VARIANTS: (VariantDefinition<Omit<FontFamilyProps, "fontFamilyVariant">, undefined> & {
2445
- code: string;
2446
- })[];
2431
+ declare const FONT_FAMILY_VARIANTS: ToVariantArrayReturn<VariantDefinitionGroup<Omit<FontFamilyProps, "fontFamilyVariant">, FontVariantMeta>>[];
2432
+ type FontFamilyVariantGroup = {
2433
+ label: string;
2434
+ variants: ReturnType<typeof toVariantArray>;
2435
+ };
2436
+ declare const FONT_FAMILY_VARIANT_GROUPS: FontFamilyVariantGroup[];
2447
2437
  // ================================
2448
2438
  // Shadow
2449
2439
  // ================================
2450
2440
  declare const SHADOW_VARIANT: VariantDefinitionGroup<Omit<ShadowProps, "shadowVariant">>;
2451
2441
  type ShadowVariantCode = keyof typeof SHADOW_VARIANT;
2452
- declare const SHADOW_VARIANTS: (VariantDefinition<Omit<ShadowProps, "shadowVariant">, undefined> & {
2453
- code: string;
2454
- })[];
2442
+ declare const SHADOW_VARIANTS: ToVariantArrayReturn<VariantDefinitionGroup<Omit<ShadowProps, "shadowVariant">, object>>[];
2455
2443
  type PositionPlaceProps = {
2456
2444
  top?: Properties["top"];
2457
2445
  left?: Properties["left"];
@@ -2554,38 +2542,9 @@ type AvatarProps = CommonProps & ClickableProps & BorderProps & {
2554
2542
  };
2555
2543
  declare const avatarPropsDefault: AvatarProps;
2556
2544
  declare const AVATAR_SIZE_STYLES: PropStyles<AvatarProps, "size">;
2557
- declare const getButtonThemeStyles: (customBrandKit?: Partial<BrandKit>) => {
2558
- default: {
2559
- backgroundColor: string;
2560
- color: "#FFFFFF";
2561
- };
2562
- general: {
2563
- backgroundColor: "#e8e8e8";
2564
- color: "rgba(0, 16, 14, 0.7)";
2565
- };
2566
- success: {
2567
- backgroundColor: string;
2568
- color: "#ffffff";
2569
- };
2570
- warning: {
2571
- backgroundColor: string;
2572
- color: "#ffffff";
2573
- };
2574
- danger: {
2575
- backgroundColor: string;
2576
- color: "#FFFFFF";
2577
- };
2578
- info: {
2579
- backgroundColor: string;
2580
- color: "#FFFFFF";
2581
- };
2582
- white: {
2583
- backgroundColor: "#FFFFFF";
2584
- color: string;
2585
- };
2586
- };
2545
+ type BrandableStyles<T extends object = object> = Record<string, Partial<T & Properties>>;
2546
+ declare const getButtonThemeStyles: (customBrandKit?: Partial<BrandKit>) => BrandableStyles<ButtonProps>;
2587
2547
  declare const BUTTON_SIZE_STYLES: PropStyles<ButtonProps, "size">;
2588
- declare const BUTTON_THEME_STYLES: () => PropStyles<ButtonProps, "theme">;
2589
2548
  declare const BUTTON_ROUND_STYLES: PropStyles<ButtonProps, "round">;
2590
2549
  declare const BUTTON_WRAP_STYLES: PropStyles<ButtonProps, "wrap">;
2591
2550
  type ButtonOutlinedProps = CommonProps & ClickableProps & ShadowProps & WithIconProps & LinkProps & BorderProps & {
@@ -2609,43 +2568,7 @@ type ButtonOutlinedProps = CommonProps & ClickableProps & ShadowProps & WithIcon
2609
2568
  };
2610
2569
  declare const buttonOutlinedPropsDefault: ButtonOutlinedProps;
2611
2570
  declare const BUTTON_OUTLINED_SIZE_STYLES: PropStyles<ButtonOutlinedProps, "size">;
2612
- declare const getButtonOutlinedThemeStyles: (customBrandKit?: Partial<BrandKit>) => {
2613
- default: {
2614
- color: string;
2615
- borderColor: string;
2616
- backgroundColor: "#FFFFFF";
2617
- };
2618
- general: {
2619
- color: string;
2620
- borderColor: string;
2621
- backgroundColor: "#FFFFFF";
2622
- };
2623
- success: {
2624
- color: string;
2625
- borderColor: string;
2626
- backgroundColor: "#FFFFFF";
2627
- };
2628
- warning: {
2629
- color: string;
2630
- borderColor: string;
2631
- backgroundColor: "#FFFFFF";
2632
- };
2633
- danger: {
2634
- color: string;
2635
- borderColor: string;
2636
- backgroundColor: "#FFFFFF";
2637
- };
2638
- info: {
2639
- color: string;
2640
- borderColor: string;
2641
- backgroundColor: "#FFFFFF";
2642
- };
2643
- white: {
2644
- color: "#FFFFFF";
2645
- borderColor: "#FFFFFF";
2646
- backgroundColor: "#000000";
2647
- };
2648
- };
2571
+ declare const getButtonOutlinedThemeStyles: (customBrandKit?: Partial<BrandKit>) => BrandableStyles<ButtonOutlinedProps>;
2649
2572
  declare const BUTTON_OUTLINED_ROUND_STYLES: PropStyles<ButtonOutlinedProps, "round">;
2650
2573
  declare const BUTTON_OUTLINED_WRAP_STYLES: PropStyles<ButtonOutlinedProps, "wrap">;
2651
2574
  declare const BUTTON_TEXT_SIZE: {
@@ -2682,40 +2605,7 @@ type ButtonTextProps = CommonProps & ClickableProps & LinkProps & WithIconProps
2682
2605
  wrap?: "wrap" | "nowrap";
2683
2606
  };
2684
2607
  declare const BUTTON_TEXT_SIZE_STYLES: PropStyles<ButtonTextProps, "size">;
2685
- declare const getButtonTextThemeStyles: (customBrandKit?: Partial<BrandKit>) => {
2686
- default: {
2687
- backgroundColor: "#f3f4f6";
2688
- color: string;
2689
- };
2690
- link: {
2691
- backgroundColor: "#f3f4f6";
2692
- color: string;
2693
- };
2694
- general: {
2695
- backgroundColor: "#f3f4f6";
2696
- color: string;
2697
- };
2698
- success: {
2699
- backgroundColor: "#f3f4f6";
2700
- color: string;
2701
- };
2702
- warning: {
2703
- backgroundColor: "#f3f4f6";
2704
- color: string;
2705
- };
2706
- danger: {
2707
- backgroundColor: "#f3f4f6";
2708
- color: string;
2709
- };
2710
- info: {
2711
- backgroundColor: "#f3f4f6";
2712
- color: string;
2713
- };
2714
- white: {
2715
- backgroundColor: "#f3f4f6";
2716
- color: string;
2717
- };
2718
- };
2608
+ declare const getButtonTextThemeStyles: (customBrandKit?: Partial<BrandKit>) => BrandableStyles<ButtonTextProps>;
2719
2609
  declare const CLOSE_BUTTON_PLACEMENT: {
2720
2610
  readonly topRight: "topRight";
2721
2611
  readonly topLeft: "topLeft";
@@ -2747,67 +2637,13 @@ type CloseButtonProps = CommonProps & ClickableProps & BorderProps & {
2747
2637
  bottom?: Properties["bottom"];
2748
2638
  };
2749
2639
  declare const ICON_SIZE: {
2750
- readonly x_small: {
2751
- readonly label: "X Small";
2752
- readonly value: "12px";
2753
- };
2754
- readonly small: {
2755
- readonly label: "Small";
2756
- readonly value: "16px";
2757
- };
2758
- readonly medium: {
2759
- readonly label: "Medium";
2760
- readonly value: "20px";
2761
- };
2762
- readonly large: {
2763
- readonly label: "Large";
2764
- readonly value: "24px";
2765
- };
2766
- readonly x_large: {
2767
- readonly label: "X Large";
2768
- readonly value: "32px";
2769
- };
2770
- readonly x2_large: {
2771
- readonly label: "2X Large";
2772
- readonly value: "40px";
2773
- };
2774
- readonly x3_large: {
2775
- readonly label: "3X Large";
2776
- readonly value: "48px";
2640
+ [key: string]: {
2641
+ label: string;
2642
+ value: string;
2777
2643
  };
2778
2644
  };
2779
2645
  declare const ICON_VARIANTS: {
2780
- readonly arrow_down: typeof IconArrowDown;
2781
- readonly arrow_up: typeof IconArrowDown;
2782
- readonly arrow_left: typeof IconArrowDown;
2783
- readonly arrow_right: typeof IconArrowDown;
2784
- readonly arrow_up_from_square: typeof IconArrowDown;
2785
- readonly bell: typeof IconArrowDown;
2786
- readonly buildings: typeof IconArrowDown;
2787
- readonly cart_shopping: typeof IconArrowDown;
2788
- readonly check: typeof IconArrowDown;
2789
- readonly chevrons_right: typeof IconArrowDown;
2790
- readonly chevron_right: typeof IconArrowDown;
2791
- readonly circle: typeof IconArrowDown;
2792
- readonly circle_info: typeof IconArrowDown;
2793
- readonly circle_question: typeof IconArrowDown;
2794
- readonly circle_x_mark: typeof IconArrowDown;
2795
- readonly copy: typeof IconArrowDown;
2796
- readonly envelope: typeof IconArrowDown;
2797
- readonly fire: typeof IconArrowDown;
2798
- readonly gift: typeof IconArrowDown;
2799
- readonly heart: typeof IconArrowDown;
2800
- readonly link: typeof IconArrowDown;
2801
- readonly locationDot: typeof IconArrowDown;
2802
- readonly magnifying_grass: typeof IconArrowDown;
2803
- readonly paperclip: typeof IconArrowDown;
2804
- readonly paper_plane: typeof IconArrowDown;
2805
- readonly phone: typeof IconArrowDown;
2806
- readonly star: typeof IconArrowDown;
2807
- readonly ticket: typeof IconArrowDown;
2808
- readonly truck: typeof IconArrowDown;
2809
- readonly users: typeof IconArrowDown;
2810
- readonly x_mark: typeof IconArrowDown;
2646
+ [key: string]: any;
2811
2647
  };
2812
2648
  type IconProps = CommonProps & ClickableProps & {
2813
2649
  variant: string;
@@ -2886,26 +2722,23 @@ type SliderProps = CommonProps & {
2886
2722
  };
2887
2723
  type SliderItemProps = CommonProps & ClickableProps;
2888
2724
  declare const LAYER_TEXT_SIZE: {
2889
- readonly extra_small: "ExtraSmall";
2890
- readonly small: "Small";
2891
- readonly medium: "Medium";
2892
- readonly large: "Large";
2893
- readonly extra_large: "ExtraLarge";
2894
- readonly heading_extra_small: "HeadingExtraSmall";
2895
- readonly heading_small: "HeadingSmall";
2896
- readonly heading_medium: "HeadingMedium";
2897
- readonly heading_large: "HeadingLarge";
2898
- readonly heading_extra_large: "HeadingExtraLarge";
2725
+ readonly small: "\u672C\u6587 / \u30B9\u30E2\u30FC\u30EB";
2726
+ readonly medium: "\u672C\u6587 / \u30DF\u30C7\u30A3\u30A2\u30E0";
2727
+ readonly large: "\u672C\u6587 / \u30E9\u30FC\u30B8";
2728
+ readonly heading_extra_small: "\u898B\u51FA\u3057 / \u30B9\u30E2\u30FC\u30EB";
2729
+ readonly heading_small: "\u898B\u51FA\u3057 / \u30DF\u30C7\u30A3\u30A2\u30E0";
2730
+ readonly heading_medium: "\u898B\u51FA\u3057 / \u30E9\u30FC\u30B8";
2731
+ readonly heading_large: "\u898B\u51FA\u3057 / \u30A8\u30AF\u30B9\u30C8\u30E9\u30E9\u30FC\u30B8";
2899
2732
  };
2900
2733
  declare const TEXT_THEME: {
2901
- readonly default: "Default";
2902
- readonly gray: "Gray";
2903
- readonly brand: "Brand";
2904
- readonly success: "Success";
2905
- readonly warning: "Warning";
2906
- readonly danger: "Danger";
2907
- readonly info: "Info";
2908
- readonly white: "White";
2734
+ readonly default: "\u30C7\u30D5\u30A9\u30EB\u30C8";
2735
+ readonly gray: "\u30B0\u30EC\u30FC";
2736
+ readonly brand: "\u30D6\u30E9\u30F3\u30C9";
2737
+ readonly success: "\u30B5\u30AF\u30BB\u30B9";
2738
+ readonly warning: "\u30EF\u30FC\u30CB\u30F3\u30B0";
2739
+ readonly danger: "\u30A2\u30E9\u30FC\u30C8";
2740
+ readonly info: "\u30A4\u30F3\u30D5\u30A9";
2741
+ readonly white: "\u30DB\u30EF\u30A4\u30C8";
2909
2742
  };
2910
2743
  declare const TEXT_STYLE: {
2911
2744
  readonly normal: "normal";
@@ -2923,85 +2756,12 @@ type LayerTextProps = CommonProps & BorderProps & RadiusProps & BackgroundColorP
2923
2756
  color?: Properties["color"];
2924
2757
  width?: Properties["width"];
2925
2758
  };
2926
- declare const getTextThemeStyles: (customBrandKit?: Partial<BrandKit>) => {
2927
- default: {
2928
- color: string;
2929
- };
2930
- gray: {
2931
- color: string;
2932
- };
2933
- brand: {
2934
- color: string;
2935
- };
2936
- success: {
2937
- color: string;
2938
- };
2939
- warning: {
2940
- color: string;
2941
- };
2942
- danger: {
2943
- color: string;
2944
- };
2945
- info: {
2946
- color: string;
2947
- };
2948
- white: {
2949
- color: string;
2950
- };
2759
+ type TextThemeProps = {
2760
+ color: string;
2951
2761
  };
2762
+ declare const getTextThemeStyles: (customBrandKit?: Partial<BrandKit>) => BrandableStyles<TextThemeProps>;
2952
2763
  declare const TEXT_VARIANTS: {
2953
- size: {
2954
- extra_small: {
2955
- fontSize: string;
2956
- lineHeight: number;
2957
- fontWeight: string;
2958
- };
2959
- small: {
2960
- fontSize: string;
2961
- lineHeight: number;
2962
- fontWeight: string;
2963
- };
2964
- medium: {
2965
- fontSize: string;
2966
- lineHeight: number;
2967
- fontWeight: string;
2968
- };
2969
- large: {
2970
- fontSize: string;
2971
- lineHeight: number;
2972
- fontWeight: string;
2973
- };
2974
- extra_large: {
2975
- fontSize: string;
2976
- lineHeight: number;
2977
- fontWeight: string;
2978
- };
2979
- heading_extra_small: {
2980
- fontSize: string;
2981
- lineHeight: number;
2982
- fontWeight: string;
2983
- };
2984
- heading_small: {
2985
- fontSize: string;
2986
- lineHeight: number;
2987
- fontWeight: string;
2988
- };
2989
- heading_medium: {
2990
- fontSize: string;
2991
- lineHeight: number;
2992
- fontWeight: string;
2993
- };
2994
- heading_large: {
2995
- fontSize: string;
2996
- lineHeight: number;
2997
- fontWeight: string;
2998
- };
2999
- heading_extra_large: {
3000
- fontSize: string;
3001
- lineHeight: number;
3002
- fontWeight: string;
3003
- };
3004
- };
2764
+ size: Record<NonNullable<LayerTextProps["size"]>, any>;
3005
2765
  };
3006
2766
  declare const TEXT_LINK_SIZE: {
3007
2767
  readonly small: "Small";
@@ -3036,26 +2796,7 @@ type TextLinkProps = CommonProps & ClickableProps & LinkProps & FontFamilyProps
3036
2796
  fontWeight?: Properties["fontWeight"];
3037
2797
  };
3038
2798
  declare const TEXT_LINK_SIZE_STYLES: PropStyles<TextLinkProps, "size">;
3039
- declare const getTextLinkThemeStyles: (customBrandKit?: Partial<BrandKit>) => {
3040
- default: {
3041
- color: string;
3042
- };
3043
- link: {
3044
- color: string;
3045
- };
3046
- brand: {
3047
- color: string;
3048
- };
3049
- alert: {
3050
- color: string;
3051
- };
3052
- gray: {
3053
- color: string;
3054
- };
3055
- white: {
3056
- color: string;
3057
- };
3058
- };
2799
+ declare const getTextLinkThemeStyles: (customBrandKit?: Partial<BrandKit>) => BrandableStyles<TextLinkProps>;
3059
2800
  type ListProps = CommonProps & {
3060
2801
  gap?: Properties["gap"];
3061
2802
  borderWidth?: Properties["borderTopWidth"];
@@ -3127,13 +2868,32 @@ type YoutubeProps = CommonProps & BorderProps & {
3127
2868
  shape?: keyof typeof IMAGE_ROUND_SHAPE;
3128
2869
  width?: Properties["width"];
3129
2870
  };
2871
+ type CountDownProps = CommonProps & {
2872
+ timeLimit?: string;
2873
+ onEnd?: OnClickOperation;
2874
+ };
2875
+ type CountDownValueType = "day" | "hour" | "minute" | "second";
2876
+ type CountDownValueProps = LayerTextProps & {
2877
+ type: CountDownValueType;
2878
+ };
2879
+ type CountDownValues = {
2880
+ day: string;
2881
+ hour: string;
2882
+ min: string;
2883
+ sec: string;
2884
+ };
2885
+ type ClipboardProps = CommonProps & {
2886
+ content?: string;
2887
+ copiedEventName?: string;
2888
+ noneTooltip?: boolean;
2889
+ };
3130
2890
  type CodeProps = CommonProps & {
3131
2891
  rawHtml?: string;
3132
2892
  rawCss?: string;
3133
2893
  rawScript?: string;
3134
2894
  };
3135
2895
  declare const ROUND_STYLES: Record<keyof typeof ROUND_VARIANT, Pick<Properties, "borderTopLeftRadius" | "borderTopRightRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius">>;
3136
- export { ACTION_HOOK_LABEL, KARTE_MODAL_ROOT, create, destroyAction, onCreate, onDestroy, showModal, destroy, initialize, finalize, loadGlobalScript, loadGlobalStyle, applyGlobalCss, getState, setState, getStates, isOpened, getVariables, setVariables, resetVariables, getEventHandlers, setEventHandlers, resetEventHandlers, getSystem, setSetting, eventHandlers, variables, formData, state, onScroll, onTime, getLogs, getEvents, logger, listenLogger, hideOnScroll, hideOnTime, showOnScroll, showOnTime, PropTypes, PropType, Code, MediaQueries, MediaQuery, Directions, Direction, AnimationStyles, AnimationStyle, ModalPositions, ModalPosition, ModalMargin, ModalPlacement, DefaultModalPlacement, Elasticities, Elasticity, ElasticityStyle, DefaultElasticity, TextDirections, TextDirection, OperationArgumentType, Operation, OnClickOperationOptions, OnClickOperation, LongText, Url, RegExpProp, Image, LengthUnits, LengthUnit, Length, Color, FontWeight, SYSTEM_FONT, Fonts, Font, Justifies, Justify, Alignments, Alignment, FlexDirections, FlexDirection, ObjectFits, ObjectFit, ClipPaths, ClipPath, Repeats, Repeat, BackgroundSizes, BackgroundSize, Cursors, Cursor, Overflows, Overflow, Border, BorderStyle, BorderWidth, BoxShadow, Style, TransitState, WritingModes, WritingMode, DateTime, Icon, ListSeparatorTypes, EdgePosition, DefaultEdgePosition, ListSeparatorNone, ListSeparatorBorder, ListSeparatorGap, ListSeparator, DefaultListSeparatorNone, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparator, ListBackgroundTypes, ListBackgroundNone, ListBackgroundStripe, ListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListBackground, ListDirections, ListDirection, ListContext, SlideButtonIcon, SlideButtonText, SlideButton, DefaultSlideButton, SlideButtonPosition, SlideNavigationButton, DefaultSlideNavigationButton, FormInputName, FormButtonColor, DefaultFormButtonColor, ModalStyle, ModalBreakPoint, DefaultModalBreakPoint, FormIdentifyTextFields, FormIdentifyTextField, FormIdentifyTextFieldValidations, FormIdentifyTextFieldPlaceholders, DefaultFormIdentifyTextField, FormIdentifyBooleanFields, FormIdentifyBooleanField, DefaultFormIdentifyBooleanField, showAction, closeAction, loadStyle, applyCss, onShow, onClose, onChangeState, getActionRoot, getCssVariables, show, close, ensureModalRoot, createApp, createFog, collection, loadActionTableRow, loadActionTableRows, loadActionTableQuery, loadActionTable, addChoiceAnswer, addFreeAnswer, removeAnswer, getAnsweredQuestion, getAnsweredQuestionIds, sendAnswer, sendAnswers, widget, onMount, onDestory, beforeUpdate, afterUpdate, tick, LAYOUT_COMPONENT_NAMES, PropStyles, ROUND_VARIANT, PositionProps, MetaProps, CustomizeCssProps, BrandStyleProps, CommonProps, ClickableProps, OverflowProps, BorderProps, PaddingProps, RadiusProps, BackgroundColorProps, BackgroundImageProps, ShadowProps, WithIconProps, LinkProps, AspectProps, FontFamilyProps, AVATAR_SIZE, AVATAR_SHAPE, AvatarProps, avatarPropsDefault, AVATAR_SIZE_STYLES, BUTTON_SIZE, BUTTON_THEME, BUTTON_ROUND, BUTTON_LINK_TARGET, BUTTON_ICON_ANGLE, ButtonProps, buttonPropsDefault, getButtonThemeStyles, BUTTON_SIZE_STYLES, BUTTON_THEME_STYLES, BUTTON_ROUND_STYLES, BUTTON_WRAP_STYLES, ButtonOutlinedProps, buttonOutlinedPropsDefault, BUTTON_OUTLINED_SIZE_STYLES, getButtonOutlinedThemeStyles, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_THEME, ButtonTextProps, BUTTON_TEXT_SIZE_STYLES, getButtonTextThemeStyles, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, CLOSE_BUTTON_LABEL_PLACEMENT, CloseButtonProps, ICON_SIZE, ICON_VARIANTS, IconProps, ICON_SIZE_STYLES, IMAGE_ROUND_SHAPE, IMAGE_ASPECT_VARIANTS, ImageProps, LAYOUT_DISPLAY_TYPE, LayoutDisplayType, LAYOUT_DIRECTION, LayoutFlexDirection, LAYOUT_ALIGN, LayoutFlexAlign, LAYOUT_JUSTIFY, LayoutFlexJustify, LayerLayoutProps, SliderProps, SliderItemProps, LAYER_TEXT_SIZE, TEXT_THEME, TEXT_STYLE, LayerTextProps, getTextThemeStyles, TEXT_VARIANTS, TEXT_LINK_SIZE, TEXT_LINK_THEME, TEXT_LINK_UNDERLINE, TextLinkProps, TEXT_LINK_SIZE_STYLES, getTextLinkThemeStyles, ListProps, ListItemProps, LIST_ITEM_CONTEXT_KEY, ListItemContext, MultiColumnProps, MultiColumnItemProps, MULTI_COLUMN_ITEM_CONTEXT_KEY, MultiColumnItemContext, YoutubeProps, CodeProps, BrandKit, getBrandKit, useBrandKit, ROUND_STYLES, VariantStyles, VariantDefinition, VariantDefinitionGroup, ASPECT_VARIANT, AspectVariantCode, ASPECT_VARIANTS, FONT_FAMILY_VARIANT, FontFamilyVariantCode, FONT_FAMILY_VARIANTS, SHADOW_VARIANT, ShadowVariantCode, SHADOW_VARIANTS };
2896
+ export { ACTION_HOOK_LABEL, KARTE_MODAL_ROOT, create, destroyAction, onCreate, onDestroy, showModal, destroy, initialize, finalize, loadGlobalScript, loadGlobalStyle, applyGlobalCss, getState, setState, getStates, isOpened, getVariables, setVariables, resetVariables, getEventHandlers, setEventHandlers, resetEventHandlers, getSystem, setSetting, eventHandlers, variables, formData, state, onScroll, onTime, getLogs, getEvents, logger, listenLogger, hideOnScroll, hideOnTime, showOnScroll, showOnTime, PropTypes, PropType, Code, MediaQueries, MediaQuery, Directions, Direction, AnimationStyles, AnimationStyle, ModalPositions, ModalPosition, ModalMargin, ModalPlacement, DefaultModalPlacement, Elasticities, Elasticity, ElasticityStyle, DefaultElasticity, TextDirections, TextDirection, OperationArgumentType, Operation, OnClickOperationOptions, OnClickOperation, LongText, Url, RegExpProp, Image, LengthUnits, LengthUnit, Length, Color, FontWeight, SYSTEM_FONT, Fonts, Font, Justifies, Justify, Alignments, Alignment, FlexDirections, FlexDirection, ObjectFits, ObjectFit, ClipPaths, ClipPath, Repeats, Repeat, BackgroundSizes, BackgroundSize, Cursors, Cursor, Overflows, Overflow, Border, BorderStyle, BorderWidth, BoxShadow, Style, TransitState, WritingModes, WritingMode, DateTime, Icon, ListSeparatorTypes, EdgePosition, DefaultEdgePosition, ListSeparatorNone, ListSeparatorBorder, ListSeparatorGap, ListSeparator, DefaultListSeparatorNone, DefaultListSeparatorBorder, DefaultListSeparatorGap, DefaultListSeparator, ListBackgroundTypes, ListBackgroundNone, ListBackgroundStripe, ListBackground, DefaultListBackgroundNone, DefaultListBackgroundStripe, DefaultListBackground, ListDirections, ListDirection, ListContext, SlideButtonIcon, SlideButtonText, SlideButton, DefaultSlideButton, SlideButtonPosition, SlideNavigationButton, DefaultSlideNavigationButton, FormInputName, FormButtonColor, DefaultFormButtonColor, ModalStyle, ModalBreakPoint, DefaultModalBreakPoint, FormIdentifyTextFields, FormIdentifyTextField, FormIdentifyTextFieldValidations, FormIdentifyTextFieldPlaceholders, DefaultFormIdentifyTextField, FormIdentifyBooleanFields, FormIdentifyBooleanField, DefaultFormIdentifyBooleanField, showAction, closeAction, loadStyle, applyCss, onShow, onClose, onChangeState, getActionRoot, getCssVariables, show, close, ensureModalRoot, createApp, createFog, collection, loadActionTableRow, loadActionTableRows, loadActionTableQuery, loadActionTable, addChoiceAnswer, addFreeAnswer, removeAnswer, getAnsweredQuestion, getAnsweredQuestionIds, sendAnswer, sendAnswers, widget, onMount, onDestory, beforeUpdate, afterUpdate, tick, LAYOUT_COMPONENT_NAMES, PropStyles, ROUND_VARIANT, PositionProps, MetaProps, CustomizeCssProps, BrandStyleProps, CommonProps, ClickableProps, OverflowProps, BorderProps, PaddingProps, RadiusProps, BackgroundColorProps, BackgroundImageProps, ShadowProps, WithIconProps, LinkProps, AspectProps, FontFamilyProps, AVATAR_SIZE, AVATAR_SHAPE, AvatarProps, avatarPropsDefault, AVATAR_SIZE_STYLES, BUTTON_SIZE, BUTTON_THEME, BUTTON_VARIANT, BUTTON_ROUND, BUTTON_LINK_TARGET, BUTTON_ICON_ANGLE, ButtonProps, buttonPropsDefault, getButtonThemeStyles, BUTTON_SIZE_STYLES, BUTTON_ROUND_STYLES, BUTTON_WRAP_STYLES, ButtonOutlinedProps, buttonOutlinedPropsDefault, BUTTON_OUTLINED_SIZE_STYLES, getButtonOutlinedThemeStyles, BUTTON_OUTLINED_ROUND_STYLES, BUTTON_OUTLINED_WRAP_STYLES, BUTTON_TEXT_SIZE, BUTTON_TEXT_THEME, ButtonTextProps, BUTTON_TEXT_SIZE_STYLES, getButtonTextThemeStyles, CLOSE_BUTTON_PLACEMENT, CLOSE_BUTTON_ROUND, CLOSE_BUTTON_LABEL_PLACEMENT, CloseButtonProps, ICON_SIZE, ICON_VARIANTS, IconProps, ICON_SIZE_STYLES, IMAGE_ROUND_SHAPE, IMAGE_ASPECT_VARIANTS, ImageProps, LAYOUT_DISPLAY_TYPE, LayoutDisplayType, LAYOUT_DIRECTION, LayoutFlexDirection, LAYOUT_ALIGN, LayoutFlexAlign, LAYOUT_JUSTIFY, LayoutFlexJustify, LayerLayoutProps, SliderProps, SliderItemProps, LAYER_TEXT_SIZE, TEXT_THEME, TEXT_STYLE, LayerTextProps, getTextThemeStyles, TEXT_VARIANTS, TEXT_LINK_SIZE, TEXT_LINK_THEME, TEXT_LINK_UNDERLINE, TextLinkProps, TEXT_LINK_SIZE_STYLES, getTextLinkThemeStyles, ListProps, ListItemProps, LIST_ITEM_CONTEXT_KEY, ListItemContext, MultiColumnProps, MultiColumnItemProps, MULTI_COLUMN_ITEM_CONTEXT_KEY, MultiColumnItemContext, YoutubeProps, CountDownProps, CountDownValueType, CountDownValueProps, CountDownValues, ClipboardProps, CodeProps, BrandKit, getBrandKit, useBrandKit, ROUND_STYLES, VariantStyles, VariantDefinition, VariantDefinitionGroup, ASPECT_VARIANT, AspectVariantCode, ASPECT_VARIANTS, FontVariantMeta, FONT_FAMILY_VARIANT, FontFamilyVariantCode, FONT_FAMILY_VARIANTS, FONT_FAMILY_VARIANT_GROUPS, SHADOW_VARIANT, ShadowVariantCode, SHADOW_VARIANTS };
3137
2897
  export type { SystemConfig, ActionVariables, ActionEventHandler, ActionProps, ActionOptions, ActionHook, ActionHookLog, ActionChangeStateHook, SendFunction, PublishFunction, OnScrollContext, OnScrollFunction, ScrollDirection, LogLevel, Log, Event, ActionCloseHook, ShowTrigger, CloseTrigger, CollectionConfig, ActionTableRowRequestConfig, ActionTableRowsRequestConfig, ActionTableQueryRequestConfig, ActionTableRequestConfig };
3138
2898
  export { default as State } from './components/State.svelte';
3139
2899
  export { default as StateItem } from './components/StateItem.svelte';
@@ -3188,4 +2948,7 @@ export { default as FlexListItem } from './components-flex/list/ListItem.svelte'
3188
2948
  export { default as FlexMultiColumn } from './components-flex/multi-column/MultiColumn.svelte';
3189
2949
  export { default as FlexMultiColumnItem } from './components-flex/multi-column/MultiColumnItem.svelte';
3190
2950
  export { default as FlexYoutube } from './components-flex/youtube/Youtube.svelte';
2951
+ export { default as FlexCountDown } from './components-flex/count-down/CountDown.svelte';
2952
+ export { default as FlexCountDownValue } from './components-flex/count-down/CountDownValue.svelte';
2953
+ export { default as FlexClipCopy } from './components-flex/clip-copy/ClipCopy.svelte';
3191
2954
  export { default as ThumbnailPreview } from './components-flex/ThumbnailPreview.svelte';