@atelier-ui/create-workspace 0.1.12 → 0.2.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 +14 -0
- package/package.json +1 -1
- package/src/generators/preset/preset.js +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 0.2.0 (2026-07-21)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- ⚠️ **docs:** rename Llm prefix to Atl across docs, generated artifacts, and tooling docs ([965787d](https://github.com/DominikPieper/atelier-ui/commit/965787d))
|
|
6
|
+
|
|
7
|
+
### ⚠️ Breaking Changes
|
|
8
|
+
|
|
9
|
+
- **docs:** rename Llm prefix to Atl across docs, generated artifacts, and tooling docs ([965787d](https://github.com/DominikPieper/atelier-ui/commit/965787d))
|
|
10
|
+
|
|
11
|
+
### ❤️ Thank You
|
|
12
|
+
|
|
13
|
+
- Dominik Pieper @DominikPieper
|
|
14
|
+
|
|
1
15
|
## 0.1.12 (2026-07-21)
|
|
2
16
|
|
|
3
17
|
This was a version bump only for create-workspace to align it with other projects, there were no code changes.
|
package/package.json
CHANGED
|
@@ -85,24 +85,24 @@ function presetGenerator(tree, options) {
|
|
|
85
85
|
.map((f) => {
|
|
86
86
|
if (f === 'angular') {
|
|
87
87
|
return `### Angular (\`@atelier-ui/angular\`)
|
|
88
|
-
- Selectors: \`
|
|
89
|
-
- Import: \`import {
|
|
90
|
-
- Add to \`@Component({ imports: [
|
|
88
|
+
- Selectors: \`atl-button\`, \`atl-input\`, \`atl-dialog\`, …
|
|
89
|
+
- Import: \`import { AtlButtonComponent } from '@atelier-ui/angular';\`
|
|
90
|
+
- Add to \`@Component({ imports: [AtlButtonComponent] })\`
|
|
91
91
|
- Form controls implement Signal Forms (\`FormValueControl\` / \`FormCheckboxControl\`)`;
|
|
92
92
|
}
|
|
93
93
|
if (f === 'react') {
|
|
94
94
|
return `### React (\`@atelier-ui/react\`)
|
|
95
|
-
- Elements: \`<
|
|
96
|
-
- Import: \`import {
|
|
95
|
+
- Elements: \`<AtlButton>\`, \`<AtlInput>\`, \`<AtlDialog>\`, …
|
|
96
|
+
- Import: \`import { AtlButton } from '@atelier-ui/react';\`
|
|
97
97
|
- Event handlers follow \`onXxx\` / \`onXxxChange\` convention
|
|
98
|
-
- Toast: use \`
|
|
98
|
+
- Toast: use \`useAtlToast()\` hook inside \`<AtlToastProvider>\``;
|
|
99
99
|
}
|
|
100
100
|
if (f === 'vue') {
|
|
101
101
|
return `### Vue (\`@atelier-ui/vue\`)
|
|
102
|
-
- Elements: \`<
|
|
103
|
-
- Import: \`import {
|
|
102
|
+
- Elements: \`<AtlButton>\`, \`<AtlInput>\`, \`<AtlDialog>\`, …
|
|
103
|
+
- Import: \`import { AtlButton } from '@atelier-ui/vue';\`
|
|
104
104
|
- Two-way binding: \`v-model\` and \`v-model:value\` where applicable
|
|
105
|
-
- Toast: use \`
|
|
105
|
+
- Toast: use \`useAtlToast()\` composable`;
|
|
106
106
|
}
|
|
107
107
|
return '';
|
|
108
108
|
})
|