@vixoniccom/modules 2.11.0 → 2.12.0-dev.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.
- package/.vscode/settings.json +2 -2
- package/CHANGELOG.md +289 -264
- package/dist/index.d.ts +6 -6
- package/dist/index.js +32 -31
- package/dist/lib/base.d.ts +28 -36
- package/dist/lib/base.js +63 -58
- package/dist/lib/containers/dynamic-matrix.d.ts +48 -48
- package/dist/lib/containers/dynamic-matrix.js +85 -76
- package/dist/lib/containers/group.d.ts +21 -21
- package/dist/lib/containers/group.js +56 -47
- package/dist/lib/containers/index.d.ts +6 -6
- package/dist/lib/containers/index.js +14 -13
- package/dist/lib/containers/list.d.ts +66 -66
- package/dist/lib/containers/list.js +114 -105
- package/dist/lib/errors.d.ts +22 -22
- package/dist/lib/errors.js +24 -23
- package/dist/lib/index.d.ts +29 -29
- package/dist/lib/index.js +136 -128
- package/dist/lib/inputs/autocomplete.d.ts +31 -31
- package/dist/lib/inputs/autocomplete.js +55 -49
- package/dist/lib/inputs/color-picker.d.ts +23 -23
- package/dist/lib/inputs/color-picker.js +48 -42
- package/dist/lib/inputs/date-input.d.ts +35 -35
- package/dist/lib/inputs/date-input.js +87 -78
- package/dist/lib/inputs/index.d.ts +24 -24
- package/dist/lib/inputs/index.js +52 -49
- package/dist/lib/inputs/number-input.d.ts +29 -29
- package/dist/lib/inputs/number-input.js +62 -53
- package/dist/lib/inputs/select-asset-kna.d.ts +34 -34
- package/dist/lib/inputs/select-asset-kna.js +56 -50
- package/dist/lib/inputs/select-input.d.ts +18 -18
- package/dist/lib/inputs/select-input.js +35 -29
- package/dist/lib/inputs/service-input.d.ts +27 -27
- package/dist/lib/inputs/service-input.js +47 -41
- package/dist/lib/inputs/slider.d.ts +33 -33
- package/dist/lib/inputs/slider.js +57 -51
- package/dist/lib/inputs/switch.d.ts +21 -21
- package/dist/lib/inputs/switch.js +45 -39
- package/dist/lib/inputs/text-area.d.ts +20 -20
- package/dist/lib/inputs/text-area.js +46 -37
- package/dist/lib/inputs/text-format.d.ts +28 -28
- package/dist/lib/inputs/text-format.js +43 -37
- package/dist/lib/inputs/text-input.d.ts +34 -34
- package/dist/lib/inputs/text-input.js +73 -64
- package/dist/lib/ui/index.d.ts +4 -4
- package/dist/lib/ui/index.js +6 -5
- package/dist/lib/ui/label.d.ts +18 -18
- package/dist/lib/ui/label.js +36 -30
- package/dist/lib/utils/index.d.ts +2 -1
- package/dist/lib/utils/index.js +28 -22
- package/dist/lib/utils/typeDefs.d.ts +7 -7
- package/dist/lib/utils/typeDefs.js +19 -18
- package/dist/lib/utils/validation.d.ts +7 -7
- package/dist/lib/utils/validation.js +27 -26
- package/dist/lib/values.d.ts +21 -21
- package/dist/lib/values.js +92 -86
- package/dist/lib/visibility.d.ts +2 -2
- package/dist/lib/visibility.js +21 -20
- package/package.json +23 -22
package/.vscode/settings.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"typescript.tsdk": "node_modules\\typescript\\lib"
|
|
1
|
+
{
|
|
2
|
+
"typescript.tsdk": "node_modules\\typescript\\lib"
|
|
3
3
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,264 +1,289 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
###
|
|
126
|
-
|
|
127
|
-
*
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
<a name="2.
|
|
132
|
-
# [2.
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
###
|
|
136
|
-
|
|
137
|
-
*
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
<a name="2.2.0"></a>
|
|
142
|
-
# [2.2.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.1.0...v2.2.0) (2018-09-18)
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
### Bug Fixes
|
|
146
|
-
|
|
147
|
-
* added show to IBaseElement ([afbefbb](https://bitbucket.org/vixonicmodules/modules/commits/afbefbb))
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
### Features
|
|
151
|
-
|
|
152
|
-
* added durationFormula and getDuration to configuration ([13ab357](https://bitbucket.org/vixonicmodules/modules/commits/13ab357))
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
<a name="2.1.0"></a>
|
|
157
|
-
# [2.1.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.0.1...v2.1.0) (2018-09-17)
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
### Features
|
|
161
|
-
|
|
162
|
-
* **list-container:** added showItemId attribute ([20ce544](https://bitbucket.org/vixonicmodules/modules/commits/20ce544))
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
<a name="2.0
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
###
|
|
176
|
-
|
|
177
|
-
*
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
<a name="2.
|
|
182
|
-
# [2.
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
### Features
|
|
186
|
-
|
|
187
|
-
* **
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
<a name="
|
|
197
|
-
## [
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
### Bug Fixes
|
|
201
|
-
|
|
202
|
-
*
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
<a name="
|
|
207
|
-
# [
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
### Features
|
|
211
|
-
|
|
212
|
-
* **
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
*
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
*
|
|
258
|
-
*
|
|
259
|
-
*
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [2.12.0-dev.2](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.0-dev.1...v2.12.0-dev.2) (2021-08-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **release:** node was upgrated to v14 ([259116d](https://gitlab.com/mandomedio/vixonic/modules/commit/259116d09a2c8b8b6b9f61a6e5d9b693daea6c42))
|
|
11
|
+
|
|
12
|
+
## [2.12.0-dev.1](https://gitlab.com/mandomedio/vixonic/modules/compare/v2.12.0-dev.0...v2.12.0-dev.1) (2021-08-19)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **release:** Typescript was upgrated to v4 and also several fixes were apply with the new dependencies ([e706e00](https://gitlab.com/mandomedio/vixonic/modules/commit/e706e007b9a31b4ef44aeafdb7002e5007e61627))
|
|
18
|
+
|
|
19
|
+
<a name="2.12.0-dev.0"></a>
|
|
20
|
+
# 2.12.0-dev.0 (2021-08-18)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* **release:** Node JS was upgrated to v10 ([51af8e1](https://gitlab.com/mandomedio/vixonic/modules/commit/51af8e1))
|
|
26
|
+
* **release:** Node JS was upgrated to v12 and Typescript to v2.8 ([aee58cf](https://gitlab.com/mandomedio/vixonic/modules/commit/aee58cf))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
<a name="2.11.0"></a>
|
|
31
|
+
# [2.11.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.10.0...v2.11.0) (2019-01-21)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* add extension attribute to select-asset ([a8592e5](https://bitbucket.org/vixonicmodules/modules/commits/a8592e5))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
<a name="2.10.0"></a>
|
|
41
|
+
# [2.10.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.9.0...v2.10.0) (2019-01-08)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Features
|
|
45
|
+
|
|
46
|
+
* added WeatherService to service input ([96dad52](https://bitbucket.org/vixonicmodules/modules/commits/96dad52))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
<a name="2.9.0"></a>
|
|
51
|
+
# [2.9.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.8.0...v2.9.0) (2019-01-03)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Features
|
|
55
|
+
|
|
56
|
+
* auto mode for color picker ([bcf53d6](https://bitbucket.org/vixonicmodules/modules/commits/bcf53d6))
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
<a name="2.8.0"></a>
|
|
61
|
+
# [2.8.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.7.1...v2.8.0) (2019-01-03)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### Features
|
|
65
|
+
|
|
66
|
+
* color picker output definition. ([69641c9](https://bitbucket.org/vixonicmodules/modules/commits/69641c9))
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
<a name="2.7.1"></a>
|
|
71
|
+
## [2.7.1](https://bitbucket.org/vixonicmodules/modules/compare/v2.7.0...v2.7.1) (2018-11-06)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* Errors isArray returning isMap ([54467f7](https://bitbucket.org/vixonicmodules/modules/commits/54467f7))
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
<a name="2.7.0"></a>
|
|
81
|
+
# [2.7.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.6.0...v2.7.0) (2018-11-06)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
### Features
|
|
85
|
+
|
|
86
|
+
* range in lists ([f3d28b4](https://bitbucket.org/vixonicmodules/modules/commits/f3d28b4))
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
<a name="2.6.0"></a>
|
|
91
|
+
# [2.6.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.5.0...v2.6.0) (2018-10-19)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Features
|
|
95
|
+
|
|
96
|
+
* select asset kna now accepts multiple ([3ee9ae7](https://bitbucket.org/vixonicmodules/modules/commits/3ee9ae7))
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
<a name="2.5.0"></a>
|
|
101
|
+
# [2.5.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.4.0...v2.5.0) (2018-10-19)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Features
|
|
105
|
+
|
|
106
|
+
* added facebook service. ([5724f50](https://bitbucket.org/vixonicmodules/modules/commits/5724f50))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
<a name="2.4.0"></a>
|
|
111
|
+
# [2.4.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.3.1...v2.4.0) (2018-10-19)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
### Features
|
|
115
|
+
|
|
116
|
+
* dynamic matrix container ([1ff8fb5](https://bitbucket.org/vixonicmodules/modules/commits/1ff8fb5))
|
|
117
|
+
* dynamic matrix input. ([1a84c44](https://bitbucket.org/vixonicmodules/modules/commits/1a84c44))
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
<a name="2.3.1"></a>
|
|
122
|
+
## [2.3.1](https://bitbucket.org/vixonicmodules/modules/compare/v2.3.0...v2.3.1) (2018-09-28)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Bug Fixes
|
|
126
|
+
|
|
127
|
+
* **validation:** not visible containers should not validate. ([37be5a2](https://bitbucket.org/vixonicmodules/modules/commits/37be5a2))
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
<a name="2.3.0"></a>
|
|
132
|
+
# [2.3.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.0.2...v2.3.0) (2018-09-27)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
### Bug Fixes
|
|
136
|
+
|
|
137
|
+
* merge issues ([b846326](https://bitbucket.org/vixonicmodules/modules/commits/b846326))
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
<a name="2.2.0"></a>
|
|
142
|
+
# [2.2.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.1.0...v2.2.0) (2018-09-18)
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
### Bug Fixes
|
|
146
|
+
|
|
147
|
+
* added show to IBaseElement ([afbefbb](https://bitbucket.org/vixonicmodules/modules/commits/afbefbb))
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
### Features
|
|
151
|
+
|
|
152
|
+
* added durationFormula and getDuration to configuration ([13ab357](https://bitbucket.org/vixonicmodules/modules/commits/13ab357))
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
<a name="2.1.0"></a>
|
|
157
|
+
# [2.1.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.0.1...v2.1.0) (2018-09-17)
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Features
|
|
161
|
+
|
|
162
|
+
* **list-container:** added showItemId attribute ([20ce544](https://bitbucket.org/vixonicmodules/modules/commits/20ce544))
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
<a name="2.2.0"></a>
|
|
167
|
+
# [2.2.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.1.0...v2.2.0) (2018-09-18)
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
### Bug Fixes
|
|
171
|
+
|
|
172
|
+
* added show to IBaseElement ([afbefbb](https://bitbucket.org/vixonicmodules/modules/commits/afbefbb))
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Features
|
|
176
|
+
|
|
177
|
+
* added durationFormula and getDuration to configuration ([13ab357](https://bitbucket.org/vixonicmodules/modules/commits/13ab357))
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
<a name="2.1.0"></a>
|
|
182
|
+
# [2.1.0](https://bitbucket.org/vixonicmodules/modules/compare/v2.0.1...v2.1.0) (2018-09-17)
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Features
|
|
186
|
+
|
|
187
|
+
* **list-container:** added showItemId attribute ([20ce544](https://bitbucket.org/vixonicmodules/modules/commits/20ce544))
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
<a name="2.0.2"></a>
|
|
192
|
+
## [2.0.2](https://bitbucket.org/vixonicmodules/modules/compare/v2.0.1...v2.0.2) (2018-09-17)
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
<a name="2.0.1"></a>
|
|
197
|
+
## [2.0.1](https://bitbucket.org/vixonicmodules/modules/compare/v2.0.0...v2.0.1) (2018-09-14)
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
### Bug Fixes
|
|
201
|
+
|
|
202
|
+
* change typescript target from es2015 to es5 ([b4284c4](https://bitbucket.org/vixonicmodules/modules/commits/b4284c4))
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
<a name="2.0.0"></a>
|
|
207
|
+
# [2.0.0](https://bitbucket.org/vixonicmodules/modules/compare/v1.4.1...v2.0.0) (2018-09-13)
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
### Features
|
|
211
|
+
|
|
212
|
+
* **ts:** change typescript version ([86ec66e](https://bitbucket.org/vixonicmodules/modules/commits/86ec66e))
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
### BREAKING CHANGES
|
|
216
|
+
|
|
217
|
+
* **ts:** typescript version 2.4.2
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
<a name="1.4.1"></a>
|
|
222
|
+
## [1.4.1](https://bitbucket.org/vixonicmodules/modules/compare/v1.4.0...v1.4.1) (2018-09-13)
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
### Bug Fixes
|
|
226
|
+
|
|
227
|
+
* date input value validation ([6ebba74](https://bitbucket.org/vixonicmodules/modules/commits/6ebba74))
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
<a name="1.4.0"></a>
|
|
232
|
+
# [1.4.0](https://bitbucket.org/vixonicmodules/modules/compare/v1.3.0...v1.4.0) (2018-09-12)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
### Features
|
|
236
|
+
|
|
237
|
+
* **validation-scheme:** new validation scheme. BREAKING CHANGE: Not compatible with previous versions. ([ad0835d](https://bitbucket.org/vixonicmodules/modules/commits/ad0835d))
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
<a name="1.3.0"></a>
|
|
242
|
+
# [1.3.0](https://bitbucket.org/vixonicmodules/modules/compare/v1.2.0...v1.3.0) (2018-09-10)
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
### Features
|
|
246
|
+
|
|
247
|
+
* list attr sortDisabled changed to sortable. ([f471dc9](https://bitbucket.org/vixonicmodules/modules/commits/f471dc9))
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
<a name="1.2.0"></a>
|
|
252
|
+
# [1.2.0](https://bitbucket.org/vixonicmodules/modules/compare/v1.1.1...v1.2.0) (2018-09-05)
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
### Features
|
|
256
|
+
|
|
257
|
+
* add LinkedInCompanyMediaService to ServiceInput ([6042e54](https://bitbucket.org/vixonicmodules/modules/commits/6042e54))
|
|
258
|
+
* add sortDisabled attribute to lists ([cca2f4e](https://bitbucket.org/vixonicmodules/modules/commits/cca2f4e))
|
|
259
|
+
* added standard-version ([e0b1611](https://bitbucket.org/vixonicmodules/modules/commits/e0b1611))
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
<a name="1.1.1"></a>
|
|
264
|
+
## 1.1.1 (2018-09-05)
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
### Bug Fixes
|
|
268
|
+
|
|
269
|
+
* allow empty "" values in autocomplete and select-input. ([762eafa](https://bitbucket.org/vixonicmodules/modules/commits/762eafa))
|
|
270
|
+
* autocomplete multiple typeDef ([7f1924a](https://bitbucket.org/vixonicmodules/modules/commits/7f1924a))
|
|
271
|
+
* group show fixed ([381c1b5](https://bitbucket.org/vixonicmodules/modules/commits/381c1b5))
|
|
272
|
+
* Number input validation when no range is available ([45ebaa7](https://bitbucket.org/vixonicmodules/modules/commits/45ebaa7))
|
|
273
|
+
* select input value type array ([d3cb3ef](https://bitbucket.org/vixonicmodules/modules/commits/d3cb3ef))
|
|
274
|
+
* TextFormat value font should include id ([29f8583](https://bitbucket.org/vixonicmodules/modules/commits/29f8583))
|
|
275
|
+
* update text-format typeDef to match the value. ([19cb679](https://bitbucket.org/vixonicmodules/modules/commits/19cb679))
|
|
276
|
+
* VixonicData type definition. ([7309a48](https://bitbucket.org/vixonicmodules/modules/commits/7309a48))
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### Features
|
|
280
|
+
|
|
281
|
+
* __isAsset in select-asset & text-format. Warn on duplicate ids when parsing toJSON. ([ccce2aa](https://bitbucket.org/vixonicmodules/modules/commits/ccce2aa))
|
|
282
|
+
* added show to label ([a30fa78](https://bitbucket.org/vixonicmodules/modules/commits/a30fa78))
|
|
283
|
+
* Added some utils, started validation ([cdc9f01](https://bitbucket.org/vixonicmodules/modules/commits/cdc9f01))
|
|
284
|
+
* adds service-input ([3ccafae](https://bitbucket.org/vixonicmodules/modules/commits/3ccafae))
|
|
285
|
+
* Date input validation fixes. ([9d29e42](https://bitbucket.org/vixonicmodules/modules/commits/9d29e42))
|
|
286
|
+
* list value and typedef for List ([99247a1](https://bitbucket.org/vixonicmodules/modules/commits/99247a1))
|
|
287
|
+
* service input now has InstagramMedia option. ([b5090fe](https://bitbucket.org/vixonicmodules/modules/commits/b5090fe))
|
|
288
|
+
* shared IDs now posible ([d2d1dd7](https://bitbucket.org/vixonicmodules/modules/commits/d2d1dd7))
|
|
289
|
+
* validation logic implemented ([2cf1fb7](https://bitbucket.org/vixonicmodules/modules/commits/2cf1fb7))
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { Configuration } from './lib';
|
|
2
|
-
export { Errors, ErrorsMap } from './lib/errors';
|
|
3
|
-
export { Autocomplete, ColorPicker, DateInput, NumberInput, SelectAssetKna, SelectInput, Switch, Slider, TextArea, TextFormat, TextInput, ServiceInput, isInput, InputValue, InputComponent, isInputInstance } from './lib/inputs';
|
|
4
|
-
export { Label } from './lib/ui';
|
|
5
|
-
export { Group, List, DynamicMatrix } from './lib/containers';
|
|
6
|
-
export { RangeValue, DateRangeValue, NumberRangeValue } from './lib/values';
|
|
1
|
+
export { Configuration } from './lib';
|
|
2
|
+
export { Errors, ErrorsMap } from './lib/errors';
|
|
3
|
+
export { Autocomplete, ColorPicker, DateInput, NumberInput, SelectAssetKna, SelectInput, Switch, Slider, TextArea, TextFormat, TextInput, ServiceInput, isInput, InputValue, InputComponent, isInputInstance } from './lib/inputs';
|
|
4
|
+
export { Label } from './lib/ui';
|
|
5
|
+
export { Group, List, DynamicMatrix } from './lib/containers';
|
|
6
|
+
export { RangeValue, DateRangeValue, NumberRangeValue } from './lib/values';
|