@atelier-ui/create-workspace 0.1.11 → 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 CHANGED
@@ -1,3 +1,21 @@
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
+
15
+ ## 0.1.12 (2026-07-21)
16
+
17
+ This was a version bump only for create-workspace to align it with other projects, there were no code changes.
18
+
1
19
  ## 0.1.11 (2026-07-10)
2
20
 
3
21
  ### 🩹 Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atelier-ui/create-workspace",
3
- "version": "0.1.11",
3
+ "version": "0.2.0",
4
4
  "description": "Nx preset for Atelier workshop workspaces",
5
5
  "keywords": [
6
6
  "nx",
@@ -21,7 +21,7 @@
21
21
  "types": "./src/index.d.ts",
22
22
  "generators": "./generators.json",
23
23
  "dependencies": {
24
- "@nx/devkit": "22.7.2",
24
+ "@nx/devkit": "23.1.0",
25
25
  "prettier": "^3.0.0",
26
26
  "tslib": "^2.3.0"
27
27
  },
@@ -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 { 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: \`<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
  })
package/src/index.js CHANGED
@@ -1 +1,2 @@
1
+ "use strict";
1
2
  //# sourceMappingURL=index.js.map