@pristy/pristy-libvue 2.0.0 → 2.1.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.
- package/dist/components/CodeMirrorEditor.vue.d.ts.map +1 -1
- package/dist/components/breadcrumb/BreadCrumbAlfresco.vue.d.ts +0 -36
- package/dist/components/chat/ChatInput.vue.d.ts +50 -0
- package/dist/components/chat/ChatInput.vue.d.ts.map +1 -0
- package/dist/components/chat/ChatMessage.vue.d.ts +41 -0
- package/dist/components/chat/ChatMessage.vue.d.ts.map +1 -0
- package/dist/components/chat/ChatPanel.vue.d.ts +434 -0
- package/dist/components/chat/ChatPanel.vue.d.ts.map +1 -0
- package/dist/components/chat/ChatRoomList.vue.d.ts +52 -0
- package/dist/components/chat/ChatRoomList.vue.d.ts.map +1 -0
- package/dist/components/config/ConfigItemEditor.vue.d.ts +12 -0
- package/dist/components/config/ConfigItemEditor.vue.d.ts.map +1 -0
- package/dist/components/config/ConfigSplitView.vue.d.ts +14 -0
- package/dist/components/config/ConfigSplitView.vue.d.ts.map +1 -0
- package/dist/components/navigation/ContentGridView.vue.d.ts +4 -1
- package/dist/components/navigation/ContentListView.vue.d.ts +4 -1
- package/dist/components/navigation/ContentTableView.vue.d.ts +4 -1
- package/dist/components/navigation/DynamicContentView.vue.d.ts +39 -24
- package/dist/components/popup/CreateWorkflowPopup.vue.d.ts +21 -15
- package/dist/components/popup/CreateWorkflowPopup.vue.d.ts.map +1 -1
- package/dist/components/popup/MemberListPopup.vue.d.ts +7 -7
- package/dist/components/users/MemberList.vue.d.ts +6 -6
- package/dist/components/users/MemberList.vue.d.ts.map +1 -1
- package/dist/composables/useChatWebSocket.d.ts +20 -0
- package/dist/composables/useChatWebSocket.d.ts.map +1 -0
- package/dist/composables/useCollabEditor.d.ts.map +1 -1
- package/dist/i18n/index.d.ts +94 -0
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/pristy-libvue.css +1 -1
- package/dist/pristy-libvue.es.js +11581 -9266
- package/dist/pristy-libvue.es.js.map +1 -1
- package/dist/pristy-libvue.umd.js +20 -20
- package/dist/pristy-libvue.umd.js.map +1 -1
- package/dist/services/AlfrescoFileService.d.ts +17 -1
- package/dist/services/AlfrescoFileService.d.ts.map +1 -1
- package/dist/services/ChatBackendService.d.ts +72 -0
- package/dist/services/ChatBackendService.d.ts.map +1 -0
- package/dist/services/CollabService.d.ts +12 -2
- package/dist/services/CollabService.d.ts.map +1 -1
- package/dist/services/FavoriteService.d.ts +1 -2
- package/dist/services/FavoriteService.d.ts.map +1 -1
- package/dist/services/MenuService.d.ts +1 -1
- package/dist/services/NodeToMenuItemService.d.ts +2 -2
- package/dist/services/NodeToMenuItemService.d.ts.map +1 -1
- package/dist/services/RocketChatAuthService.d.ts +79 -0
- package/dist/services/RocketChatAuthService.d.ts.map +1 -0
- package/dist/services/RocketChatService.d.ts +102 -0
- package/dist/services/RocketChatService.d.ts.map +1 -0
- package/dist/services/WorkspaceService.d.ts +16 -35
- package/dist/services/WorkspaceService.d.ts.map +1 -1
- package/dist/stores/chat.d.ts +337 -0
- package/dist/stores/chat.d.ts.map +1 -0
- package/dist/stores/config.d.ts +15 -0
- package/dist/stores/config.d.ts.map +1 -1
- package/dist/stores/favorites.d.ts +57 -0
- package/dist/stores/favorites.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {
|
|
3
|
+
$emit: (event: "update:config", ...args: any[]) => void;
|
|
4
|
+
loading: boolean;
|
|
5
|
+
configData: unknown[];
|
|
6
|
+
descriptions: Record<string, any>;
|
|
7
|
+
$props: {
|
|
8
|
+
readonly loading?: boolean;
|
|
9
|
+
readonly configData?: unknown[];
|
|
10
|
+
readonly descriptions?: Record<string, any>;
|
|
11
|
+
};
|
|
12
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
13
|
+
export default _default;
|
|
14
|
+
//# sourceMappingURL=ConfigSplitView.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConfigSplitView.vue.d.ts","sourceRoot":"","sources":["../../../src/components/config/ConfigSplitView.vue"],"names":[],"mappings":";AAoGA;"}
|
|
@@ -34,6 +34,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
34
34
|
}, {
|
|
35
35
|
alfrescoFileService(): {
|
|
36
36
|
lruUrls: __DTS_DEFAULT_0__<any, any>;
|
|
37
|
+
pendingRenditions: Set<any>;
|
|
38
|
+
failedRenditions: __DTS_DEFAULT_0__<any, any>;
|
|
37
39
|
getThumbnailUrl(nodeId: any): any;
|
|
38
40
|
getPreviewUrl(nodeId: any): any;
|
|
39
41
|
getContentUrl(nodeId: any): any;
|
|
@@ -44,7 +46,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
44
46
|
_createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
|
|
45
47
|
createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
|
|
46
48
|
getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
|
|
47
|
-
|
|
49
|
+
handleThumbnailFallback(event: Event): void;
|
|
50
|
+
onImageLoadFailure(event: Event, node: any): void;
|
|
48
51
|
isThumbnailSupported(node: any): any;
|
|
49
52
|
getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
|
|
50
53
|
getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
|
|
@@ -33,6 +33,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
33
33
|
}, {
|
|
34
34
|
alfrescoFileService(): {
|
|
35
35
|
lruUrls: __DTS_DEFAULT_0__<any, any>;
|
|
36
|
+
pendingRenditions: Set<any>;
|
|
37
|
+
failedRenditions: __DTS_DEFAULT_0__<any, any>;
|
|
36
38
|
getThumbnailUrl(nodeId: any): any;
|
|
37
39
|
getPreviewUrl(nodeId: any): any;
|
|
38
40
|
getContentUrl(nodeId: any): any;
|
|
@@ -43,7 +45,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
43
45
|
_createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
|
|
44
46
|
createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
|
|
45
47
|
getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
|
|
46
|
-
|
|
48
|
+
handleThumbnailFallback(event: Event): void;
|
|
49
|
+
onImageLoadFailure(event: Event, node: any): void;
|
|
47
50
|
isThumbnailSupported(node: any): any;
|
|
48
51
|
getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
|
|
49
52
|
getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
|
|
@@ -65,6 +65,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
65
65
|
getValue(obj: any, path: any): any;
|
|
66
66
|
alfrescoFileService(): {
|
|
67
67
|
lruUrls: __DTS_DEFAULT_0__<any, any>;
|
|
68
|
+
pendingRenditions: Set<any>;
|
|
69
|
+
failedRenditions: __DTS_DEFAULT_0__<any, any>;
|
|
68
70
|
getThumbnailUrl(nodeId: any): any;
|
|
69
71
|
getPreviewUrl(nodeId: any): any;
|
|
70
72
|
getContentUrl(nodeId: any): any;
|
|
@@ -75,7 +77,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
75
77
|
_createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
|
|
76
78
|
createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
|
|
77
79
|
getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
|
|
78
|
-
|
|
80
|
+
handleThumbnailFallback(event: Event): void;
|
|
81
|
+
onImageLoadFailure(event: Event, node: any): void;
|
|
79
82
|
isThumbnailSupported(node: any): any;
|
|
80
83
|
getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
|
|
81
84
|
getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
|
|
@@ -16,13 +16,12 @@ import { TreeNode } from 'primevue/treenode';
|
|
|
16
16
|
import { DataViewProps, DataViewSlots, DataViewPageEvent } from 'primevue/dataview';
|
|
17
17
|
import { MessageProps, MessageSlots } from 'primevue/message';
|
|
18
18
|
import { DialogProps, DialogSlots } from 'primevue/dialog';
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import { StepPanelProps, StepPanelSlots } from 'primevue/steppanel';
|
|
19
|
+
import { DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods } from 'primevue/dropdown';
|
|
20
|
+
import { StepsProps, StepsSlots } from 'primevue/steps';
|
|
22
21
|
import { AvatarProps, AvatarSlots } from 'primevue/avatar';
|
|
23
22
|
import { InputTextProps, InputTextSlots } from 'primevue/inputtext';
|
|
24
23
|
import { IconFieldProps, IconFieldSlots } from 'primevue/iconfield';
|
|
25
|
-
import {
|
|
24
|
+
import { CalendarProps, CalendarSlots, CalendarEmits } from 'primevue/calendar';
|
|
26
25
|
import { TextareaProps, TextareaSlots } from 'primevue/textarea';
|
|
27
26
|
import { InputIconProps, InputIconSlots } from 'primevue/inputicon';
|
|
28
27
|
import { FileUploadProps, FileUploadSlots, FileUploadErrorEvent, FileUploadSelectEvent, FileUploadUploadEvent, FileUploadProgressEvent, FileUploadBeforeUploadEvent, FileUploadUploaderEvent, FileUploadBeforeSendEvent, FileUploadRemoveEvent, FileUploadRemoveUploadedFile, FileUploadMethods } from 'primevue/fileupload';
|
|
@@ -32,6 +31,7 @@ import { PaginatorProps, PaginatorSlots, PageState } from 'primevue/paginator';
|
|
|
32
31
|
import { ChipsProps, ChipsSlots, ChipsEmits } from 'primevue/chips';
|
|
33
32
|
import { InputGroupProps, InputGroupSlots } from 'primevue/inputgroup';
|
|
34
33
|
import { InputGroupAddonProps, InputGroupAddonSlots } from 'primevue/inputgroupaddon';
|
|
34
|
+
import { DatePickerProps, DatePickerSlots, DatePickerBlurEvent, DatePickerMonthChangeEvent, DatePickerYearChangeEvent } from 'primevue/datepicker';
|
|
35
35
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
36
36
|
files: {
|
|
37
37
|
type: ArrayConstructor;
|
|
@@ -219,6 +219,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
219
219
|
}, {
|
|
220
220
|
alfrescoFileService(): {
|
|
221
221
|
lruUrls: __DTS_DEFAULT_0__<any, any>;
|
|
222
|
+
pendingRenditions: Set<any>;
|
|
223
|
+
failedRenditions: __DTS_DEFAULT_0__<any, any>;
|
|
222
224
|
getThumbnailUrl(nodeId: any): any;
|
|
223
225
|
getPreviewUrl(nodeId: any): any;
|
|
224
226
|
getContentUrl(nodeId: any): any;
|
|
@@ -229,7 +231,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
229
231
|
_createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
|
|
230
232
|
createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
|
|
231
233
|
getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
|
|
232
|
-
|
|
234
|
+
handleThumbnailFallback(event: Event): void;
|
|
235
|
+
onImageLoadFailure(event: Event, node: any): void;
|
|
233
236
|
isThumbnailSupported(node: any): any;
|
|
234
237
|
getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
|
|
235
238
|
getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
|
|
@@ -354,6 +357,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
354
357
|
}, {
|
|
355
358
|
alfrescoFileService(): {
|
|
356
359
|
lruUrls: __DTS_DEFAULT_0__<any, any>;
|
|
360
|
+
pendingRenditions: Set<any>;
|
|
361
|
+
failedRenditions: __DTS_DEFAULT_0__<any, any>;
|
|
357
362
|
getThumbnailUrl(nodeId: any): any;
|
|
358
363
|
getPreviewUrl(nodeId: any): any;
|
|
359
364
|
getContentUrl(nodeId: any): any;
|
|
@@ -364,7 +369,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
364
369
|
_createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
|
|
365
370
|
createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
|
|
366
371
|
getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
|
|
367
|
-
|
|
372
|
+
handleThumbnailFallback(event: Event): void;
|
|
373
|
+
onImageLoadFailure(event: Event, node: any): void;
|
|
368
374
|
isThumbnailSupported(node: any): any;
|
|
369
375
|
getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
|
|
370
376
|
getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
|
|
@@ -513,6 +519,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
513
519
|
getValue(obj: any, path: any): any;
|
|
514
520
|
alfrescoFileService(): {
|
|
515
521
|
lruUrls: __DTS_DEFAULT_0__<any, any>;
|
|
522
|
+
pendingRenditions: Set<any>;
|
|
523
|
+
failedRenditions: __DTS_DEFAULT_0__<any, any>;
|
|
516
524
|
getThumbnailUrl(nodeId: any): any;
|
|
517
525
|
getPreviewUrl(nodeId: any): any;
|
|
518
526
|
getContentUrl(nodeId: any): any;
|
|
@@ -523,7 +531,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
523
531
|
_createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
|
|
524
532
|
createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
|
|
525
533
|
getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
|
|
526
|
-
|
|
534
|
+
handleThumbnailFallback(event: Event): void;
|
|
535
|
+
onImageLoadFailure(event: Event, node: any): void;
|
|
527
536
|
isThumbnailSupported(node: any): any;
|
|
528
537
|
getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
|
|
529
538
|
getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
|
|
@@ -755,6 +764,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
755
764
|
PrimeDialog: DefineComponent<DialogProps, DialogSlots, ((e: "update:visible", value: boolean) => void) & ((e: "hide") => void) & ((e: "after-hide") => void) & ((e: "show") => void) & ((e: "maximize", event: Event) => void) & ((e: "unmaximize", event: Event) => void) & ((e: "dragstart", event: Event) => void) & ((e: "dragend", event: Event) => void)>;
|
|
756
765
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
757
766
|
CreateWorkflowPopup: DefineComponent<{}, {}, {
|
|
767
|
+
activeStep: number;
|
|
758
768
|
startWorkflowError: boolean;
|
|
759
769
|
failStartWorkflowErrorMessage: any;
|
|
760
770
|
workflowOptions: {
|
|
@@ -774,19 +784,24 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
774
784
|
label: string;
|
|
775
785
|
value: number;
|
|
776
786
|
};
|
|
787
|
+
workspaceMembersOnly: boolean;
|
|
777
788
|
searchInput: any;
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
value: any;
|
|
781
|
-
matchMode: string;
|
|
782
|
-
};
|
|
783
|
-
};
|
|
789
|
+
isSearching: boolean;
|
|
790
|
+
searchTimeout: any;
|
|
784
791
|
usersList: any[];
|
|
785
792
|
minDate: Date;
|
|
786
793
|
}, {
|
|
794
|
+
workspaceId(): any;
|
|
795
|
+
stepItems(): {
|
|
796
|
+
label: string;
|
|
797
|
+
}[];
|
|
787
798
|
isStartWorkflowButtonDisable(): boolean;
|
|
788
799
|
}, {
|
|
789
|
-
|
|
800
|
+
nextStep(): void;
|
|
801
|
+
prevStep(): void;
|
|
802
|
+
onSearchInput(): void;
|
|
803
|
+
loadWorkspaceMembers(): void;
|
|
804
|
+
searchUsers(term: any): void;
|
|
790
805
|
closePopup(reload: any): void;
|
|
791
806
|
startWorkflow(): void;
|
|
792
807
|
}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "message")[], "close" | "message", PublicProps, Readonly<{}> & Readonly<{
|
|
@@ -797,15 +812,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
797
812
|
PrimeButton: DefineComponent<ButtonProps, ButtonSlots, (e: string, ...args: any[]) => void>;
|
|
798
813
|
PrimeDataTable: DefineComponent<DataTableProps<any>, DataTableSlots<any>, ((e: "sort", event: DataTableSortEvent) => void) & ((e: "filter", event: DataTableFilterEvent) => void) & ((e: "update:first", value: number) => void) & ((e: "update:rows", value: number) => void) & ((e: "page", event: DataTablePageEvent) => void) & ((e: "value-change", value: any[]) => void) & ((e: "update:sortField", value: string) => void) & ((e: "update:sortOrder", value: number) => void) & ((e: "update:multiSortMeta", value: DataTableSortMeta[]) => void) & ((e: "update:selection", value: any) => void) & ((e: "update:contextMenuSelection", value: any) => void) & ((e: "update:expandedRows", value: any[] | DataTableExpandedRows) => void) & ((e: "update:expandedRowGroups", value: any[] | DataTableExpandedRows) => void) & ((e: "update:filters", value: DataTableFilterMeta) => void) & ((e: "update:editingRows", value: any[] | DataTableEditingRows) => void) & ((e: "row-click", event: DataTableRowClickEvent<any>) => void) & ((e: "row-dblclick", event: DataTableRowDoubleClickEvent) => void) & ((e: "row-contextmenu", event: DataTableRowContextMenuEvent) => void) & ((e: "row-select", event: DataTableRowSelectEvent<any>) => void) & ((e: "row-select-all", event: DataTableRowSelectAllEvent<any>) => void) & ((e: "row-unselect-all", event: DataTableRowUnselectAllEvent) => void) & ((e: "row-unselect", event: DataTableRowUnselectEvent) => void) & ((e: "select-all-change", event: DataTableSelectAllChangeEvent) => void) & ((e: "column-resize-end", event: DataTableColumnResizeEndEvent) => void) & ((e: "column-reorder", event: DataTableColumnReorderEvent) => void) & ((e: "row-reorder", event: DataTableRowReorderEvent) => void) & ((e: "row-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "row-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "rowgroup-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "rowgroup-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "cell-edit-init", event: DataTableCellEditInitEvent<any>) => void) & ((e: "cell-edit-complete", event: DataTableCellEditCompleteEvent<any>) => void) & ((e: "cell-edit-cancel", event: DataTableCellEditCancelEvent) => void) & ((e: "row-edit-init", event: DataTableRowEditInitEvent<any>) => void) & ((e: "row-edit-save", event: DataTableRowEditSaveEvent<any>) => void) & ((e: "row-edit-cancel", event: DataTableRowEditCancelEvent<any>) => void) & ((e: "state-restore", event: DataTableStateEvent<any>) => void) & ((e: "state-save", event: DataTableStateEvent<any>) => void), DataTableMethods>;
|
|
799
814
|
PrimeColumn: DefineComponent<ColumnProps, ColumnSlots, (e: string, ...args: any[]) => void>;
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
PrimeStepPanel: DefineComponent<StepPanelProps, StepPanelSlots, (e: string, ...args: any[]) => void>;
|
|
815
|
+
PrimeDropdown: DefineComponent<DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods>;
|
|
816
|
+
PrimeSteps: DefineComponent<StepsProps, StepsSlots, (e: string, ...args: any[]) => void>;
|
|
803
817
|
PrimeAvatar: DefineComponent<AvatarProps, AvatarSlots, (e: "error", event: Event) => void>;
|
|
804
818
|
PrimeInputText: DefineComponent<InputTextProps, InputTextSlots, ((e: "update:modelValue", value: string) => void) & ((e: "value-change", value: string) => void)>;
|
|
805
819
|
PrimeIconField: DefineComponent<IconFieldProps, IconFieldSlots, (e: string, ...args: any[]) => void>;
|
|
806
|
-
|
|
820
|
+
PrimeCalendar: DefineComponent<CalendarProps, CalendarSlots, CalendarEmits>;
|
|
807
821
|
PrimeTextArea: DefineComponent<TextareaProps, TextareaSlots, ((e: "update:modelValue", value: string) => void) & ((e: "value-change", value: string) => void)>;
|
|
808
822
|
PrimeInputIcon: DefineComponent<InputIconProps, InputIconSlots, (e: string, ...args: any[]) => void>;
|
|
823
|
+
PrimeCheckbox: DefineComponent<CheckboxProps, CheckboxSlots, ((e: "update:modelValue", value: any) => void) & ((e: "value-change", value: any) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "update:indeterminate", value: false) => void) & ((e: "change", event: Event) => void)>;
|
|
809
824
|
PrimeMessage: DefineComponent<MessageProps, MessageSlots, ((e: "close", event: Event) => void) & ((e: "life-end") => void)>;
|
|
810
825
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
811
826
|
ImportNewVersionPopup: DefineComponent<{}, {}, {
|
|
@@ -849,7 +864,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
849
864
|
}, {
|
|
850
865
|
onGoToSiteMemberPage(): void;
|
|
851
866
|
closePopup(reload: any): void;
|
|
852
|
-
loadMembers(): void;
|
|
867
|
+
loadMembers(siteId: any): void;
|
|
853
868
|
updateInheritedGroup(node: any): any;
|
|
854
869
|
fetchGroupMemberships(): void;
|
|
855
870
|
loadPermissions(): void;
|
|
@@ -910,16 +925,16 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
910
925
|
rolesValues: {
|
|
911
926
|
name: string;
|
|
912
927
|
}[];
|
|
913
|
-
membersToAddList: any;
|
|
914
928
|
defaultDropDownValue: {
|
|
915
929
|
name: string;
|
|
916
930
|
};
|
|
917
931
|
selectedMemberToAdd: any;
|
|
918
|
-
filteredMembers: any;
|
|
932
|
+
filteredMembers: any[];
|
|
919
933
|
addSelectedRole: any;
|
|
920
934
|
heredityValue: any;
|
|
921
|
-
}, {
|
|
922
|
-
|
|
935
|
+
}, {
|
|
936
|
+
sortableMembers(): any[];
|
|
937
|
+
}, {
|
|
923
938
|
toggleAddMember(): void;
|
|
924
939
|
toggleChangeMemberRole(member: any): void;
|
|
925
940
|
toggleDeleteMember(member: any): void;
|
|
@@ -991,7 +1006,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
991
1006
|
PrimeDataTable: DefineComponent<DataTableProps<any>, DataTableSlots<any>, ((e: "sort", event: DataTableSortEvent) => void) & ((e: "filter", event: DataTableFilterEvent) => void) & ((e: "update:first", value: number) => void) & ((e: "update:rows", value: number) => void) & ((e: "page", event: DataTablePageEvent) => void) & ((e: "value-change", value: any[]) => void) & ((e: "update:sortField", value: string) => void) & ((e: "update:sortOrder", value: number) => void) & ((e: "update:multiSortMeta", value: DataTableSortMeta[]) => void) & ((e: "update:selection", value: any) => void) & ((e: "update:contextMenuSelection", value: any) => void) & ((e: "update:expandedRows", value: any[] | DataTableExpandedRows) => void) & ((e: "update:expandedRowGroups", value: any[] | DataTableExpandedRows) => void) & ((e: "update:filters", value: DataTableFilterMeta) => void) & ((e: "update:editingRows", value: any[] | DataTableEditingRows) => void) & ((e: "row-click", event: DataTableRowClickEvent<any>) => void) & ((e: "row-dblclick", event: DataTableRowDoubleClickEvent) => void) & ((e: "row-contextmenu", event: DataTableRowContextMenuEvent) => void) & ((e: "row-select", event: DataTableRowSelectEvent<any>) => void) & ((e: "row-select-all", event: DataTableRowSelectAllEvent<any>) => void) & ((e: "row-unselect-all", event: DataTableRowUnselectAllEvent) => void) & ((e: "row-unselect", event: DataTableRowUnselectEvent) => void) & ((e: "select-all-change", event: DataTableSelectAllChangeEvent) => void) & ((e: "column-resize-end", event: DataTableColumnResizeEndEvent) => void) & ((e: "column-reorder", event: DataTableColumnReorderEvent) => void) & ((e: "row-reorder", event: DataTableRowReorderEvent) => void) & ((e: "row-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "row-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "rowgroup-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "rowgroup-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "cell-edit-init", event: DataTableCellEditInitEvent<any>) => void) & ((e: "cell-edit-complete", event: DataTableCellEditCompleteEvent<any>) => void) & ((e: "cell-edit-cancel", event: DataTableCellEditCancelEvent) => void) & ((e: "row-edit-init", event: DataTableRowEditInitEvent<any>) => void) & ((e: "row-edit-save", event: DataTableRowEditSaveEvent<any>) => void) & ((e: "row-edit-cancel", event: DataTableRowEditCancelEvent<any>) => void) & ((e: "state-restore", event: DataTableStateEvent<any>) => void) & ((e: "state-save", event: DataTableStateEvent<any>) => void), DataTableMethods>;
|
|
992
1007
|
PrimeColumn: DefineComponent<ColumnProps, ColumnSlots, (e: string, ...args: any[]) => void>;
|
|
993
1008
|
PrimeAvatar: DefineComponent<AvatarProps, AvatarSlots, (e: "error", event: Event) => void>;
|
|
994
|
-
|
|
1009
|
+
PrimeDropdown: DefineComponent<DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods>;
|
|
995
1010
|
PrimeAutoComplete: DefineComponent<AutoCompleteProps, AutoCompleteSlots, ((e: "clear") => void) & ((e: "update:modelValue", value: any) => void) & ((e: "value-change", value: any) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "hide") => void) & ((e: "show") => void) & ((e: "change", event: AutoCompleteChangeEvent) => void) & ((e: "before-show") => void) & ((e: "before-hide") => void) & ((e: "item-select", event: AutoCompleteOptionSelectEvent) => void) & ((e: "item-unselect", event: AutoCompleteOptionUnselectEvent) => void) & ((e: "option-select", event: AutoCompleteOptionSelectEvent) => void) & ((e: "option-unselect", event: AutoCompleteOptionUnselectEvent) => void) & ((e: "dropdown-click", event: AutoCompleteDropdownClickEvent) => void) & ((e: "complete", event: AutoCompleteCompleteEvent) => void)>;
|
|
996
1011
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
997
1012
|
PrimeDialog: DefineComponent<DialogProps, DialogSlots, ((e: "update:visible", value: boolean) => void) & ((e: "hide") => void) & ((e: "after-hide") => void) & ((e: "show") => void) & ((e: "maximize", event: Event) => void) & ((e: "unmaximize", event: Event) => void) & ((e: "dragstart", event: Event) => void) & ((e: "dragend", event: Event) => void)>;
|
|
@@ -4,17 +4,18 @@ import { DialogProps, DialogSlots } from 'primevue/dialog';
|
|
|
4
4
|
import { ButtonProps, ButtonSlots } from 'primevue/button';
|
|
5
5
|
import { DataTableProps, DataTableSlots, DataTableSortEvent, DataTableFilterEvent, DataTablePageEvent, DataTableSortMeta, DataTableExpandedRows, DataTableFilterMeta, DataTableEditingRows, DataTableRowClickEvent, DataTableRowDoubleClickEvent, DataTableRowContextMenuEvent, DataTableRowSelectEvent, DataTableRowSelectAllEvent, DataTableRowUnselectAllEvent, DataTableRowUnselectEvent, DataTableSelectAllChangeEvent, DataTableColumnResizeEndEvent, DataTableColumnReorderEvent, DataTableRowReorderEvent, DataTableRowExpandEvent, DataTableRowCollapseEvent, DataTableCellEditInitEvent, DataTableCellEditCompleteEvent, DataTableCellEditCancelEvent, DataTableRowEditInitEvent, DataTableRowEditSaveEvent, DataTableRowEditCancelEvent, DataTableStateEvent, DataTableMethods } from 'primevue/datatable';
|
|
6
6
|
import { ColumnProps, ColumnSlots } from 'primevue/column';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { StepPanelProps, StepPanelSlots } from 'primevue/steppanel';
|
|
7
|
+
import { DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods } from 'primevue/dropdown';
|
|
8
|
+
import { StepsProps, StepsSlots } from 'primevue/steps';
|
|
10
9
|
import { AvatarProps, AvatarSlots } from 'primevue/avatar';
|
|
11
10
|
import { InputTextProps, InputTextSlots } from 'primevue/inputtext';
|
|
12
11
|
import { IconFieldProps, IconFieldSlots } from 'primevue/iconfield';
|
|
13
|
-
import {
|
|
12
|
+
import { CalendarProps, CalendarSlots, CalendarEmits } from 'primevue/calendar';
|
|
14
13
|
import { TextareaProps, TextareaSlots } from 'primevue/textarea';
|
|
15
14
|
import { InputIconProps, InputIconSlots } from 'primevue/inputicon';
|
|
15
|
+
import { CheckboxProps, CheckboxSlots } from 'primevue/checkbox';
|
|
16
16
|
import { MessageProps, MessageSlots } from 'primevue/message';
|
|
17
17
|
declare const _default: DefineComponent<{}, {}, {
|
|
18
|
+
activeStep: number;
|
|
18
19
|
startWorkflowError: boolean;
|
|
19
20
|
failStartWorkflowErrorMessage: any;
|
|
20
21
|
workflowOptions: {
|
|
@@ -34,19 +35,24 @@ declare const _default: DefineComponent<{}, {}, {
|
|
|
34
35
|
label: string;
|
|
35
36
|
value: number;
|
|
36
37
|
};
|
|
38
|
+
workspaceMembersOnly: boolean;
|
|
37
39
|
searchInput: any;
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
value: any;
|
|
41
|
-
matchMode: string;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
40
|
+
isSearching: boolean;
|
|
41
|
+
searchTimeout: any;
|
|
44
42
|
usersList: any[];
|
|
45
43
|
minDate: Date;
|
|
46
44
|
}, {
|
|
45
|
+
workspaceId(): any;
|
|
46
|
+
stepItems(): {
|
|
47
|
+
label: string;
|
|
48
|
+
}[];
|
|
47
49
|
isStartWorkflowButtonDisable(): boolean;
|
|
48
50
|
}, {
|
|
49
|
-
|
|
51
|
+
nextStep(): void;
|
|
52
|
+
prevStep(): void;
|
|
53
|
+
onSearchInput(): void;
|
|
54
|
+
loadWorkspaceMembers(): void;
|
|
55
|
+
searchUsers(term: any): void;
|
|
50
56
|
closePopup(reload: any): void;
|
|
51
57
|
startWorkflow(): void;
|
|
52
58
|
}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "message")[], "close" | "message", PublicProps, Readonly<{}> & Readonly<{
|
|
@@ -57,15 +63,15 @@ declare const _default: DefineComponent<{}, {}, {
|
|
|
57
63
|
PrimeButton: DefineComponent<ButtonProps, ButtonSlots, (e: string, ...args: any[]) => void>;
|
|
58
64
|
PrimeDataTable: DefineComponent<DataTableProps<any>, DataTableSlots<any>, ((e: "sort", event: DataTableSortEvent) => void) & ((e: "filter", event: DataTableFilterEvent) => void) & ((e: "update:first", value: number) => void) & ((e: "update:rows", value: number) => void) & ((e: "page", event: DataTablePageEvent) => void) & ((e: "value-change", value: any[]) => void) & ((e: "update:sortField", value: string) => void) & ((e: "update:sortOrder", value: number) => void) & ((e: "update:multiSortMeta", value: DataTableSortMeta[]) => void) & ((e: "update:selection", value: any) => void) & ((e: "update:contextMenuSelection", value: any) => void) & ((e: "update:expandedRows", value: any[] | DataTableExpandedRows) => void) & ((e: "update:expandedRowGroups", value: any[] | DataTableExpandedRows) => void) & ((e: "update:filters", value: DataTableFilterMeta) => void) & ((e: "update:editingRows", value: any[] | DataTableEditingRows) => void) & ((e: "row-click", event: DataTableRowClickEvent<any>) => void) & ((e: "row-dblclick", event: DataTableRowDoubleClickEvent) => void) & ((e: "row-contextmenu", event: DataTableRowContextMenuEvent) => void) & ((e: "row-select", event: DataTableRowSelectEvent<any>) => void) & ((e: "row-select-all", event: DataTableRowSelectAllEvent<any>) => void) & ((e: "row-unselect-all", event: DataTableRowUnselectAllEvent) => void) & ((e: "row-unselect", event: DataTableRowUnselectEvent) => void) & ((e: "select-all-change", event: DataTableSelectAllChangeEvent) => void) & ((e: "column-resize-end", event: DataTableColumnResizeEndEvent) => void) & ((e: "column-reorder", event: DataTableColumnReorderEvent) => void) & ((e: "row-reorder", event: DataTableRowReorderEvent) => void) & ((e: "row-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "row-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "rowgroup-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "rowgroup-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "cell-edit-init", event: DataTableCellEditInitEvent<any>) => void) & ((e: "cell-edit-complete", event: DataTableCellEditCompleteEvent<any>) => void) & ((e: "cell-edit-cancel", event: DataTableCellEditCancelEvent) => void) & ((e: "row-edit-init", event: DataTableRowEditInitEvent<any>) => void) & ((e: "row-edit-save", event: DataTableRowEditSaveEvent<any>) => void) & ((e: "row-edit-cancel", event: DataTableRowEditCancelEvent<any>) => void) & ((e: "state-restore", event: DataTableStateEvent<any>) => void) & ((e: "state-save", event: DataTableStateEvent<any>) => void), DataTableMethods>;
|
|
59
65
|
PrimeColumn: DefineComponent<ColumnProps, ColumnSlots, (e: string, ...args: any[]) => void>;
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
PrimeStepPanel: DefineComponent<StepPanelProps, StepPanelSlots, (e: string, ...args: any[]) => void>;
|
|
66
|
+
PrimeDropdown: DefineComponent<DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods>;
|
|
67
|
+
PrimeSteps: DefineComponent<StepsProps, StepsSlots, (e: string, ...args: any[]) => void>;
|
|
63
68
|
PrimeAvatar: DefineComponent<AvatarProps, AvatarSlots, (e: "error", event: Event) => void>;
|
|
64
69
|
PrimeInputText: DefineComponent<InputTextProps, InputTextSlots, ((e: "update:modelValue", value: string) => void) & ((e: "value-change", value: string) => void)>;
|
|
65
70
|
PrimeIconField: DefineComponent<IconFieldProps, IconFieldSlots, (e: string, ...args: any[]) => void>;
|
|
66
|
-
|
|
71
|
+
PrimeCalendar: DefineComponent<CalendarProps, CalendarSlots, CalendarEmits>;
|
|
67
72
|
PrimeTextArea: DefineComponent<TextareaProps, TextareaSlots, ((e: "update:modelValue", value: string) => void) & ((e: "value-change", value: string) => void)>;
|
|
68
73
|
PrimeInputIcon: DefineComponent<InputIconProps, InputIconSlots, (e: string, ...args: any[]) => void>;
|
|
74
|
+
PrimeCheckbox: DefineComponent<CheckboxProps, CheckboxSlots, ((e: "update:modelValue", value: any) => void) & ((e: "value-change", value: any) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "update:indeterminate", value: false) => void) & ((e: "change", event: Event) => void)>;
|
|
69
75
|
PrimeMessage: DefineComponent<MessageProps, MessageSlots, ((e: "close", event: Event) => void) & ((e: "life-end") => void)>;
|
|
70
76
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
71
77
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateWorkflowPopup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/popup/CreateWorkflowPopup.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"CreateWorkflowPopup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/popup/CreateWorkflowPopup.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAyRA;"}
|
|
@@ -4,7 +4,7 @@ import { ButtonProps, ButtonSlots } from 'primevue/button';
|
|
|
4
4
|
import { DataTableProps, DataTableSlots, DataTableSortEvent, DataTableFilterEvent, DataTablePageEvent, DataTableSortMeta, DataTableExpandedRows, DataTableFilterMeta, DataTableEditingRows, DataTableRowClickEvent, DataTableRowDoubleClickEvent, DataTableRowContextMenuEvent, DataTableRowSelectEvent, DataTableRowSelectAllEvent, DataTableRowUnselectAllEvent, DataTableRowUnselectEvent, DataTableSelectAllChangeEvent, DataTableColumnResizeEndEvent, DataTableColumnReorderEvent, DataTableRowReorderEvent, DataTableRowExpandEvent, DataTableRowCollapseEvent, DataTableCellEditInitEvent, DataTableCellEditCompleteEvent, DataTableCellEditCancelEvent, DataTableRowEditInitEvent, DataTableRowEditSaveEvent, DataTableRowEditCancelEvent, DataTableStateEvent, DataTableMethods } from 'primevue/datatable';
|
|
5
5
|
import { ColumnProps, ColumnSlots } from 'primevue/column';
|
|
6
6
|
import { AvatarProps, AvatarSlots } from 'primevue/avatar';
|
|
7
|
-
import {
|
|
7
|
+
import { DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods } from 'primevue/dropdown';
|
|
8
8
|
import { AutoCompleteProps, AutoCompleteSlots, AutoCompleteChangeEvent, AutoCompleteOptionSelectEvent, AutoCompleteOptionUnselectEvent, AutoCompleteDropdownClickEvent, AutoCompleteCompleteEvent } from 'primevue/autocomplete';
|
|
9
9
|
import { DialogProps, DialogSlots } from 'primevue/dialog';
|
|
10
10
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
@@ -29,7 +29,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
29
29
|
}, {
|
|
30
30
|
onGoToSiteMemberPage(): void;
|
|
31
31
|
closePopup(reload: any): void;
|
|
32
|
-
loadMembers(): void;
|
|
32
|
+
loadMembers(siteId: any): void;
|
|
33
33
|
updateInheritedGroup(node: any): any;
|
|
34
34
|
fetchGroupMemberships(): void;
|
|
35
35
|
loadPermissions(): void;
|
|
@@ -90,16 +90,16 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
90
90
|
rolesValues: {
|
|
91
91
|
name: string;
|
|
92
92
|
}[];
|
|
93
|
-
membersToAddList: any;
|
|
94
93
|
defaultDropDownValue: {
|
|
95
94
|
name: string;
|
|
96
95
|
};
|
|
97
96
|
selectedMemberToAdd: any;
|
|
98
|
-
filteredMembers: any;
|
|
97
|
+
filteredMembers: any[];
|
|
99
98
|
addSelectedRole: any;
|
|
100
99
|
heredityValue: any;
|
|
101
|
-
}, {
|
|
102
|
-
|
|
100
|
+
}, {
|
|
101
|
+
sortableMembers(): any[];
|
|
102
|
+
}, {
|
|
103
103
|
toggleAddMember(): void;
|
|
104
104
|
toggleChangeMemberRole(member: any): void;
|
|
105
105
|
toggleDeleteMember(member: any): void;
|
|
@@ -171,7 +171,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
171
171
|
PrimeDataTable: DefineComponent<DataTableProps<any>, DataTableSlots<any>, ((e: "sort", event: DataTableSortEvent) => void) & ((e: "filter", event: DataTableFilterEvent) => void) & ((e: "update:first", value: number) => void) & ((e: "update:rows", value: number) => void) & ((e: "page", event: DataTablePageEvent) => void) & ((e: "value-change", value: any[]) => void) & ((e: "update:sortField", value: string) => void) & ((e: "update:sortOrder", value: number) => void) & ((e: "update:multiSortMeta", value: DataTableSortMeta[]) => void) & ((e: "update:selection", value: any) => void) & ((e: "update:contextMenuSelection", value: any) => void) & ((e: "update:expandedRows", value: any[] | DataTableExpandedRows) => void) & ((e: "update:expandedRowGroups", value: any[] | DataTableExpandedRows) => void) & ((e: "update:filters", value: DataTableFilterMeta) => void) & ((e: "update:editingRows", value: any[] | DataTableEditingRows) => void) & ((e: "row-click", event: DataTableRowClickEvent<any>) => void) & ((e: "row-dblclick", event: DataTableRowDoubleClickEvent) => void) & ((e: "row-contextmenu", event: DataTableRowContextMenuEvent) => void) & ((e: "row-select", event: DataTableRowSelectEvent<any>) => void) & ((e: "row-select-all", event: DataTableRowSelectAllEvent<any>) => void) & ((e: "row-unselect-all", event: DataTableRowUnselectAllEvent) => void) & ((e: "row-unselect", event: DataTableRowUnselectEvent) => void) & ((e: "select-all-change", event: DataTableSelectAllChangeEvent) => void) & ((e: "column-resize-end", event: DataTableColumnResizeEndEvent) => void) & ((e: "column-reorder", event: DataTableColumnReorderEvent) => void) & ((e: "row-reorder", event: DataTableRowReorderEvent) => void) & ((e: "row-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "row-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "rowgroup-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "rowgroup-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "cell-edit-init", event: DataTableCellEditInitEvent<any>) => void) & ((e: "cell-edit-complete", event: DataTableCellEditCompleteEvent<any>) => void) & ((e: "cell-edit-cancel", event: DataTableCellEditCancelEvent) => void) & ((e: "row-edit-init", event: DataTableRowEditInitEvent<any>) => void) & ((e: "row-edit-save", event: DataTableRowEditSaveEvent<any>) => void) & ((e: "row-edit-cancel", event: DataTableRowEditCancelEvent<any>) => void) & ((e: "state-restore", event: DataTableStateEvent<any>) => void) & ((e: "state-save", event: DataTableStateEvent<any>) => void), DataTableMethods>;
|
|
172
172
|
PrimeColumn: DefineComponent<ColumnProps, ColumnSlots, (e: string, ...args: any[]) => void>;
|
|
173
173
|
PrimeAvatar: DefineComponent<AvatarProps, AvatarSlots, (e: "error", event: Event) => void>;
|
|
174
|
-
|
|
174
|
+
PrimeDropdown: DefineComponent<DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods>;
|
|
175
175
|
PrimeAutoComplete: DefineComponent<AutoCompleteProps, AutoCompleteSlots, ((e: "clear") => void) & ((e: "update:modelValue", value: any) => void) & ((e: "value-change", value: any) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "hide") => void) & ((e: "show") => void) & ((e: "change", event: AutoCompleteChangeEvent) => void) & ((e: "before-show") => void) & ((e: "before-hide") => void) & ((e: "item-select", event: AutoCompleteOptionSelectEvent) => void) & ((e: "item-unselect", event: AutoCompleteOptionUnselectEvent) => void) & ((e: "option-select", event: AutoCompleteOptionSelectEvent) => void) & ((e: "option-unselect", event: AutoCompleteOptionUnselectEvent) => void) & ((e: "dropdown-click", event: AutoCompleteDropdownClickEvent) => void) & ((e: "complete", event: AutoCompleteCompleteEvent) => void)>;
|
|
176
176
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
177
177
|
PrimeDialog: DefineComponent<DialogProps, DialogSlots, ((e: "update:visible", value: boolean) => void) & ((e: "hide") => void) & ((e: "after-hide") => void) & ((e: "show") => void) & ((e: "maximize", event: Event) => void) & ((e: "unmaximize", event: Event) => void) & ((e: "dragstart", event: Event) => void) & ((e: "dragend", event: Event) => void)>;
|
|
@@ -4,7 +4,7 @@ import { ButtonProps, ButtonSlots } from 'primevue/button';
|
|
|
4
4
|
import { DataTableProps, DataTableSlots, DataTableSortEvent, DataTableFilterEvent, DataTablePageEvent, DataTableSortMeta, DataTableExpandedRows, DataTableFilterMeta, DataTableEditingRows, DataTableRowClickEvent, DataTableRowDoubleClickEvent, DataTableRowContextMenuEvent, DataTableRowSelectEvent, DataTableRowSelectAllEvent, DataTableRowUnselectAllEvent, DataTableRowUnselectEvent, DataTableSelectAllChangeEvent, DataTableColumnResizeEndEvent, DataTableColumnReorderEvent, DataTableRowReorderEvent, DataTableRowExpandEvent, DataTableRowCollapseEvent, DataTableCellEditInitEvent, DataTableCellEditCompleteEvent, DataTableCellEditCancelEvent, DataTableRowEditInitEvent, DataTableRowEditSaveEvent, DataTableRowEditCancelEvent, DataTableStateEvent, DataTableMethods } from 'primevue/datatable';
|
|
5
5
|
import { ColumnProps, ColumnSlots } from 'primevue/column';
|
|
6
6
|
import { AvatarProps, AvatarSlots } from 'primevue/avatar';
|
|
7
|
-
import {
|
|
7
|
+
import { DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods } from 'primevue/dropdown';
|
|
8
8
|
import { AutoCompleteProps, AutoCompleteSlots, AutoCompleteChangeEvent, AutoCompleteOptionSelectEvent, AutoCompleteOptionUnselectEvent, AutoCompleteDropdownClickEvent, AutoCompleteCompleteEvent } from 'primevue/autocomplete';
|
|
9
9
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
10
10
|
members: {
|
|
@@ -52,16 +52,16 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
52
52
|
rolesValues: {
|
|
53
53
|
name: string;
|
|
54
54
|
}[];
|
|
55
|
-
membersToAddList: any;
|
|
56
55
|
defaultDropDownValue: {
|
|
57
56
|
name: string;
|
|
58
57
|
};
|
|
59
58
|
selectedMemberToAdd: any;
|
|
60
|
-
filteredMembers: any;
|
|
59
|
+
filteredMembers: any[];
|
|
61
60
|
addSelectedRole: any;
|
|
62
61
|
heredityValue: any;
|
|
63
|
-
}, {
|
|
64
|
-
|
|
62
|
+
}, {
|
|
63
|
+
sortableMembers(): any[];
|
|
64
|
+
}, {
|
|
65
65
|
toggleAddMember(): void;
|
|
66
66
|
toggleChangeMemberRole(member: any): void;
|
|
67
67
|
toggleDeleteMember(member: any): void;
|
|
@@ -133,7 +133,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
133
133
|
PrimeDataTable: DefineComponent<DataTableProps<any>, DataTableSlots<any>, ((e: "sort", event: DataTableSortEvent) => void) & ((e: "filter", event: DataTableFilterEvent) => void) & ((e: "update:first", value: number) => void) & ((e: "update:rows", value: number) => void) & ((e: "page", event: DataTablePageEvent) => void) & ((e: "value-change", value: any[]) => void) & ((e: "update:sortField", value: string) => void) & ((e: "update:sortOrder", value: number) => void) & ((e: "update:multiSortMeta", value: DataTableSortMeta[]) => void) & ((e: "update:selection", value: any) => void) & ((e: "update:contextMenuSelection", value: any) => void) & ((e: "update:expandedRows", value: any[] | DataTableExpandedRows) => void) & ((e: "update:expandedRowGroups", value: any[] | DataTableExpandedRows) => void) & ((e: "update:filters", value: DataTableFilterMeta) => void) & ((e: "update:editingRows", value: any[] | DataTableEditingRows) => void) & ((e: "row-click", event: DataTableRowClickEvent<any>) => void) & ((e: "row-dblclick", event: DataTableRowDoubleClickEvent) => void) & ((e: "row-contextmenu", event: DataTableRowContextMenuEvent) => void) & ((e: "row-select", event: DataTableRowSelectEvent<any>) => void) & ((e: "row-select-all", event: DataTableRowSelectAllEvent<any>) => void) & ((e: "row-unselect-all", event: DataTableRowUnselectAllEvent) => void) & ((e: "row-unselect", event: DataTableRowUnselectEvent) => void) & ((e: "select-all-change", event: DataTableSelectAllChangeEvent) => void) & ((e: "column-resize-end", event: DataTableColumnResizeEndEvent) => void) & ((e: "column-reorder", event: DataTableColumnReorderEvent) => void) & ((e: "row-reorder", event: DataTableRowReorderEvent) => void) & ((e: "row-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "row-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "rowgroup-expand", event: DataTableRowExpandEvent<any>) => void) & ((e: "rowgroup-collapse", event: DataTableRowCollapseEvent) => void) & ((e: "cell-edit-init", event: DataTableCellEditInitEvent<any>) => void) & ((e: "cell-edit-complete", event: DataTableCellEditCompleteEvent<any>) => void) & ((e: "cell-edit-cancel", event: DataTableCellEditCancelEvent) => void) & ((e: "row-edit-init", event: DataTableRowEditInitEvent<any>) => void) & ((e: "row-edit-save", event: DataTableRowEditSaveEvent<any>) => void) & ((e: "row-edit-cancel", event: DataTableRowEditCancelEvent<any>) => void) & ((e: "state-restore", event: DataTableStateEvent<any>) => void) & ((e: "state-save", event: DataTableStateEvent<any>) => void), DataTableMethods>;
|
|
134
134
|
PrimeColumn: DefineComponent<ColumnProps, ColumnSlots, (e: string, ...args: any[]) => void>;
|
|
135
135
|
PrimeAvatar: DefineComponent<AvatarProps, AvatarSlots, (e: "error", event: Event) => void>;
|
|
136
|
-
|
|
136
|
+
PrimeDropdown: DefineComponent<DropdownProps, DropdownSlots, DropdownEmits, DropdownMethods>;
|
|
137
137
|
PrimeAutoComplete: DefineComponent<AutoCompleteProps, AutoCompleteSlots, ((e: "clear") => void) & ((e: "update:modelValue", value: any) => void) & ((e: "value-change", value: any) => void) & ((e: "focus", event: Event) => void) & ((e: "blur", event: Event) => void) & ((e: "hide") => void) & ((e: "show") => void) & ((e: "change", event: AutoCompleteChangeEvent) => void) & ((e: "before-show") => void) & ((e: "before-hide") => void) & ((e: "item-select", event: AutoCompleteOptionSelectEvent) => void) & ((e: "item-unselect", event: AutoCompleteOptionUnselectEvent) => void) & ((e: "option-select", event: AutoCompleteOptionSelectEvent) => void) & ((e: "option-unselect", event: AutoCompleteOptionUnselectEvent) => void) & ((e: "dropdown-click", event: AutoCompleteDropdownClickEvent) => void) & ((e: "complete", event: AutoCompleteCompleteEvent) => void)>;
|
|
138
138
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
139
139
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MemberList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/users/MemberList.vue"],"names":[],"mappings":";;;;;;;;
|
|
1
|
+
{"version":3,"file":"MemberList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/users/MemberList.vue"],"names":[],"mappings":";;;;;;;;AAwQA;"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Vue composable for managing WebSocket connections to Rocket.Chat.
|
|
3
|
+
* Implements the DDP (Distributed Data Protocol) used by Rocket.Chat.
|
|
4
|
+
* Provides automatic reconnection, authentication, and room subscriptions.
|
|
5
|
+
*
|
|
6
|
+
* @param {Object} config - Configuration options
|
|
7
|
+
* @returns {Object} Composable API
|
|
8
|
+
*/
|
|
9
|
+
export function useChatWebSocket(config?: any): any;
|
|
10
|
+
export namespace ConnectionState {
|
|
11
|
+
let DISCONNECTED: string;
|
|
12
|
+
let CONNECTING: string;
|
|
13
|
+
let CONNECTED: string;
|
|
14
|
+
let AUTHENTICATING: string;
|
|
15
|
+
let READY: string;
|
|
16
|
+
let RECONNECTING: string;
|
|
17
|
+
let ERROR: string;
|
|
18
|
+
}
|
|
19
|
+
export default useChatWebSocket;
|
|
20
|
+
//# sourceMappingURL=useChatWebSocket.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useChatWebSocket.d.ts","sourceRoot":"","sources":["../../src/composables/useChatWebSocket.js"],"names":[],"mappings":"AA6CA;;;;;;;GAOG;AACH,oDA2lBC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useCollabEditor.d.ts","sourceRoot":"","sources":["../../src/composables/useCollabEditor.js"],"names":[],"mappings":"AA+IA;;;;;GAKG;AACH,
|
|
1
|
+
{"version":3,"file":"useCollabEditor.d.ts","sourceRoot":"","sources":["../../src/composables/useCollabEditor.js"],"names":[],"mappings":"AA+IA;;;;;GAKG;AACH,uCAypBC;AAhxBD,0BAA2B,QAAQ,CAAC;AACpC,4BAA6B,UAAU,CAAC"}
|
package/dist/i18n/index.d.ts
CHANGED
|
@@ -206,6 +206,27 @@ declare const i18n: I18n<{
|
|
|
206
206
|
saveChanges: string;
|
|
207
207
|
cancel: string;
|
|
208
208
|
add: string;
|
|
209
|
+
define: string;
|
|
210
|
+
undefine: string;
|
|
211
|
+
expand: string;
|
|
212
|
+
collapse: string;
|
|
213
|
+
};
|
|
214
|
+
notDefined: string;
|
|
215
|
+
splitView: {
|
|
216
|
+
filterPlaceholder: string;
|
|
217
|
+
selectConfig: string;
|
|
218
|
+
noResults: string;
|
|
219
|
+
defaultValue: string;
|
|
220
|
+
};
|
|
221
|
+
groups: {
|
|
222
|
+
display: string;
|
|
223
|
+
matomo: string;
|
|
224
|
+
sentry: string;
|
|
225
|
+
search: string;
|
|
226
|
+
pagination: string;
|
|
227
|
+
metadata: string;
|
|
228
|
+
security: string;
|
|
229
|
+
other: string;
|
|
209
230
|
};
|
|
210
231
|
dialog: {
|
|
211
232
|
addTitle: string;
|
|
@@ -510,6 +531,32 @@ declare const i18n: I18n<{
|
|
|
510
531
|
modified_date: string;
|
|
511
532
|
};
|
|
512
533
|
};
|
|
534
|
+
chat: {
|
|
535
|
+
title: string;
|
|
536
|
+
connecting: string;
|
|
537
|
+
reconnecting: string;
|
|
538
|
+
connectionError: string;
|
|
539
|
+
notConfigured: string;
|
|
540
|
+
configureInProfile: string;
|
|
541
|
+
retry: string;
|
|
542
|
+
searchRooms: string;
|
|
543
|
+
noRooms: string;
|
|
544
|
+
noMessages: string;
|
|
545
|
+
loadMore: string;
|
|
546
|
+
typeMessage: string;
|
|
547
|
+
send: string;
|
|
548
|
+
attachFile: string;
|
|
549
|
+
attachment: string;
|
|
550
|
+
unknownUser: string;
|
|
551
|
+
userTyping: string;
|
|
552
|
+
usersTyping: string;
|
|
553
|
+
multipleUsersTyping: string;
|
|
554
|
+
sendError: string;
|
|
555
|
+
uploadError: string;
|
|
556
|
+
openChat: string;
|
|
557
|
+
closeChat: string;
|
|
558
|
+
newMessages: string;
|
|
559
|
+
};
|
|
513
560
|
};
|
|
514
561
|
fr: {
|
|
515
562
|
nothingTitle: string;
|
|
@@ -716,6 +763,27 @@ declare const i18n: I18n<{
|
|
|
716
763
|
saveChanges: string;
|
|
717
764
|
cancel: string;
|
|
718
765
|
add: string;
|
|
766
|
+
define: string;
|
|
767
|
+
undefine: string;
|
|
768
|
+
expand: string;
|
|
769
|
+
collapse: string;
|
|
770
|
+
};
|
|
771
|
+
notDefined: string;
|
|
772
|
+
splitView: {
|
|
773
|
+
filterPlaceholder: string;
|
|
774
|
+
selectConfig: string;
|
|
775
|
+
noResults: string;
|
|
776
|
+
defaultValue: string;
|
|
777
|
+
};
|
|
778
|
+
groups: {
|
|
779
|
+
display: string;
|
|
780
|
+
matomo: string;
|
|
781
|
+
sentry: string;
|
|
782
|
+
search: string;
|
|
783
|
+
pagination: string;
|
|
784
|
+
metadata: string;
|
|
785
|
+
security: string;
|
|
786
|
+
other: string;
|
|
719
787
|
};
|
|
720
788
|
dialog: {
|
|
721
789
|
addTitle: string;
|
|
@@ -1018,6 +1086,32 @@ declare const i18n: I18n<{
|
|
|
1018
1086
|
modified_date: string;
|
|
1019
1087
|
};
|
|
1020
1088
|
};
|
|
1089
|
+
chat: {
|
|
1090
|
+
title: string;
|
|
1091
|
+
connecting: string;
|
|
1092
|
+
reconnecting: string;
|
|
1093
|
+
connectionError: string;
|
|
1094
|
+
notConfigured: string;
|
|
1095
|
+
configureInProfile: string;
|
|
1096
|
+
retry: string;
|
|
1097
|
+
searchRooms: string;
|
|
1098
|
+
noRooms: string;
|
|
1099
|
+
noMessages: string;
|
|
1100
|
+
loadMore: string;
|
|
1101
|
+
typeMessage: string;
|
|
1102
|
+
send: string;
|
|
1103
|
+
attachFile: string;
|
|
1104
|
+
attachment: string;
|
|
1105
|
+
unknownUser: string;
|
|
1106
|
+
userTyping: string;
|
|
1107
|
+
usersTyping: string;
|
|
1108
|
+
multipleUsersTyping: string;
|
|
1109
|
+
sendError: string;
|
|
1110
|
+
uploadError: string;
|
|
1111
|
+
openChat: string;
|
|
1112
|
+
closeChat: string;
|
|
1113
|
+
newMessages: string;
|
|
1114
|
+
};
|
|
1021
1115
|
};
|
|
1022
1116
|
}, {}, {}, string, true>;
|
|
1023
1117
|
//# sourceMappingURL=index.d.ts.map
|