@schematichq/schematic-components 0.7.0 → 0.7.3

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,69 +1,15 @@
1
- import { AnchorHTMLAttributes } from 'react';
2
- import { AreaHTMLAttributes } from 'react';
3
- import { AudioHTMLAttributes } from 'react';
4
- import { BaseHTMLAttributes } from 'react';
5
- import { BaseObject } from 'styled-components/dist/types';
6
- import { BlockquoteHTMLAttributes } from 'react';
7
- import { ButtonHTMLAttributes } from 'react';
8
- import { CanvasHTMLAttributes } from 'react';
9
- import { ColgroupHTMLAttributes } from 'react';
10
- import { ColHTMLAttributes } from 'react';
11
1
  import { Component } from 'react';
12
- import { ComponentClass } from 'react';
13
2
  import { Context } from 'react';
14
3
  import * as Craft from '@craftjs/core';
15
- import { DataHTMLAttributes } from 'react';
16
- import { DelHTMLAttributes } from 'react';
17
4
  import { DetailedHTMLProps } from 'react';
18
- import { DetailsHTMLAttributes } from 'react';
19
- import { DialogHTMLAttributes } from 'react';
20
- import { EmbedHTMLAttributes } from 'react';
21
- import { ExoticComponentWithDisplayName } from 'styled-components/dist/types';
22
5
  import { FastOmit } from 'styled-components';
23
- import { FieldsetHTMLAttributes } from 'react';
24
- import { FormHTMLAttributes } from 'react';
25
6
  import { ForwardRefExoticComponent } from 'react';
26
- import { FunctionComponent } from 'react';
27
7
  import { HTMLAttributes } from 'react';
28
- import { HtmlHTMLAttributes } from 'react';
29
- import { IframeHTMLAttributes } from 'react';
30
- import { ImgHTMLAttributes } from 'react';
31
8
  import { InputHTMLAttributes } from 'react';
32
- import { InsHTMLAttributes } from 'react';
33
9
  import { IStyledComponentBase } from 'styled-components/dist/types';
34
10
  import { JSX } from 'react/jsx-runtime';
35
- import { KeygenHTMLAttributes } from 'react';
36
- import { LabelHTMLAttributes } from 'react';
37
- import { LiHTMLAttributes } from 'react';
38
- import { LinkHTMLAttributes } from 'react';
39
- import { MapHTMLAttributes } from 'react';
40
- import { MenuHTMLAttributes } from 'react';
41
- import { MetaHTMLAttributes } from 'react';
42
- import { MeterHTMLAttributes } from 'react';
43
- import { ObjectHTMLAttributes } from 'react';
44
- import { OlHTMLAttributes } from 'react';
45
- import { OptgroupHTMLAttributes } from 'react';
46
- import { OptionHTMLAttributes } from 'react';
47
- import { OutputHTMLAttributes } from 'react';
48
- import { ParamHTMLAttributes } from 'react';
49
- import { ProgressHTMLAttributes } from 'react';
50
- import { QuoteHTMLAttributes } from 'react';
51
11
  import { RefAttributes } from 'react';
52
- import { ScriptHTMLAttributes } from 'react';
53
- import { SelectHTMLAttributes } from 'react';
54
- import { SourceHTMLAttributes } from 'react';
55
- import { StyleHTMLAttributes } from 'react';
56
12
  import { Substitute } from 'styled-components/dist/types';
57
- import { SVGLineElementAttributes } from 'react';
58
- import { SVGProps } from 'react';
59
- import { SVGTextElementAttributes } from 'react';
60
- import { TableHTMLAttributes } from 'react';
61
- import { TdHTMLAttributes } from 'react';
62
- import { TextareaHTMLAttributes } from 'react';
63
- import { ThHTMLAttributes } from 'react';
64
- import { TimeHTMLAttributes } from 'react';
65
- import { TrackHTMLAttributes } from 'react';
66
- import { VideoHTMLAttributes } from 'react';
67
13
 
