@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,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { r as t, h as e, H as i, a as s } from "./p-97107ecc.js";
|
|
2
2
|
|
|
3
3
|
import { g as a } from "./p-401bfc97.js";
|
|
4
4
|
|
|
@@ -6,119 +6,98 @@ import { L as l } from "./p-311eedf3.js";
|
|
|
6
6
|
|
|
7
7
|
import { c as n } from "./p-9a03ac9f.js";
|
|
8
8
|
|
|
9
|
-
import {
|
|
9
|
+
import { h as r, m as o } from "./p-edcd0022.js";
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
var e;
|
|
13
|
-
return {
|
|
14
|
-
value: t.id,
|
|
15
|
-
caption: t.label,
|
|
16
|
-
startImgSrc: (e = t.iconName) !== null && e !== void 0 ? e : ""
|
|
17
|
-
};
|
|
18
|
-
}));
|
|
11
|
+
import { f as d } from "./p-8c15538c.js";
|
|
19
12
|
|
|
20
|
-
const
|
|
13
|
+
const c = ':host{container-type:inline-size;display:grid;block-size:100%;overflow:auto;grid-template-rows:max-content 1fr max-content}.section{display:contents}.header{grid-template-areas:"name module-folder" "advanced-filter advanced-filter";grid-template-columns:1fr 1fr;grid-auto-rows:max-content max-content}.name{grid-area:name}.module-folder{grid-area:module-folder}.advanced-filter{grid-area:advanced-filter}.advanced-filter__container{display:grid;grid-auto-rows:max-content}.advanced-filter__first-row{grid-template-columns:1fr 1fr}.advanced-filter__second-row{grid-template-columns:1fr 1fr 1fr}.advanced-filter .all-descendants__modified{display:flex;flex-direction:row;align-items:center;block-size:32px;gap:16px;align-self:self-end}.field-date{grid-template-areas:"label-date-time label-date-time" "input-date-time icon-clear-date-time";grid-template-columns:1fr max-content;column-gap:var(--mer-spacing--2xs)}.label-date-time{display:flex;align-items:center;gap:6px;grid-area:label-date-time}.label-date-time .icon-md{--mer-icon__box--md:16.8px}.input-date-time{block-size:31.98px;grid-area:input-date-time}.icon-clear-date-time{grid-area:icon-clear-date-time}.tabular-grid{overflow:auto;inline-size:100%;border-inline-end:var(--section-common-border)}.tabular-grid.empty::part(main),.tabular-grid.loading::part(main){overflow:hidden}ch-tabular-grid-rowset-empty{position:relative}.main__files-container{display:grid;grid-template-columns:repeat(4, 1fr);gap:var(--mer-spacing--xs);position:relative;z-index:1}.hiChar{color:var(--mer-color__primary--200);filter:brightness(1.3)}.tabular-grid ch-tabular-grid-cell:is(:nth-child(4)){padding-block:var(--grid-cell__padding-block);padding-inline:var(--grid-cell__padding-inline);align-items:start;justify-content:start;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-inline-size:0}.tabular-grid-cell-description{min-inline-size:max-content !important}.hiChar{color:var(--mer-color__primary--200);filter:brightness(1.3)}';
|
|
21
14
|
|
|
22
|
-
|
|
23
|
-
if (!i) {
|
|
24
|
-
return e;
|
|
25
|
-
}
|
|
26
|
-
const s = escapeRegExp(i);
|
|
27
|
-
const a = e.split(new RegExp(`(${s})`, "gi"));
|
|
28
|
-
return a.map(((e, s) => e.toLowerCase() === i.toLowerCase() ? t("span", {
|
|
29
|
-
key: s,
|
|
30
|
-
class: "hiChar"
|
|
31
|
-
}, e) : e));
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
const o = ':host{container-type:inline-size;display:grid;block-size:100%;overflow:auto;grid-template-rows:max-content 1fr max-content}.section{display:contents}.header{grid-template-areas:"name module-folder" "advanced-filter advanced-filter";grid-template-columns:1fr 1fr;grid-auto-rows:max-content max-content}.name{grid-area:name}.module-folder{grid-area:module-folder}.advanced-filter{grid-area:advanced-filter}.advanced-filter__container{display:grid;grid-auto-rows:max-content}.advanced-filter__first-row{grid-template-columns:1fr 1fr}.advanced-filter__second-row{grid-template-columns:1fr 1fr 1fr}.advanced-filter .all-descendants__modified{display:flex;flex-direction:row;align-items:center;block-size:32px;gap:16px;align-self:self-end}.field-date{grid-template-areas:"label-date-time label-date-time" "input-date-time icon-clear-date-time";grid-template-columns:1fr max-content;column-gap:var(--mer-spacing--2xs)}.label-date-time{display:flex;align-items:center;gap:6px;grid-area:label-date-time}.label-date-time .icon-md{--mer-icon__box--md:16.8px}.input-date-time{block-size:31.98px;grid-area:input-date-time}.icon-clear-date-time{grid-area:icon-clear-date-time}.tabular-grid{overflow:auto;inline-size:100%;border-inline-end:var(--section-common-border)}.tabular-grid.empty::part(main),.tabular-grid.loading::part(main){overflow:hidden}ch-tabular-grid-rowset-empty{position:relative}.main__files-container{display:grid;grid-template-columns:repeat(4, 1fr);gap:var(--mer-spacing--xs);position:relative;z-index:1}.hiChar{color:var(--mer-color__primary--200);filter:brightness(1.3)}.tabular-grid ch-tabular-grid-cell:is(:nth-child(4)){padding-block:var(--grid-cell__padding-block);padding-inline:var(--grid-cell__padding-inline);align-items:start;justify-content:start;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-inline-size:0}.tabular-grid-cell-description{min-inline-size:max-content !important}.hiChar{color:var(--mer-color__primary--200);filter:brightness(1.3)}';
|
|
35
|
-
|
|
36
|
-
var d = undefined && undefined.__classPrivateFieldSet || function(t, e, i, s, a) {
|
|
15
|
+
var h = undefined && undefined.__classPrivateFieldSet || function(t, e, i, s, a) {
|
|
37
16
|
if (s === "m") throw new TypeError("Private method is not writable");
|
|
38
17
|
if (s === "a" && !a) throw new TypeError("Private accessor was defined without a setter");
|
|
39
18
|
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");
|
|
40
19
|
return s === "a" ? a.call(t, i) : a ? a.value = i : e.set(t, i), i;
|
|
41
20
|
};
|
|
42
21
|
|
|
43
|
-
var
|
|
22
|
+
var f = undefined && undefined.__classPrivateFieldGet || function(t, e, i, s) {
|
|
44
23
|
if (i === "a" && !s) throw new TypeError("Private accessor was defined without a getter");
|
|
45
24
|
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");
|
|
46
25
|
return i === "m" ? s : i === "a" ? s.call(t) : s ? s.value : e.get(t);
|
|
47
26
|
};
|
|
48
27
|
|
|
49
|
-
var
|
|
28
|
+
var u, m, p, b, g, w, v, k, y, x, M, W, _, C, z, N, D, T, j, E, H, I, V, F, A, L, P, B, S, $, O, U, X, Y, q, G, J;
|
|
50
29
|
|
|
51
|
-
const
|
|
30
|
+
const K = [ "resets/box-sizing", "components/button", "components/checkbox", "components/combo-box", "components/accordion", "components/edit", "components/icon", "components/tooltip", "components/tabular-grid", "utils/form", "utils/layout", "utils/typography", "utils/spacing" ];
|
|
52
31
|
|
|
53
|
-
const
|
|
32
|
+
const Q = a({
|
|
54
33
|
category: "system",
|
|
55
34
|
name: "close",
|
|
56
35
|
colorType: "neutral"
|
|
57
36
|
});
|
|
58
37
|
|
|
59
|
-
const
|
|
38
|
+
const R = a({
|
|
60
39
|
category: "window-tools",
|
|
61
40
|
name: "filter",
|
|
62
41
|
colorType: "on-elevation"
|
|
63
42
|
});
|
|
64
43
|
|
|
65
|
-
const
|
|
44
|
+
const Z = a({
|
|
66
45
|
category: "system",
|
|
67
46
|
name: "information",
|
|
68
47
|
colorType: "on-elevation"
|
|
69
48
|
});
|
|
70
49
|
|
|
71
|
-
const
|
|
50
|
+
const tt = "advanced-filter";
|
|
72
51
|
|
|
73
|
-
const
|
|
52
|
+
const et = "afterDateTime";
|
|
74
53
|
|
|
75
|
-
const
|
|
54
|
+
const it = "afterLastBuild";
|
|
76
55
|
|
|
77
|
-
const
|
|
56
|
+
const st = "afterImport";
|
|
78
57
|
|
|
79
|
-
const
|
|
58
|
+
const at = "checked";
|
|
80
59
|
|
|
81
|
-
const
|
|
60
|
+
const lt = "unchecked";
|
|
82
61
|
|
|
83
|
-
const
|
|
62
|
+
const nt = class {
|
|
84
63
|
constructor(i) {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
64
|
+
t(this, i);
|
|
65
|
+
u.set(this, void 0);
|
|
66
|
+
m.set(this, []);
|
|
88
67
|
// Filter Values
|
|
89
|
-
u.set(this, void 0);
|
|
90
|
-
m.set(this, void 0);
|
|
91
|
-
// Advanced Filter Values
|
|
92
68
|
p.set(this, void 0);
|
|
93
69
|
b.set(this, void 0);
|
|
94
|
-
|
|
70
|
+
// Advanced Filter Values
|
|
71
|
+
g.set(this, void 0);
|
|
95
72
|
w.set(this, void 0);
|
|
96
|
-
|
|
97
|
-
v.set(this, []);
|
|
73
|
+
v.set(this, void 0);
|
|
98
74
|
k.set(this, void 0);
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
this
|
|
107
|
-
|
|
75
|
+
// Other
|
|
76
|
+
y.set(this, []);
|
|
77
|
+
x.set(this, void 0);
|
|
78
|
+
M.set(this, void 0);
|
|
79
|
+
W.set(this, (() => {
|
|
80
|
+
h(this, p, "", "f");
|
|
81
|
+
h(this, b, Object.assign({}, this.defaultModule), "f");
|
|
82
|
+
h(this, g, "", "f");
|
|
83
|
+
h(this, w, this.defaultCategory || (this.categoriesComboBoxModel && this.categoriesComboBoxModel.length > 0 ? this.categoriesComboBoxModel[0].value : ""), "f");
|
|
84
|
+
h(this, v, lt, "f");
|
|
85
|
+
this.afterValue = this.filterAfterComboBoxModel && this.filterAfterComboBoxModel.length > 0 ? this.filterAfterComboBoxModel[0].value : et;
|
|
86
|
+
h(this, k, "", "f");
|
|
108
87
|
this.dateTimeValue = undefined;
|
|
109
88
|
}));
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
89
|
+
_.set(this, (t => {
|
|
90
|
+
h(this, v, t.detail === at ? at : lt, "f");
|
|
91
|
+
f(this, L, "f").call(this);
|
|
113
92
|
}));
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
this.selectionChangeCallback(
|
|
93
|
+
C.set(this, (t => {
|
|
94
|
+
h(this, y, t.detail.rowsId, "f");
|
|
95
|
+
this.selectionChangeCallback(f(this, y, "f"));
|
|
117
96
|
}));
|
|
118
|
-
|
|
119
|
-
|
|
97
|
+
z.set(this, (() => {
|
|
98
|
+
f(this, U, "f").call(this);
|
|
120
99
|
}));
|
|
121
|
-
|
|
100
|
+
N.set(this, (t => {
|
|
122
101
|
t.preventDefault();
|
|
123
102
|
t.stopPropagation();
|
|
124
103
|
this.contextMenuCallback({
|
|
@@ -127,224 +106,224 @@ const at = class {
|
|
|
127
106
|
clientY: t.detail.clientY
|
|
128
107
|
});
|
|
129
108
|
}));
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
109
|
+
D.set(this, (() => {
|
|
110
|
+
f(this, x, "f").addEventListener("selectionChanged", f(this, C, "f"));
|
|
111
|
+
f(this, x, "f").addEventListener("rowDoubleClicked", f(this, z, "f"));
|
|
112
|
+
f(this, x, "f").addEventListener("rowContextMenu", f(this, N, "f"));
|
|
134
113
|
}));
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
114
|
+
T.set(this, (async t => {
|
|
115
|
+
h(this, w, t.detail, "f");
|
|
116
|
+
f(this, L, "f").call(this);
|
|
138
117
|
}));
|
|
139
|
-
|
|
118
|
+
j.set(this, (() => {
|
|
140
119
|
this.dateTimeValue = undefined;
|
|
141
120
|
}));
|
|
142
|
-
|
|
121
|
+
E.set(this, (t => {
|
|
143
122
|
this.dateTimeValue = t.detail;
|
|
144
|
-
|
|
123
|
+
f(this, L, "f").call(this);
|
|
145
124
|
}));
|
|
146
|
-
|
|
147
|
-
this.deleteSelectionCallback(
|
|
125
|
+
H.set(this, (() => {
|
|
126
|
+
this.deleteSelectionCallback(f(this, y, "f"));
|
|
148
127
|
}));
|
|
149
128
|
I.set(this, (() => {
|
|
150
|
-
if (
|
|
151
|
-
|
|
129
|
+
if (f(this, x, "f") && typeof f(this, x, "f").selectAllRows === "function") {
|
|
130
|
+
f(this, x, "f").selectAllRows(false);
|
|
152
131
|
}
|
|
153
132
|
}));
|
|
154
|
-
|
|
133
|
+
V.set(this, ((t, i) => {
|
|
155
134
|
const s = new Date(i);
|
|
156
|
-
if (s >=
|
|
135
|
+
if (s >= t) {
|
|
157
136
|
// Object modifed date matches with filter date, or was modified after that date.
|
|
158
137
|
// Highlight to show that it matches.
|
|
159
|
-
return
|
|
138
|
+
return e("span", {
|
|
160
139
|
class: "hiChar"
|
|
161
|
-
},
|
|
140
|
+
}, f(this, A, "f").call(this, t));
|
|
162
141
|
} else {
|
|
163
|
-
return
|
|
142
|
+
return f(this, A, "f").call(this, t);
|
|
164
143
|
}
|
|
165
144
|
}));
|
|
166
|
-
|
|
145
|
+
F.set(this, (t => {
|
|
167
146
|
this.afterValue = t.detail;
|
|
168
|
-
|
|
147
|
+
f(this, L, "f").call(this);
|
|
169
148
|
}));
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
const t =
|
|
149
|
+
A.set(this, (t => d(t, "date-time-short")));
|
|
150
|
+
L.set(this, (() => {
|
|
151
|
+
f(this, Y, "f").call(this);
|
|
152
|
+
const t = f(this, M, "f") && f(this, M, "f").value ? f(this, M, "f").value.id : this.defaultModule ? this.defaultModule.id : "";
|
|
174
153
|
const e = {
|
|
175
|
-
name:
|
|
176
|
-
searchContents:
|
|
177
|
-
category:
|
|
154
|
+
name: f(this, p, "f"),
|
|
155
|
+
searchContents: f(this, g, "f"),
|
|
156
|
+
category: f(this, w, "f"),
|
|
178
157
|
parent: t,
|
|
179
|
-
allDescendants:
|
|
158
|
+
allDescendants: f(this, v, "f") === at,
|
|
180
159
|
modifiedAfter: this.showModified ? this.afterValue : undefined,
|
|
181
|
-
modifiedBy: this.showModified ?
|
|
160
|
+
modifiedBy: this.showModified ? f(this, k, "f") : undefined,
|
|
182
161
|
modifiedDate: this.showModified ? new Date(this.dateTimeValue) : undefined
|
|
183
162
|
};
|
|
184
163
|
this.loadCallback(e).then((t => {
|
|
185
164
|
this.objects = t;
|
|
186
|
-
|
|
187
|
-
if (
|
|
188
|
-
|
|
165
|
+
h(this, y, [], "f");
|
|
166
|
+
if (f(this, x, "f")) {
|
|
167
|
+
f(this, I, "f").call(this);
|
|
189
168
|
}
|
|
190
169
|
this.isLoading = false;
|
|
191
170
|
}));
|
|
192
171
|
}));
|
|
193
|
-
|
|
172
|
+
P.set(this, (() => [ e("div", {
|
|
194
173
|
// Name
|
|
195
174
|
class: "field field-block field-name"
|
|
196
|
-
},
|
|
175
|
+
}, e("label", {
|
|
197
176
|
class: "label",
|
|
198
177
|
htmlFor: "name"
|
|
199
|
-
},
|
|
178
|
+
}, f(this, u, "f").filter.name), e("ch-edit", {
|
|
200
179
|
id: "name",
|
|
201
180
|
class: "input",
|
|
202
|
-
value:
|
|
203
|
-
onInput:
|
|
181
|
+
value: f(this, p, "f"),
|
|
182
|
+
onInput: f(this, $, "f"),
|
|
204
183
|
part: "filter-files",
|
|
205
184
|
debounce: n.inputDebounce,
|
|
206
185
|
disabled: this.isLoading
|
|
207
|
-
})),
|
|
186
|
+
})), e("div", {
|
|
208
187
|
// Module
|
|
209
188
|
class: "field field-block field-module-folder"
|
|
210
|
-
},
|
|
189
|
+
}, e("label", {
|
|
211
190
|
class: "label",
|
|
212
191
|
htmlFor: "module-folder"
|
|
213
|
-
},
|
|
192
|
+
}, f(this, u, "f").filter.moduleFolder), e("gx-ide-entity-selector", {
|
|
214
193
|
part: "filter-module-folder",
|
|
215
194
|
id: "module/folder",
|
|
216
195
|
labelPosition: "none",
|
|
217
|
-
value:
|
|
196
|
+
value: f(this, b, "f"),
|
|
218
197
|
defaultValue: this.defaultModule,
|
|
219
198
|
selectEntityCallback: this.selectModuleCallback,
|
|
220
|
-
ref: t =>
|
|
221
|
-
onValueChanged:
|
|
199
|
+
ref: t => h(this, M, t, "f"),
|
|
200
|
+
onValueChanged: f(this, S, "f"),
|
|
222
201
|
disabled: this.isLoading
|
|
223
|
-
})),
|
|
202
|
+
})), e("ch-accordion-render", {
|
|
224
203
|
class: "accordion-outlined advanced-filter",
|
|
225
|
-
model:
|
|
226
|
-
},
|
|
227
|
-
slot:
|
|
204
|
+
model: f(this, m, "f")
|
|
205
|
+
}, e("div", {
|
|
206
|
+
slot: tt,
|
|
228
207
|
class: "spacing-body field-group advanced-filter__container"
|
|
229
|
-
}, this.showSearchContents &&
|
|
208
|
+
}, this.showSearchContents && e("div", {
|
|
230
209
|
// Search contents
|
|
231
210
|
class: "field field-block field-search-contents"
|
|
232
|
-
},
|
|
211
|
+
}, e("label", {
|
|
233
212
|
class: "label",
|
|
234
213
|
htmlFor: "filter-content"
|
|
235
|
-
},
|
|
214
|
+
}, f(this, u, "f").filter.content), e("ch-edit", {
|
|
236
215
|
id: "filter-content",
|
|
237
216
|
class: "input",
|
|
238
|
-
onInput:
|
|
217
|
+
onInput: f(this, X, "f"),
|
|
239
218
|
part: "filter-content"
|
|
240
|
-
})),
|
|
219
|
+
})), e("div", {
|
|
241
220
|
class: "field-group advanced-filter__first-row"
|
|
242
|
-
},
|
|
221
|
+
}, e("div", {
|
|
243
222
|
// Category
|
|
244
223
|
class: "field field-block field-category"
|
|
245
|
-
},
|
|
224
|
+
}, e("label", {
|
|
246
225
|
class: "label",
|
|
247
226
|
htmlFor: "filter-category"
|
|
248
|
-
},
|
|
227
|
+
}, f(this, u, "f").filter.category), e("ch-combo-box-render", {
|
|
249
228
|
id: "filter-category",
|
|
250
229
|
class: "combo-box disabled",
|
|
251
|
-
value:
|
|
230
|
+
value: f(this, w, "f"),
|
|
252
231
|
disabled: !this.categories || this.isLoading,
|
|
253
232
|
model: this.categoriesComboBoxModel,
|
|
254
233
|
part: "filter-category",
|
|
255
|
-
onInput:
|
|
256
|
-
})),
|
|
234
|
+
onInput: f(this, T, "f")
|
|
235
|
+
})), e("div", {
|
|
257
236
|
// All descendants / Modified
|
|
258
237
|
class: "all-descendants__modified field field-inline"
|
|
259
|
-
},
|
|
238
|
+
}, e("ch-checkbox", {
|
|
260
239
|
// All descendants
|
|
261
240
|
class: "checkbox",
|
|
262
|
-
caption:
|
|
263
|
-
checkedValue:
|
|
264
|
-
unCheckedValue:
|
|
265
|
-
value:
|
|
266
|
-
onInput:
|
|
241
|
+
caption: f(this, u, "f").filter.allDescendants,
|
|
242
|
+
checkedValue: at,
|
|
243
|
+
unCheckedValue: lt,
|
|
244
|
+
value: f(this, v, "f"),
|
|
245
|
+
onInput: f(this, _, "f"),
|
|
267
246
|
part: "filter-all-descendants",
|
|
268
247
|
disabled: this.isLoading
|
|
269
|
-
}),
|
|
248
|
+
}), e("ch-checkbox", {
|
|
270
249
|
// Modified
|
|
271
250
|
class: "checkbox align-center",
|
|
272
|
-
caption:
|
|
273
|
-
checkedValue:
|
|
274
|
-
unCheckedValue:
|
|
251
|
+
caption: f(this, u, "f").filter.modified,
|
|
252
|
+
checkedValue: at,
|
|
253
|
+
unCheckedValue: lt,
|
|
275
254
|
value: this.showModified,
|
|
276
|
-
onInput:
|
|
255
|
+
onInput: f(this, G, "f"),
|
|
277
256
|
part: "filter-modified"
|
|
278
|
-
}))), this.showModified ===
|
|
257
|
+
}))), this.showModified === at && e("div", {
|
|
279
258
|
class: "field-group advanced-filter__second-row"
|
|
280
|
-
},
|
|
259
|
+
}, e("div", {
|
|
281
260
|
// After
|
|
282
261
|
class: "field field-block field-after"
|
|
283
|
-
},
|
|
262
|
+
}, e("label", {
|
|
284
263
|
class: "label",
|
|
285
264
|
htmlFor: "filter-after-type"
|
|
286
|
-
},
|
|
265
|
+
}, f(this, u, "f").filter.after), e("ch-combo-box-render", {
|
|
287
266
|
id: "filter-after-type",
|
|
288
267
|
class: "combo-box",
|
|
289
268
|
value: this.afterValue,
|
|
290
269
|
model: this.filterAfterComboBoxModel,
|
|
291
|
-
onInput:
|
|
270
|
+
onInput: f(this, F, "f"),
|
|
292
271
|
part: "filter-after-type",
|
|
293
272
|
disabled: this.isLoading
|
|
294
|
-
})),
|
|
273
|
+
})), e("div", {
|
|
295
274
|
// User
|
|
296
275
|
class: "field field-block field-user"
|
|
297
|
-
},
|
|
276
|
+
}, e("label", {
|
|
298
277
|
class: "label",
|
|
299
278
|
htmlFor: "filter-user"
|
|
300
|
-
},
|
|
279
|
+
}, f(this, u, "f").filter.user), e("ch-edit", {
|
|
301
280
|
id: "filter-user",
|
|
302
281
|
class: "input",
|
|
303
|
-
value:
|
|
304
|
-
onInput:
|
|
282
|
+
value: f(this, k, "f"),
|
|
283
|
+
onInput: f(this, q, "f"),
|
|
305
284
|
part: "filter-user",
|
|
306
285
|
debounce: n.inputDebounce,
|
|
307
286
|
disabled: this.isLoading
|
|
308
|
-
})), this.afterValue ===
|
|
287
|
+
})), this.afterValue === et && e("div", {
|
|
309
288
|
// Date/Time
|
|
310
289
|
class: {
|
|
311
290
|
"field field-block field-date": true,
|
|
312
|
-
hide: this.afterValue !==
|
|
291
|
+
hide: this.afterValue !== et
|
|
313
292
|
}
|
|
314
|
-
},
|
|
293
|
+
}, e("label", {
|
|
315
294
|
class: "label label-date-time",
|
|
316
295
|
htmlFor: "filter-date-time"
|
|
317
|
-
},
|
|
296
|
+
}, f(this, u, "f").filter.dateTime, e("ch-image", {
|
|
318
297
|
class: "icon-md icon-clear-date-time",
|
|
319
|
-
src:
|
|
320
|
-
}),
|
|
298
|
+
src: Z
|
|
299
|
+
}), e("ch-tooltip", {
|
|
321
300
|
class: "tooltip",
|
|
322
301
|
actionElement: null,
|
|
323
302
|
blockAlign: "outside-start",
|
|
324
303
|
inlineAlign: "inside-start",
|
|
325
304
|
delay: n.tooltipSettings.delay
|
|
326
|
-
},
|
|
305
|
+
}, f(this, u, "f").filter.dateTimeTooltip)), e("ch-edit", {
|
|
327
306
|
id: "filter-date-time",
|
|
328
307
|
type: "datetime-local",
|
|
329
308
|
class: "input input-date-time",
|
|
330
309
|
value: this.dateTimeValue,
|
|
331
|
-
onInput:
|
|
310
|
+
onInput: f(this, E, "f"),
|
|
332
311
|
part: "filter-date-time",
|
|
333
312
|
disabled: this.isLoading
|
|
334
|
-
}),
|
|
313
|
+
}), e("button", {
|
|
335
314
|
class: "button-tertiary button-icon-only",
|
|
336
|
-
onClick:
|
|
315
|
+
onClick: f(this, j, "f"),
|
|
337
316
|
disabled: this.isLoading
|
|
338
|
-
},
|
|
317
|
+
}, e("ch-image", {
|
|
339
318
|
class: "icon-md",
|
|
340
|
-
src:
|
|
319
|
+
src: Q,
|
|
341
320
|
type: "mask"
|
|
342
321
|
})))))) ]));
|
|
343
|
-
|
|
344
|
-
var
|
|
322
|
+
B.set(this, (() => {
|
|
323
|
+
var t;
|
|
345
324
|
const i = !this.objects.length;
|
|
346
|
-
return
|
|
347
|
-
ref: t =>
|
|
325
|
+
return e("ch-tabular-grid", {
|
|
326
|
+
ref: t => h(this, x, t, "f"),
|
|
348
327
|
class: {
|
|
349
328
|
"tabular-grid": true,
|
|
350
329
|
loading: this.isLoading,
|
|
@@ -352,129 +331,129 @@ const at = class {
|
|
|
352
331
|
},
|
|
353
332
|
rowSelectionMode: "multiple",
|
|
354
333
|
part: "ch-grid-files"
|
|
355
|
-
},
|
|
334
|
+
}, e("ch-tabular-grid-columnset", {
|
|
356
335
|
class: "tabular-grid-column-set"
|
|
357
|
-
},
|
|
336
|
+
}, e("ch-tabular-grid-column", {
|
|
358
337
|
columnName: "",
|
|
359
338
|
columnNameHidden: false,
|
|
360
339
|
settingable: false,
|
|
361
340
|
size: n.tabularGrid.colSize.maxContent,
|
|
362
341
|
class: "tabular-grid-column"
|
|
363
|
-
}),
|
|
364
|
-
columnName:
|
|
342
|
+
}), e("ch-tabular-grid-column", {
|
|
343
|
+
columnName: f(this, u, "f").tableHead.name,
|
|
365
344
|
columnNameHidden: false,
|
|
366
345
|
settingable: false,
|
|
367
346
|
size: n.tabularGrid.colSize.maxContent,
|
|
368
347
|
class: "tabular-grid-column"
|
|
369
|
-
}),
|
|
370
|
-
columnName:
|
|
348
|
+
}), e("ch-tabular-grid-column", {
|
|
349
|
+
columnName: f(this, u, "f").tableHead.module,
|
|
371
350
|
columnNameHidden: false,
|
|
372
351
|
settingable: false,
|
|
373
352
|
size: n.tabularGrid.colSize.maxContent,
|
|
374
353
|
class: "tabular-grid-column"
|
|
375
|
-
}), this.gridColumnsVisibility.description &&
|
|
376
|
-
columnName:
|
|
354
|
+
}), this.gridColumnsVisibility.description && e("ch-tabular-grid-column", {
|
|
355
|
+
columnName: f(this, u, "f").tableHead.description,
|
|
377
356
|
columnNameHidden: false,
|
|
378
357
|
settingable: false,
|
|
379
358
|
size: n.tabularGrid.colSize.auto,
|
|
380
359
|
class: "tabular-grid-column"
|
|
381
|
-
}), this.gridColumnsVisibility.modifiedDate &&
|
|
382
|
-
columnName:
|
|
360
|
+
}), this.gridColumnsVisibility.modifiedDate && e("ch-tabular-grid-column", {
|
|
361
|
+
columnName: f(this, u, "f").tableHead.modifiedDate,
|
|
383
362
|
columnNameHidden: false,
|
|
384
363
|
settingable: false,
|
|
385
364
|
size: n.tabularGrid.colSize.maxContent,
|
|
386
365
|
class: "tabular-grid-column"
|
|
387
|
-
}), this.gridColumnsVisibility.lastUser &&
|
|
388
|
-
columnName:
|
|
366
|
+
}), this.gridColumnsVisibility.lastUser && e("ch-tabular-grid-column", {
|
|
367
|
+
columnName: f(this, u, "f").tableHead.lastUser,
|
|
389
368
|
columnNameHidden: false,
|
|
390
369
|
settingable: false,
|
|
391
370
|
size: n.tabularGrid.colSize.maxContent,
|
|
392
371
|
class: "tabular-grid-column"
|
|
393
|
-
}), this.gridColumnsVisibility.importDate &&
|
|
394
|
-
columnName:
|
|
372
|
+
}), this.gridColumnsVisibility.importDate && e("ch-tabular-grid-column", {
|
|
373
|
+
columnName: f(this, u, "f").tableHead.importDate,
|
|
395
374
|
columnNameHidden: false,
|
|
396
375
|
settingable: false,
|
|
397
376
|
size: n.tabularGrid.colSize.maxContent,
|
|
398
377
|
class: "tabular-grid-column"
|
|
399
|
-
}), this.gridColumnsVisibility.lastBuildDate &&
|
|
400
|
-
columnName:
|
|
378
|
+
}), this.gridColumnsVisibility.lastBuildDate && e("ch-tabular-grid-column", {
|
|
379
|
+
columnName: f(this, u, "f").tableHead.lastBuildDate,
|
|
401
380
|
columnNameHidden: false,
|
|
402
381
|
settingable: false,
|
|
403
382
|
size: n.tabularGrid.colSize.maxContent,
|
|
404
383
|
class: "tabular-grid-column"
|
|
405
|
-
})), !i ?
|
|
384
|
+
})), !i ? e("ch-tabular-grid-rowset", {
|
|
406
385
|
class: "tabular-grid-rowset"
|
|
407
|
-
}, (
|
|
386
|
+
}, (t = this.objects) === null || t === void 0 ? void 0 : t.map((t => {
|
|
408
387
|
var i;
|
|
409
|
-
return
|
|
410
|
-
rowid:
|
|
388
|
+
return e("ch-tabular-grid-row", {
|
|
389
|
+
rowid: t.id,
|
|
411
390
|
class: "tabular-grid-row"
|
|
412
|
-
},
|
|
391
|
+
}, e("ch-tabular-grid-cell", {
|
|
413
392
|
class: "tabular-grid-cell"
|
|
414
|
-
},
|
|
415
|
-
src:
|
|
416
|
-
})),
|
|
393
|
+
}, e("ch-image", {
|
|
394
|
+
src: t.icon
|
|
395
|
+
})), e("ch-tabular-grid-cell", {
|
|
417
396
|
class: "tabular-grid-cell"
|
|
418
|
-
},
|
|
397
|
+
}, r(t.name.toLowerCase(), f(this, p, "f").toLowerCase())), e("ch-tabular-grid-cell", {
|
|
419
398
|
class: "tabular-grid-cell"
|
|
420
|
-
},
|
|
399
|
+
}, r(t.parent, f(this, b, "f").name)), this.gridColumnsVisibility.description && e("ch-tabular-grid-cell", {
|
|
421
400
|
class: "tabular-grid-cell tabular-grid-cell-description"
|
|
422
|
-
},
|
|
401
|
+
}, t.description), this.gridColumnsVisibility.modifiedDate && e("ch-tabular-grid-cell", {
|
|
423
402
|
class: "tabular-grid-cell"
|
|
424
|
-
},
|
|
403
|
+
}, f(this, V, "f").call(this, t.modifiedDate, this.dateTimeValue)), this.gridColumnsVisibility.lastUser && e("ch-tabular-grid-cell", {
|
|
425
404
|
class: "tabular-grid-cell"
|
|
426
|
-
},
|
|
405
|
+
}, r((i = t.lastUser) === null || i === void 0 ? void 0 : i.toLowerCase(), f(this, k, "f"))), this.gridColumnsVisibility.importDate && e("ch-tabular-grid-cell", {
|
|
427
406
|
class: "tabular-grid-cell"
|
|
428
|
-
},
|
|
407
|
+
}, r(t.importDate ? f(this, A, "f").call(this, t.importDate) : "", f(this, p, "f"))), this.gridColumnsVisibility.lastBuildDate && e("ch-tabular-grid-cell", {
|
|
429
408
|
class: "tabular-grid-cell"
|
|
430
|
-
},
|
|
431
|
-
}))) :
|
|
409
|
+
}, r(t.lastBuildDate ? f(this, A, "f").call(this, t.lastBuildDate) : "", f(this, p, "f"))));
|
|
410
|
+
}))) : e("ch-tabular-grid-rowset", {
|
|
432
411
|
class: "tabular-grid-rowset"
|
|
433
|
-
},
|
|
434
|
-
loaderTitle:
|
|
435
|
-
description:
|
|
412
|
+
}, e("ch-tabular-grid-rowset-empty", null, this.isLoading ? e("gx-ide-loader", {
|
|
413
|
+
loaderTitle: f(this, u, "f").loader.title,
|
|
414
|
+
description: f(this, u, "f").loader.description,
|
|
436
415
|
show: true
|
|
437
|
-
}) :
|
|
416
|
+
}) : e("gx-ide-empty-state", {
|
|
438
417
|
isAnimated: true,
|
|
439
|
-
stateIconSrc:
|
|
440
|
-
stateTitle:
|
|
418
|
+
stateIconSrc: R,
|
|
419
|
+
stateTitle: f(this, u, "f").emptyState.title
|
|
441
420
|
}))));
|
|
442
421
|
}));
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
422
|
+
S.set(this, (t => {
|
|
423
|
+
h(this, b, t.detail, "f");
|
|
424
|
+
f(this, L, "f").call(this);
|
|
446
425
|
}));
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
426
|
+
$.set(this, (t => {
|
|
427
|
+
h(this, p, t.detail, "f");
|
|
428
|
+
f(this, L, "f").call(this);
|
|
450
429
|
}));
|
|
451
|
-
|
|
430
|
+
O.set(this, (() => {
|
|
452
431
|
this.newFileCallback();
|
|
453
432
|
}));
|
|
454
|
-
|
|
455
|
-
this.openSelectionCallback(
|
|
433
|
+
U.set(this, (() => {
|
|
434
|
+
this.openSelectionCallback(f(this, y, "f"));
|
|
456
435
|
}));
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
436
|
+
X.set(this, (t => {
|
|
437
|
+
h(this, g, t.detail, "f");
|
|
438
|
+
f(this, L, "f").call(this);
|
|
460
439
|
}));
|
|
461
|
-
|
|
440
|
+
Y.set(this, (() => {
|
|
462
441
|
// Only clear if no objects or first load
|
|
463
442
|
if (!this.objects || this.objects.length === 0) {
|
|
464
443
|
this.objects = [];
|
|
465
444
|
}
|
|
466
445
|
this.isLoading = true;
|
|
467
446
|
}));
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
447
|
+
q.set(this, (t => {
|
|
448
|
+
h(this, k, t.detail, "f");
|
|
449
|
+
f(this, L, "f").call(this);
|
|
471
450
|
}));
|
|
472
|
-
|
|
451
|
+
G.set(this, (t => {
|
|
473
452
|
this.showModified = t.detail;
|
|
474
453
|
}));
|
|
475
|
-
|
|
476
|
-
if (
|
|
477
|
-
|
|
454
|
+
J.set(this, (() => {
|
|
455
|
+
if (f(this, x, "f") && typeof f(this, x, "f").selectAllRows === "function") {
|
|
456
|
+
f(this, x, "f").selectAllRows();
|
|
478
457
|
}
|
|
479
458
|
}));
|
|
480
459
|
this.afterValue = undefined;
|
|
@@ -482,7 +461,7 @@ const at = class {
|
|
|
482
461
|
this.dateTimeValue = undefined;
|
|
483
462
|
this.isLoading = true;
|
|
484
463
|
this.filterAfterComboBoxModel = undefined;
|
|
485
|
-
this.showModified =
|
|
464
|
+
this.showModified = at;
|
|
486
465
|
this.objects = [];
|
|
487
466
|
this.categories = undefined;
|
|
488
467
|
this.contextMenuCallback = undefined;
|
|
@@ -504,44 +483,44 @@ const at = class {
|
|
|
504
483
|
this.showSearchContents = false;
|
|
505
484
|
}
|
|
506
485
|
dateTimeValueChanged() {
|
|
507
|
-
|
|
486
|
+
f(this, L, "f").call(this);
|
|
508
487
|
}
|
|
509
488
|
categoriesChanged(t) {
|
|
510
|
-
this.categoriesComboBoxModel =
|
|
489
|
+
this.categoriesComboBoxModel = o(t);
|
|
511
490
|
}
|
|
512
491
|
async componentWillLoad() {
|
|
513
|
-
|
|
492
|
+
h(this, u, await l.getComponentStrings(this.el), "f");
|
|
514
493
|
// initialize combo-box models∂
|
|
515
494
|
this.categoriesChanged(this.categories);
|
|
516
495
|
// initialize "After" combo-box options
|
|
517
496
|
this.filterAfterComboBoxModel = [ {
|
|
518
|
-
caption:
|
|
519
|
-
value:
|
|
497
|
+
caption: f(this, u, "f").filter[et],
|
|
498
|
+
value: et
|
|
520
499
|
}, {
|
|
521
|
-
caption:
|
|
522
|
-
value:
|
|
500
|
+
caption: f(this, u, "f").filter[it],
|
|
501
|
+
value: it
|
|
523
502
|
}, {
|
|
524
|
-
caption:
|
|
525
|
-
value:
|
|
503
|
+
caption: f(this, u, "f").filter[st],
|
|
504
|
+
value: st
|
|
526
505
|
} ];
|
|
527
506
|
// initialize accordion model with proper configuration
|
|
528
|
-
|
|
529
|
-
id:
|
|
530
|
-
caption:
|
|
507
|
+
h(this, m, [ {
|
|
508
|
+
id: tt,
|
|
509
|
+
caption: f(this, u, "f").filter.accordionCaption,
|
|
531
510
|
expanded: false
|
|
532
511
|
} ], "f");
|
|
533
|
-
|
|
512
|
+
f(this, W, "f").call(this);
|
|
534
513
|
}
|
|
535
514
|
componentDidLoad() {
|
|
536
|
-
|
|
537
|
-
|
|
515
|
+
f(this, D, "f").call(this);
|
|
516
|
+
f(this, L, "f").call(this);
|
|
538
517
|
}
|
|
539
518
|
disconnectedCallback() {
|
|
540
519
|
// Clean up event listeners to prevent memory leaks
|
|
541
|
-
if (
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
520
|
+
if (f(this, x, "f")) {
|
|
521
|
+
f(this, x, "f").removeEventListener("selectionChanged", f(this, C, "f"));
|
|
522
|
+
f(this, x, "f").removeEventListener("rowDoubleClicked", f(this, z, "f"));
|
|
523
|
+
f(this, x, "f").removeEventListener("rowContextMenu", f(this, N, "f"));
|
|
545
524
|
}
|
|
546
525
|
}
|
|
547
526
|
keyDownHandler(t) {
|
|
@@ -549,17 +528,17 @@ const at = class {
|
|
|
549
528
|
switch (t.key) {
|
|
550
529
|
case "Enter":
|
|
551
530
|
t.preventDefault();
|
|
552
|
-
|
|
531
|
+
f(this, U, "f").call(this);
|
|
553
532
|
break;
|
|
554
533
|
|
|
555
534
|
case "Delete":
|
|
556
535
|
t.preventDefault();
|
|
557
|
-
|
|
536
|
+
f(this, H, "f").call(this);
|
|
558
537
|
break;
|
|
559
538
|
|
|
560
539
|
case "Escape":
|
|
561
540
|
t.preventDefault();
|
|
562
|
-
|
|
541
|
+
f(this, I, "f").call(this);
|
|
563
542
|
break;
|
|
564
543
|
}
|
|
565
544
|
}
|
|
@@ -568,53 +547,53 @@ const at = class {
|
|
|
568
547
|
* Reloads the view, refreshing the filters and the table of files.
|
|
569
548
|
*/ async reload() {
|
|
570
549
|
try {
|
|
571
|
-
if (
|
|
572
|
-
|
|
573
|
-
|
|
550
|
+
if (f(this, u, "f") && this.filterAfterComboBoxModel) {
|
|
551
|
+
f(this, W, "f").call(this);
|
|
552
|
+
f(this, L, "f").call(this);
|
|
574
553
|
}
|
|
575
554
|
} catch (t) {
|
|
576
555
|
console.error("Error in reload method:");
|
|
577
556
|
// Fallback: try only getObjects if setFilterDefaultValues fails
|
|
578
557
|
try {
|
|
579
|
-
|
|
558
|
+
f(this, L, "f").call(this);
|
|
580
559
|
} catch (t) {
|
|
581
560
|
console.error("Fallback also failed:");
|
|
582
561
|
}
|
|
583
562
|
}
|
|
584
563
|
}
|
|
585
564
|
render() {
|
|
586
|
-
var
|
|
587
|
-
return
|
|
565
|
+
var t;
|
|
566
|
+
return e(i, {
|
|
588
567
|
class: "widget"
|
|
589
|
-
},
|
|
590
|
-
model:
|
|
591
|
-
}),
|
|
568
|
+
}, e("ch-theme", {
|
|
569
|
+
model: K
|
|
570
|
+
}), e("section", {
|
|
592
571
|
class: "section"
|
|
593
|
-
},
|
|
572
|
+
}, e("header", {
|
|
594
573
|
class: "header control-header-with-border spacing-body-inline spacing-body-block-start field-group"
|
|
595
|
-
},
|
|
574
|
+
}, f(this, P, "f").call(this)), f(this, B, "f").call(this), e("footer", {
|
|
596
575
|
class: "control-footer-with-border control-footer-space-between spacing-body"
|
|
597
|
-
},
|
|
576
|
+
}, e("p", {
|
|
598
577
|
// matching objects
|
|
599
578
|
class: "text-body",
|
|
600
579
|
part: "objects-matching"
|
|
601
|
-
}, `${(
|
|
580
|
+
}, `${(t = this.objects) === null || t === void 0 ? void 0 : t.length} ${f(this, u, "f").objCount.matching}`), e("div", {
|
|
602
581
|
class: "buttons-spacer"
|
|
603
|
-
},
|
|
582
|
+
}, e("button", {
|
|
604
583
|
// select all button
|
|
605
584
|
id: "button-select-all",
|
|
606
585
|
class: "button-secondary",
|
|
607
|
-
onClick:
|
|
586
|
+
onClick: f(this, J, "f"),
|
|
608
587
|
part: "button button--select-all",
|
|
609
588
|
disabled: this.isLoading
|
|
610
|
-
},
|
|
589
|
+
}, f(this, u, "f").footer.btnSelectAll), e("button", {
|
|
611
590
|
// new file button
|
|
612
591
|
id: "button-new-file",
|
|
613
592
|
class: "button-primary button-icon-and-text",
|
|
614
|
-
onClick:
|
|
593
|
+
onClick: f(this, O, "f"),
|
|
615
594
|
part: "button button--new-file",
|
|
616
595
|
disabled: this.isLoading
|
|
617
|
-
},
|
|
596
|
+
}, f(this, u, "f").footer.btnNew)))));
|
|
618
597
|
}
|
|
619
598
|
static get assetsDirs() {
|
|
620
599
|
return [ "gx-ide-assets/ww-files" ];
|
|
@@ -630,16 +609,16 @@ const at = class {
|
|
|
630
609
|
}
|
|
631
610
|
};
|
|
632
611
|
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
612
|
+
u = new WeakMap, m = new WeakMap, p = new WeakMap, b = new WeakMap, g = new WeakMap,
|
|
613
|
+
w = new WeakMap, v = new WeakMap, k = new WeakMap, y = new WeakMap, x = new WeakMap,
|
|
614
|
+
M = new WeakMap, W = new WeakMap, _ = new WeakMap, C = new WeakMap, z = new WeakMap,
|
|
615
|
+
N = new WeakMap, D = new WeakMap, T = new WeakMap, j = new WeakMap, E = new WeakMap,
|
|
616
|
+
H = new WeakMap, I = new WeakMap, V = new WeakMap, F = new WeakMap, A = new WeakMap,
|
|
617
|
+
L = new WeakMap, P = new WeakMap, B = new WeakMap, S = new WeakMap, $ = new WeakMap,
|
|
618
|
+
O = new WeakMap, U = new WeakMap, X = new WeakMap, Y = new WeakMap, q = new WeakMap,
|
|
619
|
+
G = new WeakMap, J = new WeakMap;
|
|
641
620
|
|
|
642
|
-
|
|
621
|
+
nt.style = c;
|
|
643
622
|
|
|
644
|
-
export {
|
|
645
|
-
//# sourceMappingURL=p-
|
|
623
|
+
export { nt as gx_ide_ww_files };
|
|
624
|
+
//# sourceMappingURL=p-9b8a8487.entry.js.map
|