@uni-design-system/uni-angular 4.0.0 → 5.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.
@@ -0,0 +1,47 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "UniNgAdd",
4
+ "title": "Uni Design System ng-add options",
5
+ "type": "object",
6
+ "properties": {
7
+ "brand": {
8
+ "type": "string",
9
+ "description": "Brand hex color(s); comma-separate 2–3 for primary,secondary,tertiary.",
10
+ "default": "#4F46E5",
11
+ "x-prompt": "Brand color hex (Enter keeps Uni indigo #4F46E5):"
12
+ },
13
+ "shape": {
14
+ "type": "string",
15
+ "enum": ["sharp", "modern", "playful"],
16
+ "default": "modern",
17
+ "x-prompt": {
18
+ "message": "Shape language?",
19
+ "type": "list",
20
+ "items": [
21
+ { "value": "modern", "label": "Modern — Uni's default radii" },
22
+ { "value": "sharp", "label": "Sharp — square corners everywhere" },
23
+ { "value": "playful", "label": "Playful — big, round radii" }
24
+ ]
25
+ }
26
+ },
27
+ "darkMode": {
28
+ "type": "boolean",
29
+ "default": true,
30
+ "x-prompt": "Generate a dark theme too?"
31
+ },
32
+ "typography": {
33
+ "type": "boolean",
34
+ "default": true,
35
+ "description": "Add the Red Hat Display + Roboto font links to index.html."
36
+ },
37
+ "smokeTest": {
38
+ "type": "boolean",
39
+ "default": true,
40
+ "description": "Add a themed uni-text + uni-button snippet to the app component."
41
+ },
42
+ "project": {
43
+ "type": "string",
44
+ "description": "Target project name (defaults to the workspace's first project)."
45
+ }
46
+ }
47
+ }