@schematichq/schematic-components 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schematic-components.cjs.js +1058 -717
- package/dist/schematic-components.d.ts +846 -4
- package/dist/schematic-components.esm.js +1078 -737
- package/package.json +10 -10
|
@@ -1,15 +1,69 @@
|
|
|
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';
|
|
1
11
|
import { Component } from 'react';
|
|
12
|
+
import { ComponentClass } from 'react';
|
|
2
13
|
import { Context } from 'react';
|
|
3
14
|
import * as Craft from '@craftjs/core';
|
|
15
|
+
import { DataHTMLAttributes } from 'react';
|
|
16
|
+
import { DelHTMLAttributes } from 'react';
|
|
4
17
|
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';
|
|
5
22
|
import { FastOmit } from 'styled-components';
|
|
23
|
+
import { FieldsetHTMLAttributes } from 'react';
|
|
24
|
+
import { FormHTMLAttributes } from 'react';
|
|
6
25
|
import { ForwardRefExoticComponent } from 'react';
|
|
26
|
+
import { FunctionComponent } from 'react';
|
|
7
27
|
import { HTMLAttributes } from 'react';
|
|
28
|
+
import { HtmlHTMLAttributes } from 'react';
|
|
29
|
+
import { IframeHTMLAttributes } from 'react';
|
|
30
|
+
import { ImgHTMLAttributes } from 'react';
|
|
8
31
|
import { InputHTMLAttributes } from 'react';
|
|
32
|
+
import { InsHTMLAttributes } from 'react';
|
|
9
33
|
import { IStyledComponentBase } from 'styled-components/dist/types';
|
|
10
34
|
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';
|
|
11
51
|
import { RefAttributes } from 'react';
|
|
52
|
+
import { ScriptHTMLAttributes } from 'react';
|
|
53
|
+
import { SelectHTMLAttributes } from 'react';
|
|
54
|
+
import { SourceHTMLAttributes } from 'react';
|
|
55
|
+
import { StyleHTMLAttributes } from 'react';
|
|
12
56
|
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';
|
|
13
67
|
|
|
14
68
|
declare interface ApiResponse<T> {
|
|
15
69
|
raw: Response;
|
|
@@ -2171,9 +2225,10 @@ export declare interface EmbedProps {
|
|
|
2171
2225
|
accessToken?: string;
|
|
2172
2226
|
id?: string;
|
|
2173
2227
|
apiConfig?: ConfigurationParameters;
|
|
2228
|
+
debug?: boolean;
|
|
2174
2229
|
}
|
|
2175
2230
|
|
|
2176
|
-
export declare const EmbedProvider: ({ id, accessToken, apiConfig, children, mode, }: EmbedProviderProps) => JSX.Element;
|
|
2231
|
+
export declare const EmbedProvider: ({ id, accessToken, apiConfig, children, mode, ...options }: EmbedProviderProps) => JSX.Element;
|
|
2177
2232
|
|
|
2178
2233
|
export declare interface EmbedProviderProps {
|
|
2179
2234
|
id?: string;
|
|
@@ -2181,6 +2236,7 @@ export declare interface EmbedProviderProps {
|
|
|
2181
2236
|
apiConfig?: ConfigurationParameters;
|
|
2182
2237
|
children?: React.ReactNode;
|
|
2183
2238
|
mode?: EmbedMode;
|
|
2239
|
+
debug?: boolean;
|
|
2184
2240
|
}
|
|
2185
2241
|
|
|
2186
2242
|
export declare type EmbedSelected = {
|
|
@@ -2194,6 +2250,7 @@ export declare type EmbedSettings = {
|
|
|
2194
2250
|
theme: EmbedThemeSettings;
|
|
2195
2251
|
badge?: {
|
|
2196
2252
|
alignment: ComponentProps["$justifyContent"];
|
|
2253
|
+
visibility?: ComponentProps["$visibility"];
|
|
2197
2254
|
};
|
|
2198
2255
|
};
|
|
2199
2256
|
|
|
@@ -4353,7 +4410,7 @@ declare namespace runtime {
|
|
|
4353
4410
|
}
|
|
4354
4411
|
}
|
|
4355
4412
|
|
|
4356
|
-
export declare const SchematicEmbed: ({ id, accessToken, apiConfig }: EmbedProps) => JSX.Element;
|
|
4413
|
+
export declare const SchematicEmbed: ({ id, accessToken, apiConfig, debug, }: EmbedProps) => JSX.Element;
|
|
4357
4414
|
|
|
4358
4415
|
export declare interface SelectedPlan extends CompanyPlanDetailResponseData {
|
|
4359
4416
|
isSelected: boolean;
|
|
@@ -4432,7 +4489,781 @@ declare interface StripeEmbedInfo {
|
|
|
4432
4489
|
|
|
4433
4490
|
export declare const StyledCard: IStyledComponentBase<"web", FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4434
4491
|
|
|
4435
|
-
declare const Text_2: IStyledComponentBase<"web", Substitute<FastOmit<Substitute<DetailedHTMLProps<HTMLAttributes<
|
|
4492
|
+
declare const Text_2: IStyledComponentBase<"web", Substitute<FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4493
|
+
$viewport?: {
|
|
4494
|
+
sm?: TransientCSSProperties;
|
|
4495
|
+
md?: TransientCSSProperties;
|
|
4496
|
+
lg?: TransientCSSProperties;
|
|
4497
|
+
xl?: TransientCSSProperties;
|
|
4498
|
+
"2xl"?: TransientCSSProperties;
|
|
4499
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4500
|
+
};
|
|
4501
|
+
}, DetailedHTMLProps<ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4502
|
+
$viewport?: {
|
|
4503
|
+
sm?: TransientCSSProperties;
|
|
4504
|
+
md?: TransientCSSProperties;
|
|
4505
|
+
lg?: TransientCSSProperties;
|
|
4506
|
+
xl?: TransientCSSProperties;
|
|
4507
|
+
"2xl"?: TransientCSSProperties;
|
|
4508
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4509
|
+
};
|
|
4510
|
+
}, DetailedHTMLProps<MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4511
|
+
$viewport?: {
|
|
4512
|
+
sm?: TransientCSSProperties;
|
|
4513
|
+
md?: TransientCSSProperties;
|
|
4514
|
+
lg?: TransientCSSProperties;
|
|
4515
|
+
xl?: TransientCSSProperties;
|
|
4516
|
+
"2xl"?: TransientCSSProperties;
|
|
4517
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4518
|
+
};
|
|
4519
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4520
|
+
$viewport?: {
|
|
4521
|
+
sm?: TransientCSSProperties;
|
|
4522
|
+
md?: TransientCSSProperties;
|
|
4523
|
+
lg?: TransientCSSProperties;
|
|
4524
|
+
xl?: TransientCSSProperties;
|
|
4525
|
+
"2xl"?: TransientCSSProperties;
|
|
4526
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4527
|
+
};
|
|
4528
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLPreElement>, HTMLPreElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4529
|
+
$viewport?: {
|
|
4530
|
+
sm?: TransientCSSProperties;
|
|
4531
|
+
md?: TransientCSSProperties;
|
|
4532
|
+
lg?: TransientCSSProperties;
|
|
4533
|
+
xl?: TransientCSSProperties;
|
|
4534
|
+
"2xl"?: TransientCSSProperties;
|
|
4535
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4536
|
+
};
|
|
4537
|
+
}, DetailedHTMLProps<DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4538
|
+
$viewport?: {
|
|
4539
|
+
sm?: TransientCSSProperties;
|
|
4540
|
+
md?: TransientCSSProperties;
|
|
4541
|
+
lg?: TransientCSSProperties;
|
|
4542
|
+
xl?: TransientCSSProperties;
|
|
4543
|
+
"2xl"?: TransientCSSProperties;
|
|
4544
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4545
|
+
};
|
|
4546
|
+
}, SVGProps<SVGClipPathElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4547
|
+
$viewport?: {
|
|
4548
|
+
sm?: TransientCSSProperties;
|
|
4549
|
+
md?: TransientCSSProperties;
|
|
4550
|
+
lg?: TransientCSSProperties;
|
|
4551
|
+
xl?: TransientCSSProperties;
|
|
4552
|
+
"2xl"?: TransientCSSProperties;
|
|
4553
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4554
|
+
};
|
|
4555
|
+
}, SVGProps<SVGMaskElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4556
|
+
$viewport?: {
|
|
4557
|
+
sm?: TransientCSSProperties;
|
|
4558
|
+
md?: TransientCSSProperties;
|
|
4559
|
+
lg?: TransientCSSProperties;
|
|
4560
|
+
xl?: TransientCSSProperties;
|
|
4561
|
+
"2xl"?: TransientCSSProperties;
|
|
4562
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4563
|
+
};
|
|
4564
|
+
}, SVGProps<SVGMarkerElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4565
|
+
$viewport?: {
|
|
4566
|
+
sm?: TransientCSSProperties;
|
|
4567
|
+
md?: TransientCSSProperties;
|
|
4568
|
+
lg?: TransientCSSProperties;
|
|
4569
|
+
xl?: TransientCSSProperties;
|
|
4570
|
+
"2xl"?: TransientCSSProperties;
|
|
4571
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4572
|
+
};
|
|
4573
|
+
}, DetailedHTMLProps<LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4574
|
+
$viewport?: {
|
|
4575
|
+
sm?: TransientCSSProperties;
|
|
4576
|
+
md?: TransientCSSProperties;
|
|
4577
|
+
lg?: TransientCSSProperties;
|
|
4578
|
+
xl?: TransientCSSProperties;
|
|
4579
|
+
"2xl"?: TransientCSSProperties;
|
|
4580
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4581
|
+
};
|
|
4582
|
+
}, DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4583
|
+
$viewport?: {
|
|
4584
|
+
sm?: TransientCSSProperties;
|
|
4585
|
+
md?: TransientCSSProperties;
|
|
4586
|
+
lg?: TransientCSSProperties;
|
|
4587
|
+
xl?: TransientCSSProperties;
|
|
4588
|
+
"2xl"?: TransientCSSProperties;
|
|
4589
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4590
|
+
};
|
|
4591
|
+
}, DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4592
|
+
$viewport?: {
|
|
4593
|
+
sm?: TransientCSSProperties;
|
|
4594
|
+
md?: TransientCSSProperties;
|
|
4595
|
+
lg?: TransientCSSProperties;
|
|
4596
|
+
xl?: TransientCSSProperties;
|
|
4597
|
+
"2xl"?: TransientCSSProperties;
|
|
4598
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4599
|
+
};
|
|
4600
|
+
}, DetailedHTMLProps<AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4601
|
+
$viewport?: {
|
|
4602
|
+
sm?: TransientCSSProperties;
|
|
4603
|
+
md?: TransientCSSProperties;
|
|
4604
|
+
lg?: TransientCSSProperties;
|
|
4605
|
+
xl?: TransientCSSProperties;
|
|
4606
|
+
"2xl"?: TransientCSSProperties;
|
|
4607
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4608
|
+
};
|
|
4609
|
+
}, DetailedHTMLProps<BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4610
|
+
$viewport?: {
|
|
4611
|
+
sm?: TransientCSSProperties;
|
|
4612
|
+
md?: TransientCSSProperties;
|
|
4613
|
+
lg?: TransientCSSProperties;
|
|
4614
|
+
xl?: TransientCSSProperties;
|
|
4615
|
+
"2xl"?: TransientCSSProperties;
|
|
4616
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4617
|
+
};
|
|
4618
|
+
}, DetailedHTMLProps<BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4619
|
+
$viewport?: {
|
|
4620
|
+
sm?: TransientCSSProperties;
|
|
4621
|
+
md?: TransientCSSProperties;
|
|
4622
|
+
lg?: TransientCSSProperties;
|
|
4623
|
+
xl?: TransientCSSProperties;
|
|
4624
|
+
"2xl"?: TransientCSSProperties;
|
|
4625
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4626
|
+
};
|
|
4627
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4628
|
+
$viewport?: {
|
|
4629
|
+
sm?: TransientCSSProperties;
|
|
4630
|
+
md?: TransientCSSProperties;
|
|
4631
|
+
lg?: TransientCSSProperties;
|
|
4632
|
+
xl?: TransientCSSProperties;
|
|
4633
|
+
"2xl"?: TransientCSSProperties;
|
|
4634
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4635
|
+
};
|
|
4636
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLBRElement>, HTMLBRElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4637
|
+
$viewport?: {
|
|
4638
|
+
sm?: TransientCSSProperties;
|
|
4639
|
+
md?: TransientCSSProperties;
|
|
4640
|
+
lg?: TransientCSSProperties;
|
|
4641
|
+
xl?: TransientCSSProperties;
|
|
4642
|
+
"2xl"?: TransientCSSProperties;
|
|
4643
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4644
|
+
};
|
|
4645
|
+
}, DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4646
|
+
$viewport?: {
|
|
4647
|
+
sm?: TransientCSSProperties;
|
|
4648
|
+
md?: TransientCSSProperties;
|
|
4649
|
+
lg?: TransientCSSProperties;
|
|
4650
|
+
xl?: TransientCSSProperties;
|
|
4651
|
+
"2xl"?: TransientCSSProperties;
|
|
4652
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4653
|
+
};
|
|
4654
|
+
}, DetailedHTMLProps<CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4655
|
+
$viewport?: {
|
|
4656
|
+
sm?: TransientCSSProperties;
|
|
4657
|
+
md?: TransientCSSProperties;
|
|
4658
|
+
lg?: TransientCSSProperties;
|
|
4659
|
+
xl?: TransientCSSProperties;
|
|
4660
|
+
"2xl"?: TransientCSSProperties;
|
|
4661
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4662
|
+
};
|
|
4663
|
+
}, DetailedHTMLProps<ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4664
|
+
$viewport?: {
|
|
4665
|
+
sm?: TransientCSSProperties;
|
|
4666
|
+
md?: TransientCSSProperties;
|
|
4667
|
+
lg?: TransientCSSProperties;
|
|
4668
|
+
xl?: TransientCSSProperties;
|
|
4669
|
+
"2xl"?: TransientCSSProperties;
|
|
4670
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4671
|
+
};
|
|
4672
|
+
}, DetailedHTMLProps<ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4673
|
+
$viewport?: {
|
|
4674
|
+
sm?: TransientCSSProperties;
|
|
4675
|
+
md?: TransientCSSProperties;
|
|
4676
|
+
lg?: TransientCSSProperties;
|
|
4677
|
+
xl?: TransientCSSProperties;
|
|
4678
|
+
"2xl"?: TransientCSSProperties;
|
|
4679
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4680
|
+
};
|
|
4681
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4682
|
+
$viewport?: {
|
|
4683
|
+
sm?: TransientCSSProperties;
|
|
4684
|
+
md?: TransientCSSProperties;
|
|
4685
|
+
lg?: TransientCSSProperties;
|
|
4686
|
+
xl?: TransientCSSProperties;
|
|
4687
|
+
"2xl"?: TransientCSSProperties;
|
|
4688
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4689
|
+
};
|
|
4690
|
+
}, DetailedHTMLProps<DelHTMLAttributes<HTMLModElement>, HTMLModElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4691
|
+
$viewport?: {
|
|
4692
|
+
sm?: TransientCSSProperties;
|
|
4693
|
+
md?: TransientCSSProperties;
|
|
4694
|
+
lg?: TransientCSSProperties;
|
|
4695
|
+
xl?: TransientCSSProperties;
|
|
4696
|
+
"2xl"?: TransientCSSProperties;
|
|
4697
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4698
|
+
};
|
|
4699
|
+
}, DetailedHTMLProps<DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4700
|
+
$viewport?: {
|
|
4701
|
+
sm?: TransientCSSProperties;
|
|
4702
|
+
md?: TransientCSSProperties;
|
|
4703
|
+
lg?: TransientCSSProperties;
|
|
4704
|
+
xl?: TransientCSSProperties;
|
|
4705
|
+
"2xl"?: TransientCSSProperties;
|
|
4706
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4707
|
+
};
|
|
4708
|
+
}, DetailedHTMLProps<DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4709
|
+
$viewport?: {
|
|
4710
|
+
sm?: TransientCSSProperties;
|
|
4711
|
+
md?: TransientCSSProperties;
|
|
4712
|
+
lg?: TransientCSSProperties;
|
|
4713
|
+
xl?: TransientCSSProperties;
|
|
4714
|
+
"2xl"?: TransientCSSProperties;
|
|
4715
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4716
|
+
};
|
|
4717
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4718
|
+
$viewport?: {
|
|
4719
|
+
sm?: TransientCSSProperties;
|
|
4720
|
+
md?: TransientCSSProperties;
|
|
4721
|
+
lg?: TransientCSSProperties;
|
|
4722
|
+
xl?: TransientCSSProperties;
|
|
4723
|
+
"2xl"?: TransientCSSProperties;
|
|
4724
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4725
|
+
};
|
|
4726
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLDListElement>, HTMLDListElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4727
|
+
$viewport?: {
|
|
4728
|
+
sm?: TransientCSSProperties;
|
|
4729
|
+
md?: TransientCSSProperties;
|
|
4730
|
+
lg?: TransientCSSProperties;
|
|
4731
|
+
xl?: TransientCSSProperties;
|
|
4732
|
+
"2xl"?: TransientCSSProperties;
|
|
4733
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4734
|
+
};
|
|
4735
|
+
}, DetailedHTMLProps<EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4736
|
+
$viewport?: {
|
|
4737
|
+
sm?: TransientCSSProperties;
|
|
4738
|
+
md?: TransientCSSProperties;
|
|
4739
|
+
lg?: TransientCSSProperties;
|
|
4740
|
+
xl?: TransientCSSProperties;
|
|
4741
|
+
"2xl"?: TransientCSSProperties;
|
|
4742
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4743
|
+
};
|
|
4744
|
+
}, DetailedHTMLProps<FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4745
|
+
$viewport?: {
|
|
4746
|
+
sm?: TransientCSSProperties;
|
|
4747
|
+
md?: TransientCSSProperties;
|
|
4748
|
+
lg?: TransientCSSProperties;
|
|
4749
|
+
xl?: TransientCSSProperties;
|
|
4750
|
+
"2xl"?: TransientCSSProperties;
|
|
4751
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4752
|
+
};
|
|
4753
|
+
}, DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4754
|
+
$viewport?: {
|
|
4755
|
+
sm?: TransientCSSProperties;
|
|
4756
|
+
md?: TransientCSSProperties;
|
|
4757
|
+
lg?: TransientCSSProperties;
|
|
4758
|
+
xl?: TransientCSSProperties;
|
|
4759
|
+
"2xl"?: TransientCSSProperties;
|
|
4760
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4761
|
+
};
|
|
4762
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4763
|
+
$viewport?: {
|
|
4764
|
+
sm?: TransientCSSProperties;
|
|
4765
|
+
md?: TransientCSSProperties;
|
|
4766
|
+
lg?: TransientCSSProperties;
|
|
4767
|
+
xl?: TransientCSSProperties;
|
|
4768
|
+
"2xl"?: TransientCSSProperties;
|
|
4769
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4770
|
+
};
|
|
4771
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLHRElement>, HTMLHRElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4772
|
+
$viewport?: {
|
|
4773
|
+
sm?: TransientCSSProperties;
|
|
4774
|
+
md?: TransientCSSProperties;
|
|
4775
|
+
lg?: TransientCSSProperties;
|
|
4776
|
+
xl?: TransientCSSProperties;
|
|
4777
|
+
"2xl"?: TransientCSSProperties;
|
|
4778
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4779
|
+
};
|
|
4780
|
+
}, DetailedHTMLProps<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4781
|
+
$viewport?: {
|
|
4782
|
+
sm?: TransientCSSProperties;
|
|
4783
|
+
md?: TransientCSSProperties;
|
|
4784
|
+
lg?: TransientCSSProperties;
|
|
4785
|
+
xl?: TransientCSSProperties;
|
|
4786
|
+
"2xl"?: TransientCSSProperties;
|
|
4787
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4788
|
+
};
|
|
4789
|
+
}, DetailedHTMLProps<IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4790
|
+
$viewport?: {
|
|
4791
|
+
sm?: TransientCSSProperties;
|
|
4792
|
+
md?: TransientCSSProperties;
|
|
4793
|
+
lg?: TransientCSSProperties;
|
|
4794
|
+
xl?: TransientCSSProperties;
|
|
4795
|
+
"2xl"?: TransientCSSProperties;
|
|
4796
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4797
|
+
};
|
|
4798
|
+
}, DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4799
|
+
$viewport?: {
|
|
4800
|
+
sm?: TransientCSSProperties;
|
|
4801
|
+
md?: TransientCSSProperties;
|
|
4802
|
+
lg?: TransientCSSProperties;
|
|
4803
|
+
xl?: TransientCSSProperties;
|
|
4804
|
+
"2xl"?: TransientCSSProperties;
|
|
4805
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4806
|
+
};
|
|
4807
|
+
}, DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4808
|
+
$viewport?: {
|
|
4809
|
+
sm?: TransientCSSProperties;
|
|
4810
|
+
md?: TransientCSSProperties;
|
|
4811
|
+
lg?: TransientCSSProperties;
|
|
4812
|
+
xl?: TransientCSSProperties;
|
|
4813
|
+
"2xl"?: TransientCSSProperties;
|
|
4814
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4815
|
+
};
|
|
4816
|
+
}, DetailedHTMLProps<InsHTMLAttributes<HTMLModElement>, HTMLModElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4817
|
+
$viewport?: {
|
|
4818
|
+
sm?: TransientCSSProperties;
|
|
4819
|
+
md?: TransientCSSProperties;
|
|
4820
|
+
lg?: TransientCSSProperties;
|
|
4821
|
+
xl?: TransientCSSProperties;
|
|
4822
|
+
"2xl"?: TransientCSSProperties;
|
|
4823
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4824
|
+
};
|
|
4825
|
+
}, DetailedHTMLProps<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4826
|
+
$viewport?: {
|
|
4827
|
+
sm?: TransientCSSProperties;
|
|
4828
|
+
md?: TransientCSSProperties;
|
|
4829
|
+
lg?: TransientCSSProperties;
|
|
4830
|
+
xl?: TransientCSSProperties;
|
|
4831
|
+
"2xl"?: TransientCSSProperties;
|
|
4832
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4833
|
+
};
|
|
4834
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4835
|
+
$viewport?: {
|
|
4836
|
+
sm?: TransientCSSProperties;
|
|
4837
|
+
md?: TransientCSSProperties;
|
|
4838
|
+
lg?: TransientCSSProperties;
|
|
4839
|
+
xl?: TransientCSSProperties;
|
|
4840
|
+
"2xl"?: TransientCSSProperties;
|
|
4841
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4842
|
+
};
|
|
4843
|
+
}, DetailedHTMLProps<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4844
|
+
$viewport?: {
|
|
4845
|
+
sm?: TransientCSSProperties;
|
|
4846
|
+
md?: TransientCSSProperties;
|
|
4847
|
+
lg?: TransientCSSProperties;
|
|
4848
|
+
xl?: TransientCSSProperties;
|
|
4849
|
+
"2xl"?: TransientCSSProperties;
|
|
4850
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4851
|
+
};
|
|
4852
|
+
}, DetailedHTMLProps<MenuHTMLAttributes<HTMLElement>, HTMLElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4853
|
+
$viewport?: {
|
|
4854
|
+
sm?: TransientCSSProperties;
|
|
4855
|
+
md?: TransientCSSProperties;
|
|
4856
|
+
lg?: TransientCSSProperties;
|
|
4857
|
+
xl?: TransientCSSProperties;
|
|
4858
|
+
"2xl"?: TransientCSSProperties;
|
|
4859
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4860
|
+
};
|
|
4861
|
+
}, DetailedHTMLProps<MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4862
|
+
$viewport?: {
|
|
4863
|
+
sm?: TransientCSSProperties;
|
|
4864
|
+
md?: TransientCSSProperties;
|
|
4865
|
+
lg?: TransientCSSProperties;
|
|
4866
|
+
xl?: TransientCSSProperties;
|
|
4867
|
+
"2xl"?: TransientCSSProperties;
|
|
4868
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4869
|
+
};
|
|
4870
|
+
}, DetailedHTMLProps<MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4871
|
+
$viewport?: {
|
|
4872
|
+
sm?: TransientCSSProperties;
|
|
4873
|
+
md?: TransientCSSProperties;
|
|
4874
|
+
lg?: TransientCSSProperties;
|
|
4875
|
+
xl?: TransientCSSProperties;
|
|
4876
|
+
"2xl"?: TransientCSSProperties;
|
|
4877
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4878
|
+
};
|
|
4879
|
+
}, DetailedHTMLProps<OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4880
|
+
$viewport?: {
|
|
4881
|
+
sm?: TransientCSSProperties;
|
|
4882
|
+
md?: TransientCSSProperties;
|
|
4883
|
+
lg?: TransientCSSProperties;
|
|
4884
|
+
xl?: TransientCSSProperties;
|
|
4885
|
+
"2xl"?: TransientCSSProperties;
|
|
4886
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4887
|
+
};
|
|
4888
|
+
}, DetailedHTMLProps<OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4889
|
+
$viewport?: {
|
|
4890
|
+
sm?: TransientCSSProperties;
|
|
4891
|
+
md?: TransientCSSProperties;
|
|
4892
|
+
lg?: TransientCSSProperties;
|
|
4893
|
+
xl?: TransientCSSProperties;
|
|
4894
|
+
"2xl"?: TransientCSSProperties;
|
|
4895
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4896
|
+
};
|
|
4897
|
+
}, DetailedHTMLProps<OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4898
|
+
$viewport?: {
|
|
4899
|
+
sm?: TransientCSSProperties;
|
|
4900
|
+
md?: TransientCSSProperties;
|
|
4901
|
+
lg?: TransientCSSProperties;
|
|
4902
|
+
xl?: TransientCSSProperties;
|
|
4903
|
+
"2xl"?: TransientCSSProperties;
|
|
4904
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4905
|
+
};
|
|
4906
|
+
}, DetailedHTMLProps<OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4907
|
+
$viewport?: {
|
|
4908
|
+
sm?: TransientCSSProperties;
|
|
4909
|
+
md?: TransientCSSProperties;
|
|
4910
|
+
lg?: TransientCSSProperties;
|
|
4911
|
+
xl?: TransientCSSProperties;
|
|
4912
|
+
"2xl"?: TransientCSSProperties;
|
|
4913
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4914
|
+
};
|
|
4915
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4916
|
+
$viewport?: {
|
|
4917
|
+
sm?: TransientCSSProperties;
|
|
4918
|
+
md?: TransientCSSProperties;
|
|
4919
|
+
lg?: TransientCSSProperties;
|
|
4920
|
+
xl?: TransientCSSProperties;
|
|
4921
|
+
"2xl"?: TransientCSSProperties;
|
|
4922
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4923
|
+
};
|
|
4924
|
+
}, DetailedHTMLProps<ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4925
|
+
$viewport?: {
|
|
4926
|
+
sm?: TransientCSSProperties;
|
|
4927
|
+
md?: TransientCSSProperties;
|
|
4928
|
+
lg?: TransientCSSProperties;
|
|
4929
|
+
xl?: TransientCSSProperties;
|
|
4930
|
+
"2xl"?: TransientCSSProperties;
|
|
4931
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4932
|
+
};
|
|
4933
|
+
}, DetailedHTMLProps<QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4934
|
+
$viewport?: {
|
|
4935
|
+
sm?: TransientCSSProperties;
|
|
4936
|
+
md?: TransientCSSProperties;
|
|
4937
|
+
lg?: TransientCSSProperties;
|
|
4938
|
+
xl?: TransientCSSProperties;
|
|
4939
|
+
"2xl"?: TransientCSSProperties;
|
|
4940
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4941
|
+
};
|
|
4942
|
+
}, DetailedHTMLProps<ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4943
|
+
$viewport?: {
|
|
4944
|
+
sm?: TransientCSSProperties;
|
|
4945
|
+
md?: TransientCSSProperties;
|
|
4946
|
+
lg?: TransientCSSProperties;
|
|
4947
|
+
xl?: TransientCSSProperties;
|
|
4948
|
+
"2xl"?: TransientCSSProperties;
|
|
4949
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4950
|
+
};
|
|
4951
|
+
}, DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4952
|
+
$viewport?: {
|
|
4953
|
+
sm?: TransientCSSProperties;
|
|
4954
|
+
md?: TransientCSSProperties;
|
|
4955
|
+
lg?: TransientCSSProperties;
|
|
4956
|
+
xl?: TransientCSSProperties;
|
|
4957
|
+
"2xl"?: TransientCSSProperties;
|
|
4958
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4959
|
+
};
|
|
4960
|
+
}, DetailedHTMLProps<SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4961
|
+
$viewport?: {
|
|
4962
|
+
sm?: TransientCSSProperties;
|
|
4963
|
+
md?: TransientCSSProperties;
|
|
4964
|
+
lg?: TransientCSSProperties;
|
|
4965
|
+
xl?: TransientCSSProperties;
|
|
4966
|
+
"2xl"?: TransientCSSProperties;
|
|
4967
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4968
|
+
};
|
|
4969
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4970
|
+
$viewport?: {
|
|
4971
|
+
sm?: TransientCSSProperties;
|
|
4972
|
+
md?: TransientCSSProperties;
|
|
4973
|
+
lg?: TransientCSSProperties;
|
|
4974
|
+
xl?: TransientCSSProperties;
|
|
4975
|
+
"2xl"?: TransientCSSProperties;
|
|
4976
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4977
|
+
};
|
|
4978
|
+
}, DetailedHTMLProps<StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4979
|
+
$viewport?: {
|
|
4980
|
+
sm?: TransientCSSProperties;
|
|
4981
|
+
md?: TransientCSSProperties;
|
|
4982
|
+
lg?: TransientCSSProperties;
|
|
4983
|
+
xl?: TransientCSSProperties;
|
|
4984
|
+
"2xl"?: TransientCSSProperties;
|
|
4985
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4986
|
+
};
|
|
4987
|
+
}, DetailedHTMLProps<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4988
|
+
$viewport?: {
|
|
4989
|
+
sm?: TransientCSSProperties;
|
|
4990
|
+
md?: TransientCSSProperties;
|
|
4991
|
+
lg?: TransientCSSProperties;
|
|
4992
|
+
xl?: TransientCSSProperties;
|
|
4993
|
+
"2xl"?: TransientCSSProperties;
|
|
4994
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
4995
|
+
};
|
|
4996
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
4997
|
+
$viewport?: {
|
|
4998
|
+
sm?: TransientCSSProperties;
|
|
4999
|
+
md?: TransientCSSProperties;
|
|
5000
|
+
lg?: TransientCSSProperties;
|
|
5001
|
+
xl?: TransientCSSProperties;
|
|
5002
|
+
"2xl"?: TransientCSSProperties;
|
|
5003
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5004
|
+
};
|
|
5005
|
+
}, DetailedHTMLProps<TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5006
|
+
$viewport?: {
|
|
5007
|
+
sm?: TransientCSSProperties;
|
|
5008
|
+
md?: TransientCSSProperties;
|
|
5009
|
+
lg?: TransientCSSProperties;
|
|
5010
|
+
xl?: TransientCSSProperties;
|
|
5011
|
+
"2xl"?: TransientCSSProperties;
|
|
5012
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5013
|
+
};
|
|
5014
|
+
}, DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5015
|
+
$viewport?: {
|
|
5016
|
+
sm?: TransientCSSProperties;
|
|
5017
|
+
md?: TransientCSSProperties;
|
|
5018
|
+
lg?: TransientCSSProperties;
|
|
5019
|
+
xl?: TransientCSSProperties;
|
|
5020
|
+
"2xl"?: TransientCSSProperties;
|
|
5021
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5022
|
+
};
|
|
5023
|
+
}, DetailedHTMLProps<ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5024
|
+
$viewport?: {
|
|
5025
|
+
sm?: TransientCSSProperties;
|
|
5026
|
+
md?: TransientCSSProperties;
|
|
5027
|
+
lg?: TransientCSSProperties;
|
|
5028
|
+
xl?: TransientCSSProperties;
|
|
5029
|
+
"2xl"?: TransientCSSProperties;
|
|
5030
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5031
|
+
};
|
|
5032
|
+
}, DetailedHTMLProps<TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5033
|
+
$viewport?: {
|
|
5034
|
+
sm?: TransientCSSProperties;
|
|
5035
|
+
md?: TransientCSSProperties;
|
|
5036
|
+
lg?: TransientCSSProperties;
|
|
5037
|
+
xl?: TransientCSSProperties;
|
|
5038
|
+
"2xl"?: TransientCSSProperties;
|
|
5039
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5040
|
+
};
|
|
5041
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5042
|
+
$viewport?: {
|
|
5043
|
+
sm?: TransientCSSProperties;
|
|
5044
|
+
md?: TransientCSSProperties;
|
|
5045
|
+
lg?: TransientCSSProperties;
|
|
5046
|
+
xl?: TransientCSSProperties;
|
|
5047
|
+
"2xl"?: TransientCSSProperties;
|
|
5048
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5049
|
+
};
|
|
5050
|
+
}, DetailedHTMLProps<TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5051
|
+
$viewport?: {
|
|
5052
|
+
sm?: TransientCSSProperties;
|
|
5053
|
+
md?: TransientCSSProperties;
|
|
5054
|
+
lg?: TransientCSSProperties;
|
|
5055
|
+
xl?: TransientCSSProperties;
|
|
5056
|
+
"2xl"?: TransientCSSProperties;
|
|
5057
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5058
|
+
};
|
|
5059
|
+
}, DetailedHTMLProps<HTMLAttributes<HTMLUListElement>, HTMLUListElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5060
|
+
$viewport?: {
|
|
5061
|
+
sm?: TransientCSSProperties;
|
|
5062
|
+
md?: TransientCSSProperties;
|
|
5063
|
+
lg?: TransientCSSProperties;
|
|
5064
|
+
xl?: TransientCSSProperties;
|
|
5065
|
+
"2xl"?: TransientCSSProperties;
|
|
5066
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5067
|
+
};
|
|
5068
|
+
}, DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5069
|
+
$viewport?: {
|
|
5070
|
+
sm?: TransientCSSProperties;
|
|
5071
|
+
md?: TransientCSSProperties;
|
|
5072
|
+
lg?: TransientCSSProperties;
|
|
5073
|
+
xl?: TransientCSSProperties;
|
|
5074
|
+
"2xl"?: TransientCSSProperties;
|
|
5075
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5076
|
+
};
|
|
5077
|
+
}, SVGTextElementAttributes<SVGTextElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5078
|
+
$viewport?: {
|
|
5079
|
+
sm?: TransientCSSProperties;
|
|
5080
|
+
md?: TransientCSSProperties;
|
|
5081
|
+
lg?: TransientCSSProperties;
|
|
5082
|
+
xl?: TransientCSSProperties;
|
|
5083
|
+
"2xl"?: TransientCSSProperties;
|
|
5084
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5085
|
+
};
|
|
5086
|
+
}, SVGProps<SVGCircleElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5087
|
+
$viewport?: {
|
|
5088
|
+
sm?: TransientCSSProperties;
|
|
5089
|
+
md?: TransientCSSProperties;
|
|
5090
|
+
lg?: TransientCSSProperties;
|
|
5091
|
+
xl?: TransientCSSProperties;
|
|
5092
|
+
"2xl"?: TransientCSSProperties;
|
|
5093
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5094
|
+
};
|
|
5095
|
+
}, DetailedHTMLProps<KeygenHTMLAttributes<HTMLElement>, HTMLElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5096
|
+
$viewport?: {
|
|
5097
|
+
sm?: TransientCSSProperties;
|
|
5098
|
+
md?: TransientCSSProperties;
|
|
5099
|
+
lg?: TransientCSSProperties;
|
|
5100
|
+
xl?: TransientCSSProperties;
|
|
5101
|
+
"2xl"?: TransientCSSProperties;
|
|
5102
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5103
|
+
};
|
|
5104
|
+
}, DetailedHTMLProps<ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5105
|
+
$viewport?: {
|
|
5106
|
+
sm?: TransientCSSProperties;
|
|
5107
|
+
md?: TransientCSSProperties;
|
|
5108
|
+
lg?: TransientCSSProperties;
|
|
5109
|
+
xl?: TransientCSSProperties;
|
|
5110
|
+
"2xl"?: TransientCSSProperties;
|
|
5111
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5112
|
+
};
|
|
5113
|
+
}, SVGProps<SVGUseElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5114
|
+
$viewport?: {
|
|
5115
|
+
sm?: TransientCSSProperties;
|
|
5116
|
+
md?: TransientCSSProperties;
|
|
5117
|
+
lg?: TransientCSSProperties;
|
|
5118
|
+
xl?: TransientCSSProperties;
|
|
5119
|
+
"2xl"?: TransientCSSProperties;
|
|
5120
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5121
|
+
};
|
|
5122
|
+
}, SVGProps<SVGDefsElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5123
|
+
$viewport?: {
|
|
5124
|
+
sm?: TransientCSSProperties;
|
|
5125
|
+
md?: TransientCSSProperties;
|
|
5126
|
+
lg?: TransientCSSProperties;
|
|
5127
|
+
xl?: TransientCSSProperties;
|
|
5128
|
+
"2xl"?: TransientCSSProperties;
|
|
5129
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5130
|
+
};
|
|
5131
|
+
}, SVGProps<SVGEllipseElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5132
|
+
$viewport?: {
|
|
5133
|
+
sm?: TransientCSSProperties;
|
|
5134
|
+
md?: TransientCSSProperties;
|
|
5135
|
+
lg?: TransientCSSProperties;
|
|
5136
|
+
xl?: TransientCSSProperties;
|
|
5137
|
+
"2xl"?: TransientCSSProperties;
|
|
5138
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5139
|
+
};
|
|
5140
|
+
}, SVGProps<SVGForeignObjectElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5141
|
+
$viewport?: {
|
|
5142
|
+
sm?: TransientCSSProperties;
|
|
5143
|
+
md?: TransientCSSProperties;
|
|
5144
|
+
lg?: TransientCSSProperties;
|
|
5145
|
+
xl?: TransientCSSProperties;
|
|
5146
|
+
"2xl"?: TransientCSSProperties;
|
|
5147
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5148
|
+
};
|
|
5149
|
+
}, SVGProps<SVGGElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5150
|
+
$viewport?: {
|
|
5151
|
+
sm?: TransientCSSProperties;
|
|
5152
|
+
md?: TransientCSSProperties;
|
|
5153
|
+
lg?: TransientCSSProperties;
|
|
5154
|
+
xl?: TransientCSSProperties;
|
|
5155
|
+
"2xl"?: TransientCSSProperties;
|
|
5156
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5157
|
+
};
|
|
5158
|
+
}, SVGProps<SVGImageElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5159
|
+
$viewport?: {
|
|
5160
|
+
sm?: TransientCSSProperties;
|
|
5161
|
+
md?: TransientCSSProperties;
|
|
5162
|
+
lg?: TransientCSSProperties;
|
|
5163
|
+
xl?: TransientCSSProperties;
|
|
5164
|
+
"2xl"?: TransientCSSProperties;
|
|
5165
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5166
|
+
};
|
|
5167
|
+
}, SVGLineElementAttributes<SVGLineElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5168
|
+
$viewport?: {
|
|
5169
|
+
sm?: TransientCSSProperties;
|
|
5170
|
+
md?: TransientCSSProperties;
|
|
5171
|
+
lg?: TransientCSSProperties;
|
|
5172
|
+
xl?: TransientCSSProperties;
|
|
5173
|
+
"2xl"?: TransientCSSProperties;
|
|
5174
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5175
|
+
};
|
|
5176
|
+
}, SVGProps<SVGLinearGradientElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5177
|
+
$viewport?: {
|
|
5178
|
+
sm?: TransientCSSProperties;
|
|
5179
|
+
md?: TransientCSSProperties;
|
|
5180
|
+
lg?: TransientCSSProperties;
|
|
5181
|
+
xl?: TransientCSSProperties;
|
|
5182
|
+
"2xl"?: TransientCSSProperties;
|
|
5183
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5184
|
+
};
|
|
5185
|
+
}, SVGProps<SVGPathElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5186
|
+
$viewport?: {
|
|
5187
|
+
sm?: TransientCSSProperties;
|
|
5188
|
+
md?: TransientCSSProperties;
|
|
5189
|
+
lg?: TransientCSSProperties;
|
|
5190
|
+
xl?: TransientCSSProperties;
|
|
5191
|
+
"2xl"?: TransientCSSProperties;
|
|
5192
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5193
|
+
};
|
|
5194
|
+
}, SVGProps<SVGPatternElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5195
|
+
$viewport?: {
|
|
5196
|
+
sm?: TransientCSSProperties;
|
|
5197
|
+
md?: TransientCSSProperties;
|
|
5198
|
+
lg?: TransientCSSProperties;
|
|
5199
|
+
xl?: TransientCSSProperties;
|
|
5200
|
+
"2xl"?: TransientCSSProperties;
|
|
5201
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5202
|
+
};
|
|
5203
|
+
}, SVGProps<SVGPolygonElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5204
|
+
$viewport?: {
|
|
5205
|
+
sm?: TransientCSSProperties;
|
|
5206
|
+
md?: TransientCSSProperties;
|
|
5207
|
+
lg?: TransientCSSProperties;
|
|
5208
|
+
xl?: TransientCSSProperties;
|
|
5209
|
+
"2xl"?: TransientCSSProperties;
|
|
5210
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5211
|
+
};
|
|
5212
|
+
}, SVGProps<SVGPolylineElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5213
|
+
$viewport?: {
|
|
5214
|
+
sm?: TransientCSSProperties;
|
|
5215
|
+
md?: TransientCSSProperties;
|
|
5216
|
+
lg?: TransientCSSProperties;
|
|
5217
|
+
xl?: TransientCSSProperties;
|
|
5218
|
+
"2xl"?: TransientCSSProperties;
|
|
5219
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5220
|
+
};
|
|
5221
|
+
}, SVGProps<SVGRadialGradientElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5222
|
+
$viewport?: {
|
|
5223
|
+
sm?: TransientCSSProperties;
|
|
5224
|
+
md?: TransientCSSProperties;
|
|
5225
|
+
lg?: TransientCSSProperties;
|
|
5226
|
+
xl?: TransientCSSProperties;
|
|
5227
|
+
"2xl"?: TransientCSSProperties;
|
|
5228
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5229
|
+
};
|
|
5230
|
+
}, SVGProps<SVGRectElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5231
|
+
$viewport?: {
|
|
5232
|
+
sm?: TransientCSSProperties;
|
|
5233
|
+
md?: TransientCSSProperties;
|
|
5234
|
+
lg?: TransientCSSProperties;
|
|
5235
|
+
xl?: TransientCSSProperties;
|
|
5236
|
+
"2xl"?: TransientCSSProperties;
|
|
5237
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5238
|
+
};
|
|
5239
|
+
}, SVGProps<SVGStopElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5240
|
+
$viewport?: {
|
|
5241
|
+
sm?: TransientCSSProperties;
|
|
5242
|
+
md?: TransientCSSProperties;
|
|
5243
|
+
lg?: TransientCSSProperties;
|
|
5244
|
+
xl?: TransientCSSProperties;
|
|
5245
|
+
"2xl"?: TransientCSSProperties;
|
|
5246
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5247
|
+
};
|
|
5248
|
+
}, SVGProps<SVGSVGElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5249
|
+
$viewport?: {
|
|
5250
|
+
sm?: TransientCSSProperties;
|
|
5251
|
+
md?: TransientCSSProperties;
|
|
5252
|
+
lg?: TransientCSSProperties;
|
|
5253
|
+
xl?: TransientCSSProperties;
|
|
5254
|
+
"2xl"?: TransientCSSProperties;
|
|
5255
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5256
|
+
};
|
|
5257
|
+
}, SVGProps<SVGTSpanElement>>, never> | FastOmit<Substitute<FastOmit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof ComponentProps | "$viewport"> & ComponentProps & {
|
|
5258
|
+
$viewport?: {
|
|
5259
|
+
sm?: TransientCSSProperties;
|
|
5260
|
+
md?: TransientCSSProperties;
|
|
5261
|
+
lg?: TransientCSSProperties;
|
|
5262
|
+
xl?: TransientCSSProperties;
|
|
5263
|
+
"2xl"?: TransientCSSProperties;
|
|
5264
|
+
[key: string]: TransientCSSProperties | undefined;
|
|
5265
|
+
};
|
|
5266
|
+
}, 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>>));
|
|
4436
5267
|
export { Text_2 as Text }
|
|
4437
5268
|
|
|
4438
5269
|
declare class TextApiResponse {
|
|
@@ -4441,7 +5272,18 @@ declare class TextApiResponse {
|
|
|
4441
5272
|
value(): Promise<string>;
|
|
4442
5273
|
}
|
|
4443
5274
|
|
|
4444
|
-
export declare
|
|
5275
|
+
export declare enum TextPropNames {
|
|
5276
|
+
Align = "$align",
|
|
5277
|
+
Font = "$font",
|
|
5278
|
+
Size = "$size",
|
|
5279
|
+
Weight = "$weight",
|
|
5280
|
+
Color = "$color",
|
|
5281
|
+
Leading = "$leading"
|
|
5282
|
+
}
|
|
5283
|
+
|
|
5284
|
+
export declare type TextPropNameTypes = `${TextPropNames}`;
|
|
5285
|
+
|
|
5286
|
+
export declare interface TextProps extends BoxProps {
|
|
4445
5287
|
$align?: ComponentProps["$textAlign"];
|
|
4446
5288
|
$font?: ComponentProps["$fontFamily"];
|
|
4447
5289
|
$size?: ComponentProps["$fontSize"];
|