@rolatech/angular-components 20.0.0-beta.13 → 20.0.0-beta.15
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/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
2
1
|
import * as i0 from '@angular/core';
|
|
3
2
|
import { Renderer2, ElementRef, OnInit, InjectionToken, EnvironmentProviders, AfterContentInit, AfterContentChecked, DoCheck, AfterViewInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
|
|
3
|
+
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
4
4
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
5
5
|
import * as i18 from '@angular/material/dialog';
|
|
6
6
|
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
@@ -59,6 +59,47 @@ import * as i41 from '@angular/material/tooltip';
|
|
|
59
59
|
import * as i42 from '@angular/material/tree';
|
|
60
60
|
import * as i43 from '@angular/cdk/portal';
|
|
61
61
|
|
|
62
|
+
declare class ChatBox {
|
|
63
|
+
isStreaming: boolean;
|
|
64
|
+
userInput: i0.ModelSignal<string | undefined>;
|
|
65
|
+
send: i0.OutputEmitterRef<void>;
|
|
66
|
+
onEnter(event: any): void;
|
|
67
|
+
sendMessage(): void;
|
|
68
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatBox, never>;
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatBox, "rolatech-chat-box", never, { "userInput": { "alias": "userInput"; "required": false; "isSignal": true; }; }, { "userInput": "userInputChange"; "send": "send"; }, never, never, true, never>;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
interface Video {
|
|
73
|
+
id?: string;
|
|
74
|
+
url: string;
|
|
75
|
+
thumbnail: string;
|
|
76
|
+
duration: number;
|
|
77
|
+
isUploading?: boolean;
|
|
78
|
+
progress: number | 0;
|
|
79
|
+
canBePreviewed: boolean;
|
|
80
|
+
}
|
|
81
|
+
declare class VideoUpload {
|
|
82
|
+
myVideo: i0.Signal<unknown>;
|
|
83
|
+
item: i0.InputSignal<Video | undefined>;
|
|
84
|
+
uploading: i0.ModelSignal<boolean>;
|
|
85
|
+
editing: i0.ModelSignal<boolean>;
|
|
86
|
+
progress: i0.InputSignal<number>;
|
|
87
|
+
mediaEdit: i0.OutputEmitterRef<Video>;
|
|
88
|
+
thumbnailUpload: i0.OutputEmitterRef<Video>;
|
|
89
|
+
upload: i0.OutputEmitterRef<{
|
|
90
|
+
data: FormData | null;
|
|
91
|
+
}>;
|
|
92
|
+
deleteMedia: i0.OutputEmitterRef<Video>;
|
|
93
|
+
editId: i0.ModelSignal<any>;
|
|
94
|
+
hasUnsaved: i0.InputSignal<boolean>;
|
|
95
|
+
onLoadedMetadata(event: Event): void;
|
|
96
|
+
onUpload(data: any): void;
|
|
97
|
+
onMediaEdit(): void;
|
|
98
|
+
onDeleteMedia(): void;
|
|
99
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VideoUpload, never>;
|
|
100
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VideoUpload, "rolatech-video-upload", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "uploading": { "alias": "uploading"; "required": false; "isSignal": true; }; "editing": { "alias": "editing"; "required": false; "isSignal": true; }; "progress": { "alias": "progress"; "required": false; "isSignal": true; }; "editId": { "alias": "editId"; "required": false; "isSignal": true; }; "hasUnsaved": { "alias": "hasUnsaved"; "required": false; "isSignal": true; }; }, { "uploading": "uploadingChange"; "editing": "editingChange"; "mediaEdit": "mediaEdit"; "thumbnailUpload": "thumbnailUpload"; "upload": "upload"; "deleteMedia": "deleteMedia"; "editId": "editIdChange"; }, never, never, true, never>;
|
|
101
|
+
}
|
|
102
|
+
|
|
62
103
|
declare class PdfViewerComponent {
|
|
63
104
|
sanitizer: DomSanitizer;
|
|
64
105
|
safeUrl: SafeResourceUrl;
|
|
@@ -825,5 +866,5 @@ declare class PanelHeaderComponent {
|
|
|
825
866
|
static ɵcmp: i0.ɵɵComponentDeclaration<PanelHeaderComponent, "rolatech-panel-header", never, {}, {}, never, ["*"], true, never>;
|
|
826
867
|
}
|
|
827
868
|
|
|
828
|
-
export { APP_LAYOUT, AcceptDialogComponent, AccordionComponent, AngularComponentsModule, AppPageComponent, AvatarComponent, BaseComponent, ChipBarComponent, ConfirmationComponent, ConfirmationDialogComponent, ConsoleLayoutComponent, ContainerComponent, ContentComponent, DrawerComponent, EditorComponent, EmptyComponent, FilterComponent, FolderComponent, FooterComponent, IconButtonComponent, IconComponent, ImageComponent, ImagePlaceholderComponent, ImagePreviewDialogComponent, InputComponent, LayoutComponent, ListComponent, LocationSelectorComponent, MaterialModule, MediaListComponent, MediaListItemComponent, MediaPreviewComponent, MediaPreviewDialogComponent, MediaUploadComponent, MediaUploadDialogComponent, MenuIconComponent, MenuUserComponent, MiniGuideComponent, NotFoundComponent, PaginatorComponent, PanelComponent, PanelHeaderComponent, PdfViewerComponent, RejectDialogComponent, ResizableContainerComponent, RichGridMediaComponent, RichItemComponent, RichLabelComponent, RichViewComponent, SpinnerComponent, StorageBucketCreateComponent, StorageFileUploadComponent, StorageFolderCreateComponent, TabComponent, TableComponent, TabsComponent, ThumbnailComponent, TitleComponent, ToolbarComponent, TopbarAvatarMenuComponent, TopbarComponent, WechatConnectDialogComponent, provideAngularLayout };
|
|
869
|
+
export { APP_LAYOUT, AcceptDialogComponent, AccordionComponent, AngularComponentsModule, AppPageComponent, AvatarComponent, BaseComponent, ChatBox, ChipBarComponent, ConfirmationComponent, ConfirmationDialogComponent, ConsoleLayoutComponent, ContainerComponent, ContentComponent, DrawerComponent, EditorComponent, EmptyComponent, FilterComponent, FolderComponent, FooterComponent, IconButtonComponent, IconComponent, ImageComponent, ImagePlaceholderComponent, ImagePreviewDialogComponent, InputComponent, LayoutComponent, ListComponent, LocationSelectorComponent, MaterialModule, MediaListComponent, MediaListItemComponent, MediaPreviewComponent, MediaPreviewDialogComponent, MediaUploadComponent, MediaUploadDialogComponent, MenuIconComponent, MenuUserComponent, MiniGuideComponent, NotFoundComponent, PaginatorComponent, PanelComponent, PanelHeaderComponent, PdfViewerComponent, RejectDialogComponent, ResizableContainerComponent, RichGridMediaComponent, RichItemComponent, RichLabelComponent, RichViewComponent, SpinnerComponent, StorageBucketCreateComponent, StorageFileUploadComponent, StorageFolderCreateComponent, TabComponent, TableComponent, TabsComponent, ThumbnailComponent, TitleComponent, ToolbarComponent, TopbarAvatarMenuComponent, TopbarComponent, VideoUpload, WechatConnectDialogComponent, provideAngularLayout };
|
|
829
870
|
export type { AppLayoutConfig, AppTopbarConfig, Column, DrawerConfig, MiniGuide, TableData };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-components",
|
|
3
|
-
"version": "20.0.0-beta.
|
|
3
|
+
"version": "20.0.0-beta.15",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "rolatech angular components",
|
|
6
6
|
"repository": {
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"lodash": "^4.17.21"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@rolatech/angular-common": "20.0.0-beta.
|
|
36
|
-
"@rolatech/angular-services": "20.0.0-beta.
|
|
35
|
+
"@rolatech/angular-common": "20.0.0-beta.15",
|
|
36
|
+
"@rolatech/angular-services": "20.0.0-beta.15",
|
|
37
37
|
"tslib": "^2.3.0"
|
|
38
38
|
},
|
|
39
39
|
"exports": {
|