ablok-components 0.0.24 → 0.0.25

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.
@@ -0,0 +1,121 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ modelValue: {
3
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
4
+ default: string;
5
+ };
6
+ type: {
7
+ type: StringConstructor;
8
+ default: string;
9
+ };
10
+ name: {
11
+ type: StringConstructor;
12
+ default: () => string;
13
+ };
14
+ id: {
15
+ type: StringConstructor;
16
+ default: () => string;
17
+ };
18
+ label: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ placeholder: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ variant: {
27
+ type: StringConstructor;
28
+ default: string;
29
+ };
30
+ disabled: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ readOnly: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ required: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ maxlength: {
43
+ type: NumberConstructor;
44
+ };
45
+ pattern: {
46
+ type: StringConstructor;
47
+ default: null;
48
+ };
49
+ checked: {
50
+ type: BooleanConstructor;
51
+ default: boolean;
52
+ };
53
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
54
+ modelValue: {
55
+ type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
56
+ default: string;
57
+ };
58
+ type: {
59
+ type: StringConstructor;
60
+ default: string;
61
+ };
62
+ name: {
63
+ type: StringConstructor;
64
+ default: () => string;
65
+ };
66
+ id: {
67
+ type: StringConstructor;
68
+ default: () => string;
69
+ };
70
+ label: {
71
+ type: StringConstructor;
72
+ default: string;
73
+ };
74
+ placeholder: {
75
+ type: StringConstructor;
76
+ default: string;
77
+ };
78
+ variant: {
79
+ type: StringConstructor;
80
+ default: string;
81
+ };
82
+ disabled: {
83
+ type: BooleanConstructor;
84
+ default: boolean;
85
+ };
86
+ readOnly: {
87
+ type: BooleanConstructor;
88
+ default: boolean;
89
+ };
90
+ required: {
91
+ type: BooleanConstructor;
92
+ default: boolean;
93
+ };
94
+ maxlength: {
95
+ type: NumberConstructor;
96
+ };
97
+ pattern: {
98
+ type: StringConstructor;
99
+ default: null;
100
+ };
101
+ checked: {
102
+ type: BooleanConstructor;
103
+ default: boolean;
104
+ };
105
+ }>> & {
106
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
107
+ }, {
108
+ checked: boolean;
109
+ required: boolean;
110
+ type: string;
111
+ label: string;
112
+ pattern: string;
113
+ modelValue: string | number | boolean;
114
+ id: string;
115
+ variant: string;
116
+ name: string;
117
+ disabled: boolean;
118
+ placeholder: string;
119
+ readOnly: boolean;
120
+ }>;
121
+ export default _default;
@@ -128,10 +128,10 @@ declare const _default: import("vue").DefineComponent<{
128
128
  options: any[];
129
129
  required: boolean;
130
130
  label: string;
131
+ color: string;
131
132
  modelValue: string | number | boolean | Record<string, any>;
132
133
  id: string;
133
134
  variant: string;
134
- color: string;
135
135
  name: string;
136
136
  disabled: boolean;
137
137
  placeholder: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ablok-components",
3
3
  "private": false,
4
- "version": "0.0.24",
4
+ "version": "0.0.25",
5
5
  "scripts": {
6
6
  "dev": "vite",
7
7
  "build": "vue-tsc --noEmit && vite build",