@hievilmath/browser-formidavim 1.3.3 → 1.3.4
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/index.js +135 -118
- package/index.mjs +3421 -3377
- package/lib/components/visual/Video.d.ts +5 -0
- package/lib/styled-components/uiComponents.d.ts +7 -0
- package/package.json +1 -1
|
@@ -138,6 +138,13 @@ export declare const StyledImage: import('styled-components/dist/types').IStyled
|
|
|
138
138
|
$maxHeight?: string;
|
|
139
139
|
$margin?: string;
|
|
140
140
|
}>> & string;
|
|
141
|
+
export declare const StyledVideoWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
142
|
+
$borderRadius?: string;
|
|
143
|
+
$margin?: string;
|
|
144
|
+
$maxHeight?: string;
|
|
145
|
+
$visible?: string;
|
|
146
|
+
}>> & string;
|
|
147
|
+
export declare const StyledVideo: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, never>> & string;
|
|
141
148
|
export declare const StyledRadioLabel: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
|
|
142
149
|
export declare const FormHeaderDesktop: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
143
150
|
export declare const FlowStepTrackerContainerMobile: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|