@gpichot/spectacle-deck 1.0.8 → 1.1.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/components/DocumentationItem.d.ts +10 -0
- package/{index.cjs → dist/index.cjs} +288 -141
- package/{index.d.ts → dist/index.d.ts} +4 -6
- package/{index.mjs → dist/index.mjs} +287 -140
- package/dist/layouts/QuoteLayout.d.ts +6 -0
- package/{layouts → dist/layouts}/index.d.ts +2 -0
- package/dist/package.json +30 -0
- package/package.json +20 -16
- package/scripts/bundle.ts +84 -0
- package/src/components/CodeStepper/CodeStepper.tsx +223 -0
- package/src/components/CodeStepper/code-directives.test.ts +58 -0
- package/src/components/CodeStepper/code-directives.ts +129 -0
- package/src/components/DocumentationItem.tsx +85 -0
- package/src/components/FilePane.tsx +18 -0
- package/src/components/HorizontalList.tsx +140 -0
- package/src/components/IconBox.tsx +31 -0
- package/src/components/Image.tsx +34 -0
- package/src/components/ItemsColumn.tsx +56 -0
- package/src/components/Timeline.styled.tsx +24 -0
- package/src/components/Timeline.tsx +157 -0
- package/src/components/map.tsx +115 -0
- package/src/components/styled.tsx +73 -0
- package/src/front.png +0 -0
- package/src/index.tsx +109 -0
- package/src/layouts/CenteredLayout.tsx +40 -0
- package/src/layouts/Default3Layout.tsx +159 -0
- package/src/layouts/MainSectionLayout.tsx +31 -0
- package/src/layouts/QuoteLayout.tsx +99 -0
- package/src/layouts/SectionLayout.tsx +14 -0
- package/src/layouts/SideCodeLayout.tsx +44 -0
- package/src/layouts/SideImageLayout.tsx +72 -0
- package/src/layouts/SideLayout.tsx +31 -0
- package/src/layouts/columns.tsx +56 -0
- package/src/layouts/index.tsx +19 -0
- package/src/layouts/styled.ts +7 -0
- package/src/layouts/utils.ts +65 -0
- package/src/node.d.ts +5 -0
- package/src/style.d.ts +10 -0
- package/src/template.tsx +25 -0
- package/src/theme.ts +24 -0
- package/test.js +106 -0
- package/tsconfig.json +29 -0
- /package/{components → dist/components}/CodeStepper/CodeStepper.d.ts +0 -0
- /package/{components → dist/components}/CodeStepper/code-directives.d.ts +0 -0
- /package/{components → dist/components}/FilePane.d.ts +0 -0
- /package/{components → dist/components}/HorizontalList.d.ts +0 -0
- /package/{components → dist/components}/IconBox.d.ts +0 -0
- /package/{components → dist/components}/Image.d.ts +0 -0
- /package/{components → dist/components}/ItemsColumn.d.ts +0 -0
- /package/{components → dist/components}/Timeline.d.ts +0 -0
- /package/{components → dist/components}/Timeline.styled.d.ts +0 -0
- /package/{components → dist/components}/map.d.ts +0 -0
- /package/{components → dist/components}/styled.d.ts +0 -0
- /package/{layouts → dist/layouts}/CenteredLayout.d.ts +0 -0
- /package/{layouts → dist/layouts}/Default3Layout.d.ts +0 -0
- /package/{layouts → dist/layouts}/MainSectionLayout.d.ts +0 -0
- /package/{layouts → dist/layouts}/SectionLayout.d.ts +0 -0
- /package/{layouts → dist/layouts}/SideCodeLayout.d.ts +0 -0
- /package/{layouts → dist/layouts}/SideImageLayout.d.ts +0 -0
- /package/{layouts → dist/layouts}/SideLayout.d.ts +0 -0
- /package/{layouts → dist/layouts}/columns.d.ts +0 -0
- /package/{layouts → dist/layouts}/styled.d.ts +0 -0
- /package/{layouts → dist/layouts}/utils.d.ts +0 -0
- /package/{template.d.ts → dist/template.d.ts} +0 -0
- /package/{theme.d.ts → dist/theme.d.ts} +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare function Doc({ label, link, children, }: {
|
|
3
|
+
label: string;
|
|
4
|
+
link: string;
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
}): React.JSX.Element;
|
|
7
|
+
export declare function DocItem({ label, link }: {
|
|
8
|
+
label: string;
|
|
9
|
+
link: string;
|
|
10
|
+
}): React.JSX.Element;
|