@gravitee/ui-particles-angular 7.29.1 → 7.29.2-fix-json-schema-c8b0d57
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/gio-form-json-schema.component.mjs +4 -2
- package/esm2020/lib/gio-license/gio-license.directive.mjs +1 -5
- package/fesm2015/gravitee-ui-particles-angular.mjs +3 -5
- package/fesm2015/gravitee-ui-particles-angular.mjs.map +1 -1
- package/fesm2020/gravitee-ui-particles-angular.mjs +3 -5
- package/fesm2020/gravitee-ui-particles-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -55,7 +55,6 @@ import * as i4$1 from '@angular/material/tooltip';
|
|
|
55
55
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
56
56
|
import * as i3$4 from '@angular/cdk/clipboard';
|
|
57
57
|
import { ClipboardModule } from '@angular/cdk/clipboard';
|
|
58
|
-
import { action } from '@storybook/addon-actions';
|
|
59
58
|
|
|
60
59
|
/*
|
|
61
60
|
* Copyright (C) 2023 The Gravitee team (http://gravitee.io)
|
|
@@ -3406,7 +3405,9 @@ class GioFormJsonSchemaComponent {
|
|
|
3406
3405
|
.subscribe(() => {
|
|
3407
3406
|
this.changeDetectorRef.markForCheck();
|
|
3408
3407
|
this.changeDetectorRef.detectChanges();
|
|
3409
|
-
this.ngControl?.control?.updateValueAndValidity(
|
|
3408
|
+
this.ngControl?.control?.updateValueAndValidity({
|
|
3409
|
+
emitEvent: false,
|
|
3410
|
+
});
|
|
3410
3411
|
});
|
|
3411
3412
|
}
|
|
3412
3413
|
ngAfterViewInit() {
|
|
@@ -5578,9 +5579,6 @@ class GioLicenseDirective {
|
|
|
5578
5579
|
id: 'gioLicenseDialog',
|
|
5579
5580
|
})
|
|
5580
5581
|
.afterClosed()
|
|
5581
|
-
.pipe(tap(confirmed => {
|
|
5582
|
-
action('confirmed?')(confirmed);
|
|
5583
|
-
}))
|
|
5584
5582
|
.subscribe();
|
|
5585
5583
|
return false;
|
|
5586
5584
|
}
|