@genexus/genexus-ide-ui 1.1.35 → 1.1.36
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-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/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-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-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-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/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-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
|
@@ -4,123 +4,127 @@ import { g as a } from "./p-401bfc97.js";
|
|
|
4
4
|
|
|
5
5
|
import { L as r } from "./p-311eedf3.js";
|
|
6
6
|
|
|
7
|
-
import { r as s } from "./p-
|
|
7
|
+
import { r as s } from "./p-a24571ca.js";
|
|
8
8
|
|
|
9
9
|
import { f as l } from "./p-8c15538c.js";
|
|
10
10
|
|
|
11
11
|
import { c as o } from "./p-9a03ac9f.js";
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
const mapObjectTypeToComboBoxItemModel = e => e.map((e => ({
|
|
14
|
+
value: e.id,
|
|
15
|
+
caption: e.name,
|
|
16
|
+
startImgSrc: e.icon
|
|
17
|
+
})));
|
|
14
18
|
|
|
15
|
-
const
|
|
19
|
+
const c = '.custom-icon-text-wrapper {\n display: flex;\n align-items: center;\n gap: 10px;\n}\n\n/*Gx Ide*/\n/*@container queries*/\n/* hiChar styles\nFound on /common/helpers.tsx hiChar function is used to add a span/class to every character that matches a search value. It is used to help the user see why the filter results are filtered. The span/class on the characters are useless without proper styling.\n*/\n:host {\n --pill-border-radius: 12px;\n --pill-padding-inline: 8px;\n --pill-padding-block: 2px;\n --pill-font-size: var(--font-size-body-s);\n display: grid;\n block-size: 100%;\n overflow: auto;\n grid-template-rows: max-content max-content 1fr;\n}\n\n.detail__version, .detail__knowledge-base {\n padding-inline: 24px;\n border-inline-end: 1px solid var(--mer-border-color__on-elevation--01);\n}\n\n.detail__genexus-server {\n padding-inline-end: 24px;\n border-inline-end: 1px solid var(--mer-border-color__on-elevation--01);\n}\n\n.detail__last-full-update {\n padding-inline-start: 24px;\n}\n\n.section {\n display: contents;\n}\n\n.header {\n display: grid;\n grid-template-columns: 1fr max-content;\n}\n\n.header__detail {\n display: grid;\n row-gap: var(--mer-spacing--md);\n grid-auto-columns: max-content;\n grid-auto-rows: max-content;\n grid-template-areas: "detail-heading-gx . . ." "detail-genexus-server detail-knowledge-base detail-version detail-last-full-update";\n}\n\n.detail__label {\n color: var(--mer-color__neutral-gray--400);\n}\n\n.detail__heading-genexus-server {\n grid-area: detail-heading-gx;\n}\n\n.detail__genexus-server {\n grid-area: detail-genexus-server;\n}\n.detail__genexus-server > a {\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n display: inline-block;\n}\n\n.detail__link {\n align-items: start;\n color: var(--mer-text__primary);\n text-decoration: underline;\n}\n.detail__link:hover {\n color: var(--mer-text__primary--hover);\n}\n.detail__link:active {\n color: var(--mer-text__primary--active);\n}\n\n.detail__knowledge-base {\n grid-area: detail-knowledge-base;\n}\n\n.detail__version {\n grid-area: detail-version;\n}\n\n.detail__last-full-update {\n grid-area: detail-last-full-update;\n}\n\n.filter-container {\n container-type: inline-size;\n box-sizing: border-box;\n}\n\n.filter {\n display: grid;\n margin-block-start: var(--mer-spacing--lg);\n grid-template-areas: "filter-search filter-types filter-actions filter-kb-properties filter-buttons";\n grid-template-columns: 200px 200px 200px max-content 1fr;\n gap: 12px;\n}\n\n@container (max-width: 1100px) {\n .filter-container > .filter {\n grid-template-columns: 200px 200px 200px 1fr;\n grid-template-areas: "filter-search filter-types filter-actions filter-buttons" "filter-kb-properties . . .";\n grid-auto-rows: max-content;\n }\n}\n@container (max-width: 900px) {\n .filter-container > .filter {\n grid-template-columns: 1fr 1fr 1fr;\n grid-template-areas: "filter-search filter-types filter-actions" "filter-kb-properties filter-buttons filter-buttons";\n grid-auto-rows: max-content;\n }\n}\n.filter__search {\n grid-area: filter-search;\n}\n\n.filter__types {\n grid-area: filter-types;\n}\n\n.filter__actions {\n grid-area: filter-actions;\n}\n\n.filter__kb-properties {\n grid-area: filter-kb-properties;\n}\n\n.filter__buttons {\n margin-inline-start: auto;\n grid-area: filter-buttons;\n}\n\n.main {\n position: relative;\n display: grid;\n overflow: auto;\n}\n\n.loader {\n position: relative;\n inline-size: 100%;\n block-size: 100%;\n inset-block-start: 0;\n}\n\n.tabular-grid {\n border-radius: 4px;\n overflow: hidden;\n}\n\n.empty-state {\n block-size: 100%;\n}\n\n.loader {\n --elevation-background-color: var(--mer-surface__elevation--01);\n}\n\n.messages-list {\n margin: 0;\n padding: 0;\n list-style: none;\n max-inline-size: 800px;\n padding: 8px 0;\n list-style-type: none;\n display: flex;\n flex-direction: column;\n gap: var(--mer-spacing--3xs);\n}\n\n.message-description {\n line-height: 1.5;\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.message-icon {\n flex-shrink: 0;\n}\n\n.tabular-grid.empty-result::part(main) {\n overflow: hidden;\n}\n\n.input-comments-container {\n position: relative;\n}\n\n.input-comments {\n --control__border-color: transparent;\n padding-block: 0 !important;\n padding-inline: 0 !important;\n --line-height-tight: 1.4;\n block-size: 100%;\n background-color: var(--mer-surface);\n transition: var(--mer-timing--super-fast) block-size, var(--mer-timing--super-fast) background-color, var(--mer-timing--super-fast) padding-block, var(--mer-timing--super-fast) padding-inline;\n}\n\n.input-comments:focus {\n position: absolute;\n block-size: 200px;\n inline-size: 100%;\n z-index: 99;\n background-color: var(--mer-surface__elevation--01);\n padding-block: var(--control__padding-block) !important;\n padding-inline: var(--control__padding-inline) !important;\n}\n\nch-tabular-grid-cell.tabular-grid-cell::part(actions-icon) {\n background-size: contain;\n margin-inline-end: 0;\n --icon-path: var(--icon__gemini-tools_show-more-vertical_neutral--enabled);\n cursor: pointer;\n}\nch-tabular-grid-cell.tabular-grid-cell::part(actions-icon):hover {\n --icon-path: var(--icon__gemini-tools_show-more-vertical_neutral--hover);\n}\nch-tabular-grid-cell.tabular-grid-cell::part(actions-icon):active {\n --icon-path: var(--icon__gemini-tools_show-more-vertical_neutral--active);\n}\n\n.tabular-grid-row-actions::part(main),\n.property-grid-row-actions::part(main) {\n gap: 0 !important;\n}\n\n.tabular-grid-row-actions > button {\n justify-content: start;\n}\n\n.pill {\n --pill-background-color: transparent;\n --pill-color: transparent;\n --pill-border-color: transparent;\n background-color: var(--pill-background-color);\n color: var(--pill-color);\n border: 1px solid var(--pill-border-color);\n inline-size: 100%;\n padding: var(--pill-padding-block) var(--pill-padding-inline);\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: var(--pill-border-radius);\n position: relative;\n font-weight: var(--font-weight-semi-bold);\n}\n.pill--update, .pill--pending {\n --pill-background-color: var();\n --pill-color: var(--mer-color__neutral-gray--400);\n --pill-border-color: var();\n}\n.pill--to-merge-marked {\n --pill-background-color: var();\n --pill-color: var(--mer-border-color__primary);\n --pill-border-color: var();\n}\n.pill--ignored {\n --pill-background-color: var(--mer-surface__elevation--02);\n --pill-color: var(--mer-text__on-disabled);\n --pill-border-color: var(--mer-border-color__primary--disabled);\n}\n.pill--pending {\n --pill-background-color: var(--mer-color__tinted-primary--8);\n --pill-color: var(--mer-border-color__primary);\n --pill-border-color: var(--mer-color__tinted-primary--50);\n}\n.pill--warning {\n --pill-background-color: var(--mer-color__tinted-yellow--5);\n --pill-color: var(--mer-border-color__warning);\n --pill-border-color: var(--mer-color__tinted-yellow--60);\n}\n.pill--error {\n --pill-background-color: var(--mer-color__tinted-red--5);\n --pill-color: var(--mer-border-color__error);\n --pill-border-color: var(--mer-color__tinted-red--60);\n}\n.pill--updated {\n --pill-background-color: var(--mer-color__tinted-green--5);\n --pill-color: var(--mer-border-color__success);\n --pill-border-color: var(--mer-color__tinted-green--60);\n}\n.pill--transitioning {\n --pill-color: transparent;\n}\n\n.updating-spinner-caption {\n display: flex;\n align-items: center;\n gap: 6px;\n --status-circle-color: transparent;\n --status-circle-size: $size;\n --status-circle-inset-inline-start: 14px;\n --pill-color: var(--mer-border-color__primary);\n}\n.updating-spinner-caption::before {\n display: inline-block;\n content: "";\n width: 14px;\n height: 14px;\n border: calc(14px / 7) solid var(--mer-color__tinted-primary--50);\n border-top: calc(14px / 7) solid var(--mer-color__primary--300);\n border-radius: 50%;\n animation: spin var(--mer-timing--regular) linear infinite;\n}\n@keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.tabular-grid .button-secondary {\n --control__padding-block: var(--pill-padding-block);\n --control__padding-inline: var(--pill-padding-inline);\n font-size: inherit;\n font-weight: inherit;\n /* font-size: var(--pill-font-size); */\n}\n\n.tabular-grid .tabular-grid-cell--for-pill {\n --grid-cell__padding-block: 4px;\n align-items: center;\n justify-content: center;\n}\n\n.tabular-grid.disabled-custom-selector .tabular-grid-cell::part(selector-label),\n.tabular-grid.disabled-custom-selector .tabular-grid-column::part(bar-selector),\n.tabular-grid.disabled-custom-selector .tabular-grid-cell::part(actions-icon) {\n pointer-events: none;\n opacity: 0.5;\n}\n\n.tabular-grid-column--settings-custom-selector,\n.tabular-grid-cell--settings-custom-selector {\n --grid-cell__padding-inline: 0;\n --grid-cell__padding-block: 0;\n}\n\n.tabular-grid-cell::part(actions-icon) {\n padding-block: 6px;\n}\n\nch-tabular-grid-cell.tabular-grid-cell::part(actions-icon) {\n block-size: 100%;\n display: block;\n background-size: 14px;\n padding-inline: 16px;\n}\n\n.tabular-grid-cell.no-checkbox-custom-selector::part(selector-label) {\n visibility: hidden;\n}\n\n.tabular-grid-row-actions::part(window) {\n background-color: var(--mer-surface__elevation--02) !important;\n}\n\n.tabular-grid-row .tabular-grid-cell:nth-child(3) {\n min-inline-size: 200px;\n}';
|
|
16
20
|
|
|
17
|
-
var
|
|
21
|
+
var d = undefined && undefined.__classPrivateFieldGet || function(e, n, t, i) {
|
|
18
22
|
if (t === "a" && !i) throw new TypeError("Private accessor was defined without a getter");
|
|
19
23
|
if (typeof n === "function" ? e !== n || !i : !n.has(e)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
20
24
|
return t === "m" ? i : t === "a" ? i.call(e) : i ? i.value : n.get(e);
|
|
21
25
|
};
|
|
22
26
|
|
|
23
|
-
var
|
|
27
|
+
var p = undefined && undefined.__classPrivateFieldSet || function(e, n, t, i, a) {
|
|
24
28
|
if (i === "m") throw new TypeError("Private method is not writable");
|
|
25
29
|
if (i === "a" && !a) throw new TypeError("Private accessor was defined without a setter");
|
|
26
30
|
if (typeof n === "function" ? e !== n || !a : !n.has(e)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
27
31
|
return i === "a" ? a.call(e, t) : a ? a.value = t : n.set(e, t), t;
|
|
28
32
|
};
|
|
29
33
|
|
|
30
|
-
var u, g, f, m, b, _, v, w, y, k, x, M, z, W, j, T, C, I, S, N, E, A, L
|
|
34
|
+
var h, u, g, f, m, b, _, v, w, y, k, x, M, z, W, j, T, C, I, S, N, E, A, L;
|
|
31
35
|
|
|
32
|
-
const
|
|
36
|
+
const O = [ "resets/box-sizing", "components/tabular-grid", "utils/form--full", "utils/layout", "utils/typography", "utils/spacing", "chameleon/scrollbar" ];
|
|
33
37
|
|
|
34
|
-
const
|
|
38
|
+
const P = "true";
|
|
35
39
|
|
|
36
|
-
const
|
|
40
|
+
const R = "false";
|
|
37
41
|
|
|
38
|
-
const
|
|
42
|
+
const $ = "detail__label body-semi-bold-s";
|
|
39
43
|
|
|
40
44
|
// icons
|
|
41
|
-
const
|
|
45
|
+
const D = a({
|
|
42
46
|
category: "system",
|
|
43
47
|
name: "add",
|
|
44
48
|
colorType: "on-elevation"
|
|
45
49
|
});
|
|
46
50
|
|
|
47
|
-
const
|
|
51
|
+
const F = a({
|
|
48
52
|
category: "system",
|
|
49
53
|
name: "edit",
|
|
50
54
|
colorType: "on-elevation"
|
|
51
55
|
});
|
|
52
56
|
|
|
53
|
-
const
|
|
57
|
+
const U = a({
|
|
54
58
|
category: "window-tools",
|
|
55
59
|
name: "filter",
|
|
56
60
|
colorType: "on-elevation"
|
|
57
61
|
});
|
|
58
62
|
|
|
59
|
-
const
|
|
63
|
+
const q = a({
|
|
60
64
|
category: "system",
|
|
61
65
|
name: "search",
|
|
62
66
|
colorType: "on-elevation"
|
|
63
67
|
});
|
|
64
68
|
|
|
65
|
-
const
|
|
69
|
+
const G = a({
|
|
66
70
|
category: "system",
|
|
67
71
|
name: "substract",
|
|
68
72
|
colorType: "on-elevation"
|
|
69
73
|
});
|
|
70
74
|
|
|
71
|
-
const
|
|
75
|
+
const H = a({
|
|
72
76
|
category: "system",
|
|
73
77
|
name: "warning",
|
|
74
78
|
colorType: "warning"
|
|
75
79
|
});
|
|
76
80
|
|
|
77
|
-
const
|
|
81
|
+
const V = a({
|
|
78
82
|
category: "system",
|
|
79
83
|
name: "error",
|
|
80
84
|
colorType: "error"
|
|
81
85
|
});
|
|
82
86
|
|
|
83
|
-
const
|
|
87
|
+
const X = a({
|
|
84
88
|
category: "system",
|
|
85
89
|
name: "check ",
|
|
86
90
|
colorType: "success"
|
|
87
91
|
});
|
|
88
92
|
|
|
89
|
-
const
|
|
93
|
+
const Y = a({
|
|
90
94
|
category: "system",
|
|
91
95
|
name: "information",
|
|
92
96
|
colorType: "on-elevation"
|
|
93
97
|
});
|
|
94
98
|
|
|
95
|
-
const
|
|
99
|
+
const B = a({
|
|
96
100
|
category: "gemini-tools",
|
|
97
101
|
name: "reset",
|
|
98
102
|
colorType: "neutral"
|
|
99
103
|
});
|
|
100
104
|
|
|
101
|
-
const
|
|
105
|
+
const J = class {
|
|
102
106
|
constructor(t) {
|
|
103
107
|
e(this, t);
|
|
104
108
|
/**
|
|
105
109
|
* The component hard-coded strings translations.
|
|
106
110
|
*/
|
|
107
111
|
// eslint-disable-next-line @stencil-community/own-props-must-be-private
|
|
108
|
-
|
|
109
|
-
|
|
112
|
+
h.set(this, void 0);
|
|
113
|
+
u.set(this, void 0);
|
|
110
114
|
/**
|
|
111
115
|
* Used to determine if pendingItemsCheckedCallback callback has to be called or not.
|
|
112
116
|
* It should be ignored if the grid checkboxes state is changed programmatically, by
|
|
113
117
|
* setting markRow to false once the object has been successfully updated, for example.
|
|
114
|
-
*/
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
+
*/ g.set(this, true);
|
|
119
|
+
f.set(this, void 0);
|
|
120
|
+
m.set(this, (async () => {
|
|
121
|
+
d(this, _, "f").call(this, [ ...this.markedObjectsSet ]);
|
|
118
122
|
}));
|
|
119
|
-
|
|
120
|
-
|
|
123
|
+
b.set(this, (async () => {
|
|
124
|
+
d(this, C, "f").call(this, true);
|
|
121
125
|
}));
|
|
122
|
-
|
|
123
|
-
|
|
126
|
+
_.set(this, (async e => {
|
|
127
|
+
p(this, g, false, "f");
|
|
124
128
|
this.updating = true;
|
|
125
129
|
e.forEach((e => {
|
|
126
130
|
this.objectsStatusMap.set(e, "updating");
|
|
@@ -137,32 +141,32 @@ const K = class {
|
|
|
137
141
|
if (e.result === "updated") {
|
|
138
142
|
this.alreadyUpdatedObjectsIdsSet.add(e.id);
|
|
139
143
|
this.objectsStatusMap.set(e.id, "updated");
|
|
140
|
-
await
|
|
144
|
+
await d(this, f, "f").markRow(e.id, false);
|
|
141
145
|
} else {
|
|
142
146
|
this.objectsStatusMap.set(e.id, "pending");
|
|
143
147
|
}
|
|
144
148
|
}));
|
|
145
149
|
this.updating = false;
|
|
146
150
|
}));
|
|
147
|
-
|
|
151
|
+
v.set(this, (e => {
|
|
148
152
|
let t;
|
|
149
153
|
let i;
|
|
150
154
|
let a;
|
|
151
155
|
if (e === "deleted") {
|
|
152
|
-
t =
|
|
153
|
-
i =
|
|
156
|
+
t = G;
|
|
157
|
+
i = d(this, h, "f").actions.delete;
|
|
154
158
|
a = "--mer-icon__error";
|
|
155
159
|
} else if (e === "inserted") {
|
|
156
|
-
t =
|
|
157
|
-
i =
|
|
160
|
+
t = D;
|
|
161
|
+
i = d(this, h, "f").actions.insert;
|
|
158
162
|
a = "--mer-icon__success";
|
|
159
163
|
} else if (e === "modified") {
|
|
160
|
-
t =
|
|
161
|
-
i =
|
|
164
|
+
t = F;
|
|
165
|
+
i = d(this, h, "f").actions.modify;
|
|
162
166
|
a = "--mer-icon__warning";
|
|
163
167
|
} else if (e === "modified-with-conflicts") {
|
|
164
|
-
t =
|
|
165
|
-
i =
|
|
168
|
+
t = H;
|
|
169
|
+
i = d(this, h, "f").actions.modifyWithConflicts;
|
|
166
170
|
a = "--mer-icon__warning";
|
|
167
171
|
} else if (!e) {
|
|
168
172
|
// proably is "ignored"
|
|
@@ -179,15 +183,15 @@ const K = class {
|
|
|
179
183
|
}
|
|
180
184
|
}), `${i}`);
|
|
181
185
|
}));
|
|
182
|
-
|
|
186
|
+
w.set(this, (e => async () => {
|
|
183
187
|
const n = new Map(this.objectsStatusMap);
|
|
184
188
|
n.set(e, "updating");
|
|
185
189
|
this.objectsStatusMap = n;
|
|
186
|
-
|
|
190
|
+
d(this, _, "f").call(this, [ e ]);
|
|
187
191
|
}));
|
|
188
|
-
|
|
192
|
+
y.set(this, (e => {
|
|
189
193
|
const t = this.objectsStatusMap.get(e);
|
|
190
|
-
const i = t === "pending" && this.updatePillAsButton ?
|
|
194
|
+
const i = t === "pending" && this.updatePillAsButton ? d(this, h, "f").status.update : d(this, h, "f").status[t];
|
|
191
195
|
if (t === "updating") {
|
|
192
196
|
return n("span", {
|
|
193
197
|
class: "updating-spinner-caption"
|
|
@@ -197,7 +201,7 @@ const K = class {
|
|
|
197
201
|
if (this.updatePillAsButton && t === "pending") {
|
|
198
202
|
return n("button", {
|
|
199
203
|
class: "button-secondary pill pill--update",
|
|
200
|
-
onClick:
|
|
204
|
+
onClick: d(this, w, "f").call(this, e)
|
|
201
205
|
}, i);
|
|
202
206
|
} else {
|
|
203
207
|
return n("span", {
|
|
@@ -205,7 +209,7 @@ const K = class {
|
|
|
205
209
|
}, i);
|
|
206
210
|
}
|
|
207
211
|
}));
|
|
208
|
-
|
|
212
|
+
k.set(this, (e => {
|
|
209
213
|
let t;
|
|
210
214
|
if (e === "pending") {
|
|
211
215
|
t = this.pendingObjectsAfterActionFilter;
|
|
@@ -243,9 +247,9 @@ const K = class {
|
|
|
243
247
|
class: "tabular-grid-cell"
|
|
244
248
|
}, l(t.modifiedOn)), n("ch-tabular-grid-cell", {
|
|
245
249
|
class: "tabular-grid-cell"
|
|
246
|
-
},
|
|
250
|
+
}, d(this, v, "f").call(this, t.action)), n("ch-tabular-grid-cell", {
|
|
247
251
|
class: "tabular-grid-cell tabular-grid-cell--for-pill"
|
|
248
|
-
},
|
|
252
|
+
}, d(this, y, "f").call(this, t.id)), (c === null || c === void 0 ? void 0 : c.length) && n("ch-tabular-grid-rowset", {
|
|
249
253
|
class: "tabular-grid-rowset"
|
|
250
254
|
}, n("ch-tabular-grid-rowset-empty", {
|
|
251
255
|
class: {
|
|
@@ -256,14 +260,14 @@ const K = class {
|
|
|
256
260
|
}, c.map((e => {
|
|
257
261
|
let t;
|
|
258
262
|
if (e.type === "error") {
|
|
259
|
-
t = X;
|
|
260
|
-
} else if (e.type === "warning") {
|
|
261
263
|
t = V;
|
|
264
|
+
} else if (e.type === "warning") {
|
|
265
|
+
t = H;
|
|
262
266
|
} else if (e.type === "success") {
|
|
263
|
-
t =
|
|
267
|
+
t = X;
|
|
264
268
|
} else {
|
|
265
269
|
// info
|
|
266
|
-
t =
|
|
270
|
+
t = Y;
|
|
267
271
|
}
|
|
268
272
|
return n("li", {
|
|
269
273
|
class: "message-description"
|
|
@@ -274,14 +278,14 @@ const K = class {
|
|
|
274
278
|
}))))));
|
|
275
279
|
}));
|
|
276
280
|
}));
|
|
277
|
-
|
|
281
|
+
x.set(this, (async e => {
|
|
278
282
|
const n = e.detail.rowsId;
|
|
279
283
|
this.markedObjectsSet = new Set(n.filter((e => !this.alreadyUpdatedObjectsIdsSet.has(e))));
|
|
280
|
-
if (
|
|
281
|
-
|
|
284
|
+
if (d(this, g, "f")) {
|
|
285
|
+
d(this, M, "f").call(this, e);
|
|
282
286
|
}
|
|
283
287
|
}));
|
|
284
|
-
|
|
288
|
+
M.set(this, (async e => {
|
|
285
289
|
const n = e.detail.addedRowsId;
|
|
286
290
|
const t = e.detail.removedRowsId;
|
|
287
291
|
const i = await this.pendingItemsCheckedCallback({
|
|
@@ -290,25 +294,25 @@ const K = class {
|
|
|
290
294
|
});
|
|
291
295
|
if (i === undefined) {
|
|
292
296
|
// undo check/uncheck
|
|
293
|
-
await
|
|
297
|
+
await d(this, E, "f").call(this, n, t);
|
|
294
298
|
} else {
|
|
295
|
-
await
|
|
299
|
+
await d(this, A, "f").call(this, i);
|
|
296
300
|
}
|
|
297
301
|
}));
|
|
298
|
-
|
|
302
|
+
z.set(this, (e => {
|
|
299
303
|
this.searchValue = e.detail;
|
|
300
|
-
|
|
304
|
+
d(this, C, "f").call(this);
|
|
301
305
|
}));
|
|
302
306
|
// Local Methods Update
|
|
303
|
-
|
|
307
|
+
W.set(this, (e => {
|
|
304
308
|
this.selectedAction = e.detail;
|
|
305
|
-
|
|
309
|
+
d(this, C, "f").call(this);
|
|
306
310
|
}));
|
|
307
|
-
|
|
311
|
+
j.set(this, (async e => {
|
|
308
312
|
this.selectedType = e.detail;
|
|
309
|
-
|
|
313
|
+
d(this, C, "f").call(this);
|
|
310
314
|
}));
|
|
311
|
-
|
|
315
|
+
T.set(this, (() => {
|
|
312
316
|
this.pendingAndIgnored.pendingForUpdate.forEach((e => {
|
|
313
317
|
var n;
|
|
314
318
|
const t = (n = e.status) !== null && n !== void 0 ? n : "pending";
|
|
@@ -323,7 +327,7 @@ const K = class {
|
|
|
323
327
|
this.objectsStatusMap.set(e.id, t);
|
|
324
328
|
}));
|
|
325
329
|
}));
|
|
326
|
-
|
|
330
|
+
C.set(this, (async (e = false) => {
|
|
327
331
|
const n = {
|
|
328
332
|
search: this.searchValue,
|
|
329
333
|
type: this.selectedType,
|
|
@@ -333,10 +337,10 @@ const K = class {
|
|
|
333
337
|
this.loading = true;
|
|
334
338
|
this.objectsMessagesDataMap.clear();
|
|
335
339
|
this.pendingAndIgnored = await this.loadCallback(n, e);
|
|
336
|
-
|
|
340
|
+
d(this, T, "f").call(this);
|
|
337
341
|
this.loading = false;
|
|
338
342
|
// Is is required to mark/check all objects after loadCallback.
|
|
339
|
-
|
|
343
|
+
d(this, I, "f").call(this);
|
|
340
344
|
}));
|
|
341
345
|
/**
|
|
342
346
|
* Marks all pending objects that have not been committed yet.
|
|
@@ -344,14 +348,14 @@ const K = class {
|
|
|
344
348
|
* Iterates through all pending object IDs and adds them to the marked objects set
|
|
345
349
|
* if they are not already in the committed objects set. This effectively identifies
|
|
346
350
|
* and marks all the pending objects that still need to be processed.
|
|
347
|
-
**/
|
|
351
|
+
**/ I.set(this, (() => {
|
|
348
352
|
for (const e of this.pendingIdsSet) {
|
|
349
353
|
if (!this.alreadyUpdatedObjectsIdsSet.has(e)) {
|
|
350
354
|
this.markedObjectsSet = new Set([ ...this.markedObjectsSet, e ]);
|
|
351
355
|
}
|
|
352
356
|
}
|
|
353
357
|
}));
|
|
354
|
-
|
|
358
|
+
S.set(this, (() => {
|
|
355
359
|
// this.pendingObjectsAfterActionFilter = this.#filteredObjects(
|
|
356
360
|
// this.pendingAndIgnored.pendingForUpdate
|
|
357
361
|
// );
|
|
@@ -377,18 +381,18 @@ const K = class {
|
|
|
377
381
|
// }
|
|
378
382
|
// return filtered;
|
|
379
383
|
// };
|
|
380
|
-
|
|
384
|
+
N.set(this, (() => async e => {
|
|
381
385
|
e.preventDefault();
|
|
382
386
|
e.stopPropagation();
|
|
383
|
-
const n = await
|
|
384
|
-
const t = (await
|
|
387
|
+
const n = await d(this, f, "f").getSelectedRows();
|
|
388
|
+
const t = (await d(this, f, "f").getSelectedCell()).rowId;
|
|
385
389
|
const i = this.pendingIdsSet.has(t) ? "pending" : "ignored";
|
|
386
390
|
let a = [];
|
|
387
391
|
// remove selected rows from the other source, if any.
|
|
388
392
|
if (n.length > 1 && i === "pending") {
|
|
389
393
|
n.forEach((async e => {
|
|
390
394
|
if (this.ignoredIdsSet.has(e)) {
|
|
391
|
-
await
|
|
395
|
+
await d(this, f, "f").selectRow(e, false);
|
|
392
396
|
} else {
|
|
393
397
|
a.push(e);
|
|
394
398
|
}
|
|
@@ -396,7 +400,7 @@ const K = class {
|
|
|
396
400
|
} else if (n.length > 1 && i === "ignored") {
|
|
397
401
|
n.forEach((async e => {
|
|
398
402
|
if (this.pendingIdsSet.has(e)) {
|
|
399
|
-
await
|
|
403
|
+
await d(this, f, "f").selectRow(e, false);
|
|
400
404
|
} else {
|
|
401
405
|
a.push(e);
|
|
402
406
|
}
|
|
@@ -410,33 +414,33 @@ const K = class {
|
|
|
410
414
|
clientY: e.detail.clientY
|
|
411
415
|
});
|
|
412
416
|
}));
|
|
413
|
-
|
|
414
|
-
if (
|
|
417
|
+
E.set(this, (async (e, n) => {
|
|
418
|
+
if (d(this, f, "f")) {
|
|
415
419
|
for (const n of e) {
|
|
416
|
-
await
|
|
420
|
+
await d(this, f, "f").markRow(n, false);
|
|
417
421
|
}
|
|
418
422
|
for (const e of n) {
|
|
419
|
-
await
|
|
423
|
+
await d(this, f, "f").markRow(e, true);
|
|
420
424
|
}
|
|
421
425
|
}
|
|
422
426
|
}));
|
|
423
|
-
|
|
424
|
-
if (
|
|
427
|
+
A.set(this, (async e => {
|
|
428
|
+
if (d(this, f, "f")) {
|
|
425
429
|
const n = e.itemsToCheck;
|
|
426
430
|
const t = e.itemsToUncheck;
|
|
427
431
|
// check
|
|
428
432
|
for (const e of n) {
|
|
429
|
-
await
|
|
433
|
+
await d(this, f, "f").markRow(e, true);
|
|
430
434
|
}
|
|
431
435
|
// uncheck
|
|
432
436
|
for (const e of t) {
|
|
433
|
-
await
|
|
437
|
+
await d(this, f, "f").markRow(e, false);
|
|
434
438
|
}
|
|
435
439
|
}
|
|
436
440
|
}));
|
|
437
|
-
|
|
438
|
-
this.kbPropertiesChecked = e.detail ===
|
|
439
|
-
|
|
441
|
+
L.set(this, (e => {
|
|
442
|
+
this.kbPropertiesChecked = e.detail === P;
|
|
443
|
+
d(this, C, "f").call(this, true);
|
|
440
444
|
}));
|
|
441
445
|
this.atLeastOneObjectIsChecked = false;
|
|
442
446
|
this.loading = true;
|
|
@@ -478,7 +482,7 @@ const K = class {
|
|
|
478
482
|
}
|
|
479
483
|
}
|
|
480
484
|
pendingAndIgnoredChanged() {
|
|
481
|
-
|
|
485
|
+
d(this, S, "f").call(this);
|
|
482
486
|
this.pendingIdsSet.clear();
|
|
483
487
|
this.pendingAndIgnored.pendingForUpdate.forEach((e => {
|
|
484
488
|
this.pendingIdsSet.add(e.id);
|
|
@@ -490,35 +494,35 @@ const K = class {
|
|
|
490
494
|
}
|
|
491
495
|
async componentWillLoad() {
|
|
492
496
|
var e;
|
|
493
|
-
|
|
497
|
+
p(this, h, await r.getComponentStrings(this.el), "f");
|
|
494
498
|
// Initiate "actions" combo box filter
|
|
495
|
-
|
|
496
|
-
caption:
|
|
499
|
+
p(this, u, [ {
|
|
500
|
+
caption: d(this, h, "f").actions.allActions,
|
|
497
501
|
value: "all-actions"
|
|
498
502
|
}, {
|
|
499
|
-
caption:
|
|
503
|
+
caption: d(this, h, "f").actions.insert,
|
|
500
504
|
value: "inserted"
|
|
501
505
|
}, {
|
|
502
|
-
caption:
|
|
506
|
+
caption: d(this, h, "f").actions.modify,
|
|
503
507
|
value: "modified"
|
|
504
508
|
}, {
|
|
505
|
-
caption:
|
|
509
|
+
caption: d(this, h, "f").actions.modifyWithConflicts,
|
|
506
510
|
value: "modified-with-conflicts"
|
|
507
511
|
}, {
|
|
508
|
-
caption:
|
|
512
|
+
caption: d(this, h, "f").actions.delete,
|
|
509
513
|
value: "deleted"
|
|
510
514
|
} ], "f");
|
|
511
515
|
// Set type initial value
|
|
512
516
|
this.selectedType = (e = this.types[0]) === null || e === void 0 ? void 0 : e.id;
|
|
513
|
-
this.typesComboBoxModel =
|
|
517
|
+
this.typesComboBoxModel = mapObjectTypeToComboBoxItemModel(this.types);
|
|
514
518
|
}
|
|
515
519
|
async componentDidLoad() {
|
|
516
|
-
await
|
|
520
|
+
await d(this, C, "f").call(this, true);
|
|
517
521
|
}
|
|
518
522
|
/**
|
|
519
523
|
* Used by the host to instruct the component to force a data reload in the grids.
|
|
520
524
|
*/ async reload() {
|
|
521
|
-
|
|
525
|
+
d(this, C, "f").call(this, true);
|
|
522
526
|
}
|
|
523
527
|
render() {
|
|
524
528
|
const e = true;
|
|
@@ -527,7 +531,7 @@ const K = class {
|
|
|
527
531
|
return n(t, {
|
|
528
532
|
class: "widget"
|
|
529
533
|
}, n("ch-theme", {
|
|
530
|
-
model:
|
|
534
|
+
model: O
|
|
531
535
|
}), n("section", {
|
|
532
536
|
class: "section"
|
|
533
537
|
}, n("header", {
|
|
@@ -537,34 +541,34 @@ const K = class {
|
|
|
537
541
|
class: "header__detail header__detail-1"
|
|
538
542
|
}, n("p", {
|
|
539
543
|
class: "detail__heading-genexus-server subtitle-semi-bold-s"
|
|
540
|
-
},
|
|
544
|
+
}, d(this, h, "f").commitDetail.title), n("div", {
|
|
541
545
|
// genexus server
|
|
542
546
|
class: "detail__genexus-server field field-block"
|
|
543
547
|
}, n("span", {
|
|
544
|
-
class:
|
|
545
|
-
},
|
|
548
|
+
class: $
|
|
549
|
+
}, d(this, h, "f").commitDetail.genexusServer), n("button", {
|
|
546
550
|
class: "detail__link body-regular-s",
|
|
547
551
|
onClick: this.openServerCallback
|
|
548
552
|
}, this.updateFrom ? this.updateFrom.serverUrl : "")), n("div", {
|
|
549
553
|
// knowledge base
|
|
550
554
|
class: "detail__knowledge-base field field-block"
|
|
551
555
|
}, n("span", {
|
|
552
|
-
class:
|
|
553
|
-
},
|
|
556
|
+
class: $
|
|
557
|
+
}, d(this, h, "f").commitDetail.knowledgeBase), n("p", {
|
|
554
558
|
class: "body-regular-s"
|
|
555
559
|
}, this.updateFrom ? this.updateFrom.kbName : "")), n("div", {
|
|
556
560
|
// version
|
|
557
561
|
class: "detail__version field field-block"
|
|
558
562
|
}, n("span", {
|
|
559
|
-
class:
|
|
560
|
-
},
|
|
563
|
+
class: $
|
|
564
|
+
}, d(this, h, "f").commitDetail.version), n("p", {
|
|
561
565
|
class: "body-regular-s"
|
|
562
566
|
}, this.updateFrom ? this.updateFrom.versionName : "")), n("div", {
|
|
563
567
|
// last full update
|
|
564
568
|
class: "detail__last-full-update field field-block"
|
|
565
569
|
}, n("span", {
|
|
566
|
-
class:
|
|
567
|
-
},
|
|
570
|
+
class: $
|
|
571
|
+
}, d(this, h, "f").commitDetail.lastFullUpdate), n("p", {
|
|
568
572
|
class: "body-regular-s"
|
|
569
573
|
}, l(this.updateFrom.lastFullUpdate))))), n("div", {
|
|
570
574
|
class: "filter-container spacing-body-inline"
|
|
@@ -574,11 +578,11 @@ const K = class {
|
|
|
574
578
|
// search
|
|
575
579
|
class: "input filter__search",
|
|
576
580
|
disabled: i,
|
|
577
|
-
startImgSrc:
|
|
578
|
-
accessibleName:
|
|
579
|
-
placeholder:
|
|
581
|
+
startImgSrc: q,
|
|
582
|
+
accessibleName: d(this, h, "f").filter.searchAccessibleName,
|
|
583
|
+
placeholder: d(this, h, "f").filter.searchPlaceholder,
|
|
580
584
|
type: "search",
|
|
581
|
-
onInput:
|
|
585
|
+
onInput: d(this, z, "f"),
|
|
582
586
|
debounce: o.inputDebounce
|
|
583
587
|
}), n("ch-combo-box-render", {
|
|
584
588
|
// types
|
|
@@ -586,25 +590,25 @@ const K = class {
|
|
|
586
590
|
disabled: i,
|
|
587
591
|
model: this.typesComboBoxModel,
|
|
588
592
|
value: this.selectedType,
|
|
589
|
-
accessibleName:
|
|
590
|
-
placeholder:
|
|
591
|
-
onInput:
|
|
593
|
+
accessibleName: d(this, h, "f").filter.typeAccesibleName,
|
|
594
|
+
placeholder: d(this, h, "f").filter.typePlaceholder,
|
|
595
|
+
onInput: d(this, j, "f")
|
|
592
596
|
}), n("ch-combo-box-render", {
|
|
593
597
|
// actions
|
|
594
598
|
class: "combo-box filter__actions",
|
|
595
599
|
disabled: i,
|
|
596
|
-
model:
|
|
600
|
+
model: d(this, u, "f"),
|
|
597
601
|
value: this.selectedAction,
|
|
598
|
-
onInput:
|
|
599
|
-
accessibleName:
|
|
600
|
-
placeholder:
|
|
602
|
+
onInput: d(this, W, "f"),
|
|
603
|
+
accessibleName: d(this, h, "f").filter.actionAccesibleName,
|
|
604
|
+
placeholder: d(this, h, "f").filter.actionPlaceholder
|
|
601
605
|
}), n("ch-checkbox", {
|
|
602
606
|
// kb properties
|
|
603
607
|
class: "checkbox filter__kb-properties",
|
|
604
|
-
caption:
|
|
605
|
-
checkedValue:
|
|
606
|
-
value:
|
|
607
|
-
onInput:
|
|
608
|
+
caption: d(this, h, "f").filter.kbProperties,
|
|
609
|
+
checkedValue: P,
|
|
610
|
+
value: R,
|
|
611
|
+
onInput: d(this, L, "f"),
|
|
608
612
|
disabled: i
|
|
609
613
|
}), n("div", {
|
|
610
614
|
class: "buttons-spacer filter__buttons"
|
|
@@ -612,16 +616,16 @@ const K = class {
|
|
|
612
616
|
// reload button
|
|
613
617
|
class: "button-secondary button-icon-and-text",
|
|
614
618
|
disabled: i,
|
|
615
|
-
onClick:
|
|
619
|
+
onClick: d(this, b, "f")
|
|
616
620
|
}, n("ch-image", {
|
|
617
621
|
class: "icon-md",
|
|
618
|
-
src:
|
|
619
|
-
}),
|
|
622
|
+
src: B
|
|
623
|
+
}), d(this, h, "f").filter.reload), n("button", {
|
|
620
624
|
// update button
|
|
621
625
|
class: "button-primary button-update",
|
|
622
626
|
disabled: !this.atLeastOneObjectIsChecked || i,
|
|
623
|
-
onClick:
|
|
624
|
-
},
|
|
627
|
+
onClick: d(this, m, "f")
|
|
628
|
+
}, d(this, h, "f").filter.update)))), n("div", {
|
|
625
629
|
class: "main spacing-body"
|
|
626
630
|
}, !this.loading ? n("ch-tabular-grid", {
|
|
627
631
|
class: {
|
|
@@ -632,15 +636,15 @@ const K = class {
|
|
|
632
636
|
},
|
|
633
637
|
keyboardNavigationMode: "focus",
|
|
634
638
|
rowSelectionMode: "multiple",
|
|
635
|
-
onRowMarkingChanged:
|
|
636
|
-
onRowContextMenu:
|
|
637
|
-
ref: e =>
|
|
639
|
+
onRowMarkingChanged: d(this, x, "f"),
|
|
640
|
+
onRowContextMenu: d(this, N, "f").call(this),
|
|
641
|
+
ref: e => p(this, f, e, "f")
|
|
638
642
|
}, n("ch-tabular-grid-columnset", {
|
|
639
643
|
class: "tabular-grid-column-set"
|
|
640
644
|
}, n("ch-tabular-grid-column", {
|
|
641
645
|
class: "tabular-grid-column",
|
|
642
646
|
columnId: "name",
|
|
643
|
-
columnName:
|
|
647
|
+
columnName: d(this, h, "f").objects.name,
|
|
644
648
|
columnType: "rich",
|
|
645
649
|
richRowSelector: e,
|
|
646
650
|
richRowSelectorMode: "mark",
|
|
@@ -649,25 +653,25 @@ const K = class {
|
|
|
649
653
|
}), n("ch-tabular-grid-column", {
|
|
650
654
|
class: "tabular-grid-column",
|
|
651
655
|
columnId: "type",
|
|
652
|
-
columnName:
|
|
656
|
+
columnName: d(this, h, "f").objects.type,
|
|
653
657
|
settingable: false,
|
|
654
658
|
size: "max-content"
|
|
655
659
|
}), n("ch-tabular-grid-column", {
|
|
656
660
|
class: "tabular-grid-column",
|
|
657
661
|
columnId: "description",
|
|
658
|
-
columnName:
|
|
662
|
+
columnName: d(this, h, "f").objects.description,
|
|
659
663
|
settingable: false,
|
|
660
664
|
size: o.tabularGrid.colSize.description
|
|
661
665
|
}), n("ch-tabular-grid-column", {
|
|
662
666
|
class: "tabular-grid-column",
|
|
663
667
|
columnId: "modified-on",
|
|
664
|
-
columnName:
|
|
668
|
+
columnName: d(this, h, "f").objects.modifiedOn,
|
|
665
669
|
settingable: false,
|
|
666
670
|
size: "max-content"
|
|
667
671
|
}), n("ch-tabular-grid-column", {
|
|
668
672
|
class: "tabular-grid-column",
|
|
669
673
|
columnId: "action",
|
|
670
|
-
columnName:
|
|
674
|
+
columnName: d(this, h, "f").objects.action,
|
|
671
675
|
settingable: false,
|
|
672
676
|
size: "max-content"
|
|
673
677
|
}), n("ch-tabular-grid-column", {
|
|
@@ -675,28 +679,28 @@ const K = class {
|
|
|
675
679
|
// this prevents layout shifts when pills state changes.
|
|
676
680
|
class: "tabular-grid-column",
|
|
677
681
|
columnId: "status",
|
|
678
|
-
columnName:
|
|
682
|
+
columnName: d(this, h, "f").objects.status,
|
|
679
683
|
settingable: false,
|
|
680
684
|
size: "100px"
|
|
681
685
|
})), !a ? [ n("ch-tabular-grid-rowset", {
|
|
682
686
|
class: "tabular-grid-rowset"
|
|
683
687
|
}, n("ch-tabular-grid-rowset-legend", {
|
|
684
688
|
class: "tabular-grid-rowset-legend"
|
|
685
|
-
},
|
|
689
|
+
}, d(this, h, "f").objects.pending), d(this, k, "f").call(this, "pending")), n("ch-tabular-grid-rowset", {
|
|
686
690
|
class: "tabular-grid-rowset"
|
|
687
691
|
}, n("ch-tabular-grid-rowset-legend", {
|
|
688
692
|
class: "tabular-grid-rowset-legend"
|
|
689
|
-
},
|
|
693
|
+
}, d(this, h, "f").objects.ignored), d(this, k, "f").call(this, "ignored")) ] : null, n("ch-tabular-grid-rowset", {
|
|
690
694
|
class: "tabular-grid-rowset"
|
|
691
695
|
}, a && n("ch-tabular-grid-rowset-empty", null, n("gx-ide-empty-state", {
|
|
692
696
|
class: "empty-state",
|
|
693
697
|
isAnimated: true,
|
|
694
|
-
stateIconSrc:
|
|
698
|
+
stateIconSrc: U,
|
|
695
699
|
stateTitle: "No object matched your filter"
|
|
696
700
|
})))) : n("gx-ide-loader", {
|
|
697
|
-
cancelLabel:
|
|
698
|
-
loaderTitle:
|
|
699
|
-
description:
|
|
701
|
+
cancelLabel: d(this, h, "f").loader.cancelLabel,
|
|
702
|
+
loaderTitle: d(this, h, "f").loader.title,
|
|
703
|
+
description: d(this, h, "f").loader.description,
|
|
700
704
|
show: true,
|
|
701
705
|
class: "loader"
|
|
702
706
|
}))));
|
|
@@ -716,13 +720,13 @@ const K = class {
|
|
|
716
720
|
}
|
|
717
721
|
};
|
|
718
722
|
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
723
|
+
h = new WeakMap, u = new WeakMap, g = new WeakMap, f = new WeakMap, m = new WeakMap,
|
|
724
|
+
b = new WeakMap, _ = new WeakMap, v = new WeakMap, w = new WeakMap, y = new WeakMap,
|
|
725
|
+
k = new WeakMap, x = new WeakMap, M = new WeakMap, z = new WeakMap, W = new WeakMap,
|
|
726
|
+
j = new WeakMap, T = new WeakMap, C = new WeakMap, I = new WeakMap, S = new WeakMap,
|
|
727
|
+
N = new WeakMap, E = new WeakMap, A = new WeakMap, L = new WeakMap;
|
|
724
728
|
|
|
725
|
-
|
|
729
|
+
J.style = c;
|
|
726
730
|
|
|
727
|
-
export {
|
|
728
|
-
//# sourceMappingURL=p-
|
|
731
|
+
export { J as gx_ide_team_dev_update };
|
|
732
|
+
//# sourceMappingURL=p-42f37527.entry.js.map
|