@corto-ai/gds-angular 2.1.3-test.2 → 2.1.3-test.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/assets/css/acctivity.css +13 -15
- package/assets/css/acctivity.css.map +1 -1
- package/assets/css/all.css +13 -15
- package/assets/css/all.css.map +1 -1
- package/assets/css/corto.css +13 -15
- package/assets/css/corto.css.map +1 -1
- package/assets/css/lawy.css +13 -15
- package/assets/css/lawy.css.map +1 -1
- package/assets/css/leap.css +13 -15
- package/assets/css/leap.css.map +1 -1
- package/assets/css/storybook.css +4 -0
- package/assets/scss/_mixins.scss +73 -13
- package/assets/scss/fonts/_inter.scss +1 -1
- package/assets/scss/fonts/_satoshi-black.scss +6 -6
- package/assets/scss/fonts/_satoshi-bold.scss +6 -6
- package/assets/scss/fonts/_satoshi-light.scss +6 -6
- package/assets/scss/fonts/_satoshi-medium.scss +6 -6
- package/assets/scss/fonts/_satoshi-regular.scss +6 -6
- package/assets/scss/fonts/_satoshi-variable.scss +6 -6
- package/assets/scss/mixins/buttons/_base.scss +1 -0
- package/assets/scss/utilities/_toastr.scss +12 -4
- package/assets/storybook/guide-actions.png +0 -0
- package/assets/storybook/guide-branding.png +0 -0
- package/assets/storybook/guide-code-examples.png +0 -0
- package/assets/storybook/guide-controls.png +0 -0
- package/assets/svg/filled/filled-document-multiple.svg +3 -1
- package/assets/svg/leap/leap-logo-matter-ai-background.svg +10 -0
- package/assets/svg/line/line-email-alert.svg +3 -0
- package/fesm2022/corto-ai-gds-angular.mjs +372 -123
- package/fesm2022/corto-ai-gds-angular.mjs.map +1 -1
- package/package.json +13 -14
- package/types/corto-ai-gds-angular.d.ts +88 -23
- package/assets/storybook/components.svg +0 -5
- package/assets/storybook/guide-viewport.png +0 -0
- package/assets/storybook/icon-filled.svg +0 -3
- package/assets/storybook/icon-general.svg +0 -8
- package/assets/storybook/icon-line.svg +0 -3
- package/assets/storybook/icon-twotone.svg +0 -4
- package/assets/storybook/logo.svg +0 -3
package/package.json
CHANGED
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corto-ai/gds-angular",
|
|
3
|
-
"version": "2.1.3-test.
|
|
4
|
-
"devVersion": "
|
|
3
|
+
"version": "2.1.3-test.5",
|
|
4
|
+
"devVersion": "5",
|
|
5
|
+
"exports": {
|
|
6
|
+
"./assets/*": "./assets/*",
|
|
7
|
+
"./package.json": {
|
|
8
|
+
"default": "./package.json"
|
|
9
|
+
},
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./types/corto-ai-gds-angular.d.ts",
|
|
12
|
+
"default": "./fesm2022/corto-ai-gds-angular.mjs"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
5
15
|
"peerDependencies": {
|
|
6
16
|
"@angular/common": "^21.0.0",
|
|
7
17
|
"@angular/core": "^21.0.0",
|
|
8
18
|
"@angular/cdk": "^21.0.0",
|
|
9
19
|
"@angular/forms": "^21.0.0",
|
|
10
20
|
"@angular/material": "^21.0.0",
|
|
11
|
-
"@angular/animations": "^21.0.0"
|
|
12
|
-
"@ngx-translate/core": "^17.0.0"
|
|
21
|
+
"@angular/animations": "^21.0.0"
|
|
13
22
|
},
|
|
14
23
|
"dependencies": {
|
|
15
24
|
"@ngneat/svg-icon": "^7.1.0",
|
|
@@ -17,22 +26,12 @@
|
|
|
17
26
|
"uuid": "^11.1.1",
|
|
18
27
|
"@ng-select/ng-select": "21.1.5",
|
|
19
28
|
"@ngneat/helipopper": "12.1.0",
|
|
20
|
-
"ngx-toastr": "19.0.0",
|
|
21
29
|
"tippy.js": "^6.3.7",
|
|
22
30
|
"ngx-device-detector": "11.0.0",
|
|
23
31
|
"tslib": "^2.3.0"
|
|
24
32
|
},
|
|
25
33
|
"module": "fesm2022/corto-ai-gds-angular.mjs",
|
|
26
34
|
"typings": "types/corto-ai-gds-angular.d.ts",
|
|
27
|
-
"exports": {
|
|
28
|
-
"./package.json": {
|
|
29
|
-
"default": "./package.json"
|
|
30
|
-
},
|
|
31
|
-
".": {
|
|
32
|
-
"types": "./types/corto-ai-gds-angular.d.ts",
|
|
33
|
-
"default": "./fesm2022/corto-ai-gds-angular.mjs"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
35
|
"sideEffects": false,
|
|
37
36
|
"type": "module"
|
|
38
37
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { TemplateRef, OnInit, OnDestroy, ElementRef, AfterViewInit, InjectionToken, EventEmitter, Signal, Type, ModelSignal, AfterContentInit, PipeTransform,
|
|
2
|
+
import { TemplateRef, OnInit, OnDestroy, ElementRef, AfterViewInit, InjectionToken, EventEmitter, Signal, Type, ModelSignal, AfterContentInit, PipeTransform, EnvironmentProviders, ModuleWithProviders } from '@angular/core';
|
|
3
3
|
import { SvgIcons, SvgIconComponent } from '@ngneat/svg-icon';
|
|
4
4
|
import * as i1 from '@angular/cdk/menu';
|
|
5
5
|
import { CdkMenuItem, CdkMenuTrigger } from '@angular/cdk/menu';
|
|
@@ -14,7 +14,6 @@ import * as i2 from '@ng-select/ng-select';
|
|
|
14
14
|
import { DropdownPosition, NgSelectComponent } from '@ng-select/ng-select';
|
|
15
15
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
16
16
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
17
|
-
import { ToastNoAnimation, IndividualConfig, ToastrService, ToastPackage, GlobalConfig } from 'ngx-toastr';
|
|
18
17
|
import * as _popperjs_core from '@popperjs/core';
|
|
19
18
|
import * as i1$2 from '@ngneat/helipopper';
|
|
20
19
|
import { TippyDirective } from '@ngneat/helipopper';
|
|
@@ -107,12 +106,13 @@ declare class ButtonBaseDirective {
|
|
|
107
106
|
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
108
107
|
size: _angular_core.InputSignal<"small" | "default" | "medium" | "large">;
|
|
109
108
|
variant: _angular_core.InputSignal<"default" | "primary" | "invisible">;
|
|
109
|
+
tabIndex: _angular_core.InputSignal<number>;
|
|
110
110
|
clicked: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
111
111
|
isDisabled: _angular_core.Signal<boolean>;
|
|
112
112
|
nativeElement: HTMLButtonElement;
|
|
113
113
|
handleClick(event: MouseEvent): void;
|
|
114
114
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonBaseDirective, never>;
|
|
115
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ButtonBaseDirective, never, never, { "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, never, true, never>;
|
|
115
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ButtonBaseDirective, never, never, { "busy": { "alias": "busy"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "tabIndex": { "alias": "tabIndex"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, never, true, never>;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
declare class GdsButtonComponent extends ButtonBaseDirective {
|
|
@@ -466,13 +466,14 @@ declare class GdsDropdownComponent {
|
|
|
466
466
|
horizontal: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
467
467
|
preventMobileStyling: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
468
468
|
allowDefaultTabBehavior: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
469
|
+
mobileCancelLabel: _angular_core.InputSignal<string>;
|
|
469
470
|
items: _angular_core.Signal<readonly CdkMenuItem[]>;
|
|
470
471
|
isMobile: _angular_core.WritableSignal<boolean>;
|
|
471
472
|
constructor();
|
|
472
473
|
setupKeyManager: _angular_core.EffectRef;
|
|
473
474
|
onKeydown: (event: KeyboardEvent) => void;
|
|
474
475
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsDropdownComponent, never>;
|
|
475
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsDropdownComponent, "gds-dropdown", never, { "triggerElement": { "alias": "triggerElement"; "required": false; "isSignal": true; }; "horizontal": { "alias": "horizontal"; "required": false; "isSignal": true; }; "preventMobileStyling": { "alias": "preventMobileStyling"; "required": false; "isSignal": true; }; "allowDefaultTabBehavior": { "alias": "allowDefaultTabBehavior"; "required": false; "isSignal": true; }; }, {}, ["items"], ["*"], true, [{ directive: typeof i1.CdkMenu; inputs: {}; outputs: { "closed": "closed"; }; }]>;
|
|
476
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsDropdownComponent, "gds-dropdown", never, { "triggerElement": { "alias": "triggerElement"; "required": false; "isSignal": true; }; "horizontal": { "alias": "horizontal"; "required": false; "isSignal": true; }; "preventMobileStyling": { "alias": "preventMobileStyling"; "required": false; "isSignal": true; }; "allowDefaultTabBehavior": { "alias": "allowDefaultTabBehavior"; "required": false; "isSignal": true; }; "mobileCancelLabel": { "alias": "mobileCancelLabel"; "required": false; "isSignal": true; }; }, {}, ["items"], ["*"], true, [{ directive: typeof i1.CdkMenu; inputs: {}; outputs: { "closed": "closed"; }; }]>;
|
|
476
477
|
}
|
|
477
478
|
|
|
478
479
|
declare class GdsEmptyStateComponent extends OnBrandChanged {
|
|
@@ -506,6 +507,7 @@ type FeatureDescriptionConfigVM = {
|
|
|
506
507
|
declare class GdsFeatureBlockComponent {
|
|
507
508
|
feature: _angular_core.InputSignal<FeatureDescriptionConfigVM>;
|
|
508
509
|
index: _angular_core.InputSignal<number>;
|
|
510
|
+
learnMoreLabel: _angular_core.InputSignal<string>;
|
|
509
511
|
icon: _angular_core.Signal<string>;
|
|
510
512
|
name: _angular_core.Signal<string>;
|
|
511
513
|
description: _angular_core.Signal<string>;
|
|
@@ -519,7 +521,7 @@ declare class GdsFeatureBlockComponent {
|
|
|
519
521
|
color: string;
|
|
520
522
|
}[];
|
|
521
523
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsFeatureBlockComponent, never>;
|
|
522
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsFeatureBlockComponent, "gds-feature-block", never, { "feature": { "alias": "feature"; "required": true; "isSignal": true; }; "index": { "alias": "index"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
524
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsFeatureBlockComponent, "gds-feature-block", never, { "feature": { "alias": "feature"; "required": true; "isSignal": true; }; "index": { "alias": "index"; "required": true; "isSignal": true; }; "learnMoreLabel": { "alias": "learnMoreLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
523
525
|
}
|
|
524
526
|
|
|
525
527
|
declare class GdsFeedbackButtonComponent extends ButtonBaseDirective {
|
|
@@ -538,10 +540,11 @@ declare class GdsFeedbackButtonComponent extends ButtonBaseDirective {
|
|
|
538
540
|
|
|
539
541
|
declare class GdsFilterChipComponent extends OnBrandChanged {
|
|
540
542
|
dismissDisabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
543
|
+
dismissAriaLabel: _angular_core.InputSignal<string>;
|
|
541
544
|
dismiss: EventEmitter<void>;
|
|
542
545
|
handleDismiss: () => void;
|
|
543
546
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsFilterChipComponent, never>;
|
|
544
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsFilterChipComponent, "gds-filter-chip, button[gds-filter-chip]", never, { "dismissDisabled": { "alias": "dismissDisabled"; "required": false; "isSignal": true; }; }, { "dismiss": "dismiss"; }, never, ["*"], true, never>;
|
|
547
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsFilterChipComponent, "gds-filter-chip, button[gds-filter-chip]", never, { "dismissDisabled": { "alias": "dismissDisabled"; "required": false; "isSignal": true; }; "dismissAriaLabel": { "alias": "dismissAriaLabel"; "required": false; "isSignal": true; }; }, { "dismiss": "dismiss"; }, never, ["*"], true, never>;
|
|
545
548
|
}
|
|
546
549
|
|
|
547
550
|
declare class GdsCheckboxComponent implements FormCheckboxControl {
|
|
@@ -632,6 +635,8 @@ declare class GdsFileUploadComponent extends GdsSignalFormControl<File[]> {
|
|
|
632
635
|
accept: _angular_core.InputSignal<string | undefined>;
|
|
633
636
|
multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
634
637
|
dragDropLabel: _angular_core.InputSignal<string>;
|
|
638
|
+
separatorLabel: _angular_core.InputSignal<string>;
|
|
639
|
+
browseLabel: _angular_core.InputSignal<string>;
|
|
635
640
|
inputAriaLabel: _angular_core.InputSignal<string>;
|
|
636
641
|
changed: _angular_core.OutputEmitterRef<File[]>;
|
|
637
642
|
fileUpload: _angular_core.Signal<ElementRef<HTMLInputElement>>;
|
|
@@ -641,7 +646,7 @@ declare class GdsFileUploadComponent extends GdsSignalFormControl<File[]> {
|
|
|
641
646
|
fileSelected(event: Event): void;
|
|
642
647
|
openFileSelector(): void;
|
|
643
648
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsFileUploadComponent, never>;
|
|
644
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsFileUploadComponent, "gds-file-upload", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "dragDropLabel": { "alias": "dragDropLabel"; "required": false; "isSignal": true; }; "inputAriaLabel": { "alias": "inputAriaLabel"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
649
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsFileUploadComponent, "gds-file-upload", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "dragDropLabel": { "alias": "dragDropLabel"; "required": false; "isSignal": true; }; "separatorLabel": { "alias": "separatorLabel"; "required": false; "isSignal": true; }; "browseLabel": { "alias": "browseLabel"; "required": false; "isSignal": true; }; "inputAriaLabel": { "alias": "inputAriaLabel"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "changed": "changed"; }, never, ["*"], true, never>;
|
|
645
650
|
}
|
|
646
651
|
|
|
647
652
|
declare class GdsFormControlComponent extends GdsSignalFormContainer {
|
|
@@ -942,7 +947,7 @@ declare class GdsSearchBarComponent<T> implements FormValueControl<string | null
|
|
|
942
947
|
leadingIcon: _angular_core.InputSignal<SvgIcons>;
|
|
943
948
|
bindValue: _angular_core.InputSignal<string>;
|
|
944
949
|
bindLabel: _angular_core.InputSignal<string>;
|
|
945
|
-
ariaLabel: _angular_core.InputSignal<string
|
|
950
|
+
ariaLabel: _angular_core.InputSignal<string>;
|
|
946
951
|
isDisabled: _angular_core.ModelSignal<boolean>;
|
|
947
952
|
suppressClearOnClose: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
948
953
|
loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -1041,22 +1046,81 @@ declare class GdsTimelineItemComponent {
|
|
|
1041
1046
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsTimelineItemComponent, "li[gds-timeline-item]", never, { "end": { "alias": "end"; "required": false; "isSignal": true; }; "start": { "alias": "start"; "required": false; "isSignal": true; }; "connectorType": { "alias": "connectorType"; "required": false; "isSignal": true; }; }, {}, never, ["[tag]", "*"], true, never>;
|
|
1042
1047
|
}
|
|
1043
1048
|
|
|
1049
|
+
type GdsToastType = 'success' | 'error' | 'info' | 'warning' | 'show';
|
|
1050
|
+
type GdsToastStatus = 'default' | 'success' | 'warning' | 'danger';
|
|
1044
1051
|
type GdsToastConfigPayload = {
|
|
1045
1052
|
actionLabel?: string;
|
|
1046
1053
|
actionAriaLabel?: string;
|
|
1047
1054
|
dismissAriaLabel?: string;
|
|
1048
1055
|
};
|
|
1056
|
+
/** Per-toast overrides. */
|
|
1057
|
+
type GdsToastConfig = {
|
|
1058
|
+
payload?: GdsToastConfigPayload;
|
|
1059
|
+
timeOut?: number;
|
|
1060
|
+
/** Time to close after the pointer leaves the toast. */
|
|
1061
|
+
extendedTimeOut?: number;
|
|
1062
|
+
disableTimeOut?: boolean;
|
|
1063
|
+
tapToDismiss?: boolean;
|
|
1064
|
+
positionClass?: string;
|
|
1065
|
+
};
|
|
1066
|
+
type GdsToastGlobalConfig = GdsToastConfig & {
|
|
1067
|
+
preventDuplicates?: boolean;
|
|
1068
|
+
};
|
|
1069
|
+
type GdsActiveToast = {
|
|
1070
|
+
toastId: number;
|
|
1071
|
+
message: string;
|
|
1072
|
+
title: string;
|
|
1073
|
+
toastType: GdsToastType;
|
|
1074
|
+
onAction: Observable<unknown>;
|
|
1075
|
+
};
|
|
1076
|
+
type GdsToastInstance = {
|
|
1077
|
+
toastId: number;
|
|
1078
|
+
toastType: GdsToastType;
|
|
1079
|
+
title: string;
|
|
1080
|
+
message: string;
|
|
1081
|
+
options: GdsToastConfig;
|
|
1082
|
+
};
|
|
1083
|
+
declare const GDS_TOASTER_CONFIG: InjectionToken<Required<GdsToastGlobalConfig>>;
|
|
1084
|
+
declare const GDS_TOAST_CONTAINER: InjectionToken<Type<unknown>>;
|
|
1085
|
+
declare const provideToaster: (customOptions?: Partial<GdsToastGlobalConfig>) => EnvironmentProviders;
|
|
1049
1086
|
|
|
1050
|
-
declare class GdsToastComponent
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1087
|
+
declare class GdsToastComponent {
|
|
1088
|
+
#private;
|
|
1089
|
+
toast: _angular_core.InputSignal<GdsToastInstance>;
|
|
1090
|
+
status: _angular_core.Signal<GdsToastStatus>;
|
|
1091
|
+
title: _angular_core.Signal<string>;
|
|
1092
|
+
message: _angular_core.Signal<string>;
|
|
1093
|
+
actionLabel: _angular_core.Signal<string | undefined>;
|
|
1094
|
+
dismissAriaLabel: _angular_core.Signal<string>;
|
|
1095
|
+
actionAriaLabel: _angular_core.Signal<string | undefined>;
|
|
1096
|
+
action: (event?: Event) => void;
|
|
1097
|
+
remove: () => void;
|
|
1098
|
+
onHostClick(event: Event): void;
|
|
1099
|
+
onMouseEnter: () => void;
|
|
1100
|
+
onMouseLeave: () => void;
|
|
1101
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsToastComponent, never>;
|
|
1102
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsToastComponent, "gds-toast", never, { "toast": { "alias": "toast"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
declare class ToastrService {
|
|
1106
|
+
#private;
|
|
1107
|
+
/** Visible toasts for the overlay stack container. */
|
|
1108
|
+
readonly toasts: _angular_core.Signal<GdsToastInstance[]>;
|
|
1109
|
+
get positionClass(): string;
|
|
1110
|
+
success: (message?: string, title?: string, override?: Partial<GdsToastConfig>) => GdsActiveToast;
|
|
1111
|
+
error: (message?: string, title?: string, override?: Partial<GdsToastConfig>) => GdsActiveToast;
|
|
1112
|
+
info: (message?: string, title?: string, override?: Partial<GdsToastConfig>) => GdsActiveToast;
|
|
1113
|
+
warning: (message?: string, title?: string, override?: Partial<GdsToastConfig>) => GdsActiveToast;
|
|
1114
|
+
show: (message?: string, title?: string, override?: Partial<GdsToastConfig>) => GdsActiveToast;
|
|
1115
|
+
clear: (toastId?: number) => void;
|
|
1116
|
+
remove: (toastId: number) => void;
|
|
1117
|
+
triggerAction: (toastId: number, event?: unknown) => void;
|
|
1118
|
+
/** Clears the auto-dismiss timer (e.g. while the pointer is over the toast). */
|
|
1119
|
+
pauseTimeout: (toastId: number) => void;
|
|
1120
|
+
/** Starts the post-hover dismiss timer using extendedTimeOut. */
|
|
1121
|
+
resumeTimeout: (toastId: number) => void;
|
|
1122
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastrService, never>;
|
|
1123
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ToastrService>;
|
|
1060
1124
|
}
|
|
1061
1125
|
|
|
1062
1126
|
declare class GdsTooltipComponent extends OnBrandChanged {
|
|
@@ -1172,6 +1236,7 @@ declare class GdsChatExpandableListComponent {
|
|
|
1172
1236
|
items: _angular_core.InputSignal<unknown[]>;
|
|
1173
1237
|
displayLimit: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
1174
1238
|
onlyEmitExpandedEvent: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1239
|
+
expandAriaLabel: _angular_core.InputSignal<string>;
|
|
1175
1240
|
expandClicked: _angular_core.OutputEmitterRef<void>;
|
|
1176
1241
|
expanded: _angular_core.ModelSignal<boolean>;
|
|
1177
1242
|
hiddenCount: _angular_core.Signal<number>;
|
|
@@ -1180,7 +1245,7 @@ declare class GdsChatExpandableListComponent {
|
|
|
1180
1245
|
itemTemplate: _angular_core.Signal<TemplateRef<any>>;
|
|
1181
1246
|
expand(): void;
|
|
1182
1247
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsChatExpandableListComponent, never>;
|
|
1183
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsChatExpandableListComponent, "dl[gds-chat-expandable-list]", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "displayLimit": { "alias": "displayLimit"; "required": false; "isSignal": true; }; "onlyEmitExpandedEvent": { "alias": "onlyEmitExpandedEvent"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; }, { "expandClicked": "expandClicked"; "expanded": "expandedChange"; }, ["itemTemplate"], ["dt", "[trailing]"], true, never>;
|
|
1248
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<GdsChatExpandableListComponent, "dl[gds-chat-expandable-list]", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "displayLimit": { "alias": "displayLimit"; "required": false; "isSignal": true; }; "onlyEmitExpandedEvent": { "alias": "onlyEmitExpandedEvent"; "required": false; "isSignal": true; }; "expandAriaLabel": { "alias": "expandAriaLabel"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; }, { "expandClicked": "expandClicked"; "expanded": "expandedChange"; }, ["itemTemplate"], ["dt", "[trailing]"], true, never>;
|
|
1184
1249
|
}
|
|
1185
1250
|
|
|
1186
1251
|
declare class GdsMessageInputComponent {
|
|
@@ -1416,6 +1481,8 @@ declare abstract class GdsListboxBaseDirective implements OnDestroy {
|
|
|
1416
1481
|
protected _keyManager: FocusKeyManager<FocusableOption>;
|
|
1417
1482
|
protected _activeId: _angular_core.WritableSignal<string | null>;
|
|
1418
1483
|
ngOnDestroy(): void;
|
|
1484
|
+
onPointerDown(): void;
|
|
1485
|
+
onPointerUp(): void;
|
|
1419
1486
|
onFocus(): void;
|
|
1420
1487
|
onKeydown(event: KeyboardEvent): void;
|
|
1421
1488
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GdsListboxBaseDirective, never>;
|
|
@@ -1472,8 +1539,6 @@ declare class GdsVirtualScrollListboxDirective extends GdsListboxBaseDirective {
|
|
|
1472
1539
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GdsVirtualScrollListboxDirective, "[gdsListboxVirtualScroll]", never, { "total": { "alias": "total"; "required": true; "isSignal": true; }; "optionIndexAttribute": { "alias": "optionIndexAttribute"; "required": false; "isSignal": true; }; "scrollBehavior": { "alias": "scrollBehavior"; "required": false; "isSignal": true; }; }, { "currentFocusedIndex": "currentFocusedIndex"; }, ["options"], never, true, never>;
|
|
1473
1540
|
}
|
|
1474
1541
|
|
|
1475
|
-
declare const provideToaster: (customOptions?: Partial<GlobalConfig>) => EnvironmentProviders;
|
|
1476
|
-
|
|
1477
1542
|
declare class GdsModule {
|
|
1478
1543
|
static forRoot({ brand, env }: {
|
|
1479
1544
|
brand?: GdsBrand;
|
|
@@ -1484,5 +1549,5 @@ declare class GdsModule {
|
|
|
1484
1549
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<GdsModule>;
|
|
1485
1550
|
}
|
|
1486
1551
|
|
|
1487
|
-
export { BrandEnum, CDN_URL, CONTACT_INITIALS_REGEX, GDS_BRANDS, GDS_EMPTY_STATE_VARIANTS, GdsAccountingService, GdsAutoRoundCurrencyDirective, GdsAutofocusDirective, GdsAvatarComponent, GdsBadgeColorType, GdsBadgeComponent, GdsBadgeVariantType, GdsBannerComponent, GdsBreadcrumbsComponent, GdsBuildOptionConfigPipe, GdsButtonComponent, GdsButtonRadioOptionComponent, GdsChatExpandableListComponent, GdsChatPromptComponent, GdsChatSuggestionComponent, GdsCheckboxComponent, GdsChipColorsMap, GdsChipComponent, GdsCollapsibleAsideLayoutComponent, GdsCompositeOptionPrimaryDirective, GdsCompositeOptionSecondaryDirective, GdsContextMenuHeadingComponent, GdsContextMenuItemComponent, GdsContextMenuItemVariantEnum, GdsContextMenuSwitchComponent, GdsDateInputComponent, GdsDatePipe, GdsDialogBaseDirective, GdsDialogComponent, GdsDialogOverlayComponent, GdsDialogService, GdsDoctypeService, GdsDoctypeToIconPipe, GdsDocumentItemComponent, GdsDropdownComponent, GdsEmptyStateComponent, GdsFeatureBlockComponent, GdsFeedbackButtonComponent, GdsFileUploadComponent, GdsFilenameToIconPipe, GdsFilterChipComponent, GdsFocusOnInitDirective, GdsFormControlComponent, GdsHistoryComponent, GdsIconButtonComponent, GdsIconComponent, GdsIconDoctypeComponent, GdsIconService, GdsInputAutocompleteDirective, GdsItemDisplayComponent, GdsKeyboardNavigationHost, GdsKeyboardNavigationItem, GdsListboxCompositeOptionDirective, GdsListboxDirective, GdsListboxOptionDirective, GdsLoadingCarouselComponent, GdsMapArrayToRadioOptionsPipe, GdsMathFloorPipe, GdsMathMaxPipe, GdsMathMinPipe, GdsMessageInputComponent, GdsModule, GdsNativeInputDirective, GdsNativeTextareaDirective, GdsNavAsideComponent, GdsNavAsideItemComponent, GdsNestedSelectComponent, GdsProgressBarComponent, GdsRadioComponent, GdsRadioOptionDirective, GdsReferenceComponent, GdsReferenceLinkComponent, GdsRegexFilterDirective, GdsResizedDirective, GdsResizedEvent, GdsResponseComponent, GdsScrollOutOfViewDirective, GdsScrollOutOfViewScrollStatus, GdsScrollOutOfViewService, GdsScrollToBottomDirective, GdsScrollToFirstInvalidDirective, GdsSearchBarComponent, GdsSelectComponent, GdsSelectOnFocusDirective, GdsSidebarItemBodyComponent, GdsSidebarItemComponent, GdsSkeletonLoadingComponent, GdsSliderComponent, GdsSpinnerComponent, GdsSplitButtonComponent, GdsSvgIconPipe, GdsSwitchComponent, GdsTextInputComponent, GdsTextareaComponent, GdsTimelineItemComponent, GdsToastComponent, GdsTooltipComponent, GdsTreeViewListItemComponent, GdsUserPromptService, GdsVirtualScrollListboxDirective, MapperPipe, OnBrandChanged, RoundMode, TreeViewListItemDirective, chipColor, chipSize, chipTypes, chipWidth, formatToISO, gdsButtonSizes, gdsButtonVariants, gdsDropdownPositionsX, gdsDropdownPositionsY, gdsSelectWidths, gdsServices, gdsUserPromptSecondaryTextVariants, getIconsByPrefix, isGdsBrand, ngSelectDropdownPositions, parseLocalizedDate, provideToaster, shortDate, shortDateTime, transformDateFormat, transformDurationToSeconds, transformSecondsToDuration };
|
|
1488
|
-
export type { FeatureDescriptionConfigVM, GdsAvatarOrganizationType, GdsAvatarSize, GdsAvatarVariant, GdsBannerState, GdsBrand, GdsBreadCrumbSize, GdsBreadCrumbVM, GdsButtonSharedCssProperties, GdsButtonSharedProperties, GdsButtonSharedSlotProperties, GdsButtonSize, GdsButtonVariant, GdsChipColor, GdsChipColorType, GdsChipSize, GdsChipTypes, GdsChipWidth, GdsContextMenuItemVariantType, GdsDropdownPositionX, GdsDropdownPositionY, GdsEmptyStateSize, GdsEmptyStateVariant, GdsNativeRadioProps, GdsRadioOption, GdsRadioOptionConfig, GdsScrollOutOfViewScrollStatusType, GdsSelectWidth, GdsTimelineConnectorType, GdsUserPromptSecondaryTextVariant, HistoryItemVM };
|
|
1552
|
+
export { BrandEnum, CDN_URL, CONTACT_INITIALS_REGEX, GDS_BRANDS, GDS_EMPTY_STATE_VARIANTS, GDS_TOASTER_CONFIG, GDS_TOAST_CONTAINER, GdsAccountingService, GdsAutoRoundCurrencyDirective, GdsAutofocusDirective, GdsAvatarComponent, GdsBadgeColorType, GdsBadgeComponent, GdsBadgeVariantType, GdsBannerComponent, GdsBreadcrumbsComponent, GdsBuildOptionConfigPipe, GdsButtonComponent, GdsButtonRadioOptionComponent, GdsChatExpandableListComponent, GdsChatPromptComponent, GdsChatSuggestionComponent, GdsCheckboxComponent, GdsChipColorsMap, GdsChipComponent, GdsCollapsibleAsideLayoutComponent, GdsCompositeOptionPrimaryDirective, GdsCompositeOptionSecondaryDirective, GdsContextMenuHeadingComponent, GdsContextMenuItemComponent, GdsContextMenuItemVariantEnum, GdsContextMenuSwitchComponent, GdsDateInputComponent, GdsDatePipe, GdsDialogBaseDirective, GdsDialogComponent, GdsDialogOverlayComponent, GdsDialogService, GdsDoctypeService, GdsDoctypeToIconPipe, GdsDocumentItemComponent, GdsDropdownComponent, GdsEmptyStateComponent, GdsFeatureBlockComponent, GdsFeedbackButtonComponent, GdsFileUploadComponent, GdsFilenameToIconPipe, GdsFilterChipComponent, GdsFocusOnInitDirective, GdsFormControlComponent, GdsHistoryComponent, GdsIconButtonComponent, GdsIconComponent, GdsIconDoctypeComponent, GdsIconService, GdsInputAutocompleteDirective, GdsItemDisplayComponent, GdsKeyboardNavigationHost, GdsKeyboardNavigationItem, GdsListboxCompositeOptionDirective, GdsListboxDirective, GdsListboxOptionDirective, GdsLoadingCarouselComponent, GdsMapArrayToRadioOptionsPipe, GdsMathFloorPipe, GdsMathMaxPipe, GdsMathMinPipe, GdsMessageInputComponent, GdsModule, GdsNativeInputDirective, GdsNativeTextareaDirective, GdsNavAsideComponent, GdsNavAsideItemComponent, GdsNestedSelectComponent, GdsProgressBarComponent, GdsRadioComponent, GdsRadioOptionDirective, GdsReferenceComponent, GdsReferenceLinkComponent, GdsRegexFilterDirective, GdsResizedDirective, GdsResizedEvent, GdsResponseComponent, GdsScrollOutOfViewDirective, GdsScrollOutOfViewScrollStatus, GdsScrollOutOfViewService, GdsScrollToBottomDirective, GdsScrollToFirstInvalidDirective, GdsSearchBarComponent, GdsSelectComponent, GdsSelectOnFocusDirective, GdsSidebarItemBodyComponent, GdsSidebarItemComponent, GdsSkeletonLoadingComponent, GdsSliderComponent, GdsSpinnerComponent, GdsSplitButtonComponent, GdsSvgIconPipe, GdsSwitchComponent, GdsTextInputComponent, GdsTextareaComponent, GdsTimelineItemComponent, GdsToastComponent, GdsTooltipComponent, GdsTreeViewListItemComponent, GdsUserPromptService, GdsVirtualScrollListboxDirective, MapperPipe, OnBrandChanged, RoundMode, ToastrService, TreeViewListItemDirective, chipColor, chipSize, chipTypes, chipWidth, formatToISO, gdsButtonSizes, gdsButtonVariants, gdsDropdownPositionsX, gdsDropdownPositionsY, gdsSelectWidths, gdsServices, gdsUserPromptSecondaryTextVariants, getIconsByPrefix, isGdsBrand, ngSelectDropdownPositions, parseLocalizedDate, provideToaster, shortDate, shortDateTime, transformDateFormat, transformDurationToSeconds, transformSecondsToDuration };
|
|
1553
|
+
export type { FeatureDescriptionConfigVM, GdsActiveToast, GdsAvatarOrganizationType, GdsAvatarSize, GdsAvatarVariant, GdsBannerState, GdsBrand, GdsBreadCrumbSize, GdsBreadCrumbVM, GdsButtonSharedCssProperties, GdsButtonSharedProperties, GdsButtonSharedSlotProperties, GdsButtonSize, GdsButtonVariant, GdsChipColor, GdsChipColorType, GdsChipSize, GdsChipTypes, GdsChipWidth, GdsContextMenuItemVariantType, GdsDropdownPositionX, GdsDropdownPositionY, GdsEmptyStateSize, GdsEmptyStateVariant, GdsNativeRadioProps, GdsRadioOption, GdsRadioOptionConfig, GdsScrollOutOfViewScrollStatusType, GdsSelectWidth, GdsTimelineConnectorType, GdsToastConfig, GdsToastConfigPayload, GdsToastGlobalConfig, GdsToastInstance, GdsToastStatus, GdsToastType, GdsUserPromptSecondaryTextVariant, HistoryItemVM };
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
-
<path fillRule="evenodd" clipRule="evenodd" fill="#ffffff" d="M5 1.5C5 1.22386 5.22386 1 5.5 1H14.5C14.7762 1 15 1.22386 15 1.5V4.5C15 4.77614 14.7762 5 14.5 5H5.5C5.22386 5 5 4.77614 5 4.5V1.5ZM6 2V4H14V2H6Z" />
|
|
3
|
-
<path fillRule="evenodd" clipRule="evenodd" fill="#ffffff" d="M3.14645 6.04647C3.24022 5.9527 3.36739 5.90002 3.5 5.90002L12.5 5.90005C12.7761 5.90005 13 6.12391 13 6.40005V9.50002C13 9.63263 12.9473 9.75981 12.8536 9.85358C12.7598 9.94735 12.6326 10 12.5 10L3.5 10C3.22386 10 3 9.77614 3 9.5V6.40002C3 6.26742 3.05268 6.14024 3.14645 6.04647ZM4 6.90003V9L12 9.00002V6.90005L4 6.90003Z"/>
|
|
4
|
-
<path fillRule="evenodd" clipRule="evenodd" fill="#ffffff" d="M2 12L2.00001 14L10 14L10 12L2 12ZM1.5 11L10.5 11C10.7761 11 11 11.2239 11 11.5L11 14.5C11 14.6326 10.9473 14.7598 10.8536 14.8536C10.7598 14.9473 10.6326 15 10.5 15L1.50001 15C1.22387 15 1.00001 14.7762 1.00001 14.5001L1 11.5C1 11.3674 1.05268 11.2402 1.14645 11.1465C1.24021 11.0527 1.36739 11 1.5 11Z"/>
|
|
5
|
-
</svg>
|
|
Binary file
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 14C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2C4.68629 2 2 4.68629 2 8C2 11.3137 4.68629 14 8 14ZM8 4.875C8.27615 4.875 8.5 5.09886 8.5 5.375V7.5L10.625 7.5C10.9011 7.5 11.125 7.72386 11.125 8C11.125 8.27614 10.9011 8.5 10.625 8.5H8.5V10.625C8.5 10.9011 8.27615 11.125 8 11.125C7.72386 11.125 7.5 10.9011 7.5 10.625L7.5 8.5H5.375C5.09886 8.5 4.875 8.27614 4.875 8C4.875 7.72386 5.09886 7.5 5.375 7.5H7.5V5.375C7.5 5.09886 7.72386 4.875 8 4.875Z" fill="#ffffff"/>
|
|
3
|
-
</svg>
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect x="3.125" y="5.49854" width="19" height="13.0029" rx="1" stroke="#ffffff"/>
|
|
3
|
-
<path d="M3.125 9.5H6.125C6.67729 9.5 7.125 9.05229 7.125 8.5L7.12502 5.5" stroke="#ffffff"/>
|
|
4
|
-
<path d="M22.125 9.50262H19.125C18.5727 9.50262 18.125 9.0549 18.125 8.50262V5.5" stroke="#ffffff"/>
|
|
5
|
-
<path d="M3.125 14.5H6.125C6.67729 14.5 7.125 14.9477 7.125 15.5L7.12502 18.5015" stroke="#ffffff"/>
|
|
6
|
-
<path d="M22.1936 14.6418H19.2446C18.6923 14.6418 18.2446 15.0895 18.2446 15.6418V18.5015" stroke="#ffffff"/>
|
|
7
|
-
<circle cx="12.625" cy="12" r="3" stroke="#ffffff"/>
|
|
8
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.48938 3C8.48938 2.72386 8.26553 2.5 7.98938 2.5C7.71324 2.5 7.48938 2.72386 7.48938 3L7.48938 7.51061L3 7.51061C2.72386 7.51061 2.5 7.73447 2.5 8.01061C2.5 8.28675 2.72386 8.51061 3 8.51061L7.48938 8.51061L7.48938 13C7.48938 13.2761 7.71324 13.5 7.98938 13.5C8.26553 13.5 8.48938 13.2761 8.48938 13L8.48938 8.51061L13 8.51061C13.2761 8.51061 13.5 8.28676 13.5 8.01061C13.5 7.73447 13.2761 7.51061 13 7.51061L8.48938 7.51061L8.48938 3Z" fill="#ffffff"/>
|
|
3
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<circle cx="8" cy="8" r="5.5" stroke="#ffffff"/>
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.49416 5.375C8.49416 5.09886 8.27031 4.875 7.99416 4.875C7.71802 4.875 7.49416 5.09886 7.49416 5.375L7.49416 7.50587L5.37503 7.50587C5.09889 7.50587 4.87503 7.72973 4.87503 8.00587C4.87503 8.28201 5.09889 8.50587 5.37503 8.50587L7.49416 8.50587L7.49416 10.625C7.49416 10.9011 7.71802 11.125 7.99416 11.125C8.27031 11.125 8.49416 10.9011 8.49416 10.625L8.49416 8.50587L10.625 8.50587C10.9012 8.50587 11.125 8.28201 11.125 8.00587C11.125 7.72973 10.9012 7.50587 10.625 7.50587L8.49416 7.50587L8.49416 5.375Z" fill="#ffffff"/>
|
|
4
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="194" height="60" viewBox="0 0 194 60">
|
|
2
|
-
<path fill="#EA8A41" fill-rule="evenodd" d="M2,50 L2,10.016 L41.9984,10.016 L41.9984,50 L2,50 Z M19.0624,27.182 L32.1132,29.1244 L34.1688,40.0784 L36.0796,24.252 L22.3464,17.9988 L19.0624,27.182 Z M19.0624,27.1824 L18.0664,29.9708 L6.2696,42.0224 L22.282,34.5908 L25.05,29.318 L19.0624,27.1824 Z M54.2084,10 L61.9632,10 L61.9632,41.9992 L79.7928,41.9992 L83.114,50 L54.2084,50 L54.2084,10 Z M179.8284,33.9964 L168.1948,33.9964 L168.0556,50 L160.3008,50 L160.3008,10 C166.7628,10 173.226,10 179.6892,10 C195.63,10 195.8272,33.9964 179.8284,33.9964 Z M115.5084,17.9988 L92.4192,17.9988 L92.4192,25.9936 L107.818,25.9936 L107.818,33.9964 L92.4192,33.9964 L92.4192,41.9992 L115.5084,41.9992 L115.5084,50 L84.7224,50 L84.7224,10 L115.5084,10 L115.5084,17.9988 Z M150.3224,50 L147.0084,41.9992 L128.8808,41.9992 L125.568,50 L117.1168,50 L133.6824,10 L142.208,10 L158.774,50 L150.3224,50 Z M132.1956,33.9964 L143.6944,33.9964 L137.9452,20.114 L132.1956,33.9964 Z M168.1948,26.028 L179.8284,25.9936 C185.5604,25.9936 185.3624,17.9988 179.6892,17.9988 L168.18,17.9988 L168.1948,26.028 Z"/>
|
|
3
|
-
</svg>
|