@ptsecurity/mosaic 16.4.0 → 16.4.2
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/_theming.scss +99 -24
- package/_visual.scss +82 -19
- package/autocomplete/autocomplete-trigger.directive.d.ts +7 -1
- package/core/locales/en-US.d.ts +17 -0
- package/core/locales/es-LA.d.ts +17 -0
- package/core/locales/fa-IR.d.ts +17 -0
- package/core/locales/index.d.ts +6 -0
- package/core/locales/locale-service.d.ts +102 -0
- package/core/locales/pt-BR.d.ts +17 -0
- package/core/locales/ru-RU.d.ts +17 -0
- package/core/locales/zh-CN.d.ts +17 -0
- package/core/pop-up/pop-up-trigger.d.ts +3 -1
- package/core/styles/theming/_components-theming.scss +4 -2
- package/core/styles/theming/_scrollbars.scss +1 -1
- package/ellipsis-center/ellipsis-center.directive.d.ts +3 -2
- package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +14 -2
- package/esm2022/core/locales/en-US.mjs +18 -1
- package/esm2022/core/locales/es-LA.mjs +18 -1
- package/esm2022/core/locales/fa-IR.mjs +18 -1
- package/esm2022/core/locales/index.mjs +7 -1
- package/esm2022/core/locales/pt-BR.mjs +18 -1
- package/esm2022/core/locales/ru-RU.mjs +18 -1
- package/esm2022/core/locales/zh-CN.mjs +18 -1
- package/esm2022/core/pop-up/pop-up-trigger.mjs +19 -11
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +7 -5
- package/esm2022/file-upload/file-upload.module.mjs +8 -4
- package/esm2022/file-upload/multiple-file-upload.component.mjs +52 -48
- package/esm2022/file-upload/single-file-upload.component.mjs +41 -36
- package/esm2022/form-field/form-field.mjs +2 -2
- package/esm2022/input/input-password.mjs +2 -3
- package/esm2022/modal/modal.component.mjs +6 -6
- package/esm2022/navbar/navbar-item.component.mjs +9 -9
- package/esm2022/select/select-option.directive.mjs +7 -5
- package/esm2022/select/select.component.mjs +14 -7
- package/esm2022/tabs/tab-header.component.mjs +2 -2
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +2 -2
- package/esm2022/tags/tag-input.mjs +28 -8
- package/esm2022/timezone/timezone-option.directive.mjs +7 -5
- package/esm2022/title/title.directive.mjs +2 -3
- package/esm2022/tooltip/tooltip.component.mjs +27 -12
- package/esm2022/tree-select/tree-select.component.mjs +21 -8
- package/fesm2022/ptsecurity-mosaic-autocomplete.mjs +13 -1
- package/fesm2022/ptsecurity-mosaic-autocomplete.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-core.mjs +122 -12
- package/fesm2022/ptsecurity-mosaic-core.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-ellipsis-center.mjs +5 -4
- package/fesm2022/ptsecurity-mosaic-ellipsis-center.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-file-upload.mjs +90 -78
- package/fesm2022/ptsecurity-mosaic-file-upload.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-form-field.mjs +2 -2
- package/fesm2022/ptsecurity-mosaic-form-field.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-input.mjs +1 -2
- package/fesm2022/ptsecurity-mosaic-input.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-modal.mjs +5 -5
- package/fesm2022/ptsecurity-mosaic-modal.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-navbar.mjs +8 -8
- package/fesm2022/ptsecurity-mosaic-navbar.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-select.mjs +23 -15
- package/fesm2022/ptsecurity-mosaic-select.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-tabs.mjs +4 -4
- package/fesm2022/ptsecurity-mosaic-tabs.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-tags.mjs +26 -7
- package/fesm2022/ptsecurity-mosaic-tags.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-timezone.mjs +5 -4
- package/fesm2022/ptsecurity-mosaic-timezone.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-title.mjs +1 -2
- package/fesm2022/ptsecurity-mosaic-title.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-tooltip.mjs +25 -11
- package/fesm2022/ptsecurity-mosaic-tooltip.mjs.map +1 -1
- package/fesm2022/ptsecurity-mosaic-tree-select.mjs +20 -7
- package/fesm2022/ptsecurity-mosaic-tree-select.mjs.map +1 -1
- package/file-upload/_file-upload-theme.scss +1 -1
- package/file-upload/file-upload.module.d.ts +2 -1
- package/file-upload/file-upload.scss +0 -8
- package/file-upload/multiple-file-upload.component.d.ts +16 -13
- package/file-upload/multiple-file-upload.component.scss +56 -24
- package/file-upload/single-file-upload.component.d.ts +14 -13
- package/file-upload/single-file-upload.component.scss +6 -0
- package/form-field/form-field.scss +2 -0
- package/input/input-password.d.ts +0 -1
- package/link/_link-theme.scss +2 -1
- package/navbar/navbar-item.component.d.ts +4 -4
- package/package.json +8 -8
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/default-theme.css +1 -1
- package/select/select-option.directive.d.ts +3 -2
- package/select/select.component.d.ts +1 -0
- package/tabs/_tabs-theme.scss +5 -0
- package/tabs/tab-header.scss +12 -0
- package/tabs/tab-nav-bar/tab-nav-bar.scss +12 -0
- package/tags/tag-input.d.ts +9 -4
- package/timezone/timezone-option.directive.d.ts +3 -2
- package/title/title.directive.d.ts +0 -1
- package/tooltip/tooltip.component.d.ts +12 -8
- package/tree-select/tree-select.component.d.ts +1 -0
@@ -6,26 +6,18 @@
|
|
6
6
|
@use '../core/styles/common';
|
7
7
|
|
8
8
|
$tokens: meta.module-variables(tokens) !default;
|
9
|
-
$dropzone-text-margin-left: map.get($tokens, size-xs);
|
10
9
|
|
11
10
|
.mc-file-upload {
|
12
11
|
box-sizing: border-box;
|
13
12
|
display: flex;
|
14
13
|
align-items: center;
|
15
14
|
position: relative;
|
16
|
-
cursor: pointer;
|
17
15
|
|
18
16
|
.dropzone, .file-item {
|
19
17
|
display: flex;
|
20
18
|
align-items: center;
|
21
19
|
}
|
22
20
|
|
23
|
-
.dropzone {
|
24
|
-
.dropzone__text {
|
25
|
-
margin-left: $dropzone-text-margin-left;
|
26
|
-
}
|
27
|
-
}
|
28
|
-
|
29
21
|
.mc-ellipsis-center {
|
30
22
|
position: relative;
|
31
23
|
display: flex;
|
@@ -1,6 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import { CanDisable } from '@ptsecurity/mosaic/core';
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, Renderer2, TemplateRef } from '@angular/core';
|
2
|
+
import { CanDisable, McLocaleService } from '@ptsecurity/mosaic/core';
|
4
3
|
import { McFile, McFileItem, McFileValidatorFn, McInputFile, McInputFileLabel } from './file-upload';
|
5
4
|
import * as i0 from "@angular/core";
|
6
5
|
export interface McInputFileMultipleLabel extends McInputFileLabel {
|
@@ -13,11 +12,11 @@ export interface McInputFileMultipleLabel extends McInputFileLabel {
|
|
13
12
|
[k: string | number | symbol]: unknown;
|
14
13
|
}
|
15
14
|
export declare const MC_MULTIPLE_FILE_UPLOAD_DEFAULT_CONFIGURATION: McInputFileMultipleLabel;
|
16
|
-
export declare class McMultipleFileUploadComponent implements
|
17
|
-
private focusMonitor;
|
18
|
-
private cdr;
|
15
|
+
export declare class McMultipleFileUploadComponent implements McInputFile, CanDisable, OnDestroy {
|
19
16
|
private renderer;
|
20
|
-
|
17
|
+
private cdr;
|
18
|
+
readonly configuration: McInputFileMultipleLabel;
|
19
|
+
private localeService?;
|
21
20
|
accept?: string[];
|
22
21
|
disabled: boolean;
|
23
22
|
errors: string[];
|
@@ -28,25 +27,29 @@ export declare class McMultipleFileUploadComponent implements AfterViewInit, OnD
|
|
28
27
|
fileQueueChanged: EventEmitter<McFileItem[]>;
|
29
28
|
customFileIcon: TemplateRef<HTMLElement>;
|
30
29
|
input: ElementRef<HTMLInputElement>;
|
31
|
-
hasFocus: boolean;
|
32
30
|
columnDefs: {
|
33
31
|
header: string;
|
34
32
|
cssClass: string;
|
35
33
|
}[];
|
36
|
-
|
34
|
+
config: McInputFileMultipleLabel;
|
35
|
+
separatedCaptionText: string[];
|
36
|
+
separatedCaptionTextWhenSelected: string[];
|
37
|
+
separatedCaptionTextForCompactSize: string[];
|
37
38
|
get acceptedFiles(): string;
|
38
39
|
get hasErrors(): boolean;
|
39
|
-
|
40
|
-
|
40
|
+
private localeSubscription;
|
41
|
+
constructor(renderer: Renderer2, cdr: ChangeDetectorRef, configuration: McInputFileMultipleLabel, localeService?: McLocaleService | undefined);
|
41
42
|
ngOnDestroy(): void;
|
42
43
|
onFileSelectedViaClick({ target }: Event): void;
|
43
44
|
onFileDropped(files: FileList | McFile[]): void;
|
44
45
|
deleteFile(index: number, event?: MouseEvent): void;
|
45
46
|
onFileListChange(): void;
|
46
|
-
|
47
|
+
private updateLocaleParams;
|
47
48
|
private mapToFileItem;
|
48
49
|
private validateFile;
|
49
50
|
private isCorrectExtension;
|
50
|
-
|
51
|
+
private initDefaultParams;
|
52
|
+
private makeCaptionText;
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<McMultipleFileUploadComponent, [null, null, { optional: true; }, { optional: true; }]>;
|
51
54
|
static ɵcmp: i0.ɵɵComponentDeclaration<McMultipleFileUploadComponent, "mc-multiple-file-upload", never, { "accept": { "alias": "accept"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "files": { "alias": "files"; "required": false; }; "size": { "alias": "size"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "customValidation": { "alias": "customValidation"; "required": false; }; }, { "fileQueueChanged": "fileQueueChanged"; }, ["customFileIcon"], ["[hint]"], false, never>;
|
52
55
|
}
|
@@ -7,7 +7,6 @@
|
|
7
7
|
|
8
8
|
$tokens: meta.module-variables(tokens) !default;
|
9
9
|
|
10
|
-
$dropzone-text-margin-left: map.get($tokens, size-xs);
|
11
10
|
$multiple-default-height: 176px;
|
12
11
|
$border-type-header: solid;
|
13
12
|
|
@@ -34,29 +33,9 @@ $vertical-padding-item: var(
|
|
34
33
|
map.get($tokens, file-upload-size-multiple-border-style)
|
35
34
|
);
|
36
35
|
|
37
|
-
&.default {
|
38
|
-
min-height: $multiple-default-height;
|
39
|
-
justify-content: center;
|
40
|
-
}
|
41
|
-
|
42
|
-
&.compact:not(.selected) {
|
43
|
-
height: var(
|
44
|
-
--mc-file-upload-size-single-height,
|
45
|
-
map.get($tokens, file-upload-size-single-height)
|
46
|
-
);
|
47
|
-
padding-top: var(
|
48
|
-
--mc-file-upload-size-single-vertical-padding,
|
49
|
-
map.get($tokens, file-upload-size-single-vertical-padding)
|
50
|
-
);
|
51
|
-
padding-bottom: var(
|
52
|
-
--mc-file-upload-size-single-vertical-padding,
|
53
|
-
map.get($tokens, file-upload-size-single-vertical-padding)
|
54
|
-
);
|
55
|
-
padding-left: map.get($tokens, size-m);
|
56
|
-
}
|
57
|
-
|
58
36
|
.mc-list-option {
|
59
37
|
padding: $horizontal-padding-item $vertical-padding-item;
|
38
|
+
height: 36px;
|
60
39
|
|
61
40
|
.mc-icon {
|
62
41
|
margin-right: 0;
|
@@ -64,7 +43,7 @@ $vertical-padding-item: var(
|
|
64
43
|
}
|
65
44
|
|
66
45
|
.mc-file-upload__grid {
|
67
|
-
min-height:
|
46
|
+
min-height: 142px;
|
68
47
|
}
|
69
48
|
|
70
49
|
.mc-file-multiple-uploaded__header-inner,
|
@@ -90,6 +69,11 @@ $vertical-padding-item: var(
|
|
90
69
|
padding-left: $horizontal-padding-item;
|
91
70
|
padding-right: $horizontal-padding-item;
|
92
71
|
}
|
72
|
+
|
73
|
+
.mc-file-upload__action {
|
74
|
+
display: flex;
|
75
|
+
align-items: center;
|
76
|
+
}
|
93
77
|
}
|
94
78
|
|
95
79
|
.mc-file-upload__row {
|
@@ -120,6 +104,7 @@ $vertical-padding-item: var(
|
|
120
104
|
|
121
105
|
.btn-upload {
|
122
106
|
.dropzone {
|
107
|
+
$padding-top: map.get($tokens, size-xxs);
|
123
108
|
margin: 0;
|
124
109
|
border-top-width: var(
|
125
110
|
--mc-file-upload-size-multiple-border-width,
|
@@ -129,10 +114,57 @@ $vertical-padding-item: var(
|
|
129
114
|
--mc-file-upload-size-multiple-border-style,
|
130
115
|
map.get($tokens, file-upload-size-multiple-border-style)
|
131
116
|
);
|
132
|
-
padding:
|
117
|
+
padding: calc($padding-top - 1px)
|
118
|
+
map.get($tokens, size-m)
|
119
|
+
map.get($tokens, size-xxs)
|
120
|
+
map.get($tokens, size-m);
|
121
|
+
}
|
122
|
+
}
|
123
|
+
|
124
|
+
&.compact {
|
125
|
+
&:not(.selected) {
|
126
|
+
height: var(
|
127
|
+
--mc-file-upload-size-single-height,
|
128
|
+
map.get($tokens, file-upload-size-single-height)
|
129
|
+
);
|
130
|
+
padding-top: var(
|
131
|
+
--mc-file-upload-size-single-vertical-padding,
|
132
|
+
map.get($tokens, file-upload-size-single-vertical-padding)
|
133
|
+
);
|
134
|
+
padding-bottom: var(
|
135
|
+
--mc-file-upload-size-single-vertical-padding,
|
136
|
+
map.get($tokens, file-upload-size-single-vertical-padding)
|
137
|
+
);
|
138
|
+
padding-left: map.get($tokens, size-m);
|
139
|
+
}
|
140
|
+
|
141
|
+
.dropzone {
|
142
|
+
.dropzone__text {
|
143
|
+
margin-left: map.get($tokens, size-xs);
|
144
|
+
}
|
133
145
|
}
|
134
146
|
}
|
135
147
|
|
148
|
+
&.default {
|
149
|
+
min-height: $multiple-default-height;
|
150
|
+
justify-content: center;
|
151
|
+
|
152
|
+
.dropzone {
|
153
|
+
.dropzone__text {
|
154
|
+
margin-left: map.get($tokens, size-l);
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
.btn-upload {
|
159
|
+
.dropzone {
|
160
|
+
.dropzone__text {
|
161
|
+
margin-left: map.get($tokens, size-xs);
|
162
|
+
}
|
163
|
+
}
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
|
136
168
|
.file-upload__dropzone {
|
137
169
|
width: 100%;
|
138
170
|
height: 100%;
|
@@ -1,14 +1,13 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
import { CanDisable } from '@ptsecurity/mosaic/core';
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, Renderer2 } from '@angular/core';
|
2
|
+
import { CanDisable, McLocaleService } from '@ptsecurity/mosaic/core';
|
4
3
|
import { McFile, McFileItem, McFileValidatorFn, McInputFile, McInputFileLabel } from './file-upload';
|
5
4
|
import * as i0 from "@angular/core";
|
6
5
|
export declare const MC_SINGLE_FILE_UPLOAD_DEFAULT_CONFIGURATION: McInputFileLabel;
|
7
|
-
export declare class McSingleFileUploadComponent implements
|
8
|
-
private focusMonitor;
|
9
|
-
private cdr;
|
6
|
+
export declare class McSingleFileUploadComponent implements McInputFile, CanDisable, OnDestroy {
|
10
7
|
private renderer;
|
11
|
-
|
8
|
+
private cdr;
|
9
|
+
readonly configuration: McInputFileLabel;
|
10
|
+
private localeService?;
|
12
11
|
accept: string[];
|
13
12
|
disabled: boolean;
|
14
13
|
errors: string[];
|
@@ -17,19 +16,21 @@ export declare class McSingleFileUploadComponent implements AfterViewInit, OnDes
|
|
17
16
|
customValidation?: McFileValidatorFn[];
|
18
17
|
fileQueueChanged: EventEmitter<McFileItem | null>;
|
19
18
|
input: ElementRef<HTMLInputElement>;
|
20
|
-
hasFocus: boolean;
|
21
|
-
private focusMonitorSubscription;
|
22
19
|
get acceptedFiles(): string;
|
23
|
-
|
24
|
-
|
20
|
+
config: McInputFileLabel;
|
21
|
+
separatedCaptionText: string[];
|
22
|
+
private localeSubscription;
|
23
|
+
constructor(renderer: Renderer2, cdr: ChangeDetectorRef, configuration: McInputFileLabel, localeService?: McLocaleService | undefined);
|
25
24
|
ngOnDestroy(): void;
|
26
25
|
onFileSelectedViaClick({ target }: Event): void;
|
27
26
|
deleteItem(event?: MouseEvent): void;
|
28
27
|
onFileDropped(files: FileList | McFile[]): void;
|
29
|
-
onFocus(focusState: boolean): void;
|
30
28
|
private mapToFileItem;
|
31
29
|
private validateFile;
|
32
30
|
private isCorrectExtension;
|
33
|
-
|
31
|
+
private updateLocaleParams;
|
32
|
+
private initDefaultParams;
|
33
|
+
private makeCaptionText;
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<McSingleFileUploadComponent, [null, null, { optional: true; }, { optional: true; }]>;
|
34
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<McSingleFileUploadComponent, "mc-single-file-upload", never, { "accept": { "alias": "accept"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "files": { "alias": "files"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "customValidation": { "alias": "customValidation"; "required": false; }; }, { "fileQueueChanged": "fileQueueChanged"; }, never, ["[hint]", "[mc-icon]"], false, never>;
|
35
36
|
}
|
@@ -114,6 +114,8 @@ $tokens: meta.module-variables(tokens) !default;
|
|
114
114
|
|
115
115
|
.mc-cleaner {
|
116
116
|
display: flex;
|
117
|
+
align-items: center;
|
118
|
+
justify-content: center;
|
117
119
|
|
118
120
|
width: var(--mc-form-field-size-button-width, map.get($tokens, form-field-size-button-width));
|
119
121
|
height: 100%;
|
@@ -10,7 +10,6 @@ import { Subject } from 'rxjs';
|
|
10
10
|
import { McInputMixinBase } from './input';
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
export declare class McPasswordToggle extends McTooltipTrigger implements OnDestroy {
|
13
|
-
private focusMonitor;
|
14
13
|
private formField;
|
15
14
|
get content(): string | TemplateRef<any>;
|
16
15
|
set content(content: string | TemplateRef<any>);
|
package/link/_link-theme.scss
CHANGED
@@ -142,13 +142,13 @@ export declare class McNavbarItem extends McTooltipTrigger {
|
|
142
142
|
get showVerticalDropDownAngle(): boolean;
|
143
143
|
get showHorizontalDropDownAngle(): boolean;
|
144
144
|
get hasCroppedText(): boolean;
|
145
|
-
constructor(rectangleElement: McNavbarRectangleElement, navbarFocusableItem: McNavbarFocusableItem, changeDetectorRef: ChangeDetectorRef, overlay: Overlay, elementRef: ElementRef, ngZone: NgZone, scrollDispatcher: ScrollDispatcher, hostView: ViewContainerRef, scrollStrategy: any, direction: Directionality, dropdownTrigger: McDropdownTrigger, bento: McNavbarBento);
|
145
|
+
constructor(rectangleElement: McNavbarRectangleElement, navbarFocusableItem: McNavbarFocusableItem, changeDetectorRef: ChangeDetectorRef, overlay: Overlay, elementRef: ElementRef, ngZone: NgZone, scrollDispatcher: ScrollDispatcher, hostView: ViewContainerRef, focusMonitor: FocusMonitor, scrollStrategy: any, direction: Directionality, dropdownTrigger: McDropdownTrigger, bento: McNavbarBento);
|
146
146
|
ngAfterContentInit(): void;
|
147
147
|
updateTooltip(): void;
|
148
148
|
getTitleWidth(): number;
|
149
149
|
onKeyDown($event: KeyboardEvent): void;
|
150
150
|
private updateCollapsedState;
|
151
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<McNavbarItem, [null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
151
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<McNavbarItem, [null, null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
152
152
|
static ɵcmp: i0.ɵɵComponentDeclaration<McNavbarItem, "mc-navbar-item, [mc-navbar-item]", ["mcNavbarItem"], { "collapsedText": { "alias": "collapsedText"; "required": false; }; "trigger": { "alias": "mcTrigger"; "required": false; }; "collapsable": { "alias": "collapsable"; "required": false; }; }, {}, ["title", "subTitle", "icon"], ["[mc-icon]", "mc-navbar-title, [mc-navbar-title]", "mc-navbar-subtitle, [mc-navbar-subtitle]", "*"], false, never>;
|
153
153
|
}
|
154
154
|
export declare class McNavbarToggle extends McTooltipTrigger implements OnDestroy {
|
@@ -160,12 +160,12 @@ export declare class McNavbarToggle extends McTooltipTrigger implements OnDestro
|
|
160
160
|
set content(content: string | TemplateRef<any>);
|
161
161
|
get disabled(): boolean;
|
162
162
|
protected modifier: TooltipModifier;
|
163
|
-
constructor(navbar: McVerticalNavbar, changeDetectorRef: ChangeDetectorRef, overlay: Overlay, elementRef: ElementRef, ngZone: NgZone, scrollDispatcher: ScrollDispatcher, hostView: ViewContainerRef, scrollStrategy: any, direction: Directionality, document: any);
|
163
|
+
constructor(navbar: McVerticalNavbar, changeDetectorRef: ChangeDetectorRef, overlay: Overlay, elementRef: ElementRef, ngZone: NgZone, scrollDispatcher: ScrollDispatcher, hostView: ViewContainerRef, scrollStrategy: any, focusMonitor: FocusMonitor, direction: Directionality, document: any);
|
164
164
|
onKeydown($event: KeyboardEvent): void;
|
165
165
|
ngOnDestroy(): void;
|
166
166
|
toggle: () => void;
|
167
167
|
private getWindow;
|
168
168
|
private windowToggleHandler;
|
169
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<McNavbarToggle, [null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
169
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<McNavbarToggle, [null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
170
170
|
static ɵcmp: i0.ɵɵComponentDeclaration<McNavbarToggle, "mc-navbar-toggle", never, { "content": { "alias": "mcCollapsedTooltip"; "required": false; }; }, {}, ["customIcon"], ["[mc-icon]", "mc-navbar-title"], false, never>;
|
171
171
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ptsecurity/mosaic",
|
3
|
-
"version": "16.4.
|
3
|
+
"version": "16.4.2",
|
4
4
|
"description": "Mosaic",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -19,14 +19,14 @@
|
|
19
19
|
"peerDependencies": {
|
20
20
|
"@angular/cdk": "^16.1.5",
|
21
21
|
"@angular/forms": "^16.1.5",
|
22
|
-
"@ptsecurity/cdk": "^16.4.
|
23
|
-
"@ptsecurity/mosaic-moment-adapter": "^16.4.
|
24
|
-
"@ptsecurity/mosaic-luxon-adapter": "^16.4.
|
25
|
-
"@mosaic-design/date-formatter": "^2.1.
|
22
|
+
"@ptsecurity/cdk": "^16.4.2",
|
23
|
+
"@ptsecurity/mosaic-moment-adapter": "^16.4.2",
|
24
|
+
"@ptsecurity/mosaic-luxon-adapter": "^16.4.2",
|
25
|
+
"@mosaic-design/date-formatter": "^2.1.6",
|
26
26
|
"@ptsecurity/mosaic-icons": "^7.0.8",
|
27
|
-
"@mosaic-design/tokens-builder": "^2.1
|
28
|
-
"@mosaic-design/tokens-fe-2022": "^2.1
|
29
|
-
"@mosaic-design/tokens-legacy-2017": "^2.1
|
27
|
+
"@mosaic-design/tokens-builder": "^2.2.1",
|
28
|
+
"@mosaic-design/tokens-fe-2022": "^2.2.1",
|
29
|
+
"@mosaic-design/tokens-legacy-2017": "^2.2.1",
|
30
30
|
"marked": "^4.0.18"
|
31
31
|
},
|
32
32
|
"dependencies": {
|