@ngxs/form-plugin 3.7.4 → 3.7.5-dev.master-887cc32
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 +3 -3
- 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/esm2015/src/actions.js
CHANGED
|
@@ -1,195 +1,195 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
4
|
-
*/
|
|
5
|
-
export class UpdateFormStatus {
|
|
6
|
-
/**
|
|
7
|
-
* @param {?} payload
|
|
8
|
-
*/
|
|
9
|
-
constructor(payload) {
|
|
10
|
-
this.payload = payload;
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* @return {?}
|
|
14
|
-
*/
|
|
15
|
-
static get type() {
|
|
16
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
17
|
-
return '[Forms] Update Form Status';
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
if (false) {
|
|
21
|
-
/** @type {?} */
|
|
22
|
-
UpdateFormStatus.prototype.payload;
|
|
23
|
-
}
|
|
24
|
-
export class UpdateFormValue {
|
|
25
|
-
/**
|
|
26
|
-
* @param {?} payload
|
|
27
|
-
*/
|
|
28
|
-
constructor(payload) {
|
|
29
|
-
this.payload = payload;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* @return {?}
|
|
33
|
-
*/
|
|
34
|
-
static get type() {
|
|
35
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
36
|
-
return '[Forms] Update Form Value';
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
if (false) {
|
|
40
|
-
/** @type {?} */
|
|
41
|
-
UpdateFormValue.prototype.payload;
|
|
42
|
-
}
|
|
43
|
-
export class UpdateForm {
|
|
44
|
-
/**
|
|
45
|
-
* @param {?} payload
|
|
46
|
-
*/
|
|
47
|
-
constructor(payload) {
|
|
48
|
-
this.payload = payload;
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* @return {?}
|
|
52
|
-
*/
|
|
53
|
-
static get type() {
|
|
54
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
55
|
-
return '[Forms] Update Form';
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
if (false) {
|
|
59
|
-
/** @type {?} */
|
|
60
|
-
UpdateForm.prototype.payload;
|
|
61
|
-
}
|
|
62
|
-
export class UpdateFormDirty {
|
|
63
|
-
/**
|
|
64
|
-
* @param {?} payload
|
|
65
|
-
*/
|
|
66
|
-
constructor(payload) {
|
|
67
|
-
this.payload = payload;
|
|
68
|
-
}
|
|
69
|
-
/**
|
|
70
|
-
* @return {?}
|
|
71
|
-
*/
|
|
72
|
-
static get type() {
|
|
73
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
74
|
-
return '[Forms] Update Form Dirty';
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
if (false) {
|
|
78
|
-
/** @type {?} */
|
|
79
|
-
UpdateFormDirty.prototype.payload;
|
|
80
|
-
}
|
|
81
|
-
export class SetFormDirty {
|
|
82
|
-
/**
|
|
83
|
-
* @param {?} payload
|
|
84
|
-
*/
|
|
85
|
-
constructor(payload) {
|
|
86
|
-
this.payload = payload;
|
|
87
|
-
}
|
|
88
|
-
/**
|
|
89
|
-
* @return {?}
|
|
90
|
-
*/
|
|
91
|
-
static get type() {
|
|
92
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
93
|
-
return '[Forms] Set Form Dirty';
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
if (false) {
|
|
97
|
-
/** @type {?} */
|
|
98
|
-
SetFormDirty.prototype.payload;
|
|
99
|
-
}
|
|
100
|
-
export class SetFormPristine {
|
|
101
|
-
/**
|
|
102
|
-
* @param {?} payload
|
|
103
|
-
*/
|
|
104
|
-
constructor(payload) {
|
|
105
|
-
this.payload = payload;
|
|
106
|
-
}
|
|
107
|
-
/**
|
|
108
|
-
* @return {?}
|
|
109
|
-
*/
|
|
110
|
-
static get type() {
|
|
111
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
112
|
-
return '[Forms] Set Form Pristine';
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
if (false) {
|
|
116
|
-
/** @type {?} */
|
|
117
|
-
SetFormPristine.prototype.payload;
|
|
118
|
-
}
|
|
119
|
-
export class UpdateFormErrors {
|
|
120
|
-
/**
|
|
121
|
-
* @param {?} payload
|
|
122
|
-
*/
|
|
123
|
-
constructor(payload) {
|
|
124
|
-
this.payload = payload;
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* @return {?}
|
|
128
|
-
*/
|
|
129
|
-
static get type() {
|
|
130
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
131
|
-
return '[Forms] Update Form Errors';
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
if (false) {
|
|
135
|
-
/** @type {?} */
|
|
136
|
-
UpdateFormErrors.prototype.payload;
|
|
137
|
-
}
|
|
138
|
-
export class SetFormDisabled {
|
|
139
|
-
/**
|
|
140
|
-
* @param {?} payload
|
|
141
|
-
*/
|
|
142
|
-
constructor(payload) {
|
|
143
|
-
this.payload = payload;
|
|
144
|
-
}
|
|
145
|
-
/**
|
|
146
|
-
* @return {?}
|
|
147
|
-
*/
|
|
148
|
-
static get type() {
|
|
149
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
150
|
-
return '[Forms] Set Form Disabled';
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
if (false) {
|
|
154
|
-
/** @type {?} */
|
|
155
|
-
SetFormDisabled.prototype.payload;
|
|
156
|
-
}
|
|
157
|
-
export class SetFormEnabled {
|
|
158
|
-
/**
|
|
159
|
-
* @param {?} payload
|
|
160
|
-
*/
|
|
161
|
-
constructor(payload) {
|
|
162
|
-
this.payload = payload;
|
|
163
|
-
}
|
|
164
|
-
/**
|
|
165
|
-
* @return {?}
|
|
166
|
-
*/
|
|
167
|
-
static get type() {
|
|
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 Enabled';
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
if (false) {
|
|
173
|
-
/** @type {?} */
|
|
174
|
-
SetFormEnabled.prototype.payload;
|
|
175
|
-
}
|
|
176
|
-
export class ResetForm {
|
|
177
|
-
/**
|
|
178
|
-
* @param {?} payload
|
|
179
|
-
*/
|
|
180
|
-
constructor(payload) {
|
|
181
|
-
this.payload = payload;
|
|
182
|
-
}
|
|
183
|
-
/**
|
|
184
|
-
* @return {?}
|
|
185
|
-
*/
|
|
186
|
-
static get type() {
|
|
187
|
-
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
188
|
-
return '[Forms] Reset Form';
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
if (false) {
|
|
192
|
-
/** @type {?} */
|
|
193
|
-
ResetForm.prototype.payload;
|
|
194
|
-
}
|
|
195
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview added by tsickle
|
|
3
|
+
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
4
|
+
*/
|
|
5
|
+
export class UpdateFormStatus {
|
|
6
|
+
/**
|
|
7
|
+
* @param {?} payload
|
|
8
|
+
*/
|
|
9
|
+
constructor(payload) {
|
|
10
|
+
this.payload = payload;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @return {?}
|
|
14
|
+
*/
|
|
15
|
+
static get type() {
|
|
16
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
17
|
+
return '[Forms] Update Form Status';
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
if (false) {
|
|
21
|
+
/** @type {?} */
|
|
22
|
+
UpdateFormStatus.prototype.payload;
|
|
23
|
+
}
|
|
24
|
+
export class UpdateFormValue {
|
|
25
|
+
/**
|
|
26
|
+
* @param {?} payload
|
|
27
|
+
*/
|
|
28
|
+
constructor(payload) {
|
|
29
|
+
this.payload = payload;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @return {?}
|
|
33
|
+
*/
|
|
34
|
+
static get type() {
|
|
35
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
36
|
+
return '[Forms] Update Form Value';
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
if (false) {
|
|
40
|
+
/** @type {?} */
|
|
41
|
+
UpdateFormValue.prototype.payload;
|
|
42
|
+
}
|
|
43
|
+
export class UpdateForm {
|
|
44
|
+
/**
|
|
45
|
+
* @param {?} payload
|
|
46
|
+
*/
|
|
47
|
+
constructor(payload) {
|
|
48
|
+
this.payload = payload;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* @return {?}
|
|
52
|
+
*/
|
|
53
|
+
static get type() {
|
|
54
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
55
|
+
return '[Forms] Update Form';
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
if (false) {
|
|
59
|
+
/** @type {?} */
|
|
60
|
+
UpdateForm.prototype.payload;
|
|
61
|
+
}
|
|
62
|
+
export class UpdateFormDirty {
|
|
63
|
+
/**
|
|
64
|
+
* @param {?} payload
|
|
65
|
+
*/
|
|
66
|
+
constructor(payload) {
|
|
67
|
+
this.payload = payload;
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* @return {?}
|
|
71
|
+
*/
|
|
72
|
+
static get type() {
|
|
73
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
74
|
+
return '[Forms] Update Form Dirty';
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
if (false) {
|
|
78
|
+
/** @type {?} */
|
|
79
|
+
UpdateFormDirty.prototype.payload;
|
|
80
|
+
}
|
|
81
|
+
export class SetFormDirty {
|
|
82
|
+
/**
|
|
83
|
+
* @param {?} payload
|
|
84
|
+
*/
|
|
85
|
+
constructor(payload) {
|
|
86
|
+
this.payload = payload;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* @return {?}
|
|
90
|
+
*/
|
|
91
|
+
static get type() {
|
|
92
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
93
|
+
return '[Forms] Set Form Dirty';
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
if (false) {
|
|
97
|
+
/** @type {?} */
|
|
98
|
+
SetFormDirty.prototype.payload;
|
|
99
|
+
}
|
|
100
|
+
export class SetFormPristine {
|
|
101
|
+
/**
|
|
102
|
+
* @param {?} payload
|
|
103
|
+
*/
|
|
104
|
+
constructor(payload) {
|
|
105
|
+
this.payload = payload;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* @return {?}
|
|
109
|
+
*/
|
|
110
|
+
static get type() {
|
|
111
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
112
|
+
return '[Forms] Set Form Pristine';
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
if (false) {
|
|
116
|
+
/** @type {?} */
|
|
117
|
+
SetFormPristine.prototype.payload;
|
|
118
|
+
}
|
|
119
|
+
export class UpdateFormErrors {
|
|
120
|
+
/**
|
|
121
|
+
* @param {?} payload
|
|
122
|
+
*/
|
|
123
|
+
constructor(payload) {
|
|
124
|
+
this.payload = payload;
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* @return {?}
|
|
128
|
+
*/
|
|
129
|
+
static get type() {
|
|
130
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
131
|
+
return '[Forms] Update Form Errors';
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
if (false) {
|
|
135
|
+
/** @type {?} */
|
|
136
|
+
UpdateFormErrors.prototype.payload;
|
|
137
|
+
}
|
|
138
|
+
export class SetFormDisabled {
|
|
139
|
+
/**
|
|
140
|
+
* @param {?} payload
|
|
141
|
+
*/
|
|
142
|
+
constructor(payload) {
|
|
143
|
+
this.payload = payload;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* @return {?}
|
|
147
|
+
*/
|
|
148
|
+
static get type() {
|
|
149
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
150
|
+
return '[Forms] Set Form Disabled';
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
if (false) {
|
|
154
|
+
/** @type {?} */
|
|
155
|
+
SetFormDisabled.prototype.payload;
|
|
156
|
+
}
|
|
157
|
+
export class SetFormEnabled {
|
|
158
|
+
/**
|
|
159
|
+
* @param {?} payload
|
|
160
|
+
*/
|
|
161
|
+
constructor(payload) {
|
|
162
|
+
this.payload = payload;
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* @return {?}
|
|
166
|
+
*/
|
|
167
|
+
static get type() {
|
|
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 Enabled';
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
if (false) {
|
|
173
|
+
/** @type {?} */
|
|
174
|
+
SetFormEnabled.prototype.payload;
|
|
175
|
+
}
|
|
176
|
+
export class ResetForm {
|
|
177
|
+
/**
|
|
178
|
+
* @param {?} payload
|
|
179
|
+
*/
|
|
180
|
+
constructor(payload) {
|
|
181
|
+
this.payload = payload;
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* @return {?}
|
|
185
|
+
*/
|
|
186
|
+
static get type() {
|
|
187
|
+
// NOTE: Not necessary to declare the type in this way in your code. See https://github.com/ngxs/store/pull/644#issuecomment-436003138
|
|
188
|
+
return '[Forms] Reset Form';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
if (false) {
|
|
192
|
+
/** @type {?} */
|
|
193
|
+
ResetForm.prototype.payload;
|
|
194
|
+
}
|
|
195
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZ3hzL2Zvcm0tcGx1Z2luLyIsInNvdXJjZXMiOlsic3JjL2FjdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLE1BQU0sT0FBTyxnQkFBZ0I7Ozs7SUFLM0IsWUFDUyxPQUdOO1FBSE0sWUFBTyxHQUFQLE9BQU8sQ0FHYjtJQUNBLENBQUM7Ozs7SUFUSixNQUFNLEtBQUssSUFBSTtRQUNiLHNJQUFzSTtRQUN0SSxPQUFPLDRCQUE0QixDQUFDO0lBQ3RDLENBQUM7Q0FPRjs7O0lBTEcsbUNBR0M7O0FBSUwsTUFBTSxPQUFPLGVBQWU7Ozs7SUFLMUIsWUFBbUIsT0FBNEQ7UUFBNUQsWUFBTyxHQUFQLE9BQU8sQ0FBcUQ7SUFBRyxDQUFDOzs7O0lBSm5GLE1BQU0sS0FBSyxJQUFJO1FBQ2Isc0lBQXNJO1FBQ3RJLE9BQU8sMkJBQTJCLENBQUM7SUFDckMsQ0FBQztDQUVGOzs7SUFEYSxrQ0FBbUU7O0FBR2pGLE1BQU0sT0FBTyxVQUFVOzs7O0lBS3JCLFlBQ1MsT0FNTjtRQU5NLFlBQU8sR0FBUCxPQUFPLENBTWI7SUFDQSxDQUFDOzs7O0lBWkosTUFBTSxLQUFLLElBQUk7UUFDYixzSUFBc0k7UUFDdEksT0FBTyxxQkFBcUIsQ0FBQztJQUMvQixDQUFDO0NBVUY7OztJQVJHLDZCQU1DOztBQUlMLE1BQU0sT0FBTyxlQUFlOzs7O0lBSzFCLFlBQW1CLE9BQWdEO1FBQWhELFlBQU8sR0FBUCxPQUFPLENBQXlDO0lBQUcsQ0FBQzs7OztJQUp2RSxNQUFNLEtBQUssSUFBSTtRQUNiLHNJQUFzSTtRQUN0SSxPQUFPLDJCQUEyQixDQUFDO0lBQ3JDLENBQUM7Q0FFRjs7O0lBRGEsa0NBQXVEOztBQUdyRSxNQUFNLE9BQU8sWUFBWTs7OztJQUt2QixZQUFtQixPQUFlO1FBQWYsWUFBTyxHQUFQLE9BQU8sQ0FBUTtJQUFHLENBQUM7Ozs7SUFKdEMsTUFBTSxLQUFLLElBQUk7UUFDYixzSUFBc0k7UUFDdEksT0FBTyx3QkFBd0IsQ0FBQztJQUNsQyxDQUFDO0NBRUY7OztJQURhLCtCQUFzQjs7QUFHcEMsTUFBTSxPQUFPLGVBQWU7Ozs7SUFLMUIsWUFBbUIsT0FBZTtRQUFmLFlBQU8sR0FBUCxPQUFPLENBQVE7SUFBRyxDQUFDOzs7O0lBSnRDLE1BQU0sS0FBSyxJQUFJO1FBQ2Isc0lBQXNJO1FBQ3RJLE9BQU8sMkJBQTJCLENBQUM7SUFDckMsQ0FBQztDQUVGOzs7SUFEYSxrQ0FBc0I7O0FBR3BDLE1BQU0sT0FBTyxnQkFBZ0I7Ozs7SUFLM0IsWUFBbUIsT0FBaUU7UUFBakUsWUFBTyxHQUFQLE9BQU8sQ0FBMEQ7SUFBRyxDQUFDOzs7O0lBSnhGLE1BQU0sS0FBSyxJQUFJO1FBQ2Isc0lBQXNJO1FBQ3RJLE9BQU8sNEJBQTRCLENBQUM7SUFDdEMsQ0FBQztDQUVGOzs7SUFEYSxtQ0FBd0U7O0FBR3RGLE1BQU0sT0FBTyxlQUFlOzs7O0lBSzFCLFlBQW1CLE9BQWU7UUFBZixZQUFPLEdBQVAsT0FBTyxDQUFRO0lBQUcsQ0FBQzs7OztJQUp0QyxNQUFNLEtBQUssSUFBSTtRQUNiLHNJQUFzSTtRQUN0SSxPQUFPLDJCQUEyQixDQUFDO0lBQ3JDLENBQUM7Q0FFRjs7O0lBRGEsa0NBQXNCOztBQUdwQyxNQUFNLE9BQU8sY0FBYzs7OztJQUt6QixZQUFtQixPQUFlO1FBQWYsWUFBTyxHQUFQLE9BQU8sQ0FBUTtJQUFHLENBQUM7Ozs7SUFKdEMsTUFBTSxLQUFLLElBQUk7UUFDYixzSUFBc0k7UUFDdEksT0FBTywwQkFBMEIsQ0FBQztJQUNwQyxDQUFDO0NBRUY7OztJQURhLGlDQUFzQjs7QUFHcEMsTUFBTSxPQUFPLFNBQVM7Ozs7SUFLcEIsWUFBbUIsT0FBc0M7UUFBdEMsWUFBTyxHQUFQLE9BQU8sQ0FBK0I7SUFBRyxDQUFDOzs7O0lBSjdELE1BQU0sS0FBSyxJQUFJO1FBQ2Isc0lBQXNJO1FBQ3RJLE9BQU8sb0JBQW9CLENBQUM7SUFDOUIsQ0FBQztDQUVGOzs7SUFEYSw0QkFBNkMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY2xhc3MgVXBkYXRlRm9ybVN0YXR1cyB7XG4gIHN0YXRpYyBnZXQgdHlwZSgpIHtcbiAgICAvLyBOT1RFOiBOb3QgbmVjZXNzYXJ5IHRvIGRlY2xhcmUgdGhlIHR5cGUgaW4gdGhpcyB3YXkgaW4geW91ciBjb2RlLiBTZWUgaHR0cHM6Ly9naXRodWIuY29tL25neHMvc3RvcmUvcHVsbC82NDQjaXNzdWVjb21tZW50LTQzNjAwMzEzOFxuICAgIHJldHVybiAnW0Zvcm1zXSBVcGRhdGUgRm9ybSBTdGF0dXMnO1xuICB9XG4gIGNvbnN0cnVjdG9yKFxuICAgIHB1YmxpYyBwYXlsb2FkOiB7XG4gICAgICBzdGF0dXM6IHN0cmluZyB8IG51bGw7XG4gICAgICBwYXRoOiBzdHJpbmc7XG4gICAgfVxuICApIHt9XG59XG5cbmV4cG9ydCBjbGFzcyBVcGRhdGVGb3JtVmFsdWUge1xuICBzdGF0aWMgZ2V0IHR5cGUoKSB7XG4gICAgLy8gTk9URTogTm90IG5lY2Vzc2FyeSB0byBkZWNsYXJlIHRoZSB0eXBlIGluIHRoaXMgd2F5IGluIHlvdXIgY29kZS4gU2VlIGh0dHBzOi8vZ2l0aHViLmNvbS9uZ3hzL3N0b3JlL3B1bGwvNjQ0I2lzc3VlY29tbWVudC00MzYwMDMxMzhcbiAgICByZXR1cm4gJ1tGb3Jtc10gVXBkYXRlIEZvcm0gVmFsdWUnO1xuICB9XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBwYXlsb2FkOiB7IHZhbHVlOiBhbnk7IHBhdGg6IHN0cmluZzsgcHJvcGVydHlQYXRoPzogc3RyaW5nIH0pIHt9XG59XG5cbmV4cG9ydCBjbGFzcyBVcGRhdGVGb3JtIHtcbiAgc3RhdGljIGdldCB0eXBlKCkge1xuICAgIC8vIE5PVEU6IE5vdCBuZWNlc3NhcnkgdG8gZGVjbGFyZSB0aGUgdHlwZSBpbiB0aGlzIHdheSBpbiB5b3VyIGNvZGUuIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbmd4cy9zdG9yZS9wdWxsLzY0NCNpc3N1ZWNvbW1lbnQtNDM2MDAzMTM4XG4gICAgcmV0dXJuICdbRm9ybXNdIFVwZGF0ZSBGb3JtJztcbiAgfVxuICBjb25zdHJ1Y3RvcihcbiAgICBwdWJsaWMgcGF5bG9hZDoge1xuICAgICAgdmFsdWU6IGFueTtcbiAgICAgIGVycm9yczogeyBbazogc3RyaW5nXTogc3RyaW5nIH0gfCBudWxsO1xuICAgICAgZGlydHk6IGJvb2xlYW4gfCBudWxsO1xuICAgICAgc3RhdHVzOiBzdHJpbmcgfCBudWxsO1xuICAgICAgcGF0aDogc3RyaW5nO1xuICAgIH1cbiAgKSB7fVxufVxuXG5leHBvcnQgY2xhc3MgVXBkYXRlRm9ybURpcnR5IHtcbiAgc3RhdGljIGdldCB0eXBlKCkge1xuICAgIC8vIE5PVEU6IE5vdCBuZWNlc3NhcnkgdG8gZGVjbGFyZSB0aGUgdHlwZSBpbiB0aGlzIHdheSBpbiB5b3VyIGNvZGUuIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbmd4cy9zdG9yZS9wdWxsLzY0NCNpc3N1ZWNvbW1lbnQtNDM2MDAzMTM4XG4gICAgcmV0dXJuICdbRm9ybXNdIFVwZGF0ZSBGb3JtIERpcnR5JztcbiAgfVxuICBjb25zdHJ1Y3RvcihwdWJsaWMgcGF5bG9hZDogeyBkaXJ0eTogYm9vbGVhbiB8IG51bGw7IHBhdGg6IHN0cmluZyB9KSB7fVxufVxuXG5leHBvcnQgY2xhc3MgU2V0Rm9ybURpcnR5IHtcbiAgc3RhdGljIGdldCB0eXBlKCkge1xuICAgIC8vIE5PVEU6IE5vdCBuZWNlc3NhcnkgdG8gZGVjbGFyZSB0aGUgdHlwZSBpbiB0aGlzIHdheSBpbiB5b3VyIGNvZGUuIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbmd4cy9zdG9yZS9wdWxsLzY0NCNpc3N1ZWNvbW1lbnQtNDM2MDAzMTM4XG4gICAgcmV0dXJuICdbRm9ybXNdIFNldCBGb3JtIERpcnR5JztcbiAgfVxuICBjb25zdHJ1Y3RvcihwdWJsaWMgcGF5bG9hZDogc3RyaW5nKSB7fVxufVxuXG5leHBvcnQgY2xhc3MgU2V0Rm9ybVByaXN0aW5lIHtcbiAgc3RhdGljIGdldCB0eXBlKCkge1xuICAgIC8vIE5PVEU6IE5vdCBuZWNlc3NhcnkgdG8gZGVjbGFyZSB0aGUgdHlwZSBpbiB0aGlzIHdheSBpbiB5b3VyIGNvZGUuIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbmd4cy9zdG9yZS9wdWxsLzY0NCNpc3N1ZWNvbW1lbnQtNDM2MDAzMTM4XG4gICAgcmV0dXJuICdbRm9ybXNdIFNldCBGb3JtIFByaXN0aW5lJztcbiAgfVxuICBjb25zdHJ1Y3RvcihwdWJsaWMgcGF5bG9hZDogc3RyaW5nKSB7fVxufVxuXG5leHBvcnQgY2xhc3MgVXBkYXRlRm9ybUVycm9ycyB7XG4gIHN0YXRpYyBnZXQgdHlwZSgpIHtcbiAgICAvLyBOT1RFOiBOb3QgbmVjZXNzYXJ5IHRvIGRlY2xhcmUgdGhlIHR5cGUgaW4gdGhpcyB3YXkgaW4geW91ciBjb2RlLiBTZWUgaHR0cHM6Ly9naXRodWIuY29tL25neHMvc3RvcmUvcHVsbC82NDQjaXNzdWVjb21tZW50LTQzNjAwMzEzOFxuICAgIHJldHVybiAnW0Zvcm1zXSBVcGRhdGUgRm9ybSBFcnJvcnMnO1xuICB9XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBwYXlsb2FkOiB7IGVycm9yczogeyBbazogc3RyaW5nXTogc3RyaW5nIH0gfCBudWxsOyBwYXRoOiBzdHJpbmcgfSkge31cbn1cblxuZXhwb3J0IGNsYXNzIFNldEZvcm1EaXNhYmxlZCB7XG4gIHN0YXRpYyBnZXQgdHlwZSgpIHtcbiAgICAvLyBOT1RFOiBOb3QgbmVjZXNzYXJ5IHRvIGRlY2xhcmUgdGhlIHR5cGUgaW4gdGhpcyB3YXkgaW4geW91ciBjb2RlLiBTZWUgaHR0cHM6Ly9naXRodWIuY29tL25neHMvc3RvcmUvcHVsbC82NDQjaXNzdWVjb21tZW50LTQzNjAwMzEzOFxuICAgIHJldHVybiAnW0Zvcm1zXSBTZXQgRm9ybSBEaXNhYmxlZCc7XG4gIH1cbiAgY29uc3RydWN0b3IocHVibGljIHBheWxvYWQ6IHN0cmluZykge31cbn1cblxuZXhwb3J0IGNsYXNzIFNldEZvcm1FbmFibGVkIHtcbiAgc3RhdGljIGdldCB0eXBlKCkge1xuICAgIC8vIE5PVEU6IE5vdCBuZWNlc3NhcnkgdG8gZGVjbGFyZSB0aGUgdHlwZSBpbiB0aGlzIHdheSBpbiB5b3VyIGNvZGUuIFNlZSBodHRwczovL2dpdGh1Yi5jb20vbmd4cy9zdG9yZS9wdWxsLzY0NCNpc3N1ZWNvbW1lbnQtNDM2MDAzMTM4XG4gICAgcmV0dXJuICdbRm9ybXNdIFNldCBGb3JtIEVuYWJsZWQnO1xuICB9XG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBwYXlsb2FkOiBzdHJpbmcpIHt9XG59XG5cbmV4cG9ydCBjbGFzcyBSZXNldEZvcm0ge1xuICBzdGF0aWMgZ2V0IHR5cGUoKSB7XG4gICAgLy8gTk9URTogTm90IG5lY2Vzc2FyeSB0byBkZWNsYXJlIHRoZSB0eXBlIGluIHRoaXMgd2F5IGluIHlvdXIgY29kZS4gU2VlIGh0dHBzOi8vZ2l0aHViLmNvbS9uZ3hzL3N0b3JlL3B1bGwvNjQ0I2lzc3VlY29tbWVudC00MzYwMDMxMzhcbiAgICByZXR1cm4gJ1tGb3Jtc10gUmVzZXQgRm9ybSc7XG4gIH1cbiAgY29uc3RydWN0b3IocHVibGljIHBheWxvYWQ6IHsgcGF0aDogc3RyaW5nOyB2YWx1ZT86IGFueSB9KSB7fVxufVxuIl19
|