@a-company/atelier 0.29.0 → 0.36.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,9 @@
1
+ {
2
+ "extends": "../../../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "noEmit": true,
5
+ "rootDir": ".",
6
+ "lib": ["ES2022", "DOM", "DOM.Iterable"]
7
+ },
8
+ "include": ["."]
9
+ }
@@ -0,0 +1,67 @@
1
+ version: "1.0"
2
+ name: Welcome to Atelier
3
+ description: First-run template — drop your own image, edit the handle, export PNG. Replace the background ShapeVisual with an ImageVisual when you have an asset.
4
+ tags: [welcome, template, social-square]
5
+ canvas:
6
+ width: 1080
7
+ height: 1080
8
+ fps: 30
9
+ background: "#0F1115"
10
+
11
+ layers:
12
+ # Background — solid placeholder; swap for an ImageVisual once you have an asset.
13
+ - id: background
14
+ description: Solid placeholder. Replace with an ImageVisual + assets entry to use a photo.
15
+ visual:
16
+ type: shape
17
+ shape: { type: rect }
18
+ fill: { type: solid, color: "#1A1D24" }
19
+ frame: { x: 0, y: 0 }
20
+ bounds: { width: 1080, height: 1080 }
21
+ opacity: 1
22
+
23
+ # @handle overlay — bottom-left, in the "overlay" tag namespace so pipelines
24
+ # (caption regen, silence-trim, etc.) won't touch it on re-run.
25
+ - id: handle
26
+ description: Your handle. Bottom-left overlay.
27
+ tags: [overlay]
28
+ visual:
29
+ type: text
30
+ content: "@username"
31
+ style:
32
+ fontFamily: Inter
33
+ fontSize: 48
34
+ fontWeight: 600
35
+ color: "#F5F5F7"
36
+ textAlign: left
37
+ frame: { x: 48, y: 980 }
38
+ bounds: { width: 600, height: 52 }
39
+ opacity: 0
40
+
41
+ # Page-number overlay — bottom-right, monospaced look (Inter falls back gracefully).
42
+ - id: page-number
43
+ description: Carousel page number. Bottom-right overlay.
44
+ tags: [overlay]
45
+ visual:
46
+ type: text
47
+ content: "01/05"
48
+ style:
49
+ fontFamily: Inter
50
+ fontSize: 24
51
+ fontWeight: 500
52
+ color: "#9CA3AF"
53
+ textAlign: right
54
+ frame: { x: 880, y: 1020 }
55
+ bounds: { width: 152, height: 28 }
56
+ opacity: 1
57
+
58
+ states:
59
+ default:
60
+ duration: 30
61
+ deltas:
62
+ - layer: handle
63
+ property: opacity
64
+ range: [0, 30]
65
+ from: 0
66
+ to: 1
67
+ easing: ease-out