@muenchen/muc-patternlab-vue 1.12.1-beta.1 → 1.12.1-beta.2

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.
@@ -80,7 +80,7 @@ export declare const Default: () => {
80
80
  }, {}>;
81
81
  MucRadioButtonGroup: {
82
82
  new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
83
- modelValue: import('vue').PropType<import('./RadioButtonTypes').RadioButtonValueTypes>;
83
+ modelValue: import('vue').PropType<import('./MucRadioButtonTypes').RadioButtonValueTypes>;
84
84
  disabled: {
85
85
  type: import('vue').PropType<boolean>;
86
86
  default: boolean;
@@ -89,11 +89,11 @@ export declare const Default: () => {
89
89
  type: import('vue').PropType<string>;
90
90
  };
91
91
  }>> & {
92
- onChange?: ((value: import('./RadioButtonTypes').RadioButtonValueTypes) => any) | undefined;
92
+ onChange?: ((value: import('./MucRadioButtonTypes').RadioButtonValueTypes) => any) | undefined;
93
93
  }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
94
- change: (value: import('./RadioButtonTypes').RadioButtonValueTypes) => void;
94
+ change: (value: import('./MucRadioButtonTypes').RadioButtonValueTypes) => void;
95
95
  }, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
96
- modelValue: import('vue').PropType<import('./RadioButtonTypes').RadioButtonValueTypes>;
96
+ modelValue: import('vue').PropType<import('./MucRadioButtonTypes').RadioButtonValueTypes>;
97
97
  disabled: {
98
98
  type: import('vue').PropType<boolean>;
99
99
  default: boolean;
@@ -102,7 +102,7 @@ export declare const Default: () => {
102
102
  type: import('vue').PropType<string>;
103
103
  };
104
104
  }>> & {
105
- onChange?: ((value: import('./RadioButtonTypes').RadioButtonValueTypes) => any) | undefined;
105
+ onChange?: ((value: import('./MucRadioButtonTypes').RadioButtonValueTypes) => any) | undefined;
106
106
  }, {
107
107
  disabled: boolean;
108
108
  }, true, {}, {}, {
@@ -113,7 +113,7 @@ export declare const Default: () => {
113
113
  M: {};
114
114
  Defaults: {};
115
115
  }, Readonly<import('vue').ExtractPropTypes<{
116
- modelValue: import('vue').PropType<import('./RadioButtonTypes').RadioButtonValueTypes>;
116
+ modelValue: import('vue').PropType<import('./MucRadioButtonTypes').RadioButtonValueTypes>;
117
117
  disabled: {
118
118
  type: import('vue').PropType<boolean>;
119
119
  default: boolean;
@@ -122,7 +122,7 @@ export declare const Default: () => {
122
122
  type: import('vue').PropType<string>;
123
123
  };
124
124
  }>> & {
125
- onChange?: ((value: import('./RadioButtonTypes').RadioButtonValueTypes) => any) | undefined;
125
+ onChange?: ((value: import('./MucRadioButtonTypes').RadioButtonValueTypes) => any) | undefined;
126
126
  }, {}, {}, {}, {}, {
127
127
  disabled: boolean;
128
128
  }>;
@@ -130,7 +130,7 @@ export declare const Default: () => {
130
130
  __isTeleport?: never;
131
131
  __isSuspense?: never;
132
132
  } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
133
- modelValue: import('vue').PropType<import('./RadioButtonTypes').RadioButtonValueTypes>;
133
+ modelValue: import('vue').PropType<import('./MucRadioButtonTypes').RadioButtonValueTypes>;
134
134
  disabled: {
135
135
  type: import('vue').PropType<boolean>;
136
136
  default: boolean;
@@ -139,9 +139,9 @@ export declare const Default: () => {
139
139
  type: import('vue').PropType<string>;
140
140
  };
141
141
  }>> & {
142
- onChange?: ((value: import('./RadioButtonTypes').RadioButtonValueTypes) => any) | undefined;
142
+ onChange?: ((value: import('./MucRadioButtonTypes').RadioButtonValueTypes) => any) | undefined;
143
143
  }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
144
- change: (value: import('./RadioButtonTypes').RadioButtonValueTypes) => void;
144
+ change: (value: import('./MucRadioButtonTypes').RadioButtonValueTypes) => void;
145
145
  }, string, {
146
146
  disabled: boolean;
147
147
  }, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
@@ -1,4 +1,4 @@
1
- import { RadioButtonValueTypes } from './RadioButtonTypes';
1
+ import { RadioButtonValueTypes } from './MucRadioButtonTypes';
2
2
 
3
3
  declare function __VLS_template(): {
4
4
  default?(_: {}): any;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "FabianWilms",
4
4
  "description": "A vue component library of some of the components available from https://patternlab.muenchen.space",
5
5
  "license": "MIT",
6
- "version": "1.12.1-beta.1",
6
+ "version": "1.12.1-beta.2",
7
7
  "private": false,
8
8
  "module": "./dist/muc-patternlab-vue.es.js",
9
9
  "types": "./dist/types/index.d.ts",
@@ -3,7 +3,7 @@ import MucRadioButtonGroup from "./MucRadioButtonGroup.vue";
3
3
 
4
4
  export default {
5
5
  component: MucRadioButton,
6
- title: "Forms/RadioButton",
6
+ title: "Forms/MucRadioButton",
7
7
  tags: ["autodocs"],
8
8
  parameters: {
9
9
  docs: {
@@ -25,7 +25,7 @@
25
25
  <script setup lang="ts">
26
26
  import { computed, inject } from "vue";
27
27
 
28
- import { RadioButtonGroupKey } from "./RadioButtonTypes";
28
+ import { RadioButtonGroupKey } from "./MucRadioButtonTypes";
29
29
 
30
30
  const props = withDefaults(
31
31
  defineProps<{
@@ -16,7 +16,10 @@
16
16
  <script setup lang="ts">
17
17
  import { provide, readonly, toRef } from "vue";
18
18
 
19
- import { RadioButtonGroupKey, RadioButtonValueTypes } from "./RadioButtonTypes";
19
+ import {
20
+ RadioButtonGroupKey,
21
+ RadioButtonValueTypes,
22
+ } from "./MucRadioButtonTypes";
20
23
 
21
24
  /**
22
25
  * exposed two-way binding of the currently selected radiobuttons-value