@atelier-ui/vue 0.0.36 → 0.0.38

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,25 @@
1
+ ## 0.0.38 (2026-04-26)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **cookbook:** equalize compositions across frameworks (Phase 5 / P2) ([fb7db85](https://github.com/DominikPieper/atelier-ui/commit/fb7db85))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Claude Opus 4.7 (1M context)
10
+ - Dominik Pieper
11
+
12
+ ## 0.0.37 (2026-04-26)
13
+
14
+ ### 🩹 Fixes
15
+
16
+ - **vue:** inline LlmStepper props type to satisfy nx release dts emit ([4f09447](https://github.com/DominikPieper/atelier-ui/commit/4f09447))
17
+
18
+ ### ❤️ Thank You
19
+
20
+ - Claude Opus 4.7 (1M context)
21
+ - Dominik Pieper
22
+
1
23
  ## 0.0.36 (2026-04-26)
2
24
 
3
25
  This was a version bump only for vue to align it with other projects, there were no code changes.
@@ -0,0 +1,48 @@
1
+ import { InjectionKey, Ref } from 'vue';
2
+ export interface StepInfo {
3
+ id: string;
4
+ label: string;
5
+ description?: string;
6
+ completed: boolean;
7
+ error: boolean;
8
+ optional: boolean;
9
+ disabled: boolean;
10
+ }
11
+ export interface LlmStepperContext {
12
+ activeStep: Ref<number>;
13
+ steps: Ref<StepInfo[]>;
14
+ linear: Ref<boolean>;
15
+ registerStep(step: StepInfo): void;
16
+ unregisterStep(id: string): void;
17
+ updateStep(id: string, info: Partial<StepInfo>): void;
18
+ goTo(index: number): void;
19
+ next(): void;
20
+ prev(): void;
21
+ }
22
+ export declare const LlmStepperKey: InjectionKey<LlmStepperContext>;
23
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
24
+ activeStep?: number;
25
+ orientation?: "horizontal" | "vertical";
26
+ linear?: boolean;
27
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
28
+ "update:activeStep": (index: number) => any;
29
+ }, string, import('vue').PublicProps, Readonly<{
30
+ activeStep?: number;
31
+ orientation?: "horizontal" | "vertical";
32
+ linear?: boolean;
33
+ }> & Readonly<{
34
+ "onUpdate:activeStep"?: ((index: number) => any) | undefined;
35
+ }>, {
36
+ activeStep: number;
37
+ orientation: "horizontal" | "vertical";
38
+ linear: boolean;
39
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>, {
40
+ default?(_: {}): any;
41
+ }>;
42
+ export default _default;
43
+ type __VLS_WithTemplateSlots<T, S> = T & {
44
+ new (): {
45
+ $slots: S;
46
+ };
47
+ };
48
+ //# sourceMappingURL=llm-stepper.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"llm-stepper.vue.d.ts","sourceRoot":"","sources":["../../../../../../../../libs/vue/src/lib/stepper/llm-stepper.vue"],"names":[],"mappings":"AA6KA,OAAO,mBAAmB,CAAC;AAG3B,OAAO,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE7C,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;IACf,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IACxB,KAAK,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC;IACvB,MAAM,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IACrB,YAAY,CAAC,IAAI,EAAE,QAAQ,GAAG,IAAI,CAAC;IACnC,cAAc,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,UAAU,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;IACtD,IAAI,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,IAAI,IAAI,IAAI,CAAC;IACb,IAAI,IAAI,IAAI,CAAC;CACd;AAED,eAAO,MAAM,aAAa,EAAE,YAAY,CAAC,iBAAiB,CAAwB,CAAC;;iBAMpE,MAAM;kBACL,YAAY,GAAG,UAAU;aAC9B,OAAO;;;;iBAFH,MAAM;kBACL,YAAY,GAAG,UAAU;aAC9B,OAAO;;;;gBAFH,MAAM;iBACL,YAAY,GAAG,UAAU;YAC9B,OAAO;;qBA+LW,GAAG;;AArMhC,wBA+OK;AAaL,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atelier-ui/vue",
3
- "version": "0.0.36",
3
+ "version": "0.0.38",
4
4
  "description": "Atelier component library for Vue 3 — LLM-optimised, accessible, design-token-driven",
5
5
  "keywords": [
6
6
  "vue",