@gardenerim/css 1.0.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/CHANGELOG.md +121 -0
- package/LICENSE +21 -0
- package/README.md +591 -0
- package/dist/components/ai-compositions.min.css +2 -0
- package/dist/components/ai-extended.min.css +2 -0
- package/dist/components/ai.min.css +2 -0
- package/dist/components/auth-compositions.min.css +2 -0
- package/dist/components/basic.min.css +2 -0
- package/dist/components/catalog.min.css +2 -0
- package/dist/components/commerce-compositions.min.css +2 -0
- package/dist/components/content-compositions.min.css +2 -0
- package/dist/components/data-compositions.min.css +2 -0
- package/dist/components/data.min.css +2 -0
- package/dist/components/desktop-compositions.min.css +2 -0
- package/dist/components/desktop.min.css +2 -0
- package/dist/components/extended.min.css +2 -0
- package/dist/components/feedback.min.css +2 -0
- package/dist/components/form-compositions.min.css +2 -0
- package/dist/components/forms.min.css +2 -0
- package/dist/components/grid.min.css +2 -0
- package/dist/components/help.min.css +2 -0
- package/dist/components/layouts.min.css +2 -0
- package/dist/components/mobile-compositions.min.css +2 -0
- package/dist/components/navigation-compositions.min.css +2 -0
- package/dist/components/navigation.min.css +2 -0
- package/dist/components/page.min.css +2 -0
- package/dist/components/primitives.min.css +2 -0
- package/dist/components/recipes.min.css +2 -0
- package/dist/components/regions.min.css +2 -0
- package/dist/components/selection-compositions.min.css +2 -0
- package/dist/components/solution-compositions.min.css +2 -0
- package/dist/gardener.ai.css +236 -0
- package/dist/gardener.ai.min.css +3 -0
- package/dist/gardener.ai.min.css.map +7 -0
- package/dist/gardener.builds.json +7491 -0
- package/dist/gardener.capabilities.json +3784 -0
- package/dist/gardener.compatibility.json +1209 -0
- package/dist/gardener.components.css +3496 -0
- package/dist/gardener.components.min.css +3 -0
- package/dist/gardener.components.min.css.map +7 -0
- package/dist/gardener.core.css +1486 -0
- package/dist/gardener.core.min.css +3 -0
- package/dist/gardener.core.min.css.map +7 -0
- package/dist/gardener.css +7153 -0
- package/dist/gardener.d.ts +42 -0
- package/dist/gardener.electron.d.ts +5 -0
- package/dist/gardener.electron.js +24 -0
- package/dist/gardener.electron.min.js +3 -0
- package/dist/gardener.electron.min.js.map +7 -0
- package/dist/gardener.manifest.json +14557 -0
- package/dist/gardener.min.css +3 -0
- package/dist/gardener.min.css.map +7 -0
- package/dist/gardener.performance.json +1628 -0
- package/dist/gardener.public-api.json +2169 -0
- package/dist/gardener.recipes.json +1444 -0
- package/dist/gardener.runtime.js +2224 -0
- package/dist/gardener.runtime.min.js +3 -0
- package/dist/gardener.runtime.min.js.map +7 -0
- package/dist/gardener.tauri.d.ts +5 -0
- package/dist/gardener.tauri.js +28 -0
- package/dist/gardener.tauri.min.js +3 -0
- package/dist/gardener.tauri.min.js.map +7 -0
- package/dist/gardener.themes.css +1415 -0
- package/dist/gardener.themes.min.css +3 -0
- package/dist/gardener.themes.min.css.map +7 -0
- package/dist/gardener.utilities.css +1940 -0
- package/dist/gardener.utilities.json +92279 -0
- package/dist/gardener.utilities.min.css +3 -0
- package/dist/gardener.utilities.min.css.map +7 -0
- package/dist/platforms/gardener.desktop.min.css +2 -0
- package/dist/platforms/gardener.electron.min.css +2 -0
- package/dist/platforms/gardener.mobile.min.css +2 -0
- package/dist/platforms/gardener.tauri.min.css +2 -0
- package/dist/platforms/gardener.web.min.css +2 -0
- package/metadata/builds.schema.json +148 -0
- package/metadata/capabilities.json +3784 -0
- package/metadata/capabilities.schema.json +61 -0
- package/metadata/compatibility.json +1209 -0
- package/metadata/compatibility.schema.json +85 -0
- package/metadata/components.json +9082 -0
- package/metadata/components.schema.json +58 -0
- package/metadata/custom-build.schema.json +46 -0
- package/metadata/manifest.schema.json +47 -0
- package/metadata/performance-budgets.schema.json +103 -0
- package/metadata/performance-report.schema.json +194 -0
- package/metadata/public-api.json +2169 -0
- package/metadata/public-api.schema.json +165 -0
- package/metadata/recipes.json +1444 -0
- package/metadata/recipes.schema.json +39 -0
- package/metadata/schema.json +7 -0
- package/metadata/utilities.schema.json +29 -0
- package/package.json +177 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://gardener.style/schema/builds.schema.json",
|
|
4
|
+
"title": "Gardener build catalog",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"required": ["$schema", "schemaVersion", "version", "reproducibility", "minifier", "compression", "componentSelection", "platforms", "componentPacks", "componentSignatures", "componentOwnership", "artifacts", "artifactIntegrity"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"$schema": { "type": "string" },
|
|
10
|
+
"schemaVersion": { "const": 1 },
|
|
11
|
+
"version": { "$ref": "#/$defs/version" },
|
|
12
|
+
"reproducibility": {
|
|
13
|
+
"type": "object",
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"required": ["deterministic", "integrityAlgorithm", "verificationCommand"],
|
|
16
|
+
"properties": {
|
|
17
|
+
"deterministic": { "const": true },
|
|
18
|
+
"integrityAlgorithm": { "const": "sha256" },
|
|
19
|
+
"verificationCommand": { "const": "npm run verify:reproducible" }
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"minifier": { "$ref": "#/$defs/minifier" },
|
|
23
|
+
"compression": { "$ref": "#/$defs/compression" },
|
|
24
|
+
"componentSelection": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"additionalProperties": false,
|
|
27
|
+
"required": ["granularity", "dependencyPolicy", "runtimePolicy", "command"],
|
|
28
|
+
"properties": {
|
|
29
|
+
"granularity": { "const": "owning-pack" },
|
|
30
|
+
"dependencyPolicy": { "const": "include-pack-peers" },
|
|
31
|
+
"runtimePolicy": { "const": "full-runtime" },
|
|
32
|
+
"command": { "type": "string", "minLength": 1 }
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"platforms": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"minItems": 5,
|
|
38
|
+
"items": { "$ref": "#/$defs/platform" }
|
|
39
|
+
},
|
|
40
|
+
"componentPacks": {
|
|
41
|
+
"type": "array",
|
|
42
|
+
"minItems": 1,
|
|
43
|
+
"items": { "$ref": "#/$defs/pack" }
|
|
44
|
+
},
|
|
45
|
+
"componentOwnership": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"minProperties": 1,
|
|
48
|
+
"additionalProperties": { "$ref": "#/$defs/nonEmptyStrings" }
|
|
49
|
+
},
|
|
50
|
+
"componentSignatures": {
|
|
51
|
+
"type": "object",
|
|
52
|
+
"minProperties": 1,
|
|
53
|
+
"additionalProperties": { "$ref": "#/$defs/nonEmptyStrings" }
|
|
54
|
+
},
|
|
55
|
+
"artifacts": {
|
|
56
|
+
"type": "object",
|
|
57
|
+
"minProperties": 1,
|
|
58
|
+
"additionalProperties": { "$ref": "#/$defs/metrics" }
|
|
59
|
+
},
|
|
60
|
+
"artifactIntegrity": {
|
|
61
|
+
"type": "object",
|
|
62
|
+
"minProperties": 1,
|
|
63
|
+
"additionalProperties": { "$ref": "#/$defs/integrity" }
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"$defs": {
|
|
67
|
+
"version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$" },
|
|
68
|
+
"nonEmptyStrings": {
|
|
69
|
+
"type": "array",
|
|
70
|
+
"minItems": 1,
|
|
71
|
+
"uniqueItems": true,
|
|
72
|
+
"items": { "type": "string", "minLength": 1 }
|
|
73
|
+
},
|
|
74
|
+
"metrics": {
|
|
75
|
+
"type": "object",
|
|
76
|
+
"additionalProperties": false,
|
|
77
|
+
"required": ["raw", "gzip", "brotli"],
|
|
78
|
+
"properties": {
|
|
79
|
+
"raw": { "type": "integer", "minimum": 1 },
|
|
80
|
+
"gzip": { "type": "integer", "minimum": 1 },
|
|
81
|
+
"brotli": { "type": "integer", "minimum": 1 }
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"integrity": {
|
|
85
|
+
"type": "object",
|
|
86
|
+
"additionalProperties": false,
|
|
87
|
+
"required": ["algorithm", "sha256", "sri"],
|
|
88
|
+
"properties": {
|
|
89
|
+
"algorithm": { "const": "sha256" },
|
|
90
|
+
"sha256": { "type": "string", "pattern": "^[a-f0-9]{64}$" },
|
|
91
|
+
"sri": { "type": "string", "pattern": "^sha256-[A-Za-z0-9+/]{43}=$" }
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"minifier": {
|
|
95
|
+
"type": "object",
|
|
96
|
+
"additionalProperties": false,
|
|
97
|
+
"required": ["name", "version", "targets", "legalComments", "sourceMaps", "sourceMapPolicy"],
|
|
98
|
+
"properties": {
|
|
99
|
+
"name": { "const": "esbuild" },
|
|
100
|
+
"version": { "$ref": "#/$defs/version" },
|
|
101
|
+
"targets": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
102
|
+
"legalComments": { "enum": ["inline", "eof", "linked", "external"] },
|
|
103
|
+
"sourceMaps": { "const": true },
|
|
104
|
+
"sourceMapPolicy": { "const": "primary-and-custom" }
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"compression": {
|
|
108
|
+
"type": "object",
|
|
109
|
+
"additionalProperties": false,
|
|
110
|
+
"required": ["gzipLevel", "brotliQuality"],
|
|
111
|
+
"properties": {
|
|
112
|
+
"gzipLevel": { "const": 9 },
|
|
113
|
+
"brotliQuality": { "const": 11 }
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"platform": {
|
|
117
|
+
"type": "object",
|
|
118
|
+
"additionalProperties": false,
|
|
119
|
+
"required": ["name", "cssProfile", "cssDependencies", "css", "minCss", "runtime", "adapters", "packs", "platforms", "components", "metrics"],
|
|
120
|
+
"properties": {
|
|
121
|
+
"name": { "enum": ["web", "mobile", "desktop", "tauri", "electron"] },
|
|
122
|
+
"cssProfile": { "enum": ["web", "mobile", "desktop", "tauri", "electron"] },
|
|
123
|
+
"cssDependencies": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } },
|
|
124
|
+
"css": { "type": ["string", "null"] },
|
|
125
|
+
"minCss": { "type": "string", "minLength": 1 },
|
|
126
|
+
"runtime": { "type": "string", "minLength": 1 },
|
|
127
|
+
"adapters": { "type": "array", "uniqueItems": true, "items": { "type": "string" } },
|
|
128
|
+
"packs": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
129
|
+
"platforms": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
130
|
+
"components": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
131
|
+
"metrics": { "$ref": "#/$defs/metrics" }
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"pack": {
|
|
135
|
+
"type": "object",
|
|
136
|
+
"additionalProperties": false,
|
|
137
|
+
"required": ["name", "files", "css", "minCss", "components", "metrics"],
|
|
138
|
+
"properties": {
|
|
139
|
+
"name": { "type": "string", "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$" },
|
|
140
|
+
"files": { "$ref": "#/$defs/nonEmptyStrings" },
|
|
141
|
+
"css": { "type": ["string", "null"] },
|
|
142
|
+
"minCss": { "type": "string", "minLength": 1 },
|
|
143
|
+
"components": { "type": "array", "uniqueItems": true, "items": { "type": "string", "minLength": 1 } },
|
|
144
|
+
"metrics": { "$ref": "#/$defs/metrics" }
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|