@genexus/genexus-ide-ui 1.1.35 → 1.1.37
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/genexus-ide-ui.cjs.js +1 -1
- package/dist/cjs/gx-ide-kb-manager-import.cjs.entry.js +59 -17
- package/dist/cjs/gx-ide-kb-manager-import.cjs.entry.js.map +1 -1
- package/dist/cjs/gx-ide-team-dev-bring-changes.cjs.entry.js +1 -1
- package/dist/cjs/gx-ide-team-dev-commit.cjs.entry.js +645 -296
- package/dist/cjs/gx-ide-team-dev-commit.cjs.entry.js.map +1 -1
- package/dist/cjs/gx-ide-team-dev-history.cjs.entry.js +1 -1
- package/dist/cjs/gx-ide-team-dev-history.cjs.entry.js.map +1 -1
- package/dist/cjs/gx-ide-team-dev-update.cjs.entry.js +8 -3
- package/dist/cjs/gx-ide-team-dev-update.cjs.entry.js.map +1 -1
- package/dist/cjs/gx-ide-ww-files.cjs.entry.js +4 -25
- package/dist/cjs/gx-ide-ww-files.cjs.entry.js.map +1 -1
- package/dist/cjs/helpers-8fb178a2.js +30 -0
- package/dist/cjs/helpers-8fb178a2.js.map +1 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{utilities-11683cc0.js → utilities-0e316b39.js} +6 -6
- package/dist/cjs/utilities-0e316b39.js.map +1 -0
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/kb-manager-import/helpers.js +6 -3
- package/dist/collection/components/kb-manager-import/helpers.js.map +1 -1
- package/dist/collection/components/kb-manager-import/kb-manager-import.css +5 -0
- package/dist/collection/components/kb-manager-import/kb-manager-import.js +56 -12
- package/dist/collection/components/kb-manager-import/kb-manager-import.js.map +1 -1
- package/dist/collection/components/team-dev/bring-changes/bring-changes.js +1 -1
- package/dist/collection/components/team-dev/common/utilities.js +5 -5
- package/dist/collection/components/team-dev/common/utilities.js.map +1 -1
- package/dist/collection/components/team-dev/history/history.js.map +1 -1
- package/dist/collection/components/team-dev/update/update.js +1 -1
- package/dist/collection/components/team-dev/update/update.js.map +1 -1
- package/dist/collection/components/team-dev/version-control/commit/commit.css +344 -0
- package/dist/collection/components/team-dev/version-control/commit/commit.js +801 -0
- package/dist/collection/components/team-dev/version-control/commit/commit.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.en.json +78 -0
- package/dist/collection/components/team-dev/version-control/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.ja.json +78 -0
- package/dist/collection/components/team-dev/version-control/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.zh.json +78 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/categories-to-combo-box.js +7 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/categories-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/changeset-to-combo-box.js +11 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/changeset-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/folders-to-combo-box.js +5 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/folders-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/types-to-combo-box.js +6 -0
- package/dist/collection/components/team-dev/version-control/commit/utilities/types-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/clear-grid-selection.js +37 -0
- package/dist/collection/components/team-dev/version-control/common/clear-grid-selection.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/constants.js +70 -0
- package/dist/collection/components/team-dev/version-control/common/constants.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/header-renders.js +12 -0
- package/dist/collection/components/team-dev/version-control/common/header-renders.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/object-type-to-combo-box.js +6 -0
- package/dist/collection/components/team-dev/version-control/common/object-type-to-combo-box.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/tabular-grid-render.js +112 -0
- package/dist/collection/components/team-dev/version-control/common/tabular-grid-render.js.map +1 -0
- package/dist/collection/components/team-dev/version-control/common/types.js.map +1 -0
- package/dist/components/gx-ide-kb-manager-import.js +59 -18
- package/dist/components/gx-ide-kb-manager-import.js.map +1 -1
- package/dist/components/gx-ide-team-dev-commit.js +682 -316
- package/dist/components/gx-ide-team-dev-commit.js.map +1 -1
- package/dist/components/gx-ide-team-dev-history.js.map +1 -1
- package/dist/components/gx-ide-team-dev-update.js +6 -1
- package/dist/components/gx-ide-team-dev-update.js.map +1 -1
- package/dist/components/gx-ide-ww-files.js +2 -23
- package/dist/components/gx-ide-ww-files.js.map +1 -1
- package/dist/components/helpers2.js +24 -10
- package/dist/components/helpers2.js.map +1 -1
- package/dist/components/utilities.js +5 -5
- package/dist/components/utilities.js.map +1 -1
- package/dist/esm/genexus-ide-ui.js +1 -1
- package/dist/esm/gx-ide-kb-manager-import.entry.js +59 -17
- package/dist/esm/gx-ide-kb-manager-import.entry.js.map +1 -1
- package/dist/esm/gx-ide-team-dev-bring-changes.entry.js +1 -1
- package/dist/esm/gx-ide-team-dev-commit.entry.js +646 -297
- package/dist/esm/gx-ide-team-dev-commit.entry.js.map +1 -1
- package/dist/esm/gx-ide-team-dev-history.entry.js +1 -1
- package/dist/esm/gx-ide-team-dev-history.entry.js.map +1 -1
- package/dist/esm/gx-ide-team-dev-update.entry.js +7 -2
- package/dist/esm/gx-ide-team-dev-update.entry.js.map +1 -1
- package/dist/esm/gx-ide-ww-files.entry.js +2 -23
- package/dist/esm/gx-ide-ww-files.entry.js.map +1 -1
- package/dist/esm/helpers-4d080d9f.js +27 -0
- package/dist/esm/helpers-4d080d9f.js.map +1 -0
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{utilities-482e01e6.js → utilities-6624d90e.js} +6 -6
- package/dist/esm/utilities-6624d90e.js.map +1 -0
- package/dist/genexus-ide-ui/genexus-ide-ui.esm.js +1 -1
- package/dist/genexus-ide-ui/genexus-ide-ui.esm.js.map +1 -1
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.en.json +67 -28
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.ja.json +68 -29
- package/dist/genexus-ide-ui/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.zh.json +67 -28
- package/dist/genexus-ide-ui/{p-1f7ef8ba.entry.js → p-34447b77.entry.js} +2 -2
- package/dist/genexus-ide-ui/{p-d1374a00.entry.js → p-42f37527.entry.js} +155 -151
- package/dist/genexus-ide-ui/p-42f37527.entry.js.map +1 -0
- package/dist/genexus-ide-ui/{p-56c0c556.entry.js → p-48e87e4f.entry.js} +180 -145
- package/dist/genexus-ide-ui/p-48e87e4f.entry.js.map +1 -0
- package/dist/genexus-ide-ui/{p-13f4b647.entry.js → p-585fac4a.entry.js} +2 -2
- package/dist/genexus-ide-ui/p-585fac4a.entry.js.map +1 -0
- package/dist/genexus-ide-ui/p-723d25ae.entry.js +912 -0
- package/dist/genexus-ide-ui/p-723d25ae.entry.js.map +1 -0
- package/dist/genexus-ide-ui/{p-f242ae04.entry.js → p-9b8a8487.entry.js} +251 -272
- package/dist/genexus-ide-ui/p-9b8a8487.entry.js.map +1 -0
- package/dist/genexus-ide-ui/{p-2ee77587.js → p-a24571ca.js} +6 -6
- package/dist/genexus-ide-ui/p-a24571ca.js.map +1 -0
- package/dist/genexus-ide-ui/p-edcd0022.js +27 -0
- package/dist/genexus-ide-ui/p-edcd0022.js.map +1 -0
- package/dist/types/components/kb-manager-import/helpers.d.ts +2 -1
- package/dist/types/components/kb-manager-import/kb-manager-import.d.ts +0 -1
- package/dist/types/components/team-dev/common/utilities.d.ts +1 -1
- package/dist/types/components/team-dev/history/history.d.ts +1 -1
- package/dist/types/components/team-dev/version-control/commit/commit.d.ts +192 -0
- package/dist/types/components/team-dev/version-control/commit/utilities/categories-to-combo-box.d.ts +3 -0
- package/dist/types/components/team-dev/version-control/commit/utilities/changeset-to-combo-box.d.ts +3 -0
- package/dist/types/components/team-dev/version-control/commit/utilities/folders-to-combo-box.d.ts +3 -0
- package/dist/types/components/team-dev/version-control/commit/utilities/types-to-combo-box.d.ts +3 -0
- package/dist/types/components/team-dev/version-control/common/clear-grid-selection.d.ts +11 -0
- package/dist/types/components/team-dev/version-control/common/constants.d.ts +24 -0
- package/dist/types/components/team-dev/version-control/common/header-renders.d.ts +5 -0
- package/dist/types/components/team-dev/{commit/helpers.d.ts → version-control/common/object-type-to-combo-box.d.ts} +1 -2
- package/dist/types/components/team-dev/version-control/common/tabular-grid-render.d.ts +8 -0
- package/dist/types/components/team-dev/version-control/common/types.d.ts +52 -0
- package/dist/types/components.d.ts +61 -77
- package/package.json +1 -1
- package/dist/cjs/helpers-456ecc75.js +0 -16
- package/dist/cjs/helpers-456ecc75.js.map +0 -1
- package/dist/cjs/utilities-11683cc0.js.map +0 -1
- package/dist/collection/components/team-dev/commit/commit.css +0 -100
- package/dist/collection/components/team-dev/commit/commit.js +0 -708
- package/dist/collection/components/team-dev/commit/commit.js.map +0 -1
- package/dist/collection/components/team-dev/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.en.json +0 -39
- package/dist/collection/components/team-dev/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.ja.json +0 -39
- package/dist/collection/components/team-dev/commit/gx-ide-assets/team-dev-commit/langs/team-dev-commit.lang.zh.json +0 -39
- package/dist/collection/components/team-dev/commit/helpers.js +0 -10
- package/dist/collection/components/team-dev/commit/helpers.js.map +0 -1
- package/dist/collection/components/team-dev/common/types.js.map +0 -1
- package/dist/esm/helpers-e1db579e.js +0 -13
- package/dist/esm/helpers-e1db579e.js.map +0 -1
- package/dist/esm/utilities-482e01e6.js.map +0 -1
- package/dist/genexus-ide-ui/p-13f4b647.entry.js.map +0 -1
- package/dist/genexus-ide-ui/p-2ee77587.js.map +0 -1
- package/dist/genexus-ide-ui/p-49f765ef.entry.js +0 -674
- package/dist/genexus-ide-ui/p-49f765ef.entry.js.map +0 -1
- package/dist/genexus-ide-ui/p-56c0c556.entry.js.map +0 -1
- package/dist/genexus-ide-ui/p-821431b4.js +0 -13
- package/dist/genexus-ide-ui/p-821431b4.js.map +0 -1
- package/dist/genexus-ide-ui/p-d1374a00.entry.js.map +0 -1
- package/dist/genexus-ide-ui/p-f242ae04.entry.js.map +0 -1
- package/dist/types/components/team-dev/commit/commit.d.ts +0 -115
- package/dist/types/components/team-dev/common/types.d.ts +0 -1
- /package/dist/collection/components/team-dev/{common → version-control/common}/types.js +0 -0
- /package/dist/genexus-ide-ui/{p-1f7ef8ba.entry.js.map → p-34447b77.entry.js.map} +0 -0
|
@@ -1,674 +0,0 @@
|
|
|
1
|
-
import { r as t, c as e, h as i, H as s, a } from "./p-97107ecc.js";
|
|
2
|
-
|
|
3
|
-
import { g as o } from "./p-401bfc97.js";
|
|
4
|
-
|
|
5
|
-
import { r, a as l } from "./p-2ee77587.js";
|
|
6
|
-
|
|
7
|
-
import { L as n } from "./p-311eedf3.js";
|
|
8
|
-
|
|
9
|
-
import { c } from "./p-9a03ac9f.js";
|
|
10
|
-
|
|
11
|
-
import { f as d } from "./p-8c15538c.js";
|
|
12
|
-
|
|
13
|
-
import { m as h, a as f } from "./p-821431b4.js";
|
|
14
|
-
|
|
15
|
-
const u = '.custom-icon-text-wrapper{display:flex;align-items:center;gap:10px}:host{display:grid;block-size:100%;overflow:auto;grid-template-rows:max-content 1fr max-content}section{display:contents}.header__first-row{grid-template-columns:1fr max-content}.field-comment{flex:1}.filters-container{display:grid;grid-template-rows:0fr;transition:grid-template-rows var(--mer-timing--fast)}.filters-container-visible{grid-template-rows:1fr}.filters-container>div{overflow:hidden}.filter{grid-template-areas:"field-pattern field-folder field-type" "field-changeset field-changeset field-category";padding-block-start:var(--mer-spacing--sm)}.field-pattern{grid-area:field-pattern}.field-folder{grid-area:field-folder}.field-type{grid-area:field-type}.field-changeset{grid-area:field-changeset}.field-category{grid-area:field-category}.ch-tab-slot{inline-size:100%;overflow:auto}.tab{border:none !important}.tabular-grid{block-size:100%;position:relative;overflow:auto}.tabular-grid-cell.tabular-grid-cell-description{max-inline-size:600px}gx-ide-loader{position:absolute;inline-size:100%;block-size:100%}ch-tabular-grid-rowset-empty{position:relative}ch-tabular-grid.tabular-grid--empty::part(main){overflow:hidden}.tooltip{position:absolute}';
|
|
16
|
-
|
|
17
|
-
var m = undefined && undefined.__classPrivateFieldGet || function(t, e, i, s) {
|
|
18
|
-
if (i === "a" && !s) throw new TypeError("Private accessor was defined without a getter");
|
|
19
|
-
if (typeof e === "function" ? t !== e || !s : !e.has(t)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
20
|
-
return i === "m" ? s : i === "a" ? s.call(t) : s ? s.value : e.get(t);
|
|
21
|
-
};
|
|
22
|
-
|
|
23
|
-
var b = undefined && undefined.__classPrivateFieldSet || function(t, e, i, s, a) {
|
|
24
|
-
if (s === "m") throw new TypeError("Private method is not writable");
|
|
25
|
-
if (s === "a" && !a) throw new TypeError("Private accessor was defined without a setter");
|
|
26
|
-
if (typeof e === "function" ? t !== e || !a : !e.has(t)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
27
|
-
return s === "a" ? a.call(t, i) : a ? a.value = i : e.set(t, i), i;
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
var g, p, w, y, v, k, M, C, x, W, S, I, z, T, j, H, E, L, N, R, _, D, F, $, A, P, O, U, X, Y, q, B;
|
|
31
|
-
|
|
32
|
-
const G = o({
|
|
33
|
-
category: "window-tools",
|
|
34
|
-
name: "filter",
|
|
35
|
-
colorType: "primary"
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
const J = o({
|
|
39
|
-
category: "window-tools",
|
|
40
|
-
name: "filter",
|
|
41
|
-
colorType: "on-surface"
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
const K = o({
|
|
45
|
-
category: "window-tools",
|
|
46
|
-
name: "filter-conditions",
|
|
47
|
-
colorType: "primary"
|
|
48
|
-
});
|
|
49
|
-
|
|
50
|
-
const Q = o({
|
|
51
|
-
category: "gemini-tools",
|
|
52
|
-
name: "reset",
|
|
53
|
-
colorType: "primary"
|
|
54
|
-
});
|
|
55
|
-
|
|
56
|
-
const V = "All";
|
|
57
|
-
|
|
58
|
-
const Z = [ "resets/box-sizing", "components/button", "components/checkbox", "components/combo-box", "components/edit", "components/tab", "components/icon", "components/tabular-grid", "components/tooltip", "chameleon/scrollbar", "utils/form", "utils/layout", "utils/typography", "utils/spacing" ];
|
|
59
|
-
|
|
60
|
-
const tt = class {
|
|
61
|
-
constructor(s) {
|
|
62
|
-
t(this, s);
|
|
63
|
-
this.componentDidLoadEvent = e(this, "componentDidLoadEvent", 7);
|
|
64
|
-
this.componentDidRenderFirstTime = e(this, "componentDidRenderFirstTime", 7);
|
|
65
|
-
/**
|
|
66
|
-
* The component hard-coded strings translations.
|
|
67
|
-
*/
|
|
68
|
-
// eslint-disable-next-line @stencil-community/own-props-must-be-private
|
|
69
|
-
g.set(this, void 0);
|
|
70
|
-
p.set(this, false);
|
|
71
|
-
// pending commits grid checkboxes, should be checked, after loadData has loaded commits for the first time.
|
|
72
|
-
w.set(this, false);
|
|
73
|
-
y.set(this, [ {
|
|
74
|
-
id: "pending-commits",
|
|
75
|
-
name: "Pending Commits"
|
|
76
|
-
}, {
|
|
77
|
-
id: "ignored-objects",
|
|
78
|
-
name: "Ignored Objects"
|
|
79
|
-
} ]);
|
|
80
|
-
// filters
|
|
81
|
-
v.set(this, void 0);
|
|
82
|
-
k.set(this, void 0);
|
|
83
|
-
M.set(this, void 0);
|
|
84
|
-
C.set(this, void 0);
|
|
85
|
-
x.set(this, void 0);
|
|
86
|
-
W.set(this, void 0);
|
|
87
|
-
// other
|
|
88
|
-
S.set(this, void 0);
|
|
89
|
-
I.set(this, void 0);
|
|
90
|
-
z.set(this, (() => {
|
|
91
|
-
this.foldersChangedHandler(this.folders);
|
|
92
|
-
this.typesChangedHandler(this.types);
|
|
93
|
-
this.changeSetChangedHandler(this.changeSet);
|
|
94
|
-
this.categoriesChangedHandler(this.categories);
|
|
95
|
-
}));
|
|
96
|
-
T.set(this, (async () => {
|
|
97
|
-
const t = m(this, M, "f").value;
|
|
98
|
-
if (!t.length) {
|
|
99
|
-
// A comment is required to commit.
|
|
100
|
-
this.commentInputHasError = true;
|
|
101
|
-
return;
|
|
102
|
-
}
|
|
103
|
-
this.commitingObjects = true;
|
|
104
|
-
this.commentInputHasError = false;
|
|
105
|
-
const e = await m(this, I, "f").getMarkedRows();
|
|
106
|
-
await this.commitCallback(e, t);
|
|
107
|
-
this.commitingObjects = false;
|
|
108
|
-
}));
|
|
109
|
-
j.set(this, (() => {
|
|
110
|
-
// TODO: This should update
|
|
111
|
-
if (m(this, x, "f").value !== "" || m(this, k, "f").value !== V || m(this, W, "f").value !== V || m(this, C, "f").value !== V || m(this, v, "f").value !== V) {
|
|
112
|
-
this.filterHasConditions = true;
|
|
113
|
-
} else {
|
|
114
|
-
this.filterHasConditions = false;
|
|
115
|
-
}
|
|
116
|
-
}));
|
|
117
|
-
H.set(this, (async () => {
|
|
118
|
-
if (this.getRecentCommentCallback) {
|
|
119
|
-
const t = await this.getRecentCommentCallback();
|
|
120
|
-
if (t) {
|
|
121
|
-
m(this, M, "f").value = t;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}));
|
|
125
|
-
E.set(this, (t => async e => {
|
|
126
|
-
if (this.selectCallback) {
|
|
127
|
-
await this.selectCallback(t, e.detail.rowsId);
|
|
128
|
-
}
|
|
129
|
-
}));
|
|
130
|
-
L.set(this, (t => {
|
|
131
|
-
const {columnId: e, sortDirection: i} = t.detail;
|
|
132
|
-
const s = this.pendingCommits;
|
|
133
|
-
s.sort(((t, s) => {
|
|
134
|
-
if (t[e] < s[e]) {
|
|
135
|
-
return i === "asc" ? -1 : 1;
|
|
136
|
-
}
|
|
137
|
-
if (t[e] > s[e]) {
|
|
138
|
-
return i === "asc" ? 1 : -1;
|
|
139
|
-
}
|
|
140
|
-
return 0;
|
|
141
|
-
}));
|
|
142
|
-
this.pendingCommits = [ ...s ];
|
|
143
|
-
}));
|
|
144
|
-
N.set(this, (async () => {
|
|
145
|
-
this.loading = true;
|
|
146
|
-
const t = {
|
|
147
|
-
pattern: m(this, x, "f").value,
|
|
148
|
-
changeSet: m(this, k, "f").value,
|
|
149
|
-
folder: m(this, C, "f").value,
|
|
150
|
-
category: m(this, v, "f").value,
|
|
151
|
-
type: m(this, W, "f").value
|
|
152
|
-
};
|
|
153
|
-
m(this, j, "f").call(this);
|
|
154
|
-
await this.loadCallback(t).then((async ({pending: t, ignored: e}) => {
|
|
155
|
-
this.pendingCommits = [ ...t ];
|
|
156
|
-
this.ignoredObjects = [ ...e ];
|
|
157
|
-
}));
|
|
158
|
-
this.loading = false;
|
|
159
|
-
m(this, X, "f").call(this);
|
|
160
|
-
}));
|
|
161
|
-
R.set(this, (async () => {
|
|
162
|
-
await m(this, I, "f").markAllRows();
|
|
163
|
-
}));
|
|
164
|
-
_.set(this, (t => async e => {
|
|
165
|
-
e.preventDefault();
|
|
166
|
-
e.stopPropagation();
|
|
167
|
-
let i = [];
|
|
168
|
-
if (t === "commit") {
|
|
169
|
-
i = e.detail.selectedRowsId;
|
|
170
|
-
} else if (t === "ignored") {
|
|
171
|
-
i = await m(this, S, "f").getSelectedRows();
|
|
172
|
-
}
|
|
173
|
-
if (this.objectsContextMenuCallback) {
|
|
174
|
-
await this.objectsContextMenuCallback(t, {
|
|
175
|
-
selection: i,
|
|
176
|
-
clientX: e.detail.clientX,
|
|
177
|
-
clientY: e.detail.clientY
|
|
178
|
-
});
|
|
179
|
-
}
|
|
180
|
-
}));
|
|
181
|
-
D.set(this, (async t => {
|
|
182
|
-
// remove "rowMarkingChanged" until checkboxes have been added/removed on #togglePendingCommitsCheckboxes, to prevent loops.
|
|
183
|
-
m(this, I, "f").removeEventListener("rowMarkingChanged", m(this, D, "f"));
|
|
184
|
-
if (m(this, I, "f")) {
|
|
185
|
-
const e = t.detail.addedRowsId;
|
|
186
|
-
const i = t.detail.removedRowsId;
|
|
187
|
-
const s = await this.pendingItemsCheckedCallback({
|
|
188
|
-
itemsChecked: e,
|
|
189
|
-
itemsUnchecked: i
|
|
190
|
-
});
|
|
191
|
-
if (s === undefined) {
|
|
192
|
-
// undo check/uncheck
|
|
193
|
-
await m(this, O, "f").call(this, e, i);
|
|
194
|
-
} else {
|
|
195
|
-
await m(this, U, "f").call(this, s);
|
|
196
|
-
}
|
|
197
|
-
m(this, I, "f").addEventListener("rowMarkingChanged", m(this, D, "f"));
|
|
198
|
-
}
|
|
199
|
-
}));
|
|
200
|
-
F.set(this, ((t = false) => i("ch-tabular-grid-columnset", {
|
|
201
|
-
class: "tabular-grid-column-set"
|
|
202
|
-
}, t && i("ch-tabular-grid-column", {
|
|
203
|
-
class: "tabular-grid-column",
|
|
204
|
-
columnType: "rich",
|
|
205
|
-
richRowSelector: true,
|
|
206
|
-
richRowSelectorMode: "mark",
|
|
207
|
-
settingable: false,
|
|
208
|
-
sortable: false,
|
|
209
|
-
size: c.tabularGrid.colSize.maxContent
|
|
210
|
-
}), i("ch-tabular-grid-column", {
|
|
211
|
-
columnId: "name",
|
|
212
|
-
class: "tabular-grid-column",
|
|
213
|
-
sortable: true,
|
|
214
|
-
columnName: "Name",
|
|
215
|
-
settingable: false,
|
|
216
|
-
onColumnSortChanged: m(this, L, "f"),
|
|
217
|
-
size: c.tabularGrid.colSize.maxContent
|
|
218
|
-
}), i("ch-tabular-grid-column", {
|
|
219
|
-
columnId: "type",
|
|
220
|
-
class: "tabular-grid-column",
|
|
221
|
-
sortable: true,
|
|
222
|
-
columnName: "Type",
|
|
223
|
-
settingable: false,
|
|
224
|
-
onColumnSortChanged: m(this, L, "f"),
|
|
225
|
-
size: c.tabularGrid.colSize.maxContent
|
|
226
|
-
}), i("ch-tabular-grid-column", {
|
|
227
|
-
columnId: "description",
|
|
228
|
-
class: "tabular-grid-column",
|
|
229
|
-
columnName: "Description",
|
|
230
|
-
settingable: false,
|
|
231
|
-
sortable: true,
|
|
232
|
-
onColumnSortChanged: m(this, L, "f"),
|
|
233
|
-
size: c.tabularGrid.colSize.maxContent
|
|
234
|
-
}), i("ch-tabular-grid-column", {
|
|
235
|
-
columnId: "modifiedOn",
|
|
236
|
-
class: "tabular-grid-column",
|
|
237
|
-
sortable: true,
|
|
238
|
-
columnName: "Modified On",
|
|
239
|
-
settingable: false,
|
|
240
|
-
onColumnSortChanged: m(this, L, "f"),
|
|
241
|
-
size: c.tabularGrid.colSize.maxContent
|
|
242
|
-
}), i("ch-tabular-grid-column", {
|
|
243
|
-
columnId: "module",
|
|
244
|
-
class: "tabular-grid-column",
|
|
245
|
-
columnName: "Module",
|
|
246
|
-
settingable: false,
|
|
247
|
-
sortable: true,
|
|
248
|
-
onColumnSortChanged: m(this, L, "f"),
|
|
249
|
-
size: c.tabularGrid.colSize.maxContent
|
|
250
|
-
}), i("ch-tabular-grid-column", {
|
|
251
|
-
columnId: "localState",
|
|
252
|
-
class: "tabular-grid-column",
|
|
253
|
-
columnName: "Local State",
|
|
254
|
-
settingable: false,
|
|
255
|
-
sortable: true,
|
|
256
|
-
onColumnSortChanged: m(this, L, "f"),
|
|
257
|
-
size: c.tabularGrid.colSize.maxContent
|
|
258
|
-
}), i("ch-tabular-grid-column", {
|
|
259
|
-
columnId: "lastSynchronized",
|
|
260
|
-
class: "tabular-grid-column",
|
|
261
|
-
columnName: "Last Synchronized",
|
|
262
|
-
settingable: false,
|
|
263
|
-
sortable: true,
|
|
264
|
-
onColumnSortChanged: m(this, L, "f"),
|
|
265
|
-
size: c.tabularGrid.colSize.auto
|
|
266
|
-
}))));
|
|
267
|
-
$.set(this, (t => [ i("ch-tabular-grid-cell", {
|
|
268
|
-
class: "tabular-grid-cell"
|
|
269
|
-
}, t.name), i("ch-tabular-grid-cell", {
|
|
270
|
-
class: "tabular-grid-cell"
|
|
271
|
-
}, r(t.type)), i("ch-tabular-grid-cell", {
|
|
272
|
-
class: "tabular-grid-cell tabular-grid-cell-description"
|
|
273
|
-
}, t.description), i("ch-tabular-grid-cell", {
|
|
274
|
-
class: "tabular-grid-cell"
|
|
275
|
-
}, `${d(t.modifiedOn)}`), i("ch-tabular-grid-cell", {
|
|
276
|
-
class: "tabular-grid-cell"
|
|
277
|
-
}, t.module), i("ch-tabular-grid-cell", {
|
|
278
|
-
class: "tabular-grid-cell"
|
|
279
|
-
}, l(t.localState)), i("ch-tabular-grid-cell", {
|
|
280
|
-
class: "tabular-grid-cell"
|
|
281
|
-
}, `${d(t.lastSynchronized)}`) ]));
|
|
282
|
-
A.set(this, (() => {
|
|
283
|
-
var t;
|
|
284
|
-
const e = ((t = this.ignoredObjects) === null || t === void 0 ? void 0 : t.length) === 0 || !this.ignoredObjects;
|
|
285
|
-
return i("ch-tabular-grid", {
|
|
286
|
-
// ignored objects grid render
|
|
287
|
-
class: {
|
|
288
|
-
"tabular-grid": true,
|
|
289
|
-
"tabular-grid--empty": e
|
|
290
|
-
},
|
|
291
|
-
rowSelectionMode: "multiple",
|
|
292
|
-
ref: t => b(this, S, t, "f"),
|
|
293
|
-
allowColumnReorder: false,
|
|
294
|
-
part: "ch-grid-pending-commits",
|
|
295
|
-
onRowContextMenu: m(this, _, "f").call(this, "ignored"),
|
|
296
|
-
onSelectionChanged: m(this, E, "f").call(this, "ignored")
|
|
297
|
-
}, this.commitingObjects && i("gx-ide-loader", {
|
|
298
|
-
loaderTitle: m(this, g, "f").loader.title,
|
|
299
|
-
description: m(this, g, "f").loader.description,
|
|
300
|
-
show: true
|
|
301
|
-
}), m(this, F, "f").call(this), this.ignoredObjects.length > 0 ? i("ch-tabular-grid-rowset", {
|
|
302
|
-
class: "tabular-grid-rowset"
|
|
303
|
-
}, this.ignoredObjects.map((t => i("ch-tabular-grid-row", {
|
|
304
|
-
rowid: t.id,
|
|
305
|
-
selected: true,
|
|
306
|
-
class: "tabular-grid-row"
|
|
307
|
-
}, m(this, $, "f").call(this, t))))) : i("ch-tabular-grid-rowset", {
|
|
308
|
-
class: "tabular-grid-rowset"
|
|
309
|
-
}, i("ch-tabular-grid-rowset-empty", null, i("gx-ide-empty-state", {
|
|
310
|
-
stateIconSrc: J,
|
|
311
|
-
stateTitle: m(this, g, "f").emptyIgnoredObjects,
|
|
312
|
-
isAnimated: true
|
|
313
|
-
}))));
|
|
314
|
-
}));
|
|
315
|
-
P.set(this, (() => {
|
|
316
|
-
var t;
|
|
317
|
-
const e = true;
|
|
318
|
-
const s = ((t = this.pendingCommits) === null || t === void 0 ? void 0 : t.length) === 0 || !this.pendingCommits;
|
|
319
|
-
if (this.loading) {
|
|
320
|
-
return i("div", {
|
|
321
|
-
class: "tabular-grid"
|
|
322
|
-
}, i("gx-ide-loader", {
|
|
323
|
-
loaderTitle: m(this, g, "f").objectsLoader.title,
|
|
324
|
-
description: m(this, g, "f").objectsLoader.description,
|
|
325
|
-
show: true
|
|
326
|
-
}));
|
|
327
|
-
}
|
|
328
|
-
return i("ch-tabular-grid", {
|
|
329
|
-
// pending commits grid render
|
|
330
|
-
class: {
|
|
331
|
-
"tabular-grid": true,
|
|
332
|
-
"tabular-grid--empty": s
|
|
333
|
-
},
|
|
334
|
-
rowSelectionMode: "multiple",
|
|
335
|
-
ref: t => b(this, I, t, "f"),
|
|
336
|
-
allowColumnReorder: false,
|
|
337
|
-
part: "ch-grid-pending-commits",
|
|
338
|
-
onRowContextMenu: m(this, _, "f").call(this, "commit"),
|
|
339
|
-
onSelectionChanged: m(this, E, "f").call(this, "commit")
|
|
340
|
-
}, this.commitingObjects && i("gx-ide-loader", {
|
|
341
|
-
loaderTitle: m(this, g, "f").loader.title,
|
|
342
|
-
description: m(this, g, "f").loader.description,
|
|
343
|
-
show: true
|
|
344
|
-
}), m(this, F, "f").call(this, e), this.pendingCommits.length > 0 ? i("ch-tabular-grid-rowset", {
|
|
345
|
-
class: "tabular-grid-rowset"
|
|
346
|
-
}, this.pendingCommits.map((t => i("ch-tabular-grid-row", {
|
|
347
|
-
rowid: t.id,
|
|
348
|
-
class: "tabular-grid-row"
|
|
349
|
-
}, i("ch-tabular-grid-cell", {
|
|
350
|
-
"cell-type": "rich",
|
|
351
|
-
"row-selector": true,
|
|
352
|
-
class: "tabular-grid-cell"
|
|
353
|
-
}), m(this, $, "f").call(this, t))))) : i("ch-tabular-grid-rowset", {
|
|
354
|
-
class: "tabular-grid-rowset"
|
|
355
|
-
}, i("ch-tabular-grid-rowset-empty", null, i("gx-ide-empty-state", {
|
|
356
|
-
stateIconSrc: J,
|
|
357
|
-
stateTitle: m(this, g, "f").emptyPendingCommitsObjects,
|
|
358
|
-
isAnimated: true
|
|
359
|
-
}))));
|
|
360
|
-
}));
|
|
361
|
-
O.set(this, (async (t, e) => {
|
|
362
|
-
if (m(this, I, "f")) {
|
|
363
|
-
for (const e of t) {
|
|
364
|
-
await m(this, I, "f").markRow(e, false);
|
|
365
|
-
}
|
|
366
|
-
for (const t of e) {
|
|
367
|
-
await m(this, I, "f").markRow(t, true);
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
}));
|
|
371
|
-
U.set(this, (async t => {
|
|
372
|
-
if (m(this, I, "f")) {
|
|
373
|
-
const e = t.itemsToCheck;
|
|
374
|
-
const i = t.itemsToUncheck;
|
|
375
|
-
// check
|
|
376
|
-
for (const t of e) {
|
|
377
|
-
await m(this, I, "f").markRow(t, true);
|
|
378
|
-
}
|
|
379
|
-
// uncheck
|
|
380
|
-
for (const t of i) {
|
|
381
|
-
await m(this, I, "f").markRow(t, false);
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
}));
|
|
385
|
-
X.set(this, (() => {
|
|
386
|
-
b(this, y, [ {
|
|
387
|
-
id: "pending-commits",
|
|
388
|
-
name: `${m(this, g, "f").tabs.pendingCommits} (${this.pendingCommits.length})`
|
|
389
|
-
}, {
|
|
390
|
-
id: "ignored-objects",
|
|
391
|
-
name: `${m(this, g, "f").tabs.ignoredObjects} (${this.ignoredObjects.length})`
|
|
392
|
-
} ], "f");
|
|
393
|
-
}));
|
|
394
|
-
Y.set(this, (async t => {
|
|
395
|
-
const e = t.detail;
|
|
396
|
-
if (e.length && this.commentInputHasError) {
|
|
397
|
-
// remove error style and tooltip
|
|
398
|
-
this.commentInputHasError = false;
|
|
399
|
-
}
|
|
400
|
-
}));
|
|
401
|
-
q.set(this, (() => {
|
|
402
|
-
this.filtersHidden = !this.filtersHidden;
|
|
403
|
-
}));
|
|
404
|
-
B.set(this, (t => {
|
|
405
|
-
t.stopImmediatePropagation();
|
|
406
|
-
}));
|
|
407
|
-
this.comment = "";
|
|
408
|
-
this.filterHasConditions = false;
|
|
409
|
-
this.ignoredObjects = [];
|
|
410
|
-
this.pendingCommits = [];
|
|
411
|
-
this.commentInputHasError = false;
|
|
412
|
-
this.commitingObjects = false;
|
|
413
|
-
this.filtersHidden = true;
|
|
414
|
-
this.folderOptionsModel = undefined;
|
|
415
|
-
this.typeOptionsModel = undefined;
|
|
416
|
-
this.changeSetOptionsModel = undefined;
|
|
417
|
-
this.categoryOptionsModel = undefined;
|
|
418
|
-
this.loading = true;
|
|
419
|
-
this.categories = undefined;
|
|
420
|
-
this.changeSet = undefined;
|
|
421
|
-
this.commitCallback = undefined;
|
|
422
|
-
this.folders = undefined;
|
|
423
|
-
this.getRecentCommentCallback = undefined;
|
|
424
|
-
this.loadCallback = undefined;
|
|
425
|
-
this.objectsContextMenuCallback = undefined;
|
|
426
|
-
this.pendingItemsCheckedCallback = undefined;
|
|
427
|
-
this.selectCallback = undefined;
|
|
428
|
-
this.types = undefined;
|
|
429
|
-
}
|
|
430
|
-
categoriesChangedHandler(t) {
|
|
431
|
-
h(t);
|
|
432
|
-
}
|
|
433
|
-
changeSetChangedHandler(t) {
|
|
434
|
-
this.changeSetOptionsModel = h(t);
|
|
435
|
-
}
|
|
436
|
-
foldersChangedHandler(t) {
|
|
437
|
-
this.folderOptionsModel = h(t);
|
|
438
|
-
}
|
|
439
|
-
typesChangedHandler(t) {
|
|
440
|
-
this.typeOptionsModel = f(t);
|
|
441
|
-
}
|
|
442
|
-
async componentDidLoad() {
|
|
443
|
-
await m(this, N, "f").call(this);
|
|
444
|
-
b(this, p, true, "f");
|
|
445
|
-
this.componentDidLoadEvent.emit(true);
|
|
446
|
-
m(this, M, "f").focus();
|
|
447
|
-
}
|
|
448
|
-
async componentDidRender() {
|
|
449
|
-
if (!m(this, w, "f")) {
|
|
450
|
-
this.componentDidRenderFirstTime.emit(m(this, g, "f").componentName);
|
|
451
|
-
b(this, w, true, "f");
|
|
452
|
-
}
|
|
453
|
-
if (m(this, p, "f")) {
|
|
454
|
-
// call this method only once
|
|
455
|
-
await m(this, R, "f").call(this);
|
|
456
|
-
// attach "rowMarkingChanged" after rows have been checked for the first time.
|
|
457
|
-
m(this, I, "f").addEventListener("rowMarkingChanged", m(this, D, "f"));
|
|
458
|
-
b(this, p, false, "f");
|
|
459
|
-
}
|
|
460
|
-
}
|
|
461
|
-
async componentWillLoad() {
|
|
462
|
-
b(this, g, await n.getComponentStrings(this.el), "f");
|
|
463
|
-
m(this, z, "f").call(this);
|
|
464
|
-
}
|
|
465
|
-
/**
|
|
466
|
-
* Method used by the Host to force a data refresh in the grids
|
|
467
|
-
*/ async reload() {
|
|
468
|
-
m(this, N, "f").call(this);
|
|
469
|
-
}
|
|
470
|
-
render() {
|
|
471
|
-
const t = this.filterHasConditions ? K : G;
|
|
472
|
-
return i(s, {
|
|
473
|
-
class: "widget"
|
|
474
|
-
}, i("ch-theme", {
|
|
475
|
-
model: Z
|
|
476
|
-
}), i("section", {
|
|
477
|
-
class: "section"
|
|
478
|
-
}, i("header", {
|
|
479
|
-
class: "header spacing-body"
|
|
480
|
-
}, i("div", {
|
|
481
|
-
class: "header__first-row field-group"
|
|
482
|
-
}, i("div", {
|
|
483
|
-
class: "buttons-spacer"
|
|
484
|
-
}, i("div", {
|
|
485
|
-
// pattern
|
|
486
|
-
class: "field field-inline field-comment"
|
|
487
|
-
}, i("label", {
|
|
488
|
-
class: "label",
|
|
489
|
-
htmlFor: "pattern-form-text"
|
|
490
|
-
}, m(this, g, "f").header.commentLabel), i("ch-edit", {
|
|
491
|
-
// commit comment
|
|
492
|
-
id: "comment",
|
|
493
|
-
class: {
|
|
494
|
-
input: true,
|
|
495
|
-
"commit-input": true,
|
|
496
|
-
scrollable: true,
|
|
497
|
-
"input-error": this.commentInputHasError
|
|
498
|
-
},
|
|
499
|
-
placeholder: m(this, g, "f").header.commentPlaceholder,
|
|
500
|
-
onInput: m(this, Y, "f"),
|
|
501
|
-
value: this.comment,
|
|
502
|
-
ref: t => b(this, M, t, "f"),
|
|
503
|
-
part: "comment"
|
|
504
|
-
})), i("button", {
|
|
505
|
-
id: "filter-toggle-button",
|
|
506
|
-
class: "button-teritary button-icon-only",
|
|
507
|
-
"aria-label": m(this, g, "f").header.filterAriaLabel,
|
|
508
|
-
"aria-expanded": this.filtersHidden ? "false" : "true",
|
|
509
|
-
"aria-controls": "filters-container",
|
|
510
|
-
onClick: m(this, q, "f"),
|
|
511
|
-
title: m(this, g, "f").header.filterAriaLabel
|
|
512
|
-
}, i("ch-image", {
|
|
513
|
-
class: "icon-md",
|
|
514
|
-
src: t
|
|
515
|
-
})), i("button", {
|
|
516
|
-
class: "button-teritary button-icon-only",
|
|
517
|
-
"aria-label": m(this, g, "f").header.reloadAriaLabel,
|
|
518
|
-
title: m(this, g, "f").header.reloadAriaLabel,
|
|
519
|
-
onClick: m(this, N, "f"),
|
|
520
|
-
part: m(this, g, "f").header.reloadAriaLabel
|
|
521
|
-
}, i("ch-image", {
|
|
522
|
-
class: "icon-md",
|
|
523
|
-
src: Q
|
|
524
|
-
}))), this.commentInputHasError && i("ch-tooltip", {
|
|
525
|
-
class: "tooltip",
|
|
526
|
-
actionElement: m(this, M, "f"),
|
|
527
|
-
blockAlign: "outside-end",
|
|
528
|
-
inlineAlign: c.tooltipSettings.inlineAlign,
|
|
529
|
-
delay: c.tooltipSettings.delay
|
|
530
|
-
}, m(this, g, "f").header.commentEmptyError), i("div", {
|
|
531
|
-
class: "buttons-spacer"
|
|
532
|
-
}, i("button", {
|
|
533
|
-
type: "button",
|
|
534
|
-
class: "button-secondary recent-comments-btn",
|
|
535
|
-
part: "button button-location",
|
|
536
|
-
onClick: m(this, H, "f"),
|
|
537
|
-
"aria-label": m(this, g, "f").header.recentCommentsButton,
|
|
538
|
-
disabled: this.commitingObjects
|
|
539
|
-
}, m(this, g, "f").header.recentCommentsButton))), i("div", {
|
|
540
|
-
id: "filters-container",
|
|
541
|
-
"aria-labelledby": "filter-toggle-button",
|
|
542
|
-
class: {
|
|
543
|
-
"filters-container-visible": !this.filtersHidden,
|
|
544
|
-
"filters-container": true
|
|
545
|
-
},
|
|
546
|
-
inert: this.filtersHidden,
|
|
547
|
-
hidden: this.filtersHidden
|
|
548
|
-
}, i("div", null, i("div", {
|
|
549
|
-
slot: "filter",
|
|
550
|
-
class: "filter field-group"
|
|
551
|
-
}, i("div", {
|
|
552
|
-
// pattern
|
|
553
|
-
class: "field field-block field-pattern"
|
|
554
|
-
}, i("label", {
|
|
555
|
-
class: "label",
|
|
556
|
-
htmlFor: "pattern-form-text"
|
|
557
|
-
}, m(this, g, "f").filtersMenu.patternLabel), i("ch-edit", {
|
|
558
|
-
id: "pattern-form-text",
|
|
559
|
-
class: "input",
|
|
560
|
-
value: "",
|
|
561
|
-
ref: t => b(this, x, t, "f"),
|
|
562
|
-
debounce: c.inputDebounce,
|
|
563
|
-
onInput: m(this, N, "f"),
|
|
564
|
-
part: "pattern-form-text"
|
|
565
|
-
})), i("div", {
|
|
566
|
-
// folder
|
|
567
|
-
class: "field field-block field-folder"
|
|
568
|
-
}, i("label", {
|
|
569
|
-
class: "label",
|
|
570
|
-
htmlFor: "folder-combo"
|
|
571
|
-
}, m(this, g, "f").filtersMenu.folderLabel), i("ch-combo-box-render", {
|
|
572
|
-
id: "folder-combo",
|
|
573
|
-
class: "combo-box",
|
|
574
|
-
value: this.folders[0].id,
|
|
575
|
-
model: this.folderOptionsModel,
|
|
576
|
-
ref: t => b(this, C, t, "f"),
|
|
577
|
-
onInput: m(this, N, "f"),
|
|
578
|
-
part: "folder-combo"
|
|
579
|
-
})), i("div", {
|
|
580
|
-
// type
|
|
581
|
-
class: "field field-block field-type"
|
|
582
|
-
}, i("label", {
|
|
583
|
-
class: "label",
|
|
584
|
-
htmlFor: "type-combo"
|
|
585
|
-
}, m(this, g, "f").filtersMenu.typeLabel), i("ch-combo-box-render", {
|
|
586
|
-
id: "type-combo",
|
|
587
|
-
class: "combo-box",
|
|
588
|
-
value: this.types[0].id,
|
|
589
|
-
model: this.typeOptionsModel,
|
|
590
|
-
ref: t => b(this, W, t, "f"),
|
|
591
|
-
onInput: m(this, N, "f"),
|
|
592
|
-
part: "type-combo"
|
|
593
|
-
})), i("div", {
|
|
594
|
-
// changeset
|
|
595
|
-
class: "field field-block field-changeset"
|
|
596
|
-
}, i("label", {
|
|
597
|
-
class: "label",
|
|
598
|
-
htmlFor: "changeset-combo"
|
|
599
|
-
}, m(this, g, "f").filtersMenu.changesetLabel), i("ch-combo-box-render", {
|
|
600
|
-
id: "changeset-combo",
|
|
601
|
-
class: "combo-box",
|
|
602
|
-
value: this.changeSet[0].id,
|
|
603
|
-
model: this.changeSetOptionsModel,
|
|
604
|
-
ref: t => b(this, k, t, "f"),
|
|
605
|
-
onInput: m(this, N, "f"),
|
|
606
|
-
part: "changeset-combo"
|
|
607
|
-
})), i("div", {
|
|
608
|
-
// category
|
|
609
|
-
class: "field field-block field-category"
|
|
610
|
-
}, i("label", {
|
|
611
|
-
class: "label",
|
|
612
|
-
htmlFor: "category-combo"
|
|
613
|
-
}, m(this, g, "f").filtersMenu.categoryLabel), i("ch-combo-box-render", {
|
|
614
|
-
id: "category-combo",
|
|
615
|
-
class: "combo-box",
|
|
616
|
-
value: this.categories[0].id,
|
|
617
|
-
model: this.categoryOptionsModel,
|
|
618
|
-
ref: t => b(this, v, t, "f"),
|
|
619
|
-
onInput: m(this, N, "f"),
|
|
620
|
-
part: "category-combo"
|
|
621
|
-
})))))), i("ch-tab-render", {
|
|
622
|
-
class: "tab scrollable",
|
|
623
|
-
tabListPosition: "block-start",
|
|
624
|
-
model: m(this, y, "f"),
|
|
625
|
-
selectedId: "pending-commits",
|
|
626
|
-
showTabListEnd: true,
|
|
627
|
-
overflow: "auto auto",
|
|
628
|
-
contain: "size",
|
|
629
|
-
onSelectedItemChange: m(this, B, "f")
|
|
630
|
-
}, i("div", {
|
|
631
|
-
class: "ch-tab-slot",
|
|
632
|
-
slot: "pending-commits",
|
|
633
|
-
part: "pending-commits"
|
|
634
|
-
}, m(this, P, "f").call(this)), i("div", {
|
|
635
|
-
class: "ch-tab-slot",
|
|
636
|
-
slot: "ignored-objects",
|
|
637
|
-
part: "ignored-objects"
|
|
638
|
-
}, m(this, A, "f").call(this))), i("footer", {
|
|
639
|
-
class: "control-footer control-footer-with-border spacing-body-inline spacing-body-block-end"
|
|
640
|
-
}, i("button", {
|
|
641
|
-
class: "button-primary",
|
|
642
|
-
onClick: m(this, T, "f"),
|
|
643
|
-
part: "commit-button",
|
|
644
|
-
disabled: this.commitingObjects
|
|
645
|
-
}, m(this, g, "f").footer.commitButton))));
|
|
646
|
-
}
|
|
647
|
-
static get assetsDirs() {
|
|
648
|
-
return [ "gx-ide-assets/team-dev-commit" ];
|
|
649
|
-
}
|
|
650
|
-
get el() {
|
|
651
|
-
return a(this);
|
|
652
|
-
}
|
|
653
|
-
static get watchers() {
|
|
654
|
-
return {
|
|
655
|
-
categories: [ "categoriesChangedHandler" ],
|
|
656
|
-
changeSet: [ "changeSetChangedHandler" ],
|
|
657
|
-
folders: [ "foldersChangedHandler" ],
|
|
658
|
-
types: [ "typesChangedHandler" ]
|
|
659
|
-
};
|
|
660
|
-
}
|
|
661
|
-
};
|
|
662
|
-
|
|
663
|
-
g = new WeakMap, p = new WeakMap, w = new WeakMap, y = new WeakMap, v = new WeakMap,
|
|
664
|
-
k = new WeakMap, M = new WeakMap, C = new WeakMap, x = new WeakMap, W = new WeakMap,
|
|
665
|
-
S = new WeakMap, I = new WeakMap, z = new WeakMap, T = new WeakMap, j = new WeakMap,
|
|
666
|
-
H = new WeakMap, E = new WeakMap, L = new WeakMap, N = new WeakMap, R = new WeakMap,
|
|
667
|
-
_ = new WeakMap, D = new WeakMap, F = new WeakMap, $ = new WeakMap, A = new WeakMap,
|
|
668
|
-
P = new WeakMap, O = new WeakMap, U = new WeakMap, X = new WeakMap, Y = new WeakMap,
|
|
669
|
-
q = new WeakMap, B = new WeakMap;
|
|
670
|
-
|
|
671
|
-
tt.style = u;
|
|
672
|
-
|
|
673
|
-
export { tt as gx_ide_team_dev_commit };
|
|
674
|
-
//# sourceMappingURL=p-49f765ef.entry.js.map
|