@gravitee/ui-particles-angular 15.6.0 → 15.7.0
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/esm2022/lib/gio-monaco-editor/gio-monaco-clipboard-copy.component.mjs +37 -0
- package/esm2022/lib/gio-monaco-editor/gio-monaco-editor.component.mjs +2 -2
- package/esm2022/lib/gio-monaco-editor/gio-monaco-editor.module.mjs +8 -6
- package/esm2022/lib/public-api.mjs +2 -1
- package/fesm2022/gravitee-ui-particles-angular.mjs +259 -225
- package/fesm2022/gravitee-ui-particles-angular.mjs.map +1 -1
- package/lib/gio-monaco-editor/gio-monaco-clipboard-copy.component.d.ts +5 -0
- package/lib/gio-monaco-editor/gio-monaco-editor.module.d.ts +5 -3
- package/lib/public-api.d.ts +1 -0
- package/package.json +1 -1
|
@@ -46,17 +46,17 @@ import { FieldType, FieldArrayType, FieldWrapper, FormlyModule } from '@ngx-form
|
|
|
46
46
|
import { FieldType as FieldType$1, FormlyMaterialModule } from '@ngx-formly/material';
|
|
47
47
|
import * as i5$1 from '@angular/material/slide-toggle';
|
|
48
48
|
import { MatSlideToggle, MatSlideToggleModule } from '@angular/material/slide-toggle';
|
|
49
|
-
import * as i4$2 from '@angular/material/button-toggle';
|
|
50
|
-
import { MatButtonToggleModule } from '@angular/material/button-toggle';
|
|
51
49
|
import * as i2$3 from '@angular/material/tooltip';
|
|
52
50
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
51
|
+
import * as i1$6 from '@angular/cdk/clipboard';
|
|
52
|
+
import { ClipboardModule } from '@angular/cdk/clipboard';
|
|
53
|
+
import * as i4$2 from '@angular/material/button-toggle';
|
|
54
|
+
import { MatButtonToggleModule } from '@angular/material/button-toggle';
|
|
53
55
|
import Cronstrue from 'cronstrue/i18n';
|
|
54
56
|
import { Overlay, OverlayPositionBuilder } from '@angular/cdk/overlay';
|
|
55
57
|
import { TemplatePortal } from '@angular/cdk/portal';
|
|
56
58
|
import * as i3$3 from '@angular/material/progress-bar';
|
|
57
59
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
58
|
-
import * as i1$6 from '@angular/cdk/clipboard';
|
|
59
|
-
import { ClipboardModule } from '@angular/cdk/clipboard';
|
|
60
60
|
import { TestBed } from '@angular/core/testing';
|
|
61
61
|
import * as i1$7 from '@angular/common/http';
|
|
62
62
|
import { MatButtonToggleGroupHarness } from '@angular/material/button-toggle/testing';
|
|
@@ -2880,6 +2880,220 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImpor
|
|
|
2880
2880
|
}]
|
|
2881
2881
|
}] });
|
|
2882
2882
|
|
|
2883
|
+
/*
|
|
2884
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
2885
|
+
*
|
|
2886
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
2887
|
+
* you may not use this file except in compliance with the License.
|
|
2888
|
+
* You may obtain a copy of the License at
|
|
2889
|
+
*
|
|
2890
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
2891
|
+
*
|
|
2892
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
2893
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
2894
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2895
|
+
* See the License for the specific language governing permissions and
|
|
2896
|
+
* limitations under the License.
|
|
2897
|
+
*/
|
|
2898
|
+
class GioClipboardComponent {
|
|
2899
|
+
constructor(clipboard) {
|
|
2900
|
+
this.clipboard = clipboard;
|
|
2901
|
+
this.label = 'Copy to clipboard';
|
|
2902
|
+
this.tooltipHideDelay = 0;
|
|
2903
|
+
this.clicked = false;
|
|
2904
|
+
this.contentToCopy = '';
|
|
2905
|
+
this.alwaysVisible = false;
|
|
2906
|
+
this.tabIndex = undefined;
|
|
2907
|
+
}
|
|
2908
|
+
onCopied(success, tooltip) {
|
|
2909
|
+
tooltip.message = success ? 'Copied!' : 'Failed to copy!';
|
|
2910
|
+
tooltip.hideDelay = 2000;
|
|
2911
|
+
tooltip.show();
|
|
2912
|
+
this.clicked = true;
|
|
2913
|
+
setTimeout(() => {
|
|
2914
|
+
tooltip.hide();
|
|
2915
|
+
}, 2000);
|
|
2916
|
+
setTimeout(() => {
|
|
2917
|
+
this.clicked = false;
|
|
2918
|
+
tooltip.message = this.label;
|
|
2919
|
+
tooltip.hideDelay = this.tooltipHideDelay;
|
|
2920
|
+
}, 2500);
|
|
2921
|
+
}
|
|
2922
|
+
onKeyupSpace() {
|
|
2923
|
+
this.clipboard.copy(this.contentToCopy);
|
|
2924
|
+
if (this.tooltip) {
|
|
2925
|
+
this.onCopied(true, this.tooltip);
|
|
2926
|
+
}
|
|
2927
|
+
}
|
|
2928
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardComponent, deps: [{ token: i1$6.Clipboard }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2929
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.4", type: GioClipboardComponent, isStandalone: true, inputs: { contentToCopy: "contentToCopy", alwaysVisible: "alwaysVisible", tabIndex: "tabIndex" }, viewQueries: [{ propertyName: "tooltip", first: true, predicate: ["tooltip"], descendants: true }], ngImport: i0 }); }
|
|
2930
|
+
}
|
|
2931
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardComponent, decorators: [{
|
|
2932
|
+
type: Directive
|
|
2933
|
+
}], ctorParameters: () => [{ type: i1$6.Clipboard }], propDecorators: { tooltip: [{
|
|
2934
|
+
type: ViewChild,
|
|
2935
|
+
args: ['tooltip']
|
|
2936
|
+
}], contentToCopy: [{
|
|
2937
|
+
type: Input
|
|
2938
|
+
}], alwaysVisible: [{
|
|
2939
|
+
type: Input
|
|
2940
|
+
}], tabIndex: [{
|
|
2941
|
+
type: Input
|
|
2942
|
+
}] } });
|
|
2943
|
+
|
|
2944
|
+
/*
|
|
2945
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
2946
|
+
*
|
|
2947
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
2948
|
+
* you may not use this file except in compliance with the License.
|
|
2949
|
+
* You may obtain a copy of the License at
|
|
2950
|
+
*
|
|
2951
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
2952
|
+
*
|
|
2953
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
2954
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
2955
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
2956
|
+
* See the License for the specific language governing permissions and
|
|
2957
|
+
* limitations under the License.
|
|
2958
|
+
*/
|
|
2959
|
+
class GioClipboardCopyWrapperComponent extends GioClipboardComponent {
|
|
2960
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardCopyWrapperComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2961
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.4", type: GioClipboardCopyWrapperComponent, isStandalone: false, selector: "[gioClipboardCopyWrapper]", usesInheritance: true, ngImport: i0, template: `
|
|
2962
|
+
<ng-content></ng-content>
|
|
2963
|
+
<button
|
|
2964
|
+
#tooltip="matTooltip"
|
|
2965
|
+
type="button"
|
|
2966
|
+
class="right"
|
|
2967
|
+
[attr.aria-label]="label"
|
|
2968
|
+
[class.clicked]="clicked"
|
|
2969
|
+
[class.always-visible]="alwaysVisible"
|
|
2970
|
+
[cdkCopyToClipboard]="contentToCopy"
|
|
2971
|
+
(cdkCopyToClipboardCopied)="onCopied($event, tooltip)"
|
|
2972
|
+
matRipple
|
|
2973
|
+
[matRippleCentered]="true"
|
|
2974
|
+
[matRippleUnbounded]="true"
|
|
2975
|
+
[matTooltip]="label"
|
|
2976
|
+
[matTooltipPosition]="'after'"
|
|
2977
|
+
(keyup.Space)="onKeyupSpace()"
|
|
2978
|
+
>
|
|
2979
|
+
<mat-icon [inline]="true">{{ clicked ? 'check' : 'content_copy' }}</mat-icon>
|
|
2980
|
+
</button>
|
|
2981
|
+
`, isInline: true, styles: ["@charset \"UTF-8\";.gio-top-bar-menu .gio-badge-accent{background-color:var(--gio-oem-palette--active, #ffc2ac);color:var(--gio-oem-palette--active-contrast, #1e1b1b)}.right{padding:0;border:none;margin-left:4px;background:none;color:#5c5959;cursor:pointer;outline:inherit}.right:not(.clicked,.always-visible){opacity:0}.right.clicked{color:#da3b00;opacity:1}:host(:hover,:focus) .right{opacity:1}:host(:hover,:focus) .right:hover,:host(:hover,:focus) .right:focus{color:#da3b00}\n"], dependencies: [{ kind: "component", type: i1$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i2$3.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "directive", type: i3$1.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "directive", type: i1$6.CdkCopyToClipboard, selector: "[cdkCopyToClipboard]", inputs: ["cdkCopyToClipboard", "cdkCopyToClipboardAttempts"], outputs: ["cdkCopyToClipboardCopied"] }] }); }
|
|
2982
|
+
}
|
|
2983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardCopyWrapperComponent, decorators: [{
|
|
2984
|
+
type: Component,
|
|
2985
|
+
args: [{ selector: '[gioClipboardCopyWrapper]', template: `
|
|
2986
|
+
<ng-content></ng-content>
|
|
2987
|
+
<button
|
|
2988
|
+
#tooltip="matTooltip"
|
|
2989
|
+
type="button"
|
|
2990
|
+
class="right"
|
|
2991
|
+
[attr.aria-label]="label"
|
|
2992
|
+
[class.clicked]="clicked"
|
|
2993
|
+
[class.always-visible]="alwaysVisible"
|
|
2994
|
+
[cdkCopyToClipboard]="contentToCopy"
|
|
2995
|
+
(cdkCopyToClipboardCopied)="onCopied($event, tooltip)"
|
|
2996
|
+
matRipple
|
|
2997
|
+
[matRippleCentered]="true"
|
|
2998
|
+
[matRippleUnbounded]="true"
|
|
2999
|
+
[matTooltip]="label"
|
|
3000
|
+
[matTooltipPosition]="'after'"
|
|
3001
|
+
(keyup.Space)="onKeyupSpace()"
|
|
3002
|
+
>
|
|
3003
|
+
<mat-icon [inline]="true">{{ clicked ? 'check' : 'content_copy' }}</mat-icon>
|
|
3004
|
+
</button>
|
|
3005
|
+
`, standalone: false, styles: ["@charset \"UTF-8\";.gio-top-bar-menu .gio-badge-accent{background-color:var(--gio-oem-palette--active, #ffc2ac);color:var(--gio-oem-palette--active-contrast, #1e1b1b)}.right{padding:0;border:none;margin-left:4px;background:none;color:#5c5959;cursor:pointer;outline:inherit}.right:not(.clicked,.always-visible){opacity:0}.right.clicked{color:#da3b00;opacity:1}:host(:hover,:focus) .right{opacity:1}:host(:hover,:focus) .right:hover,:host(:hover,:focus) .right:focus{color:#da3b00}\n"] }]
|
|
3006
|
+
}] });
|
|
3007
|
+
|
|
3008
|
+
/*
|
|
3009
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3010
|
+
*
|
|
3011
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
3012
|
+
* you may not use this file except in compliance with the License.
|
|
3013
|
+
* You may obtain a copy of the License at
|
|
3014
|
+
*
|
|
3015
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
3016
|
+
*
|
|
3017
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
3018
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
3019
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3020
|
+
* See the License for the specific language governing permissions and
|
|
3021
|
+
* limitations under the License.
|
|
3022
|
+
*/
|
|
3023
|
+
class GioClipboardCopyIconComponent extends GioClipboardComponent {
|
|
3024
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardCopyIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3025
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.4", type: GioClipboardCopyIconComponent, isStandalone: false, selector: "gio-clipboard-copy-icon", usesInheritance: true, ngImport: i0, template: `
|
|
3026
|
+
<button
|
|
3027
|
+
#tooltip="matTooltip"
|
|
3028
|
+
type="button"
|
|
3029
|
+
class="btn"
|
|
3030
|
+
[attr.aria-label]="label"
|
|
3031
|
+
[class.clicked]="clicked"
|
|
3032
|
+
[cdkCopyToClipboard]="contentToCopy"
|
|
3033
|
+
(cdkCopyToClipboardCopied)="onCopied($event, tooltip)"
|
|
3034
|
+
matRipple
|
|
3035
|
+
[matRippleCentered]="true"
|
|
3036
|
+
[matRippleUnbounded]="true"
|
|
3037
|
+
[matTooltip]="label"
|
|
3038
|
+
[matTooltipPosition]="'after'"
|
|
3039
|
+
(keyup.Space)="onKeyupSpace()"
|
|
3040
|
+
>
|
|
3041
|
+
<mat-icon>{{ clicked ? 'check' : 'content_copy' }}</mat-icon>
|
|
3042
|
+
</button>
|
|
3043
|
+
`, isInline: true, styles: ["@charset \"UTF-8\";.gio-top-bar-menu .gio-badge-accent{background-color:var(--gio-oem-palette--active, #ffc2ac);color:var(--gio-oem-palette--active-contrast, #1e1b1b)}:host-context(.mat-mdc-form-field-icon-suffix){padding:12px}.btn{padding:0;border:none;margin-left:4px;background:none;color:#5c5959;cursor:pointer;outline:inherit}.btn.clicked,.btn:hover,.btn:focus{color:#da3b00}\n"], dependencies: [{ kind: "component", type: i1$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i2$3.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "directive", type: i3$1.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "directive", type: i1$6.CdkCopyToClipboard, selector: "[cdkCopyToClipboard]", inputs: ["cdkCopyToClipboard", "cdkCopyToClipboardAttempts"], outputs: ["cdkCopyToClipboardCopied"] }] }); }
|
|
3044
|
+
}
|
|
3045
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardCopyIconComponent, decorators: [{
|
|
3046
|
+
type: Component,
|
|
3047
|
+
args: [{ selector: 'gio-clipboard-copy-icon', template: `
|
|
3048
|
+
<button
|
|
3049
|
+
#tooltip="matTooltip"
|
|
3050
|
+
type="button"
|
|
3051
|
+
class="btn"
|
|
3052
|
+
[attr.aria-label]="label"
|
|
3053
|
+
[class.clicked]="clicked"
|
|
3054
|
+
[cdkCopyToClipboard]="contentToCopy"
|
|
3055
|
+
(cdkCopyToClipboardCopied)="onCopied($event, tooltip)"
|
|
3056
|
+
matRipple
|
|
3057
|
+
[matRippleCentered]="true"
|
|
3058
|
+
[matRippleUnbounded]="true"
|
|
3059
|
+
[matTooltip]="label"
|
|
3060
|
+
[matTooltipPosition]="'after'"
|
|
3061
|
+
(keyup.Space)="onKeyupSpace()"
|
|
3062
|
+
>
|
|
3063
|
+
<mat-icon>{{ clicked ? 'check' : 'content_copy' }}</mat-icon>
|
|
3064
|
+
</button>
|
|
3065
|
+
`, standalone: false, styles: ["@charset \"UTF-8\";.gio-top-bar-menu .gio-badge-accent{background-color:var(--gio-oem-palette--active, #ffc2ac);color:var(--gio-oem-palette--active-contrast, #1e1b1b)}:host-context(.mat-mdc-form-field-icon-suffix){padding:12px}.btn{padding:0;border:none;margin-left:4px;background:none;color:#5c5959;cursor:pointer;outline:inherit}.btn.clicked,.btn:hover,.btn:focus{color:#da3b00}\n"] }]
|
|
3066
|
+
}] });
|
|
3067
|
+
|
|
3068
|
+
/*
|
|
3069
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3070
|
+
*
|
|
3071
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
3072
|
+
* you may not use this file except in compliance with the License.
|
|
3073
|
+
* You may obtain a copy of the License at
|
|
3074
|
+
*
|
|
3075
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
3076
|
+
*
|
|
3077
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
3078
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
3079
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
3080
|
+
* See the License for the specific language governing permissions and
|
|
3081
|
+
* limitations under the License.
|
|
3082
|
+
*/
|
|
3083
|
+
class GioClipboardModule {
|
|
3084
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3085
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardModule, declarations: [GioClipboardCopyWrapperComponent, GioClipboardCopyIconComponent], imports: [CommonModule, MatIconModule, MatTooltipModule, MatRippleModule, ClipboardModule, MatButtonModule], exports: [GioClipboardCopyWrapperComponent, GioClipboardCopyIconComponent] }); }
|
|
3086
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardModule, imports: [CommonModule, MatIconModule, MatTooltipModule, MatRippleModule, ClipboardModule, MatButtonModule] }); }
|
|
3087
|
+
}
|
|
3088
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardModule, decorators: [{
|
|
3089
|
+
type: NgModule,
|
|
3090
|
+
args: [{
|
|
3091
|
+
imports: [CommonModule, MatIconModule, MatTooltipModule, MatRippleModule, ClipboardModule, MatButtonModule],
|
|
3092
|
+
declarations: [GioClipboardCopyWrapperComponent, GioClipboardCopyIconComponent],
|
|
3093
|
+
exports: [GioClipboardCopyWrapperComponent, GioClipboardCopyIconComponent],
|
|
3094
|
+
}]
|
|
3095
|
+
}] });
|
|
3096
|
+
|
|
2883
3097
|
/*
|
|
2884
3098
|
* Copyright (C) 2023 The Gravitee team (http://gravitee.io)
|
|
2885
3099
|
*
|
|
@@ -3479,7 +3693,7 @@ class GioMonacoEditorComponent {
|
|
|
3479
3693
|
this.textModel = monaco.editor.createModel(settings.value, settings.language, monaco.Uri.parse(settings.uri));
|
|
3480
3694
|
});
|
|
3481
3695
|
const options = Object.assign({}, this.defaultOptions, this.options, {
|
|
3482
|
-
readOnly: this.readOnly,
|
|
3696
|
+
readOnly: !this.ngControl && 'readOnly' in this.options ? this.options.readOnly : this.readOnly,
|
|
3483
3697
|
theme: this.config.theme ?? 'vs',
|
|
3484
3698
|
model: this.textModel,
|
|
3485
3699
|
minimap: {
|
|
@@ -3783,6 +3997,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImpor
|
|
|
3783
3997
|
args: ['class.hidden']
|
|
3784
3998
|
}] } });
|
|
3785
3999
|
|
|
4000
|
+
/*
|
|
4001
|
+
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
4002
|
+
*
|
|
4003
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4004
|
+
* you may not use this file except in compliance with the License.
|
|
4005
|
+
* You may obtain a copy of the License at
|
|
4006
|
+
*
|
|
4007
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
4008
|
+
*
|
|
4009
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4010
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
4011
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4012
|
+
* See the License for the specific language governing permissions and
|
|
4013
|
+
* limitations under the License.
|
|
4014
|
+
*/
|
|
4015
|
+
class GioMonacoClipboardCopyComponent {
|
|
4016
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioMonacoClipboardCopyComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4017
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.4", type: GioMonacoClipboardCopyComponent, isStandalone: false, selector: "[gioMonacoClipboardCopy]", ngImport: i0, template: `
|
|
4018
|
+
<div class="editor-wrapper">
|
|
4019
|
+
<ng-content></ng-content>
|
|
4020
|
+
<gio-clipboard-copy-icon class="copy-btn"></gio-clipboard-copy-icon>
|
|
4021
|
+
</div>
|
|
4022
|
+
`, isInline: true, styles: [".editor-wrapper{position:relative;overflow:auto;min-height:420px;flex:1 1 50%}.copy-btn{position:absolute;top:8px;right:8px}\n"], dependencies: [{ kind: "component", type: GioClipboardCopyIconComponent, selector: "gio-clipboard-copy-icon" }] }); }
|
|
4023
|
+
}
|
|
4024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioMonacoClipboardCopyComponent, decorators: [{
|
|
4025
|
+
type: Component,
|
|
4026
|
+
args: [{ selector: '[gioMonacoClipboardCopy]', template: `
|
|
4027
|
+
<div class="editor-wrapper">
|
|
4028
|
+
<ng-content></ng-content>
|
|
4029
|
+
<gio-clipboard-copy-icon class="copy-btn"></gio-clipboard-copy-icon>
|
|
4030
|
+
</div>
|
|
4031
|
+
`, standalone: false, styles: [".editor-wrapper{position:relative;overflow:auto;min-height:420px;flex:1 1 50%}.copy-btn{position:absolute;top:8px;right:8px}\n"] }]
|
|
4032
|
+
}] });
|
|
4033
|
+
|
|
3786
4034
|
/*
|
|
3787
4035
|
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
3788
4036
|
*
|
|
@@ -3811,20 +4059,20 @@ class GioMonacoEditorModule {
|
|
|
3811
4059
|
};
|
|
3812
4060
|
}
|
|
3813
4061
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioMonacoEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3814
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.4", ngImport: i0, type: GioMonacoEditorModule, declarations: [GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective], imports: [CommonModule, ReactiveFormsModule], exports: [GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective] }); }
|
|
4062
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.4", ngImport: i0, type: GioMonacoEditorModule, declarations: [GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoClipboardCopyComponent], imports: [CommonModule, ReactiveFormsModule, GioClipboardModule], exports: [GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoClipboardCopyComponent] }); }
|
|
3815
4063
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioMonacoEditorModule, providers: [
|
|
3816
4064
|
{
|
|
3817
4065
|
provide: GIO_MONACO_EDITOR_CONFIG,
|
|
3818
4066
|
useValue: {},
|
|
3819
4067
|
},
|
|
3820
|
-
], imports: [CommonModule, ReactiveFormsModule] }); }
|
|
4068
|
+
], imports: [CommonModule, ReactiveFormsModule, GioClipboardModule] }); }
|
|
3821
4069
|
}
|
|
3822
4070
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioMonacoEditorModule, decorators: [{
|
|
3823
4071
|
type: NgModule,
|
|
3824
4072
|
args: [{
|
|
3825
|
-
imports: [CommonModule, ReactiveFormsModule],
|
|
3826
|
-
declarations: [GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective],
|
|
3827
|
-
exports: [GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective],
|
|
4073
|
+
imports: [CommonModule, ReactiveFormsModule, GioClipboardModule],
|
|
4074
|
+
declarations: [GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoClipboardCopyComponent],
|
|
4075
|
+
exports: [GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoClipboardCopyComponent],
|
|
3828
4076
|
providers: [
|
|
3829
4077
|
{
|
|
3830
4078
|
provide: GIO_MONACO_EDITOR_CONFIG,
|
|
@@ -4550,220 +4798,6 @@ function isPromptError(value) {
|
|
|
4550
4798
|
return typeof value === 'object' && value !== null && typeof get(value, 'message') === 'string';
|
|
4551
4799
|
}
|
|
4552
4800
|
|
|
4553
|
-
/*
|
|
4554
|
-
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
4555
|
-
*
|
|
4556
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4557
|
-
* you may not use this file except in compliance with the License.
|
|
4558
|
-
* You may obtain a copy of the License at
|
|
4559
|
-
*
|
|
4560
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
4561
|
-
*
|
|
4562
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
4563
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
4564
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4565
|
-
* See the License for the specific language governing permissions and
|
|
4566
|
-
* limitations under the License.
|
|
4567
|
-
*/
|
|
4568
|
-
class GioClipboardComponent {
|
|
4569
|
-
constructor(clipboard) {
|
|
4570
|
-
this.clipboard = clipboard;
|
|
4571
|
-
this.label = 'Copy to clipboard';
|
|
4572
|
-
this.tooltipHideDelay = 0;
|
|
4573
|
-
this.clicked = false;
|
|
4574
|
-
this.contentToCopy = '';
|
|
4575
|
-
this.alwaysVisible = false;
|
|
4576
|
-
this.tabIndex = undefined;
|
|
4577
|
-
}
|
|
4578
|
-
onCopied(success, tooltip) {
|
|
4579
|
-
tooltip.message = success ? 'Copied!' : 'Failed to copy!';
|
|
4580
|
-
tooltip.hideDelay = 2000;
|
|
4581
|
-
tooltip.show();
|
|
4582
|
-
this.clicked = true;
|
|
4583
|
-
setTimeout(() => {
|
|
4584
|
-
tooltip.hide();
|
|
4585
|
-
}, 2000);
|
|
4586
|
-
setTimeout(() => {
|
|
4587
|
-
this.clicked = false;
|
|
4588
|
-
tooltip.message = this.label;
|
|
4589
|
-
tooltip.hideDelay = this.tooltipHideDelay;
|
|
4590
|
-
}, 2500);
|
|
4591
|
-
}
|
|
4592
|
-
onKeyupSpace() {
|
|
4593
|
-
this.clipboard.copy(this.contentToCopy);
|
|
4594
|
-
if (this.tooltip) {
|
|
4595
|
-
this.onCopied(true, this.tooltip);
|
|
4596
|
-
}
|
|
4597
|
-
}
|
|
4598
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardComponent, deps: [{ token: i1$6.Clipboard }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4599
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.4", type: GioClipboardComponent, isStandalone: true, inputs: { contentToCopy: "contentToCopy", alwaysVisible: "alwaysVisible", tabIndex: "tabIndex" }, viewQueries: [{ propertyName: "tooltip", first: true, predicate: ["tooltip"], descendants: true }], ngImport: i0 }); }
|
|
4600
|
-
}
|
|
4601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardComponent, decorators: [{
|
|
4602
|
-
type: Directive
|
|
4603
|
-
}], ctorParameters: () => [{ type: i1$6.Clipboard }], propDecorators: { tooltip: [{
|
|
4604
|
-
type: ViewChild,
|
|
4605
|
-
args: ['tooltip']
|
|
4606
|
-
}], contentToCopy: [{
|
|
4607
|
-
type: Input
|
|
4608
|
-
}], alwaysVisible: [{
|
|
4609
|
-
type: Input
|
|
4610
|
-
}], tabIndex: [{
|
|
4611
|
-
type: Input
|
|
4612
|
-
}] } });
|
|
4613
|
-
|
|
4614
|
-
/*
|
|
4615
|
-
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
4616
|
-
*
|
|
4617
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4618
|
-
* you may not use this file except in compliance with the License.
|
|
4619
|
-
* You may obtain a copy of the License at
|
|
4620
|
-
*
|
|
4621
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
4622
|
-
*
|
|
4623
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
4624
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
4625
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4626
|
-
* See the License for the specific language governing permissions and
|
|
4627
|
-
* limitations under the License.
|
|
4628
|
-
*/
|
|
4629
|
-
class GioClipboardCopyWrapperComponent extends GioClipboardComponent {
|
|
4630
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardCopyWrapperComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4631
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.4", type: GioClipboardCopyWrapperComponent, isStandalone: false, selector: "[gioClipboardCopyWrapper]", usesInheritance: true, ngImport: i0, template: `
|
|
4632
|
-
<ng-content></ng-content>
|
|
4633
|
-
<button
|
|
4634
|
-
#tooltip="matTooltip"
|
|
4635
|
-
type="button"
|
|
4636
|
-
class="right"
|
|
4637
|
-
[attr.aria-label]="label"
|
|
4638
|
-
[class.clicked]="clicked"
|
|
4639
|
-
[class.always-visible]="alwaysVisible"
|
|
4640
|
-
[cdkCopyToClipboard]="contentToCopy"
|
|
4641
|
-
(cdkCopyToClipboardCopied)="onCopied($event, tooltip)"
|
|
4642
|
-
matRipple
|
|
4643
|
-
[matRippleCentered]="true"
|
|
4644
|
-
[matRippleUnbounded]="true"
|
|
4645
|
-
[matTooltip]="label"
|
|
4646
|
-
[matTooltipPosition]="'after'"
|
|
4647
|
-
(keyup.Space)="onKeyupSpace()"
|
|
4648
|
-
>
|
|
4649
|
-
<mat-icon [inline]="true">{{ clicked ? 'check' : 'content_copy' }}</mat-icon>
|
|
4650
|
-
</button>
|
|
4651
|
-
`, isInline: true, styles: ["@charset \"UTF-8\";.gio-top-bar-menu .gio-badge-accent{background-color:var(--gio-oem-palette--active, #ffc2ac);color:var(--gio-oem-palette--active-contrast, #1e1b1b)}.right{padding:0;border:none;margin-left:4px;background:none;color:#5c5959;cursor:pointer;outline:inherit}.right:not(.clicked,.always-visible){opacity:0}.right.clicked{color:#da3b00;opacity:1}:host(:hover,:focus) .right{opacity:1}:host(:hover,:focus) .right:hover,:host(:hover,:focus) .right:focus{color:#da3b00}\n"], dependencies: [{ kind: "component", type: i1$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i2$3.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "directive", type: i3$1.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "directive", type: i1$6.CdkCopyToClipboard, selector: "[cdkCopyToClipboard]", inputs: ["cdkCopyToClipboard", "cdkCopyToClipboardAttempts"], outputs: ["cdkCopyToClipboardCopied"] }] }); }
|
|
4652
|
-
}
|
|
4653
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardCopyWrapperComponent, decorators: [{
|
|
4654
|
-
type: Component,
|
|
4655
|
-
args: [{ selector: '[gioClipboardCopyWrapper]', template: `
|
|
4656
|
-
<ng-content></ng-content>
|
|
4657
|
-
<button
|
|
4658
|
-
#tooltip="matTooltip"
|
|
4659
|
-
type="button"
|
|
4660
|
-
class="right"
|
|
4661
|
-
[attr.aria-label]="label"
|
|
4662
|
-
[class.clicked]="clicked"
|
|
4663
|
-
[class.always-visible]="alwaysVisible"
|
|
4664
|
-
[cdkCopyToClipboard]="contentToCopy"
|
|
4665
|
-
(cdkCopyToClipboardCopied)="onCopied($event, tooltip)"
|
|
4666
|
-
matRipple
|
|
4667
|
-
[matRippleCentered]="true"
|
|
4668
|
-
[matRippleUnbounded]="true"
|
|
4669
|
-
[matTooltip]="label"
|
|
4670
|
-
[matTooltipPosition]="'after'"
|
|
4671
|
-
(keyup.Space)="onKeyupSpace()"
|
|
4672
|
-
>
|
|
4673
|
-
<mat-icon [inline]="true">{{ clicked ? 'check' : 'content_copy' }}</mat-icon>
|
|
4674
|
-
</button>
|
|
4675
|
-
`, standalone: false, styles: ["@charset \"UTF-8\";.gio-top-bar-menu .gio-badge-accent{background-color:var(--gio-oem-palette--active, #ffc2ac);color:var(--gio-oem-palette--active-contrast, #1e1b1b)}.right{padding:0;border:none;margin-left:4px;background:none;color:#5c5959;cursor:pointer;outline:inherit}.right:not(.clicked,.always-visible){opacity:0}.right.clicked{color:#da3b00;opacity:1}:host(:hover,:focus) .right{opacity:1}:host(:hover,:focus) .right:hover,:host(:hover,:focus) .right:focus{color:#da3b00}\n"] }]
|
|
4676
|
-
}] });
|
|
4677
|
-
|
|
4678
|
-
/*
|
|
4679
|
-
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
4680
|
-
*
|
|
4681
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4682
|
-
* you may not use this file except in compliance with the License.
|
|
4683
|
-
* You may obtain a copy of the License at
|
|
4684
|
-
*
|
|
4685
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
4686
|
-
*
|
|
4687
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
4688
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
4689
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4690
|
-
* See the License for the specific language governing permissions and
|
|
4691
|
-
* limitations under the License.
|
|
4692
|
-
*/
|
|
4693
|
-
class GioClipboardCopyIconComponent extends GioClipboardComponent {
|
|
4694
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardCopyIconComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4695
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.4", type: GioClipboardCopyIconComponent, isStandalone: false, selector: "gio-clipboard-copy-icon", usesInheritance: true, ngImport: i0, template: `
|
|
4696
|
-
<button
|
|
4697
|
-
#tooltip="matTooltip"
|
|
4698
|
-
type="button"
|
|
4699
|
-
class="btn"
|
|
4700
|
-
[attr.aria-label]="label"
|
|
4701
|
-
[class.clicked]="clicked"
|
|
4702
|
-
[cdkCopyToClipboard]="contentToCopy"
|
|
4703
|
-
(cdkCopyToClipboardCopied)="onCopied($event, tooltip)"
|
|
4704
|
-
matRipple
|
|
4705
|
-
[matRippleCentered]="true"
|
|
4706
|
-
[matRippleUnbounded]="true"
|
|
4707
|
-
[matTooltip]="label"
|
|
4708
|
-
[matTooltipPosition]="'after'"
|
|
4709
|
-
(keyup.Space)="onKeyupSpace()"
|
|
4710
|
-
>
|
|
4711
|
-
<mat-icon>{{ clicked ? 'check' : 'content_copy' }}</mat-icon>
|
|
4712
|
-
</button>
|
|
4713
|
-
`, isInline: true, styles: ["@charset \"UTF-8\";.gio-top-bar-menu .gio-badge-accent{background-color:var(--gio-oem-palette--active, #ffc2ac);color:var(--gio-oem-palette--active-contrast, #1e1b1b)}:host-context(.mat-mdc-form-field-icon-suffix){padding:12px}.btn{padding:0;border:none;margin-left:4px;background:none;color:#5c5959;cursor:pointer;outline:inherit}.btn.clicked,.btn:hover,.btn:focus{color:#da3b00}\n"], dependencies: [{ kind: "component", type: i1$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i2$3.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "directive", type: i3$1.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "directive", type: i1$6.CdkCopyToClipboard, selector: "[cdkCopyToClipboard]", inputs: ["cdkCopyToClipboard", "cdkCopyToClipboardAttempts"], outputs: ["cdkCopyToClipboardCopied"] }] }); }
|
|
4714
|
-
}
|
|
4715
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardCopyIconComponent, decorators: [{
|
|
4716
|
-
type: Component,
|
|
4717
|
-
args: [{ selector: 'gio-clipboard-copy-icon', template: `
|
|
4718
|
-
<button
|
|
4719
|
-
#tooltip="matTooltip"
|
|
4720
|
-
type="button"
|
|
4721
|
-
class="btn"
|
|
4722
|
-
[attr.aria-label]="label"
|
|
4723
|
-
[class.clicked]="clicked"
|
|
4724
|
-
[cdkCopyToClipboard]="contentToCopy"
|
|
4725
|
-
(cdkCopyToClipboardCopied)="onCopied($event, tooltip)"
|
|
4726
|
-
matRipple
|
|
4727
|
-
[matRippleCentered]="true"
|
|
4728
|
-
[matRippleUnbounded]="true"
|
|
4729
|
-
[matTooltip]="label"
|
|
4730
|
-
[matTooltipPosition]="'after'"
|
|
4731
|
-
(keyup.Space)="onKeyupSpace()"
|
|
4732
|
-
>
|
|
4733
|
-
<mat-icon>{{ clicked ? 'check' : 'content_copy' }}</mat-icon>
|
|
4734
|
-
</button>
|
|
4735
|
-
`, standalone: false, styles: ["@charset \"UTF-8\";.gio-top-bar-menu .gio-badge-accent{background-color:var(--gio-oem-palette--active, #ffc2ac);color:var(--gio-oem-palette--active-contrast, #1e1b1b)}:host-context(.mat-mdc-form-field-icon-suffix){padding:12px}.btn{padding:0;border:none;margin-left:4px;background:none;color:#5c5959;cursor:pointer;outline:inherit}.btn.clicked,.btn:hover,.btn:focus{color:#da3b00}\n"] }]
|
|
4736
|
-
}] });
|
|
4737
|
-
|
|
4738
|
-
/*
|
|
4739
|
-
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
|
|
4740
|
-
*
|
|
4741
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4742
|
-
* you may not use this file except in compliance with the License.
|
|
4743
|
-
* You may obtain a copy of the License at
|
|
4744
|
-
*
|
|
4745
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
4746
|
-
*
|
|
4747
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
4748
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
4749
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4750
|
-
* See the License for the specific language governing permissions and
|
|
4751
|
-
* limitations under the License.
|
|
4752
|
-
*/
|
|
4753
|
-
class GioClipboardModule {
|
|
4754
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4755
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardModule, declarations: [GioClipboardCopyWrapperComponent, GioClipboardCopyIconComponent], imports: [CommonModule, MatIconModule, MatTooltipModule, MatRippleModule, ClipboardModule, MatButtonModule], exports: [GioClipboardCopyWrapperComponent, GioClipboardCopyIconComponent] }); }
|
|
4756
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardModule, imports: [CommonModule, MatIconModule, MatTooltipModule, MatRippleModule, ClipboardModule, MatButtonModule] }); }
|
|
4757
|
-
}
|
|
4758
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImport: i0, type: GioClipboardModule, decorators: [{
|
|
4759
|
-
type: NgModule,
|
|
4760
|
-
args: [{
|
|
4761
|
-
imports: [CommonModule, MatIconModule, MatTooltipModule, MatRippleModule, ClipboardModule, MatButtonModule],
|
|
4762
|
-
declarations: [GioClipboardCopyWrapperComponent, GioClipboardCopyIconComponent],
|
|
4763
|
-
exports: [GioClipboardCopyWrapperComponent, GioClipboardCopyIconComponent],
|
|
4764
|
-
}]
|
|
4765
|
-
}] });
|
|
4766
|
-
|
|
4767
4801
|
/*
|
|
4768
4802
|
* Copyright (C) 2025 The Gravitee team (http://gravitee.io)
|
|
4769
4803
|
*
|
|
@@ -8377,5 +8411,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.4", ngImpor
|
|
|
8377
8411
|
* Generated bundle index. Do not edit.
|
|
8378
8412
|
*/
|
|
8379
8413
|
|
|
8380
|
-
export { ConfigureTestingGioMonacoEditor, GIO_DIALOG_WIDTH, GIO_FORM_FOCUS_INVALID_IGNORE_SELECTOR, GRAVITEE_LOGO, GioAvatarComponent, GioAvatarModule, GioBannerActionDirective, GioBannerBodyDirective, GioBannerComponent, GioBannerErrorComponent, GioBannerInfoComponent, GioBannerModule, GioBannerSuccessComponent, GioBannerWarningComponent, GioBaseFormFocusInvalidDirective, GioBreadcrumbComponent, GioBreadcrumbItemDirective, GioBreadcrumbModule, GioButtonFocusInvalidButtonDirective, GioCardEmptyStateComponent, GioCardEmptyStateModule, GioClipboardCopyIconComponent, GioClipboardCopyWrapperComponent, GioClipboardModule, GioConfirmAndValidateDialogComponent, GioConfirmAndValidateDialogHarness, GioConfirmAndValidateDialogModule, GioConfirmDialogComponent, GioConfirmDialogHarness, GioConfirmDialogModule, GioElPromptComponent, GioElService, GioFormCronComponent, GioFormCronHarness, GioFormCronHintComponent, GioFormCronLabelComponent, GioFormCronModule, GioFormFilePickerAddButtonComponent, GioFormFilePickerComponent, GioFormFilePickerEmptyComponent, GioFormFilePickerInputHarness, GioFormFilePickerLabelComponent, GioFormFilePickerModule, GioFormFocusInvalidFormDirective, GioFormFocusInvalidIgnoreDirective, GioFormFocusInvalidModule, GioFormHeadersComponent, GioFormHeadersHarness, GioFormHeadersLabelComponent, GioFormHeadersModule, GioFormJsonSchemaComponent, GioFormJsonSchemaModule, GioFormLabelComponent, GioFormPrefixDirective, GioFormSelectionInlineCardComponent, GioFormSelectionInlineCardContentComponent, GioFormSelectionInlineCardHarness, GioFormSelectionInlineCardSubtitleComponent, GioFormSelectionInlineCardTitleComponent, GioFormSelectionInlineComponent, GioFormSelectionInlineHarness, GioFormSelectionInlineModule, GioFormSlideToggleComponent, GioFormSlideToggleDirective, GioFormSlideToggleModule, GioFormTagsInputComponent, GioFormTagsInputHarness, GioFormTagsInputModule, GioIconsModule, GioLicenseDialogComponent, GioLicenseDialogModule, GioLicenseDirective, GioLicenseExpirationNotificationComponent, GioLicenseExpirationNotificationHarness, GioLicenseExpirationNotificationModule, GioLicenseModule, GioLicenseService, GioLicenseTestingModule, GioLoaderComponent, GioLoaderModule, GioMatConfigModule, GioMenuComponent, GioMenuFooterComponent, GioMenuHeaderComponent, GioMenuItemComponent, GioMenuLicenseExpirationNotificationComponent, GioMenuListComponent, GioMenuModule, GioMenuSearchComponent, GioMenuSearchHarness, GioMenuSearchService, GioMenuSelectorComponent, GioMenuSelectorHarness, GioMenuService, GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoEditorHarness, GioMonacoEditorModule, GioPopoverComponent, GioPrismJsService, GioSafePipeModule, GioSaveBarComponent, GioSaveBarHarness, GioSaveBarModule, GioSubmenuComponent, GioSubmenuGroupComponent, GioSubmenuItemComponent, GioSubmenuModule, GioSubmenuTitleDirective, GioTopBarComponent, GioTopBarContentComponent, GioTopBarLinkComponent, GioTopBarLinkModule, GioTopBarMenuComponent, GioTopBarMenuModule, GioTopBarModule, LICENSE_CONFIGURATION_TESTING, NewFile, OEM_DEFAULT_LOGO, OEM_LICENSE_CONFIGURATION_TESTING, OEM_THEME_ARG_TYPES, PopoverTriggerDirective, SafePipe, cleanLocalStorageReduceState, computeAndInjectStylesForStory, computeStyles, computeStylesForStory, isLicensePluginOptions, isPromptError, isPromptSuccess, resetStoryStyleInjection };
|
|
8414
|
+
export { ConfigureTestingGioMonacoEditor, GIO_DIALOG_WIDTH, GIO_FORM_FOCUS_INVALID_IGNORE_SELECTOR, GRAVITEE_LOGO, GioAvatarComponent, GioAvatarModule, GioBannerActionDirective, GioBannerBodyDirective, GioBannerComponent, GioBannerErrorComponent, GioBannerInfoComponent, GioBannerModule, GioBannerSuccessComponent, GioBannerWarningComponent, GioBaseFormFocusInvalidDirective, GioBreadcrumbComponent, GioBreadcrumbItemDirective, GioBreadcrumbModule, GioButtonFocusInvalidButtonDirective, GioCardEmptyStateComponent, GioCardEmptyStateModule, GioClipboardCopyIconComponent, GioClipboardCopyWrapperComponent, GioClipboardModule, GioConfirmAndValidateDialogComponent, GioConfirmAndValidateDialogHarness, GioConfirmAndValidateDialogModule, GioConfirmDialogComponent, GioConfirmDialogHarness, GioConfirmDialogModule, GioElPromptComponent, GioElService, GioFormCronComponent, GioFormCronHarness, GioFormCronHintComponent, GioFormCronLabelComponent, GioFormCronModule, GioFormFilePickerAddButtonComponent, GioFormFilePickerComponent, GioFormFilePickerEmptyComponent, GioFormFilePickerInputHarness, GioFormFilePickerLabelComponent, GioFormFilePickerModule, GioFormFocusInvalidFormDirective, GioFormFocusInvalidIgnoreDirective, GioFormFocusInvalidModule, GioFormHeadersComponent, GioFormHeadersHarness, GioFormHeadersLabelComponent, GioFormHeadersModule, GioFormJsonSchemaComponent, GioFormJsonSchemaModule, GioFormLabelComponent, GioFormPrefixDirective, GioFormSelectionInlineCardComponent, GioFormSelectionInlineCardContentComponent, GioFormSelectionInlineCardHarness, GioFormSelectionInlineCardSubtitleComponent, GioFormSelectionInlineCardTitleComponent, GioFormSelectionInlineComponent, GioFormSelectionInlineHarness, GioFormSelectionInlineModule, GioFormSlideToggleComponent, GioFormSlideToggleDirective, GioFormSlideToggleModule, GioFormTagsInputComponent, GioFormTagsInputHarness, GioFormTagsInputModule, GioIconsModule, GioLicenseDialogComponent, GioLicenseDialogModule, GioLicenseDirective, GioLicenseExpirationNotificationComponent, GioLicenseExpirationNotificationHarness, GioLicenseExpirationNotificationModule, GioLicenseModule, GioLicenseService, GioLicenseTestingModule, GioLoaderComponent, GioLoaderModule, GioMatConfigModule, GioMenuComponent, GioMenuFooterComponent, GioMenuHeaderComponent, GioMenuItemComponent, GioMenuLicenseExpirationNotificationComponent, GioMenuListComponent, GioMenuModule, GioMenuSearchComponent, GioMenuSearchHarness, GioMenuSearchService, GioMenuSelectorComponent, GioMenuSelectorHarness, GioMenuService, GioMonacoClipboardCopyComponent, GioMonacoEditorComponent, GioMonacoEditorFormFieldDirective, GioMonacoEditorHarness, GioMonacoEditorModule, GioPopoverComponent, GioPrismJsService, GioSafePipeModule, GioSaveBarComponent, GioSaveBarHarness, GioSaveBarModule, GioSubmenuComponent, GioSubmenuGroupComponent, GioSubmenuItemComponent, GioSubmenuModule, GioSubmenuTitleDirective, GioTopBarComponent, GioTopBarContentComponent, GioTopBarLinkComponent, GioTopBarLinkModule, GioTopBarMenuComponent, GioTopBarMenuModule, GioTopBarModule, LICENSE_CONFIGURATION_TESTING, NewFile, OEM_DEFAULT_LOGO, OEM_LICENSE_CONFIGURATION_TESTING, OEM_THEME_ARG_TYPES, PopoverTriggerDirective, SafePipe, cleanLocalStorageReduceState, computeAndInjectStylesForStory, computeStyles, computeStylesForStory, isLicensePluginOptions, isPromptError, isPromptSuccess, resetStoryStyleInjection };
|
|
8381
8415
|
//# sourceMappingURL=gravitee-ui-particles-angular.mjs.map
|