@gpichot/spectacle-deck 1.8.0 → 1.11.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/SkipStepsShortcut.d.ts +5 -0
- package/index.cjs +240 -139
- package/index.d.ts +7 -0
- package/index.mjs +199 -98
- package/layouts/FullImageLayout.d.ts +2 -1
- package/layouts/TwoColumnLayout.d.ts +4 -0
- package/layouts/index.d.ts +2 -0
- package/package.json +9 -1
package/index.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ export declare const layouts: {
|
|
|
46
46
|
section: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
47
47
|
fullImage: typeof import("./layouts/FullImageLayout").FullImageLayout;
|
|
48
48
|
bigNumber: typeof import("./layouts/BigNumberLayout").BigNumberLayout;
|
|
49
|
+
twoColumn: typeof import("./layouts/TwoColumnLayout").TwoColumnLayout;
|
|
49
50
|
};
|
|
50
51
|
interface ThemeOptions {
|
|
51
52
|
themeTokens: {
|
|
@@ -81,6 +82,12 @@ export declare function Side({ children }: {
|
|
|
81
82
|
export declare namespace Side {
|
|
82
83
|
var mdxType: string;
|
|
83
84
|
}
|
|
85
|
+
export declare function Column({ children }: {
|
|
86
|
+
children: React.ReactNode;
|
|
87
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
88
|
+
export declare namespace Column {
|
|
89
|
+
var mdxType: string;
|
|
90
|
+
}
|
|
84
91
|
export declare function Documentation({ children }: {
|
|
85
92
|
children: React.ReactNode;
|
|
86
93
|
}): import("react/jsx-runtime").JSX.Element;
|