@gravitee/ui-particles-angular 7.22.1-apim-1416-enable-disable-form-70f7ec2 → 7.22.1
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/esm2020/lib/gio-form-json-schema/type-component/array-type.component.mjs +7 -38
- package/fesm2015/gravitee-ui-particles-angular.mjs +6 -37
- package/fesm2015/gravitee-ui-particles-angular.mjs.map +1 -1
- package/fesm2020/gravitee-ui-particles-angular.mjs +6 -36
- package/fesm2020/gravitee-ui-particles-angular.mjs.map +1 -1
- package/lib/gio-form-json-schema/type-component/array-type.component.d.ts +1 -17
- package/package.json +1 -1
|
@@ -15,49 +15,18 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { Component } from '@angular/core';
|
|
17
17
|
import { FieldArrayType } from '@ngx-formly/core';
|
|
18
|
-
import { Subject } from 'rxjs';
|
|
19
18
|
import * as i0 from "@angular/core";
|
|
20
19
|
import * as i1 from "@angular/material/button";
|
|
21
20
|
import * as i2 from "@angular/material/icon";
|
|
22
21
|
import * as i3 from "@ngx-formly/core";
|
|
23
22
|
import * as i4 from "@angular/common";
|
|
24
23
|
export class GioFjsArrayTypeComponent extends FieldArrayType {
|
|
25
|
-
constructor(
|
|
26
|
-
super();
|
|
27
|
-
this.cdr = cdr;
|
|
24
|
+
constructor() {
|
|
25
|
+
super(...arguments);
|
|
28
26
|
this.collapse = false;
|
|
29
27
|
}
|
|
30
|
-
/**
|
|
31
|
-
* This method is here to ensure that all fields of the array are disabled or enabled when the form is disabled or enabled.
|
|
32
|
-
*/
|
|
33
|
-
ngAfterViewChecked() {
|
|
34
|
-
this.field.props.disabled = this.form.disabled;
|
|
35
|
-
this.field.fieldGroup?.forEach(f => {
|
|
36
|
-
if (f && f.props)
|
|
37
|
-
f.props.disabled = this.form.disabled;
|
|
38
|
-
});
|
|
39
|
-
this.cdr.detectChanges();
|
|
40
|
-
}
|
|
41
|
-
/**
|
|
42
|
-
* This method fix an issue with the fieldChanges Subject which can be undefined when we enable or disable the form.
|
|
43
|
-
*/
|
|
44
|
-
onFocusIn() {
|
|
45
|
-
if (this.field && this.field.options && this.field.options.fieldChanges === undefined) {
|
|
46
|
-
this.field.options.fieldChanges = new Subject();
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* This method fix an issue with the fieldChanges Subject which can be undefined when we enable or disable the form
|
|
51
|
-
* and then try to add a new field.
|
|
52
|
-
*/
|
|
53
|
-
add() {
|
|
54
|
-
if (this.field && this.field.options && this.field.options.fieldChanges === undefined) {
|
|
55
|
-
this.field.options.fieldChanges = new Subject();
|
|
56
|
-
}
|
|
57
|
-
super.add();
|
|
58
|
-
}
|
|
59
28
|
}
|
|
60
|
-
GioFjsArrayTypeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: GioFjsArrayTypeComponent, deps:
|
|
29
|
+
GioFjsArrayTypeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: GioFjsArrayTypeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
61
30
|
GioFjsArrayTypeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: GioFjsArrayTypeComponent, selector: "gio-fjs-array-type", usesInheritance: true, ngImport: i0, template: `
|
|
62
31
|
<div class="wrapper" [class.error]="formControl.touched && formControl.invalid">
|
|
63
32
|
<div class="wrapper__header">
|
|
@@ -78,7 +47,7 @@ GioFjsArrayTypeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
78
47
|
|
|
79
48
|
<div [hidden]="collapse" class="wrapper__rows" [class.collapse-open]="collapse" [class.collapse-close]="!collapse">
|
|
80
49
|
<div *ngFor="let field of field.fieldGroup; let i = index" class="wrapper__rows__row">
|
|
81
|
-
<formly-field class="wrapper__rows__row__field" [field]="field"
|
|
50
|
+
<formly-field class="wrapper__rows__row__field" [field]="field"></formly-field>
|
|
82
51
|
<div class="wrapper__rows__row__remove">
|
|
83
52
|
<button type="button" mat-icon-button aria-label="Remove" [disabled]="this.form?.disabled ?? false" (click)="remove(i)">
|
|
84
53
|
<mat-icon svgIcon="gio:cancel"></mat-icon>
|
|
@@ -116,7 +85,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
116
85
|
|
|
117
86
|
<div [hidden]="collapse" class="wrapper__rows" [class.collapse-open]="collapse" [class.collapse-close]="!collapse">
|
|
118
87
|
<div *ngFor="let field of field.fieldGroup; let i = index" class="wrapper__rows__row">
|
|
119
|
-
<formly-field class="wrapper__rows__row__field" [field]="field"
|
|
88
|
+
<formly-field class="wrapper__rows__row__field" [field]="field"></formly-field>
|
|
120
89
|
<div class="wrapper__rows__row__remove">
|
|
121
90
|
<button type="button" mat-icon-button aria-label="Remove" [disabled]="this.form?.disabled ?? false" (click)="remove(i)">
|
|
122
91
|
<mat-icon svgIcon="gio:cancel"></mat-icon>
|
|
@@ -132,5 +101,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
132
101
|
</div>
|
|
133
102
|
</div>
|
|
134
103
|
`, styles: [".wrapper{padding:8px;border:1px solid #d3d5dc;border-radius:8px}.wrapper.error{border-color:#ec4899}.wrapper:empty{display:none}.wrapper__header{display:flex}.wrapper__header__text{flex:1 1 auto}.wrapper__header__text__title{font:600 16px/24px Golos UI,Roboto,Helvetica Neue,sans-serif;letter-spacing:.4px;margin-bottom:8px}.wrapper__header__collapse{flex:0 0 auto}.wrapper__header__collapse .collapse-open{transform:rotate(180deg);transition:transform 225ms cubic-bezier(.4,0,.2,1)}.wrapper__header__collapse .collapse-close{transform:rotate(0);transition:transform 225ms cubic-bezier(.4,0,.2,1)}.wrapper__error{font:400 12px/16px Golos UI,Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;color:#ec4899}.wrapper__rows__row{display:flex;align-items:center;justify-content:space-between;margin-bottom:4px}.wrapper__rows__row+.wrapper__rows__row{padding-top:3px;border-top:1px solid #d3d5dc;margin-top:4px}.wrapper__rows__row__field{flex:1 1 auto}.wrapper__rows__row__remove{flex:0 0 auto}\n"] }]
|
|
135
|
-
}]
|
|
136
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
104
|
+
}] });
|
|
105
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJyYXktdHlwZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS1wYXJ0aWNsZXMtYW5ndWxhci9zcmMvbGliL2dpby1mb3JtLWpzb24tc2NoZW1hL3R5cGUtY29tcG9uZW50L2FycmF5LXR5cGUuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7Ozs7Ozs7OztHQWNHO0FBQ0gsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxQyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7OztBQTBDbEQsTUFBTSxPQUFPLHdCQUF5QixTQUFRLGNBQWM7SUF4QzVEOztRQXlDUyxhQUFRLEdBQUcsS0FBSyxDQUFDO0tBQ3pCOztzSEFGWSx3QkFBd0I7MEdBQXhCLHdCQUF3QixpRkF0Q3pCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztHQW1DVDs0RkFHVSx3QkFBd0I7a0JBeENwQyxTQUFTOytCQUNFLG9CQUFvQixZQUNwQjs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0FtQ1QiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuICogQ29weXJpZ2h0IChDKSAyMDIzIFRoZSBHcmF2aXRlZSB0ZWFtIChodHRwOi8vZ3Jhdml0ZWUuaW8pXG4gKlxuICogTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMCAodGhlIFwiTGljZW5zZVwiKTtcbiAqIHlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2Ugd2l0aCB0aGUgTGljZW5zZS5cbiAqIFlvdSBtYXkgb2J0YWluIGEgY29weSBvZiB0aGUgTGljZW5zZSBhdFxuICpcbiAqICAgICAgICAgaHR0cDovL3d3dy5hcGFjaGUub3JnL2xpY2Vuc2VzL0xJQ0VOU0UtMi4wXG4gKlxuICogVW5sZXNzIHJlcXVpcmVkIGJ5IGFwcGxpY2FibGUgbGF3IG9yIGFncmVlZCB0byBpbiB3cml0aW5nLCBzb2Z0d2FyZVxuICogZGlzdHJpYnV0ZWQgdW5kZXIgdGhlIExpY2Vuc2UgaXMgZGlzdHJpYnV0ZWQgb24gYW4gXCJBUyBJU1wiIEJBU0lTLFxuICogV0lUSE9VVCBXQVJSQU5USUVTIE9SIENPTkRJVElPTlMgT0YgQU5ZIEtJTkQsIGVpdGhlciBleHByZXNzIG9yIGltcGxpZWQuXG4gKiBTZWUgdGhlIExpY2Vuc2UgZm9yIHRoZSBzcGVjaWZpYyBsYW5ndWFnZSBnb3Zlcm5pbmcgcGVybWlzc2lvbnMgYW5kXG4gKiBsaW1pdGF0aW9ucyB1bmRlciB0aGUgTGljZW5zZS5cbiAqL1xuaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGaWVsZEFycmF5VHlwZSB9IGZyb20gJ0BuZ3gtZm9ybWx5L2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnaW8tZmpzLWFycmF5LXR5cGUnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxkaXYgY2xhc3M9XCJ3cmFwcGVyXCIgW2NsYXNzLmVycm9yXT1cImZvcm1Db250cm9sLnRvdWNoZWQgJiYgZm9ybUNvbnRyb2wuaW52YWxpZFwiPlxuICAgICAgPGRpdiBjbGFzcz1cIndyYXBwZXJfX2hlYWRlclwiPlxuICAgICAgICA8ZGl2IGNsYXNzPVwid3JhcHBlcl9faGVhZGVyX190ZXh0XCI+XG4gICAgICAgICAgPGRpdiBjbGFzcz1cIndyYXBwZXJfX2hlYWRlcl9fdGV4dF9fdGl0bGVcIiAqbmdJZj1cInRvLmxhYmVsXCI+e3sgdG8ubGFiZWwgfX08L2Rpdj5cbiAgICAgICAgICA8cCAqbmdJZj1cInRvLmRlc2NyaXB0aW9uXCI+e3sgdG8uZGVzY3JpcHRpb24gfX08L3A+XG4gICAgICAgIDwvZGl2PlxuICAgICAgICA8ZGl2IGNsYXNzPVwid3JhcHBlcl9faGVhZGVyX19jb2xsYXBzZVwiPlxuICAgICAgICAgIDxidXR0b24gdHlwZT1cImJ1dHRvblwiIG1hdC1pY29uLWJ1dHRvbiBhcmlhLWxhYmVsPVwiQ29sbGFwc2VcIiAoY2xpY2spPVwiY29sbGFwc2UgPSAhY29sbGFwc2VcIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbiBbY2xhc3MuY29sbGFwc2Utb3Blbl09XCJjb2xsYXBzZVwiIFtjbGFzcy5jb2xsYXBzZS1jbG9zZV09XCIhY29sbGFwc2VcIiBzdmdJY29uPVwiZ2lvOm5hdi1hcnJvdy1kb3duXCI+PC9tYXQtaWNvbj5cbiAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgPC9kaXY+XG4gICAgICA8L2Rpdj5cblxuICAgICAgPGRpdiBjbGFzcz1cIndyYXBwZXJfX2Vycm9yIGdpby1uZy1pbnZhbGlkXCIgKm5nSWY9XCJzaG93RXJyb3IgJiYgZm9ybUNvbnRyb2wuZXJyb3JzXCI+XG4gICAgICAgIDxmb3JtbHktdmFsaWRhdGlvbi1tZXNzYWdlIFtmaWVsZF09XCJmaWVsZFwiPjwvZm9ybWx5LXZhbGlkYXRpb24tbWVzc2FnZT5cbiAgICAgIDwvZGl2PlxuXG4gICAgICA8ZGl2IFtoaWRkZW5dPVwiY29sbGFwc2VcIiBjbGFzcz1cIndyYXBwZXJfX3Jvd3NcIiBbY2xhc3MuY29sbGFwc2Utb3Blbl09XCJjb2xsYXBzZVwiIFtjbGFzcy5jb2xsYXBzZS1jbG9zZV09XCIhY29sbGFwc2VcIj5cbiAgICAgICAgPGRpdiAqbmdGb3I9XCJsZXQgZmllbGQgb2YgZmllbGQuZmllbGRHcm91cDsgbGV0IGkgPSBpbmRleFwiIGNsYXNzPVwid3JhcHBlcl9fcm93c19fcm93XCI+XG4gICAgICAgICAgPGZvcm1seS1maWVsZCBjbGFzcz1cIndyYXBwZXJfX3Jvd3NfX3Jvd19fZmllbGRcIiBbZmllbGRdPVwiZmllbGRcIj48L2Zvcm1seS1maWVsZD5cbiAgICAgICAgICA8ZGl2IGNsYXNzPVwid3JhcHBlcl9fcm93c19fcm93X19yZW1vdmVcIj5cbiAgICAgICAgICAgIDxidXR0b24gdHlwZT1cImJ1dHRvblwiIG1hdC1pY29uLWJ1dHRvbiBhcmlhLWxhYmVsPVwiUmVtb3ZlXCIgW2Rpc2FibGVkXT1cInRoaXMuZm9ybT8uZGlzYWJsZWQgPz8gZmFsc2VcIiAoY2xpY2spPVwicmVtb3ZlKGkpXCI+XG4gICAgICAgICAgICAgIDxtYXQtaWNvbiBzdmdJY29uPVwiZ2lvOmNhbmNlbFwiPjwvbWF0LWljb24+XG4gICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgPC9kaXY+XG5cbiAgICAgICAgPGRpdj5cbiAgICAgICAgICA8YnV0dG9uIHR5cGU9XCJidXR0b25cIiBtYXQtc3Ryb2tlZC1idXR0b24gYXJpYS1sYWJlbD1cIkFkZFwiIFtkaXNhYmxlZF09XCJ0aGlzLmZvcm0/LmRpc2FibGVkID8/IGZhbHNlXCIgKGNsaWNrKT1cImFkZCgpXCI+XG4gICAgICAgICAgICA8bWF0LWljb24gc3ZnSWNvbj1cImdpbzpwbHVzXCI+PC9tYXQtaWNvbj4gQWRkXG4gICAgICAgICAgPC9idXR0b24+XG4gICAgICAgIDwvZGl2PlxuICAgICAgPC9kaXY+XG4gICAgPC9kaXY+XG4gIGAsXG4gIHN0eWxlVXJsczogWycuL2FycmF5LXR5cGUuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgR2lvRmpzQXJyYXlUeXBlQ29tcG9uZW50IGV4dGVuZHMgRmllbGRBcnJheVR5cGUge1xuICBwdWJsaWMgY29sbGFwc2UgPSBmYWxzZTtcbn1cbiJdfQ==
|
|
@@ -4027,43 +4027,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4027
4027
|
* limitations under the License.
|
|
4028
4028
|
*/
|
|
4029
4029
|
class GioFjsArrayTypeComponent extends FieldArrayType {
|
|
4030
|
-
constructor(
|
|
4031
|
-
super();
|
|
4032
|
-
this.cdr = cdr;
|
|
4030
|
+
constructor() {
|
|
4031
|
+
super(...arguments);
|
|
4033
4032
|
this.collapse = false;
|
|
4034
4033
|
}
|
|
4035
|
-
/**
|
|
4036
|
-
* This method is here to ensure that all fields of the array are disabled or enabled when the form is disabled or enabled.
|
|
4037
|
-
*/
|
|
4038
|
-
ngAfterViewChecked() {
|
|
4039
|
-
var _a;
|
|
4040
|
-
this.field.props.disabled = this.form.disabled;
|
|
4041
|
-
(_a = this.field.fieldGroup) === null || _a === void 0 ? void 0 : _a.forEach(f => {
|
|
4042
|
-
if (f && f.props)
|
|
4043
|
-
f.props.disabled = this.form.disabled;
|
|
4044
|
-
});
|
|
4045
|
-
this.cdr.detectChanges();
|
|
4046
|
-
}
|
|
4047
|
-
/**
|
|
4048
|
-
* This method fix an issue with the fieldChanges Subject which can be undefined when we enable or disable the form.
|
|
4049
|
-
*/
|
|
4050
|
-
onFocusIn() {
|
|
4051
|
-
if (this.field && this.field.options && this.field.options.fieldChanges === undefined) {
|
|
4052
|
-
this.field.options.fieldChanges = new Subject();
|
|
4053
|
-
}
|
|
4054
|
-
}
|
|
4055
|
-
/**
|
|
4056
|
-
* This method fix an issue with the fieldChanges Subject which can be undefined when we enable or disable the form
|
|
4057
|
-
* and then try to add a new field.
|
|
4058
|
-
*/
|
|
4059
|
-
add() {
|
|
4060
|
-
if (this.field && this.field.options && this.field.options.fieldChanges === undefined) {
|
|
4061
|
-
this.field.options.fieldChanges = new Subject();
|
|
4062
|
-
}
|
|
4063
|
-
super.add();
|
|
4064
|
-
}
|
|
4065
4034
|
}
|
|
4066
|
-
GioFjsArrayTypeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: GioFjsArrayTypeComponent, deps:
|
|
4035
|
+
GioFjsArrayTypeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: GioFjsArrayTypeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
4067
4036
|
GioFjsArrayTypeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: GioFjsArrayTypeComponent, selector: "gio-fjs-array-type", usesInheritance: true, ngImport: i0, template: `
|
|
4068
4037
|
<div class="wrapper" [class.error]="formControl.touched && formControl.invalid">
|
|
4069
4038
|
<div class="wrapper__header">
|
|
@@ -4084,7 +4053,7 @@ GioFjsArrayTypeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
4084
4053
|
|
|
4085
4054
|
<div [hidden]="collapse" class="wrapper__rows" [class.collapse-open]="collapse" [class.collapse-close]="!collapse">
|
|
4086
4055
|
<div *ngFor="let field of field.fieldGroup; let i = index" class="wrapper__rows__row">
|
|
4087
|
-
<formly-field class="wrapper__rows__row__field" [field]="field"
|
|
4056
|
+
<formly-field class="wrapper__rows__row__field" [field]="field"></formly-field>
|
|
4088
4057
|
<div class="wrapper__rows__row__remove">
|
|
4089
4058
|
<button type="button" mat-icon-button aria-label="Remove" [disabled]="this.form?.disabled ?? false" (click)="remove(i)">
|
|
4090
4059
|
<mat-icon svgIcon="gio:cancel"></mat-icon>
|
|
@@ -4122,7 +4091,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4122
4091
|
|
|
4123
4092
|
<div [hidden]="collapse" class="wrapper__rows" [class.collapse-open]="collapse" [class.collapse-close]="!collapse">
|
|
4124
4093
|
<div *ngFor="let field of field.fieldGroup; let i = index" class="wrapper__rows__row">
|
|
4125
|
-
<formly-field class="wrapper__rows__row__field" [field]="field"
|
|
4094
|
+
<formly-field class="wrapper__rows__row__field" [field]="field"></formly-field>
|
|
4126
4095
|
<div class="wrapper__rows__row__remove">
|
|
4127
4096
|
<button type="button" mat-icon-button aria-label="Remove" [disabled]="this.form?.disabled ?? false" (click)="remove(i)">
|
|
4128
4097
|
<mat-icon svgIcon="gio:cancel"></mat-icon>
|
|
@@ -4138,7 +4107,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4138
4107
|
</div>
|
|
4139
4108
|
</div>
|
|
4140
4109
|
`, styles: [".wrapper{padding:8px;border:1px solid #d3d5dc;border-radius:8px}.wrapper.error{border-color:#ec4899}.wrapper:empty{display:none}.wrapper__header{display:flex}.wrapper__header__text{flex:1 1 auto}.wrapper__header__text__title{font:600 16px/24px Golos UI,Roboto,Helvetica Neue,sans-serif;letter-spacing:.4px;margin-bottom:8px}.wrapper__header__collapse{flex:0 0 auto}.wrapper__header__collapse .collapse-open{transform:rotate(180deg);transition:transform 225ms cubic-bezier(.4,0,.2,1)}.wrapper__header__collapse .collapse-close{transform:rotate(0);transition:transform 225ms cubic-bezier(.4,0,.2,1)}.wrapper__error{font:400 12px/16px Golos UI,Roboto,Helvetica Neue,sans-serif;letter-spacing:normal;color:#ec4899}.wrapper__rows__row{display:flex;align-items:center;justify-content:space-between;margin-bottom:4px}.wrapper__rows__row+.wrapper__rows__row{padding-top:3px;border-top:1px solid #d3d5dc;margin-top:4px}.wrapper__rows__row__field{flex:1 1 auto}.wrapper__rows__row__remove{flex:0 0 auto}\n"] }]
|
|
4141
|
-
}]
|
|
4110
|
+
}] });
|
|
4142
4111
|
|
|
4143
4112
|
function minItemsValidationMessage(error, field) {
|
|
4144
4113
|
var _a;
|