68
14
  declare interface ApiResponse<T> {
69
15
  raw: Response;
@@ -168,25 +114,26 @@ declare interface BillingPriceResponseData {
168
114
  * @memberof BillingPriceResponseData
169
115
  */
170
116
  priceDecimal?: string | null;
117
+ /**
118
+ *
119
+ * @type {string}
120
+ * @memberof BillingPriceResponseData
121
+ */
122
+ scheme: string;
171
123
  }
172
124
 
173
- /**
174
- * Schematic API
175
- * Schematic API
176
- *
177
- * The version of the OpenAPI document: 0.1
178
- *
179
- *
180
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
181
- * https://openapi-generator.tech
182
- * Do not edit the class manually.
183
- */
184
125
  /**
185
126
  *
186
127
  * @export
187
128
  * @interface BillingPriceView
188
129
  */
189
130
  declare interface BillingPriceView {
131
+ /**
132
+ *
133
+ * @type {string}
134
+ * @memberof BillingPriceView
135
+ */
136
+ billingScheme: string;
190
137
  /**
191
138
  *
192
139
  * @type {Date}
@@ -247,6 +194,12 @@ declare interface BillingPriceView {
247
194
  * @memberof BillingPriceView
248
195
  */
249
196
  priceId: string;
197
+ /**
198
+ *
199
+ * @type {Array<BillingProductPriceTierResponseData>}
200
+ * @memberof BillingPriceView
201
+ */
202
+ priceTier: Array<BillingProductPriceTierResponseData>;
250
203
  /**
251
204
  *
252
205
  * @type {string}
@@ -365,23 +318,18 @@ declare interface BillingProductDetailResponseData {
365
318
  updatedAt: Date;
366
319
  }
367
320
 
368
- /**
369
- * Schematic API
370
- * Schematic API
371
- *
372
- * The version of the OpenAPI document: 0.1
373
- *
374
- *
375
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
376
- * https://openapi-generator.tech
377
- * Do not edit the class manually.
378
- */
379
321
  /**
380
322
  *
381
323
  * @export
382
324
  * @interface BillingProductForSubscriptionResponseData
383
325
  */
384
326
  declare interface BillingProductForSubscriptionResponseData {
327
+ /**
328
+ *
329
+ * @type {string}
330
+ * @memberof BillingProductForSubscriptionResponseData
331
+ */
332
+ billingScheme: string;
385
333
  /**
386
334
  *
387
335
  * @type {Date}
@@ -454,6 +402,12 @@ declare interface BillingProductForSubscriptionResponseData {
454
402
  * @memberof BillingProductForSubscriptionResponseData
455
403
  */
456
404
  priceId: string;
405
+ /**
406
+ *
407
+ * @type {Array<BillingProductPriceTierResponseData>}
408
+ * @memberof BillingProductForSubscriptionResponseData
409
+ */
410
+ priceTier: Array<BillingProductPriceTierResponseData>;
457
411
  /**
458
412
  *
459
413
  * @type {number}
@@ -480,6 +434,128 @@ declare interface BillingProductForSubscriptionResponseData {
480
434
  usageType: string;
481
435
  }
482
436
 
437
+ /**
438
+ * Schematic API
439
+ * Schematic API
440
+ *
441
+ * The version of the OpenAPI document: 0.1
442
+ *
443
+ *
444
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
445
+ * https://openapi-generator.tech
446
+ * Do not edit the class manually.
447
+ */
448
+ /**
449
+ *
450
+ * @export
451
+ * @interface BillingProductPriceTierResponseData
452
+ */
453
+ declare interface BillingProductPriceTierResponseData {
454
+ /**
455
+ *
456
+ * @type {number}
457
+ * @memberof BillingProductPriceTierResponseData
458
+ */
459
+ flatAmount?: number | null;
460
+ /**
461
+ *
462
+ * @type {number}
463
+ * @memberof BillingProductPriceTierResponseData
464
+ */
465
+ perUnitPrice: number;
466
+ /**
467
+ *
468
+ * @type {number}
469
+ * @memberof BillingProductPriceTierResponseData
470
+ */
471
+ upTo?: number | null;
472
+ }
473
+
474
+ /**
475
+ * Schematic API
476
+ * Schematic API
477
+ *
478
+ * The version of the OpenAPI document: 0.1
479
+ *
480
+ *
481
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
482
+ * https://openapi-generator.tech
483
+ * Do not edit the class manually.
484
+ */
485
+ /**
486
+ *
487
+ * @export
488
+ * @interface BillingProductResponseData
489
+ */
490
+ declare interface BillingProductResponseData {
491
+ /**
492
+ *
493
+ * @type {string}
494
+ * @memberof BillingProductResponseData
495
+ */
496
+ accountId: string;
497
+ /**
498
+ *
499
+ * @type {Date}
500
+ * @memberof BillingProductResponseData
501
+ */
502
+ createdAt: Date;
503
+ /**
504
+ *
505
+ * @type {string}
506
+ * @memberof BillingProductResponseData
507
+ */
508
+ currency: string;
509
+ /**
510
+ *
511
+ * @type {string}
512
+ * @memberof BillingProductResponseData
513
+ */
514
+ environmentId: string;
515
+ /**
516
+ *
517
+ * @type {string}
518
+ * @memberof BillingProductResponseData
519
+ */
520
+ externalId: string;
521
+ /**
522
+ *
523
+ * @type {string}
524
+ * @memberof BillingProductResponseData
525
+ */
526
+ name: string;
527
+ /**
528
+ *
529
+ * @type {number}
530
+ * @memberof BillingProductResponseData
531
+ */
532
+ price: number;
533
+ /**
534
+ *
535
+ * @type {string}
536
+ * @memberof BillingProductResponseData
537
+ */
538
+ priceDecimal?: string | null;
539
+ /**
540
+ *
541
+ * @type {string}
542
+ * @memberof BillingProductResponseData
543
+ */
544
+ productId: string;
545
+ /**
546
+ *
547
+ * @type {number}
548
+ * @memberof BillingProductResponseData
549
+ */
550
+ quantity: number;
551
+ /**
552
+ *
553
+ * @type {Date}
554
+ * @memberof BillingProductResponseData
555
+ */
556
+ updatedAt: Date;
557
+ }
558
+
483
559
  /**
484
560
  * Schematic API
485
561
  * Schematic API
@@ -871,6 +947,12 @@ export declare type BoxProps = ComponentProps & {
871
947
 
872
948
  export declare const Button: ForwardRefExoticComponent<ButtonProps & RefAttributes<HTMLButtonElement>>;
873
949
 
950
+ export declare const ButtonElement: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_2> & HTMLAttributes<HTMLDivElement> & {
951
+ portal?: HTMLElement | null;
952
+ } & RefAttributes<HTMLDivElement | null>>;
953
+
954
+ export declare type ButtonElementProps = DesignProps_2;
955
+
874
956
  export declare interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
875
957
  color?: ButtonStyleTypes;
876
958
  size?: ButtonSizeTypes;
@@ -1791,16 +1873,7 @@ declare interface Consume {
1791
1873
  contentType: string;
1792
1874
  }
1793
1875
 
1794
- export declare const Container: IStyledComponentBase<"web", FastOmit<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
1795
- $viewport?: {
1796
- sm?: TransientCSSProperties;
1797
- md?: TransientCSSProperties;
1798
- lg?: TransientCSSProperties;
1799
- xl?: TransientCSSProperties;
1800
- "2xl"?: TransientCSSProperties;
1801
- [key: string]: TransientCSSProperties | undefined;
1802
- };
1803
- }, never>> & string;
1876
+ export declare const Container: IStyledComponentBase<"web", FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
1804
1877
 
1805
1878
  /**
1806
1879
  * Schematic API
@@ -2040,7 +2113,37 @@ export declare interface DesignProps {
2040
2113
  visibleFeatures?: string[];
2041
2114
  }
2042
2115
 
2116
+ declare interface DesignProps_10 {
2117
+ header: {
2118
+ isVisible: boolean;
2119
+ fontStyle: FontStyle;
2120
+ prefix: string;
2121
+ };
2122
+ price: {
2123
+ isVisible: boolean;
2124
+ fontStyle: FontStyle;
2125
+ };
2126
+ contractEndDate: {
2127
+ isVisible: boolean;
2128
+ fontStyle: FontStyle;
2129
+ prefix: string;
2130
+ };
2131
+ }
2132
+
2043
2133
  declare interface DesignProps_2 {
2134
+ button: {
2135
+ link: string;
2136
+ openInNewTab: boolean;
2137
+ text: string;
2138
+ style: ComponentStyle;
2139
+ size: ButtonSizeTypes;
2140
+ fullWidth: boolean;
2141
+ alignment: EmbedButtonAlignment;
2142
+ selfAlignment: EmbedButtonSelfAlignment;
2143
+ };
2144
+ }
2145
+
2146
+ declare interface DesignProps_3 {
2044
2147
  header: {
2045
2148
  isVisible: boolean;
2046
2149
  fontStyle: FontStyle;
@@ -2063,7 +2166,7 @@ declare interface DesignProps_2 {
2063
2166
  };
2064
2167
  }
2065
2168
 
2066
- declare interface DesignProps_3 {
2169
+ declare interface DesignProps_4 {
2067
2170
  isVisible: boolean;
2068
2171
  header: {
2069
2172
  fontStyle: FontStyle;
@@ -2086,7 +2189,7 @@ declare interface DesignProps_3 {
2086
2189
  visibleFeatures?: string[];
2087
2190
  }
2088
2191
 
2089
- declare interface DesignProps_4 {
2192
+ declare interface DesignProps_5 {
2090
2193
  header: {
2091
2194
  isVisible: boolean;
2092
2195
  fontStyle: FontStyle;
@@ -2097,7 +2200,7 @@ declare interface DesignProps_4 {
2097
2200
  };
2098
2201
  }
2099
2202
 
2100
- declare interface DesignProps_5 {
2203
+ declare interface DesignProps_6 {
2101
2204
  header: {
2102
2205
  isVisible: boolean;
2103
2206
  title: {
@@ -2124,7 +2227,7 @@ declare interface DesignProps_5 {
2124
2227
  };
2125
2228
  }
2126
2229
 
2127
- declare interface DesignProps_6 {
2230
+ declare interface DesignProps_7 {
2128
2231
  showPeriodToggle: boolean;
2129
2232
  showDiscount: boolean;
2130
2233
  header: {
@@ -2162,7 +2265,15 @@ declare interface DesignProps_6 {
2162
2265
  };
2163
2266
  }
2164
2267
 
2165
- declare interface DesignProps_7 {
2268
+ declare interface DesignProps_8 {
2269
+ text: {
2270
+ fontStyle: FontStyle;
2271
+ alignment: ComponentProps["$textAlign"];
2272
+ textContent: string;
2273
+ };
2274
+ }
2275
+
2276
+ declare interface DesignProps_9 {
2166
2277
  button: {
2167
2278
  text: string;
2168
2279
  style: ComponentStyle;
@@ -2172,23 +2283,6 @@ declare interface DesignProps_7 {
2172
2283
  };
2173
2284
  }
2174
2285
 
2175
- declare interface DesignProps_8 {
2176
- header: {
2177
- isVisible: boolean;
2178
- fontStyle: FontStyle;
2179
- prefix: string;
2180
- };
2181
- price: {
2182
- isVisible: boolean;
2183
- fontStyle: FontStyle;
2184
- };
2185
- contractEndDate: {
2186
- isVisible: boolean;
2187
- fontStyle: FontStyle;
2188
- prefix: string;
2189
- };
2190
- }
2191
-
2192
2286
  declare const Element_2: IStyledComponentBase<"web", FastOmit<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
2193
2287
  $viewport?: {
2194
2288
  sm?: TransientCSSProperties;
@@ -2212,6 +2306,7 @@ $size?: ButtonSizeTypes;
2212
2306
  $color?: EmbedButtonColor;
2213
2307
  $variant?: EmbedButtonVariant;
2214
2308
  $alignment?: EmbedButtonAlignment;
2309
+ $selfAlignment?: EmbedButtonSelfAlignment;
2215
2310
  $fullWidth?: boolean;
2216
2311
  }>> & string & Omit<ForwardRefExoticComponent<ButtonProps & RefAttributes<HTMLButtonElement>>, keyof Component<any, {}, any>>;
2217
2312
 
@@ -2219,6 +2314,8 @@ export declare type EmbedButtonAlignment = "start" | "center" | "end";
2219
2314
 
2220
2315
  export declare type EmbedButtonColor = "primary" | "secondary" | "danger";
2221
2316
 
2317
+ export declare type EmbedButtonSelfAlignment = "start" | "center" | "end";
2318
+
2222
2319
  export declare type EmbedButtonVariant = "filled" | "outline" | "ghost" | "text";
2223
2320
 
2224
2321
  export declare const EmbedContext: Context<EmbedContextProps>;
@@ -3317,11 +3414,11 @@ declare interface InvoiceResponseData {
3317
3414
  url?: string | null;
3318
3415
  }
3319
3416
 
3320
- export declare const Invoices: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_2> & {
3417
+ export declare const Invoices: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_3> & {
3321
3418
  data?: InvoiceResponseData[];
3322
3419
  } & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
3323
3420
 
3324
- export declare type InvoicesProps = DesignProps_2 & {
3421
+ export declare type InvoicesProps = DesignProps_3 & {
3325
3422
  data?: InvoiceResponseData[];
3326
3423
  };
3327
3424
 
@@ -3398,9 +3495,9 @@ $isLoading?: boolean;
3398
3495
 
3399
3496
  declare function mapValues(data: any, fn: (item: any) => any): {};
3400
3497
 
3401
- export declare const MeteredFeatures: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_3> & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
3498
+ export declare const MeteredFeatures: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_4> & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
3402
3499
 
3403
- export declare type MeteredFeaturesProps = DesignProps_3;
3500
+ export declare type MeteredFeaturesProps = DesignProps_4;
3404
3501
 
3405
3502
  declare interface Middleware {
3406
3503
  pre?(context: RequestContext): Promise<FetchParams | void>;
@@ -3428,7 +3525,18 @@ declare interface ModalProps extends React.HTMLAttributes<HTMLElement> {
3428
3525
 
3429
3526
  declare type ModelPropertyNaming = "camelCase" | "snake_case" | "PascalCase" | "original";
3430
3527
 
3431
- export declare const PaymentMethod: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_4> & HTMLAttributes<HTMLDivElement> & {
3528
+ export declare const Notice: IStyledComponentBase<"web", FastOmit<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
3529
+ $viewport?: {
3530
+ sm?: TransientCSSProperties;
3531
+ md?: TransientCSSProperties;
3532
+ lg?: TransientCSSProperties;
3533
+ xl?: TransientCSSProperties;
3534
+ "2xl"?: TransientCSSProperties;
3535
+ [key: string]: TransientCSSProperties | undefined;
3536
+ };
3537
+ }, never>> & string;
3538
+
3539
+ export declare const PaymentMethod: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_5> & HTMLAttributes<HTMLDivElement> & {
3432
3540
  portal?: HTMLElement | null;
3433
3541
  allowEdit?: boolean;
3434
3542
  } & RefAttributes<HTMLDivElement | null>>;
@@ -3439,7 +3547,7 @@ declare interface PaymentMethodDetailsProps {
3439
3547
  setPaymentMethodId?: (id: string) => void;
3440
3548
  }
3441
3549
 
3442
- export declare type PaymentMethodProps = DesignProps_4;
3550
+ export declare type PaymentMethodProps = DesignProps_5;
3443
3551
 
3444
3552
  /**
3445
3553
  * Schematic API
@@ -3774,6 +3882,12 @@ declare interface PlanEntitlementResponseData {
3774
3882
  * @memberof PlanEntitlementResponseData
3775
3883
  */
3776
3884
  updatedAt: Date;
3885
+ /**
3886
+ *
3887
+ * @type {BillingProductResponseData}
3888
+ * @memberof PlanEntitlementResponseData
3889
+ */
3890
+ usageBasedProduct?: BillingProductResponseData;
3777
3891
  /**
3778
3892
  *
3779
3893
  * @type {boolean}
@@ -3806,11 +3920,11 @@ declare interface PlanEntitlementResponseData {
3806
3920
  valueType: string;
3807
3921
  }
3808
3922
 
3809
- export declare const PlanManager: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_5> & HTMLAttributes<HTMLDivElement> & {
3923
+ export declare const PlanManager: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_6> & HTMLAttributes<HTMLDivElement> & {
3810
3924
  portal?: HTMLElement | null;
3811
3925
  } & RefAttributes<HTMLDivElement | null>>;
3812
3926
 
3813
- export declare type PlanManagerProps = DesignProps_5;
3927
+ export declare type PlanManagerProps = DesignProps_6;
3814
3928
 
3815
3929
  /**
3816
3930
  * Schematic API
@@ -3991,17 +4105,6 @@ declare interface PreviewObjectResponseData {
3991
4105
  name: string;
3992
4106
  }
3993
4107
 
3994
- /**
3995
- * Schematic API
3996
- * Schematic API
3997
- *
3998
- * The version of the OpenAPI document: 0.1
3999
- *
4000
- *
4001
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4002
- * https://openapi-generator.tech
4003
- * Do not edit the class manually.
4004
- */
4005
4108
  /**
4006
4109
  * The created resource
4007
4110
  * @export
@@ -4020,6 +4123,12 @@ declare interface PreviewSubscriptionChangeResponseData {
4020
4123
  * @memberof PreviewSubscriptionChangeResponseData
4021
4124
  */
4022
4125
  dueNow: number;
4126
+ /**
4127
+ *
4128
+ * @type {PreviewSubscriptionFinanceResponseData}
4129
+ * @memberof PreviewSubscriptionChangeResponseData
4130
+ */
4131
+ finance?: PreviewSubscriptionFinanceResponseData;
4023
4132
  /**
4024
4133
  *
4025
4134
  * @type {number}
@@ -4056,15 +4165,88 @@ declare interface PreviewSubscriptionChangeResponseData {
4056
4165
  * @memberof PreviewSubscriptionChangeResponseData
4057
4166
  */
4058
4167
  trialEnd?: Date | null;
4168
+ /**
4169
+ *
4170
+ * @type {Array<FeatureUsageResponseData>}
4171
+ * @memberof PreviewSubscriptionChangeResponseData
4172
+ */
4173
+ usageViolations: Array<FeatureUsageResponseData>;
4059
4174
  }
4060
4175
 
4061
- export declare const PricingTable: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_6> & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
4062
-
4063
- export declare type PricingTableProps = DesignProps_6;
4064
-
4065
- export declare const ProgressBar: ({ progress, value, total, color, bgColor, barWidth, ...props }: ProgressBarProps) => JSX.Element;
4066
-
4067
- export declare interface ProgressBarProps extends React.ComponentPropsWithoutRef<typeof Flex> {
4176
+ /**
4177
+ * Schematic API
4178
+ * Schematic API
4179
+ *
4180
+ * The version of the OpenAPI document: 0.1
4181
+ *
4182
+ *
4183
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
4184
+ * https://openapi-generator.tech
4185
+ * Do not edit the class manually.
4186
+ */
4187
+ /**
4188
+ *
4189
+ * @export
4190
+ * @interface PreviewSubscriptionFinanceResponseData
4191
+ */
4192
+ declare interface PreviewSubscriptionFinanceResponseData {
4193
+ /**
4194
+ *
4195
+ * @type {number}
4196
+ * @memberof PreviewSubscriptionFinanceResponseData
4197
+ */
4198
+ amountOff: number;
4199
+ /**
4200
+ *
4201
+ * @type {number}
4202
+ * @memberof PreviewSubscriptionFinanceResponseData
4203
+ */
4204
+ dueNow: number;
4205
+ /**
4206
+ *
4207
+ * @type {number}
4208
+ * @memberof PreviewSubscriptionFinanceResponseData
4209
+ */
4210
+ newCharges: number;
4211
+ /**
4212
+ *
4213
+ * @type {number}
4214
+ * @memberof PreviewSubscriptionFinanceResponseData
4215
+ */
4216
+ percentOff: number;
4217
+ /**
4218
+ *
4219
+ * @type {Date}
4220
+ * @memberof PreviewSubscriptionFinanceResponseData
4221
+ */
4222
+ periodStart: Date;
4223
+ /**
4224
+ *
4225
+ * @type {boolean}
4226
+ * @memberof PreviewSubscriptionFinanceResponseData
4227
+ */
4228
+ promoCodeApplied: boolean;
4229
+ /**
4230
+ *
4231
+ * @type {number}
4232
+ * @memberof PreviewSubscriptionFinanceResponseData
4233
+ */
4234
+ proration: number;
4235
+ /**
4236
+ *
4237
+ * @type {Date}
4238
+ * @memberof PreviewSubscriptionFinanceResponseData
4239
+ */
4240
+ trialEnd?: Date | null;
4241
+ }
4242
+
4243
+ export declare const PricingTable: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_7> & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
4244
+
4245
+ export declare type PricingTableProps = DesignProps_7;
4246
+
4247
+ export declare const ProgressBar: ({ progress, value, total, color, bgColor, barWidth, ...props }: ProgressBarProps) => JSX.Element;
4248
+
4249
+ export declare interface ProgressBarProps extends React.ComponentPropsWithoutRef<typeof Flex> {
4068
4250
  progress: number;
4069
4251
  value: number;
4070
4252
  total?: number | string;
@@ -4519,781 +4701,7 @@ declare interface StripeEmbedInfo {
4519
4701
 
4520
4702
  export declare const StyledCard: IStyledComponentBase<"web", FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
4521
4703
 
4522
- declare const Text_2: IStyledComponentBase<"web", Substitute<FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4523
- $viewport?: {
4524
- sm?: TransientCSSProperties;
4525
- md?: TransientCSSProperties;
4526
- lg?: TransientCSSProperties;
4527
- xl?: TransientCSSProperties;
4528
- "2xl"?: TransientCSSProperties;
4529
- [key: string]: TransientCSSProperties | undefined;
4530
- };
4531
- }, DetailedHTMLProps<ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4532
- $viewport?: {
4533
- sm?: TransientCSSProperties;
4534
- md?: TransientCSSProperties;
4535
- lg?: TransientCSSProperties;
4536
- xl?: TransientCSSProperties;
4537
- "2xl"?: TransientCSSProperties;
4538
- [key: string]: TransientCSSProperties | undefined;
4539
- };
4540
- }, DetailedHTMLProps<MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4541
- $viewport?: {
4542
- sm?: TransientCSSProperties;
4543
- md?: TransientCSSProperties;
4544
- lg?: TransientCSSProperties;
4545
- xl?: TransientCSSProperties;
4546
- "2xl"?: TransientCSSProperties;
4547
- [key: string]: TransientCSSProperties | undefined;
4548
- };
4549
- }, DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4550
- $viewport?: {
4551
- sm?: TransientCSSProperties;
4552
- md?: TransientCSSProperties;
4553
- lg?: TransientCSSProperties;
4554
- xl?: TransientCSSProperties;
4555
- "2xl"?: TransientCSSProperties;
4556
- [key: string]: TransientCSSProperties | undefined;
4557
- };
4558
- }, DetailedHTMLProps<HTMLAttributes<HTMLPreElement>, HTMLPreElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4559
- $viewport?: {
4560
- sm?: TransientCSSProperties;
4561
- md?: TransientCSSProperties;
4562
- lg?: TransientCSSProperties;
4563
- xl?: TransientCSSProperties;
4564
- "2xl"?: TransientCSSProperties;
4565
- [key: string]: TransientCSSProperties | undefined;
4566
- };
4567
- }, DetailedHTMLProps<DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4568
- $viewport?: {
4569
- sm?: TransientCSSProperties;
4570
- md?: TransientCSSProperties;
4571
- lg?: TransientCSSProperties;
4572
- xl?: TransientCSSProperties;
4573
- "2xl"?: TransientCSSProperties;
4574
- [key: string]: TransientCSSProperties | undefined;
4575
- };
4576
- }, SVGProps<SVGClipPathElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4577
- $viewport?: {
4578
- sm?: TransientCSSProperties;
4579
- md?: TransientCSSProperties;
4580
- lg?: TransientCSSProperties;
4581
- xl?: TransientCSSProperties;
4582
- "2xl"?: TransientCSSProperties;
4583
- [key: string]: TransientCSSProperties | undefined;
4584
- };
4585
- }, SVGProps<SVGMaskElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4586
- $viewport?: {
4587
- sm?: TransientCSSProperties;
4588
- md?: TransientCSSProperties;
4589
- lg?: TransientCSSProperties;
4590
- xl?: TransientCSSProperties;
4591
- "2xl"?: TransientCSSProperties;
4592
- [key: string]: TransientCSSProperties | undefined;
4593
- };
4594
- }, SVGProps<SVGMarkerElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4595
- $viewport?: {
4596
- sm?: TransientCSSProperties;
4597
- md?: TransientCSSProperties;
4598
- lg?: TransientCSSProperties;
4599
- xl?: TransientCSSProperties;
4600
- "2xl"?: TransientCSSProperties;
4601
- [key: string]: TransientCSSProperties | undefined;
4602
- };
4603
- }, DetailedHTMLProps<LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4604
- $viewport?: {
4605
- sm?: TransientCSSProperties;
4606
- md?: TransientCSSProperties;
4607
- lg?: TransientCSSProperties;
4608
- xl?: TransientCSSProperties;
4609
- "2xl"?: TransientCSSProperties;
4610
- [key: string]: TransientCSSProperties | undefined;
4611
- };
4612
- }, DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4613
- $viewport?: {
4614
- sm?: TransientCSSProperties;
4615
- md?: TransientCSSProperties;
4616
- lg?: TransientCSSProperties;
4617
- xl?: TransientCSSProperties;
4618
- "2xl"?: TransientCSSProperties;
4619
- [key: string]: TransientCSSProperties | undefined;
4620
- };
4621
- }, DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4622
- $viewport?: {
4623
- sm?: TransientCSSProperties;
4624
- md?: TransientCSSProperties;
4625
- lg?: TransientCSSProperties;
4626
- xl?: TransientCSSProperties;
4627
- "2xl"?: TransientCSSProperties;
4628
- [key: string]: TransientCSSProperties | undefined;
4629
- };
4630
- }, DetailedHTMLProps<AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4631
- $viewport?: {
4632
- sm?: TransientCSSProperties;
4633
- md?: TransientCSSProperties;
4634
- lg?: TransientCSSProperties;
4635
- xl?: TransientCSSProperties;
4636
- "2xl"?: TransientCSSProperties;
4637
- [key: string]: TransientCSSProperties | undefined;
4638
- };
4639
- }, DetailedHTMLProps<BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4640
- $viewport?: {
4641
- sm?: TransientCSSProperties;
4642
- md?: TransientCSSProperties;
4643
- lg?: TransientCSSProperties;
4644
- xl?: TransientCSSProperties;
4645
- "2xl"?: TransientCSSProperties;
4646
- [key: string]: TransientCSSProperties | undefined;
4647
- };
4648
- }, DetailedHTMLProps<BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4649
- $viewport?: {
4650
- sm?: TransientCSSProperties;
4651
- md?: TransientCSSProperties;
4652
- lg?: TransientCSSProperties;
4653
- xl?: TransientCSSProperties;
4654
- "2xl"?: TransientCSSProperties;
4655
- [key: string]: TransientCSSProperties | undefined;
4656
- };
4657
- }, DetailedHTMLProps<HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4658
- $viewport?: {
4659
- sm?: TransientCSSProperties;
4660
- md?: TransientCSSProperties;
4661
- lg?: TransientCSSProperties;
4662
- xl?: TransientCSSProperties;
4663
- "2xl"?: TransientCSSProperties;
4664
- [key: string]: TransientCSSProperties | undefined;
4665
- };
4666
- }, DetailedHTMLProps<HTMLAttributes<HTMLBRElement>, HTMLBRElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4667
- $viewport?: {
4668
- sm?: TransientCSSProperties;
4669
- md?: TransientCSSProperties;
4670
- lg?: TransientCSSProperties;
4671
- xl?: TransientCSSProperties;
4672
- "2xl"?: TransientCSSProperties;
4673
- [key: string]: TransientCSSProperties | undefined;
4674
- };
4675
- }, DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4676
- $viewport?: {
4677
- sm?: TransientCSSProperties;
4678
- md?: TransientCSSProperties;
4679
- lg?: TransientCSSProperties;
4680
- xl?: TransientCSSProperties;
4681
- "2xl"?: TransientCSSProperties;
4682
- [key: string]: TransientCSSProperties | undefined;
4683
- };
4684
- }, DetailedHTMLProps<CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4685
- $viewport?: {
4686
- sm?: TransientCSSProperties;
4687
- md?: TransientCSSProperties;
4688
- lg?: TransientCSSProperties;
4689
- xl?: TransientCSSProperties;
4690
- "2xl"?: TransientCSSProperties;
4691
- [key: string]: TransientCSSProperties | undefined;
4692
- };
4693
- }, DetailedHTMLProps<ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4694
- $viewport?: {
4695
- sm?: TransientCSSProperties;
4696
- md?: TransientCSSProperties;
4697
- lg?: TransientCSSProperties;
4698
- xl?: TransientCSSProperties;
4699
- "2xl"?: TransientCSSProperties;
4700
- [key: string]: TransientCSSProperties | undefined;
4701
- };
4702
- }, DetailedHTMLProps<ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4703
- $viewport?: {
4704
- sm?: TransientCSSProperties;
4705
- md?: TransientCSSProperties;
4706
- lg?: TransientCSSProperties;
4707
- xl?: TransientCSSProperties;
4708
- "2xl"?: TransientCSSProperties;
4709
- [key: string]: TransientCSSProperties | undefined;
4710
- };
4711
- }, DetailedHTMLProps<HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4712
- $viewport?: {
4713
- sm?: TransientCSSProperties;
4714
- md?: TransientCSSProperties;
4715
- lg?: TransientCSSProperties;
4716
- xl?: TransientCSSProperties;
4717
- "2xl"?: TransientCSSProperties;
4718
- [key: string]: TransientCSSProperties | undefined;
4719
- };
4720
- }, DetailedHTMLProps<DelHTMLAttributes<HTMLModElement>, HTMLModElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4721
- $viewport?: {
4722
- sm?: TransientCSSProperties;
4723
- md?: TransientCSSProperties;
4724
- lg?: TransientCSSProperties;
4725
- xl?: TransientCSSProperties;
4726
- "2xl"?: TransientCSSProperties;
4727
- [key: string]: TransientCSSProperties | undefined;
4728
- };
4729
- }, DetailedHTMLProps<DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4730
- $viewport?: {
4731
- sm?: TransientCSSProperties;
4732
- md?: TransientCSSProperties;
4733
- lg?: TransientCSSProperties;
4734
- xl?: TransientCSSProperties;
4735
- "2xl"?: TransientCSSProperties;
4736
- [key: string]: TransientCSSProperties | undefined;
4737
- };
4738
- }, DetailedHTMLProps<DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4739
- $viewport?: {
4740
- sm?: TransientCSSProperties;
4741
- md?: TransientCSSProperties;
4742
- lg?: TransientCSSProperties;
4743
- xl?: TransientCSSProperties;
4744
- "2xl"?: TransientCSSProperties;
4745
- [key: string]: TransientCSSProperties | undefined;
4746
- };
4747
- }, DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4748
- $viewport?: {
4749
- sm?: TransientCSSProperties;
4750
- md?: TransientCSSProperties;
4751
- lg?: TransientCSSProperties;
4752
- xl?: TransientCSSProperties;
4753
- "2xl"?: TransientCSSProperties;
4754
- [key: string]: TransientCSSProperties | undefined;
4755
- };
4756
- }, DetailedHTMLProps<HTMLAttributes<HTMLDListElement>, HTMLDListElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4757
- $viewport?: {
4758
- sm?: TransientCSSProperties;
4759
- md?: TransientCSSProperties;
4760
- lg?: TransientCSSProperties;
4761
- xl?: TransientCSSProperties;
4762
- "2xl"?: TransientCSSProperties;
4763
- [key: string]: TransientCSSProperties | undefined;
4764
- };
4765
- }, DetailedHTMLProps<EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4766
- $viewport?: {
4767
- sm?: TransientCSSProperties;
4768
- md?: TransientCSSProperties;
4769
- lg?: TransientCSSProperties;
4770
- xl?: TransientCSSProperties;
4771
- "2xl"?: TransientCSSProperties;
4772
- [key: string]: TransientCSSProperties | undefined;
4773
- };
4774
- }, DetailedHTMLProps<FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4775
- $viewport?: {
4776
- sm?: TransientCSSProperties;
4777
- md?: TransientCSSProperties;
4778
- lg?: TransientCSSProperties;
4779
- xl?: TransientCSSProperties;
4780
- "2xl"?: TransientCSSProperties;
4781
- [key: string]: TransientCSSProperties | undefined;
4782
- };
4783
- }, DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4784
- $viewport?: {
4785
- sm?: TransientCSSProperties;
4786
- md?: TransientCSSProperties;
4787
- lg?: TransientCSSProperties;
4788
- xl?: TransientCSSProperties;
4789
- "2xl"?: TransientCSSProperties;
4790
- [key: string]: TransientCSSProperties | undefined;
4791
- };
4792
- }, DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4793
- $viewport?: {
4794
- sm?: TransientCSSProperties;
4795
- md?: TransientCSSProperties;
4796
- lg?: TransientCSSProperties;
4797
- xl?: TransientCSSProperties;
4798
- "2xl"?: TransientCSSProperties;
4799
- [key: string]: TransientCSSProperties | undefined;
4800
- };
4801
- }, DetailedHTMLProps<HTMLAttributes<HTMLHRElement>, HTMLHRElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4802
- $viewport?: {
4803
- sm?: TransientCSSProperties;
4804
- md?: TransientCSSProperties;
4805
- lg?: TransientCSSProperties;
4806
- xl?: TransientCSSProperties;
4807
- "2xl"?: TransientCSSProperties;
4808
- [key: string]: TransientCSSProperties | undefined;
4809
- };
4810
- }, DetailedHTMLProps<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4811
- $viewport?: {
4812
- sm?: TransientCSSProperties;
4813
- md?: TransientCSSProperties;
4814
- lg?: TransientCSSProperties;
4815
- xl?: TransientCSSProperties;
4816
- "2xl"?: TransientCSSProperties;
4817
- [key: string]: TransientCSSProperties | undefined;
4818
- };
4819
- }, DetailedHTMLProps<IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4820
- $viewport?: {
4821
- sm?: TransientCSSProperties;
4822
- md?: TransientCSSProperties;
4823
- lg?: TransientCSSProperties;
4824
- xl?: TransientCSSProperties;
4825
- "2xl"?: TransientCSSProperties;
4826
- [key: string]: TransientCSSProperties | undefined;
4827
- };
4828
- }, DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4829
- $viewport?: {
4830
- sm?: TransientCSSProperties;
4831
- md?: TransientCSSProperties;
4832
- lg?: TransientCSSProperties;
4833
- xl?: TransientCSSProperties;
4834
- "2xl"?: TransientCSSProperties;
4835
- [key: string]: TransientCSSProperties | undefined;
4836
- };
4837
- }, DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4838
- $viewport?: {
4839
- sm?: TransientCSSProperties;
4840
- md?: TransientCSSProperties;
4841
- lg?: TransientCSSProperties;
4842
- xl?: TransientCSSProperties;
4843
- "2xl"?: TransientCSSProperties;
4844
- [key: string]: TransientCSSProperties | undefined;
4845
- };
4846
- }, DetailedHTMLProps<InsHTMLAttributes<HTMLModElement>, HTMLModElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4847
- $viewport?: {
4848
- sm?: TransientCSSProperties;
4849
- md?: TransientCSSProperties;
4850
- lg?: TransientCSSProperties;
4851
- xl?: TransientCSSProperties;
4852
- "2xl"?: TransientCSSProperties;
4853
- [key: string]: TransientCSSProperties | undefined;
4854
- };
4855
- }, DetailedHTMLProps<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4856
- $viewport?: {
4857
- sm?: TransientCSSProperties;
4858
- md?: TransientCSSProperties;
4859
- lg?: TransientCSSProperties;
4860
- xl?: TransientCSSProperties;
4861
- "2xl"?: TransientCSSProperties;
4862
- [key: string]: TransientCSSProperties | undefined;
4863
- };
4864
- }, DetailedHTMLProps<HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4865
- $viewport?: {
4866
- sm?: TransientCSSProperties;
4867
- md?: TransientCSSProperties;
4868
- lg?: TransientCSSProperties;
4869
- xl?: TransientCSSProperties;
4870
- "2xl"?: TransientCSSProperties;
4871
- [key: string]: TransientCSSProperties | undefined;
4872
- };
4873
- }, DetailedHTMLProps<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4874
- $viewport?: {
4875
- sm?: TransientCSSProperties;
4876
- md?: TransientCSSProperties;
4877
- lg?: TransientCSSProperties;
4878
- xl?: TransientCSSProperties;
4879
- "2xl"?: TransientCSSProperties;
4880
- [key: string]: TransientCSSProperties | undefined;
4881
- };
4882
- }, DetailedHTMLProps<MenuHTMLAttributes<HTMLElement>, HTMLElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4883
- $viewport?: {
4884
- sm?: TransientCSSProperties;
4885
- md?: TransientCSSProperties;
4886
- lg?: TransientCSSProperties;
4887
- xl?: TransientCSSProperties;
4888
- "2xl"?: TransientCSSProperties;
4889
- [key: string]: TransientCSSProperties | undefined;
4890
- };
4891
- }, DetailedHTMLProps<MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4892
- $viewport?: {
4893
- sm?: TransientCSSProperties;
4894
- md?: TransientCSSProperties;
4895
- lg?: TransientCSSProperties;
4896
- xl?: TransientCSSProperties;
4897
- "2xl"?: TransientCSSProperties;
4898
- [key: string]: TransientCSSProperties | undefined;
4899
- };
4900
- }, DetailedHTMLProps<MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4901
- $viewport?: {
4902
- sm?: TransientCSSProperties;
4903
- md?: TransientCSSProperties;
4904
- lg?: TransientCSSProperties;
4905
- xl?: TransientCSSProperties;
4906
- "2xl"?: TransientCSSProperties;
4907
- [key: string]: TransientCSSProperties | undefined;
4908
- };
4909
- }, DetailedHTMLProps<OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4910
- $viewport?: {
4911
- sm?: TransientCSSProperties;
4912
- md?: TransientCSSProperties;
4913
- lg?: TransientCSSProperties;
4914
- xl?: TransientCSSProperties;
4915
- "2xl"?: TransientCSSProperties;
4916
- [key: string]: TransientCSSProperties | undefined;
4917
- };
4918
- }, DetailedHTMLProps<OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4919
- $viewport?: {
4920
- sm?: TransientCSSProperties;
4921
- md?: TransientCSSProperties;
4922
- lg?: TransientCSSProperties;
4923
- xl?: TransientCSSProperties;
4924
- "2xl"?: TransientCSSProperties;
4925
- [key: string]: TransientCSSProperties | undefined;
4926
- };
4927
- }, DetailedHTMLProps<OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4928
- $viewport?: {
4929
- sm?: TransientCSSProperties;
4930
- md?: TransientCSSProperties;
4931
- lg?: TransientCSSProperties;
4932
- xl?: TransientCSSProperties;
4933
- "2xl"?: TransientCSSProperties;
4934
- [key: string]: TransientCSSProperties | undefined;
4935
- };
4936
- }, DetailedHTMLProps<OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4937
- $viewport?: {
4938
- sm?: TransientCSSProperties;
4939
- md?: TransientCSSProperties;
4940
- lg?: TransientCSSProperties;
4941
- xl?: TransientCSSProperties;
4942
- "2xl"?: TransientCSSProperties;
4943
- [key: string]: TransientCSSProperties | undefined;
4944
- };
4945
- }, DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4946
- $viewport?: {
4947
- sm?: TransientCSSProperties;
4948
- md?: TransientCSSProperties;
4949
- lg?: TransientCSSProperties;
4950
- xl?: TransientCSSProperties;
4951
- "2xl"?: TransientCSSProperties;
4952
- [key: string]: TransientCSSProperties | undefined;
4953
- };
4954
- }, DetailedHTMLProps<ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4955
- $viewport?: {
4956
- sm?: TransientCSSProperties;
4957
- md?: TransientCSSProperties;
4958
- lg?: TransientCSSProperties;
4959
- xl?: TransientCSSProperties;
4960
- "2xl"?: TransientCSSProperties;
4961
- [key: string]: TransientCSSProperties | undefined;
4962
- };
4963
- }, DetailedHTMLProps<QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4964
- $viewport?: {
4965
- sm?: TransientCSSProperties;
4966
- md?: TransientCSSProperties;
4967
- lg?: TransientCSSProperties;
4968
- xl?: TransientCSSProperties;
4969
- "2xl"?: TransientCSSProperties;
4970
- [key: string]: TransientCSSProperties | undefined;
4971
- };
4972
- }, DetailedHTMLProps<ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4973
- $viewport?: {
4974
- sm?: TransientCSSProperties;
4975
- md?: TransientCSSProperties;
4976
- lg?: TransientCSSProperties;
4977
- xl?: TransientCSSProperties;
4978
- "2xl"?: TransientCSSProperties;
4979
- [key: string]: TransientCSSProperties | undefined;
4980
- };
4981
- }, DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4982
- $viewport?: {
4983
- sm?: TransientCSSProperties;
4984
- md?: TransientCSSProperties;
4985
- lg?: TransientCSSProperties;
4986
- xl?: TransientCSSProperties;
4987
- "2xl"?: TransientCSSProperties;
4988
- [key: string]: TransientCSSProperties | undefined;
4989
- };
4990
- }, DetailedHTMLProps<SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
4991
- $viewport?: {
4992
- sm?: TransientCSSProperties;
4993
- md?: TransientCSSProperties;
4994
- lg?: TransientCSSProperties;
4995
- xl?: TransientCSSProperties;
4996
- "2xl"?: TransientCSSProperties;
4997
- [key: string]: TransientCSSProperties | undefined;
4998
- };
4999
- }, DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5000
- $viewport?: {
5001
- sm?: TransientCSSProperties;
5002
- md?: TransientCSSProperties;
5003
- lg?: TransientCSSProperties;
5004
- xl?: TransientCSSProperties;
5005
- "2xl"?: TransientCSSProperties;
5006
- [key: string]: TransientCSSProperties | undefined;
5007
- };
5008
- }, DetailedHTMLProps<StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5009
- $viewport?: {
5010
- sm?: TransientCSSProperties;
5011
- md?: TransientCSSProperties;
5012
- lg?: TransientCSSProperties;
5013
- xl?: TransientCSSProperties;
5014
- "2xl"?: TransientCSSProperties;
5015
- [key: string]: TransientCSSProperties | undefined;
5016
- };
5017
- }, DetailedHTMLProps<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5018
- $viewport?: {
5019
- sm?: TransientCSSProperties;
5020
- md?: TransientCSSProperties;
5021
- lg?: TransientCSSProperties;
5022
- xl?: TransientCSSProperties;
5023
- "2xl"?: TransientCSSProperties;
5024
- [key: string]: TransientCSSProperties | undefined;
5025
- };
5026
- }, DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5027
- $viewport?: {
5028
- sm?: TransientCSSProperties;
5029
- md?: TransientCSSProperties;
5030
- lg?: TransientCSSProperties;
5031
- xl?: TransientCSSProperties;
5032
- "2xl"?: TransientCSSProperties;
5033
- [key: string]: TransientCSSProperties | undefined;
5034
- };
5035
- }, DetailedHTMLProps<TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5036
- $viewport?: {
5037
- sm?: TransientCSSProperties;
5038
- md?: TransientCSSProperties;
5039
- lg?: TransientCSSProperties;
5040
- xl?: TransientCSSProperties;
5041
- "2xl"?: TransientCSSProperties;
5042
- [key: string]: TransientCSSProperties | undefined;
5043
- };
5044
- }, DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5045
- $viewport?: {
5046
- sm?: TransientCSSProperties;
5047
- md?: TransientCSSProperties;
5048
- lg?: TransientCSSProperties;
5049
- xl?: TransientCSSProperties;
5050
- "2xl"?: TransientCSSProperties;
5051
- [key: string]: TransientCSSProperties | undefined;
5052
- };
5053
- }, DetailedHTMLProps<ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5054
- $viewport?: {
5055
- sm?: TransientCSSProperties;
5056
- md?: TransientCSSProperties;
5057
- lg?: TransientCSSProperties;
5058
- xl?: TransientCSSProperties;
5059
- "2xl"?: TransientCSSProperties;
5060
- [key: string]: TransientCSSProperties | undefined;
5061
- };
5062
- }, DetailedHTMLProps<TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5063
- $viewport?: {
5064
- sm?: TransientCSSProperties;
5065
- md?: TransientCSSProperties;
5066
- lg?: TransientCSSProperties;
5067
- xl?: TransientCSSProperties;
5068
- "2xl"?: TransientCSSProperties;
5069
- [key: string]: TransientCSSProperties | undefined;
5070
- };
5071
- }, DetailedHTMLProps<HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5072
- $viewport?: {
5073
- sm?: TransientCSSProperties;
5074
- md?: TransientCSSProperties;
5075
- lg?: TransientCSSProperties;
5076
- xl?: TransientCSSProperties;
5077
- "2xl"?: TransientCSSProperties;
5078
- [key: string]: TransientCSSProperties | undefined;
5079
- };
5080
- }, DetailedHTMLProps<TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5081
- $viewport?: {
5082
- sm?: TransientCSSProperties;
5083
- md?: TransientCSSProperties;
5084
- lg?: TransientCSSProperties;
5085
- xl?: TransientCSSProperties;
5086
- "2xl"?: TransientCSSProperties;
5087
- [key: string]: TransientCSSProperties | undefined;
5088
- };
5089
- }, DetailedHTMLProps<HTMLAttributes<HTMLUListElement>, HTMLUListElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5090
- $viewport?: {
5091
- sm?: TransientCSSProperties;
5092
- md?: TransientCSSProperties;
5093
- lg?: TransientCSSProperties;
5094
- xl?: TransientCSSProperties;
5095
- "2xl"?: TransientCSSProperties;
5096
- [key: string]: TransientCSSProperties | undefined;
5097
- };
5098
- }, DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5099
- $viewport?: {
5100
- sm?: TransientCSSProperties;
5101
- md?: TransientCSSProperties;
5102
- lg?: TransientCSSProperties;
5103
- xl?: TransientCSSProperties;
5104
- "2xl"?: TransientCSSProperties;
5105
- [key: string]: TransientCSSProperties | undefined;
5106
- };
5107
- }, SVGTextElementAttributes<SVGTextElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5108
- $viewport?: {
5109
- sm?: TransientCSSProperties;
5110
- md?: TransientCSSProperties;
5111
- lg?: TransientCSSProperties;
5112
- xl?: TransientCSSProperties;
5113
- "2xl"?: TransientCSSProperties;
5114
- [key: string]: TransientCSSProperties | undefined;
5115
- };
5116
- }, SVGProps<SVGCircleElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5117
- $viewport?: {
5118
- sm?: TransientCSSProperties;
5119
- md?: TransientCSSProperties;
5120
- lg?: TransientCSSProperties;
5121
- xl?: TransientCSSProperties;
5122
- "2xl"?: TransientCSSProperties;
5123
- [key: string]: TransientCSSProperties | undefined;
5124
- };
5125
- }, DetailedHTMLProps<KeygenHTMLAttributes<HTMLElement>, HTMLElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5126
- $viewport?: {
5127
- sm?: TransientCSSProperties;
5128
- md?: TransientCSSProperties;
5129
- lg?: TransientCSSProperties;
5130
- xl?: TransientCSSProperties;
5131
- "2xl"?: TransientCSSProperties;
5132
- [key: string]: TransientCSSProperties | undefined;
5133
- };
5134
- }, DetailedHTMLProps<ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5135
- $viewport?: {
5136
- sm?: TransientCSSProperties;
5137
- md?: TransientCSSProperties;
5138
- lg?: TransientCSSProperties;
5139
- xl?: TransientCSSProperties;
5140
- "2xl"?: TransientCSSProperties;
5141
- [key: string]: TransientCSSProperties | undefined;
5142
- };
5143
- }, SVGProps<SVGUseElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5144
- $viewport?: {
5145
- sm?: TransientCSSProperties;
5146
- md?: TransientCSSProperties;
5147
- lg?: TransientCSSProperties;
5148
- xl?: TransientCSSProperties;
5149
- "2xl"?: TransientCSSProperties;
5150
- [key: string]: TransientCSSProperties | undefined;
5151
- };
5152
- }, SVGProps<SVGDefsElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5153
- $viewport?: {
5154
- sm?: TransientCSSProperties;
5155
- md?: TransientCSSProperties;
5156
- lg?: TransientCSSProperties;
5157
- xl?: TransientCSSProperties;
5158
- "2xl"?: TransientCSSProperties;
5159
- [key: string]: TransientCSSProperties | undefined;
5160
- };
5161
- }, SVGProps<SVGEllipseElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5162
- $viewport?: {
5163
- sm?: TransientCSSProperties;
5164
- md?: TransientCSSProperties;
5165
- lg?: TransientCSSProperties;
5166
- xl?: TransientCSSProperties;
5167
- "2xl"?: TransientCSSProperties;
5168
- [key: string]: TransientCSSProperties | undefined;
5169
- };
5170
- }, SVGProps<SVGForeignObjectElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5171
- $viewport?: {
5172
- sm?: TransientCSSProperties;
5173
- md?: TransientCSSProperties;
5174
- lg?: TransientCSSProperties;
5175
- xl?: TransientCSSProperties;
5176
- "2xl"?: TransientCSSProperties;
5177
- [key: string]: TransientCSSProperties | undefined;
5178
- };
5179
- }, SVGProps<SVGGElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5180
- $viewport?: {
5181
- sm?: TransientCSSProperties;
5182
- md?: TransientCSSProperties;
5183
- lg?: TransientCSSProperties;
5184
- xl?: TransientCSSProperties;
5185
- "2xl"?: TransientCSSProperties;
5186
- [key: string]: TransientCSSProperties | undefined;
5187
- };
5188
- }, SVGProps<SVGImageElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5189
- $viewport?: {
5190
- sm?: TransientCSSProperties;
5191
- md?: TransientCSSProperties;
5192
- lg?: TransientCSSProperties;
5193
- xl?: TransientCSSProperties;
5194
- "2xl"?: TransientCSSProperties;
5195
- [key: string]: TransientCSSProperties | undefined;
5196
- };
5197
- }, SVGLineElementAttributes<SVGLineElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5198
- $viewport?: {
5199
- sm?: TransientCSSProperties;
5200
- md?: TransientCSSProperties;
5201
- lg?: TransientCSSProperties;
5202
- xl?: TransientCSSProperties;
5203
- "2xl"?: TransientCSSProperties;
5204
- [key: string]: TransientCSSProperties | undefined;
5205
- };
5206
- }, SVGProps<SVGLinearGradientElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5207
- $viewport?: {
5208
- sm?: TransientCSSProperties;
5209
- md?: TransientCSSProperties;
5210
- lg?: TransientCSSProperties;
5211
- xl?: TransientCSSProperties;
5212
- "2xl"?: TransientCSSProperties;
5213
- [key: string]: TransientCSSProperties | undefined;
5214
- };
5215
- }, SVGProps<SVGPathElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5216
- $viewport?: {
5217
- sm?: TransientCSSProperties;
5218
- md?: TransientCSSProperties;
5219
- lg?: TransientCSSProperties;
5220
- xl?: TransientCSSProperties;
5221
- "2xl"?: TransientCSSProperties;
5222
- [key: string]: TransientCSSProperties | undefined;
5223
- };
5224
- }, SVGProps<SVGPatternElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5225
- $viewport?: {
5226
- sm?: TransientCSSProperties;
5227
- md?: TransientCSSProperties;
5228
- lg?: TransientCSSProperties;
5229
- xl?: TransientCSSProperties;
5230
- "2xl"?: TransientCSSProperties;
5231
- [key: string]: TransientCSSProperties | undefined;
5232
- };
5233
- }, SVGProps<SVGPolygonElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5234
- $viewport?: {
5235
- sm?: TransientCSSProperties;
5236
- md?: TransientCSSProperties;
5237
- lg?: TransientCSSProperties;
5238
- xl?: TransientCSSProperties;
5239
- "2xl"?: TransientCSSProperties;
5240
- [key: string]: TransientCSSProperties | undefined;
5241
- };
5242
- }, SVGProps<SVGPolylineElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5243
- $viewport?: {
5244
- sm?: TransientCSSProperties;
5245
- md?: TransientCSSProperties;
5246
- lg?: TransientCSSProperties;
5247
- xl?: TransientCSSProperties;
5248
- "2xl"?: TransientCSSProperties;
5249
- [key: string]: TransientCSSProperties | undefined;
5250
- };
5251
- }, SVGProps<SVGRadialGradientElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5252
- $viewport?: {
5253
- sm?: TransientCSSProperties;
5254
- md?: TransientCSSProperties;
5255
- lg?: TransientCSSProperties;
5256
- xl?: TransientCSSProperties;
5257
- "2xl"?: TransientCSSProperties;
5258
- [key: string]: TransientCSSProperties | undefined;
5259
- };
5260
- }, SVGProps<SVGRectElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5261
- $viewport?: {
5262
- sm?: TransientCSSProperties;
5263
- md?: TransientCSSProperties;
5264
- lg?: TransientCSSProperties;
5265
- xl?: TransientCSSProperties;
5266
- "2xl"?: TransientCSSProperties;
5267
- [key: string]: TransientCSSProperties | undefined;
5268
- };
5269
- }, SVGProps<SVGStopElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5270
- $viewport?: {
5271
- sm?: TransientCSSProperties;
5272
- md?: TransientCSSProperties;
5273
- lg?: TransientCSSProperties;
5274
- xl?: TransientCSSProperties;
5275
- "2xl"?: TransientCSSProperties;
5276
- [key: string]: TransientCSSProperties | undefined;
5277
- };
5278
- }, SVGProps<SVGSVGElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5279
- $viewport?: {
5280
- sm?: TransientCSSProperties;
5281
- md?: TransientCSSProperties;
5282
- lg?: TransientCSSProperties;
5283
- xl?: TransientCSSProperties;
5284
- "2xl"?: TransientCSSProperties;
5285
- [key: string]: TransientCSSProperties | undefined;
5286
- };
5287
- }, SVGProps<SVGTSpanElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
5288
- $viewport?: {
5289
- sm?: TransientCSSProperties;
5290
- md?: TransientCSSProperties;
5291
- lg?: TransientCSSProperties;
5292
- xl?: TransientCSSProperties;
5293
- "2xl"?: TransientCSSProperties;
5294
- [key: string]: TransientCSSProperties | undefined;
5295
- };
5296
- }, Omit<any, "ref"> & RefAttributes<Component<any, any, any>>>, never> | FastOmit<any, never>, TextProps>> & (string & (BaseObject | Omit<ComponentClass<any, any>, keyof Component<any, {}, any>> | Omit<FunctionComponent<any>, keyof Component<any, {}, any>> | Omit<ExoticComponentWithDisplayName<any>, keyof Component<any, {}, any>>));
4704
+ declare const Text_2: IStyledComponentBase<"web", Substitute<FastOmit<Substitute<DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>, never>, TextProps>> & string;
5297
4705
  export { Text_2 as Text }
