@rolatech/angular-components 20.3.0-beta.4 → 20.3.1-beta.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-components",
|
|
3
|
-
"version": "20.3.
|
|
3
|
+
"version": "20.3.1-beta.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "rolatech angular components",
|
|
6
6
|
"repository": {
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"lodash": "^4.17.21"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@rolatech/angular-common": "20.3.
|
|
35
|
-
"@rolatech/angular-services": "20.3.
|
|
34
|
+
"@rolatech/angular-common": "20.3.1-beta.3",
|
|
35
|
+
"@rolatech/angular-services": "20.3.1-beta.3",
|
|
36
36
|
"tslib": "^2.3.0"
|
|
37
37
|
},
|
|
38
38
|
"exports": {
|
package/themes/_default.scss
CHANGED
|
@@ -376,6 +376,12 @@
|
|
|
376
376
|
.z-\[9999\] {
|
|
377
377
|
z-index: 9999;
|
|
378
378
|
}
|
|
379
|
+
.order-1 {
|
|
380
|
+
order: 1;
|
|
381
|
+
}
|
|
382
|
+
.order-2 {
|
|
383
|
+
order: 2;
|
|
384
|
+
}
|
|
379
385
|
.col-span-1 {
|
|
380
386
|
grid-column: span 1 / span 1;
|
|
381
387
|
}
|
|
@@ -932,6 +938,9 @@
|
|
|
932
938
|
.w-64 {
|
|
933
939
|
width: calc(var(--spacing) * 64);
|
|
934
940
|
}
|
|
941
|
+
.w-72 {
|
|
942
|
+
width: calc(var(--spacing) * 72);
|
|
943
|
+
}
|
|
935
944
|
.w-80 {
|
|
936
945
|
width: calc(var(--spacing) * 80);
|
|
937
946
|
}
|
|
@@ -1082,9 +1091,6 @@
|
|
|
1082
1091
|
.min-w-\[80\%\] {
|
|
1083
1092
|
min-width: 80%;
|
|
1084
1093
|
}
|
|
1085
|
-
.min-w-\[80px\] {
|
|
1086
|
-
min-width: 80px;
|
|
1087
|
-
}
|
|
1088
1094
|
.min-w-\[120px\] {
|
|
1089
1095
|
min-width: 120px;
|
|
1090
1096
|
}
|
|
@@ -2056,9 +2062,6 @@
|
|
|
2056
2062
|
.whitespace-normal {
|
|
2057
2063
|
white-space: normal;
|
|
2058
2064
|
}
|
|
2059
|
-
.whitespace-nowrap {
|
|
2060
|
-
white-space: nowrap;
|
|
2061
|
-
}
|
|
2062
2065
|
.whitespace-pre {
|
|
2063
2066
|
white-space: pre;
|
|
2064
2067
|
}
|
|
@@ -2295,9 +2298,6 @@
|
|
|
2295
2298
|
.outline-transparent {
|
|
2296
2299
|
outline-color: transparent;
|
|
2297
2300
|
}
|
|
2298
|
-
.\!filter {
|
|
2299
|
-
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,) !important;
|
|
2300
|
-
}
|
|
2301
2301
|
.filter {
|
|
2302
2302
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
2303
2303
|
}
|
|
@@ -3022,6 +3022,11 @@
|
|
|
3022
3022
|
align-items: center;
|
|
3023
3023
|
}
|
|
3024
3024
|
}
|
|
3025
|
+
.md\:items-end {
|
|
3026
|
+
@media (width >= 768px) {
|
|
3027
|
+
align-items: flex-end;
|
|
3028
|
+
}
|
|
3029
|
+
}
|
|
3025
3030
|
.md\:items-start {
|
|
3026
3031
|
@media (width >= 768px) {
|
|
3027
3032
|
align-items: flex-start;
|
|
@@ -3032,6 +3037,11 @@
|
|
|
3032
3037
|
justify-content: space-between;
|
|
3033
3038
|
}
|
|
3034
3039
|
}
|
|
3040
|
+
.md\:justify-end {
|
|
3041
|
+
@media (width >= 768px) {
|
|
3042
|
+
justify-content: flex-end;
|
|
3043
|
+
}
|
|
3044
|
+
}
|
|
3035
3045
|
.md\:gap-3 {
|
|
3036
3046
|
@media (width >= 768px) {
|
|
3037
3047
|
gap: calc(var(--spacing) * 3);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { OnInit, Renderer2, ElementRef, AfterContentInit, AfterContentChecked, DoCheck, DestroyRef, WritableSignal, InjectionToken, EnvironmentProviders, AfterViewInit, OnDestroy, ChangeDetectorRef, AfterViewChecked, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
|
-
import { EnumOption, DialogData as DialogData$1, MediaService, DialogService, SnackBarService, TitleService, NavigationService, LoadingService, ChatMessage } from '@rolatech/angular-services';
|
|
3
|
+
import { EnumOption, DialogData as DialogData$1, LanguageService, MediaService, DialogService, SnackBarService, TitleService, NavigationService, LoadingService, ChatMessage } from '@rolatech/angular-services';
|
|
4
4
|
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
5
5
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
6
6
|
import * as i18 from '@angular/material/dialog';
|
|
@@ -10,13 +10,13 @@ import { Subscription } from 'rxjs';
|
|
|
10
10
|
import * as _angular_cdk_layout from '@angular/cdk/layout';
|
|
11
11
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
12
12
|
import * as _rolatech_angular_components from '@rolatech/angular-components';
|
|
13
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
13
14
|
import { NavLink, Media } from '@rolatech/angular-common';
|
|
14
15
|
import * as i44 from '@angular/cdk/scrolling';
|
|
15
16
|
import { ViewportRuler } from '@angular/cdk/scrolling';
|
|
16
17
|
import { Platform } from '@angular/cdk/platform';
|
|
17
18
|
import * as i26 from '@angular/material/menu';
|
|
18
19
|
import { MatMenuPanel } from '@angular/material/menu';
|
|
19
|
-
import { Router, ActivatedRoute } from '@angular/router';
|
|
20
20
|
import * as i1 from '@angular/cdk/a11y';
|
|
21
21
|
import * as i2 from '@angular/cdk/clipboard';
|
|
22
22
|
import * as i3 from '@angular/cdk/stepper';
|
|
@@ -199,6 +199,14 @@ declare class TitleComponent {
|
|
|
199
199
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TitleComponent, "rolatech-title", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "large": { "alias": "large"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
+
declare class PageCollectionShellComponent {
|
|
203
|
+
eyebrow: _angular_core.InputSignal<string | null>;
|
|
204
|
+
title: _angular_core.InputSignal<string>;
|
|
205
|
+
subtitle: _angular_core.InputSignal<string>;
|
|
206
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageCollectionShellComponent, never>;
|
|
207
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PageCollectionShellComponent, "rolatech-page-collection-shell", never, { "eyebrow": { "alias": "eyebrow"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; }, {}, never, ["[page-shell-header-meta]", "*"], true, never>;
|
|
208
|
+
}
|
|
209
|
+
|
|
202
210
|
declare class ContainerComponent {
|
|
203
211
|
hasId: string;
|
|
204
212
|
hasClass: boolean;
|
|
@@ -220,6 +228,7 @@ declare class DrawerComponent implements AfterContentInit, AfterContentChecked {
|
|
|
220
228
|
platformId: Object;
|
|
221
229
|
breakpointObserver: BreakpointObserver;
|
|
222
230
|
appLayout: _rolatech_angular_components.AppLayoutConfig;
|
|
231
|
+
router: Router;
|
|
223
232
|
guideEl: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
224
233
|
content: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
225
234
|
scrimEl: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
@@ -237,6 +246,7 @@ declare class DrawerComponent implements AfterContentInit, AfterContentChecked {
|
|
|
237
246
|
routerLinkOf(item: LINK): string | any[] | undefined;
|
|
238
247
|
hrefOf(item: LINK): string | undefined;
|
|
239
248
|
isExternal(item: LINK): boolean;
|
|
249
|
+
isRouteActive(item: LINK, defaultActive: boolean): boolean;
|
|
240
250
|
isNextItemChildren(index: number): boolean;
|
|
241
251
|
isPreviousItemChildren(index: number): boolean;
|
|
242
252
|
init(isMobile: boolean): void;
|
|
@@ -336,7 +346,13 @@ declare class FooterComponent {
|
|
|
336
346
|
fTitle: _angular_core.Signal<any>;
|
|
337
347
|
fCopyright: _angular_core.Signal<any>;
|
|
338
348
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
339
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FooterComponent, "rolatech-footer", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "copyright": { "alias": "copyright"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
349
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FooterComponent, "rolatech-footer", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "copyright": { "alias": "copyright"; "required": false; "isSignal": true; }; }, {}, never, ["[footer-left]", "[footer-right]", "*"], true, never>;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
declare class FooterLanguageSwitcherComponent {
|
|
353
|
+
readonly language: LanguageService;
|
|
354
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FooterLanguageSwitcherComponent, never>;
|
|
355
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FooterLanguageSwitcherComponent, "rolatech-footer-language-switcher", never, {}, {}, never, never, true, never>;
|
|
340
356
|
}
|
|
341
357
|
|
|
342
358
|
declare class ConsoleLayoutComponent {
|
|
@@ -511,8 +527,10 @@ declare class MediaListItemComponent {
|
|
|
511
527
|
declare class NotFoundComponent implements OnInit {
|
|
512
528
|
url: string;
|
|
513
529
|
router: Router;
|
|
530
|
+
language: LanguageService;
|
|
514
531
|
constructor();
|
|
515
532
|
ngOnInit(): void;
|
|
533
|
+
homeUrl(): string;
|
|
516
534
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotFoundComponent, never>;
|
|
517
535
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotFoundComponent, "rolatech-not-found", never, {}, {}, never, never, true, never>;
|
|
518
536
|
}
|
|
@@ -1025,5 +1043,5 @@ interface Message {
|
|
|
1025
1043
|
streaming?: boolean;
|
|
1026
1044
|
}
|
|
1027
1045
|
|
|
1028
|
-
export { APP_LAYOUT, AcceptDialogComponent, AccordionComponent, AngularComponentsModule, AppPageComponent, AppShellComponent, AvatarComponent, BaseComponent, ChatBox, ChipBarComponent, ConfirmationComponent, ConfirmationDialogComponent, ConsoleLayoutComponent, ContainerComponent, ContentComponent, ConversationContent, ConversationHeader, ConversationInput, ConversationMessage, DrawerComponent, EditorComponent, EmptyComponent, EnumSelect, FilterComponent, FolderComponent, FooterComponent, IconButtonComponent, IconComponent, ImageComponent, ImagePlaceholderComponent, ImagePreviewDialogComponent, InputComponent, LayoutComponent, ListComponent, Loading, LocationSelectorComponent, MaterialModule, MediaListComponent, MediaListItemComponent, MediaPreviewComponent, MediaPreviewDialogComponent, MediaUploadComponent, MediaUploadDialogComponent, MenuIconComponent, MenuUserComponent, MiniGuideComponent, NotFoundComponent, PaginatorComponent, PanelComponent, PanelHeaderComponent, PdfViewerComponent, RejectDialogComponent, ResizableContainerComponent, RichGridMediaComponent, RichItemComponent, RichLabelComponent, RichViewComponent, SearchBar, SearchIcon, Skeleton, SpinnerComponent, StorageBucketCreateComponent, StorageFileUploadComponent, StorageFolderCreateComponent, TabComponent, TableComponent, TabsComponent, ThumbnailComponent, TitleComponent, ToolbarComponent, TopbarAvatarMenuComponent, TopbarComponent, VideoUpload, WechatConnectDialogComponent, provideAngularLayout };
|
|
1046
|
+
export { APP_LAYOUT, AcceptDialogComponent, AccordionComponent, AngularComponentsModule, AppPageComponent, AppShellComponent, AvatarComponent, BaseComponent, ChatBox, ChipBarComponent, ConfirmationComponent, ConfirmationDialogComponent, ConsoleLayoutComponent, ContainerComponent, ContentComponent, ConversationContent, ConversationHeader, ConversationInput, ConversationMessage, DrawerComponent, EditorComponent, EmptyComponent, EnumSelect, FilterComponent, FolderComponent, FooterComponent, FooterLanguageSwitcherComponent, IconButtonComponent, IconComponent, ImageComponent, ImagePlaceholderComponent, ImagePreviewDialogComponent, InputComponent, LayoutComponent, ListComponent, Loading, LocationSelectorComponent, MaterialModule, MediaListComponent, MediaListItemComponent, MediaPreviewComponent, MediaPreviewDialogComponent, MediaUploadComponent, MediaUploadDialogComponent, MenuIconComponent, MenuUserComponent, MiniGuideComponent, NotFoundComponent, PageCollectionShellComponent, PaginatorComponent, PanelComponent, PanelHeaderComponent, PdfViewerComponent, RejectDialogComponent, ResizableContainerComponent, RichGridMediaComponent, RichItemComponent, RichLabelComponent, RichViewComponent, SearchBar, SearchIcon, Skeleton, SpinnerComponent, StorageBucketCreateComponent, StorageFileUploadComponent, StorageFolderCreateComponent, TabComponent, TableComponent, TabsComponent, ThumbnailComponent, TitleComponent, ToolbarComponent, TopbarAvatarMenuComponent, TopbarComponent, VideoUpload, WechatConnectDialogComponent, provideAngularLayout };
|
|
1029
1047
|
export type { AppLayoutConfig, AppTopbarConfig, Column, DrawerConfig, Message, MiniGuide, Role, TabMode, TableData };
|