@gpichot/spectacle-deck 1.0.1 → 1.0.2
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/components/map.d.ts +3 -3
- package/components/styled.d.ts +20 -20
- package/index.cjs +451 -178
- package/index.mjs +450 -177
- package/layouts/CenteredLayout.d.ts +2 -0
- package/layouts/Default3Layout.d.ts +5 -0
- package/layouts/SectionLayout.d.ts +5 -5
- package/layouts/index.d.ts +10 -5
- package/layouts/styled.d.ts +5 -5
- package/layouts/utils.d.ts +1 -0
- package/package.json +1 -1
package/components/map.d.ts
CHANGED
|
@@ -18,6 +18,9 @@ declare const componentsMap: {
|
|
|
18
18
|
readonly a: ({ children, ...props }: React.ComponentProps<"a">) => React.JSX.Element;
|
|
19
19
|
readonly symbol?: React.ElementType;
|
|
20
20
|
readonly object?: React.ElementType;
|
|
21
|
+
readonly map?: React.ElementType;
|
|
22
|
+
readonly filter?: React.ElementType;
|
|
23
|
+
readonly code?: React.ElementType;
|
|
21
24
|
readonly div?: React.ElementType;
|
|
22
25
|
readonly abbr?: React.ElementType;
|
|
23
26
|
readonly address?: React.ElementType;
|
|
@@ -37,7 +40,6 @@ declare const componentsMap: {
|
|
|
37
40
|
readonly caption?: React.ElementType;
|
|
38
41
|
readonly center?: React.ElementType;
|
|
39
42
|
readonly cite?: React.ElementType;
|
|
40
|
-
readonly code?: React.ElementType;
|
|
41
43
|
readonly col?: React.ElementType;
|
|
42
44
|
readonly colgroup?: React.ElementType;
|
|
43
45
|
readonly data?: React.ElementType;
|
|
@@ -74,7 +76,6 @@ declare const componentsMap: {
|
|
|
74
76
|
readonly legend?: React.ElementType;
|
|
75
77
|
readonly link?: React.ElementType;
|
|
76
78
|
readonly main?: React.ElementType;
|
|
77
|
-
readonly map?: React.ElementType;
|
|
78
79
|
readonly mark?: React.ElementType;
|
|
79
80
|
readonly menu?: React.ElementType;
|
|
80
81
|
readonly menuitem?: React.ElementType;
|
|
@@ -158,7 +159,6 @@ declare const componentsMap: {
|
|
|
158
159
|
readonly feSpotLight?: React.ElementType;
|
|
159
160
|
readonly feTile?: React.ElementType;
|
|
160
161
|
readonly feTurbulence?: React.ElementType;
|
|
161
|
-
readonly filter?: React.ElementType;
|
|
162
162
|
readonly foreignObject?: React.ElementType;
|
|
163
163
|
readonly g?: React.ElementType;
|
|
164
164
|
readonly image?: React.ElementType;
|
package/components/styled.d.ts
CHANGED
|
@@ -57,11 +57,11 @@ export declare const CustomQuote: import("styled-components").IStyledComponent<"
|
|
|
57
57
|
results?: number;
|
|
58
58
|
security?: string;
|
|
59
59
|
unselectable?: "on" | "off";
|
|
60
|
-
inputMode?: "
|
|
60
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
61
61
|
is?: string;
|
|
62
62
|
"aria-activedescendant"?: string;
|
|
63
63
|
"aria-atomic"?: boolean | "true" | "false";
|
|
64
|
-
"aria-autocomplete"?: "
|
|
64
|
+
"aria-autocomplete"?: "inline" | "none" | "list" | "both";
|
|
65
65
|
"aria-braillelabel"?: string;
|
|
66
66
|
"aria-brailleroledescription"?: string;
|
|
67
67
|
"aria-busy"?: boolean | "true" | "false";
|
|
@@ -71,17 +71,17 @@ export declare const CustomQuote: import("styled-components").IStyledComponent<"
|
|
|
71
71
|
"aria-colindextext"?: string;
|
|
72
72
|
"aria-colspan"?: number;
|
|
73
73
|
"aria-controls"?: string;
|
|
74
|
-
"aria-current"?: boolean | "time" | "
|
|
74
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
|
|
75
75
|
"aria-describedby"?: string;
|
|
76
76
|
"aria-description"?: string;
|
|
77
77
|
"aria-details"?: string;
|
|
78
78
|
"aria-disabled"?: boolean | "true" | "false";
|
|
79
|
-
"aria-dropeffect"?: "
|
|
79
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
80
80
|
"aria-errormessage"?: string;
|
|
81
81
|
"aria-expanded"?: boolean | "true" | "false";
|
|
82
82
|
"aria-flowto"?: string;
|
|
83
83
|
"aria-grabbed"?: boolean | "true" | "false";
|
|
84
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
84
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree";
|
|
85
85
|
"aria-hidden"?: boolean | "true" | "false";
|
|
86
86
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
87
87
|
"aria-keyshortcuts"?: string;
|
|
@@ -329,11 +329,11 @@ export declare const InlineCode: import("styled-components").IStyledComponent<"w
|
|
|
329
329
|
results?: number;
|
|
330
330
|
security?: string;
|
|
331
331
|
unselectable?: "on" | "off";
|
|
332
|
-
inputMode?: "
|
|
332
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
333
333
|
is?: string;
|
|
334
334
|
"aria-activedescendant"?: string;
|
|
335
335
|
"aria-atomic"?: boolean | "true" | "false";
|
|
336
|
-
"aria-autocomplete"?: "
|
|
336
|
+
"aria-autocomplete"?: "inline" | "none" | "list" | "both";
|
|
337
337
|
"aria-braillelabel"?: string;
|
|
338
338
|
"aria-brailleroledescription"?: string;
|
|
339
339
|
"aria-busy"?: boolean | "true" | "false";
|
|
@@ -343,17 +343,17 @@ export declare const InlineCode: import("styled-components").IStyledComponent<"w
|
|
|
343
343
|
"aria-colindextext"?: string;
|
|
344
344
|
"aria-colspan"?: number;
|
|
345
345
|
"aria-controls"?: string;
|
|
346
|
-
"aria-current"?: boolean | "time" | "
|
|
346
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
|
|
347
347
|
"aria-describedby"?: string;
|
|
348
348
|
"aria-description"?: string;
|
|
349
349
|
"aria-details"?: string;
|
|
350
350
|
"aria-disabled"?: boolean | "true" | "false";
|
|
351
|
-
"aria-dropeffect"?: "
|
|
351
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
352
352
|
"aria-errormessage"?: string;
|
|
353
353
|
"aria-expanded"?: boolean | "true" | "false";
|
|
354
354
|
"aria-flowto"?: string;
|
|
355
355
|
"aria-grabbed"?: boolean | "true" | "false";
|
|
356
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
356
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree";
|
|
357
357
|
"aria-hidden"?: boolean | "true" | "false";
|
|
358
358
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
359
359
|
"aria-keyshortcuts"?: string;
|
|
@@ -601,11 +601,11 @@ export declare const HeadingTwo: import("styled-components").IStyledComponent<"w
|
|
|
601
601
|
results?: number;
|
|
602
602
|
security?: string;
|
|
603
603
|
unselectable?: "on" | "off";
|
|
604
|
-
inputMode?: "
|
|
604
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
605
605
|
is?: string;
|
|
606
606
|
"aria-activedescendant"?: string;
|
|
607
607
|
"aria-atomic"?: boolean | "true" | "false";
|
|
608
|
-
"aria-autocomplete"?: "
|
|
608
|
+
"aria-autocomplete"?: "inline" | "none" | "list" | "both";
|
|
609
609
|
"aria-braillelabel"?: string;
|
|
610
610
|
"aria-brailleroledescription"?: string;
|
|
611
611
|
"aria-busy"?: boolean | "true" | "false";
|
|
@@ -615,17 +615,17 @@ export declare const HeadingTwo: import("styled-components").IStyledComponent<"w
|
|
|
615
615
|
"aria-colindextext"?: string;
|
|
616
616
|
"aria-colspan"?: number;
|
|
617
617
|
"aria-controls"?: string;
|
|
618
|
-
"aria-current"?: boolean | "time" | "
|
|
618
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
|
|
619
619
|
"aria-describedby"?: string;
|
|
620
620
|
"aria-description"?: string;
|
|
621
621
|
"aria-details"?: string;
|
|
622
622
|
"aria-disabled"?: boolean | "true" | "false";
|
|
623
|
-
"aria-dropeffect"?: "
|
|
623
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
624
624
|
"aria-errormessage"?: string;
|
|
625
625
|
"aria-expanded"?: boolean | "true" | "false";
|
|
626
626
|
"aria-flowto"?: string;
|
|
627
627
|
"aria-grabbed"?: boolean | "true" | "false";
|
|
628
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
628
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree";
|
|
629
629
|
"aria-hidden"?: boolean | "true" | "false";
|
|
630
630
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
631
631
|
"aria-keyshortcuts"?: string;
|
|
@@ -873,11 +873,11 @@ export declare const HeadingThree: import("styled-components").IStyledComponent<
|
|
|
873
873
|
results?: number;
|
|
874
874
|
security?: string;
|
|
875
875
|
unselectable?: "on" | "off";
|
|
876
|
-
inputMode?: "
|
|
876
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal";
|
|
877
877
|
is?: string;
|
|
878
878
|
"aria-activedescendant"?: string;
|
|
879
879
|
"aria-atomic"?: boolean | "true" | "false";
|
|
880
|
-
"aria-autocomplete"?: "
|
|
880
|
+
"aria-autocomplete"?: "inline" | "none" | "list" | "both";
|
|
881
881
|
"aria-braillelabel"?: string;
|
|
882
882
|
"aria-brailleroledescription"?: string;
|
|
883
883
|
"aria-busy"?: boolean | "true" | "false";
|
|
@@ -887,17 +887,17 @@ export declare const HeadingThree: import("styled-components").IStyledComponent<
|
|
|
887
887
|
"aria-colindextext"?: string;
|
|
888
888
|
"aria-colspan"?: number;
|
|
889
889
|
"aria-controls"?: string;
|
|
890
|
-
"aria-current"?: boolean | "time" | "
|
|
890
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date";
|
|
891
891
|
"aria-describedby"?: string;
|
|
892
892
|
"aria-description"?: string;
|
|
893
893
|
"aria-details"?: string;
|
|
894
894
|
"aria-disabled"?: boolean | "true" | "false";
|
|
895
|
-
"aria-dropeffect"?: "
|
|
895
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup";
|
|
896
896
|
"aria-errormessage"?: string;
|
|
897
897
|
"aria-expanded"?: boolean | "true" | "false";
|
|
898
898
|
"aria-flowto"?: string;
|
|
899
899
|
"aria-grabbed"?: boolean | "true" | "false";
|
|
900
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
900
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "true" | "false" | "listbox" | "tree";
|
|
901
901
|
"aria-hidden"?: boolean | "true" | "false";
|
|
902
902
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling";
|
|
903
903
|
"aria-keyshortcuts"?: string;
|