@sebgroup/green-core-ng 2.30.0 → 2.31.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.
|
@@ -16,13 +16,13 @@ import { GdsCoachmark } from '@sebgroup/green-core/components/coachmark/coachmar
|
|
|
16
16
|
import { GdsContextMenu, GdsMenuItem, GdsMenuHeading } from '@sebgroup/green-core/components/context-menu/context-menu.component.js';
|
|
17
17
|
import { GdsDatepicker } from '@sebgroup/green-core/components/datepicker/datepicker.component.js';
|
|
18
18
|
import { GdsDetails } from '@sebgroup/green-core/components/details/details.component.js';
|
|
19
|
-
import { GdsDialog } from '@sebgroup/green-core/components/dialog/dialog.component.js';
|
|
20
19
|
import { GdsDiv } from '@sebgroup/green-core/components/div/div.component.js';
|
|
21
20
|
import { GdsDivider } from '@sebgroup/green-core/components/divider/divider.component.js';
|
|
21
|
+
import { GdsDialog } from '@sebgroup/green-core/components/dialog/dialog.component.js';
|
|
22
22
|
import { GdsDropdown, GdsOption } from '@sebgroup/green-core/components/dropdown/dropdown.component.js';
|
|
23
23
|
import { GdsFab } from '@sebgroup/green-core/components/fab/fab.component.js';
|
|
24
|
-
import { GdsFilterChips } from '@sebgroup/green-core/components/filter-chips/filter-chips.component.js';
|
|
25
24
|
import { GdsFlex } from '@sebgroup/green-core/components/flex/flex.component.js';
|
|
25
|
+
import { GdsFilterChips } from '@sebgroup/green-core/components/filter-chips/filter-chips.component.js';
|
|
26
26
|
import { GdsFormSummary } from '@sebgroup/green-core/components/form-summary/summary.component.js';
|
|
27
27
|
import { GdsGrid } from '@sebgroup/green-core/components/grid/grid.component.js';
|
|
28
28
|
import { GdsGroupedList } from '@sebgroup/green-core/components/grouped-list/grouped-list.component.js';
|
|
@@ -57,8 +57,8 @@ import { GdsFormattedNumber } from '@sebgroup/green-core/components/formatted-te
|
|
|
57
57
|
import { GdsRadioGroup } from '@sebgroup/green-core/components/radio/radio-group/radio-group.component.js';
|
|
58
58
|
import { GdsSegment } from '@sebgroup/green-core/components/segmented-control/segment/segment.component.js';
|
|
59
59
|
import { GdsSensitiveAccount } from '@sebgroup/green-core/components/sensitive/account/sensitive-account.component.js';
|
|
60
|
-
import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
|
|
61
60
|
import { GdsSensitiveDate } from '@sebgroup/green-core/components/sensitive/date/sensitive-date.component.js';
|
|
61
|
+
import { GdsSensitiveNumber } from '@sebgroup/green-core/components/sensitive/number/sensitive-number.component.js';
|
|
62
62
|
import { IconAi } from '@sebgroup/green-core/components/icon/icons/ai.component.js';
|
|
63
63
|
import { IconAirplaneUp } from '@sebgroup/green-core/components/icon/icons/airplane-up.component.js';
|
|
64
64
|
import { IconArchive } from '@sebgroup/green-core/components/icon/icons/archive.component.js';
|
|
@@ -2165,124 +2165,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2165
2165
|
* Auto-generated from Custom Elements Manifest
|
|
2166
2166
|
*/
|
|
2167
2167
|
|
|
2168
|
-
/**
|
|
2169
|
-
* Angular wrapper for the gds-dialog web component
|
|
2170
|
-
*
|
|
2171
|
-
*/
|
|
2172
|
-
let GdsDialogComponent = class GdsDialogComponent {
|
|
2173
|
-
get element() {
|
|
2174
|
-
return this.elementRef.nativeElement;
|
|
2175
|
-
}
|
|
2176
|
-
constructor() {
|
|
2177
|
-
this.elementRef = inject((ElementRef));
|
|
2178
|
-
this.zone = inject(NgZone);
|
|
2179
|
-
this.cdr = inject(ChangeDetectorRef);
|
|
2180
|
-
/** Fired when the dialog is opened or closed. Can be cancelled to prevent the dialog from closing. */
|
|
2181
|
-
this.gdsUiState = new EventEmitter();
|
|
2182
|
-
/** Fired when the dialog is closed */
|
|
2183
|
-
this.gdsClose = new EventEmitter();
|
|
2184
|
-
/** Fired when the dialog is opened */
|
|
2185
|
-
this.gdsShow = new EventEmitter();
|
|
2186
|
-
this.cdr.detach();
|
|
2187
|
-
}
|
|
2188
|
-
ngOnInit() {
|
|
2189
|
-
// Define the custom element
|
|
2190
|
-
try {
|
|
2191
|
-
GdsDialog.define();
|
|
2192
|
-
}
|
|
2193
|
-
catch (e) {
|
|
2194
|
-
// Component may not be available in this version of green-core
|
|
2195
|
-
console.warn('Failed to define gds-dialog:', e);
|
|
2196
|
-
}
|
|
2197
|
-
// Set up event listeners
|
|
2198
|
-
this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
|
|
2199
|
-
this.gdsUiState.emit(event);
|
|
2200
|
-
});
|
|
2201
|
-
this.elementRef.nativeElement.addEventListener('gds-close', (event) => {
|
|
2202
|
-
this.gdsClose.emit(event);
|
|
2203
|
-
});
|
|
2204
|
-
this.elementRef.nativeElement.addEventListener('gds-show', (event) => {
|
|
2205
|
-
this.gdsShow.emit(event);
|
|
2206
|
-
});
|
|
2207
|
-
}
|
|
2208
|
-
ngOnChanges(changes) {
|
|
2209
|
-
// Implementation added by @ProxyInputs decorator
|
|
2210
|
-
}
|
|
2211
|
-
ngAfterViewInit() {
|
|
2212
|
-
// Implementation added by @ProxyInputs decorator
|
|
2213
|
-
}
|
|
2214
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2215
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsDialogComponent, isStandalone: true, selector: "gds-dialog", inputs: { open: ["open", "open", booleanAttribute], heading: "heading", variant: "variant", placement: "placement", scrollable: ["scrollable", "scrollable", booleanAttribute], width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock" }, outputs: { gdsUiState: "gdsUiState", gdsClose: "gdsClose", gdsShow: "gdsShow" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2216
|
-
};
|
|
2217
|
-
GdsDialogComponent = __decorate([
|
|
2218
|
-
ProxyInputs(['open', 'heading', 'variant', 'placement', 'scrollable', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'padding', 'padding-inline', 'padding-block']),
|
|
2219
|
-
__metadata("design:paramtypes", [])
|
|
2220
|
-
], GdsDialogComponent);
|
|
2221
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsDialogComponent, decorators: [{
|
|
2222
|
-
type: Component,
|
|
2223
|
-
args: [{
|
|
2224
|
-
selector: 'gds-dialog',
|
|
2225
|
-
standalone: true,
|
|
2226
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2227
|
-
template: `<ng-content></ng-content>`
|
|
2228
|
-
}]
|
|
2229
|
-
}], ctorParameters: () => [], propDecorators: { open: [{
|
|
2230
|
-
type: Input,
|
|
2231
|
-
args: [{ transform: booleanAttribute }]
|
|
2232
|
-
}], heading: [{
|
|
2233
|
-
type: Input
|
|
2234
|
-
}], variant: [{
|
|
2235
|
-
type: Input
|
|
2236
|
-
}], placement: [{
|
|
2237
|
-
type: Input
|
|
2238
|
-
}], scrollable: [{
|
|
2239
|
-
type: Input,
|
|
2240
|
-
args: [{ transform: booleanAttribute }]
|
|
2241
|
-
}], width: [{
|
|
2242
|
-
type: Input
|
|
2243
|
-
}], minWidth: [{
|
|
2244
|
-
type: Input
|
|
2245
|
-
}], maxWidth: [{
|
|
2246
|
-
type: Input
|
|
2247
|
-
}], inlineSize: [{
|
|
2248
|
-
type: Input
|
|
2249
|
-
}], minInlineSize: [{
|
|
2250
|
-
type: Input
|
|
2251
|
-
}], maxInlineSize: [{
|
|
2252
|
-
type: Input
|
|
2253
|
-
}], height: [{
|
|
2254
|
-
type: Input
|
|
2255
|
-
}], minHeight: [{
|
|
2256
|
-
type: Input
|
|
2257
|
-
}], maxHeight: [{
|
|
2258
|
-
type: Input
|
|
2259
|
-
}], blockSize: [{
|
|
2260
|
-
type: Input
|
|
2261
|
-
}], minBlockSize: [{
|
|
2262
|
-
type: Input
|
|
2263
|
-
}], maxBlockSize: [{
|
|
2264
|
-
type: Input
|
|
2265
|
-
}], padding: [{
|
|
2266
|
-
type: Input
|
|
2267
|
-
}], paddingInline: [{
|
|
2268
|
-
type: Input
|
|
2269
|
-
}], paddingBlock: [{
|
|
2270
|
-
type: Input
|
|
2271
|
-
}], gdsUiState: [{
|
|
2272
|
-
type: Output
|
|
2273
|
-
}], gdsClose: [{
|
|
2274
|
-
type: Output
|
|
2275
|
-
}], gdsShow: [{
|
|
2276
|
-
type: Output
|
|
2277
|
-
}] } });
|
|
2278
|
-
|
|
2279
|
-
/**
|
|
2280
|
-
* GdsDialogComponent - Angular wrapper for gds-dialog
|
|
2281
|
-
*
|
|
2282
|
-
*
|
|
2283
|
-
* Auto-generated from Custom Elements Manifest
|
|
2284
|
-
*/
|
|
2285
|
-
|
|
2286
2168
|
/**
|
|
2287
2169
|
* Angular wrapper for the gds-div web component
|
|
2288
2170
|
*
|
|
@@ -2533,6 +2415,124 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2533
2415
|
* Auto-generated from Custom Elements Manifest
|
|
2534
2416
|
*/
|
|
2535
2417
|
|
|
2418
|
+
/**
|
|
2419
|
+
* Angular wrapper for the gds-dialog web component
|
|
2420
|
+
*
|
|
2421
|
+
*/
|
|
2422
|
+
let GdsDialogComponent = class GdsDialogComponent {
|
|
2423
|
+
get element() {
|
|
2424
|
+
return this.elementRef.nativeElement;
|
|
2425
|
+
}
|
|
2426
|
+
constructor() {
|
|
2427
|
+
this.elementRef = inject((ElementRef));
|
|
2428
|
+
this.zone = inject(NgZone);
|
|
2429
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
2430
|
+
/** Fired when the dialog is opened or closed. Can be cancelled to prevent the dialog from closing. */
|
|
2431
|
+
this.gdsUiState = new EventEmitter();
|
|
2432
|
+
/** Fired when the dialog is closed */
|
|
2433
|
+
this.gdsClose = new EventEmitter();
|
|
2434
|
+
/** Fired when the dialog is opened */
|
|
2435
|
+
this.gdsShow = new EventEmitter();
|
|
2436
|
+
this.cdr.detach();
|
|
2437
|
+
}
|
|
2438
|
+
ngOnInit() {
|
|
2439
|
+
// Define the custom element
|
|
2440
|
+
try {
|
|
2441
|
+
GdsDialog.define();
|
|
2442
|
+
}
|
|
2443
|
+
catch (e) {
|
|
2444
|
+
// Component may not be available in this version of green-core
|
|
2445
|
+
console.warn('Failed to define gds-dialog:', e);
|
|
2446
|
+
}
|
|
2447
|
+
// Set up event listeners
|
|
2448
|
+
this.elementRef.nativeElement.addEventListener('gds-ui-state', (event) => {
|
|
2449
|
+
this.gdsUiState.emit(event);
|
|
2450
|
+
});
|
|
2451
|
+
this.elementRef.nativeElement.addEventListener('gds-close', (event) => {
|
|
2452
|
+
this.gdsClose.emit(event);
|
|
2453
|
+
});
|
|
2454
|
+
this.elementRef.nativeElement.addEventListener('gds-show', (event) => {
|
|
2455
|
+
this.gdsShow.emit(event);
|
|
2456
|
+
});
|
|
2457
|
+
}
|
|
2458
|
+
ngOnChanges(changes) {
|
|
2459
|
+
// Implementation added by @ProxyInputs decorator
|
|
2460
|
+
}
|
|
2461
|
+
ngAfterViewInit() {
|
|
2462
|
+
// Implementation added by @ProxyInputs decorator
|
|
2463
|
+
}
|
|
2464
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2465
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsDialogComponent, isStandalone: true, selector: "gds-dialog", inputs: { open: ["open", "open", booleanAttribute], heading: "heading", variant: "variant", placement: "placement", scrollable: ["scrollable", "scrollable", booleanAttribute], width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock" }, outputs: { gdsUiState: "gdsUiState", gdsClose: "gdsClose", gdsShow: "gdsShow" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2466
|
+
};
|
|
2467
|
+
GdsDialogComponent = __decorate([
|
|
2468
|
+
ProxyInputs(['open', 'heading', 'variant', 'placement', 'scrollable', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'padding', 'padding-inline', 'padding-block']),
|
|
2469
|
+
__metadata("design:paramtypes", [])
|
|
2470
|
+
], GdsDialogComponent);
|
|
2471
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsDialogComponent, decorators: [{
|
|
2472
|
+
type: Component,
|
|
2473
|
+
args: [{
|
|
2474
|
+
selector: 'gds-dialog',
|
|
2475
|
+
standalone: true,
|
|
2476
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2477
|
+
template: `<ng-content></ng-content>`
|
|
2478
|
+
}]
|
|
2479
|
+
}], ctorParameters: () => [], propDecorators: { open: [{
|
|
2480
|
+
type: Input,
|
|
2481
|
+
args: [{ transform: booleanAttribute }]
|
|
2482
|
+
}], heading: [{
|
|
2483
|
+
type: Input
|
|
2484
|
+
}], variant: [{
|
|
2485
|
+
type: Input
|
|
2486
|
+
}], placement: [{
|
|
2487
|
+
type: Input
|
|
2488
|
+
}], scrollable: [{
|
|
2489
|
+
type: Input,
|
|
2490
|
+
args: [{ transform: booleanAttribute }]
|
|
2491
|
+
}], width: [{
|
|
2492
|
+
type: Input
|
|
2493
|
+
}], minWidth: [{
|
|
2494
|
+
type: Input
|
|
2495
|
+
}], maxWidth: [{
|
|
2496
|
+
type: Input
|
|
2497
|
+
}], inlineSize: [{
|
|
2498
|
+
type: Input
|
|
2499
|
+
}], minInlineSize: [{
|
|
2500
|
+
type: Input
|
|
2501
|
+
}], maxInlineSize: [{
|
|
2502
|
+
type: Input
|
|
2503
|
+
}], height: [{
|
|
2504
|
+
type: Input
|
|
2505
|
+
}], minHeight: [{
|
|
2506
|
+
type: Input
|
|
2507
|
+
}], maxHeight: [{
|
|
2508
|
+
type: Input
|
|
2509
|
+
}], blockSize: [{
|
|
2510
|
+
type: Input
|
|
2511
|
+
}], minBlockSize: [{
|
|
2512
|
+
type: Input
|
|
2513
|
+
}], maxBlockSize: [{
|
|
2514
|
+
type: Input
|
|
2515
|
+
}], padding: [{
|
|
2516
|
+
type: Input
|
|
2517
|
+
}], paddingInline: [{
|
|
2518
|
+
type: Input
|
|
2519
|
+
}], paddingBlock: [{
|
|
2520
|
+
type: Input
|
|
2521
|
+
}], gdsUiState: [{
|
|
2522
|
+
type: Output
|
|
2523
|
+
}], gdsClose: [{
|
|
2524
|
+
type: Output
|
|
2525
|
+
}], gdsShow: [{
|
|
2526
|
+
type: Output
|
|
2527
|
+
}] } });
|
|
2528
|
+
|
|
2529
|
+
/**
|
|
2530
|
+
* GdsDialogComponent - Angular wrapper for gds-dialog
|
|
2531
|
+
*
|
|
2532
|
+
*
|
|
2533
|
+
* Auto-generated from Custom Elements Manifest
|
|
2534
|
+
*/
|
|
2535
|
+
|
|
2536
2536
|
/**
|
|
2537
2537
|
* Angular wrapper for the gds-dropdown web component
|
|
2538
2538
|
*
|
|
@@ -2881,98 +2881,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2881
2881
|
* Auto-generated from Custom Elements Manifest
|
|
2882
2882
|
*/
|
|
2883
2883
|
|
|
2884
|
-
/**
|
|
2885
|
-
* Angular wrapper for the gds-filter-chips web component
|
|
2886
|
-
*
|
|
2887
|
-
*/
|
|
2888
|
-
let GdsFilterChipsComponent = class GdsFilterChipsComponent extends GdsFormControlBase {
|
|
2889
|
-
constructor() {
|
|
2890
|
-
super(...arguments);
|
|
2891
|
-
/** When a chip is clicked */
|
|
2892
|
-
this.change = new EventEmitter();
|
|
2893
|
-
}
|
|
2894
|
-
get element() {
|
|
2895
|
-
return this.elementRef.nativeElement;
|
|
2896
|
-
}
|
|
2897
|
-
ngOnInit() {
|
|
2898
|
-
super.ngOnInit();
|
|
2899
|
-
// Define the custom element
|
|
2900
|
-
try {
|
|
2901
|
-
GdsFilterChips.define();
|
|
2902
|
-
}
|
|
2903
|
-
catch (e) {
|
|
2904
|
-
// Component may not be available in this version of green-core
|
|
2905
|
-
console.warn('Failed to define gds-filter-chips:', e);
|
|
2906
|
-
}
|
|
2907
|
-
}
|
|
2908
|
-
ngOnChanges(changes) {
|
|
2909
|
-
// Implementation added by @ProxyInputs decorator
|
|
2910
|
-
}
|
|
2911
|
-
ngAfterViewInit() {
|
|
2912
|
-
super.ngAfterViewInit();
|
|
2913
|
-
}
|
|
2914
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsFilterChipsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2915
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsFilterChipsComponent, isStandalone: true, selector: "gds-filter-chips", inputs: { value: "value", multiple: ["multiple", "multiple", booleanAttribute], label: "label", rowCollapse: ["rowCollapse", "rowCollapse", booleanAttribute], validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", name: "name", disabled: ["disabled", "disabled", booleanAttribute] }, outputs: { change: "change" }, providers: [
|
|
2916
|
-
{
|
|
2917
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2918
|
-
useExisting: forwardRef(() => GdsFilterChipsComponent),
|
|
2919
|
-
multi: true,
|
|
2920
|
-
},
|
|
2921
|
-
], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2922
|
-
};
|
|
2923
|
-
GdsFilterChipsComponent = __decorate([
|
|
2924
|
-
ProxyInputs(['value', 'multiple', 'label', 'rowCollapse', 'validator', 'required', 'errorMessage', 'invalid', 'name', 'disabled'])
|
|
2925
|
-
], GdsFilterChipsComponent);
|
|
2926
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsFilterChipsComponent, decorators: [{
|
|
2927
|
-
type: Component,
|
|
2928
|
-
args: [{
|
|
2929
|
-
selector: 'gds-filter-chips',
|
|
2930
|
-
standalone: true,
|
|
2931
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2932
|
-
template: `<ng-content></ng-content>`,
|
|
2933
|
-
providers: [
|
|
2934
|
-
{
|
|
2935
|
-
provide: NG_VALUE_ACCESSOR,
|
|
2936
|
-
useExisting: forwardRef(() => GdsFilterChipsComponent),
|
|
2937
|
-
multi: true,
|
|
2938
|
-
},
|
|
2939
|
-
]
|
|
2940
|
-
}]
|
|
2941
|
-
}], propDecorators: { value: [{
|
|
2942
|
-
type: Input
|
|
2943
|
-
}], multiple: [{
|
|
2944
|
-
type: Input,
|
|
2945
|
-
args: [{ transform: booleanAttribute }]
|
|
2946
|
-
}], label: [{
|
|
2947
|
-
type: Input
|
|
2948
|
-
}], rowCollapse: [{
|
|
2949
|
-
type: Input,
|
|
2950
|
-
args: [{ transform: booleanAttribute }]
|
|
2951
|
-
}], validator: [{
|
|
2952
|
-
type: Input
|
|
2953
|
-
}], required: [{
|
|
2954
|
-
type: Input,
|
|
2955
|
-
args: [{ transform: booleanAttribute }]
|
|
2956
|
-
}], errorMessage: [{
|
|
2957
|
-
type: Input
|
|
2958
|
-
}], invalid: [{
|
|
2959
|
-
type: Input
|
|
2960
|
-
}], name: [{
|
|
2961
|
-
type: Input
|
|
2962
|
-
}], disabled: [{
|
|
2963
|
-
type: Input,
|
|
2964
|
-
args: [{ transform: booleanAttribute }]
|
|
2965
|
-
}], change: [{
|
|
2966
|
-
type: Output
|
|
2967
|
-
}] } });
|
|
2968
|
-
|
|
2969
|
-
/**
|
|
2970
|
-
* GdsFilterChipsComponent - Angular wrapper for gds-filter-chips
|
|
2971
|
-
*
|
|
2972
|
-
*
|
|
2973
|
-
* Auto-generated from Custom Elements Manifest
|
|
2974
|
-
*/
|
|
2975
|
-
|
|
2976
2884
|
/**
|
|
2977
2885
|
* Angular wrapper for the gds-flex web component
|
|
2978
2886
|
*
|
|
@@ -3149,6 +3057,98 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
3149
3057
|
* Auto-generated from Custom Elements Manifest
|
|
3150
3058
|
*/
|
|
3151
3059
|
|
|
3060
|
+
/**
|
|
3061
|
+
* Angular wrapper for the gds-filter-chips web component
|
|
3062
|
+
*
|
|
3063
|
+
*/
|
|
3064
|
+
let GdsFilterChipsComponent = class GdsFilterChipsComponent extends GdsFormControlBase {
|
|
3065
|
+
constructor() {
|
|
3066
|
+
super(...arguments);
|
|
3067
|
+
/** When a chip is clicked */
|
|
3068
|
+
this.change = new EventEmitter();
|
|
3069
|
+
}
|
|
3070
|
+
get element() {
|
|
3071
|
+
return this.elementRef.nativeElement;
|
|
3072
|
+
}
|
|
3073
|
+
ngOnInit() {
|
|
3074
|
+
super.ngOnInit();
|
|
3075
|
+
// Define the custom element
|
|
3076
|
+
try {
|
|
3077
|
+
GdsFilterChips.define();
|
|
3078
|
+
}
|
|
3079
|
+
catch (e) {
|
|
3080
|
+
// Component may not be available in this version of green-core
|
|
3081
|
+
console.warn('Failed to define gds-filter-chips:', e);
|
|
3082
|
+
}
|
|
3083
|
+
}
|
|
3084
|
+
ngOnChanges(changes) {
|
|
3085
|
+
// Implementation added by @ProxyInputs decorator
|
|
3086
|
+
}
|
|
3087
|
+
ngAfterViewInit() {
|
|
3088
|
+
super.ngAfterViewInit();
|
|
3089
|
+
}
|
|
3090
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsFilterChipsComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3091
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsFilterChipsComponent, isStandalone: true, selector: "gds-filter-chips", inputs: { value: "value", multiple: ["multiple", "multiple", booleanAttribute], label: "label", rowCollapse: ["rowCollapse", "rowCollapse", booleanAttribute], validator: "validator", required: ["required", "required", booleanAttribute], errorMessage: "errorMessage", invalid: "invalid", name: "name", disabled: ["disabled", "disabled", booleanAttribute] }, outputs: { change: "change" }, providers: [
|
|
3092
|
+
{
|
|
3093
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3094
|
+
useExisting: forwardRef(() => GdsFilterChipsComponent),
|
|
3095
|
+
multi: true,
|
|
3096
|
+
},
|
|
3097
|
+
], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
3098
|
+
};
|
|
3099
|
+
GdsFilterChipsComponent = __decorate([
|
|
3100
|
+
ProxyInputs(['value', 'multiple', 'label', 'rowCollapse', 'validator', 'required', 'errorMessage', 'invalid', 'name', 'disabled'])
|
|
3101
|
+
], GdsFilterChipsComponent);
|
|
3102
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsFilterChipsComponent, decorators: [{
|
|
3103
|
+
type: Component,
|
|
3104
|
+
args: [{
|
|
3105
|
+
selector: 'gds-filter-chips',
|
|
3106
|
+
standalone: true,
|
|
3107
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3108
|
+
template: `<ng-content></ng-content>`,
|
|
3109
|
+
providers: [
|
|
3110
|
+
{
|
|
3111
|
+
provide: NG_VALUE_ACCESSOR,
|
|
3112
|
+
useExisting: forwardRef(() => GdsFilterChipsComponent),
|
|
3113
|
+
multi: true,
|
|
3114
|
+
},
|
|
3115
|
+
]
|
|
3116
|
+
}]
|
|
3117
|
+
}], propDecorators: { value: [{
|
|
3118
|
+
type: Input
|
|
3119
|
+
}], multiple: [{
|
|
3120
|
+
type: Input,
|
|
3121
|
+
args: [{ transform: booleanAttribute }]
|
|
3122
|
+
}], label: [{
|
|
3123
|
+
type: Input
|
|
3124
|
+
}], rowCollapse: [{
|
|
3125
|
+
type: Input,
|
|
3126
|
+
args: [{ transform: booleanAttribute }]
|
|
3127
|
+
}], validator: [{
|
|
3128
|
+
type: Input
|
|
3129
|
+
}], required: [{
|
|
3130
|
+
type: Input,
|
|
3131
|
+
args: [{ transform: booleanAttribute }]
|
|
3132
|
+
}], errorMessage: [{
|
|
3133
|
+
type: Input
|
|
3134
|
+
}], invalid: [{
|
|
3135
|
+
type: Input
|
|
3136
|
+
}], name: [{
|
|
3137
|
+
type: Input
|
|
3138
|
+
}], disabled: [{
|
|
3139
|
+
type: Input,
|
|
3140
|
+
args: [{ transform: booleanAttribute }]
|
|
3141
|
+
}], change: [{
|
|
3142
|
+
type: Output
|
|
3143
|
+
}] } });
|
|
3144
|
+
|
|
3145
|
+
/**
|
|
3146
|
+
* GdsFilterChipsComponent - Angular wrapper for gds-filter-chips
|
|
3147
|
+
*
|
|
3148
|
+
*
|
|
3149
|
+
* Auto-generated from Custom Elements Manifest
|
|
3150
|
+
*/
|
|
3151
|
+
|
|
3152
3152
|
/**
|
|
3153
3153
|
* Angular wrapper for the gds-form-summary web component
|
|
3154
3154
|
*
|
|
@@ -7210,10 +7210,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
7210
7210
|
*/
|
|
7211
7211
|
|
|
7212
7212
|
/**
|
|
7213
|
-
* Angular wrapper for the gds-sensitive-
|
|
7213
|
+
* Angular wrapper for the gds-sensitive-date web component
|
|
7214
7214
|
*
|
|
7215
7215
|
*/
|
|
7216
|
-
let
|
|
7216
|
+
let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
|
|
7217
7217
|
get element() {
|
|
7218
7218
|
return this.elementRef.nativeElement;
|
|
7219
7219
|
}
|
|
@@ -7226,11 +7226,11 @@ let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
|
|
|
7226
7226
|
ngOnInit() {
|
|
7227
7227
|
// Define the custom element
|
|
7228
7228
|
try {
|
|
7229
|
-
|
|
7229
|
+
GdsSensitiveDate.define();
|
|
7230
7230
|
}
|
|
7231
7231
|
catch (e) {
|
|
7232
7232
|
// Component may not be available in this version of green-core
|
|
7233
|
-
console.warn('Failed to define gds-sensitive-
|
|
7233
|
+
console.warn('Failed to define gds-sensitive-date:', e);
|
|
7234
7234
|
}
|
|
7235
7235
|
}
|
|
7236
7236
|
ngOnChanges(changes) {
|
|
@@ -7239,17 +7239,17 @@ let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
|
|
|
7239
7239
|
ngAfterViewInit() {
|
|
7240
7240
|
// Implementation added by @ProxyInputs decorator
|
|
7241
7241
|
}
|
|
7242
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type:
|
|
7243
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type:
|
|
7242
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7243
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsSensitiveDateComponent, isStandalone: true, selector: "gds-sensitive-date", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", format: "format", locale: "locale", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7244
7244
|
};
|
|
7245
|
-
|
|
7246
|
-
ProxyInputs(['hide', 'value', '
|
|
7245
|
+
GdsSensitiveDateComponent = __decorate([
|
|
7246
|
+
ProxyInputs(['hide', 'value', 'format', 'locale', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events']),
|
|
7247
7247
|
__metadata("design:paramtypes", [])
|
|
7248
|
-
],
|
|
7249
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type:
|
|
7248
|
+
], GdsSensitiveDateComponent);
|
|
7249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveDateComponent, decorators: [{
|
|
7250
7250
|
type: Component,
|
|
7251
7251
|
args: [{
|
|
7252
|
-
selector: 'gds-sensitive-
|
|
7252
|
+
selector: 'gds-sensitive-date',
|
|
7253
7253
|
standalone: true,
|
|
7254
7254
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7255
7255
|
template: `<ng-content></ng-content>`
|
|
@@ -7259,11 +7259,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
7259
7259
|
args: [{ transform: booleanAttribute }]
|
|
7260
7260
|
}], value: [{
|
|
7261
7261
|
type: Input
|
|
7262
|
-
}],
|
|
7263
|
-
type: Input
|
|
7264
|
-
}], currency: [{
|
|
7262
|
+
}], format: [{
|
|
7265
7263
|
type: Input
|
|
7266
|
-
}],
|
|
7264
|
+
}], locale: [{
|
|
7267
7265
|
type: Input
|
|
7268
7266
|
}], tag: [{
|
|
7269
7267
|
type: Input
|
|
@@ -7398,17 +7396,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
7398
7396
|
}] } });
|
|
7399
7397
|
|
|
7400
7398
|
/**
|
|
7401
|
-
*
|
|
7399
|
+
* GdsSensitiveDateComponent - Angular wrapper for gds-sensitive-date
|
|
7402
7400
|
*
|
|
7403
7401
|
*
|
|
7404
7402
|
* Auto-generated from Custom Elements Manifest
|
|
7405
7403
|
*/
|
|
7406
7404
|
|
|
7407
7405
|
/**
|
|
7408
|
-
* Angular wrapper for the gds-sensitive-
|
|
7406
|
+
* Angular wrapper for the gds-sensitive-number web component
|
|
7409
7407
|
*
|
|
7410
7408
|
*/
|
|
7411
|
-
let
|
|
7409
|
+
let GdsSensitiveNumberComponent = class GdsSensitiveNumberComponent {
|
|
7412
7410
|
get element() {
|
|
7413
7411
|
return this.elementRef.nativeElement;
|
|
7414
7412
|
}
|
|
@@ -7421,11 +7419,11 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
|
|
|
7421
7419
|
ngOnInit() {
|
|
7422
7420
|
// Define the custom element
|
|
7423
7421
|
try {
|
|
7424
|
-
|
|
7422
|
+
GdsSensitiveNumber.define();
|
|
7425
7423
|
}
|
|
7426
7424
|
catch (e) {
|
|
7427
7425
|
// Component may not be available in this version of green-core
|
|
7428
|
-
console.warn('Failed to define gds-sensitive-
|
|
7426
|
+
console.warn('Failed to define gds-sensitive-number:', e);
|
|
7429
7427
|
}
|
|
7430
7428
|
}
|
|
7431
7429
|
ngOnChanges(changes) {
|
|
@@ -7434,17 +7432,17 @@ let GdsSensitiveDateComponent = class GdsSensitiveDateComponent {
|
|
|
7434
7432
|
ngAfterViewInit() {
|
|
7435
7433
|
// Implementation added by @ProxyInputs decorator
|
|
7436
7434
|
}
|
|
7437
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type:
|
|
7438
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type:
|
|
7435
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveNumberComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7436
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "19.2.18", type: GdsSensitiveNumberComponent, isStandalone: true, selector: "gds-sensitive-number", inputs: { hide: ["hide", "hide", booleanAttribute], value: "value", locale: "locale", currency: "currency", decimals: "decimals", tag: "tag", font: "font", fontWeight: "fontWeight", textTransform: "textTransform", textDecoration: "textDecoration", lines: "lines", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", inlineSize: "inlineSize", minInlineSize: "minInlineSize", maxInlineSize: "maxInlineSize", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", blockSize: "blockSize", minBlockSize: "minBlockSize", maxBlockSize: "maxBlockSize", margin: "margin", marginInline: "marginInline", marginBlock: "marginBlock", padding: "padding", paddingInline: "paddingInline", paddingBlock: "paddingBlock", alignSelf: "alignSelf", justifySelf: "justifySelf", placeSelf: "placeSelf", gridColumn: "gridColumn", gridRow: "gridRow", gridArea: "gridArea", flex: "flex", order: "order", position: "position", transform: "transform", inset: "inset", display: "display", level: "level", color: "color", background: "background", border: "border", borderColor: "borderColor", borderWidth: "borderWidth", borderStyle: "borderStyle", borderRadius: "borderRadius", boxShadow: "boxShadow", opacity: "opacity", overflow: "overflow", boxSizing: "boxSizing", zIndex: "zIndex", textAlign: "textAlign", textWrap: "textWrap", overflowWrap: "overflowWrap", whiteSpace: "whiteSpace", gap: "gap", alignItems: "alignItems", alignContent: "alignContent", justifyContent: "justifyContent", justifyItems: "justifyItems", flexDirection: "flexDirection", flexWrap: "flexWrap", placeItems: "placeItems", placeContent: "placeContent", aspectRatio: "aspectRatio", cursor: "cursor", pointerEvents: "pointerEvents" }, usesOnChanges: true, ngImport: i0, template: `<ng-content></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7439
7437
|
};
|
|
7440
|
-
|
|
7441
|
-
ProxyInputs(['hide', 'value', '
|
|
7438
|
+
GdsSensitiveNumberComponent = __decorate([
|
|
7439
|
+
ProxyInputs(['hide', 'value', 'locale', 'currency', 'decimals', 'tag', 'font', 'font-weight', 'text-transform', 'text-decoration', 'lines', 'width', 'min-width', 'max-width', 'inline-size', 'min-inline-size', 'max-inline-size', 'height', 'min-height', 'max-height', 'block-size', 'min-block-size', 'max-block-size', 'margin', 'margin-inline', 'margin-block', 'padding', 'padding-inline', 'padding-block', 'align-self', 'justify-self', 'place-self', 'grid-column', 'grid-row', 'grid-area', 'flex', 'order', 'position', 'transform', 'inset', 'display', 'level', 'color', 'background', 'border', 'border-color', 'border-width', 'border-style', 'border-radius', 'box-shadow', 'opacity', 'overflow', 'box-sizing', 'z-index', 'text-align', 'text-wrap', 'overflow-wrap', 'white-space', 'gap', 'align-items', 'align-content', 'justify-content', 'justify-items', 'flex-direction', 'flex-wrap', 'place-items', 'place-content', 'aspect-ratio', 'cursor', 'pointer-events']),
|
|
7442
7440
|
__metadata("design:paramtypes", [])
|
|
7443
|
-
],
|
|
7444
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type:
|
|
7441
|
+
], GdsSensitiveNumberComponent);
|
|
7442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GdsSensitiveNumberComponent, decorators: [{
|
|
7445
7443
|
type: Component,
|
|
7446
7444
|
args: [{
|
|
7447
|
-
selector: 'gds-sensitive-
|
|
7445
|
+
selector: 'gds-sensitive-number',
|
|
7448
7446
|
standalone: true,
|
|
7449
7447
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7450
7448
|
template: `<ng-content></ng-content>`
|
|
@@ -7454,10 +7452,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
7454
7452
|
args: [{ transform: booleanAttribute }]
|
|
7455
7453
|
}], value: [{
|
|
7456
7454
|
type: Input
|
|
7457
|
-
}], format: [{
|
|
7458
|
-
type: Input
|
|
7459
7455
|
}], locale: [{
|
|
7460
7456
|
type: Input
|
|
7457
|
+
}], currency: [{
|
|
7458
|
+
type: Input
|
|
7459
|
+
}], decimals: [{
|
|
7460
|
+
type: Input
|
|
7461
7461
|
}], tag: [{
|
|
7462
7462
|
type: Input
|
|
7463
7463
|
}], font: [{
|
|
@@ -7591,7 +7591,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
7591
7591
|
}] } });
|
|
7592
7592
|
|
|
7593
7593
|
/**
|
|
7594
|
-
*
|
|
7594
|
+
* GdsSensitiveNumberComponent - Angular wrapper for gds-sensitive-number
|
|
7595
7595
|
*
|
|
7596
7596
|
*
|
|
7597
7597
|
* Auto-generated from Custom Elements Manifest
|
|
@@ -37609,13 +37609,13 @@ class GreenCoreNgModule {
|
|
|
37609
37609
|
GdsContextMenuComponent,
|
|
37610
37610
|
GdsDatepickerComponent,
|
|
37611
37611
|
GdsDetailsComponent,
|
|
37612
|
-
GdsDialogComponent,
|
|
37613
37612
|
GdsDivComponent,
|
|
37614
37613
|
GdsDividerComponent,
|
|
37614
|
+
GdsDialogComponent,
|
|
37615
37615
|
GdsDropdownComponent,
|
|
37616
37616
|
GdsFabComponent,
|
|
37617
|
-
GdsFilterChipsComponent,
|
|
37618
37617
|
GdsFlexComponent,
|
|
37618
|
+
GdsFilterChipsComponent,
|
|
37619
37619
|
GdsFormSummaryComponent,
|
|
37620
37620
|
GdsGridComponent,
|
|
37621
37621
|
GdsGroupedListComponent,
|
|
@@ -37650,8 +37650,8 @@ class GreenCoreNgModule {
|
|
|
37650
37650
|
GdsRadioGroupComponent,
|
|
37651
37651
|
GdsSegmentComponent,
|
|
37652
37652
|
GdsSensitiveAccountComponent,
|
|
37653
|
-
GdsSensitiveNumberComponent,
|
|
37654
37653
|
GdsSensitiveDateComponent,
|
|
37654
|
+
GdsSensitiveNumberComponent,
|
|
37655
37655
|
IconAiComponent,
|
|
37656
37656
|
IconAirplaneUpComponent,
|
|
37657
37657
|
IconArchiveComponent,
|
|
@@ -38002,13 +38002,13 @@ class GreenCoreNgModule {
|
|
|
38002
38002
|
GdsContextMenuComponent,
|
|
38003
38003
|
GdsDatepickerComponent,
|
|
38004
38004
|
GdsDetailsComponent,
|
|
38005
|
-
GdsDialogComponent,
|
|
38006
38005
|
GdsDivComponent,
|
|
38007
38006
|
GdsDividerComponent,
|
|
38007
|
+
GdsDialogComponent,
|
|
38008
38008
|
GdsDropdownComponent,
|
|
38009
38009
|
GdsFabComponent,
|
|
38010
|
-
GdsFilterChipsComponent,
|
|
38011
38010
|
GdsFlexComponent,
|
|
38011
|
+
GdsFilterChipsComponent,
|
|
38012
38012
|
GdsFormSummaryComponent,
|
|
38013
38013
|
GdsGridComponent,
|
|
38014
38014
|
GdsGroupedListComponent,
|
|
@@ -38043,8 +38043,8 @@ class GreenCoreNgModule {
|
|
|
38043
38043
|
GdsRadioGroupComponent,
|
|
38044
38044
|
GdsSegmentComponent,
|
|
38045
38045
|
GdsSensitiveAccountComponent,
|
|
38046
|
-
GdsSensitiveNumberComponent,
|
|
38047
38046
|
GdsSensitiveDateComponent,
|
|
38047
|
+
GdsSensitiveNumberComponent,
|
|
38048
38048
|
IconAiComponent,
|
|
38049
38049
|
IconAirplaneUpComponent,
|
|
38050
38050
|
IconArchiveComponent,
|
|
@@ -38402,13 +38402,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
38402
38402
|
GdsContextMenuComponent,
|
|
38403
38403
|
GdsDatepickerComponent,
|
|
38404
38404
|
GdsDetailsComponent,
|
|
38405
|
-
GdsDialogComponent,
|
|
38406
38405
|
GdsDivComponent,
|
|
38407
38406
|
GdsDividerComponent,
|
|
38407
|
+
GdsDialogComponent,
|
|
38408
38408
|
GdsDropdownComponent,
|
|
38409
38409
|
GdsFabComponent,
|
|
38410
|
-
GdsFilterChipsComponent,
|
|
38411
38410
|
GdsFlexComponent,
|
|
38411
|
+
GdsFilterChipsComponent,
|
|
38412
38412
|
GdsFormSummaryComponent,
|
|
38413
38413
|
GdsGridComponent,
|
|
38414
38414
|
GdsGroupedListComponent,
|
|
@@ -38443,8 +38443,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
38443
38443
|
GdsRadioGroupComponent,
|
|
38444
38444
|
GdsSegmentComponent,
|
|
38445
38445
|
GdsSensitiveAccountComponent,
|
|
38446
|
-
GdsSensitiveNumberComponent,
|
|
38447
38446
|
GdsSensitiveDateComponent,
|
|
38447
|
+
GdsSensitiveNumberComponent,
|
|
38448
38448
|
IconAiComponent,
|
|
38449
38449
|
IconAirplaneUpComponent,
|
|
38450
38450
|
IconArchiveComponent,
|
|
@@ -38798,13 +38798,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
38798
38798
|
GdsContextMenuComponent,
|
|
38799
38799
|
GdsDatepickerComponent,
|
|
38800
38800
|
GdsDetailsComponent,
|
|
38801
|
-
GdsDialogComponent,
|
|
38802
38801
|
GdsDivComponent,
|
|
38803
38802
|
GdsDividerComponent,
|
|
38803
|
+
GdsDialogComponent,
|
|
38804
38804
|
GdsDropdownComponent,
|
|
38805
38805
|
GdsFabComponent,
|
|
38806
|
-
GdsFilterChipsComponent,
|
|
38807
38806
|
GdsFlexComponent,
|
|
38807
|
+
GdsFilterChipsComponent,
|
|
38808
38808
|
GdsFormSummaryComponent,
|
|
38809
38809
|
GdsGridComponent,
|
|
38810
38810
|
GdsGroupedListComponent,
|
|
@@ -38839,8 +38839,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
38839
38839
|
GdsRadioGroupComponent,
|
|
38840
38840
|
GdsSegmentComponent,
|
|
38841
38841
|
GdsSensitiveAccountComponent,
|
|
38842
|
-
GdsSensitiveNumberComponent,
|
|
38843
38842
|
GdsSensitiveDateComponent,
|
|
38843
|
+
GdsSensitiveNumberComponent,
|
|
38844
38844
|
IconAiComponent,
|
|
38845
38845
|
IconAirplaneUpComponent,
|
|
38846
38846
|
IconArchiveComponent,
|