@genexus/genexus-ide-ui 0.0.22 → 0.0.24
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/cjs/ch-action-group_2.cjs.entry.js +211 -0
- package/dist/cjs/ch-dropdown-item.cjs.entry.js +36 -5
- package/dist/cjs/ch-dropdown.cjs.entry.js +50 -52
- package/dist/cjs/{ch-grid_4.cjs.entry.js → ch-grid_8.cjs.entry.js} +143 -0
- package/dist/cjs/{ch-suggest_5.cjs.entry.js → ch-suggest_4.cjs.entry.js} +0 -65
- package/dist/cjs/ch-test-action-group.cjs.entry.js +79 -0
- package/dist/cjs/ch-test-dropdown.cjs.entry.js +54 -0
- package/dist/cjs/ch-window_2.cjs.entry.js +25 -6
- package/dist/cjs/format-date-f2c49d1a.js +28 -0
- package/dist/cjs/genexus-ide-ui.cjs.js +1 -1
- package/dist/cjs/gx-ide-team-dev-commit.cjs.entry.js +15 -35
- package/dist/cjs/gx-ide-team-dev-select-recent-comment.cjs.entry.js +5 -15
- package/dist/cjs/gx-ide-team-dev-update-partial-selection.cjs.entry.js +102 -0
- package/dist/cjs/gx-ide-team-dev-update-to-revision.cjs.entry.js +53 -0
- package/dist/cjs/gx-ide-team-dev-update.cjs.entry.js +278 -0
- package/dist/cjs/gx-ide-top-bar.cjs.entry.js +37 -0
- package/dist/cjs/{gxg-combo-box_8.cjs.entry.js → gxg-combo-box_6.cjs.entry.js} +0 -132
- package/dist/cjs/gxg-form-checkbox-group_2.cjs.entry.js +140 -0
- package/dist/cjs/{gx-ide-top-bar_2.cjs.entry.js → gxg-form-radio-group.cjs.entry.js} +0 -31
- package/dist/cjs/gxg-text.cjs.entry.js +72 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +7 -0
- package/dist/collection/common/format-date.js +11 -0
- package/dist/collection/components/team-dev-commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.en.json +1 -1
- package/dist/collection/components/team-dev-commit/team-dev-commit.js +35 -26
- package/dist/collection/components/team-dev-select-recent-comment/team-dev-select-recent-comment.js +6 -16
- package/dist/collection/components/team-dev-update/gx-ide-assets/team-dev-update/langs/team-dev-update.lang.en.json +45 -0
- package/dist/collection/components/team-dev-update/gx-ide-assets/team-dev-update/langs/team-dev-update.lang.ja.json +3 -0
- package/dist/collection/components/team-dev-update/gx-ide-assets/team-dev-update/langs/team-dev-update.lang.zh.json +3 -0
- package/dist/collection/components/team-dev-update/team-dev-update.css +216 -0
- package/dist/collection/components/team-dev-update/team-dev-update.js +524 -0
- package/dist/collection/components/team-dev-update-partial-selection/gx-ide-assets/team-dev-update-partial-selection/langs/team-dev-update-partial-selection.lang.en.json +15 -0
- package/dist/collection/components/team-dev-update-partial-selection/gx-ide-assets/team-dev-update-partial-selection/langs/team-dev-update-partial-selection.lang.ja.json +3 -0
- package/dist/collection/components/team-dev-update-partial-selection/gx-ide-assets/team-dev-update-partial-selection/langs/team-dev-update-partial-selection.lang.zh.json +3 -0
- package/dist/collection/components/team-dev-update-partial-selection/team-dev-update-partial-selection.css +149 -0
- package/dist/collection/components/team-dev-update-partial-selection/team-dev-update-partial-selection.js +238 -0
- package/dist/collection/components/team-dev-update-to-revision/gx-ide-assets/team-dev-update-to-revision/langs/team-dev-update-to-revision.lang.en.json +11 -0
- package/dist/collection/components/team-dev-update-to-revision/gx-ide-assets/team-dev-update-to-revision/langs/team-dev-update-to-revision.lang.ja.json +3 -0
- package/dist/collection/components/team-dev-update-to-revision/gx-ide-assets/team-dev-update-to-revision/langs/team-dev-update-to-revision.lang.zh.json +3 -0
- package/dist/collection/components/team-dev-update-to-revision/team-dev-update-to-revision.css +147 -0
- package/dist/collection/components/team-dev-update-to-revision/team-dev-update-to-revision.js +136 -0
- package/dist/components/action-group-item.js +54 -0
- package/dist/components/action-group.js +214 -0
- package/dist/components/ch-action-group-item.js +6 -0
- package/dist/components/ch-action-group.js +6 -0
- package/dist/components/ch-dropdown-item-separator.js +1 -28
- package/dist/components/ch-dropdown-item.js +1 -53
- package/dist/components/ch-dropdown.js +1 -284
- package/dist/components/ch-grid-rowset-empty.js +1 -24
- package/dist/components/ch-grid-rowset-empty2.js +26 -0
- package/dist/components/ch-test-action-group.js +137 -0
- package/dist/components/ch-test-dropdown.js +104 -0
- package/dist/components/ch-window2.js +25 -6
- package/dist/components/dropdown-item-separator.js +30 -0
- package/dist/components/dropdown-item.js +109 -0
- package/dist/components/dropdown.js +294 -0
- package/dist/components/format-date.js +25 -0
- package/dist/components/gx-ide-team-dev-commit.js +16 -35
- package/dist/components/gx-ide-team-dev-select-recent-comment.js +5 -15
- package/dist/components/gx-ide-team-dev-update-partial-selection.d.ts +11 -0
- package/dist/components/gx-ide-team-dev-update-partial-selection.js +213 -0
- package/dist/components/gx-ide-team-dev-update-to-revision.d.ts +11 -0
- package/dist/components/gx-ide-team-dev-update-to-revision.js +131 -0
- package/dist/components/gx-ide-team-dev-update.d.ts +11 -0
- package/dist/components/gx-ide-team-dev-update.js +473 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +7 -0
- package/dist/esm/ch-action-group_2.entry.js +206 -0
- package/dist/esm/ch-dropdown-item.entry.js +36 -5
- package/dist/esm/ch-dropdown.entry.js +50 -52
- package/dist/esm/{ch-grid_4.entry.js → ch-grid_8.entry.js} +140 -1
- package/dist/esm/{ch-suggest_5.entry.js → ch-suggest_4.entry.js} +1 -65
- package/dist/esm/ch-test-action-group.entry.js +75 -0
- package/dist/esm/ch-test-dropdown.entry.js +50 -0
- package/dist/esm/ch-window_2.entry.js +25 -6
- package/dist/esm/format-date-e9ca0786.js +25 -0
- package/dist/esm/genexus-ide-ui.js +1 -1
- package/dist/esm/gx-ide-team-dev-commit.entry.js +15 -35
- package/dist/esm/gx-ide-team-dev-select-recent-comment.entry.js +5 -15
- package/dist/esm/gx-ide-team-dev-update-partial-selection.entry.js +98 -0
- package/dist/esm/gx-ide-team-dev-update-to-revision.entry.js +49 -0
- package/dist/esm/gx-ide-team-dev-update.entry.js +274 -0
- package/dist/esm/gx-ide-top-bar.entry.js +33 -0
- package/dist/esm/{gxg-combo-box_8.entry.js → gxg-combo-box_6.entry.js} +2 -132
- package/dist/esm/gxg-form-checkbox-group_2.entry.js +135 -0
- package/dist/esm/{gx-ide-top-bar_2.entry.js → gxg-form-radio-group.entry.js} +2 -32
- package/dist/esm/gxg-text.entry.js +68 -0
- package/dist/esm/loader.js +1 -1
- package/dist/genexus-ide-ui/genexus-ide-ui.esm.js +1 -1
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.en.json +1 -1
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-update/langs/team-dev-update.lang.en.json +45 -0
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-update/langs/team-dev-update.lang.ja.json +3 -0
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-update/langs/team-dev-update.lang.zh.json +3 -0
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-update-partial-selection/langs/team-dev-update-partial-selection.lang.en.json +15 -0
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-update-partial-selection/langs/team-dev-update-partial-selection.lang.ja.json +3 -0
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-update-partial-selection/langs/team-dev-update-partial-selection.lang.zh.json +3 -0
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-update-to-revision/langs/team-dev-update-to-revision.lang.en.json +11 -0
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-update-to-revision/langs/team-dev-update-to-revision.lang.ja.json +3 -0
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-update-to-revision/langs/team-dev-update-to-revision.lang.zh.json +3 -0
- package/dist/genexus-ide-ui/p-097a3eeb.entry.js +1 -0
- package/dist/genexus-ide-ui/p-16bd5578.entry.js +1 -0
- package/dist/genexus-ide-ui/p-32b8abf6.entry.js +1 -0
- package/dist/genexus-ide-ui/p-3bdcb73b.entry.js +1 -0
- package/dist/genexus-ide-ui/p-4bbe1c18.entry.js +1 -0
- package/dist/genexus-ide-ui/p-53d36ef7.entry.js +1 -0
- package/dist/genexus-ide-ui/p-5884a014.entry.js +1 -0
- package/dist/genexus-ide-ui/p-5c64c57f.entry.js +1 -0
- package/dist/genexus-ide-ui/p-5ff04ebe.entry.js +1 -0
- package/dist/genexus-ide-ui/p-6e80380b.entry.js +1 -0
- package/dist/genexus-ide-ui/p-718759e7.entry.js +1 -0
- package/dist/genexus-ide-ui/p-72303355.js +1 -0
- package/dist/genexus-ide-ui/p-757f8567.entry.js +1 -0
- package/dist/genexus-ide-ui/p-9c82381c.entry.js +1 -0
- package/dist/genexus-ide-ui/p-a0e85c2a.entry.js +1 -0
- package/dist/genexus-ide-ui/p-afe9515e.entry.js +1 -0
- package/dist/genexus-ide-ui/p-dbebb1a0.entry.js +1 -0
- package/dist/genexus-ide-ui/p-f8561da6.entry.js +1 -0
- package/dist/node_modules/@genexus/chameleon-controls-library/dist/collection/components/action-group/action-group.css +48 -0
- package/dist/node_modules/@genexus/chameleon-controls-library/dist/collection/components/action-group-item/action-group-item.css +4 -0
- package/dist/node_modules/@genexus/chameleon-controls-library/dist/collection/components/dropdown/dropdown.css +32 -88
- package/dist/node_modules/@genexus/chameleon-controls-library/dist/collection/components/dropdown-item/dropdown-item.css +9 -22
- package/dist/node_modules/@genexus/chameleon-controls-library/dist/collection/components/test/test-action-group/test-action-group.css +52 -0
- package/dist/node_modules/@genexus/chameleon-controls-library/dist/collection/components/test/test-dropdown/test-dropdown.css +36 -0
- package/dist/node_modules/@genexus/chameleon-controls-library/dist/collection/components/window/ch-window.css +3 -1
- package/dist/types/common/format-date.d.ts +1 -0
- package/dist/types/common/types.d.ts +1 -0
- package/dist/types/components/team-dev-commit/team-dev-commit.d.ts +13 -7
- package/dist/types/components/team-dev-select-recent-comment/team-dev-select-recent-comment.d.ts +1 -31
- package/dist/types/components/team-dev-update/team-dev-update.d.ts +173 -0
- package/dist/types/components/team-dev-update-partial-selection/team-dev-update-partial-selection.d.ts +61 -0
- package/dist/types/components/team-dev-update-to-revision/team-dev-update-to-revision.d.ts +41 -0
- package/dist/types/components.d.ts +216 -2
- package/package.json +3 -3
- package/dist/cjs/ch-grid-column-resize_4.cjs.entry.js +0 -150
- package/dist/esm/ch-grid-column-resize_4.entry.js +0 -143
- package/dist/genexus-ide-ui/p-04f094d1.entry.js +0 -1
- package/dist/genexus-ide-ui/p-192f1342.entry.js +0 -1
- package/dist/genexus-ide-ui/p-54cef7ae.entry.js +0 -1
- package/dist/genexus-ide-ui/p-554ed73a.entry.js +0 -1
- package/dist/genexus-ide-ui/p-6d378d61.entry.js +0 -1
- package/dist/genexus-ide-ui/p-b26b5d74.entry.js +0 -1
- package/dist/genexus-ide-ui/p-c10d5f34.entry.js +0 -1
- package/dist/genexus-ide-ui/p-d5c29251.entry.js +0 -1
- package/dist/genexus-ide-ui/p-f1a3397d.entry.js +0 -1
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
import { EventEmitter } from "../../stencil-public-runtime";
|
|
2
|
+
import { ObjectState } from "../../common/types";
|
|
3
|
+
export declare class GxIdeTeamDevUpdate {
|
|
4
|
+
/**
|
|
5
|
+
* The component hard-coded strings translations.
|
|
6
|
+
*/
|
|
7
|
+
private _componentLocale;
|
|
8
|
+
private loadDataCalledFirstTime;
|
|
9
|
+
el: HTMLGxIdeTeamDevUpdateElement;
|
|
10
|
+
private filterPatternEl;
|
|
11
|
+
private filterTypeEl;
|
|
12
|
+
private chGridPendingForUpdateEl;
|
|
13
|
+
private chGridIgnoredObjectsEl;
|
|
14
|
+
private chGridResultsEl;
|
|
15
|
+
private gxgTabButtonResultsEl;
|
|
16
|
+
/**
|
|
17
|
+
* If the design data is loading or not, for disabled actions
|
|
18
|
+
*/
|
|
19
|
+
isLoading: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* For show or hide advanced filters
|
|
22
|
+
*/
|
|
23
|
+
objectScopeText: string;
|
|
24
|
+
/**
|
|
25
|
+
* The tab that is currently open
|
|
26
|
+
*/
|
|
27
|
+
openTab: "pending" | "ignored" | "results";
|
|
28
|
+
/**
|
|
29
|
+
* For show or hide advanced filters
|
|
30
|
+
*/
|
|
31
|
+
revisionScopeText: string;
|
|
32
|
+
/**
|
|
33
|
+
* For show or hide advanced filters
|
|
34
|
+
*/
|
|
35
|
+
showFilter: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* The data loaded for populate the grids
|
|
38
|
+
*/
|
|
39
|
+
updateData: UpdateData;
|
|
40
|
+
/**
|
|
41
|
+
* The data receive after user update
|
|
42
|
+
*/
|
|
43
|
+
updateResultData: UpdateResultData[];
|
|
44
|
+
/**
|
|
45
|
+
* This is a function provided by the developer that init the process of import a design.
|
|
46
|
+
*/
|
|
47
|
+
readonly confirmCallback: ConfirmCallback;
|
|
48
|
+
/**
|
|
49
|
+
* This is a function provided by the developer that return the information of an Image System type of data.
|
|
50
|
+
*/
|
|
51
|
+
readonly gridContextMenuCallback: GridContextMenuCallback;
|
|
52
|
+
/**
|
|
53
|
+
* This is a function provided by the developer that return the list of types of data loaded from file or url.
|
|
54
|
+
*/
|
|
55
|
+
readonly loadCallback: LoadCallback;
|
|
56
|
+
/**
|
|
57
|
+
* This is a function provided by the developer to call when the user makes a partial selection from button Change of Scope group.
|
|
58
|
+
*/
|
|
59
|
+
readonly objectsScopeCallback: () => Promise<"all" | "partial">;
|
|
60
|
+
/**
|
|
61
|
+
* This is a function provided by the developer to call when the user clicked in server url of Update From group.
|
|
62
|
+
*/
|
|
63
|
+
readonly openServerCallback: () => Promise<void>;
|
|
64
|
+
/**
|
|
65
|
+
* This is a function provided by the developer that return the information of a Font type of data.
|
|
66
|
+
*/
|
|
67
|
+
readonly pendingItemCheckedCallback: PendingItemCheckedCallback;
|
|
68
|
+
/**
|
|
69
|
+
* This is a function provided by the developer to call when the user wants to select the revision to work on.
|
|
70
|
+
*/
|
|
71
|
+
readonly revisionScopeCallback: () => Promise<string | undefined>;
|
|
72
|
+
/**
|
|
73
|
+
* Possibly values for the filter type
|
|
74
|
+
*/
|
|
75
|
+
readonly types: ObjectType[];
|
|
76
|
+
/**
|
|
77
|
+
* This is a function provided by the developer that return the information of a Design System type of data.
|
|
78
|
+
*/
|
|
79
|
+
readonly updateCallback: UpdateCallback;
|
|
80
|
+
/**
|
|
81
|
+
* Information to show in the container of group 'Update From'
|
|
82
|
+
*/
|
|
83
|
+
readonly updateFrom: UpdateFromData;
|
|
84
|
+
/**
|
|
85
|
+
* This event is emitted once just after the component is fully loaded and the first render() occurs.
|
|
86
|
+
*/
|
|
87
|
+
componentDidLoadEvent: EventEmitter<boolean>;
|
|
88
|
+
componentWillLoad(): Promise<void>;
|
|
89
|
+
componentDidLoad(): Promise<void>;
|
|
90
|
+
componentDidRender(): Promise<void>;
|
|
91
|
+
/**
|
|
92
|
+
* Validate necessary data input
|
|
93
|
+
*/
|
|
94
|
+
validate(): Promise<boolean>;
|
|
95
|
+
private markAllPendingToUpdateRows;
|
|
96
|
+
private renderOptions;
|
|
97
|
+
private renderFilter;
|
|
98
|
+
private renderData;
|
|
99
|
+
private renderPendingForUpdate;
|
|
100
|
+
private renderIgnoredObjects;
|
|
101
|
+
private renderResults;
|
|
102
|
+
private renderIconState;
|
|
103
|
+
private renderIconResult;
|
|
104
|
+
private loadData;
|
|
105
|
+
private update;
|
|
106
|
+
private toggleFilter;
|
|
107
|
+
private objectsScope;
|
|
108
|
+
private revisionScope;
|
|
109
|
+
private addListeners;
|
|
110
|
+
private pendingForUpdatesRowMarkingChangedHandler;
|
|
111
|
+
private togglePendingCommitsCheckboxes;
|
|
112
|
+
private revertPendingCommitsCheckboxes;
|
|
113
|
+
render(): void;
|
|
114
|
+
}
|
|
115
|
+
export type LoadCallback = (filters: FiltersData) => Promise<UpdateData>;
|
|
116
|
+
export type UpdateCallback = (selection: string[]) => Promise<UpdateResultData[]>;
|
|
117
|
+
export type PendingItemCheckedCallback = (pendingItemsCheckedState: PendingItemsCheckedState) => Promise<PendingItemCheckedResult | undefined>;
|
|
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
|
+
export type ConfirmCallback = (data: any) => Promise<boolean>;
|
|
125
|
+
export interface UpdateFromData {
|
|
126
|
+
serverUrl: string;
|
|
127
|
+
kbName: string;
|
|
128
|
+
versionName: string;
|
|
129
|
+
lastFullUpdate: Date;
|
|
130
|
+
}
|
|
131
|
+
export interface FiltersData {
|
|
132
|
+
pattern: string;
|
|
133
|
+
type: string;
|
|
134
|
+
}
|
|
135
|
+
export interface UpdateData {
|
|
136
|
+
pendingForUpdate: ModifiedObject[];
|
|
137
|
+
ignoredObjects: ModifiedObject[];
|
|
138
|
+
}
|
|
139
|
+
export interface ModifiedObject {
|
|
140
|
+
id: string;
|
|
141
|
+
typeIcon: string;
|
|
142
|
+
state?: ObjectState;
|
|
143
|
+
name: string;
|
|
144
|
+
type: string;
|
|
145
|
+
description?: string;
|
|
146
|
+
modifiedOn?: Date;
|
|
147
|
+
status?: string;
|
|
148
|
+
action?: string;
|
|
149
|
+
}
|
|
150
|
+
export interface UpdateResultData {
|
|
151
|
+
id: string;
|
|
152
|
+
result: ResultState;
|
|
153
|
+
typeIcon: string;
|
|
154
|
+
state: ObjectState;
|
|
155
|
+
name: string;
|
|
156
|
+
type: string;
|
|
157
|
+
description: string;
|
|
158
|
+
notes: string;
|
|
159
|
+
messages: MessageData[];
|
|
160
|
+
}
|
|
161
|
+
export interface MessageData {
|
|
162
|
+
type: "info" | "success" | "warning" | "error";
|
|
163
|
+
text: string;
|
|
164
|
+
}
|
|
165
|
+
export type ResultState = "info" | "success" | "warning" | "error";
|
|
166
|
+
export interface PendingItemCheckedResult {
|
|
167
|
+
itemsToCheck: string[];
|
|
168
|
+
itemsToUncheck: string[];
|
|
169
|
+
}
|
|
170
|
+
export interface PendingItemsCheckedState {
|
|
171
|
+
itemsChecked: string[];
|
|
172
|
+
itemsUnchecked: string[];
|
|
173
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { EventEmitter } from "../../stencil-public-runtime";
|
|
2
|
+
export declare class GxIdeTeamDevUpdatePartialSelection {
|
|
3
|
+
/**
|
|
4
|
+
* The component hard-coded strings translations.
|
|
5
|
+
*/
|
|
6
|
+
private _componentLocale;
|
|
7
|
+
/**
|
|
8
|
+
* This is a function provided by the developer that return a list of new objects to populate the table of objects.
|
|
9
|
+
*/
|
|
10
|
+
readonly addCallback: AddCallbackFn;
|
|
11
|
+
/**
|
|
12
|
+
* This is a function provided by the developer for execute when cancel button is pressed.
|
|
13
|
+
*/
|
|
14
|
+
readonly cancelCallback: CancelCallbackFn;
|
|
15
|
+
/**
|
|
16
|
+
* This is a function provided by the developer and is invoked when the action confirm is executed passing the selected objects of the grid
|
|
17
|
+
*/
|
|
18
|
+
readonly confirmCallback: ConfirmCallbackFn;
|
|
19
|
+
/**
|
|
20
|
+
* The categories render in the filter category selector
|
|
21
|
+
*/
|
|
22
|
+
selection: ObjectData[];
|
|
23
|
+
el: HTMLGxIdeTeamDevUpdatePartialSelectionElement;
|
|
24
|
+
private chGridEl;
|
|
25
|
+
/**
|
|
26
|
+
* The selected objects in the table of objects
|
|
27
|
+
*/
|
|
28
|
+
selectedObjectsIds: string[];
|
|
29
|
+
/**
|
|
30
|
+
* This event is emitted once just after the component is fully loaded and the first render() occurs.
|
|
31
|
+
*/
|
|
32
|
+
componentDidLoadEvent: EventEmitter<boolean>;
|
|
33
|
+
componentWillLoad(): Promise<void>;
|
|
34
|
+
componentDidLoad(): void;
|
|
35
|
+
keyDownHandler(eventInfo: KeyboardEvent): void;
|
|
36
|
+
/**
|
|
37
|
+
* Validate necessary data input
|
|
38
|
+
*/
|
|
39
|
+
validate(): Promise<boolean>;
|
|
40
|
+
private handleKeyDownEvent;
|
|
41
|
+
private keyDownEventHandler;
|
|
42
|
+
private renderObjects;
|
|
43
|
+
private getObjects;
|
|
44
|
+
private removeObjects;
|
|
45
|
+
private confirm;
|
|
46
|
+
private cancel;
|
|
47
|
+
private deselectAll;
|
|
48
|
+
private listenChanges;
|
|
49
|
+
render(): void;
|
|
50
|
+
}
|
|
51
|
+
export type AddCallbackFn = () => Promise<ObjectData[]>;
|
|
52
|
+
export type CancelCallbackFn = () => Promise<void>;
|
|
53
|
+
export type ConfirmCallbackFn = (ids: string[]) => Promise<void>;
|
|
54
|
+
export interface ObjectData {
|
|
55
|
+
id: string;
|
|
56
|
+
typeIcon: string;
|
|
57
|
+
name: string;
|
|
58
|
+
type: string;
|
|
59
|
+
description: string;
|
|
60
|
+
modifiedOn: Date;
|
|
61
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EventEmitter } from "../../stencil-public-runtime";
|
|
2
|
+
export declare class GxIdeTeamDevUpdateToRevision {
|
|
3
|
+
/**
|
|
4
|
+
* The component hard-coded strings translations.
|
|
5
|
+
*/
|
|
6
|
+
private _componentLocale;
|
|
7
|
+
/**
|
|
8
|
+
* This is a function provided by the developer for execute when cancel button is pressed.
|
|
9
|
+
*/
|
|
10
|
+
readonly cancelCallback: cancelCallbackFn;
|
|
11
|
+
/**
|
|
12
|
+
* This is a function provided by the developer and is invoked when the action confirm is executed passing the selected objects of the grid
|
|
13
|
+
*/
|
|
14
|
+
readonly confirmCallback: confirmCallbackFn;
|
|
15
|
+
el: HTMLGxIdeTeamDevUpdateToRevisionElement;
|
|
16
|
+
private revisionNumberEl;
|
|
17
|
+
private updateToRevisionEl;
|
|
18
|
+
/**
|
|
19
|
+
* This event is emitted once just after the component is fully loaded and the first render() occurs.
|
|
20
|
+
*/
|
|
21
|
+
componentDidLoadEvent: EventEmitter<boolean>;
|
|
22
|
+
componentWillLoad(): Promise<void>;
|
|
23
|
+
/**
|
|
24
|
+
* Validate necessary data input
|
|
25
|
+
*/
|
|
26
|
+
validate(): Promise<boolean>;
|
|
27
|
+
private confirm;
|
|
28
|
+
private cancel;
|
|
29
|
+
render(): void;
|
|
30
|
+
}
|
|
31
|
+
export type addCallbackFn = () => Promise<ObjectData[]>;
|
|
32
|
+
export type cancelCallbackFn = () => Promise<void>;
|
|
33
|
+
export type confirmCallbackFn = (revision: string | undefined) => Promise<void>;
|
|
34
|
+
export interface ObjectData {
|
|
35
|
+
id: string;
|
|
36
|
+
typeIcon: string;
|
|
37
|
+
name: string;
|
|
38
|
+
type: string;
|
|
39
|
+
description: string;
|
|
40
|
+
modifiedOn: Date;
|
|
41
|
+
}
|
|
@@ -15,8 +15,11 @@ import { GxOption } 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, GridContextMenuCallback, LoadCallback, ObjetType, PendingItemCheckedResult, PendingItemsCheckedState } from "./components/team-dev-commit/team-dev-commit";
|
|
18
|
+
import { CommitCallback, GetRecentComment, GridContextMenuCallback, LoadCallback, ObjetType, 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 as GridContextMenuCallback1, LoadCallback as LoadCallback1, ObjectType, PendingItemCheckedCallback, UpdateCallback, UpdateFromData } from "./components/team-dev-update/team-dev-update";
|
|
21
|
+
import { AddCallbackFn, CancelCallbackFn, ConfirmCallbackFn, ObjectData as ObjectData1 } from "./components/team-dev-update-partial-selection/team-dev-update-partial-selection";
|
|
22
|
+
import { cancelCallbackFn, confirmCallbackFn } from "./components/team-dev-update-to-revision/team-dev-update-to-revision";
|
|
20
23
|
import { GxgTreeItemData } from "@genexus/gemini/dist/types/components/tree-item/gxg-tree-item";
|
|
21
24
|
export namespace Components {
|
|
22
25
|
interface GxIdeContainer {
|
|
@@ -402,6 +405,10 @@ export namespace Components {
|
|
|
402
405
|
* The method used by the Host to instruct the component to force a data refresh in the grids.
|
|
403
406
|
*/
|
|
404
407
|
"reload": () => Promise<void>;
|
|
408
|
+
/**
|
|
409
|
+
* Callback that should be invoked when the user selects rows from the grids
|
|
410
|
+
*/
|
|
411
|
+
"selectCallback": SelectCallback;
|
|
405
412
|
/**
|
|
406
413
|
* Possible values for Type filter
|
|
407
414
|
*/
|
|
@@ -421,6 +428,88 @@ export namespace Components {
|
|
|
421
428
|
*/
|
|
422
429
|
"confirmCallback": confirmCallback;
|
|
423
430
|
}
|
|
431
|
+
interface GxIdeTeamDevUpdate {
|
|
432
|
+
/**
|
|
433
|
+
* This is a function provided by the developer that init the process of import a design.
|
|
434
|
+
*/
|
|
435
|
+
"confirmCallback": ConfirmCallback;
|
|
436
|
+
/**
|
|
437
|
+
* This is a function provided by the developer that return the information of an Image System type of data.
|
|
438
|
+
*/
|
|
439
|
+
"gridContextMenuCallback": GridContextMenuCallback;
|
|
440
|
+
/**
|
|
441
|
+
* This is a function provided by the developer that return the list of types of data loaded from file or url.
|
|
442
|
+
*/
|
|
443
|
+
"loadCallback": LoadCallback;
|
|
444
|
+
/**
|
|
445
|
+
* This is a function provided by the developer to call when the user makes a partial selection from button Change of Scope group.
|
|
446
|
+
*/
|
|
447
|
+
"objectsScopeCallback": () => Promise<"all" | "partial">;
|
|
448
|
+
/**
|
|
449
|
+
* This is a function provided by the developer to call when the user clicked in server url of Update From group.
|
|
450
|
+
*/
|
|
451
|
+
"openServerCallback": () => Promise<void>;
|
|
452
|
+
/**
|
|
453
|
+
* This is a function provided by the developer that return the information of a Font type of data.
|
|
454
|
+
*/
|
|
455
|
+
"pendingItemCheckedCallback": PendingItemCheckedCallback;
|
|
456
|
+
/**
|
|
457
|
+
* This is a function provided by the developer to call when the user wants to select the revision to work on.
|
|
458
|
+
*/
|
|
459
|
+
"revisionScopeCallback": () => Promise<string | undefined>;
|
|
460
|
+
/**
|
|
461
|
+
* Possibly values for the filter type
|
|
462
|
+
*/
|
|
463
|
+
"types": ObjectType[];
|
|
464
|
+
/**
|
|
465
|
+
* This is a function provided by the developer that return the information of a Design System type of data.
|
|
466
|
+
*/
|
|
467
|
+
"updateCallback": UpdateCallback;
|
|
468
|
+
/**
|
|
469
|
+
* Information to show in the container of group 'Update From'
|
|
470
|
+
*/
|
|
471
|
+
"updateFrom": UpdateFromData;
|
|
472
|
+
/**
|
|
473
|
+
* Validate necessary data input
|
|
474
|
+
*/
|
|
475
|
+
"validate": () => Promise<boolean>;
|
|
476
|
+
}
|
|
477
|
+
interface GxIdeTeamDevUpdatePartialSelection {
|
|
478
|
+
/**
|
|
479
|
+
* This is a function provided by the developer that return a list of new objects to populate the table of objects.
|
|
480
|
+
*/
|
|
481
|
+
"addCallback": AddCallbackFn;
|
|
482
|
+
/**
|
|
483
|
+
* This is a function provided by the developer for execute when cancel button is pressed.
|
|
484
|
+
*/
|
|
485
|
+
"cancelCallback": CancelCallbackFn;
|
|
486
|
+
/**
|
|
487
|
+
* This is a function provided by the developer and is invoked when the action confirm is executed passing the selected objects of the grid
|
|
488
|
+
*/
|
|
489
|
+
"confirmCallback": ConfirmCallbackFn;
|
|
490
|
+
/**
|
|
491
|
+
* The categories render in the filter category selector
|
|
492
|
+
*/
|
|
493
|
+
"selection": ObjectData[];
|
|
494
|
+
/**
|
|
495
|
+
* Validate necessary data input
|
|
496
|
+
*/
|
|
497
|
+
"validate": () => Promise<boolean>;
|
|
498
|
+
}
|
|
499
|
+
interface GxIdeTeamDevUpdateToRevision {
|
|
500
|
+
/**
|
|
501
|
+
* This is a function provided by the developer for execute when cancel button is pressed.
|
|
502
|
+
*/
|
|
503
|
+
"cancelCallback": cancelCallbackFn;
|
|
504
|
+
/**
|
|
505
|
+
* This is a function provided by the developer and is invoked when the action confirm is executed passing the selected objects of the grid
|
|
506
|
+
*/
|
|
507
|
+
"confirmCallback": confirmCallbackFn;
|
|
508
|
+
/**
|
|
509
|
+
* Validate necessary data input
|
|
510
|
+
*/
|
|
511
|
+
"validate": () => Promise<boolean>;
|
|
512
|
+
}
|
|
424
513
|
interface GxIdeTemplate {
|
|
425
514
|
/**
|
|
426
515
|
* The main title
|
|
@@ -492,6 +581,18 @@ export interface GxIdeTeamDevSelectRecentCommentCustomEvent<T> extends CustomEve
|
|
|
492
581
|
detail: T;
|
|
493
582
|
target: HTMLGxIdeTeamDevSelectRecentCommentElement;
|
|
494
583
|
}
|
|
584
|
+
export interface GxIdeTeamDevUpdateCustomEvent<T> extends CustomEvent<T> {
|
|
585
|
+
detail: T;
|
|
586
|
+
target: HTMLGxIdeTeamDevUpdateElement;
|
|
587
|
+
}
|
|
588
|
+
export interface GxIdeTeamDevUpdatePartialSelectionCustomEvent<T> extends CustomEvent<T> {
|
|
589
|
+
detail: T;
|
|
590
|
+
target: HTMLGxIdeTeamDevUpdatePartialSelectionElement;
|
|
591
|
+
}
|
|
592
|
+
export interface GxIdeTeamDevUpdateToRevisionCustomEvent<T> extends CustomEvent<T> {
|
|
593
|
+
detail: T;
|
|
594
|
+
target: HTMLGxIdeTeamDevUpdateToRevisionElement;
|
|
595
|
+
}
|
|
495
596
|
export interface GxIdeTemplateCustomEvent<T> extends CustomEvent<T> {
|
|
496
597
|
detail: T;
|
|
497
598
|
target: HTMLGxIdeTemplateElement;
|
|
@@ -557,6 +658,24 @@ declare global {
|
|
|
557
658
|
prototype: HTMLGxIdeTeamDevSelectRecentCommentElement;
|
|
558
659
|
new (): HTMLGxIdeTeamDevSelectRecentCommentElement;
|
|
559
660
|
};
|
|
661
|
+
interface HTMLGxIdeTeamDevUpdateElement extends Components.GxIdeTeamDevUpdate, HTMLStencilElement {
|
|
662
|
+
}
|
|
663
|
+
var HTMLGxIdeTeamDevUpdateElement: {
|
|
664
|
+
prototype: HTMLGxIdeTeamDevUpdateElement;
|
|
665
|
+
new (): HTMLGxIdeTeamDevUpdateElement;
|
|
666
|
+
};
|
|
667
|
+
interface HTMLGxIdeTeamDevUpdatePartialSelectionElement extends Components.GxIdeTeamDevUpdatePartialSelection, HTMLStencilElement {
|
|
668
|
+
}
|
|
669
|
+
var HTMLGxIdeTeamDevUpdatePartialSelectionElement: {
|
|
670
|
+
prototype: HTMLGxIdeTeamDevUpdatePartialSelectionElement;
|
|
671
|
+
new (): HTMLGxIdeTeamDevUpdatePartialSelectionElement;
|
|
672
|
+
};
|
|
673
|
+
interface HTMLGxIdeTeamDevUpdateToRevisionElement extends Components.GxIdeTeamDevUpdateToRevision, HTMLStencilElement {
|
|
674
|
+
}
|
|
675
|
+
var HTMLGxIdeTeamDevUpdateToRevisionElement: {
|
|
676
|
+
prototype: HTMLGxIdeTeamDevUpdateToRevisionElement;
|
|
677
|
+
new (): HTMLGxIdeTeamDevUpdateToRevisionElement;
|
|
678
|
+
};
|
|
560
679
|
interface HTMLGxIdeTemplateElement extends Components.GxIdeTemplate, HTMLStencilElement {
|
|
561
680
|
}
|
|
562
681
|
var HTMLGxIdeTemplateElement: {
|
|
@@ -586,6 +705,9 @@ declare global {
|
|
|
586
705
|
"gx-ide-references": HTMLGxIdeReferencesElement;
|
|
587
706
|
"gx-ide-team-dev-commit": HTMLGxIdeTeamDevCommitElement;
|
|
588
707
|
"gx-ide-team-dev-select-recent-comment": HTMLGxIdeTeamDevSelectRecentCommentElement;
|
|
708
|
+
"gx-ide-team-dev-update": HTMLGxIdeTeamDevUpdateElement;
|
|
709
|
+
"gx-ide-team-dev-update-partial-selection": HTMLGxIdeTeamDevUpdatePartialSelectionElement;
|
|
710
|
+
"gx-ide-team-dev-update-to-revision": HTMLGxIdeTeamDevUpdateToRevisionElement;
|
|
589
711
|
"gx-ide-template": HTMLGxIdeTemplateElement;
|
|
590
712
|
"gx-ide-test": HTMLGxIdeTestElement;
|
|
591
713
|
"gx-ide-top-bar": HTMLGxIdeTopBarElement;
|
|
@@ -995,6 +1117,10 @@ declare namespace LocalJSX {
|
|
|
995
1117
|
"pendingItemCheckedCallback"?: (
|
|
996
1118
|
pendingItemsCheckedState: PendingItemsCheckedState
|
|
997
1119
|
) => Promise<PendingItemCheckedResult | undefined>;
|
|
1120
|
+
/**
|
|
1121
|
+
* Callback that should be invoked when the user selects rows from the grids
|
|
1122
|
+
*/
|
|
1123
|
+
"selectCallback"?: SelectCallback;
|
|
998
1124
|
/**
|
|
999
1125
|
* Possible values for Type filter
|
|
1000
1126
|
*/
|
|
@@ -1014,10 +1140,92 @@ declare namespace LocalJSX {
|
|
|
1014
1140
|
*/
|
|
1015
1141
|
"confirmCallback"?: confirmCallback;
|
|
1016
1142
|
/**
|
|
1017
|
-
* This event is
|
|
1143
|
+
* This event is emitted once just after the component is fully loaded and the first render() occurs.
|
|
1018
1144
|
*/
|
|
1019
1145
|
"onComponentDidLoadEvent"?: (event: GxIdeTeamDevSelectRecentCommentCustomEvent<boolean>) => void;
|
|
1020
1146
|
}
|
|
1147
|
+
interface GxIdeTeamDevUpdate {
|
|
1148
|
+
/**
|
|
1149
|
+
* This is a function provided by the developer that init the process of import a design.
|
|
1150
|
+
*/
|
|
1151
|
+
"confirmCallback": ConfirmCallback;
|
|
1152
|
+
/**
|
|
1153
|
+
* This is a function provided by the developer that return the information of an Image System type of data.
|
|
1154
|
+
*/
|
|
1155
|
+
"gridContextMenuCallback": GridContextMenuCallback;
|
|
1156
|
+
/**
|
|
1157
|
+
* This is a function provided by the developer that return the list of types of data loaded from file or url.
|
|
1158
|
+
*/
|
|
1159
|
+
"loadCallback": LoadCallback;
|
|
1160
|
+
/**
|
|
1161
|
+
* This is a function provided by the developer to call when the user makes a partial selection from button Change of Scope group.
|
|
1162
|
+
*/
|
|
1163
|
+
"objectsScopeCallback": () => Promise<"all" | "partial">;
|
|
1164
|
+
/**
|
|
1165
|
+
* This event is emitted once just after the component is fully loaded and the first render() occurs.
|
|
1166
|
+
*/
|
|
1167
|
+
"onComponentDidLoadEvent"?: (event: GxIdeTeamDevUpdateCustomEvent<boolean>) => void;
|
|
1168
|
+
/**
|
|
1169
|
+
* This is a function provided by the developer to call when the user clicked in server url of Update From group.
|
|
1170
|
+
*/
|
|
1171
|
+
"openServerCallback": () => Promise<void>;
|
|
1172
|
+
/**
|
|
1173
|
+
* This is a function provided by the developer that return the information of a Font type of data.
|
|
1174
|
+
*/
|
|
1175
|
+
"pendingItemCheckedCallback": PendingItemCheckedCallback;
|
|
1176
|
+
/**
|
|
1177
|
+
* This is a function provided by the developer to call when the user wants to select the revision to work on.
|
|
1178
|
+
*/
|
|
1179
|
+
"revisionScopeCallback": () => Promise<string | undefined>;
|
|
1180
|
+
/**
|
|
1181
|
+
* Possibly values for the filter type
|
|
1182
|
+
*/
|
|
1183
|
+
"types"?: ObjectType[];
|
|
1184
|
+
/**
|
|
1185
|
+
* This is a function provided by the developer that return the information of a Design System type of data.
|
|
1186
|
+
*/
|
|
1187
|
+
"updateCallback": UpdateCallback;
|
|
1188
|
+
/**
|
|
1189
|
+
* Information to show in the container of group 'Update From'
|
|
1190
|
+
*/
|
|
1191
|
+
"updateFrom"?: UpdateFromData;
|
|
1192
|
+
}
|
|
1193
|
+
interface GxIdeTeamDevUpdatePartialSelection {
|
|
1194
|
+
/**
|
|
1195
|
+
* This is a function provided by the developer that return a list of new objects to populate the table of objects.
|
|
1196
|
+
*/
|
|
1197
|
+
"addCallback": AddCallbackFn;
|
|
1198
|
+
/**
|
|
1199
|
+
* This is a function provided by the developer for execute when cancel button is pressed.
|
|
1200
|
+
*/
|
|
1201
|
+
"cancelCallback": CancelCallbackFn;
|
|
1202
|
+
/**
|
|
1203
|
+
* This is a function provided by the developer and is invoked when the action confirm is executed passing the selected objects of the grid
|
|
1204
|
+
*/
|
|
1205
|
+
"confirmCallback": ConfirmCallbackFn;
|
|
1206
|
+
/**
|
|
1207
|
+
* This event is emitted once just after the component is fully loaded and the first render() occurs.
|
|
1208
|
+
*/
|
|
1209
|
+
"onComponentDidLoadEvent"?: (event: GxIdeTeamDevUpdatePartialSelectionCustomEvent<boolean>) => void;
|
|
1210
|
+
/**
|
|
1211
|
+
* The categories render in the filter category selector
|
|
1212
|
+
*/
|
|
1213
|
+
"selection"?: ObjectData[];
|
|
1214
|
+
}
|
|
1215
|
+
interface GxIdeTeamDevUpdateToRevision {
|
|
1216
|
+
/**
|
|
1217
|
+
* This is a function provided by the developer for execute when cancel button is pressed.
|
|
1218
|
+
*/
|
|
1219
|
+
"cancelCallback": cancelCallbackFn;
|
|
1220
|
+
/**
|
|
1221
|
+
* This is a function provided by the developer and is invoked when the action confirm is executed passing the selected objects of the grid
|
|
1222
|
+
*/
|
|
1223
|
+
"confirmCallback": confirmCallbackFn;
|
|
1224
|
+
/**
|
|
1225
|
+
* This event is emitted once just after the component is fully loaded and the first render() occurs.
|
|
1226
|
+
*/
|
|
1227
|
+
"onComponentDidLoadEvent"?: (event: GxIdeTeamDevUpdateToRevisionCustomEvent<boolean>) => void;
|
|
1228
|
+
}
|
|
1021
1229
|
interface GxIdeTemplate {
|
|
1022
1230
|
/**
|
|
1023
1231
|
* The main title
|
|
@@ -1075,6 +1283,9 @@ declare namespace LocalJSX {
|
|
|
1075
1283
|
"gx-ide-references": GxIdeReferences;
|
|
1076
1284
|
"gx-ide-team-dev-commit": GxIdeTeamDevCommit;
|
|
1077
1285
|
"gx-ide-team-dev-select-recent-comment": GxIdeTeamDevSelectRecentComment;
|
|
1286
|
+
"gx-ide-team-dev-update": GxIdeTeamDevUpdate;
|
|
1287
|
+
"gx-ide-team-dev-update-partial-selection": GxIdeTeamDevUpdatePartialSelection;
|
|
1288
|
+
"gx-ide-team-dev-update-to-revision": GxIdeTeamDevUpdateToRevision;
|
|
1078
1289
|
"gx-ide-template": GxIdeTemplate;
|
|
1079
1290
|
"gx-ide-test": GxIdeTest;
|
|
1080
1291
|
"gx-ide-top-bar": GxIdeTopBar;
|
|
@@ -1094,6 +1305,9 @@ declare module "@stencil/core" {
|
|
|
1094
1305
|
"gx-ide-references": LocalJSX.GxIdeReferences & JSXBase.HTMLAttributes<HTMLGxIdeReferencesElement>;
|
|
1095
1306
|
"gx-ide-team-dev-commit": LocalJSX.GxIdeTeamDevCommit & JSXBase.HTMLAttributes<HTMLGxIdeTeamDevCommitElement>;
|
|
1096
1307
|
"gx-ide-team-dev-select-recent-comment": LocalJSX.GxIdeTeamDevSelectRecentComment & JSXBase.HTMLAttributes<HTMLGxIdeTeamDevSelectRecentCommentElement>;
|
|
1308
|
+
"gx-ide-team-dev-update": LocalJSX.GxIdeTeamDevUpdate & JSXBase.HTMLAttributes<HTMLGxIdeTeamDevUpdateElement>;
|
|
1309
|
+
"gx-ide-team-dev-update-partial-selection": LocalJSX.GxIdeTeamDevUpdatePartialSelection & JSXBase.HTMLAttributes<HTMLGxIdeTeamDevUpdatePartialSelectionElement>;
|
|
1310
|
+
"gx-ide-team-dev-update-to-revision": LocalJSX.GxIdeTeamDevUpdateToRevision & JSXBase.HTMLAttributes<HTMLGxIdeTeamDevUpdateToRevisionElement>;
|
|
1097
1311
|
"gx-ide-template": LocalJSX.GxIdeTemplate & JSXBase.HTMLAttributes<HTMLGxIdeTemplateElement>;
|
|
1098
1312
|
"gx-ide-test": LocalJSX.GxIdeTest & JSXBase.HTMLAttributes<HTMLGxIdeTestElement>;
|
|
1099
1313
|
"gx-ide-top-bar": LocalJSX.GxIdeTopBar & JSXBase.HTMLAttributes<HTMLGxIdeTopBarElement>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genexus/genexus-ide-ui",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.24",
|
|
5
5
|
"description": "GeneXus IDE UI components",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"@types/react": "^18.2.8"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@genexus/gemini": "*0.1.
|
|
39
|
+
"@genexus/gemini": "*0.1.443"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@genexus/gemini": "*0.1.
|
|
42
|
+
"@genexus/gemini": "*0.1.443",
|
|
43
43
|
"@stencil-community/eslint-plugin": "^0.5.0",
|
|
44
44
|
"@stencil/core": "^2.17.0",
|
|
45
45
|
"@stencil/sass": "^2.0.1",
|