5298
4706
 
5299
4707
  declare class TextApiResponse {
@@ -5302,6 +4710,12 @@ declare class TextApiResponse {
5302
4710
  value(): Promise<string>;
5303
4711
  }
5304
4712
 
4713
+ export declare const TextElement: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_8> & HTMLAttributes<HTMLDivElement> & {
4714
+ portal?: HTMLElement | null;
4715
+ } & RefAttributes<HTMLDivElement | null>>;
4716
+
4717
+ export declare type TextElementProps = DesignProps_8;
4718
+
5305
4719
  export declare enum TextPropNames {
5306
4720
  Align = "$align",
5307
4721
  Font = "$font",
@@ -5313,7 +4727,7 @@ export declare enum TextPropNames {
5313
4727
 
5314
4728
  export declare type TextPropNameTypes = `${TextPropNames}`;
5315
4729
 
5316
- export declare interface TextProps extends BoxProps {
4730
+ export declare interface TextProps {
5317
4731
  $align?: ComponentProps["$textAlign"];
5318
4732
  $font?: ComponentProps["$fontFamily"];
5319
4733
  $size?: ComponentProps["$fontSize"];
@@ -5342,15 +4756,15 @@ export declare interface TypographySettings {
5342
4756
  color: string;
5343
4757
  }
5344
4758
 
5345
- export declare const UnsubscribeButton: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_7> & HTMLAttributes<HTMLDivElement> & {
4759
+ export declare const UnsubscribeButton: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_9> & HTMLAttributes<HTMLDivElement> & {
5346
4760
  portal?: HTMLElement | null;
5347
4761
  } & RefAttributes<HTMLDivElement | null>>;
5348
4762
 
5349
- export declare type UnsubscribeButtonProps = DesignProps_7;
4763
+ export declare type UnsubscribeButtonProps = DesignProps_9;
5350
4764
 
5351
- export declare const UpcomingBill: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_8> & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
4765
+ export declare const UpcomingBill: ForwardRefExoticComponent<ElementProps & RecursivePartial<DesignProps_10> & HTMLAttributes<HTMLDivElement> & RefAttributes<HTMLDivElement | null>>;
5352
4766
 
5353
- export declare type UpcomingBillProps = DesignProps_8;
4767
+ export declare type UpcomingBillProps = DesignProps_10;
5354
4768
 
5355
4769
  /**
5356
4770
  * Schematic API