@genexus/genexus-ide-ui 0.0.28 → 0.0.29
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/collection/components/team-dev-commit/team-dev-commit.js +5 -4
- package/dist/collection/components/team-dev-update/team-dev-update.js +2 -1
- package/dist/types/common/types.d.ts +5 -0
- package/dist/types/components/team-dev-commit/team-dev-commit.d.ts +2 -7
- package/dist/types/components/team-dev-update/team-dev-update.d.ts +1 -6
- package/dist/types/components.d.ts +5 -5
- package/package.json +1 -1
|
@@ -229,11 +229,12 @@ export class GxIdeTeamDevCommit {
|
|
|
229
229
|
"type": "unknown",
|
|
230
230
|
"mutable": false,
|
|
231
231
|
"complexType": {
|
|
232
|
-
"original": "
|
|
233
|
-
"resolved": "
|
|
232
|
+
"original": "ObjectType[]",
|
|
233
|
+
"resolved": "ObjectType[]",
|
|
234
234
|
"references": {
|
|
235
|
-
"
|
|
236
|
-
"location": "
|
|
235
|
+
"ObjectType": {
|
|
236
|
+
"location": "import",
|
|
237
|
+
"path": "../../common/types"
|
|
237
238
|
}
|
|
238
239
|
}
|
|
239
240
|
},
|
|
@@ -24,6 +24,11 @@ export type FormSubmitResult = {
|
|
|
24
24
|
fieldErrors: FormElementValidation[];
|
|
25
25
|
};
|
|
26
26
|
export type ObjectState = "inserted" | "modified" | "deleted" | "conflicted";
|
|
27
|
+
export type ObjectType = {
|
|
28
|
+
id: string;
|
|
29
|
+
name: string;
|
|
30
|
+
icon?: string;
|
|
31
|
+
};
|
|
27
32
|
export type ContextMenuInfo = {
|
|
28
33
|
selection: string[];
|
|
29
34
|
clientX: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from "../../stencil-public-runtime";
|
|
2
|
-
import { GxOption, ObjectState, ContextMenuInfo } from "../../common/types";
|
|
2
|
+
import { GxOption, ObjectState, ContextMenuInfo, ObjectType } from "../../common/types";
|
|
3
3
|
export declare class GxIdeTeamDevCommit {
|
|
4
4
|
/**
|
|
5
5
|
* The component hard-coded strings translations.
|
|
@@ -26,7 +26,7 @@ export declare class GxIdeTeamDevCommit {
|
|
|
26
26
|
/**
|
|
27
27
|
* Possible values for Type filter
|
|
28
28
|
*/
|
|
29
|
-
readonly types:
|
|
29
|
+
readonly types: ObjectType[];
|
|
30
30
|
/**
|
|
31
31
|
* Possible values for Folders filter
|
|
32
32
|
*/
|
|
@@ -85,11 +85,6 @@ export declare class GxIdeTeamDevCommit {
|
|
|
85
85
|
private toggleFiltersHandler;
|
|
86
86
|
render(): any;
|
|
87
87
|
}
|
|
88
|
-
export type ObjetType = {
|
|
89
|
-
id: string;
|
|
90
|
-
name: string;
|
|
91
|
-
icon?: string;
|
|
92
|
-
};
|
|
93
88
|
export type GetRecentComment = () => Promise<string | undefined>;
|
|
94
89
|
export type LoadCallback = (filters: FiltersData) => Promise<CommitData>;
|
|
95
90
|
export type CommitCallback = (selection: string[], commitComment: string) => Promise<boolean>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from "../../stencil-public-runtime";
|
|
2
|
-
import { ObjectState } from "../../common/types";
|
|
2
|
+
import { ObjectState, ObjectType } from "../../common/types";
|
|
3
3
|
export declare class GxIdeTeamDevUpdate {
|
|
4
4
|
/**
|
|
5
5
|
* The component hard-coded strings translations.
|
|
@@ -116,11 +116,6 @@ export type LoadCallback = (filters: FiltersData) => Promise<UpdateData>;
|
|
|
116
116
|
export type UpdateCallback = (selection: string[]) => Promise<UpdateResultData[]>;
|
|
117
117
|
export type PendingItemCheckedCallback = (pendingItemsCheckedState: PendingItemsCheckedState) => Promise<PendingItemCheckedResult | undefined>;
|
|
118
118
|
export type GridContextMenuCallback = (selection: string[], grid: "update" | "ignored" | "results") => Promise<void>;
|
|
119
|
-
export type ObjectType = {
|
|
120
|
-
id: string;
|
|
121
|
-
name: string;
|
|
122
|
-
icon?: string;
|
|
123
|
-
};
|
|
124
119
|
export type ConfirmCallback = (data: any) => Promise<boolean>;
|
|
125
120
|
export interface UpdateFromData {
|
|
126
121
|
serverUrl: string;
|
|
@@ -11,13 +11,13 @@ import { DirectorySelectorLabels, LabelPosition } from "./components/directory-s
|
|
|
11
11
|
import { EntityData, EntitySelectorLabels } from "./components/entity-selector/entity-selector";
|
|
12
12
|
import { LabelPosition as LabelPosition1 } from "./components/directory-selector/directory-selector";
|
|
13
13
|
import { ItemData } from "./components/list-selector/list-selector-item/list-selector-item";
|
|
14
|
-
import { GxOption } from "./common/types";
|
|
14
|
+
import { GxOption, ObjectType } from "./common/types";
|
|
15
15
|
import { CancelCallback, ChangedCallback, CreateCallback } from "./components/new-environment/new-environment";
|
|
16
16
|
import { CancelCallback as CancelCallback1, CreateCallback as CreateCallback1, SelectLocationCallback } from "./components/new-kb/new-kb";
|
|
17
17
|
import { LoadReferencesCallback, ObjectData, OpenObjectCallback, OpenSelectorDialogCallback, SelectorSourceCallback, SelectReferenceCallback } from "./components/references/references";
|
|
18
|
-
import { CommitCallback, GetRecentComment, LoadCallback, ObjectsContextMenuCallback,
|
|
18
|
+
import { CommitCallback, GetRecentComment, LoadCallback, ObjectsContextMenuCallback, PendingItemCheckedResult, PendingItemsCheckedState, SelectCallback } from "./components/team-dev-commit/team-dev-commit";
|
|
19
19
|
import { cancelCallback, confirmCallback } from "./components/team-dev-select-recent-comment/team-dev-select-recent-comment";
|
|
20
|
-
import { ConfirmCallback, GridContextMenuCallback, LoadCallback as LoadCallback1,
|
|
20
|
+
import { ConfirmCallback, GridContextMenuCallback, LoadCallback as LoadCallback1, PendingItemCheckedCallback, UpdateCallback, UpdateFromData } from "./components/team-dev-update/team-dev-update";
|
|
21
21
|
import { AddCallbackFn, CancelCallbackFn, ConfirmCallbackFn, ObjectData as ObjectData1 } from "./components/team-dev-update-partial-selection/team-dev-update-partial-selection";
|
|
22
22
|
import { cancelCallbackFn, confirmCallbackFn } from "./components/team-dev-update-to-revision/team-dev-update-to-revision";
|
|
23
23
|
import { GxgTreeItemData } from "@genexus/gemini/dist/types/components/tree-item/gxg-tree-item";
|
|
@@ -412,7 +412,7 @@ export namespace Components {
|
|
|
412
412
|
/**
|
|
413
413
|
* Possible values for Type filter
|
|
414
414
|
*/
|
|
415
|
-
"types":
|
|
415
|
+
"types": ObjectType[];
|
|
416
416
|
}
|
|
417
417
|
interface GxIdeTeamDevSelectRecentComment {
|
|
418
418
|
/**
|
|
@@ -1124,7 +1124,7 @@ declare namespace LocalJSX {
|
|
|
1124
1124
|
/**
|
|
1125
1125
|
* Possible values for Type filter
|
|
1126
1126
|
*/
|
|
1127
|
-
"types"?:
|
|
1127
|
+
"types"?: ObjectType[];
|
|
1128
1128
|
}
|
|
1129
1129
|
interface GxIdeTeamDevSelectRecentComment {
|
|
1130
1130
|
/**
|