@ngxs/form-plugin 3.7.4 → 3.7.5
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/README.md +3 -3
- package/bundles/ngxs-form-plugin.umd.js +665 -658
- package/bundles/ngxs-form-plugin.umd.js.map +1 -1
- package/bundles/ngxs-form-plugin.umd.min.js +1 -1
- package/bundles/ngxs-form-plugin.umd.min.js.map +1 -1
- package/esm2015/index.js +9 -9
- package/esm2015/ngxs-form-plugin.js +9 -9
- package/esm2015/src/actions.js +195 -195
- package/esm2015/src/directive.js +306 -299
- package/esm2015/src/form.module.js +34 -34
- package/esm2015/src/form.plugin.js +83 -83
- package/esm2015/src/public_api.js +8 -8
- package/esm5/index.js +9 -9
- package/esm5/ngxs-form-plugin.js +9 -9
- package/esm5/src/actions.js +225 -225
- package/esm5/src/directive.js +335 -328
- package/esm5/src/form.module.js +41 -41
- package/esm5/src/form.plugin.js +100 -100
- package/esm5/src/public_api.js +8 -8
- package/fesm2015/ngxs-form-plugin.js +605 -598
- package/fesm2015/ngxs-form-plugin.js.map +1 -1
- package/fesm5/ngxs-form-plugin.js +674 -667
- package/fesm5/ngxs-form-plugin.js.map +1 -1
- package/index.d.ts +4 -4
- package/ngxs-form-plugin.d.ts +5 -5
- package/package.json +2 -2
- package/src/actions.d.ts +102 -102
- package/src/directive.d.ts +22 -22
- package/src/form.module.d.ts +4 -4
- package/src/form.plugin.d.ts +5 -5
- package/src/public_api.d.ts +3 -3
package/esm5/src/actions.js
CHANGED
|
@@ -1,225 +1,225 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
4
|
-
*/
|
|
5
|
-
var UpdateFormStatus = /** @class */ (function () {
|
|
6
|
-
function UpdateFormStatus(payload) {
|
|
7
|
-
this.payload = payload;
|
|
8
|
-
}
|
|
9
|
-
Object.defineProperty(UpdateFormStatus, "type", {
|
|
10
|
-
get: /**
|
|
11
|
-
* @return {?}
|
|
12
|
-
*/
|
|
13
|
-
function () {
|
|
14
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
15
|
-
return '[Forms] Update Form Status';
|
|
16
|
-
},
|
|
17
|
-
enumerable: true,
|
|
18
|
-
configurable: true
|
|
19
|
-
});
|
|
20
|
-
return UpdateFormStatus;
|
|
21
|
-
}());
|
|
22
|
-
export { UpdateFormStatus };
|
|
23
|
-
if (false) {
|
|
24
|
-
/** @type {?} */
|
|
25
|
-
UpdateFormStatus.prototype.payload;
|
|
26
|
-
}
|
|
27
|
-
var UpdateFormValue = /** @class */ (function () {
|
|
28
|
-
function UpdateFormValue(payload) {
|
|
29
|
-
this.payload = payload;
|
|
30
|
-
}
|
|
31
|
-
Object.defineProperty(UpdateFormValue, "type", {
|
|
32
|
-
get: /**
|
|
33
|
-
* @return {?}
|
|
34
|
-
*/
|
|
35
|
-
function () {
|
|
36
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
37
|
-
return '[Forms] Update Form Value';
|
|
38
|
-
},
|
|
39
|
-
enumerable: true,
|
|
40
|
-
configurable: true
|
|
41
|
-
});
|
|
42
|
-
return UpdateFormValue;
|
|
43
|
-
}());
|
|
44
|
-
export { UpdateFormValue };
|
|
45
|
-
if (false) {
|
|
46
|
-
/** @type {?} */
|
|
47
|
-
UpdateFormValue.prototype.payload;
|
|
48
|
-
}
|
|
49
|
-
var UpdateForm = /** @class */ (function () {
|
|
50
|
-
function UpdateForm(payload) {
|
|
51
|
-
this.payload = payload;
|
|
52
|
-
}
|
|
53
|
-
Object.defineProperty(UpdateForm, "type", {
|
|
54
|
-
get: /**
|
|
55
|
-
* @return {?}
|
|
56
|
-
*/
|
|
57
|
-
function () {
|
|
58
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
59
|
-
return '[Forms] Update Form';
|
|
60
|
-
},
|
|
61
|
-
enumerable: true,
|
|
62
|
-
configurable: true
|
|
63
|
-
});
|
|
64
|
-
return UpdateForm;
|
|
65
|
-
}());
|
|
66
|
-
export { UpdateForm };
|
|
67
|
-
if (false) {
|
|
68
|
-
/** @type {?} */
|
|
69
|
-
UpdateForm.prototype.payload;
|
|
70
|
-
}
|
|
71
|
-
var UpdateFormDirty = /** @class */ (function () {
|
|
72
|
-
function UpdateFormDirty(payload) {
|
|
73
|
-
this.payload = payload;
|
|
74
|
-
}
|
|
75
|
-
Object.defineProperty(UpdateFormDirty, "type", {
|
|
76
|
-
get: /**
|
|
77
|
-
* @return {?}
|
|
78
|
-
*/
|
|
79
|
-
function () {
|
|
80
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
81
|
-
return '[Forms] Update Form Dirty';
|
|
82
|
-
},
|
|
83
|
-
enumerable: true,
|
|
84
|
-
configurable: true
|
|
85
|
-
});
|
|
86
|
-
return UpdateFormDirty;
|
|
87
|
-
}());
|
|
88
|
-
export { UpdateFormDirty };
|
|
89
|
-
if (false) {
|
|
90
|
-
/** @type {?} */
|
|
91
|
-
UpdateFormDirty.prototype.payload;
|
|
92
|
-
}
|
|
93
|
-
var SetFormDirty = /** @class */ (function () {
|
|
94
|
-
function SetFormDirty(payload) {
|
|
95
|
-
this.payload = payload;
|
|
96
|
-
}
|
|
97
|
-
Object.defineProperty(SetFormDirty, "type", {
|
|
98
|
-
get: /**
|
|
99
|
-
* @return {?}
|
|
100
|
-
*/
|
|
101
|
-
function () {
|
|
102
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
103
|
-
return '[Forms] Set Form Dirty';
|
|
104
|
-
},
|
|
105
|
-
enumerable: true,
|
|
106
|
-
configurable: true
|
|
107
|
-
});
|
|
108
|
-
return SetFormDirty;
|
|
109
|
-
}());
|
|
110
|
-
export { SetFormDirty };
|
|
111
|
-
if (false) {
|
|
112
|
-
/** @type {?} */
|
|
113
|
-
SetFormDirty.prototype.payload;
|
|
114
|
-
}
|
|
115
|
-
var SetFormPristine = /** @class */ (function () {
|
|
116
|
-
function SetFormPristine(payload) {
|
|
117
|
-
this.payload = payload;
|
|
118
|
-
}
|
|
119
|
-
Object.defineProperty(SetFormPristine, "type", {
|
|
120
|
-
get: /**
|
|
121
|
-
* @return {?}
|
|
122
|
-
*/
|
|
123
|
-
function () {
|
|
124
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
125
|
-
return '[Forms] Set Form Pristine';
|
|
126
|
-
},
|
|
127
|
-
enumerable: true,
|
|
128
|
-
configurable: true
|
|
129
|
-
});
|
|
130
|
-
return SetFormPristine;
|
|
131
|
-
}());
|
|
132
|
-
export { SetFormPristine };
|
|
133
|
-
if (false) {
|
|
134
|
-
/** @type {?} */
|
|
135
|
-
SetFormPristine.prototype.payload;
|
|
136
|
-
}
|
|
137
|
-
var UpdateFormErrors = /** @class */ (function () {
|
|
138
|
-
function UpdateFormErrors(payload) {
|
|
139
|
-
this.payload = payload;
|
|
140
|
-
}
|
|
141
|
-
Object.defineProperty(UpdateFormErrors, "type", {
|
|
142
|
-
get: /**
|
|
143
|
-
* @return {?}
|
|
144
|
-
*/
|
|
145
|
-
function () {
|
|
146
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
147
|
-
return '[Forms] Update Form Errors';
|
|
148
|
-
},
|
|
149
|
-
enumerable: true,
|
|
150
|
-
configurable: true
|
|
151
|
-
});
|
|
152
|
-
return UpdateFormErrors;
|
|
153
|
-
}());
|
|
154
|
-
export { UpdateFormErrors };
|
|
155
|
-
if (false) {
|
|
156
|
-
/** @type {?} */
|
|
157
|
-
UpdateFormErrors.prototype.payload;
|
|
158
|
-
}
|
|
159
|
-
var SetFormDisabled = /** @class */ (function () {
|
|
160
|
-
function SetFormDisabled(payload) {
|
|
161
|
-
this.payload = payload;
|
|
162
|
-
}
|
|
163
|
-
Object.defineProperty(SetFormDisabled, "type", {
|
|
164
|
-
get: /**
|
|
165
|
-
* @return {?}
|
|
166
|
-
*/
|
|
167
|
-
function () {
|
|
168
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
169
|
-
return '[Forms] Set Form Disabled';
|
|
170
|
-
},
|
|
171
|
-
enumerable: true,
|
|
172
|
-
configurable: true
|
|
173
|
-
});
|
|
174
|
-
return SetFormDisabled;
|
|
175
|
-
}());
|
|
176
|
-
export { SetFormDisabled };
|
|
177
|
-
if (false) {
|
|
178
|
-
/** @type {?} */
|
|
179
|
-
SetFormDisabled.prototype.payload;
|
|
180
|
-
}
|
|
181
|
-
var SetFormEnabled = /** @class */ (function () {
|
|
182
|
-
function SetFormEnabled(payload) {
|
|
183
|
-
this.payload = payload;
|
|
184
|
-
}
|
|
185
|
-
Object.defineProperty(SetFormEnabled, "type", {
|
|
186
|
-
get: /**
|
|
187
|
-
* @return {?}
|
|
188
|
-
*/
|
|
189
|
-
function () {
|
|
190
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
191
|
-
return '[Forms] Set Form Enabled';
|
|
192
|
-
},
|
|
193
|
-
enumerable: true,
|
|
194
|
-
configurable: true
|
|
195
|
-
});
|
|
196
|
-
return SetFormEnabled;
|
|
197
|
-
}());
|
|
198
|
-
export { SetFormEnabled };
|
|
199
|
-
if (false) {
|
|
200
|
-
/** @type {?} */
|
|
201
|
-
SetFormEnabled.prototype.payload;
|
|
202
|
-
}
|
|
203
|
-
var ResetForm = /** @class */ (function () {
|
|
204
|
-
function ResetForm(payload) {
|
|
205
|
-
this.payload = payload;
|
|
206
|
-
}
|
|
207
|
-
Object.defineProperty(ResetForm, "type", {
|
|
208
|
-
get: /**
|
|
209
|
-
* @return {?}
|
|
210
|
-
*/
|
|
211
|
-
function () {
|
|
212
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
213
|
-
return '[Forms] Reset Form';
|
|
214
|
-
},
|
|
215
|
-
enumerable: true,
|
|
216
|
-
configurable: true
|
|
217
|
-
});
|
|
218
|
-
return ResetForm;
|
|
219
|
-
}());
|
|
220
|
-
export { ResetForm };
|
|
221
|
-
if (false) {
|
|
222
|
-
/** @type {?} */
|
|
223
|
-
ResetForm.prototype.payload;
|
|
224
|
-
}
|
|
225
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview added by tsickle
|
|
3
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
4
|
+
*/
|
|
5
|
+
var UpdateFormStatus = /** @class */ (function () {
|
|
6
|
+
function UpdateFormStatus(payload) {
|
|
7
|
+
this.payload = payload;
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(UpdateFormStatus, "type", {
|
|
10
|
+
get: /**
|
|
11
|
+
* @return {?}
|
|
12
|
+
*/
|
|
13
|
+
function () {
|
|
14
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
15
|
+
return '[Forms] Update Form Status';
|
|
16
|
+
},
|
|
17
|
+
enumerable: true,
|
|
18
|
+
configurable: true
|
|
19
|
+
});
|
|
20
|
+
return UpdateFormStatus;
|
|
21
|
+
}());
|
|
22
|
+
export { UpdateFormStatus };
|
|
23
|
+
if (false) {
|
|
24
|
+
/** @type {?} */
|
|
25
|
+
UpdateFormStatus.prototype.payload;
|
|
26
|
+
}
|
|
27
|
+
var UpdateFormValue = /** @class */ (function () {
|
|
28
|
+
function UpdateFormValue(payload) {
|
|
29
|
+
this.payload = payload;
|
|
30
|
+
}
|
|
31
|
+
Object.defineProperty(UpdateFormValue, "type", {
|
|
32
|
+
get: /**
|
|
33
|
+
* @return {?}
|
|
34
|
+
*/
|
|
35
|
+
function () {
|
|
36
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
37
|
+
return '[Forms] Update Form Value';
|
|
38
|
+
},
|
|
39
|
+
enumerable: true,
|
|
40
|
+
configurable: true
|
|
41
|
+
});
|
|
42
|
+
return UpdateFormValue;
|
|
43
|
+
}());
|
|
44
|
+
export { UpdateFormValue };
|
|
45
|
+
if (false) {
|
|
46
|
+
/** @type {?} */
|
|
47
|
+
UpdateFormValue.prototype.payload;
|
|
48
|
+
}
|
|
49
|
+
var UpdateForm = /** @class */ (function () {
|
|
50
|
+
function UpdateForm(payload) {
|
|
51
|
+
this.payload = payload;
|
|
52
|
+
}
|
|
53
|
+
Object.defineProperty(UpdateForm, "type", {
|
|
54
|
+
get: /**
|
|
55
|
+
* @return {?}
|
|
56
|
+
*/
|
|
57
|
+
function () {
|
|
58
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
59
|
+
return '[Forms] Update Form';
|
|
60
|
+
},
|
|
61
|
+
enumerable: true,
|
|
62
|
+
configurable: true
|
|
63
|
+
});
|
|
64
|
+
return UpdateForm;
|
|
65
|
+
}());
|
|
66
|
+
export { UpdateForm };
|
|
67
|
+
if (false) {
|
|
68
|
+
/** @type {?} */
|
|
69
|
+
UpdateForm.prototype.payload;
|
|
70
|
+
}
|
|
71
|
+
var UpdateFormDirty = /** @class */ (function () {
|
|
72
|
+
function UpdateFormDirty(payload) {
|
|
73
|
+
this.payload = payload;
|
|
74
|
+
}
|
|
75
|
+
Object.defineProperty(UpdateFormDirty, "type", {
|
|
76
|
+
get: /**
|
|
77
|
+
* @return {?}
|
|
78
|
+
*/
|
|
79
|
+
function () {
|
|
80
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
81
|
+
return '[Forms] Update Form Dirty';
|
|
82
|
+
},
|
|
83
|
+
enumerable: true,
|
|
84
|
+
configurable: true
|
|
85
|
+
});
|
|
86
|
+
return UpdateFormDirty;
|
|
87
|
+
}());
|
|
88
|
+
export { UpdateFormDirty };
|
|
89
|
+
if (false) {
|
|
90
|
+
/** @type {?} */
|
|
91
|
+
UpdateFormDirty.prototype.payload;
|
|
92
|
+
}
|
|
93
|
+
var SetFormDirty = /** @class */ (function () {
|
|
94
|
+
function SetFormDirty(payload) {
|
|
95
|
+
this.payload = payload;
|
|
96
|
+
}
|
|
97
|
+
Object.defineProperty(SetFormDirty, "type", {
|
|
98
|
+
get: /**
|
|
99
|
+
* @return {?}
|
|
100
|
+
*/
|
|
101
|
+
function () {
|
|
102
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
103
|
+
return '[Forms] Set Form Dirty';
|
|
104
|
+
},
|
|
105
|
+
enumerable: true,
|
|
106
|
+
configurable: true
|
|
107
|
+
});
|
|
108
|
+
return SetFormDirty;
|
|
109
|
+
}());
|
|
110
|
+
export { SetFormDirty };
|
|
111
|
+
if (false) {
|
|
112
|
+
/** @type {?} */
|
|
113
|
+
SetFormDirty.prototype.payload;
|
|
114
|
+
}
|
|
115
|
+
var SetFormPristine = /** @class */ (function () {
|
|
116
|
+
function SetFormPristine(payload) {
|
|
117
|
+
this.payload = payload;
|
|
118
|
+
}
|
|
119
|
+
Object.defineProperty(SetFormPristine, "type", {
|
|
120
|
+
get: /**
|
|
121
|
+
* @return {?}
|
|
122
|
+
*/
|
|
123
|
+
function () {
|
|
124
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
125
|
+
return '[Forms] Set Form Pristine';
|
|
126
|
+
},
|
|
127
|
+
enumerable: true,
|
|
128
|
+
configurable: true
|
|
129
|
+
});
|
|
130
|
+
return SetFormPristine;
|
|
131
|
+
}());
|
|
132
|
+
export { SetFormPristine };
|
|
133
|
+
if (false) {
|
|
134
|
+
/** @type {?} */
|
|
135
|
+
SetFormPristine.prototype.payload;
|
|
136
|
+
}
|
|
137
|
+
var UpdateFormErrors = /** @class */ (function () {
|
|
138
|
+
function UpdateFormErrors(payload) {
|
|
139
|
+
this.payload = payload;
|
|
140
|
+
}
|
|
141
|
+
Object.defineProperty(UpdateFormErrors, "type", {
|
|
142
|
+
get: /**
|
|
143
|
+
* @return {?}
|
|
144
|
+
*/
|
|
145
|
+
function () {
|
|
146
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
147
|
+
return '[Forms] Update Form Errors';
|
|
148
|
+
},
|
|
149
|
+
enumerable: true,
|
|
150
|
+
configurable: true
|
|
151
|
+
});
|
|
152
|
+
return UpdateFormErrors;
|
|
153
|
+
}());
|
|
154
|
+
export { UpdateFormErrors };
|
|
155
|
+
if (false) {
|
|
156
|
+
/** @type {?} */
|
|
157
|
+
UpdateFormErrors.prototype.payload;
|
|
158
|
+
}
|
|
159
|
+
var SetFormDisabled = /** @class */ (function () {
|
|
160
|
+
function SetFormDisabled(payload) {
|
|
161
|
+
this.payload = payload;
|
|
162
|
+
}
|
|
163
|
+
Object.defineProperty(SetFormDisabled, "type", {
|
|
164
|
+
get: /**
|
|
165
|
+
* @return {?}
|
|
166
|
+
*/
|
|
167
|
+
function () {
|
|
168
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
169
|
+
return '[Forms] Set Form Disabled';
|
|
170
|
+
},
|
|
171
|
+
enumerable: true,
|
|
172
|
+
configurable: true
|
|
173
|
+
});
|
|
174
|
+
return SetFormDisabled;
|
|
175
|
+
}());
|
|
176
|
+
export { SetFormDisabled };
|
|
177
|
+
if (false) {
|
|
178
|
+
/** @type {?} */
|
|
179
|
+
SetFormDisabled.prototype.payload;
|
|
180
|
+
}
|
|
181
|
+
var SetFormEnabled = /** @class */ (function () {
|
|
182
|
+
function SetFormEnabled(payload) {
|
|
183
|
+
this.payload = payload;
|
|
184
|
+
}
|
|
185
|
+
Object.defineProperty(SetFormEnabled, "type", {
|
|
186
|
+
get: /**
|
|
187
|
+
* @return {?}
|
|
188
|
+
*/
|
|
189
|
+
function () {
|
|
190
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
191
|
+
return '[Forms] Set Form Enabled';
|
|
192
|
+
},
|
|
193
|
+
enumerable: true,
|
|
194
|
+
configurable: true
|
|
195
|
+
});
|
|
196
|
+
return SetFormEnabled;
|
|
197
|
+
}());
|
|
198
|
+
export { SetFormEnabled };
|
|
199
|
+
if (false) {
|
|
200
|
+
/** @type {?} */
|
|
201
|
+
SetFormEnabled.prototype.payload;
|
|
202
|
+
}
|
|
203
|
+
var ResetForm = /** @class */ (function () {
|
|
204
|
+
function ResetForm(payload) {
|
|
205
|
+
this.payload = payload;
|
|
206
|
+
}
|
|
207
|
+
Object.defineProperty(ResetForm, "type", {
|
|
208
|
+
get: /**
|
|
209
|
+
* @return {?}
|
|
210
|
+
*/
|
|
211
|
+
function () {
|
|
212
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
213
|
+
return '[Forms] Reset Form';
|
|
214
|
+
},
|
|
215
|
+
enumerable: true,
|
|
216
|
+
configurable: true
|
|
217
|
+
});
|
|
218
|
+
return ResetForm;
|
|
219
|
+
}());
|
|
220
|
+
export { ResetForm };
|
|
221
|
+
if (false) {
|
|
222
|
+
/** @type {?} */
|
|
223
|
+
ResetForm.prototype.payload;
|
|
224
|
+
}
|
|
225
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZ3hzL2Zvcm0tcGx1Z2luLyIsInNvdXJjZXMiOlsic3JjL2FjdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBO0lBS0UsMEJBQ1MsT0FHTjtRQUhNLFlBQU8sR0FBUCxPQUFPLENBR2I7SUFDQSxDQUFDO0lBVEosc0JBQVcsd0JBQUk7Ozs7UUFBZjtZQUNFLHNJQUFzSTtZQUN0SSxPQUFPLDRCQUE0QixDQUFDO1FBQ3RDLENBQUM7OztPQUFBO0lBT0gsdUJBQUM7QUFBRCxDQUFDLEFBWEQsSUFXQzs7OztJQUxHLG1DQUdDOztBQUlMO0lBS0UseUJBQW1CLE9BQTREO1FBQTVELFlBQU8sR0FBUCxPQUFPLENBQXFEO0lBQUcsQ0FBQztJQUpuRixzQkFBVyx1QkFBSTs7OztRQUFmO1lBQ0Usc0lBQXNJO1lBQ3RJLE9BQU8sMkJBQTJCLENBQUM7UUFDckMsQ0FBQzs7O09BQUE7SUFFSCxzQkFBQztBQUFELENBQUMsQUFORCxJQU1DOzs7O0lBRGEsa0NBQW1FOztBQUdqRjtJQUtFLG9CQUNTLE9BTU47UUFOTSxZQUFPLEdBQVAsT0FBTyxDQU1iO0lBQ0EsQ0FBQztJQVpKLHNCQUFXLGtCQUFJOzs7O1FBQWY7WUFDRSxzSUFBc0k7WUFDdEksT0FBTyxxQkFBcUIsQ0FBQztRQUMvQixDQUFDOzs7T0FBQTtJQVVILGlCQUFDO0FBQUQsQ0FBQyxBQWRELElBY0M7Ozs7SUFSRyw2QkFNQzs7QUFJTDtJQUtFLHlCQUFtQixPQUFnRDtRQUFoRCxZQUFPLEdBQVAsT0FBTyxDQUF5QztJQUFHLENBQUM7SUFKdkUsc0JBQVcsdUJBQUk7Ozs7UUFBZjtZQUNFLHNJQUFzSTtZQUN0SSxPQUFPLDJCQUEyQixDQUFDO1FBQ3JDLENBQUM7OztPQUFBO0lBRUgsc0JBQUM7QUFBRCxDQUFDLEFBTkQsSUFNQzs7OztJQURhLGtDQUF1RDs7QUFHckU7SUFLRSxzQkFBbUIsT0FBZTtRQUFmLFlBQU8sR0FBUCxPQUFPLENBQVE7SUFBRyxDQUFDO0lBSnRDLHNCQUFXLG9CQUFJOzs7O1FBQWY7WUFDRSxzSUFBc0k7WUFDdEksT0FBTyx3QkFBd0IsQ0FBQztRQUNsQyxDQUFDOzs7T0FBQTtJQUVILG1CQUFDO0FBQUQsQ0FBQyxBQU5ELElBTUM7Ozs7SUFEYSwrQkFBc0I7O0FBR3BDO0lBS0UseUJBQW1CLE9BQWU7UUFBZixZQUFPLEdBQVAsT0FBTyxDQUFRO0lBQUcsQ0FBQztJQUp0QyxzQkFBVyx1QkFBSTs7OztRQUFmO1lBQ0Usc0lBQXNJO1lBQ3RJLE9BQU8sMkJBQTJCLENBQUM7UUFDckMsQ0FBQzs7O09BQUE7SUFFSCxzQkFBQztBQUFELENBQUMsQUFORCxJQU1DOzs7O0lBRGEsa0NBQXNCOztBQUdwQztJQUtFLDBCQUFtQixPQUFpRTtRQUFqRSxZQUFPLEdBQVAsT0FBTyxDQUEwRDtJQUFHLENBQUM7SUFKeEYsc0JBQVcsd0JBQUk7Ozs7UUFBZjtZQUNFLHNJQUFzSTtZQUN0SSxPQUFPLDRCQUE0QixDQUFDO1FBQ3RDLENBQUM7OztPQUFBO0lBRUgsdUJBQUM7QUFBRCxDQUFDLEFBTkQsSUFNQzs7OztJQURhLG1DQUF3RTs7QUFHdEY7SUFLRSx5QkFBbUIsT0FBZTtRQUFmLFlBQU8sR0FBUCxPQUFPLENBQVE7SUFBRyxDQUFDO0lBSnRDLHNCQUFXLHVCQUFJOzs7O1FBQWY7WUFDRSxzSUFBc0k7WUFDdEksT0FBTywyQkFBMkIsQ0FBQztRQUNyQyxDQUFDOzs7T0FBQTtJQUVILHNCQUFDO0FBQUQsQ0FBQyxBQU5ELElBTUM7Ozs7SUFEYSxrQ0FBc0I7O0FBR3BDO0lBS0Usd0JBQW1CLE9BQWU7UUFBZixZQUFPLEdBQVAsT0FBTyxDQUFRO0lBQUcsQ0FBQztJQUp0QyxzQkFBVyxzQkFBSTs7OztRQUFmO1lBQ0Usc0lBQXNJO1lBQ3RJLE9BQU8sMEJBQTBCLENBQUM7UUFDcEMsQ0FBQzs7O09BQUE7SUFFSCxxQkFBQztBQUFELENBQUMsQUFORCxJQU1DOzs7O0lBRGEsaUNBQXNCOztBQUdwQztJQUtFLG1CQUFtQixPQUFzQztRQUF0QyxZQUFPLEdBQVAsT0FBTyxDQUErQjtJQUFHLENBQUM7SUFKN0Qsc0JBQVcsaUJBQUk7Ozs7UUFBZjtZQUNFLHNJQUFzSTtZQUN0SSxPQUFPLG9CQUFvQixDQUFDO1FBQzlCLENBQUM7OztPQUFBO0lBRUgsZ0JBQUM7QUFBRCxDQUFDLEFBTkQsSUFNQzs7OztJQURhLDRCQUE2QyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBVcGRhdGVGb3JtU3RhdHVzIHtcbiAgc3RhdGljIGdldCB0eXBlKCkge1xuICAgIC8vIE5PVEU6IE5vdCBuZWNlc3NhcnkgdG8gZGVjbGFyZSB0aGUgdHlwZSBpbiB0aGlzIHdheSBpbiB5b3VyIGNvZGUuIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbmd4cy9zdG9yZS9wdWxsLzY0NCNpc3N1ZWNvbW1lbnQtNDM2MDAzMTM4XG4gICAgcmV0dXJuICdbRm9ybXNdIFVwZGF0ZSBGb3JtIFN0YXR1cyc7XG4gIH1cbiAgY29uc3RydWN0b3IoXG4gICAgcHVibGljIHBheWxvYWQ6IHtcbiAgICAgIHN0YXR1czogc3RyaW5nIHwgbnVsbDtcbiAgICAgIHBhdGg6IHN0cmluZztcbiAgICB9XG4gICkge31cbn1cblxuZXhwb3J0IGNsYXNzIFVwZGF0ZUZvcm1WYWx1ZSB7XG4gIHN0YXRpYyBnZXQgdHlwZSgpIHtcbiAgICAvLyBOT1RFOiBOb3QgbmVjZXNzYXJ5IHRvIGRlY2xhcmUgdGhlIHR5cGUgaW4gdGhpcyB3YXkgaW4geW91ciBjb2RlLiBTZWUgaHR0cHM6Ly9naXRodWIuY29tL25neHMvc3RvcmUvcHVsbC82NDQjaXNzdWVjb21tZW50LTQzNjAwMzEzOFxuICAgIHJldHVybiAnW0Zvcm1zXSBVcGRhdGUgRm9ybSBWYWx1ZSc7XG4gIH1cbiAgY29uc3RydWN0b3IocHVibGljIHBheWxvYWQ6IHsgdmFsdWU6IGFueTsgcGF0aDogc3RyaW5nOyBwcm9wZXJ0eVBhdGg/OiBzdHJpbmcgfSkge31cbn1cblxuZXhwb3J0IGNsYXNzIFVwZGF0ZUZvcm0ge1xuICBzdGF0aWMgZ2V0IHR5cGUoKSB7XG4gICAgLy8gTk9URTogTm90IG5lY2Vzc2FyeSB0byBkZWNsYXJlIHRoZSB0eXBlIGluIHRoaXMgd2F5IGluIHlvdXIgY29kZS4gU2VlIGh0dHBzOi8vZ2l0aHViLmNvbS9uZ3hzL3N0b3JlL3B1bGwvNjQ0I2lzc3VlY29tbWVudC00MzYwMDMxMzhcbiAgICByZXR1cm4gJ1tGb3Jtc10gVXBkYXRlIEZvcm0nO1xuICB9XG4gIGNvbnN0cnVjdG9yKFxuICAgIHB1YmxpYyBwYXlsb2FkOiB7XG4gICAgICB2YWx1ZTogYW55O1xuICAgICAgZXJyb3JzOiB7IFtrOiBzdHJpbmddOiBzdHJpbmcgfSB8IG51bGw7XG4gICAgICBkaXJ0eTogYm9vbGVhbiB8IG51bGw7XG4gICAgICBzdGF0dXM6IHN0cmluZyB8IG51bGw7XG4gICAgICBwYXRoOiBzdHJpbmc7XG4gICAgfVxuICApIHt9XG59XG5cbmV4cG9ydCBjbGFzcyBVcGRhdGVGb3JtRGlydHkge1xuICBzdGF0aWMgZ2V0IHR5cGUoKSB7XG4gICAgLy8gTk9URTogTm90IG5lY2Vzc2FyeSB0byBkZWNsYXJlIHRoZSB0eXBlIGluIHRoaXMgd2F5IGluIHlvdXIgY29kZS4gU2VlIGh0dHBzOi8vZ2l0aHViLmNvbS9uZ3hzL3N0b3JlL3B1bGwvNjQ0I2lzc3VlY29tbWVudC00MzYwMDMxMzhcbiAgICByZXR1cm4gJ1tGb3Jtc10gVXBkYXRlIEZvcm0gRGlydHknO1xuICB9XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBwYXlsb2FkOiB7IGRpcnR5OiBib29sZWFuIHwgbnVsbDsgcGF0aDogc3RyaW5nIH0pIHt9XG59XG5cbmV4cG9ydCBjbGFzcyBTZXRGb3JtRGlydHkge1xuICBzdGF0aWMgZ2V0IHR5cGUoKSB7XG4gICAgLy8gTk9URTogTm90IG5lY2Vzc2FyeSB0byBkZWNsYXJlIHRoZSB0eXBlIGluIHRoaXMgd2F5IGluIHlvdXIgY29kZS4gU2VlIGh0dHBzOi8vZ2l0aHViLmNvbS9uZ3hzL3N0b3JlL3B1bGwvNjQ0I2lzc3VlY29tbWVudC00MzYwMDMxMzhcbiAgICByZXR1cm4gJ1tGb3Jtc10gU2V0IEZvcm0gRGlydHknO1xuICB9XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBwYXlsb2FkOiBzdHJpbmcpIHt9XG59XG5cbmV4cG9ydCBjbGFzcyBTZXRGb3JtUHJpc3RpbmUge1xuICBzdGF0aWMgZ2V0IHR5cGUoKSB7XG4gICAgLy8gTk9URTogTm90IG5lY2Vzc2FyeSB0byBkZWNsYXJlIHRoZSB0eXBlIGluIHRoaXMgd2F5IGluIHlvdXIgY29kZS4gU2VlIGh0dHBzOi8vZ2l0aHViLmNvbS9uZ3hzL3N0b3JlL3B1bGwvNjQ0I2lzc3VlY29tbWVudC00MzYwMDMxMzhcbiAgICByZXR1cm4gJ1tGb3Jtc10gU2V0IEZvcm0gUHJpc3RpbmUnO1xuICB9XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBwYXlsb2FkOiBzdHJpbmcpIHt9XG59XG5cbmV4cG9ydCBjbGFzcyBVcGRhdGVGb3JtRXJyb3JzIHtcbiAgc3RhdGljIGdldCB0eXBlKCkge1xuICAgIC8vIE5PVEU6IE5vdCBuZWNlc3NhcnkgdG8gZGVjbGFyZSB0aGUgdHlwZSBpbiB0aGlzIHdheSBpbiB5b3VyIGNvZGUuIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbmd4cy9zdG9yZS9wdWxsLzY0NCNpc3N1ZWNvbW1lbnQtNDM2MDAzMTM4XG4gICAgcmV0dXJuICdbRm9ybXNdIFVwZGF0ZSBGb3JtIEVycm9ycyc7XG4gIH1cbiAgY29uc3RydWN0b3IocHVibGljIHBheWxvYWQ6IHsgZXJyb3JzOiB7IFtrOiBzdHJpbmddOiBzdHJpbmcgfSB8IG51bGw7IHBhdGg6IHN0cmluZyB9KSB7fVxufVxuXG5leHBvcnQgY2xhc3MgU2V0Rm9ybURpc2FibGVkIHtcbiAgc3RhdGljIGdldCB0eXBlKCkge1xuICAgIC8vIE5PVEU6IE5vdCBuZWNlc3NhcnkgdG8gZGVjbGFyZSB0aGUgdHlwZSBpbiB0aGlzIHdheSBpbiB5b3VyIGNvZGUuIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbmd4cy9zdG9yZS9wdWxsLzY0NCNpc3N1ZWNvbW1lbnQtNDM2MDAzMTM4XG4gICAgcmV0dXJuICdbRm9ybXNdIFNldCBGb3JtIERpc2FibGVkJztcbiAgfVxuICBjb25zdHJ1Y3RvcihwdWJsaWMgcGF5bG9hZDogc3RyaW5nKSB7fVxufVxuXG5leHBvcnQgY2xhc3MgU2V0Rm9ybUVuYWJsZWQge1xuICBzdGF0aWMgZ2V0IHR5cGUoKSB7XG4gICAgLy8gTk9URTogTm90IG5lY2Vzc2FyeSB0byBkZWNsYXJlIHRoZSB0eXBlIGluIHRoaXMgd2F5IGluIHlvdXIgY29kZS4gU2VlIGh0dHBzOi8vZ2l0aHViLmNvbS9uZ3hzL3N0b3JlL3B1bGwvNjQ0I2lzc3VlY29tbWVudC00MzYwMDMxMzhcbiAgICByZXR1cm4gJ1tGb3Jtc10gU2V0IEZvcm0gRW5hYmxlZCc7XG4gIH1cbiAgY29uc3RydWN0b3IocHVibGljIHBheWxvYWQ6IHN0cmluZykge31cbn1cblxuZXhwb3J0IGNsYXNzIFJlc2V0Rm9ybSB7XG4gIHN0YXRpYyBnZXQgdHlwZSgpIHtcbiAgICAvLyBOT1RFOiBOb3QgbmVjZXNzYXJ5IHRvIGRlY2xhcmUgdGhlIHR5cGUgaW4gdGhpcyB3YXkgaW4geW91ciBjb2RlLiBTZWUgaHR0cHM6Ly9naXRodWIuY29tL25neHMvc3RvcmUvcHVsbC82NDQjaXNzdWVjb21tZW50LTQzNjAwMzEzOFxuICAgIHJldHVybiAnW0Zvcm1zXSBSZXNldCBGb3JtJztcbiAgfVxuICBjb25zdHJ1Y3RvcihwdWJsaWMgcGF5bG9hZDogeyBwYXRoOiBzdHJpbmc7IHZhbHVlPzogYW55IH0pIHt9XG59XG4iXX0=
|