@atelier-ui/create-workspace 0.1.12 → 0.2.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 CHANGED
@@ -1,3 +1,27 @@
1
+ ## 0.2.1 (2026-07-21)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - repair Llm->Atl rename residue the codemod regexes missed ([7bedf22](https://github.com/DominikPieper/atelier-ui/commit/7bedf22))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Dominik Pieper @DominikPieper
10
+
11
+ ## 0.2.0 (2026-07-21)
12
+
13
+ ### 🚀 Features
14
+
15
+ - ⚠️ **docs:** rename Llm prefix to Atl across docs, generated artifacts, and tooling docs ([965787d](https://github.com/DominikPieper/atelier-ui/commit/965787d))
16
+
17
+ ### ⚠️ Breaking Changes
18
+
19
+ - **docs:** rename Llm prefix to Atl across docs, generated artifacts, and tooling docs ([965787d](https://github.com/DominikPieper/atelier-ui/commit/965787d))
20
+
21
+ ### ❤️ Thank You
22
+
23
+ - Dominik Pieper @DominikPieper
24
+
1
25
  ## 0.1.12 (2026-07-21)
2
26
 
3
27
  This was a version bump only for create-workspace to align it with other projects, there were no code changes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atelier-ui/create-workspace",
3
- "version": "0.1.12",
3
+ "version": "0.2.1",
4
4
  "description": "Nx preset for Atelier workshop workspaces",
5
5
  "keywords": [
6
6
  "nx",
@@ -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: \`llm-button\`, \`llm-input\`, \`llm-dialog\`, …
89
- - Import: \`import { LlmButtonComponent } from '@atelier-ui/angular';\`
90
- - Add to \`@Component({ imports: [LlmButtonComponent] })\`
88
+ - Selectors: \`atl-button\`, \`atl-input\`, \`atl-dialog\`, …
89
+ - Import: \`import { AtlButton } from '@atelier-ui/angular';\`
90
+ - Add to \`@Component({ imports: [AtlButton] })\`
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: \`<LlmButton>\`, \`<LlmInput>\`, \`<LlmDialog>\`, …
96
- - Import: \`import { LlmButton } from '@atelier-ui/react';\`
95
+ - Elements: \`<AtlButton>\`, \`<AtlInput>\`, \`<AtlDialog>\`, …
96
+ - Import: \`import { AtlButton } from '@atelier-ui/react';\`
97
97
  - Event handlers follow \`onXxx\` / \`onXxxChange\` convention
98
- - Toast: use \`useLlmToast()\` hook inside \`<LlmToastProvider>\``;
98
+ - Toast: use \`useAtlToast()\` hook inside \`<AtlToastProvider>\``;
99
99
  }
100
100
  if (f === 'vue') {
101
101
  return `### Vue (\`@atelier-ui/vue\`)
102
- - Elements: \`<LlmButton>\`, \`<LlmInput>\`, \`<LlmDialog>\`, …
103
- - Import: \`import { LlmButton } from '@atelier-ui/vue';\`
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 \`useLlmToast()\` composable`;
105
+ - Toast: use \`useAtlToast()\` composable`;
106
106
  }
107
107
  return '';
108
108
  })