@maltjoy/core-vue 1.0.0-alpha.5 → 1.0.0-alpha.6

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.
@@ -1,5 +1,12 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
- label: StringConstructor;
2
+ modelValue: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ value: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
3
10
  disabled: {
4
11
  type: BooleanConstructor;
5
12
  default: boolean;
@@ -18,6 +25,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
18
25
  type: BooleanConstructor;
19
26
  default: boolean;
20
27
  };
28
+ label: StringConstructor;
29
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
21
30
  modelValue: {
22
31
  type: BooleanConstructor;
23
32
  default: boolean;
@@ -26,8 +35,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
26
35
  type: StringConstructor;
27
36
  default: string;
28
37
  };
29
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
30
- label: StringConstructor;
31
38
  disabled: {
32
39
  type: BooleanConstructor;
33
40
  default: boolean;
@@ -46,22 +53,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
46
53
  type: BooleanConstructor;
47
54
  default: boolean;
48
55
  };
49
- modelValue: {
50
- type: BooleanConstructor;
51
- default: boolean;
52
- };
53
- value: {
54
- type: StringConstructor;
55
- default: string;
56
- };
56
+ label: StringConstructor;
57
57
  }>> & {
58
58
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
59
59
  }, {
60
60
  disabled: boolean;
61
- invalid: boolean;
62
- required: boolean;
63
61
  modelValue: boolean;
64
62
  value: string;
63
+ invalid: boolean;
64
+ required: boolean;
65
65
  }>, {
66
66
  default: (_: {}) => any;
67
67
  }>;
@@ -1,5 +1,6 @@
1
1
  import JoyButton from '@/components/JoyButton/JoyButton.vue';
2
2
  import JoyCheckbox from '@/components/JoyCheckbox/JoyCheckbox.vue';
3
+ import JoyCounter from '@/components/JoyCounter/JoyCounter.vue';
3
4
  import JoyFormError from '@/components/JoyFormError/JoyFormError.vue';
4
5
  import JoyHighlight from '@/components/JoyHighlight/JoyHighlight.vue';
5
6
  import JoyInput from '@/components/JoyInput/JoyInput.vue';
@@ -13,4 +14,4 @@ import JoyWrapper from '@/components/JoyWrapper/JoyWrapper.vue';
13
14
  import JoyTemplate from '@/components/JoyTemplate/JoyTemplate.vue';
14
15
  import JoyTextarea from '@/components/JoyTextarea/JoyTextarea.vue';
15
16
  import JoyToggle from '@/components/JoyToggle/JoyToggle.vue';
16
- export { JoyButton, JoyCheckbox, JoyFormError, JoyHighlight, JoyInput, JoyLabel, JoyLink, JoyRadio, JoyRadioGroup, JoySelect, JoySpinner, JoyTemplate, JoyTextarea, JoyToggle, JoyWrapper, };
17
+ export { JoyButton, JoyCheckbox, JoyCounter, JoyFormError, JoyHighlight, JoyInput, JoyLabel, JoyLink, JoyRadio, JoyRadioGroup, JoySelect, JoySpinner, JoyTemplate, JoyTextarea, JoyToggle, JoyWrapper, };
@@ -1,4 +1,9 @@
1
1
  import { PropType } from 'vue';
2
+ /**
3
+ * AT THE MOMENT VUE-AUTOGEN PLUGIN FOR STORYBOOK DOES NOT SUPPORT OUT-OF-COMPONENTS PROPS DECLARATION.
4
+ * IT SIMPLY IGNORES IT AND PROPS ARE NOT RENDERED.
5
+ * WE KEEP THIS CODE ONLY IN CASE OF A MAJOR RELEASE INCLUDING THE FEATURE
6
+ */
2
7
  export declare const FORM_BASED_PROPS: {
3
8
  disabled: {
4
9
  type: BooleanConstructor;