@plitzi/sdk-server 0.34.0 → 0.35.1
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 +31 -0
- package/package.json +3 -3
- package/skills/plitzi-authoring/SKILL.md +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @plitzi/sdk-server
|
|
2
2
|
|
|
3
|
+
## 0.35.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- v0.35.1
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @plitzi/plitzi-sdk@0.35.1
|
|
10
|
+
- @plitzi/sdk-shared@0.35.1
|
|
11
|
+
|
|
12
|
+
## 0.35.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- v0.35.0
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @plitzi/plitzi-sdk@0.35.0
|
|
22
|
+
- @plitzi/sdk-shared@0.35.0
|
|
23
|
+
|
|
24
|
+
## 0.34.1
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- v0.34.1
|
|
29
|
+
- Updated dependencies [cba7b8b]
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @plitzi/plitzi-sdk@0.34.1
|
|
32
|
+
- @plitzi/sdk-shared@0.34.1
|
|
33
|
+
|
|
3
34
|
## 0.34.0
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plitzi/sdk-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.1",
|
|
4
4
|
"license": "AGPL-3.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"type": "module",
|
|
59
59
|
"sideEffects": false,
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@plitzi/plitzi-sdk": "0.
|
|
62
|
-
"@plitzi/sdk-shared": "0.
|
|
61
|
+
"@plitzi/plitzi-sdk": "0.35.1",
|
|
62
|
+
"@plitzi/sdk-shared": "0.35.1",
|
|
63
63
|
"ejs": "^6.0.1",
|
|
64
64
|
"esbuild": "^0.28.2",
|
|
65
65
|
"jsonwebtoken": "^9.0.3"
|
|
@@ -92,6 +92,13 @@ You rarely call `css` yourself: `authorSpace` runs every rule set through it. Wh
|
|
|
92
92
|
property outside the vocabulary is an error naming the correct key (`paddingTop` → `padding-top`).
|
|
93
93
|
|
|
94
94
|
- `column(gap, extra?)`, `row(gap, extra?)`, `grid(columns, gap, extra?)` for the three layouts every space repeats.
|
|
95
|
+
- **Breakpoints are ranges, not a cascade.** `tablet` is 48–64rem and `mobile` is below 48rem, and each inherits
|
|
96
|
+
only from `desktop` — a rule written for `tablet` never reaches a phone. A grid that collapses to one column at
|
|
97
|
+
tablet and should stay collapsed says so in `mobile` too. `authorSpace` warns (`tablet-rule-skips-mobile`) when it
|
|
98
|
+
does not.
|
|
99
|
+
- **Fonts are declared, not assumed.** A `font-family` loads only if the space lists the face in `fonts`
|
|
100
|
+
(`{ source: 'google', family: 'Fraunces', fallback: 'Georgia, serif', weights: [400, 600], styles: ['normal'] }`);
|
|
101
|
+
the page server writes exactly that list into the document, and anything else renders in the fallback.
|
|
95
102
|
- Per element TYPE defaults go in `elements: { heading: { base: …, variants: { … } } }`.
|
|
96
103
|
|
|
97
104
|
**Share a rule as a class, never as a spread.** Writing a rule set once in a `const` and spreading it into each
|