@pixelated-tech/components 3.3.5 → 3.4.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/README.COMPONENTS.md +126 -0
- package/README.md +15 -9
- package/dist/components/admin/componentusage/componentAnalysis.js +144 -0
- package/dist/components/admin/componentusage/componentDiscovery.js +85 -0
- package/dist/components/admin/deploy/deployment.integration.js +170 -0
- package/dist/components/admin/site-health/google-api-auth.js +69 -0
- package/dist/components/admin/site-health/seo-metrics.config.json +265 -0
- package/dist/components/admin/site-health/site-health-accessibility.js +158 -0
- package/dist/components/admin/site-health/site-health-axe-core.integration.js +119 -0
- package/dist/components/admin/site-health/site-health-axe-core.js +53 -0
- package/dist/components/admin/site-health/site-health-cache.js +23 -0
- package/dist/components/admin/site-health/site-health-core-web-vitals.integration.js +208 -0
- package/dist/components/admin/site-health/site-health-dependency-vulnerabilities.js +38 -0
- package/dist/components/admin/site-health/site-health-github.integration.js +81 -0
- package/dist/components/admin/site-health/site-health-github.js +34 -0
- package/dist/components/admin/site-health/site-health-google-analytics.integration.js +112 -0
- package/dist/components/admin/site-health/site-health-google-analytics.js +43 -0
- package/dist/components/admin/site-health/site-health-google-search-console.integration.js +118 -0
- package/dist/components/admin/site-health/site-health-google-search-console.js +43 -0
- package/dist/components/admin/site-health/site-health-indicators.js +71 -0
- package/dist/components/admin/site-health/site-health-on-site-seo.integration.js +578 -0
- package/dist/components/admin/site-health/site-health-on-site-seo.js +204 -0
- package/dist/components/admin/site-health/site-health-overview.js +65 -0
- package/dist/components/admin/site-health/site-health-performance.js +191 -0
- package/dist/components/admin/site-health/site-health-security.integration.js +109 -0
- package/dist/components/admin/site-health/site-health-security.js +169 -0
- package/dist/components/admin/site-health/site-health-seo.js +124 -0
- package/dist/components/admin/site-health/site-health-template.js +62 -0
- package/dist/components/admin/site-health/site-health-types.js +1 -0
- package/dist/components/admin/site-health/site-health-uptime.integration.js +29 -0
- package/dist/components/admin/site-health/site-health-uptime.js +30 -0
- package/dist/components/admin/site-health/site-health.css +427 -0
- package/dist/components/admin/sites/sites.integration.js +117 -0
- package/dist/components/cms/contentful.management.js +104 -0
- package/dist/components/cms/hubspot.components.js +3 -3
- package/dist/components/config/config.client.js +21 -10
- package/dist/components/general/table.js +3 -1
- package/dist/components/seo/googleanalytics.js +1 -2
- package/dist/components/shoppingcart/shipping.from.json +101 -0
- package/dist/components/shoppingcart/shipping.parcel.json +112 -0
- package/dist/components/shoppingcart/shipping.to.json +422 -0
- package/dist/components/shoppingcart/shoppingCartDiscountCodes.json +26 -0
- package/dist/components/shoppingcart/shoppingcart.components.js +1 -1
- package/dist/components/sitebuilder/config/ConfigBuilder.js +36 -140
- package/dist/components/sitebuilder/config/siteinfo-form.json +200 -0
- package/dist/components/sitebuilder/config/visualdesignform.json +244 -0
- package/dist/components/structured/buzzwordbingo.js +3 -2
- package/dist/data/404-data.json +128 -102
- package/dist/data/flickr.json +25 -0
- package/dist/data/form.json +368 -368
- package/dist/data/recipes.json +3251 -3251
- package/dist/data/references.json +138 -137
- package/dist/data/requestform.json +111 -0
- package/dist/data/requests.json +136 -135
- package/dist/data/resume.json +2573 -2575
- package/dist/data/routes.json +238 -238
- package/dist/data/routes2.json +141 -140
- package/dist/index.js +16 -3
- package/dist/index.server.js +36 -15
- package/dist/types/components/admin/componentusage/componentAnalysis.d.ts +35 -0
- package/dist/types/components/admin/componentusage/componentAnalysis.d.ts.map +1 -0
- package/dist/types/components/admin/componentusage/componentDiscovery.d.ts +10 -0
- package/dist/types/components/admin/componentusage/componentDiscovery.d.ts.map +1 -0
- package/dist/types/components/admin/deploy/deployment.integration.d.ts +26 -0
- package/dist/types/components/admin/deploy/deployment.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/google-api-auth.d.ts +37 -0
- package/dist/types/components/admin/site-health/google-api-auth.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-accessibility.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-accessibility.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.integration.d.ts +63 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-cache.d.ts +12 -0
- package/dist/types/components/admin/site-health/site-health-cache.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-core-web-vitals.integration.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-core-web-vitals.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-github.d.ts +8 -0
- package/dist/types/components/admin/site-health/site-health-github.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-github.integration.d.ts +26 -0
- package/dist/types/components/admin/site-health/site-health-github.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts +8 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.integration.d.ts +26 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts +8 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.integration.d.ts +46 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-indicators.d.ts +73 -0
- package/dist/types/components/admin/site-health/site-health-indicators.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts +4 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.integration.d.ts +34 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-overview.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-overview.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-performance.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-performance.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-security.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-security.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-security.integration.d.ts +29 -0
- package/dist/types/components/admin/site-health/site-health-security.integration.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-seo.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-seo.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-template.d.ts +12 -0
- package/dist/types/components/admin/site-health/site-health-template.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-types.d.ts +186 -0
- package/dist/types/components/admin/site-health/site-health-types.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-uptime.d.ts +6 -0
- package/dist/types/components/admin/site-health/site-health-uptime.d.ts.map +1 -0
- package/dist/types/components/admin/site-health/site-health-uptime.integration.d.ts +10 -0
- package/dist/types/components/admin/site-health/site-health-uptime.integration.d.ts.map +1 -0
- package/dist/types/components/admin/sites/sites.integration.d.ts +40 -0
- package/dist/types/components/admin/sites/sites.integration.d.ts.map +1 -0
- package/dist/types/components/cms/contentful.management.d.ts +41 -0
- package/dist/types/components/cms/contentful.management.d.ts.map +1 -1
- package/dist/types/components/config/config.client.d.ts +1 -2
- package/dist/types/components/config/config.client.d.ts.map +1 -1
- package/dist/types/components/general/table.d.ts +1 -0
- package/dist/types/components/general/table.d.ts.map +1 -1
- package/dist/types/components/seo/googleanalytics.d.ts +1 -1
- package/dist/types/components/seo/googleanalytics.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts +4 -4
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts.map +1 -1
- package/dist/types/components/structured/buzzwordbingo.d.ts +1 -1
- package/dist/types/components/structured/buzzwordbingo.d.ts.map +1 -1
- package/dist/types/components/structured/buzzwordbingo.words.d.ts +2 -0
- package/dist/types/components/structured/buzzwordbingo.words.d.ts.map +1 -0
- package/dist/types/index.d.ts +16 -3
- package/dist/types/index.server.d.ts +36 -13
- package/dist/types/stories/admin/preview.d.ts +12 -0
- package/dist/types/stories/admin/preview.d.ts.map +1 -0
- package/dist/types/stories/admin/site-health.stories.d.ts +65 -0
- package/dist/types/stories/admin/site-health.stories.d.ts.map +1 -0
- package/dist/types/stories/structured/buzzword-bingo.stories.d.ts +1 -1
- package/dist/types/stories/structured/buzzword-bingo.stories.d.ts.map +1 -1
- package/dist/types/tests/site-health-axe-core.test.d.ts +2 -0
- package/dist/types/tests/site-health-axe-core.test.d.ts.map +1 -0
- package/dist/types/tests/site-health-cache.test.d.ts +2 -0
- package/dist/types/tests/site-health-cache.test.d.ts.map +1 -0
- package/dist/types/tests/site-health-indicators.test.d.ts +2 -0
- package/dist/types/tests/site-health-indicators.test.d.ts.map +1 -0
- package/dist/types/tests/site-health-overview.test.d.ts +2 -0
- package/dist/types/tests/site-health-overview.test.d.ts.map +1 -0
- package/dist/types/tests/site-health-template.test.d.ts +2 -0
- package/dist/types/tests/site-health-template.test.d.ts.map +1 -0
- package/dist/types/tests/sites.integration.test.d.ts +2 -0
- package/dist/types/tests/sites.integration.test.d.ts.map +1 -0
- package/package.json +15 -9
- package/dist/data/shipping.to.json +0 -422
- package/dist/data/siteinfo-form.json +0 -200
- package/dist/data/visualdesignform.json +0 -244
- package/dist/types/data/buzzwords.d.ts +0 -2
- package/dist/types/data/buzzwords.d.ts.map +0 -1
- /package/dist/{data/buzzwords.js → components/structured/buzzwordbingo.words.js} +0 -0
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
export interface PSIAudit {
|
|
2
|
+
id: string;
|
|
3
|
+
title: string;
|
|
4
|
+
description: string;
|
|
5
|
+
score: number | null;
|
|
6
|
+
scoreDisplayMode: string;
|
|
7
|
+
displayValue?: string;
|
|
8
|
+
numericValue?: number;
|
|
9
|
+
details?: Record<string, unknown>;
|
|
10
|
+
}
|
|
11
|
+
export interface PSICategory {
|
|
12
|
+
id: string;
|
|
13
|
+
title: string;
|
|
14
|
+
score: number | null;
|
|
15
|
+
audits: PSIAudit[];
|
|
16
|
+
}
|
|
17
|
+
export interface PSIScores {
|
|
18
|
+
performance: number | null;
|
|
19
|
+
accessibility: number | null;
|
|
20
|
+
'best-practices': number | null;
|
|
21
|
+
seo: number | null;
|
|
22
|
+
pwa: number | null;
|
|
23
|
+
}
|
|
24
|
+
export interface SiteHealthData {
|
|
25
|
+
site: string;
|
|
26
|
+
url: string;
|
|
27
|
+
scores: PSIScores;
|
|
28
|
+
categories: {
|
|
29
|
+
performance: PSICategory;
|
|
30
|
+
accessibility: PSICategory;
|
|
31
|
+
'best-practices': PSICategory;
|
|
32
|
+
seo: PSICategory;
|
|
33
|
+
pwa: PSICategory;
|
|
34
|
+
};
|
|
35
|
+
timestamp: string;
|
|
36
|
+
status: 'success' | 'error';
|
|
37
|
+
error?: string;
|
|
38
|
+
}
|
|
39
|
+
export interface SiteHealthResponse {
|
|
40
|
+
success: boolean;
|
|
41
|
+
data?: SiteHealthData[];
|
|
42
|
+
error?: string;
|
|
43
|
+
details?: string;
|
|
44
|
+
}
|
|
45
|
+
export interface Vulnerability {
|
|
46
|
+
name: string;
|
|
47
|
+
severity: 'info' | 'low' | 'moderate' | 'high' | 'critical';
|
|
48
|
+
title: string;
|
|
49
|
+
url?: string;
|
|
50
|
+
range: string;
|
|
51
|
+
fixAvailable: boolean;
|
|
52
|
+
}
|
|
53
|
+
export interface DependencyData {
|
|
54
|
+
success: boolean;
|
|
55
|
+
status: string;
|
|
56
|
+
message?: string;
|
|
57
|
+
timestamp: string;
|
|
58
|
+
url?: string;
|
|
59
|
+
vulnerabilities: Vulnerability[];
|
|
60
|
+
summary: {
|
|
61
|
+
info: number;
|
|
62
|
+
low: number;
|
|
63
|
+
moderate: number;
|
|
64
|
+
high: number;
|
|
65
|
+
critical: number;
|
|
66
|
+
total: number;
|
|
67
|
+
};
|
|
68
|
+
dependencies: number;
|
|
69
|
+
totalDependencies: number;
|
|
70
|
+
error?: string;
|
|
71
|
+
}
|
|
72
|
+
export interface UptimeData {
|
|
73
|
+
success: boolean;
|
|
74
|
+
status: 'Healthy' | 'Unhealthy' | 'Unknown';
|
|
75
|
+
timestamp: string;
|
|
76
|
+
url?: string;
|
|
77
|
+
message?: string;
|
|
78
|
+
}
|
|
79
|
+
export interface GitCommit {
|
|
80
|
+
hash: string;
|
|
81
|
+
date: string;
|
|
82
|
+
message: string;
|
|
83
|
+
author: string;
|
|
84
|
+
version?: string;
|
|
85
|
+
}
|
|
86
|
+
export interface GitData {
|
|
87
|
+
success: boolean;
|
|
88
|
+
commits?: GitCommit[];
|
|
89
|
+
error?: string;
|
|
90
|
+
timestamp: string;
|
|
91
|
+
}
|
|
92
|
+
export interface AxeNode {
|
|
93
|
+
target: string[];
|
|
94
|
+
html: string;
|
|
95
|
+
failureSummary?: string;
|
|
96
|
+
ancestry?: string[];
|
|
97
|
+
}
|
|
98
|
+
export interface AxeViolation {
|
|
99
|
+
id: string;
|
|
100
|
+
impact: 'minor' | 'moderate' | 'serious' | 'critical';
|
|
101
|
+
description: string;
|
|
102
|
+
help: string;
|
|
103
|
+
helpUrl: string;
|
|
104
|
+
nodes: AxeNode[];
|
|
105
|
+
tags: string[];
|
|
106
|
+
}
|
|
107
|
+
export interface AxeResult {
|
|
108
|
+
violations: AxeViolation[];
|
|
109
|
+
passes: AxeViolation[];
|
|
110
|
+
incomplete: AxeViolation[];
|
|
111
|
+
inapplicable: AxeViolation[];
|
|
112
|
+
testEngine: {
|
|
113
|
+
name: string;
|
|
114
|
+
version: string;
|
|
115
|
+
};
|
|
116
|
+
testRunner: {
|
|
117
|
+
name: string;
|
|
118
|
+
};
|
|
119
|
+
testEnvironment: {
|
|
120
|
+
userAgent: string;
|
|
121
|
+
windowWidth: number;
|
|
122
|
+
windowHeight: number;
|
|
123
|
+
orientationAngle?: number;
|
|
124
|
+
orientationType?: string;
|
|
125
|
+
};
|
|
126
|
+
timestamp: string;
|
|
127
|
+
url: string;
|
|
128
|
+
}
|
|
129
|
+
export interface AxeCoreData {
|
|
130
|
+
site: string;
|
|
131
|
+
url: string;
|
|
132
|
+
result: AxeResult;
|
|
133
|
+
summary: {
|
|
134
|
+
violations: number;
|
|
135
|
+
passes: number;
|
|
136
|
+
incomplete: number;
|
|
137
|
+
inapplicable: number;
|
|
138
|
+
critical: number;
|
|
139
|
+
serious: number;
|
|
140
|
+
moderate: number;
|
|
141
|
+
minor: number;
|
|
142
|
+
};
|
|
143
|
+
timestamp: string;
|
|
144
|
+
status: 'success' | 'error';
|
|
145
|
+
error?: string;
|
|
146
|
+
}
|
|
147
|
+
export interface AxeCoreResponse {
|
|
148
|
+
success: boolean;
|
|
149
|
+
data?: AxeCoreData[];
|
|
150
|
+
error?: string;
|
|
151
|
+
details?: string;
|
|
152
|
+
}
|
|
153
|
+
export interface CoreWebVitalsMetrics {
|
|
154
|
+
cls: number;
|
|
155
|
+
fid: number;
|
|
156
|
+
lcp: number;
|
|
157
|
+
fcp: number;
|
|
158
|
+
ttfb: number;
|
|
159
|
+
speedIndex: number;
|
|
160
|
+
interactive: number;
|
|
161
|
+
totalBlockingTime: number;
|
|
162
|
+
firstMeaningfulPaint: number;
|
|
163
|
+
}
|
|
164
|
+
export interface CoreWebVitalsData {
|
|
165
|
+
site: string;
|
|
166
|
+
url: string;
|
|
167
|
+
metrics: CoreWebVitalsMetrics;
|
|
168
|
+
scores: PSIScores;
|
|
169
|
+
categories: {
|
|
170
|
+
performance: PSICategory;
|
|
171
|
+
accessibility: PSICategory;
|
|
172
|
+
'best-practices': PSICategory;
|
|
173
|
+
seo: PSICategory;
|
|
174
|
+
pwa: PSICategory;
|
|
175
|
+
};
|
|
176
|
+
timestamp: string;
|
|
177
|
+
status: 'success' | 'error';
|
|
178
|
+
error?: string;
|
|
179
|
+
}
|
|
180
|
+
export interface CoreWebVitalsResponse {
|
|
181
|
+
success: boolean;
|
|
182
|
+
data?: CoreWebVitalsData[];
|
|
183
|
+
error?: string;
|
|
184
|
+
details?: string;
|
|
185
|
+
}
|
|
186
|
+
//# sourceMappingURL=site-health-types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"site-health-types.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"site-health-uptime.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-uptime.tsx"],"names":[],"mappings":"AAMA,UAAU,qBAAqB;IAC7B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,wBAAgB,gBAAgB,CAAC,EAAE,QAAQ,EAAE,EAAE,qBAAqB,2CAkFnE"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface UptimeCheckResult {
|
|
2
|
+
status: 'success' | 'error';
|
|
3
|
+
data?: {
|
|
4
|
+
status: string;
|
|
5
|
+
message?: string;
|
|
6
|
+
};
|
|
7
|
+
error?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare function checkUptimeHealth(healthCheckId: string): Promise<UptimeCheckResult>;
|
|
10
|
+
//# sourceMappingURL=site-health-uptime.integration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"site-health-uptime.integration.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-uptime.integration.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,iBAAiB;IAChC,MAAM,EAAE,SAAS,GAAG,OAAO,CAAC;IAC5B,IAAI,CAAC,EAAE;QACL,MAAM,EAAE,MAAM,CAAC;QACf,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IACF,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAsB,iBAAiB,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC,CA8BzF"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sites Management Integration Services
|
|
3
|
+
* Server-side utilities for site configuration and data management
|
|
4
|
+
*/
|
|
5
|
+
export interface SiteConfig {
|
|
6
|
+
name: string;
|
|
7
|
+
localPath: string;
|
|
8
|
+
remote?: string;
|
|
9
|
+
ga4PropertyId?: string;
|
|
10
|
+
searchConsoleUrl?: string;
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Load sites configuration from JSON file
|
|
15
|
+
*/
|
|
16
|
+
export declare function loadSitesConfig(configPath?: string): Promise<SiteConfig[]>;
|
|
17
|
+
/**
|
|
18
|
+
* Save sites configuration to JSON file
|
|
19
|
+
*/
|
|
20
|
+
export declare function saveSitesConfig(sites: SiteConfig[], configPath?: string): Promise<void>;
|
|
21
|
+
/**
|
|
22
|
+
* Get a specific site configuration by name
|
|
23
|
+
*/
|
|
24
|
+
export declare function getSiteConfig(siteName: string, configPath?: string): Promise<SiteConfig | null>;
|
|
25
|
+
/**
|
|
26
|
+
* Validate site configuration
|
|
27
|
+
*/
|
|
28
|
+
export declare function validateSiteConfig(site: SiteConfig): {
|
|
29
|
+
valid: boolean;
|
|
30
|
+
errors: string[];
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* Add or update a site configuration
|
|
34
|
+
*/
|
|
35
|
+
export declare function upsertSiteConfig(site: SiteConfig, configPath?: string): Promise<void>;
|
|
36
|
+
/**
|
|
37
|
+
* Remove a site configuration
|
|
38
|
+
*/
|
|
39
|
+
export declare function removeSiteConfig(siteName: string, configPath?: string): Promise<boolean>;
|
|
40
|
+
//# sourceMappingURL=sites.integration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sites.integration.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/sites/sites.integration.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC,CAgBhF;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,KAAK,EAAE,UAAU,EAAE,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAe7F;AAED;;GAEG;AACH,wBAAsB,aAAa,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAGrG;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,UAAU,GAAG;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,MAAM,EAAE,MAAM,EAAE,CAAA;CAAE,CAkCzF;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,IAAI,EAAE,UAAU,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAmB3F;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAU9F"}
|
|
@@ -68,4 +68,45 @@ export declare function updateEntry(entryId: string, fields: {
|
|
|
68
68
|
* Delete an entry (unpublish first, then delete)
|
|
69
69
|
*/
|
|
70
70
|
export declare function deleteEntry(entryId: string, config: ContentfulConfig): Promise<DeleteEntryResponse>;
|
|
71
|
+
/****************************************
|
|
72
|
+
* Contentful Integration Services
|
|
73
|
+
* Server-side utilities for Contentful CMS operations
|
|
74
|
+
****************************************/
|
|
75
|
+
export interface ContentfulCredentials {
|
|
76
|
+
spaceId: string;
|
|
77
|
+
accessToken: string;
|
|
78
|
+
environment?: string;
|
|
79
|
+
}
|
|
80
|
+
export interface ContentType {
|
|
81
|
+
sys: {
|
|
82
|
+
id: string;
|
|
83
|
+
type: string;
|
|
84
|
+
};
|
|
85
|
+
name: string;
|
|
86
|
+
description?: string;
|
|
87
|
+
fields: Array<{
|
|
88
|
+
id: string;
|
|
89
|
+
name: string;
|
|
90
|
+
type: string;
|
|
91
|
+
required: boolean;
|
|
92
|
+
}>;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Validate Contentful credentials by attempting to access the space
|
|
96
|
+
*/
|
|
97
|
+
export declare function validateContentfulCredentials(credentials: ContentfulCredentials): Promise<{
|
|
98
|
+
valid: boolean;
|
|
99
|
+
error?: string;
|
|
100
|
+
}>;
|
|
101
|
+
/**
|
|
102
|
+
* Get all content types from a Contentful space
|
|
103
|
+
*/
|
|
104
|
+
export declare function getContentTypes(credentials: ContentfulCredentials): Promise<ContentType[]>;
|
|
105
|
+
/**
|
|
106
|
+
* Migrate a content type from source to destination space
|
|
107
|
+
*/
|
|
108
|
+
export declare function migrateContentType(sourceCredentials: ContentfulCredentials, destCredentials: ContentfulCredentials, contentTypeId: string): Promise<{
|
|
109
|
+
success: boolean;
|
|
110
|
+
error?: string;
|
|
111
|
+
}>;
|
|
71
112
|
//# sourceMappingURL=contentful.management.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contentful.management.d.ts","sourceRoot":"","sources":["../../../../src/components/cms/contentful.management.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,WAAW,gBAAgB;IAChC,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,eAAe;IAC/B,GAAG,EAAE;QACJ,EAAE,EAAE,MAAM,CAAC;QACX,OAAO,EAAE,MAAM,CAAC;QAChB,SAAS,EAAE,MAAM,CAAC;QAClB,SAAS,EAAE,MAAM,CAAC;KAClB,CAAC;IACF,MAAM,EAAE;QACP,CAAC,GAAG,EAAE,MAAM,GAAG;YACd,OAAO,EAAE,GAAG,CAAC;SACb,CAAC;KACF,CAAC;CACF;AAED,MAAM,WAAW,mBAAmB;IACnC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,GAAG,EAAE,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,gBAAgB;IAChC,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,OAAO,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,mBAAmB;IACnC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,wBAAsB,WAAW,CAChC,WAAW,EAAE,MAAM,EACnB,MAAM,EAAE,gBAAgB,GACtB,OAAO,CAAC,mBAAmB,CAAC,CAgC9B;AAED;;GAEG;AACH,wBAAsB,YAAY,CACjC,OAAO,EAAE,MAAM,EACf,MAAM,EAAE,gBAAgB,GACtB,OAAO,CAAC,gBAAgB,CAAC,CAoC3B;AAED;;GAEG;AACH,wBAAsB,oBAAoB,CACzC,WAAW,EAAE,MAAM,EACnB,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,MAAM,EAClB,MAAM,EAAE,gBAAgB,GACtB,OAAO,CAAC,mBAAmB,CAAC,CAgC9B;AAED;;GAEG;AACH,wBAAsB,WAAW,CAChC,WAAW,EAAE,MAAM,EACnB,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAE,EAC9B,MAAM,EAAE,gBAAgB,EACxB,WAAW,GAAE,OAAc,GACzB,OAAO,CAAC,iBAAiB,CAAC,CAyD5B;AAED;;GAEG;AACH,wBAAsB,WAAW,CAChC,OAAO,EAAE,MAAM,EACf,MAAM,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAE,EAC9B,MAAM,EAAE,gBAAgB,EACxB,WAAW,GAAE,OAAc,GACzB,OAAO,CAAC,iBAAiB,CAAC,CAoE5B;AAED;;GAEG;AACH,wBAAsB,WAAW,CAChC,OAAO,EAAE,MAAM,EACf,MAAM,EAAE,gBAAgB,GACtB,OAAO,CAAC,mBAAmB,CAAC,CAqD9B"}
|
|
1
|
+
{"version":3,"file":"contentful.management.d.ts","sourceRoot":"","sources":["../../../../src/components/cms/contentful.management.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,6 +8,5 @@ export declare const PixelatedClientConfigProvider: ({ config, children, }: {
|
|
|
8
8
|
* Hook to get the Pixelated config. This throws in development when the provider is missing to
|
|
9
9
|
* make misconfiguration obvious. If you prefer a non-throwing variant use `useOptionalPixelatedConfig`.
|
|
10
10
|
*/
|
|
11
|
-
export declare const usePixelatedConfig: () => PixelatedConfig;
|
|
12
|
-
/** Non-throwing hook — returns null when provider not present */
|
|
11
|
+
export declare const usePixelatedConfig: () => PixelatedConfig | null;
|
|
13
12
|
//# sourceMappingURL=config.client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.client.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.client.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAItD,eAAO,MAAM,6BAA6B,GAAI,uBAG3C;IACD,MAAM,EAAE,eAAe,CAAC;IACxB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,4CAEA,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,QAAO,
|
|
1
|
+
{"version":3,"file":"config.client.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.client.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAItD,eAAO,MAAM,6BAA6B,GAAI,uBAG3C;IACD,MAAM,EAAE,eAAe,CAAC;IACxB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,4CAEA,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,QAAO,eAAe,GAAG,IA4BvD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../../src/components/general/table.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../../src/components/general/table.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,aAAa,CAAC;AAcrB,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,KAAK,CAAC,SAAS,CAAC,CAAC;AAC3D,wBAAgB,KAAK,CAAE,KAAK,EAAE,SAAS,2CAsGtC;yBAtGe,KAAK"}
|
|
@@ -6,7 +6,7 @@ declare global {
|
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
8
|
export type GoogleAnalyticsType = InferProps<typeof GoogleAnalytics.propTypes>;
|
|
9
|
-
export declare function GoogleAnalytics(props: GoogleAnalyticsType): import("react/jsx-runtime").JSX.Element |
|
|
9
|
+
export declare function GoogleAnalytics(props: GoogleAnalyticsType): import("react/jsx-runtime").JSX.Element | undefined;
|
|
10
10
|
export declare namespace GoogleAnalytics {
|
|
11
11
|
var propTypes: {
|
|
12
12
|
id: PropTypes.Requireable<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"googleanalytics.d.ts","sourceRoot":"","sources":["../../../../src/components/seo/googleanalytics.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,MAAM;QACf,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;KAChC;CACD;AAiBD,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAE,KAAK,EAAE,mBAAmB,
|
|
1
|
+
{"version":3,"file":"googleanalytics.d.ts","sourceRoot":"","sources":["../../../../src/components/seo/googleanalytics.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,MAAM;QACf,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;KAChC;CACD;AAiBD,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAE,KAAK,EAAE,mBAAmB,uDAsC1D;yBAtCe,eAAe;;;;;AA8C/B,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,SAAS,CAAC,CAAC;AACzF,wBAAgB,oBAAoB,CAAE,KAAK,EAAE,wBAAwB,oBAYpE;yBAZe,oBAAoB"}
|
|
@@ -36,7 +36,7 @@ declare const ConfigBuilderPropTypes: {
|
|
|
36
36
|
title: PropTypes.Requireable<string>;
|
|
37
37
|
description: PropTypes.Requireable<string>;
|
|
38
38
|
}>>[]>;
|
|
39
|
-
visualdesign: PropTypes.
|
|
39
|
+
visualdesign: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
40
40
|
'primary-color': PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
41
41
|
value: PropTypes.Validator<string>;
|
|
42
42
|
type: PropTypes.Validator<string>;
|
|
@@ -169,7 +169,7 @@ declare const ConfigBuilderPropTypes: {
|
|
|
169
169
|
group: PropTypes.Validator<string>;
|
|
170
170
|
label: PropTypes.Validator<string>;
|
|
171
171
|
}>>>;
|
|
172
|
-
}
|
|
172
|
+
}>>>;
|
|
173
173
|
}>>;
|
|
174
174
|
onSave: PropTypes.Requireable<(...args: any[]) => any>;
|
|
175
175
|
};
|
|
@@ -212,7 +212,7 @@ export declare namespace ConfigBuilder {
|
|
|
212
212
|
title: PropTypes.Requireable<string>;
|
|
213
213
|
description: PropTypes.Requireable<string>;
|
|
214
214
|
}>>[]>;
|
|
215
|
-
visualdesign: PropTypes.
|
|
215
|
+
visualdesign: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
216
216
|
'primary-color': PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
217
217
|
value: PropTypes.Validator<string>;
|
|
218
218
|
type: PropTypes.Validator<string>;
|
|
@@ -345,7 +345,7 @@ export declare namespace ConfigBuilder {
|
|
|
345
345
|
group: PropTypes.Validator<string>;
|
|
346
346
|
label: PropTypes.Validator<string>;
|
|
347
347
|
}>>>;
|
|
348
|
-
}
|
|
348
|
+
}>>>;
|
|
349
349
|
}>>;
|
|
350
350
|
onSave: PropTypes.Requireable<(...args: any[]) => any>;
|
|
351
351
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfigBuilder.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/config/ConfigBuilder.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAOnD,OAAO,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"ConfigBuilder.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/config/ConfigBuilder.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAOnD,OAAO,qBAAqB,CAAC;AAiF7B,QAAA,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAG3B,CAAC;AACF,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEpE,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,2CAsXtD;yBAtXe,aAAa"}
|
|
@@ -5,7 +5,7 @@ export type BuzzwordBingoType = InferProps<typeof BuzzwordBingo.propTypes>;
|
|
|
5
5
|
export declare function BuzzwordBingo(props: BuzzwordBingoType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare namespace BuzzwordBingo {
|
|
7
7
|
var propTypes: {
|
|
8
|
-
buzzwords: PropTypes.
|
|
8
|
+
buzzwords: PropTypes.Requireable<any[]>;
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
11
|
export type BingoHeaderType = InferProps<typeof BingoHeader.propTypes>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buzzwordbingo.d.ts","sourceRoot":"","sources":["../../../../src/components/structured/buzzwordbingo.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"buzzwordbingo.d.ts","sourceRoot":"","sources":["../../../../src/components/structured/buzzwordbingo.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,qBAAqB,CAAC;AAa7B,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAiBrD;yBAjBe,aAAa;;;;;AAwB7B,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,iBAAS,WAAW,CAAC,EAAE,IAAI,EAAE,EAAE,eAAe,2CAQ7C;kBARQ,WAAW;;;;;AAcpB,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,iBAAS,QAAQ,CAAC,EAAE,IAAI,EAAE,EAAE,YAAY,2CAQvC;kBARQ,QAAQ"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"buzzwordbingo.words.d.ts","sourceRoot":"","sources":["../../../../src/components/structured/buzzwordbingo.words.js"],"names":[],"mappings":"AACA,iCA2BE"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -21,7 +21,6 @@ export * from "./components/cms/wordpress.functions";
|
|
|
21
21
|
export * from "./components/cms/yelp";
|
|
22
22
|
export * from "./components/config/config.client";
|
|
23
23
|
export * from "./components/config/config.server";
|
|
24
|
-
export * from "./components/config/config";
|
|
25
24
|
export * from "./components/config/config.types";
|
|
26
25
|
export * from "./components/general/css";
|
|
27
26
|
export * from "./components/general/accordion";
|
|
@@ -48,7 +47,6 @@ export * from "./components/sitebuilder/config/ConfigEngine";
|
|
|
48
47
|
export * from "./components/sitebuilder/config/FontSelector";
|
|
49
48
|
export * from "./components/sitebuilder/config/CompoundFontSelector";
|
|
50
49
|
export * from "./components/sitebuilder/config/fonts";
|
|
51
|
-
export * from "./components/sitebuilder/config/google-fonts";
|
|
52
50
|
export * from "./components/sitebuilder/form/formcomponents";
|
|
53
51
|
export * from "./components/sitebuilder/form/formtypes";
|
|
54
52
|
export * from "./components/sitebuilder/form/formutils";
|
|
@@ -61,7 +59,6 @@ export * from "./components/sitebuilder/form/formextractor";
|
|
|
61
59
|
export * from "./components/sitebuilder/page/lib/componentGeneration";
|
|
62
60
|
export * from "./components/sitebuilder/page/lib/componentMap";
|
|
63
61
|
export * from "./components/sitebuilder/page/lib/componentMetadata";
|
|
64
|
-
export * from "./components/sitebuilder/page/lib/pageStorageLocal";
|
|
65
62
|
export * from "./components/sitebuilder/page/lib/pageStorageContentful";
|
|
66
63
|
export * from "./components/sitebuilder/page/lib/pageStorageTypes";
|
|
67
64
|
export * from "./components/sitebuilder/page/lib/propTypeIntrospection";
|
|
@@ -81,6 +78,22 @@ export * from "./components/seo/manifest";
|
|
|
81
78
|
export * from "./components/seo/metadata.functions";
|
|
82
79
|
export * from "./components/seo/metadata.components";
|
|
83
80
|
export * from "./components/seo/sitemap";
|
|
81
|
+
export * from "./components/admin/site-health/site-health-indicators";
|
|
82
|
+
export * from "./components/admin/site-health/site-health-accessibility";
|
|
83
|
+
export * from "./components/admin/site-health/site-health-axe-core";
|
|
84
|
+
export * from "./components/admin/site-health/site-health-cache";
|
|
85
|
+
export * from "./components/admin/site-health/site-health-dependency-vulnerabilities";
|
|
86
|
+
export * from "./components/admin/site-health/site-health-github";
|
|
87
|
+
export * from "./components/admin/site-health/site-health-google-analytics";
|
|
88
|
+
export * from "./components/admin/site-health/site-health-google-search-console";
|
|
89
|
+
export * from "./components/admin/site-health/site-health-on-site-seo";
|
|
90
|
+
export * from "./components/admin/site-health/site-health-overview";
|
|
91
|
+
export * from "./components/admin/site-health/site-health-performance";
|
|
92
|
+
export * from "./components/admin/site-health/site-health-security";
|
|
93
|
+
export * from "./components/admin/site-health/site-health-seo";
|
|
94
|
+
export * from "./components/admin/site-health/site-health-template";
|
|
95
|
+
export * from "./components/admin/site-health/site-health-types";
|
|
96
|
+
export * from "./components/admin/site-health/site-health-uptime";
|
|
84
97
|
export * from "./components/shoppingcart/ebay.components";
|
|
85
98
|
export * from "./components/shoppingcart/ebay.functions";
|
|
86
99
|
export * from "./components/shoppingcart/paypal";
|
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
export * from "./components/admin/componentusage/componentDiscovery";
|
|
2
|
+
export * from "./components/admin/componentusage/componentAnalysis";
|
|
3
|
+
export * from "./components/admin/deploy/deployment.integration";
|
|
4
|
+
export * from "./components/admin/site-health/google-api-auth";
|
|
5
|
+
export * from "./components/admin/site-health/site-health-axe-core.integration";
|
|
6
|
+
export * from "./components/admin/site-health/site-health-cache";
|
|
7
|
+
export * from "./components/admin/site-health/site-health-core-web-vitals.integration";
|
|
8
|
+
export * from "./components/admin/site-health/site-health-github.integration";
|
|
9
|
+
export * from "./components/admin/site-health/site-health-google-analytics.integration";
|
|
10
|
+
export * from "./components/admin/site-health/site-health-google-search-console.integration";
|
|
11
|
+
export * from "./components/admin/site-health/site-health-indicators";
|
|
12
|
+
export * from "./components/admin/site-health/site-health-on-site-seo.integration";
|
|
13
|
+
export * from "./components/admin/site-health/site-health-security.integration";
|
|
14
|
+
export * from "./components/admin/site-health/site-health-performance";
|
|
15
|
+
export * from "./components/admin/site-health/site-health-types";
|
|
16
|
+
export * from "./components/admin/site-health/site-health-uptime.integration";
|
|
17
|
+
export * from "./components/admin/sites/sites.integration";
|
|
1
18
|
export * from "./components/cms/contentful.delivery";
|
|
2
19
|
export * from "./components/cms/contentful.management";
|
|
3
20
|
export * from "./components/cms/flickr";
|
|
@@ -6,12 +23,30 @@ export * from "./components/cms/gravatar.functions";
|
|
|
6
23
|
export * from "./components/cms/instagram.functions";
|
|
7
24
|
export * from "./components/cms/wordpress.functions";
|
|
8
25
|
export * from "./components/config/config";
|
|
26
|
+
export * from "./components/config/config.server";
|
|
9
27
|
export * from "./components/config/config.types";
|
|
28
|
+
export * from "./components/menu/menu-accordion";
|
|
29
|
+
export * from "./components/menu/menu-expando";
|
|
30
|
+
export * from "./components/menu/menu-simple";
|
|
31
|
+
export * from "./components/seo/googlemap";
|
|
32
|
+
export * from "./components/seo/manifest";
|
|
33
|
+
export * from "./components/seo/metadata.functions";
|
|
34
|
+
export * from "./components/seo/schema-blogposting";
|
|
35
|
+
export * from "./components/seo/schema-blogposting.functions";
|
|
36
|
+
export * from "./components/seo/schema-localbusiness";
|
|
37
|
+
export * from "./components/seo/schema-recipe";
|
|
38
|
+
export * from "./components/seo/schema-services";
|
|
39
|
+
export * from "./components/seo/schema-website";
|
|
40
|
+
export * from "./components/seo/sitemap";
|
|
41
|
+
export * from "./components/shoppingcart/ebay.functions";
|
|
42
|
+
export * from "./components/sitebuilder/config/ConfigBuilder";
|
|
10
43
|
export * from "./components/sitebuilder/config/ConfigEngine";
|
|
11
44
|
export * from "./components/sitebuilder/config/google-fonts";
|
|
12
45
|
export * from "./components/sitebuilder/config/fonts";
|
|
13
46
|
export * from "./components/sitebuilder/form/formutils";
|
|
14
47
|
export * from "./components/sitebuilder/form/formtypes";
|
|
48
|
+
export * from "./components/sitebuilder/page/components/ComponentTree";
|
|
49
|
+
export * from "./components/sitebuilder/page/components/PageEngine";
|
|
15
50
|
export * from "./components/sitebuilder/page/lib/componentGeneration";
|
|
16
51
|
export * from "./components/sitebuilder/page/lib/componentMap";
|
|
17
52
|
export * from "./components/sitebuilder/page/lib/componentMetadata";
|
|
@@ -20,18 +55,6 @@ export * from "./components/sitebuilder/page/lib/pageStorageContentful";
|
|
|
20
55
|
export * from "./components/sitebuilder/page/lib/pageStorageTypes";
|
|
21
56
|
export * from "./components/sitebuilder/page/lib/propTypeIntrospection";
|
|
22
57
|
export * from "./components/sitebuilder/page/lib/types";
|
|
23
|
-
export * from "./components/
|
|
24
|
-
export * from "./components/seo/sitemap";
|
|
25
|
-
export * from "./components/seo/manifest";
|
|
26
|
-
export * from "./components/seo/schema-localbusiness";
|
|
27
|
-
export * from "./components/seo/schema-recipe";
|
|
28
|
-
export * from "./components/seo/schema-services";
|
|
29
|
-
export * from "./components/seo/schema-website";
|
|
30
|
-
export * from "./components/seo/schema-blogposting";
|
|
31
|
-
export * from "./components/seo/schema-blogposting.functions";
|
|
32
|
-
export * from "./components/shoppingcart/ebay.functions";
|
|
33
|
-
export * from "./components/config/config.server";
|
|
34
|
-
export * from "./components/carousel/tiles";
|
|
35
|
-
export * from "./components/seo/googlemap";
|
|
58
|
+
export * from "./components/sitebuilder/page/lib/usePageBuilder";
|
|
36
59
|
export * from "./components/structured/resume";
|
|
37
60
|
//# sourceMappingURL=index.server.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"preview.d.ts","sourceRoot":"","sources":["../../../../src/stories/admin/preview.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
title: string;
|
|
3
|
+
parameters: {
|
|
4
|
+
layout: string;
|
|
5
|
+
docs: {
|
|
6
|
+
description: {
|
|
7
|
+
component: string;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export default _default;
|
|
13
|
+
export declare const AxeCoreHealthCard: {
|
|
14
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
storyName: string;
|
|
16
|
+
};
|
|
17
|
+
export declare const OverviewHealthCard: {
|
|
18
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
storyName: string;
|
|
20
|
+
};
|
|
21
|
+
export declare const TemplateWithMockData: {
|
|
22
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
storyName: string;
|
|
24
|
+
};
|
|
25
|
+
export declare const PerformanceHealthCard: {
|
|
26
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
storyName: string;
|
|
28
|
+
};
|
|
29
|
+
export declare const SecurityHealthCard: {
|
|
30
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
storyName: string;
|
|
32
|
+
};
|
|
33
|
+
export declare const SEOHealthCard: {
|
|
34
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
35
|
+
storyName: string;
|
|
36
|
+
};
|
|
37
|
+
export declare const AccessibilityHealthCard: {
|
|
38
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
storyName: string;
|
|
40
|
+
};
|
|
41
|
+
export declare const GoogleAnalyticsHealthCard: {
|
|
42
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
43
|
+
storyName: string;
|
|
44
|
+
};
|
|
45
|
+
export declare const GoogleSearchConsoleHealthCard: {
|
|
46
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
47
|
+
storyName: string;
|
|
48
|
+
};
|
|
49
|
+
export declare const OnSiteSEOHealthCard: {
|
|
50
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
51
|
+
storyName: string;
|
|
52
|
+
};
|
|
53
|
+
export declare const DependencyVulnerabilitiesHealthCard: {
|
|
54
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
55
|
+
storyName: string;
|
|
56
|
+
};
|
|
57
|
+
export declare const GitHubHealthCard: {
|
|
58
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
59
|
+
storyName: string;
|
|
60
|
+
};
|
|
61
|
+
export declare const UptimeHealthCard: {
|
|
62
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
63
|
+
storyName: string;
|
|
64
|
+
};
|
|
65
|
+
//# sourceMappingURL=site-health.stories.d.ts.map
|