@genexus/genexus-ide-ui 0.0.74 → 0.0.75
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/ch-next-data-modeling-render.cjs.entry.js +2 -1
- package/dist/cjs/ch-shortcuts.cjs.entry.js +42 -18
- package/dist/components/ch-next-data-modeling-render.js +2 -1
- package/dist/components/ch-shortcuts.js +42 -18
- package/dist/esm/ch-next-data-modeling-render.entry.js +2 -1
- package/dist/esm/ch-shortcuts.entry.js +42 -18
- package/dist/genexus-ide-ui/genexus-ide-ui.esm.js +1 -1
- package/dist/genexus-ide-ui/p-2e7d1eef.entry.js +1 -0
- package/dist/genexus-ide-ui/p-6e9794d0.entry.js +1 -0
- package/package.json +1 -1
- package/dist/genexus-ide-ui/p-0261c202.entry.js +0 -1
- package/dist/genexus-ide-ui/p-b417c899.entry.js +0 -1
|
@@ -104,6 +104,7 @@ const NextDataModeling = class {
|
|
|
104
104
|
this.updateReferences(event, true);
|
|
105
105
|
};
|
|
106
106
|
this.addEntity = (collection) => (event) => {
|
|
107
|
+
this.entityWasAdded = "adding";
|
|
107
108
|
const newItem = {
|
|
108
109
|
Name: event.detail.name,
|
|
109
110
|
Level: this.createGxCollectionCallback()
|
|
@@ -111,7 +112,6 @@ const NextDataModeling = class {
|
|
|
111
112
|
collection.push(newItem);
|
|
112
113
|
this.addEntityItem(newItem.Level, event.detail.level[0]);
|
|
113
114
|
this.updateReferences(event, true);
|
|
114
|
-
this.entityWasAdded = "adding";
|
|
115
115
|
};
|
|
116
116
|
this.editEntity = (entityItem) => (event) => {
|
|
117
117
|
entityItem.Name = event.detail.name;
|
|
@@ -126,6 +126,7 @@ const NextDataModeling = class {
|
|
|
126
126
|
this.editedControl.hideWaitingMode();
|
|
127
127
|
if (this.entityWasAdded === "adding") {
|
|
128
128
|
this.entityWasAdded = "finished";
|
|
129
|
+
this.processEntityAdding();
|
|
129
130
|
}
|
|
130
131
|
}
|
|
131
132
|
addEntityItem(collection, item) {
|
|
@@ -5,12 +5,13 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
const index = require('./index-f9bb1815.js');
|
|
6
6
|
const helpers = require('./helpers-291cb1cb.js');
|
|
7
7
|
|
|
8
|
-
const
|
|
8
|
+
const SHORTCUTS = new Map();
|
|
9
|
+
let LATEST_SHORTCUT;
|
|
9
10
|
function loadShortcuts(name, root, shortcuts) {
|
|
10
11
|
shortcuts.forEach(shortcut => {
|
|
11
12
|
const keyShortcuts = parseKeyShortcuts(shortcut.keyShortcuts);
|
|
12
13
|
keyShortcuts.forEach(keyShortcut => {
|
|
13
|
-
|
|
14
|
+
SHORTCUTS.set(normalize(keyShortcut.ctrl, keyShortcut.alt, keyShortcut.shift, keyShortcut.meta, keyShortcut.key), {
|
|
14
15
|
name,
|
|
15
16
|
root,
|
|
16
17
|
shortcut
|
|
@@ -21,16 +22,16 @@ function loadShortcuts(name, root, shortcuts) {
|
|
|
21
22
|
}
|
|
22
23
|
function unloadShortcuts(name) {
|
|
23
24
|
const removeKeyShortcuts = [];
|
|
24
|
-
|
|
25
|
+
SHORTCUTS.forEach((shortcutMap, key) => {
|
|
25
26
|
if (shortcutMap.name === name) {
|
|
26
27
|
removeKeyShortcuts.push(key);
|
|
27
28
|
}
|
|
28
29
|
});
|
|
29
|
-
removeKeyShortcuts.forEach(key =>
|
|
30
|
+
removeKeyShortcuts.forEach(key => SHORTCUTS.delete(key));
|
|
30
31
|
removeListener();
|
|
31
32
|
}
|
|
32
33
|
function getShortcuts() {
|
|
33
|
-
return Array.from(
|
|
34
|
+
return Array.from(SHORTCUTS.values())
|
|
34
35
|
.filter(shortcutMap => {
|
|
35
36
|
var _a;
|
|
36
37
|
return !((_a = shortcutMap.shortcut.conditions) === null || _a === void 0 ? void 0 : _a.focusInclude);
|
|
@@ -42,17 +43,24 @@ function getShortcuts() {
|
|
|
42
43
|
}));
|
|
43
44
|
}
|
|
44
45
|
function addListener() {
|
|
45
|
-
if (
|
|
46
|
+
if (SHORTCUTS.size > 0) {
|
|
46
47
|
window.addEventListener("keydown", keydownHandler, { capture: true });
|
|
47
48
|
}
|
|
48
49
|
}
|
|
49
50
|
function removeListener() {
|
|
50
|
-
if (
|
|
51
|
+
if (SHORTCUTS.size === 0) {
|
|
51
52
|
window.removeEventListener("keydown", keydownHandler, { capture: true });
|
|
52
53
|
}
|
|
53
54
|
}
|
|
54
55
|
function keydownHandler(eventInfo) {
|
|
55
|
-
|
|
56
|
+
var _a;
|
|
57
|
+
if (!eventInfo.repeat ||
|
|
58
|
+
(eventInfo.repeat && ((_a = LATEST_SHORTCUT === null || LATEST_SHORTCUT === void 0 ? void 0 : LATEST_SHORTCUT.shortcut.conditions) === null || _a === void 0 ? void 0 : _a.allowRepeat))) {
|
|
59
|
+
LATEST_SHORTCUT = triggerShortcut(eventInfo);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
function triggerShortcut(eventInfo) {
|
|
63
|
+
const shortcutMap = SHORTCUTS.get(normalize(eventInfo.ctrlKey, eventInfo.altKey, eventInfo.shiftKey, eventInfo.metaKey, eventInfo.key));
|
|
56
64
|
if (shortcutMap && conditions(shortcutMap)) {
|
|
57
65
|
const element = querySelectorPlus(shortcutMap.shortcut.selector, shortcutMap.root);
|
|
58
66
|
if (element) {
|
|
@@ -68,19 +76,35 @@ function keydownHandler(eventInfo) {
|
|
|
68
76
|
}
|
|
69
77
|
}
|
|
70
78
|
}
|
|
79
|
+
return shortcutMap;
|
|
71
80
|
}
|
|
72
81
|
function parseKeyShortcuts(value = "") {
|
|
73
82
|
return value.split(" ").map(item => {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
83
|
+
return item.split("+").reduce((keyShortcut, key) => {
|
|
84
|
+
switch (key.toLowerCase()) {
|
|
85
|
+
case "ctrl":
|
|
86
|
+
keyShortcut.ctrl = true;
|
|
87
|
+
break;
|
|
88
|
+
case "alt":
|
|
89
|
+
keyShortcut.alt = true;
|
|
90
|
+
break;
|
|
91
|
+
case "shift":
|
|
92
|
+
keyShortcut.shift = true;
|
|
93
|
+
break;
|
|
94
|
+
case "meta":
|
|
95
|
+
keyShortcut.meta = true;
|
|
96
|
+
break;
|
|
97
|
+
default:
|
|
98
|
+
keyShortcut.key = key;
|
|
99
|
+
}
|
|
100
|
+
return keyShortcut;
|
|
101
|
+
}, {
|
|
102
|
+
ctrl: false,
|
|
103
|
+
alt: false,
|
|
104
|
+
shift: false,
|
|
105
|
+
meta: false,
|
|
106
|
+
key: ""
|
|
107
|
+
});
|
|
84
108
|
});
|
|
85
109
|
}
|
|
86
110
|
function normalize(ctrl, alt, shift, meta, key) {
|
|
@@ -104,6 +104,7 @@ const NextDataModeling = /*@__PURE__*/ proxyCustomElement(class extends HTMLElem
|
|
|
104
104
|
this.updateReferences(event, true);
|
|
105
105
|
};
|
|
106
106
|
this.addEntity = (collection) => (event) => {
|
|
107
|
+
this.entityWasAdded = "adding";
|
|
107
108
|
const newItem = {
|
|
108
109
|
Name: event.detail.name,
|
|
109
110
|
Level: this.createGxCollectionCallback()
|
|
@@ -111,7 +112,6 @@ const NextDataModeling = /*@__PURE__*/ proxyCustomElement(class extends HTMLElem
|
|
|
111
112
|
collection.push(newItem);
|
|
112
113
|
this.addEntityItem(newItem.Level, event.detail.level[0]);
|
|
113
114
|
this.updateReferences(event, true);
|
|
114
|
-
this.entityWasAdded = "adding";
|
|
115
115
|
};
|
|
116
116
|
this.editEntity = (entityItem) => (event) => {
|
|
117
117
|
entityItem.Name = event.detail.name;
|
|
@@ -126,6 +126,7 @@ const NextDataModeling = /*@__PURE__*/ proxyCustomElement(class extends HTMLElem
|
|
|
126
126
|
this.editedControl.hideWaitingMode();
|
|
127
127
|
if (this.entityWasAdded === "adding") {
|
|
128
128
|
this.entityWasAdded = "finished";
|
|
129
|
+
this.processEntityAdding();
|
|
129
130
|
}
|
|
130
131
|
}
|
|
131
132
|
addEntityItem(collection, item) {
|
|
@@ -3,12 +3,13 @@ import { f as focusComposedPath } from './helpers.js';
|
|
|
3
3
|
import { d as defineCustomElement$3 } from './ch-window2.js';
|
|
4
4
|
import { d as defineCustomElement$2 } from './ch-window-close2.js';
|
|
5
5
|
|
|
6
|
-
const
|
|
6
|
+
const SHORTCUTS = new Map();
|
|
7
|
+
let LATEST_SHORTCUT;
|
|
7
8
|
function loadShortcuts(name, root, shortcuts) {
|
|
8
9
|
shortcuts.forEach(shortcut => {
|
|
9
10
|
const keyShortcuts = parseKeyShortcuts(shortcut.keyShortcuts);
|
|
10
11
|
keyShortcuts.forEach(keyShortcut => {
|
|
11
|
-
|
|
12
|
+
SHORTCUTS.set(normalize(keyShortcut.ctrl, keyShortcut.alt, keyShortcut.shift, keyShortcut.meta, keyShortcut.key), {
|
|
12
13
|
name,
|
|
13
14
|
root,
|
|
14
15
|
shortcut
|
|
@@ -19,16 +20,16 @@ function loadShortcuts(name, root, shortcuts) {
|
|
|
19
20
|
}
|
|
20
21
|
function unloadShortcuts(name) {
|
|
21
22
|
const removeKeyShortcuts = [];
|
|
22
|
-
|
|
23
|
+
SHORTCUTS.forEach((shortcutMap, key) => {
|
|
23
24
|
if (shortcutMap.name === name) {
|
|
24
25
|
removeKeyShortcuts.push(key);
|
|
25
26
|
}
|
|
26
27
|
});
|
|
27
|
-
removeKeyShortcuts.forEach(key =>
|
|
28
|
+
removeKeyShortcuts.forEach(key => SHORTCUTS.delete(key));
|
|
28
29
|
removeListener();
|
|
29
30
|
}
|
|
30
31
|
function getShortcuts() {
|
|
31
|
-
return Array.from(
|
|
32
|
+
return Array.from(SHORTCUTS.values())
|
|
32
33
|
.filter(shortcutMap => {
|
|
33
34
|
var _a;
|
|
34
35
|
return !((_a = shortcutMap.shortcut.conditions) === null || _a === void 0 ? void 0 : _a.focusInclude);
|
|
@@ -40,17 +41,24 @@ function getShortcuts() {
|
|
|
40
41
|
}));
|
|
41
42
|
}
|
|
42
43
|
function addListener() {
|
|
43
|
-
if (
|
|
44
|
+
if (SHORTCUTS.size > 0) {
|
|
44
45
|
window.addEventListener("keydown", keydownHandler, { capture: true });
|
|
45
46
|
}
|
|
46
47
|
}
|
|
47
48
|
function removeListener() {
|
|
48
|
-
if (
|
|
49
|
+
if (SHORTCUTS.size === 0) {
|
|
49
50
|
window.removeEventListener("keydown", keydownHandler, { capture: true });
|
|
50
51
|
}
|
|
51
52
|
}
|
|
52
53
|
function keydownHandler(eventInfo) {
|
|
53
|
-
|
|
54
|
+
var _a;
|
|
55
|
+
if (!eventInfo.repeat ||
|
|
56
|
+
(eventInfo.repeat && ((_a = LATEST_SHORTCUT === null || LATEST_SHORTCUT === void 0 ? void 0 : LATEST_SHORTCUT.shortcut.conditions) === null || _a === void 0 ? void 0 : _a.allowRepeat))) {
|
|
57
|
+
LATEST_SHORTCUT = triggerShortcut(eventInfo);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
function triggerShortcut(eventInfo) {
|
|
61
|
+
const shortcutMap = SHORTCUTS.get(normalize(eventInfo.ctrlKey, eventInfo.altKey, eventInfo.shiftKey, eventInfo.metaKey, eventInfo.key));
|
|
54
62
|
if (shortcutMap && conditions(shortcutMap)) {
|
|
55
63
|
const element = querySelectorPlus(shortcutMap.shortcut.selector, shortcutMap.root);
|
|
56
64
|
if (element) {
|
|
@@ -66,19 +74,35 @@ function keydownHandler(eventInfo) {
|
|
|
66
74
|
}
|
|
67
75
|
}
|
|
68
76
|
}
|
|
77
|
+
return shortcutMap;
|
|
69
78
|
}
|
|
70
79
|
function parseKeyShortcuts(value = "") {
|
|
71
80
|
return value.split(" ").map(item => {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
81
|
+
return item.split("+").reduce((keyShortcut, key) => {
|
|
82
|
+
switch (key.toLowerCase()) {
|
|
83
|
+
case "ctrl":
|
|
84
|
+
keyShortcut.ctrl = true;
|
|
85
|
+
break;
|
|
86
|
+
case "alt":
|
|
87
|
+
keyShortcut.alt = true;
|
|
88
|
+
break;
|
|
89
|
+
case "shift":
|
|
90
|
+
keyShortcut.shift = true;
|
|
91
|
+
break;
|
|
92
|
+
case "meta":
|
|
93
|
+
keyShortcut.meta = true;
|
|
94
|
+
break;
|
|
95
|
+
default:
|
|
96
|
+
keyShortcut.key = key;
|
|
97
|
+
}
|
|
98
|
+
return keyShortcut;
|
|
99
|
+
}, {
|
|
100
|
+
ctrl: false,
|
|
101
|
+
alt: false,
|
|
102
|
+
shift: false,
|
|
103
|
+
meta: false,
|
|
104
|
+
key: ""
|
|
105
|
+
});
|
|
82
106
|
});
|
|
83
107
|
}
|
|
84
108
|
function normalize(ctrl, alt, shift, meta, key) {
|
|
@@ -100,6 +100,7 @@ const NextDataModeling = class {
|
|
|
100
100
|
this.updateReferences(event, true);
|
|
101
101
|
};
|
|
102
102
|
this.addEntity = (collection) => (event) => {
|
|
103
|
+
this.entityWasAdded = "adding";
|
|
103
104
|
const newItem = {
|
|
104
105
|
Name: event.detail.name,
|
|
105
106
|
Level: this.createGxCollectionCallback()
|
|
@@ -107,7 +108,6 @@ const NextDataModeling = class {
|
|
|
107
108
|
collection.push(newItem);
|
|
108
109
|
this.addEntityItem(newItem.Level, event.detail.level[0]);
|
|
109
110
|
this.updateReferences(event, true);
|
|
110
|
-
this.entityWasAdded = "adding";
|
|
111
111
|
};
|
|
112
112
|
this.editEntity = (entityItem) => (event) => {
|
|
113
113
|
entityItem.Name = event.detail.name;
|
|
@@ -122,6 +122,7 @@ const NextDataModeling = class {
|
|
|
122
122
|
this.editedControl.hideWaitingMode();
|
|
123
123
|
if (this.entityWasAdded === "adding") {
|
|
124
124
|
this.entityWasAdded = "finished";
|
|
125
|
+
this.processEntityAdding();
|
|
125
126
|
}
|
|
126
127
|
}
|
|
127
128
|
addEntityItem(collection, item) {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { r as registerInstance, h, H as Host, g as getElement } from './index-0aa3977d.js';
|
|
2
2
|
import { f as focusComposedPath } from './helpers-1ecd5e26.js';
|
|
3
3
|
|
|
4
|
-
const
|
|
4
|
+
const SHORTCUTS = new Map();
|
|
5
|
+
let LATEST_SHORTCUT;
|
|
5
6
|
function loadShortcuts(name, root, shortcuts) {
|
|
6
7
|
shortcuts.forEach(shortcut => {
|
|
7
8
|
const keyShortcuts = parseKeyShortcuts(shortcut.keyShortcuts);
|
|
8
9
|
keyShortcuts.forEach(keyShortcut => {
|
|
9
|
-
|
|
10
|
+
SHORTCUTS.set(normalize(keyShortcut.ctrl, keyShortcut.alt, keyShortcut.shift, keyShortcut.meta, keyShortcut.key), {
|
|
10
11
|
name,
|
|
11
12
|
root,
|
|
12
13
|
shortcut
|
|
@@ -17,16 +18,16 @@ function loadShortcuts(name, root, shortcuts) {
|
|
|
17
18
|
}
|
|
18
19
|
function unloadShortcuts(name) {
|
|
19
20
|
const removeKeyShortcuts = [];
|
|
20
|
-
|
|
21
|
+
SHORTCUTS.forEach((shortcutMap, key) => {
|
|
21
22
|
if (shortcutMap.name === name) {
|
|
22
23
|
removeKeyShortcuts.push(key);
|
|
23
24
|
}
|
|
24
25
|
});
|
|
25
|
-
removeKeyShortcuts.forEach(key =>
|
|
26
|
+
removeKeyShortcuts.forEach(key => SHORTCUTS.delete(key));
|
|
26
27
|
removeListener();
|
|
27
28
|
}
|
|
28
29
|
function getShortcuts() {
|
|
29
|
-
return Array.from(
|
|
30
|
+
return Array.from(SHORTCUTS.values())
|
|
30
31
|
.filter(shortcutMap => {
|
|
31
32
|
var _a;
|
|
32
33
|
return !((_a = shortcutMap.shortcut.conditions) === null || _a === void 0 ? void 0 : _a.focusInclude);
|
|
@@ -38,17 +39,24 @@ function getShortcuts() {
|
|
|
38
39
|
}));
|
|
39
40
|
}
|
|
40
41
|
function addListener() {
|
|
41
|
-
if (
|
|
42
|
+
if (SHORTCUTS.size > 0) {
|
|
42
43
|
window.addEventListener("keydown", keydownHandler, { capture: true });
|
|
43
44
|
}
|
|
44
45
|
}
|
|
45
46
|
function removeListener() {
|
|
46
|
-
if (
|
|
47
|
+
if (SHORTCUTS.size === 0) {
|
|
47
48
|
window.removeEventListener("keydown", keydownHandler, { capture: true });
|
|
48
49
|
}
|
|
49
50
|
}
|
|
50
51
|
function keydownHandler(eventInfo) {
|
|
51
|
-
|
|
52
|
+
var _a;
|
|
53
|
+
if (!eventInfo.repeat ||
|
|
54
|
+
(eventInfo.repeat && ((_a = LATEST_SHORTCUT === null || LATEST_SHORTCUT === void 0 ? void 0 : LATEST_SHORTCUT.shortcut.conditions) === null || _a === void 0 ? void 0 : _a.allowRepeat))) {
|
|
55
|
+
LATEST_SHORTCUT = triggerShortcut(eventInfo);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
function triggerShortcut(eventInfo) {
|
|
59
|
+
const shortcutMap = SHORTCUTS.get(normalize(eventInfo.ctrlKey, eventInfo.altKey, eventInfo.shiftKey, eventInfo.metaKey, eventInfo.key));
|
|
52
60
|
if (shortcutMap && conditions(shortcutMap)) {
|
|
53
61
|
const element = querySelectorPlus(shortcutMap.shortcut.selector, shortcutMap.root);
|
|
54
62
|
if (element) {
|
|
@@ -64,19 +72,35 @@ function keydownHandler(eventInfo) {
|
|
|
64
72
|
}
|
|
65
73
|
}
|
|
66
74
|
}
|
|
75
|
+
return shortcutMap;
|
|
67
76
|
}
|
|
68
77
|
function parseKeyShortcuts(value = "") {
|
|
69
78
|
return value.split(" ").map(item => {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
79
|
+
return item.split("+").reduce((keyShortcut, key) => {
|
|
80
|
+
switch (key.toLowerCase()) {
|
|
81
|
+
case "ctrl":
|
|
82
|
+
keyShortcut.ctrl = true;
|
|
83
|
+
break;
|
|
84
|
+
case "alt":
|
|
85
|
+
keyShortcut.alt = true;
|
|
86
|
+
break;
|
|
87
|
+
case "shift":
|
|
88
|
+
keyShortcut.shift = true;
|
|
89
|
+
break;
|
|
90
|
+
case "meta":
|
|
91
|
+
keyShortcut.meta = true;
|
|
92
|
+
break;
|
|
93
|
+
default:
|
|
94
|
+
keyShortcut.key = key;
|
|
95
|
+
}
|
|
96
|
+
return keyShortcut;
|
|
97
|
+
}, {
|
|
98
|
+
ctrl: false,
|
|
99
|
+
alt: false,
|
|
100
|
+
shift: false,
|
|
101
|
+
meta: false,
|
|
102
|
+
key: ""
|
|
103
|
+
});
|
|
80
104
|
});
|
|
81
105
|
}
|
|
82
106
|
function normalize(ctrl, alt, shift, meta, key) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as t}from"./p-0906fb46.js";export{s as setNonce}from"./p-0906fb46.js";import{g as i}from"./p-f59e1e26.js";(()=>{const t=import.meta.url,i={};return""!==t&&(i.resourcesUrl=new URL(".",t).href),e(i)})().then((e=>(i(),t(JSON.parse('[["p-3d410e77",[[1,"gx-ide-team-dev-update",{"displayTitle":[4,"display-title"],"confirmCallback":[16],"gridContextMenuCallback":[16],"loadCallback":[16],"objectsScopeCallback":[16],"openServerCallback":[16],"pendingItemsCheckedCallback":[16],"revisionScopeCallback":[16],"objectsContextMenuCallback":[16],"selectCallback":[16],"types":[16],"updateCallback":[16],"updateFrom":[16],"isLoading":[32],"objectScopeText":[32],"openTab":[32],"revisionScopeText":[32],"showFilter":[32],"updateData":[32],"updateResultData":[32],"reload":[64]}]]],["p-440fe7b3",[[1,"gx-ide-team-dev-commit",{"displayTitle":[4,"display-title"],"changeSet":[16],"types":[16],"folders":[16],"categories":[16],"getRecentCommentCallback":[16],"loadCallback":[16],"commitCallback":[16],"selectCallback":[16],"pendingItemsCheckedCallback":[16],"objectsContextMenuCallback":[16],"filtersHidden":[32],"comment":[32],"pendingCommits":[32],"ignoredObjects":[32],"commitButtonEnabled":[32],"filterHasConditions":[32],"reload":[64]}]]],["p-cb07fc99",[[1,"gx-ide-ww-images",{"displayTitle":[4,"display-title"],"secondaryFilter":[4,"secondary-filter"],"categories":[16],"densities":[16],"defaultCategory":[1,"default-category"],"defaultModule":[16],"defaultType":[1,"default-type"],"filterModules":[16],"languages":[16],"layers":[16],"contextMenuCallback":[16],"deleteSelectionCallback":[16],"loadCallback":[16],"loadImageItemsCallback":[16],"newObjectCallback":[16],"openSelectionCallback":[16],"selectModuleCallback":[16],"selectionObjectChangedCallback":[16],"shadow":[4],"styles":[16],"types":[16],"filtersHidden":[32],"filterAfterType":[32],"filterModified":[32],"images":[32],"filteredImages":[32],"imagesSelectedItems":[32],"selectedObjectsIds":[32],"filterImagesInputValue":[32],"validate":[64],"reload":[64]},[[1,"keydown","keyDownHandler"]]]]],["p-b34d258d",[[1,"gx-ide-bpm-app-declaration",{"displayTitle":[4,"display-title"],"application":[1040],"suggestApplicationsCallback":[16],"selectApplicationCallback":[16],"selectMappingCallback":[16],"confirmCallback":[16],"cancelCallback":[16],"getDataMappingCallback":[16],"suggestedApplications":[32]}]]],["p-8c5919ec",[[1,"gx-ide-object-selector",{"displayTitle":[4,"display-title"],"multiSelection":[4,"multi-selection"],"patternValue":[1,"pattern-value"],"types":[16],"defaultType":[1,"default-type"],"categories":[16],"defaultCategory":[1,"default-category"],"defaultModule":[16],"selectModuleCallback":[16],"cancelCallback":[16],"loadCallback":[16],"newObjectCallback":[16],"openSelectionCallback":[16],"filterAfterType":[32],"filterModified":[32],"objects":[32],"selectedObjectsIds":[32],"validate":[64]}]]],["p-e13a299b",[[1,"gx-ide-kb-manager-import",{"displayTitle":[4,"display-title"],"loader":[4],"selectedFile":[1040],"optionsCallback":[16],"importCallback":[16],"loadCallback":[16],"cancelCallback":[16],"statusMinimal":[4,"status-minimal"],"objectContextMenuCallback":[16],"checkedObjectsIds":[32],"noObjects":[32],"showHiddenImportsMessage":[32],"statusInfo":[32],"objectsTreeState":[32],"importStatusMessage":[32],"someStatusVisible":[32],"noImport":[32],"importTreeState":[32],"importingIsInProcess":[32],"addResultItem":[64]}]]],["p-baffd9b1",[[1,"gx-ide-references",{"displayTitle":[4,"display-title"],"selectedObject":[1040],"selectorSourceCallback":[16],"loadReferencesCallback":[16],"openObjectCallback":[16],"openSelectorDialogCallback":[16],"selectReferenceCallback":[16],"referencedByTreeData":[32],"referencesToTreeData":[32],"barHidden":[32],"objectsSuggestions":[32],"referencedBy":[32],"referencesTo":[32]}]]],["p-d664fa18",[[0,"gx-ide-kb-manager-export",{"displayTitle":[4,"display-title"],"fileName":[1,"file-name"],"loader":[4],"kbPropertiesTypes":[16],"objectTypes":[16],"exportFileDirectoryCallback":[16],"optionsCallback":[16],"addKBPropertiesCallback":[16],"addReferencesCallback":[16],"addObjectsCallback":[16],"exportCallback":[16],"cancelCallback":[16],"exportAllIsChecked":[32],"addKbPropertiesIsChecked":[32],"checkedObjectsIds":[32],"noObjects":[32],"treeModel":[32],"exportingIsInProcess":[32]}]]],["p-13085dd7",[[1,"gx-ide-new-environment",{"displayTitle":[4,"display-title"],"cancelCallback":[16],"createCallback":[16],"dataStores":[1040],"disableAdvanced":[4,"disable-advanced"],"environmentName":[1025,"environment-name"],"frontEnds":[1040],"getEnvironmentNameCallback":[16],"getFrontEndsCallback":[16],"getDataSourcesCallback":[16],"isAdvanced":[4,"is-advanced"],"languages":[16],"runtimes":[16],"setAsTarget":[4,"set-as-target"]}]]],["p-11fa1c83",[[1,"gx-ide-new-kb",{"displayTitle":[4,"display-title"],"defaultDataSources":[1040],"frontEnds":[1040],"isAdvanced":[4,"is-advanced"],"kbLocation":[1025,"kb-location"],"selectLocationCallback":[16],"kbName":[1,"kb-name"],"prototypingEnvironments":[16],"prototypingTargets":[16],"userInterfaceLanguages":[16],"authenticationTypes":[16],"collations":[16],"createDataFilesInKBFolder":[4,"create-data-files-in-k-b-folder"],"databaseName":[1,"database-name"],"password":[1],"savePassword":[4,"save-password"],"serverNames":[16],"userName":[1,"user-name"],"test":[1],"createCallback":[16],"cancelCallback":[16],"getDataSourcesCallback":[16],"getFrontEndsCallback":[16],"createDataInKbDisabled":[32],"userNameVisible":[32],"passwordVisible":[32],"savePasswordVisible":[32]}]]],["p-9a15e22e",[[1,"gx-ide-team-dev-update-partial-selection",{"displayTitle":[4,"display-title"],"addCallback":[16],"cancelCallback":[16],"confirmCallback":[16],"selection":[1040],"selectedObjectsIds":[32],"validate":[64]}]]],["p-d9e0d054",[[0,"gx-grid-chameleon",{"grid":[16],"gridTimestamp":[1026,"grid-timestamp"],"state":[16]},[[0,"selectionChanged","selectionChangedHandler"],[0,"rowClicked","cellClickedHandler"],[0,"pageNavigationRequested","navigateClickedHandler"],[0,"refreshClicked","refreshClickedHandler"],[0,"columnHiddenChanged","columnHiddenChangedHandler"],[0,"columnSizeChanging","columnSizeChangedHandler"],[0,"columnSizeChanged","columnSizeChangedHandler"],[0,"columnFreezeChanged","columnFreezeChangedHandler"],[0,"columnSortChanged","columnSortChangedHandler"],[0,"columnOrderChanged","columnOrderChangedHandler"],[0,"columnSettingsChanged","columnFilterChangedHandler"]]]]],["p-abfa88ed",[[1,"gx-ide-create-kb-from-server",{"displayTitle":[4,"display-title"],"connectCallback":[16],"createKBCallback":[16],"enableCustomServer":[4,"enable-custom-server"],"kbName":[1,"kb-name"],"password":[1],"serverUrls":[16],"userName":[1,"user-name"],"selectionKbDisabled":[32],"kbs":[32],"kbSearchText":[32]}]]],["p-d2aca59f",[[1,"gx-ide-new-object",{"displayTitle":[4,"display-title"],"shadow":[4],"typeCategories":[16],"parent":[16],"defaultParent":[16],"selectModuleCallback":[16],"validateNameCallback":[16],"createCallback":[16],"cancelCallback":[16],"selectedCategory":[32],"selectedType":[32],"nameIsValid":[32],"name":[32],"description":[32]}]]],["p-3d4722f2",[[1,"gx-ide-share-kb",{"displayTitle":[4,"display-title"],"kbName":[1,"kb-name"],"serverUrls":[16],"enableCustomServer":[4,"enable-custom-server"],"createKBCallback":[16]}]]],["p-ba31a49e",[[1,"gx-ide-team-dev-update-to-revision",{"displayTitle":[4,"display-title"],"cancelCallback":[16],"confirmCallback":[16],"currentRevision":[1,"current-revision"],"validate":[64]}]]],["p-38dacc01",[[1,"gx-ide-ai-assistant",{"messages":[1040],"promptMaxHeight":[1,"prompt-max-height"],"assistantStatus":[1025,"assistant-status"],"focusShortcuts":[16],"userMessageCallback":[16],"promptValue":[1,"prompt-value"],"filter":[4],"userHasTyped":[32],"aIInProgress":[32],"showFilter":[32],"filterValue":[32],"clear":[64],"addMessage":[64]}]]],["p-7e52f6fb",[[1,"gx-ide-template",{"displayTitle":[4,"display-title"]}]]],["p-9ad85778",[[1,"gx-ide-team-dev-select-recent-comment",{"displayTitle":[4,"display-title"],"comments":[16],"confirmCallback":[16],"cancelCallback":[16]}]]],["p-5b83f519",[[1,"gx-ide-test"]]],["p-a2c7dc8a",[[0,"ch-test-action-group",{"buttonLabel":[1,"button-label"],"expandBehavior":[1,"expand-behavior"],"itemsModel":[16],"itemsOverflowBehavior":[1,"items-overflow-behavior"],"openOnFocus":[4,"open-on-focus"],"moreActionsDropdownPosition":[1,"more-actions-dropdown-position"],"separation":[2],"displayedItemsCount":[32]}]]],["p-d3f83278",[[1,"gx-ide-directory-selector",{"accessibilityLabels":[16],"label":[1],"labelPosition":[513,"label-position"],"centerLabel":[1028,"center-label"],"labelWidth":[1,"label-width"],"selectDirectoryCallback":[16],"value":[1025],"icon":[32]}]]],["p-1dd70cd6",[[1,"gx-ide-file-selector",{"accessibilityLabels":[16],"label":[1],"labelPosition":[513,"label-position"],"centerLabel":[1028,"center-label"],"labelWidth":[1,"label-width"],"selectDirectoryCallback":[16],"value":[1025]}]]],["p-1cff8129",[[1,"gxg-filter",{"top":[8],"left":[8],"itemsNodeList":[32]},[[0,"itemClickedEvent","handleItemClickedEvent"]]]]],["p-c00aa636",[[0,"ch-test-dropdown",{"buttonLabel":[1,"button-label"],"expandBehavior":[1,"expand-behavior"],"itemsModel":[16],"openOnFocus":[4,"open-on-focus"],"position":[1],"separation":[2]}]]],["p-c4f18a9c",[[1,"gxg-accordion-item",{"disabled":[516],"editableTitle":[4,"editable-title"],"mode":[513],"itemId":[1,"item-id"],"itemTitle":[1,"item-title"],"itemSubtitle":[1,"item-subtitle"],"titleIcon":[1,"title-icon"],"status":[513],"hasBorder":[4,"has-border"],"nestedAccordion":[32],"minHeight":[32],"accordionMode":[32],"hasSlottedMeta":[32]}]]],["p-6506e89d",[[17,"gxg-drop-down",{"width":[1],"minWidth":[1,"min-width"],"maxWidth":[1,"max-width"],"dropDownHeight":[1,"drop-down-height"],"label":[1],"icon":[1],"showContent":[4,"show-content"],"position":[1],"initialButtonText":[32],"detectClickOutsideDropDown":[32],"detectMouseScroll":[32],"myObserver":[32]}]]],["p-106da9bc",[[1,"gxg-tree-item",{"checkbox":[1028],"checked":[1028],"opened":[4],"toggleCheckboxes":[4,"toggle-checkboxes"],"type":[1],"disabled":[4],"label":[1],"description":[1],"leaf":[1028],"selected":[1028],"icon":[1],"treeModel":[16],"numberOfChildren":[2,"number-of-children"],"hasChildTree":[1028,"has-child-tree"],"indeterminate":[1028],"horizontalLinePaddingLeft":[32],"lastTreeItem":[32],"lastTreeItemOfParentTree":[32],"numberOfVisibleDescendantItems":[32],"time":[32],"lineHeight":[32],"downloading":[32],"reRender":[64],"evaluateCheckboxStatus":[64]}]]],["p-c914cc1f",[[0,"ch-tree-view-render-wrapper",{"checkbox":[4],"checked":[4],"checkDroppableZoneCallback":[16],"cssClass":[1,"css-class"],"dragDisabled":[4,"drag-disabled"],"dropDisabled":[4,"drop-disabled"],"dropItemsCallback":[16],"editableItems":[4,"editable-items"],"filter":[1],"filterList":[16],"filterOptions":[16],"filterType":[1,"filter-type"],"lazyLoadTreeItemsCallback":[16],"modifyItemCaptionCallback":[16],"multiSelection":[4,"multi-selection"],"renderItem":[16],"showLines":[1,"show-lines"],"sortItemsCallback":[16],"toggleCheckboxes":[4,"toggle-checkboxes"],"treeModel":[16],"loadLazyContent":[64],"scrollIntoVisible":[64],"toggleItems":[64],"updateAllItemsProperties":[64],"updateItemsProperties":[64],"updateValidDropZone":[64]},[[0,"checkedItemsChange","updateCheckboxValue"],[0,"itemOpenReference","handleOpenReference"]]]]],["p-4ad2bc69",[[1,"gx-ide-top-bar",{"topBarTitle":[1,"top-bar-title"]}]]],["p-cf341ae3",[[1,"gxg-card",{"elevation":[513],"background":[513],"padding":[513],"minHeight":[1,"min-height"],"height":[1],"maxWidth":[1,"max-width"],"noPaddingTop":[516,"no-padding-top"],"cardTitle":[1,"card-title"],"cardType":[1,"card-type"],"icon":[1],"editableTitle":[4,"editable-title"],"actionable":[4]}]]],["p-0261c202",[[0,"ch-next-data-modeling-render",{"addingModeCommonClass":[1,"adding-mode-common-class"],"captions":[16],"commonClass":[1,"common-class"],"createGxCollectionCallback":[16],"cssClass":[1,"css-class"],"dataModel":[16],"dataModelToEdit":[16],"disabled":[4],"entityAddingModeClass":[1,"entity-adding-mode-class"],"entityClass":[1,"entity-class"],"errorTexts":[16],"fieldAddingModeClass":[1,"field-adding-mode-class"],"fieldClass":[1,"field-class"],"fieldContainerClass":[1,"field-container-class"],"fieldCommonClass":[1,"field-common-class"],"hideLoading":[8,"hide-loading"],"maxAtts":[2,"max-atts"],"readonly":[4],"subFieldClass":[1,"sub-field-class"],"subFieldAddingModeClass":[1,"sub-field-adding-mode-class"],"subFieldContainerClass":[1,"sub-field-container-class"]}]]],["p-fd73e13a",[[1,"ch-test-suggest",{"selectorSourceCallback":[16],"objectsSuggestions":[32]}]]],["p-2bb4d53b",[[1,"gxg-alert",{"active":[516],"activeTime":[1,"active-time"],"position":[1],"title":[1],"type":[1],"fullWidth":[4,"full-width"],"leftRight":[1,"left-right"],"bottom":[1],"width":[1],"silent":[4],"rtl":[32]}]]],["p-d83dea7c",[[1,"gxg-color-picker",{"label":[1032],"value":[1537],"colorRepresentation":[32],"colorInputValue":[32],"colorObject":[32]}]]],["p-7450ea04",[[1,"gxg-demo",{"layerZIndex":[2,"layer-z-index"],"initiateDemo":[4,"initiate-demo"],"modalMessage":[1,"modal-message"],"gxgDemoItems":[32],"numberOfItems":[32],"currentItem":[32],"message":[32],"position":[32],"leftPosition":[32],"rightPosition":[32],"topPosition":[32],"layerVisible":[32],"instructionVisible":[32],"modalVisible":[32],"nextItemClicked":[32],"disableNextButton":[32],"rtl":[32],"currentItemZIndex":[32],"currentItemPosition":[32],"currentItemBoxShadow":[32],"currentItemPointerEvents":[32]}]]],["p-37852e10",[[1,"gxg-drag-box",{"active":[516],"deletable":[4],"padding":[513],"disabled":[4],"title":[1]}]]],["p-b3e90cfc",[[1,"gxg-modal",{"flavor":[1],"padding":[513],"footerJustifyContent":[1,"footer-justify-content"],"modalTitle":[1,"modal-title"],"width":[1],"maxWidth":[1,"max-width"],"visible":[4],"zIndex":[1,"z-index"],"silent":[4],"hideFooter":[4,"hide-footer"],"layerVisible":[32],"modalVisible":[32],"modalTransition":[32],"close":[64]}]]],["p-1fb6b784",[[1,"gxg-options",{"maxWidth":[1,"max-width"],"width":[1],"zIndex":[1,"z-index"],"position":[1],"iconDirection":[1,"icon-direction"],"maxVisibleOptions":[2,"max-visible-options"],"optionsVisible":[32]},[[0,"keyDown","keyDownHandler"],[0,"optionSelected","optionSelectedHandler"]]]]],["p-ec953297",[[1,"gxg-window",{"initialHeight":[1,"initial-height"],"initialWidth":[1,"initial-width"],"minHeight":[1,"min-height"],"minWidth":[1,"min-width"],"maxHeight":[1,"max-height"],"maxWidth":[1,"max-width"],"leftPosition":[1,"left-position"],"topPosition":[1,"top-position"],"windowTitle":[1,"window-title"],"titleIcon":[1,"title-icon"],"displayWindow":[4,"display-window"],"showWindow":[32],"customPosition":[32]}]]],["p-7d1fd88e",[[1,"ch-grid-row-actions",{"showOnRowHover":[516,"show-on-row-hover"],"showOnRowActions":[516,"show-on-row-actions"],"showOnRowContext":[516,"show-on-row-context"],"openRowHover":[64],"openRowActions":[64],"openRowContext":[64],"close":[64]}]]],["p-b417c899",[[1,"ch-shortcuts",{"src":[1],"showKey":[1,"show-key"],"showShortcuts":[32]},[[10,"keydown","windowKeyDownHandler"]]]]],["p-4d42f077",[[4,"ch-tooltip",{"tooltipId":[1,"tooltip-id"],"delay":[2],"position":[1],"hidden":[32]}]]],["p-efd187d0",[[1,"ch-tree-item",{"checkbox":[1028],"checked":[1028],"download":[4],"downloading":[4],"downloaded":[4],"leftIcon":[1,"left-icon"],"rightIcon":[1,"right-icon"],"opened":[1028],"selected":[1028],"isLeaf":[1028,"is-leaf"],"hasChildTree":[1028,"has-child-tree"],"firstTreeItem":[1028,"first-tree-item"],"indeterminate":[1028],"disabled":[4],"numberOfParentTrees":[32],"itemPaddingLeft":[32],"horizontalLinePaddingLeft":[32],"lastTreeItem":[32],"firstTreeItemOfParentTree":[32],"lastTreeItemOfParentTree":[32],"rightIconColor":[32],"numberOfDirectTreeItemsDescendants":[32],"updateTreeVerticalLineHeight":[64]}]]],["p-ccc9151e",[[1,"gxg-breadcrumb",{"icon":[1],"id":[1]}]]],["p-70bc1bfa",[[1,"gxg-contextual-menu-item",{"icon":[1],"id":[1]}]]],["p-61b5f2f2",[[1,"gxg-filter-item",{"itemId":[8,"item-id"],"type":[8],"icon":[1]}]]],["p-aba66e3a",[[1,"gxg-form-message",{"type":[1]}]]],["p-1f16cdf9",[[1,"gxg-menu-item",{"label":[1],"icon":[1],"active":[516]}]]],["p-77f0c5cf",[[17,"gxg-menu-slim-item",{"label":[1],"iconType":[1,"icon-type"],"active":[516],"itemId":[1,"item-id"],"ellipsis":[4],"disabled":[4]}]]],["p-732c9fc6",[[1,"gxg-more-info",{"position":[513],"label":[1],"moreInfoLabel":[1,"more-info-label"],"url":[1],"target":[1]}]]],["p-43947003",[[1,"gxg-option-v2",{"value":[1],"selected":[4],"iconName":[1,"icon-name"]}]]],["p-67869d00",[[1,"gxg-pill",{"disabled":[4],"icon":[1],"heightAuto":[4,"height-auto"],"id":[1],"italic":[4],"type":[513]}]]],["p-44551a36",[[1,"gxg-progress-bar",{"disabled":[516],"label":[1],"value":[514],"maxWidth":[1,"max-width"],"silent":[4]}]]],["p-a5bbf490",[[17,"gxg-select",{"disabled":[516],"error":[4],"label":[1],"labelPosition":[513,"label-position"],"minimal":[4],"required":[516],"size":[1],"value":[1],"initialValue":[1,"initial-value"],"warning":[4],"maxWidth":[1,"max-width"],"rtl":[32],"rerender":[32],"isOpen":[64]},[[0,"optionIsSelected","todoCompletedHandler"]]]]],["p-5f778d2f",[[1,"gxg-slider",{"disabled":[516],"label":[1],"max":[2],"value":[514],"maxWidth":[1,"max-width"],"rtl":[32]}]]],["p-b53fa192",[[1,"gxg-stepper",{"disabled":[516],"label":[1],"labelPosition":[513,"label-position"],"value":[514],"max":[514],"min":[514],"rtl":[32]}]]],["p-f0387fa6",[[1,"gxg-toggle",{"disabled":[516],"label":[1],"on":[516]}]]],["p-6888e0a4",[[1,"gxg-toolbar",{"position":[1],"subtitle":[1],"toolbarTitle":[1,"toolbar-title"],"rtl":[32]}]]],["p-65e6b24f",[[1,"gxg-toolbar-item",{"disabled":[4],"icon":[1],"subtitle":[1],"toolbarItemTitle":[1,"toolbar-item-title"]}]]],["p-207c378b",[[1,"gxg-tree-grid-divs",{"columns":[16],"rows":[16],"width":[1],"displayChildren":[1,"display-children"],"selectedRowsIds":[1026,"selected-rows-ids"],"editCell":[16],"thWidthLeftover":[32],"rowsBuffer":[32],"thInPixels":[32],"displayRowChildrenIds":[32],"columnClicked":[32],"columnOrder":[32]}]]],["p-4a756245",[[1,"ch-alert",{"timerInterval":[2,"timer-interval"],"closeButtonAccessibleName":[1,"close-button-accessible-name"],"dismissTimeout":[2,"dismiss-timeout"],"leftImgSrc":[1,"left-img-src"],"presented":[1540],"showCloseButton":[4,"show-close-button"],"showTimeoutBar":[4,"show-timeout-bar"],"pauseOnHover":[4,"pause-on-hover"],"countdown":[1026]}]]],["p-39bd6c60",[[0,"ch-notifications",{"delayToAnimateNewNotifications":[2,"delay-to-animate-new-notifications"],"notifications":[16],"position":[1],"timeToDismissNotifications":[2,"time-to-dismiss-notifications"],"timeType":[1,"time-type"],"notificationsSize":[32]},[[0,"notificationClick","handleNotificationClick"],[0,"notificationDismiss","handleNotificationDismiss"]]]]],["p-cd6dafe5",[[1,"ch-select",{"name":[1],"iconSrc":[1,"icon-src"],"arrowIconSrc":[1,"arrow-icon-src"],"autoColor":[516,"auto-color"],"disabled":[4],"width":[1],"height":[1],"toggle":[32]},[[1,"keydown","handleKeyDown"],[0,"itemClicked","optionClickedHandler"]]]]],["p-20751bae",[[1,"ch-select-option",{"height":[1],"leftIconSrc":[1,"left-icon-src"],"rightIconSrc":[1,"right-icon-src"],"selected":[516],"disabled":[516],"autoColor":[516,"auto-color"],"value":[513]}]]],["p-f8750a75",[[1,"ch-sidebar-menu-list-item",{"itemIconSrc":[1,"item-icon-src"],"autoColor":[516,"auto-color"],"uncollapsed":[4],"collapsable":[32],"listTypeItem":[32]}]]],["p-f9b3ec44",[[1,"gxg-container",{"fieldset":[4],"containerTitle":[1,"container-title"],"displayBorder":[4,"display-border"],"displayBorderTop":[4,"display-border-top"],"displayBorderEnd":[4,"display-border-end"],"displayBorderBottom":[4,"display-border-bottom"],"displayBorderStart":[4,"display-border-start"],"sectionsPadding":[1,"sections-padding"],"noHeadingBorder":[4,"no-heading-border"],"noHeadingPadding":[4,"no-heading-padding"],"headingJustify":[1,"heading-justify"],"noContentPadding":[4,"no-content-padding"],"noContentGap":[4,"no-content-gap"],"noFooterPadding":[4,"no-footer-padding"],"footerJustify":[1,"footer-justify"],"noBorderFooter":[4,"no-border-footer"],"hasSlottedContent":[32],"hasFooterSlot":[32],"hasOnlyHeading":[32],"hasOnlyFooter":[32]}]]],["p-cec13765",[[1,"gxg-menu-slim-list",{"listTitle":[1,"list-title"]}]]],["p-a214edb5",[[1,"ch-drag-bar",{"barLabel":[1,"bar-label"],"cssClass":[1,"css-class"],"barItemSrc":[1,"bar-item-src"],"showBarItem":[4,"show-bar-item"],"startComponentInitialWidth":[1,"start-component-initial-width"],"isRTLDirection":[32]}]]],["p-832a1eff",[[0,"ch-grid-column-display",{"column":[16]}]]],["p-112dc730",[[1,"ch-grid-infinite-scroll",{"status":[1025],"hasGridScroll":[32],"complete":[64]}]]],["p-42f71c47",[[1,"ch-grid-rowset-legend",null,[[1,"click","clickHandler"]]]]],["p-07c6f7dd",[[0,"ch-grid-virtual-scroller",{"items":[16],"itemsCount":[2,"items-count"],"viewPortItems":[1040],"rowHeight":[32],"browserHeight":[32],"hasGridScroll":[32],"hasWindowScroll":[32],"maxViewPortItems":[32]}]]],["p-16b0acef",[[1,"ch-intersection-observer",{"bottomMargin":[1,"bottom-margin"],"leftMargin":[1,"left-margin"],"rightMargin":[1,"right-margin"],"root":[1],"threshold":[1],"topMargin":[1,"top-margin"]}]]],["p-91fe1c0d",[[1,"ch-next-progress-bar",{"caption":[1],"currentStep":[2,"current-step"],"cssClass":[1,"css-class"],"description":[1],"presented":[4],"steps":[2],"shouldAddFadeInOutAnimation":[32]}]]],["p-59244df7",[[1,"ch-qr",{"text":[1],"radius":[2],"ecLevel":[1,"ec-level"],"fill":[1],"background":[1],"size":[2]}]]],["p-da5317f5",[[1,"ch-sidebar-menu",{"menuTitle":[1,"menu-title"],"singleListOpen":[4,"single-list-open"],"distanceToTop":[2,"distance-to-top"],"collapsible":[4],"activeItemId":[1,"active-item-id"],"activeItem":[1025,"active-item"],"isCollapsed":[1540,"is-collapsed"],"indicator":[32]}]]],["p-d25da0c9",[[1,"ch-sidebar-menu-list",{"listType":[32]}]]],["p-161969f3",[[1,"ch-step-list"]]],["p-c19354eb",[[1,"ch-step-list-item",{"iconSrc":[1,"icon-src"]}]]],["p-6272fb68",[[1,"ch-style",{"href":[1]}]]],["p-383f10ab",[[1,"ch-textblock",{"format":[1],"lineClamp":[4,"line-clamp"],"tooltip":[1],"tooltipShowMode":[1,"tooltip-show-mode"],"contentLines":[32],"maxLines":[32]}]]],["p-fdb7b01c",[[1,"ch-tree",{"checkbox":[4],"checked":[4],"toggleCheckboxes":[1028,"toggle-checkboxes"],"nestedTree":[32],"mainTree":[32],"getChecked":[64]},[[0,"liItemClicked","liItemClickedHandler"],[0,"toggleIconClicked","toggleIconClickedHandler"]]]]],["p-7fc8f83b",[[1,"gx-ide-switch-panel"]]],["p-d0dbf94f",[[1,"gx-ide-switcher"]]],["p-48422a80",[[1,"gxg-accordion",{"disabled":[4],"singleItemOpen":[4,"single-item-open"],"mode":[1],"maxWidth":[1,"max-width"],"noPadding":[4,"no-padding"],"hasBorder":[4,"has-border"],"accordions":[32]},[[0,"accordionItemClicked","itemClickedHandler"],[0,"accordionItemLoaded","itemLoadedHandler"]]]]],["p-8dab6b19",[[1,"gxg-box",{"background":[513],"border":[4],"padding":[513],"minHeight":[1,"min-height"],"height":[1],"maxWidth":[1,"max-width"]}]]],["p-a96aa03c",[[1,"gxg-breadcrumbs"]]],["p-a31b18e7",[[1,"gxg-column",{"width":[513]}]]],["p-36267f2e",[[1,"gxg-columns",{"alignY":[513,"align-y"],"collapseBellow":[513,"collapse-bellow"],"space":[513]}]]],["p-1204b3c2",[[1,"gxg-contextual-menu",{"visible":[516],"widthOverflow":[32],"heightOverflow":[32],"firstRightClick":[32],"topPosition":[32],"leftPosition":[32]}]]],["p-dbf324cc",[[1,"gxg-contextual-menu-submenu"]]],["p-02b723c8",[[1,"gxg-drag-container",{"deletable":[4],"disable":[4],"maxWidth":[1,"max-width"],"padding":[1]},[[0,"clicked","clickedHandler"]]]]],["p-d50430db",[[1,"gxg-loader",{"text":[1],"show":[4],"visibleZIndex":[1,"visible-z-index"],"layerOpacity100":[32],"squaresOpacity100":[32],"textOpacity100":[32],"sendLayerBack":[32]}]]],["p-5c169ad9",[[1,"gxg-menu",{"menuTitle":[1,"menu-title"],"tabs":[516]},[[0,"menuItemActive","menuItemActiveHandler"]]]]],["p-faeb4ee2",[[1,"gxg-menu-slim",{"menuTitle":[1,"menu-title"],"tabs":[516],"hidden":[4],"hideOnSelect":[4,"hide-on-select"],"ellipsis":[4]},[[0,"itemSelected","itemSelectedHandler"],[0,"keyboardNavigation","keyboardNavigationHandler"]]]]],["p-802392b1",[[1,"gxg-option",{"value":[1],"selected":[4],"iconName":[1,"icon-name"]}]]],["p-cb1845a9",[[1,"gxg-options-item",{"disabled":[4]}]]],["p-bca4d4c1",[[4,"gxg-paginator",{"alignment":[513]}]]],["p-2447a18f",[[1,"gxg-pills",{"getPills":[64]}]]],["p-71132a3c",[[1,"gxg-scroll"]]],["p-bce289e6",[[17,"gxg-select-v2",{"label":[1],"labelPosition":[1,"label-position"],"required":[4],"size":[1],"value":[1],"width":[1],"minWidth":[8,"min-width"],"maxWidth":[8,"max-width"],"disabled":[4],"warning":[4],"error":[4],"visible":[32],"myObserver":[32]},[[0,"optionIsSelected","optionIsSelectedHandler"]]]]],["p-23a7d86e",[[1,"gxg-separator",{"type":[513],"margin":[513]}]]],["p-f49a970a",[[1,"gxg-spacer-layout",{"fullHeight":[4,"full-height"],"space":[1],"orientation":[1],"justifyContent":[1,"justify-content"]}]]],["p-cc27eafc",[[1,"gxg-spacer-one",{"space":[1]}]]],["p-39c03652",[[1,"gxg-split"]]],["p-a6f02255",[[1,"gxg-splitter",{"direction":[1],"forceCollapseZero":[4,"force-collapse-zero"],"knob":[513],"minSize":[1,"min-size"],"sizes":[1],"split":[32],"minSizeArray":[32],"sizesArray":[32],"idsArray":[32],"currentSizes":[32],"draggingState":[32],"leftCollapsedToZero":[32],"rightCollapsedToZero":[32],"collapse":[64]}]]],["p-0e131900",[[1,"gxg-stack",{"space":[513],"columnsSpace":[520,"columns-space"]}]]],["p-f13a59cc",[[1,"gxg-test"]]],["p-e318f082",[[1,"gxg-tree",{"checkbox":[1028],"checked":[1540],"opened":[4],"toggleCheckboxes":[4,"toggle-checkboxes"],"multiSelection":[4,"multi-selection"],"getCheckedItems":[64],"getSelectedItems":[64],"toggleItems":[64]},[[0,"checkboxToggled","checkboxToggledHandler"],[0,"doubleClicked","doubleClickedHandler"],[0,"selectionChanged","selectionChangedHandler"],[0,"toggleIconClicked","toggleIconClickedHandler"]]]]],["p-63011e2b",[[1,"gx-ide-status-buttons",{"active":[4],"errors":[2],"warnings":[2],"succeeded":[2],"minimal":[4],"compact":[516],"noBorder":[516,"no-border"],"noInnerBorders":[516,"no-inner-borders"],"noBorderTop":[516,"no-border-top"],"noBorderEnd":[516,"no-border-end"],"noBorderBottom":[516,"no-border-bottom"],"noBorderStart":[516,"no-border-start"],"iconsSize":[32]}]]],["p-5bb2b052",[[1,"gxg-title-editable",{"value":[1025],"titleType":[513,"title-type"],"disableEdition":[516,"disable-edition"],"debounce":[4],"debounceDelay":[2,"debounce-delay"],"disabled":[4],"clickToEdit":[516,"click-to-edit"],"fluid":[516],"focusType":[513,"focus-type"],"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"hideTooltip":[4,"hide-tooltip"],"editing":[32]}]]],["p-47f3b15b",[[1,"gx-ide-ai-message",{"message":[1],"messageType":[1,"message-type"],"filterValue":[1,"filter-value"],"hidden":[4],"visible":[32],"showCopiedMessage":[32]}]]],["p-e45b5686",[[1,"ch-dropdown-item-separator"]]],["p-0ff8550a",[[1,"ch-form-checkbox",{"checkboxId":[1,"checkbox-id"],"checked":[1028],"indeterminate":[516],"disabled":[4],"label":[1],"value":[1],"name":[1]}]]],["p-2422a593",[[0,"ch-grid-rowset-empty"]]],["p-c5e22cd8",[[1,"ch-notifications-item",{"buttonImgSrc":[1,"button-img-src"],"closeButtonLabel":[1,"close-button-label"],"leftImgSrc":[1,"left-img-src"],"showCloseButton":[4,"show-close-button"],"timeToDismiss":[2,"time-to-dismiss"]}]]],["p-15685d3f",[[1,"ch-timer",{"progress":[2],"accessibleName":[1,"accessible-name"],"animationTime":[2,"animation-time"],"presented":[4]}]]],["p-95d1a4e7",[[1,"ch-action-group",{"accessibleName":[1,"accessible-name"],"buttonLabel":[1,"button-label"],"itemsOverflowBehavior":[1,"items-overflow-behavior"],"expandBehavior":[1,"expand-behavior"],"moreActionsButtonPosition":[1,"more-actions-button-position"],"moreActionsDropdownPosition":[1,"more-actions-dropdown-position"],"openOnFocus":[4,"open-on-focus"],"displayedItems":[32]}],[4,"ch-action-group-item",{"floating":[1540]}]]],["p-7ae11b35",[[1,"ch-dropdown-item",{"expandBehavior":[1,"expand-behavior"],"forceContainingBlock":[516,"force-containing-block"],"href":[1],"leftImgSrc":[1,"left-img-src"],"openOnFocus":[4,"open-on-focus"],"position":[1],"rightImgSrc":[1,"right-img-src"],"hasItems":[32],"handleFocusElement":[64]}]]],["p-92a4add2",[[1,"gxg-form-radio-group",{"center":[4],"disabled":[4],"label":[1],"value":[513],"row":[4],"validationMessage":[1025,"validation-message"],"required":[4],"validationStatus":[1025,"validation-status"],"informationMessage":[1,"information-message"]},[[0,"radioChecked","radioCheckedHandler"],[0,"keyPressed","keyPressedHandler"]]]]],["p-e452e69d",[[17,"gxg-form-textarea",{"singleLine":[516,"single-line"],"ai":[516],"toolTip":[4,"tool-tip"],"error":[1028],"label":[513],"labelPosition":[513,"label-position"],"labelWidth":[8,"label-width"],"centerLabel":[4,"center-label"],"maxWidth":[1,"max-width"],"maxHeight":[1,"max-height"],"height":[1],"placeholder":[1],"value":[513],"rows":[2],"warning":[4],"hideValidationMessage":[4,"hide-validation-message"],"disabled":[4],"required":[4],"validationStatus":[1025,"validation-status"],"validationMessage":[1025,"validation-message"],"informationMessage":[1,"information-message"],"resize":[4],"shrink":[32]}]]],["p-fc03bdd3",[[1,"ch-accordion",{"accessibleDescription":[1,"accessible-description"],"accessibleName":[1,"accessible-name"],"expanded":[1028]}]]],["p-a09a63e2",[[1,"ch-next-data-modeling-item",{"actionsVisible":[4,"actions-visible"],"captions":[16],"dataType":[1,"data-type"],"disabled":[4],"entityNameToATTs":[16],"errorTexts":[16],"fieldNames":[16],"level":[2],"maxAtts":[2,"max-atts"],"mode":[1025],"name":[1],"readonly":[4],"showNewFieldBtn":[1028,"show-new-field-btn"],"type":[1],"expanded":[32],"errorType":[32],"waitingMode":[32],"setAddingMode":[64],"clearInput":[64],"checkErrors":[64],"delete":[64],"hideWaitingMode":[64]},[[0,"expandedChange","handleExpandedChange"],[0,"firstNewField","handleFirstNewField"],[0,"firstNewFieldErrors","handleFirstNewFieldErrors"]]],[4,"ch-next-data-modeling"]]],["p-4165015f",[[1,"gxg-form-checkbox-group",{"disabled":[4],"row":[4],"validationStatus":[1025,"validation-status"],"validationMessage":[1025,"validation-message"],"informationMessage":[1,"information-message"],"getValues":[64]},[[0,"change","changeHandler"]]]]],["p-711613dc",[[1,"gxg-list-box-item",{"disabled":[516],"icon":[1],"selected":[516],"siblingIsSelected":[516,"sibling-is-selected"],"highlighted":[516],"active":[516],"index":[514],"emitCheckboxChange":[4,"emit-checkbox-change"],"value":[8],"checkbox":[4],"checked":[4],"mouseOver":[32]},[[0,"change","checkboxChangedHandler"]]],[1,"gxg-list-box",{"theTitle":[1,"the-title"],"checkboxes":[4],"singleSelection":[4,"single-selection"],"allowsEmpty":[4,"allows-empty"],"emitEmptySelection":[4,"emit-empty-selection"],"keyboardSuggestions":[16],"disableSuggestions":[4,"disable-suggestions"],"noBorder":[516,"no-border"],"borderTop":[516,"border-top"],"borderEnd":[516,"border-end"],"borderBottom":[516,"border-bottom"],"borderStart":[516,"border-start"],"disabled":[4],"required":[4],"validationStatus":[1025,"validation-status"],"validationMessage":[1025,"validation-message"],"informationMessage":[1,"information-message"],"selectedItems":[32],"checkedItems":[32],"hideKeyboardSuggestions":[32],"headerHeight":[32],"getSelectedItems":[64]},[[0,"itemLoaded","itemLoadedHandler"],[0,"itemClicked","itemClickedHandler"],[0,"itemSelected","itemSelectedHandler"],[0,"checkboxStateChanged","checkboxStateChangedHandler"]]]]],["p-5a52aba5",[[1,"ch-window",{"container":[16],"xAlign":[1537,"x-align"],"yAlign":[1537,"y-align"],"hidden":[1540],"modal":[516],"caption":[1],"closeText":[1,"close-text"],"closeTooltip":[1,"close-tooltip"],"closeOnOutsideClick":[4,"close-on-outside-click"],"closeOnEscape":[4,"close-on-escape"],"allowDrag":[1,"allow-drag"],"showFooter":[4,"show-footer"],"showHeader":[4,"show-header"],"showMain":[4,"show-main"],"showSeparation":[4,"show-separation"]},[[1,"mousedown","mousedownHandler"],[0,"windowCloseClicked","windowCloseClickedHandler"]]],[0,"ch-window-close",{"disabled":[4]},[[1,"keydown","pressedHandler"],[1,"click","pressedHandler"]]]]],["p-01978a13",[[1,"ch-dropdown",{"buttonLabel":[1,"button-label"],"expandBehavior":[1,"expand-behavior"],"nestedDropdown":[4,"nested-dropdown"],"openOnFocus":[4,"open-on-focus"],"position":[1],"expanded":[32],"expandedWithHover":[32]},[[0,"actionClick","handleActionClick"],[0,"focusChange","handleDropDownItemFocusChange"]]]]],["p-352674d9",[[1,"gxg-date-picker",{"disabled":[4],"alwaysShow":[4,"always-show"],"value":[1],"label":[1],"noWeekends":[4,"no-weekends"],"minDate":[1,"min-date"],"maxDate":[1,"max-date"],"maxWidth":[1,"max-width"],"rtl":[32]}],[1,"gx-ide-entity-selector",{"accessibilityLabels":[16],"defaultValue":[16],"label":[1],"labelPosition":[513,"label-position"],"centerLabel":[4,"center-label"],"labelWidth":[1,"label-width"],"selectEntityCallback":[16],"value":[1040],"buttonHasFocus":[32]}]]],["p-9af7152b",[[17,"gxg-form-radio",{"error":[4],"radioId":[1,"radio-id"],"checked":[516],"disabled":[516],"label":[1],"name":[1],"value":[1]}]]],["p-da2dfb82",[[0,"ch-grid-action-refresh",{"disabled":[4]},[[1,"keydown","pressedHandler"],[1,"click","pressedHandler"]]],[0,"ch-grid-action-settings",{"disabled":[4]},[[1,"keydown","pressedHandler"],[1,"click","pressedHandler"]]],[0,"ch-grid-actionbar"],[0,"ch-paginator",{"activePage":[1538,"active-page"],"totalPages":[2,"total-pages"],"hasNextPage":[4,"has-next-page"]},[[0,"navigateClicked","navigateClickedHandler"],[0,"pageChanged","pageChangedHandler"],[1,"keydown","keyDownHandler"]]],[0,"ch-paginator-navigate",{"type":[513],"disabled":[4]},[[1,"keydown","pressedHandler"],[1,"click","pressedHandler"]]],[1,"ch-paginator-pages",{"page":[1538],"totalPages":[514,"total-pages"],"maxSize":[1538,"max-size"],"renderFirstLastPages":[4,"render-first-last-pages"],"textDots":[1,"text-dots"]},[[1,"keydown","keyDownHandler"],[1,"focusin","focusHandler"]]],[1,"gx-grid-chameleon-column-filter",{"column":[16],"buttonApplyText":[1,"button-apply-text"],"buttonResetText":[1,"button-reset-text"],"equal":[1025],"less":[1025],"greater":[1025]}]]],["p-991a8b38",[[1,"gxg-text",{"href":[1],"disabled":[4],"target":[1],"type":[513],"textAlign":[513,"text-align"],"padding":[513],"maxWidth":[513,"max-width"],"icon":[1],"iconAlign":[1,"icon-align"],"iconAuto":[4,"icon-auto"],"italic":[516]}]]],["p-00b9fa56",[[1,"gx-ide-container",{"inactiveTitle":[4,"inactive-title"],"containerTitle":[1,"container-title"],"titleType":[1,"title-type"],"displayBorder":[4,"display-border"],"displayBorderTop":[4,"display-border-top"],"displayBorderEnd":[4,"display-border-end"],"displayBorderBottom":[4,"display-border-bottom"],"displayBorderStart":[4,"display-border-start"],"sectionsPadding":[1,"sections-padding"],"titleAlignment":[1,"title-alignment"],"noHeadingBorder":[4,"no-heading-border"],"noHeadingPadding":[4,"no-heading-padding"],"headingPaddingTop":[4,"heading-padding-top"],"headingJustify":[1,"heading-justify"],"titleHeightAsInput":[4,"title-height-as-input"],"flexRow":[4,"flex-row"],"flexContent":[4,"flex-content"],"noContentBorderTop":[4,"no-content-border-top"],"noContentPadding":[4,"no-content-padding"],"noContentGap":[4,"no-content-gap"],"alignItems":[1,"align-items"],"justifyContent":[1,"justify-content"],"contentBorderEnd":[4,"content-border-end"],"slimmerAboveFooter":[4,"slimmer-above-footer"],"noAboveFooterPadding":[4,"no-above-footer-padding"],"noBorderAboveFooter":[4,"no-border-above-footer"],"slimmerFooter":[4,"slimmer-footer"],"noFooterPadding":[4,"no-footer-padding"],"footerJustify":[1,"footer-justify"],"noBorderFooter":[4,"no-border-footer"],"footerSubtleShadow":[4,"footer-subtle-shadow"],"hasHeaderSlot":[32],"hasSlottedContent":[32],"hasFooterSlot":[32],"hasAboveFooterSlot":[32],"hasOnlyHeading":[32],"hasOnlyContent":[32],"hasOnlyFooter":[32]}],[1,"gx-ide-title",{"titleCaption":[1,"title-caption"],"type":[1],"alignment":[1],"padding":[516],"noPaddingBottom":[516,"no-padding-bottom"],"border":[516]}],[1,"gxg-title",{"type":[1],"alignment":[513]}]]],["p-fb4409c1",[[17,"gxg-button",{"grabAttention":[516,"grab-attention"],"alwaysBlack":[4,"always-black"],"disabled":[4],"fit":[4],"fullWidth":[4,"full-width"],"icon":[8],"negative":[4],"type":[1],"buttonStylesEditable":[4,"button-styles-editable"],"mouseEnter":[32],"focusIn":[32]}],[1,"gxg-icon",{"color":[1],"size":[1],"type":[8]}]]],["p-68f2bdb2",[[1,"gxg-ide-loader",{"loaderTitle":[1,"loader-title"],"description":[1],"cancelLabel":[1,"cancel-label"],"cancelCallback":[16],"show":[4],"abortTime":[2,"abort-time"],"container":[16],"showWindow":[32],"showWrapper":[32]}],[0,"gxg-tree-view",{"checkbox":[4],"checked":[4],"checkDroppableZoneCallback":[16],"cssClass":[1,"css-class"],"dragDisabled":[4,"drag-disabled"],"dropDisabled":[4,"drop-disabled"],"dropItemsCallback":[16],"editableItems":[4,"editable-items"],"filter":[1],"filterDebounce":[2,"filter-debounce"],"filterList":[16],"filterOptions":[16],"filterType":[1,"filter-type"],"lazyLoadTreeItemsCallback":[16],"modifyItemCaptionCallback":[16],"multiSelection":[4,"multi-selection"],"renderItem":[16],"showLines":[1,"show-lines"],"sortItemsCallback":[16],"toggleCheckboxes":[4,"toggle-checkboxes"],"treeModel":[16],"loadLazyContent":[64],"scrollIntoVisible":[64],"toggleItems":[64],"updateAllItemsProperties":[64],"updateItemsProperties":[64],"updateValidDropZone":[64]}],[1,"gxg-button-group",{"buttonGroupTitle":[1,"button-group-title"],"titleAlignment":[513,"title-alignment"],"defaultSelectedBtnId":[1,"default-selected-btn-id"],"disabled":[516],"fullWidth":[516,"full-width"],"outlined":[516],"disableActive":[516,"disable-active"],"type":[1],"activeButtonId":[1,"active-button-id"],"value":[32],"rtl":[32]}]]],["p-2589e00e",[[4,"gx-ide-list-selector-item",{"itemId":[513,"item-id"],"itemValue":[1,"item-value"],"itemChecked":[1028,"item-checked"],"readonly":[1540],"ellipsis":[1540],"icon":[1],"iconColor":[1025,"icon-color"],"iconSize":[1025,"icon-size"],"noBorder":[1540,"no-border"],"universalSlotEnd":[516,"universal-slot-end"]}],[1,"gx-ide-list-selector",{"listTitle":[1,"list-title"],"ordered":[4],"readonly":[4],"type":[1],"required":[4],"ellipsis":[4],"value":[1025],"iconsColor":[1,"icons-color"],"iconsSize":[1,"icons-size"],"listName":[1,"list-name"],"noItemsBorder":[4,"no-items-border"],"noListBorder":[516,"no-list-border"]},[[2,"itemSelectionChanged","itemSelectionChangedHandler"]]]]],["p-7a4ff1fe",[[1,"ch-suggest-list",{"label":[1]}],[17,"ch-suggest-list-item",{"iconSrc":[1,"icon-src"],"value":[8]}],[4,"gxg-suggest",{"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"disabled":[4],"ellipsis":[516]}],[17,"ch-suggest",{"debounce":[2],"label":[1],"labelPosition":[513,"label-position"],"showLabel":[4,"show-label"],"value":[1025],"showHeader":[4,"show-header"],"suggestTitle":[1,"suggest-title"],"cursorEnd":[4,"cursor-end"],"windowHidden":[32],"selectInputText":[64]},[[2,"itemSelected","itemSelectedHandler"],[0,"focusChangeAttempt","focusChangeAttemptHandler"],[0,"windowClosed","windowClosedHandler"]]]]],["p-232fe7cb",[[1,"ch-icon",{"color":[1],"lazy":[4],"autoColor":[516,"auto-color"],"src":[513],"size":[1],"isVisible":[32],"svgContent":[32]}]]],["p-ba7e56ce",[[1,"gxg-label",{"labelPosition":[1,"label-position"],"disabled":[516],"noMargin":[4,"no-margin"],"center":[4],"for":[1],"width":[1],"tooltip":[1]}],[1,"gxg-tooltip",{"position":[513],"label":[1],"alignEnd":[516,"align-end"],"fixed":[516],"flex":[516],"noBorder":[516,"no-border"],"visible":[32]}]]],["p-5e50df3c",[[17,"gxg-form-checkbox",{"checkboxId":[1,"checkbox-id"],"checked":[4],"indeterminate":[516],"disabled":[4],"label":[1],"value":[1],"name":[1],"iconName":[1,"icon-name"],"alignTop":[4,"align-top"],"required":[516],"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"informationMessage":[1,"information-message"],"tooltip":[1]}]]],["p-b71f6a1f",[[1,"gxg-tab-bar",{"hidden":[4],"displayBorder":[4,"display-border"],"scrollable":[516],"appendedButtons":[32],"tabBarMenuHeight":[32],"tabBarMenuWidth":[32],"tabBarMenuCollapsed":[32],"tabBarMenuPosition":[32],"rtl":[32],"appendTabButtons":[64]},[[0,"tabActivated","tabActivatedHandler"],[0,"PrevOrNextTab","PrevOrNextTabHandler"]]],[17,"gxg-tab-button",{"hidden":[4],"tabLabel":[1,"tab-label"],"tab":[513],"isSelected":[4,"is-selected"],"disabled":[4],"icon":[1],"tabButtonClick":[64]}],[1,"gxg-tab",{"tab":[1],"noPadding":[4,"no-padding"],"flexContainer":[4,"flex-container"],"flex":[4],"overflowAuto":[4,"overflow-auto"],"flexDirection":[1,"flex-direction"],"isSelected":[516,"is-selected"]}],[1,"gxg-tabs",{"position":[1],"height":[513],"maxHeight":[1,"max-height"],"minWidth":[1,"min-width"],"tabBarBorder":[4,"tab-bar-border"],"noBackground":[516,"no-background"],"noPadding":[4,"no-padding"],"activeTab":[32],"setActiveTab":[64]},[[0,"tabActivated","tabActivatedHandler"]]]]],["p-9f4e169e",[[17,"gxg-form-text",{"hideTooltip":[4,"hide-tooltip"],"toolTip":[4,"tool-tip"],"clearButton":[516,"clear-button"],"debounce":[4],"debounceDelay":[2,"debounce-delay"],"disabled":[4],"readonly":[4],"icon":[8],"cursorEnd":[4,"cursor-end"],"iconPosition":[513,"icon-position"],"label":[1],"labelPosition":[513,"label-position"],"borderless":[4],"minimal":[516],"overDarkBackground":[516,"over-dark-background"],"placeholder":[1],"required":[516],"centerLabel":[4,"center-label"],"labelWidth":[8,"label-width"],"type":[1],"multiple":[4],"fileList":[1040],"acceptFile":[1,"accept-file"],"preventValueChangedEmit":[4,"prevent-value-changed-emit"],"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"informationMessage":[1,"information-message"],"value":[513],"maxWidth":[1,"max-width"],"width":[1],"textStyle":[513,"text-style"],"password":[4],"maxLength":[1,"max-length"],"minLength":[1,"min-length"],"cursorInside":[32],"inputSize":[32],"mouseCoordinates":[32],"rtl":[32],"selectInputText":[64],"openFile":[64],"clearInput":[64]}]]],["p-8edc2bbc",[[17,"gxg-combo-box",{"popOver":[4,"pop-over"],"toolTip":[4,"tool-tip"],"fixedIcon":[1,"fixed-icon"],"disabled":[4],"label":[1],"labelPosition":[513,"label-position"],"minWidth":[1,"min-width"],"maxWidth":[1,"max-width"],"listMaxHeight":[1,"list-max-height"],"placeholder":[1],"disableFilter":[4,"disable-filter"],"disableClear":[4,"disable-clear"],"strict":[4],"value":[8],"caseSensitive":[4,"case-sensitive"],"listPosition":[1,"list-position"],"centerLabel":[4,"center-label"],"labelWidth":[8,"label-width"],"required":[516],"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"cursorEnd":[4,"cursor-end"],"informationMessage":[1,"information-message"],"text":[32],"inputTextValue":[32],"listIsOpen":[32],"inputTextIcon":[32],"noMatch":[32],"lastAllowedValue":[32],"slottedContent":[32],"selectionProgramatic":[32],"lastSetValueByUser":[32],"myObserver":[32],"selectedItem":[32],"removedItem":[32],"open":[64],"close":[64],"getValueByIndex":[64],"setValueByIndex":[64],"selectInputText":[64]},[[0,"itemSelected","itemSelectedHandler"],[0,"itemDidLoad","itemDidLoadHandler"],[0,"keyDownComboItem","keyDownComboItemHandler"]]],[1,"gxg-combo-box-item",{"icon":[1],"value":[8],"index":[514],"disabled":[4],"selected":[516],"exactMatch":[516,"exact-match"],"hidden":[516],"iconColor":[32]}]]],["p-f1922c2f",[[0,"ch-tree-view-render",{"checkbox":[4],"checked":[4],"checkDroppableZoneCallback":[16],"cssClass":[1,"css-class"],"dragDisabled":[4,"drag-disabled"],"dropDisabled":[4,"drop-disabled"],"dropItemsCallback":[16],"editableItems":[4,"editable-items"],"filter":[1],"filterDebounce":[2,"filter-debounce"],"filterList":[16],"filterOptions":[16],"filterType":[1,"filter-type"],"gxImageConstructor":[16],"gxSettings":[8,"gx-settings"],"lazyLoadTreeItemsCallback":[16],"modifyItemCaptionCallback":[16],"multiSelection":[4,"multi-selection"],"renderItem":[1040],"showLines":[1,"show-lines"],"sortItemsCallback":[16],"toggleCheckboxes":[4,"toggle-checkboxes"],"treeModel":[16],"useGxRender":[4,"use-gx-render"],"waitDropProcessing":[32],"dropItems":[64],"loadLazyContent":[64],"scrollIntoVisible":[64],"toggleItems":[64],"updateAllItemsProperties":[64],"updateItemsProperties":[64],"updateValidDropZone":[64]},[[0,"checkboxChange","updateCheckboxValue"],[0,"checkboxToggleChange","updateCheckboxValue"],[0,"loadLazyContent","loadLazyChildrenHandler"],[0,"modifyCaption","handleCaptionModification"],[2,"openReference","handleOpenReference"]]],[1,"ch-tree-view-item",{"caption":[1],"checkbox":[4],"checked":[1540],"customRender":[4,"custom-render"],"disabled":[516],"dragDisabled":[4,"drag-disabled"],"dropDisabled":[4,"drop-disabled"],"dragState":[1025,"drag-state"],"downloading":[1028],"editable":[4],"editing":[1028],"expanded":[1028],"lastItem":[4,"last-item"],"lazyLoad":[1028,"lazy-load"],"leaf":[4],"leftImgSrc":[1,"left-img-src"],"level":[2],"indeterminate":[1028],"metadata":[1],"rightImgSrc":[1,"right-img-src"],"selected":[1540],"showDownloadingSpinner":[4,"show-downloading-spinner"],"showExpandableButton":[4,"show-expandable-button"],"showLines":[1,"show-lines"],"toggleCheckboxes":[4,"toggle-checkboxes"],"focusNextItem":[64],"focusNextSibling":[64],"focusPreviousItem":[64],"focusLastItem":[64],"setFocus":[64],"updateChecked":[64]},[[0,"checkboxChange","updateCheckboxValue"]]],[4,"ch-tree-view",{"multiSelection":[4,"multi-selection"],"openSubTreeCountdown":[2,"open-sub-tree-countdown"],"scrollToEdgeOnDrag":[4,"scroll-to-edge-on-drag"],"waitDropProcessing":[4,"wait-drop-processing"],"draggingInTheDocument":[32],"draggingInTree":[32],"clearSelectedItemsInfo":[64],"scrollIntoVisible":[64],"updateValidDropZone":[64]},[[2,"contextmenu","handleContextMenuEvent"],[2,"keydown","handleKeyDownEvents"],[9,"dragstart","handleDragStart"],[11,"dragend","handleDragEnd"],[3,"dragenter","handleDragEnter"],[3,"dragleave","handleDragLeave"],[1,"drop","handleItemDrop"],[0,"itemDragStart","handleItemDragStart"],[0,"itemDragEnd","handleItemDragEnd"],[0,"selectedItemSync","handleSelectedItemSync"],[0,"selectedItemChange","handleSelectedItemChange"]]],[1,"ch-checkbox",{"accessibleName":[1,"accessible-name"],"caption":[1],"checked":[1028],"checkedValue":[1,"checked-value"],"disabled":[4],"highlightable":[4],"indeterminate":[4],"readonly":[4],"unCheckedValue":[1,"un-checked-value"],"value":[1025]}]]],["p-607ab2bf",[[4,"gxg-grid",{"noBorder":[516,"no-border"],"fullHeight":[516,"full-height"]}],[1,"ch-grid",{"rowSelectionMode":[1,"row-selection-mode"],"rowHighlightEnabled":[8,"row-highlight-enabled"],"rowSelectedClass":[1,"row-selected-class"],"rowHighlightedClass":[1,"row-highlighted-class"],"rowFocusedClass":[1,"row-focused-class"],"rowMarkedClass":[1,"row-marked-class"],"allowColumnReorder":[4,"allow-column-reorder"],"columnResizeMode":[1,"column-resize-mode"],"localization":[16],"rowFocused":[32],"rowHighlighted":[32],"rowsMarked":[32],"rowsSelected":[32],"cellSelected":[32],"gridStyle":[32],"getFocusedRow":[64],"getHoveredRow":[64],"getSelectedRows":[64],"getMarkedRows":[64],"getSelectedCell":[64],"selectRow":[64],"selectAllRows":[64],"selectCell":[64],"markRow":[64],"markAllRows":[64],"expandRow":[64],"collapseRow":[64],"rowEnsureVisible":[64],"cellEnsureVisible":[64],"getPreviousRow":[64],"getNextRow":[64],"getPreviousCell":[64],"getNextCell":[64]},[[1,"focus","focusHandler"],[1,"blur","blurHandler"],[1,"cellFocused","cellFocusedHandler"],[8,"keydown","windowKeyDownHandler"],[1,"keydown","keyDownHandler"],[1,"mousemove","mouseMoveHandler"],[1,"mouseleave","mouseLeaveHandler"],[1,"mousedown","clickHandler"],[1,"mouseup","mouseUpHandler"],[1,"dblclick","dblclickHandler"],[0,"contextmenu","contextmenuHandler"],[1,"columnSelectorClicked","columnSelectorClickedHandler"],[1,"cellSelectorClicked","cellSelectorClickedHandler"],[1,"cellRowActionClicked","cellRowActionClickedHandler"],[0,"columnHiddenChanged","columnStyleChangedHandler"],[0,"columnOrderChanged","columnStyleChangedHandler"],[0,"columnFreezeChanged","columnStyleChangedHandler"],[0,"columnSizeChanging","columnStyleChangedHandler"],[0,"columnFreezeChanged","columnFreezeChangedHandler"],[0,"columnResizeStarted","columnResizeStartedHandler"],[0,"columnResizing","columnResizingHandler"],[0,"columnResizeFinished","columnResizeFinishedHandler"],[0,"columnDragStarted","columnDragStartHandler"],[0,"columnDragging","columnDraggingHandler"],[0,"columnDragEnded","columnDragEndHandler"],[0,"rowDragStarted","rowDragStartHandler"],[0,"rowEnsureVisible","rowEnsureVisibleHandler"],[0,"cellEnsureVisible","cellEnsureVisibleHandler"],[0,"settingsShowClicked","settingsShowClickedHandler"],[0,"settingsCloseClicked","settingsCloseClickedHandler"]]],[1,"ch-grid-column",{"columnId":[1,"column-id"],"columnType":[1,"column-type"],"columnIconUrl":[1,"column-icon-url"],"columnImage":[1,"column-image"],"columnImageSet":[1,"column-image-set"],"columnName":[1,"column-name"],"columnNameHidden":[4,"column-name-hidden"],"columnTooltip":[1,"column-tooltip"],"columnNamePosition":[1,"column-name-position"],"richRowDrag":[4,"rich-row-drag"],"richRowSelector":[4,"rich-row-selector"],"richRowSelectorMode":[1,"rich-row-selector-mode"],"richRowSelectorState":[1025,"rich-row-selector-state"],"richRowActions":[4,"rich-row-actions"],"displayObserverClass":[1,"display-observer-class"],"freeze":[1],"hidden":[516],"hideable":[4],"order":[514],"physicalOrder":[2,"physical-order"],"size":[513],"resizable":[4],"resizing":[1540],"sortable":[4],"settingable":[4],"sortDirection":[1537,"sort-direction"],"showSettings":[1540,"show-settings"]},[[1,"click","clickHandler"],[0,"columnResizeStarted","columnResizeStartedHandler"],[0,"columnResizeFinished","columnResizeFinishedHandler"]]],[0,"ch-grid-columnset",null,[[0,"columnSortChanged","columnSortChangedHandler"]]],[1,"ch-grid-column-settings",{"column":[16],"show":[516]},[[0,"windowClosed","windowClosedHandler"],[0,"columnSettingsChanged","columnSettingsChangedHandler"]]],[1,"ch-grid-settings",{"grid":[16],"show":[1540]},[[0,"windowClosed","windowClosedHandler"]]],[1,"ch-grid-column-resize",{"column":[16],"resizing":[32]},[[1,"click","clickHandler"],[0,"dblclick","dblclickHandler"],[0,"columnResizeStarted","columnResizeStartedHandler"],[0,"columnResizeFinished","columnResizeFinishedHandler"]]],[1,"ch-grid-settings-columns",{"columns":[16]}]]]]'),e))));
|
|
1
|
+
import{p as e,b as t}from"./p-0906fb46.js";export{s as setNonce}from"./p-0906fb46.js";import{g as i}from"./p-f59e1e26.js";(()=>{const t=import.meta.url,i={};return""!==t&&(i.resourcesUrl=new URL(".",t).href),e(i)})().then((e=>(i(),t(JSON.parse('[["p-3d410e77",[[1,"gx-ide-team-dev-update",{"displayTitle":[4,"display-title"],"confirmCallback":[16],"gridContextMenuCallback":[16],"loadCallback":[16],"objectsScopeCallback":[16],"openServerCallback":[16],"pendingItemsCheckedCallback":[16],"revisionScopeCallback":[16],"objectsContextMenuCallback":[16],"selectCallback":[16],"types":[16],"updateCallback":[16],"updateFrom":[16],"isLoading":[32],"objectScopeText":[32],"openTab":[32],"revisionScopeText":[32],"showFilter":[32],"updateData":[32],"updateResultData":[32],"reload":[64]}]]],["p-440fe7b3",[[1,"gx-ide-team-dev-commit",{"displayTitle":[4,"display-title"],"changeSet":[16],"types":[16],"folders":[16],"categories":[16],"getRecentCommentCallback":[16],"loadCallback":[16],"commitCallback":[16],"selectCallback":[16],"pendingItemsCheckedCallback":[16],"objectsContextMenuCallback":[16],"filtersHidden":[32],"comment":[32],"pendingCommits":[32],"ignoredObjects":[32],"commitButtonEnabled":[32],"filterHasConditions":[32],"reload":[64]}]]],["p-cb07fc99",[[1,"gx-ide-ww-images",{"displayTitle":[4,"display-title"],"secondaryFilter":[4,"secondary-filter"],"categories":[16],"densities":[16],"defaultCategory":[1,"default-category"],"defaultModule":[16],"defaultType":[1,"default-type"],"filterModules":[16],"languages":[16],"layers":[16],"contextMenuCallback":[16],"deleteSelectionCallback":[16],"loadCallback":[16],"loadImageItemsCallback":[16],"newObjectCallback":[16],"openSelectionCallback":[16],"selectModuleCallback":[16],"selectionObjectChangedCallback":[16],"shadow":[4],"styles":[16],"types":[16],"filtersHidden":[32],"filterAfterType":[32],"filterModified":[32],"images":[32],"filteredImages":[32],"imagesSelectedItems":[32],"selectedObjectsIds":[32],"filterImagesInputValue":[32],"validate":[64],"reload":[64]},[[1,"keydown","keyDownHandler"]]]]],["p-b34d258d",[[1,"gx-ide-bpm-app-declaration",{"displayTitle":[4,"display-title"],"application":[1040],"suggestApplicationsCallback":[16],"selectApplicationCallback":[16],"selectMappingCallback":[16],"confirmCallback":[16],"cancelCallback":[16],"getDataMappingCallback":[16],"suggestedApplications":[32]}]]],["p-8c5919ec",[[1,"gx-ide-object-selector",{"displayTitle":[4,"display-title"],"multiSelection":[4,"multi-selection"],"patternValue":[1,"pattern-value"],"types":[16],"defaultType":[1,"default-type"],"categories":[16],"defaultCategory":[1,"default-category"],"defaultModule":[16],"selectModuleCallback":[16],"cancelCallback":[16],"loadCallback":[16],"newObjectCallback":[16],"openSelectionCallback":[16],"filterAfterType":[32],"filterModified":[32],"objects":[32],"selectedObjectsIds":[32],"validate":[64]}]]],["p-e13a299b",[[1,"gx-ide-kb-manager-import",{"displayTitle":[4,"display-title"],"loader":[4],"selectedFile":[1040],"optionsCallback":[16],"importCallback":[16],"loadCallback":[16],"cancelCallback":[16],"statusMinimal":[4,"status-minimal"],"objectContextMenuCallback":[16],"checkedObjectsIds":[32],"noObjects":[32],"showHiddenImportsMessage":[32],"statusInfo":[32],"objectsTreeState":[32],"importStatusMessage":[32],"someStatusVisible":[32],"noImport":[32],"importTreeState":[32],"importingIsInProcess":[32],"addResultItem":[64]}]]],["p-baffd9b1",[[1,"gx-ide-references",{"displayTitle":[4,"display-title"],"selectedObject":[1040],"selectorSourceCallback":[16],"loadReferencesCallback":[16],"openObjectCallback":[16],"openSelectorDialogCallback":[16],"selectReferenceCallback":[16],"referencedByTreeData":[32],"referencesToTreeData":[32],"barHidden":[32],"objectsSuggestions":[32],"referencedBy":[32],"referencesTo":[32]}]]],["p-d664fa18",[[0,"gx-ide-kb-manager-export",{"displayTitle":[4,"display-title"],"fileName":[1,"file-name"],"loader":[4],"kbPropertiesTypes":[16],"objectTypes":[16],"exportFileDirectoryCallback":[16],"optionsCallback":[16],"addKBPropertiesCallback":[16],"addReferencesCallback":[16],"addObjectsCallback":[16],"exportCallback":[16],"cancelCallback":[16],"exportAllIsChecked":[32],"addKbPropertiesIsChecked":[32],"checkedObjectsIds":[32],"noObjects":[32],"treeModel":[32],"exportingIsInProcess":[32]}]]],["p-13085dd7",[[1,"gx-ide-new-environment",{"displayTitle":[4,"display-title"],"cancelCallback":[16],"createCallback":[16],"dataStores":[1040],"disableAdvanced":[4,"disable-advanced"],"environmentName":[1025,"environment-name"],"frontEnds":[1040],"getEnvironmentNameCallback":[16],"getFrontEndsCallback":[16],"getDataSourcesCallback":[16],"isAdvanced":[4,"is-advanced"],"languages":[16],"runtimes":[16],"setAsTarget":[4,"set-as-target"]}]]],["p-11fa1c83",[[1,"gx-ide-new-kb",{"displayTitle":[4,"display-title"],"defaultDataSources":[1040],"frontEnds":[1040],"isAdvanced":[4,"is-advanced"],"kbLocation":[1025,"kb-location"],"selectLocationCallback":[16],"kbName":[1,"kb-name"],"prototypingEnvironments":[16],"prototypingTargets":[16],"userInterfaceLanguages":[16],"authenticationTypes":[16],"collations":[16],"createDataFilesInKBFolder":[4,"create-data-files-in-k-b-folder"],"databaseName":[1,"database-name"],"password":[1],"savePassword":[4,"save-password"],"serverNames":[16],"userName":[1,"user-name"],"test":[1],"createCallback":[16],"cancelCallback":[16],"getDataSourcesCallback":[16],"getFrontEndsCallback":[16],"createDataInKbDisabled":[32],"userNameVisible":[32],"passwordVisible":[32],"savePasswordVisible":[32]}]]],["p-9a15e22e",[[1,"gx-ide-team-dev-update-partial-selection",{"displayTitle":[4,"display-title"],"addCallback":[16],"cancelCallback":[16],"confirmCallback":[16],"selection":[1040],"selectedObjectsIds":[32],"validate":[64]}]]],["p-d9e0d054",[[0,"gx-grid-chameleon",{"grid":[16],"gridTimestamp":[1026,"grid-timestamp"],"state":[16]},[[0,"selectionChanged","selectionChangedHandler"],[0,"rowClicked","cellClickedHandler"],[0,"pageNavigationRequested","navigateClickedHandler"],[0,"refreshClicked","refreshClickedHandler"],[0,"columnHiddenChanged","columnHiddenChangedHandler"],[0,"columnSizeChanging","columnSizeChangedHandler"],[0,"columnSizeChanged","columnSizeChangedHandler"],[0,"columnFreezeChanged","columnFreezeChangedHandler"],[0,"columnSortChanged","columnSortChangedHandler"],[0,"columnOrderChanged","columnOrderChangedHandler"],[0,"columnSettingsChanged","columnFilterChangedHandler"]]]]],["p-abfa88ed",[[1,"gx-ide-create-kb-from-server",{"displayTitle":[4,"display-title"],"connectCallback":[16],"createKBCallback":[16],"enableCustomServer":[4,"enable-custom-server"],"kbName":[1,"kb-name"],"password":[1],"serverUrls":[16],"userName":[1,"user-name"],"selectionKbDisabled":[32],"kbs":[32],"kbSearchText":[32]}]]],["p-d2aca59f",[[1,"gx-ide-new-object",{"displayTitle":[4,"display-title"],"shadow":[4],"typeCategories":[16],"parent":[16],"defaultParent":[16],"selectModuleCallback":[16],"validateNameCallback":[16],"createCallback":[16],"cancelCallback":[16],"selectedCategory":[32],"selectedType":[32],"nameIsValid":[32],"name":[32],"description":[32]}]]],["p-3d4722f2",[[1,"gx-ide-share-kb",{"displayTitle":[4,"display-title"],"kbName":[1,"kb-name"],"serverUrls":[16],"enableCustomServer":[4,"enable-custom-server"],"createKBCallback":[16]}]]],["p-ba31a49e",[[1,"gx-ide-team-dev-update-to-revision",{"displayTitle":[4,"display-title"],"cancelCallback":[16],"confirmCallback":[16],"currentRevision":[1,"current-revision"],"validate":[64]}]]],["p-38dacc01",[[1,"gx-ide-ai-assistant",{"messages":[1040],"promptMaxHeight":[1,"prompt-max-height"],"assistantStatus":[1025,"assistant-status"],"focusShortcuts":[16],"userMessageCallback":[16],"promptValue":[1,"prompt-value"],"filter":[4],"userHasTyped":[32],"aIInProgress":[32],"showFilter":[32],"filterValue":[32],"clear":[64],"addMessage":[64]}]]],["p-7e52f6fb",[[1,"gx-ide-template",{"displayTitle":[4,"display-title"]}]]],["p-9ad85778",[[1,"gx-ide-team-dev-select-recent-comment",{"displayTitle":[4,"display-title"],"comments":[16],"confirmCallback":[16],"cancelCallback":[16]}]]],["p-5b83f519",[[1,"gx-ide-test"]]],["p-a2c7dc8a",[[0,"ch-test-action-group",{"buttonLabel":[1,"button-label"],"expandBehavior":[1,"expand-behavior"],"itemsModel":[16],"itemsOverflowBehavior":[1,"items-overflow-behavior"],"openOnFocus":[4,"open-on-focus"],"moreActionsDropdownPosition":[1,"more-actions-dropdown-position"],"separation":[2],"displayedItemsCount":[32]}]]],["p-d3f83278",[[1,"gx-ide-directory-selector",{"accessibilityLabels":[16],"label":[1],"labelPosition":[513,"label-position"],"centerLabel":[1028,"center-label"],"labelWidth":[1,"label-width"],"selectDirectoryCallback":[16],"value":[1025],"icon":[32]}]]],["p-1dd70cd6",[[1,"gx-ide-file-selector",{"accessibilityLabels":[16],"label":[1],"labelPosition":[513,"label-position"],"centerLabel":[1028,"center-label"],"labelWidth":[1,"label-width"],"selectDirectoryCallback":[16],"value":[1025]}]]],["p-1cff8129",[[1,"gxg-filter",{"top":[8],"left":[8],"itemsNodeList":[32]},[[0,"itemClickedEvent","handleItemClickedEvent"]]]]],["p-c00aa636",[[0,"ch-test-dropdown",{"buttonLabel":[1,"button-label"],"expandBehavior":[1,"expand-behavior"],"itemsModel":[16],"openOnFocus":[4,"open-on-focus"],"position":[1],"separation":[2]}]]],["p-c4f18a9c",[[1,"gxg-accordion-item",{"disabled":[516],"editableTitle":[4,"editable-title"],"mode":[513],"itemId":[1,"item-id"],"itemTitle":[1,"item-title"],"itemSubtitle":[1,"item-subtitle"],"titleIcon":[1,"title-icon"],"status":[513],"hasBorder":[4,"has-border"],"nestedAccordion":[32],"minHeight":[32],"accordionMode":[32],"hasSlottedMeta":[32]}]]],["p-6506e89d",[[17,"gxg-drop-down",{"width":[1],"minWidth":[1,"min-width"],"maxWidth":[1,"max-width"],"dropDownHeight":[1,"drop-down-height"],"label":[1],"icon":[1],"showContent":[4,"show-content"],"position":[1],"initialButtonText":[32],"detectClickOutsideDropDown":[32],"detectMouseScroll":[32],"myObserver":[32]}]]],["p-106da9bc",[[1,"gxg-tree-item",{"checkbox":[1028],"checked":[1028],"opened":[4],"toggleCheckboxes":[4,"toggle-checkboxes"],"type":[1],"disabled":[4],"label":[1],"description":[1],"leaf":[1028],"selected":[1028],"icon":[1],"treeModel":[16],"numberOfChildren":[2,"number-of-children"],"hasChildTree":[1028,"has-child-tree"],"indeterminate":[1028],"horizontalLinePaddingLeft":[32],"lastTreeItem":[32],"lastTreeItemOfParentTree":[32],"numberOfVisibleDescendantItems":[32],"time":[32],"lineHeight":[32],"downloading":[32],"reRender":[64],"evaluateCheckboxStatus":[64]}]]],["p-c914cc1f",[[0,"ch-tree-view-render-wrapper",{"checkbox":[4],"checked":[4],"checkDroppableZoneCallback":[16],"cssClass":[1,"css-class"],"dragDisabled":[4,"drag-disabled"],"dropDisabled":[4,"drop-disabled"],"dropItemsCallback":[16],"editableItems":[4,"editable-items"],"filter":[1],"filterList":[16],"filterOptions":[16],"filterType":[1,"filter-type"],"lazyLoadTreeItemsCallback":[16],"modifyItemCaptionCallback":[16],"multiSelection":[4,"multi-selection"],"renderItem":[16],"showLines":[1,"show-lines"],"sortItemsCallback":[16],"toggleCheckboxes":[4,"toggle-checkboxes"],"treeModel":[16],"loadLazyContent":[64],"scrollIntoVisible":[64],"toggleItems":[64],"updateAllItemsProperties":[64],"updateItemsProperties":[64],"updateValidDropZone":[64]},[[0,"checkedItemsChange","updateCheckboxValue"],[0,"itemOpenReference","handleOpenReference"]]]]],["p-4ad2bc69",[[1,"gx-ide-top-bar",{"topBarTitle":[1,"top-bar-title"]}]]],["p-cf341ae3",[[1,"gxg-card",{"elevation":[513],"background":[513],"padding":[513],"minHeight":[1,"min-height"],"height":[1],"maxWidth":[1,"max-width"],"noPaddingTop":[516,"no-padding-top"],"cardTitle":[1,"card-title"],"cardType":[1,"card-type"],"icon":[1],"editableTitle":[4,"editable-title"],"actionable":[4]}]]],["p-6e9794d0",[[0,"ch-next-data-modeling-render",{"addingModeCommonClass":[1,"adding-mode-common-class"],"captions":[16],"commonClass":[1,"common-class"],"createGxCollectionCallback":[16],"cssClass":[1,"css-class"],"dataModel":[16],"dataModelToEdit":[16],"disabled":[4],"entityAddingModeClass":[1,"entity-adding-mode-class"],"entityClass":[1,"entity-class"],"errorTexts":[16],"fieldAddingModeClass":[1,"field-adding-mode-class"],"fieldClass":[1,"field-class"],"fieldContainerClass":[1,"field-container-class"],"fieldCommonClass":[1,"field-common-class"],"hideLoading":[8,"hide-loading"],"maxAtts":[2,"max-atts"],"readonly":[4],"subFieldClass":[1,"sub-field-class"],"subFieldAddingModeClass":[1,"sub-field-adding-mode-class"],"subFieldContainerClass":[1,"sub-field-container-class"]}]]],["p-fd73e13a",[[1,"ch-test-suggest",{"selectorSourceCallback":[16],"objectsSuggestions":[32]}]]],["p-2bb4d53b",[[1,"gxg-alert",{"active":[516],"activeTime":[1,"active-time"],"position":[1],"title":[1],"type":[1],"fullWidth":[4,"full-width"],"leftRight":[1,"left-right"],"bottom":[1],"width":[1],"silent":[4],"rtl":[32]}]]],["p-d83dea7c",[[1,"gxg-color-picker",{"label":[1032],"value":[1537],"colorRepresentation":[32],"colorInputValue":[32],"colorObject":[32]}]]],["p-7450ea04",[[1,"gxg-demo",{"layerZIndex":[2,"layer-z-index"],"initiateDemo":[4,"initiate-demo"],"modalMessage":[1,"modal-message"],"gxgDemoItems":[32],"numberOfItems":[32],"currentItem":[32],"message":[32],"position":[32],"leftPosition":[32],"rightPosition":[32],"topPosition":[32],"layerVisible":[32],"instructionVisible":[32],"modalVisible":[32],"nextItemClicked":[32],"disableNextButton":[32],"rtl":[32],"currentItemZIndex":[32],"currentItemPosition":[32],"currentItemBoxShadow":[32],"currentItemPointerEvents":[32]}]]],["p-37852e10",[[1,"gxg-drag-box",{"active":[516],"deletable":[4],"padding":[513],"disabled":[4],"title":[1]}]]],["p-b3e90cfc",[[1,"gxg-modal",{"flavor":[1],"padding":[513],"footerJustifyContent":[1,"footer-justify-content"],"modalTitle":[1,"modal-title"],"width":[1],"maxWidth":[1,"max-width"],"visible":[4],"zIndex":[1,"z-index"],"silent":[4],"hideFooter":[4,"hide-footer"],"layerVisible":[32],"modalVisible":[32],"modalTransition":[32],"close":[64]}]]],["p-1fb6b784",[[1,"gxg-options",{"maxWidth":[1,"max-width"],"width":[1],"zIndex":[1,"z-index"],"position":[1],"iconDirection":[1,"icon-direction"],"maxVisibleOptions":[2,"max-visible-options"],"optionsVisible":[32]},[[0,"keyDown","keyDownHandler"],[0,"optionSelected","optionSelectedHandler"]]]]],["p-ec953297",[[1,"gxg-window",{"initialHeight":[1,"initial-height"],"initialWidth":[1,"initial-width"],"minHeight":[1,"min-height"],"minWidth":[1,"min-width"],"maxHeight":[1,"max-height"],"maxWidth":[1,"max-width"],"leftPosition":[1,"left-position"],"topPosition":[1,"top-position"],"windowTitle":[1,"window-title"],"titleIcon":[1,"title-icon"],"displayWindow":[4,"display-window"],"showWindow":[32],"customPosition":[32]}]]],["p-7d1fd88e",[[1,"ch-grid-row-actions",{"showOnRowHover":[516,"show-on-row-hover"],"showOnRowActions":[516,"show-on-row-actions"],"showOnRowContext":[516,"show-on-row-context"],"openRowHover":[64],"openRowActions":[64],"openRowContext":[64],"close":[64]}]]],["p-2e7d1eef",[[1,"ch-shortcuts",{"src":[1],"showKey":[1,"show-key"],"showShortcuts":[32]},[[10,"keydown","windowKeyDownHandler"]]]]],["p-4d42f077",[[4,"ch-tooltip",{"tooltipId":[1,"tooltip-id"],"delay":[2],"position":[1],"hidden":[32]}]]],["p-efd187d0",[[1,"ch-tree-item",{"checkbox":[1028],"checked":[1028],"download":[4],"downloading":[4],"downloaded":[4],"leftIcon":[1,"left-icon"],"rightIcon":[1,"right-icon"],"opened":[1028],"selected":[1028],"isLeaf":[1028,"is-leaf"],"hasChildTree":[1028,"has-child-tree"],"firstTreeItem":[1028,"first-tree-item"],"indeterminate":[1028],"disabled":[4],"numberOfParentTrees":[32],"itemPaddingLeft":[32],"horizontalLinePaddingLeft":[32],"lastTreeItem":[32],"firstTreeItemOfParentTree":[32],"lastTreeItemOfParentTree":[32],"rightIconColor":[32],"numberOfDirectTreeItemsDescendants":[32],"updateTreeVerticalLineHeight":[64]}]]],["p-ccc9151e",[[1,"gxg-breadcrumb",{"icon":[1],"id":[1]}]]],["p-70bc1bfa",[[1,"gxg-contextual-menu-item",{"icon":[1],"id":[1]}]]],["p-61b5f2f2",[[1,"gxg-filter-item",{"itemId":[8,"item-id"],"type":[8],"icon":[1]}]]],["p-aba66e3a",[[1,"gxg-form-message",{"type":[1]}]]],["p-1f16cdf9",[[1,"gxg-menu-item",{"label":[1],"icon":[1],"active":[516]}]]],["p-77f0c5cf",[[17,"gxg-menu-slim-item",{"label":[1],"iconType":[1,"icon-type"],"active":[516],"itemId":[1,"item-id"],"ellipsis":[4],"disabled":[4]}]]],["p-732c9fc6",[[1,"gxg-more-info",{"position":[513],"label":[1],"moreInfoLabel":[1,"more-info-label"],"url":[1],"target":[1]}]]],["p-43947003",[[1,"gxg-option-v2",{"value":[1],"selected":[4],"iconName":[1,"icon-name"]}]]],["p-67869d00",[[1,"gxg-pill",{"disabled":[4],"icon":[1],"heightAuto":[4,"height-auto"],"id":[1],"italic":[4],"type":[513]}]]],["p-44551a36",[[1,"gxg-progress-bar",{"disabled":[516],"label":[1],"value":[514],"maxWidth":[1,"max-width"],"silent":[4]}]]],["p-a5bbf490",[[17,"gxg-select",{"disabled":[516],"error":[4],"label":[1],"labelPosition":[513,"label-position"],"minimal":[4],"required":[516],"size":[1],"value":[1],"initialValue":[1,"initial-value"],"warning":[4],"maxWidth":[1,"max-width"],"rtl":[32],"rerender":[32],"isOpen":[64]},[[0,"optionIsSelected","todoCompletedHandler"]]]]],["p-5f778d2f",[[1,"gxg-slider",{"disabled":[516],"label":[1],"max":[2],"value":[514],"maxWidth":[1,"max-width"],"rtl":[32]}]]],["p-b53fa192",[[1,"gxg-stepper",{"disabled":[516],"label":[1],"labelPosition":[513,"label-position"],"value":[514],"max":[514],"min":[514],"rtl":[32]}]]],["p-f0387fa6",[[1,"gxg-toggle",{"disabled":[516],"label":[1],"on":[516]}]]],["p-6888e0a4",[[1,"gxg-toolbar",{"position":[1],"subtitle":[1],"toolbarTitle":[1,"toolbar-title"],"rtl":[32]}]]],["p-65e6b24f",[[1,"gxg-toolbar-item",{"disabled":[4],"icon":[1],"subtitle":[1],"toolbarItemTitle":[1,"toolbar-item-title"]}]]],["p-207c378b",[[1,"gxg-tree-grid-divs",{"columns":[16],"rows":[16],"width":[1],"displayChildren":[1,"display-children"],"selectedRowsIds":[1026,"selected-rows-ids"],"editCell":[16],"thWidthLeftover":[32],"rowsBuffer":[32],"thInPixels":[32],"displayRowChildrenIds":[32],"columnClicked":[32],"columnOrder":[32]}]]],["p-4a756245",[[1,"ch-alert",{"timerInterval":[2,"timer-interval"],"closeButtonAccessibleName":[1,"close-button-accessible-name"],"dismissTimeout":[2,"dismiss-timeout"],"leftImgSrc":[1,"left-img-src"],"presented":[1540],"showCloseButton":[4,"show-close-button"],"showTimeoutBar":[4,"show-timeout-bar"],"pauseOnHover":[4,"pause-on-hover"],"countdown":[1026]}]]],["p-39bd6c60",[[0,"ch-notifications",{"delayToAnimateNewNotifications":[2,"delay-to-animate-new-notifications"],"notifications":[16],"position":[1],"timeToDismissNotifications":[2,"time-to-dismiss-notifications"],"timeType":[1,"time-type"],"notificationsSize":[32]},[[0,"notificationClick","handleNotificationClick"],[0,"notificationDismiss","handleNotificationDismiss"]]]]],["p-cd6dafe5",[[1,"ch-select",{"name":[1],"iconSrc":[1,"icon-src"],"arrowIconSrc":[1,"arrow-icon-src"],"autoColor":[516,"auto-color"],"disabled":[4],"width":[1],"height":[1],"toggle":[32]},[[1,"keydown","handleKeyDown"],[0,"itemClicked","optionClickedHandler"]]]]],["p-20751bae",[[1,"ch-select-option",{"height":[1],"leftIconSrc":[1,"left-icon-src"],"rightIconSrc":[1,"right-icon-src"],"selected":[516],"disabled":[516],"autoColor":[516,"auto-color"],"value":[513]}]]],["p-f8750a75",[[1,"ch-sidebar-menu-list-item",{"itemIconSrc":[1,"item-icon-src"],"autoColor":[516,"auto-color"],"uncollapsed":[4],"collapsable":[32],"listTypeItem":[32]}]]],["p-f9b3ec44",[[1,"gxg-container",{"fieldset":[4],"containerTitle":[1,"container-title"],"displayBorder":[4,"display-border"],"displayBorderTop":[4,"display-border-top"],"displayBorderEnd":[4,"display-border-end"],"displayBorderBottom":[4,"display-border-bottom"],"displayBorderStart":[4,"display-border-start"],"sectionsPadding":[1,"sections-padding"],"noHeadingBorder":[4,"no-heading-border"],"noHeadingPadding":[4,"no-heading-padding"],"headingJustify":[1,"heading-justify"],"noContentPadding":[4,"no-content-padding"],"noContentGap":[4,"no-content-gap"],"noFooterPadding":[4,"no-footer-padding"],"footerJustify":[1,"footer-justify"],"noBorderFooter":[4,"no-border-footer"],"hasSlottedContent":[32],"hasFooterSlot":[32],"hasOnlyHeading":[32],"hasOnlyFooter":[32]}]]],["p-cec13765",[[1,"gxg-menu-slim-list",{"listTitle":[1,"list-title"]}]]],["p-a214edb5",[[1,"ch-drag-bar",{"barLabel":[1,"bar-label"],"cssClass":[1,"css-class"],"barItemSrc":[1,"bar-item-src"],"showBarItem":[4,"show-bar-item"],"startComponentInitialWidth":[1,"start-component-initial-width"],"isRTLDirection":[32]}]]],["p-832a1eff",[[0,"ch-grid-column-display",{"column":[16]}]]],["p-112dc730",[[1,"ch-grid-infinite-scroll",{"status":[1025],"hasGridScroll":[32],"complete":[64]}]]],["p-42f71c47",[[1,"ch-grid-rowset-legend",null,[[1,"click","clickHandler"]]]]],["p-07c6f7dd",[[0,"ch-grid-virtual-scroller",{"items":[16],"itemsCount":[2,"items-count"],"viewPortItems":[1040],"rowHeight":[32],"browserHeight":[32],"hasGridScroll":[32],"hasWindowScroll":[32],"maxViewPortItems":[32]}]]],["p-16b0acef",[[1,"ch-intersection-observer",{"bottomMargin":[1,"bottom-margin"],"leftMargin":[1,"left-margin"],"rightMargin":[1,"right-margin"],"root":[1],"threshold":[1],"topMargin":[1,"top-margin"]}]]],["p-91fe1c0d",[[1,"ch-next-progress-bar",{"caption":[1],"currentStep":[2,"current-step"],"cssClass":[1,"css-class"],"description":[1],"presented":[4],"steps":[2],"shouldAddFadeInOutAnimation":[32]}]]],["p-59244df7",[[1,"ch-qr",{"text":[1],"radius":[2],"ecLevel":[1,"ec-level"],"fill":[1],"background":[1],"size":[2]}]]],["p-da5317f5",[[1,"ch-sidebar-menu",{"menuTitle":[1,"menu-title"],"singleListOpen":[4,"single-list-open"],"distanceToTop":[2,"distance-to-top"],"collapsible":[4],"activeItemId":[1,"active-item-id"],"activeItem":[1025,"active-item"],"isCollapsed":[1540,"is-collapsed"],"indicator":[32]}]]],["p-d25da0c9",[[1,"ch-sidebar-menu-list",{"listType":[32]}]]],["p-161969f3",[[1,"ch-step-list"]]],["p-c19354eb",[[1,"ch-step-list-item",{"iconSrc":[1,"icon-src"]}]]],["p-6272fb68",[[1,"ch-style",{"href":[1]}]]],["p-383f10ab",[[1,"ch-textblock",{"format":[1],"lineClamp":[4,"line-clamp"],"tooltip":[1],"tooltipShowMode":[1,"tooltip-show-mode"],"contentLines":[32],"maxLines":[32]}]]],["p-fdb7b01c",[[1,"ch-tree",{"checkbox":[4],"checked":[4],"toggleCheckboxes":[1028,"toggle-checkboxes"],"nestedTree":[32],"mainTree":[32],"getChecked":[64]},[[0,"liItemClicked","liItemClickedHandler"],[0,"toggleIconClicked","toggleIconClickedHandler"]]]]],["p-7fc8f83b",[[1,"gx-ide-switch-panel"]]],["p-d0dbf94f",[[1,"gx-ide-switcher"]]],["p-48422a80",[[1,"gxg-accordion",{"disabled":[4],"singleItemOpen":[4,"single-item-open"],"mode":[1],"maxWidth":[1,"max-width"],"noPadding":[4,"no-padding"],"hasBorder":[4,"has-border"],"accordions":[32]},[[0,"accordionItemClicked","itemClickedHandler"],[0,"accordionItemLoaded","itemLoadedHandler"]]]]],["p-8dab6b19",[[1,"gxg-box",{"background":[513],"border":[4],"padding":[513],"minHeight":[1,"min-height"],"height":[1],"maxWidth":[1,"max-width"]}]]],["p-a96aa03c",[[1,"gxg-breadcrumbs"]]],["p-a31b18e7",[[1,"gxg-column",{"width":[513]}]]],["p-36267f2e",[[1,"gxg-columns",{"alignY":[513,"align-y"],"collapseBellow":[513,"collapse-bellow"],"space":[513]}]]],["p-1204b3c2",[[1,"gxg-contextual-menu",{"visible":[516],"widthOverflow":[32],"heightOverflow":[32],"firstRightClick":[32],"topPosition":[32],"leftPosition":[32]}]]],["p-dbf324cc",[[1,"gxg-contextual-menu-submenu"]]],["p-02b723c8",[[1,"gxg-drag-container",{"deletable":[4],"disable":[4],"maxWidth":[1,"max-width"],"padding":[1]},[[0,"clicked","clickedHandler"]]]]],["p-d50430db",[[1,"gxg-loader",{"text":[1],"show":[4],"visibleZIndex":[1,"visible-z-index"],"layerOpacity100":[32],"squaresOpacity100":[32],"textOpacity100":[32],"sendLayerBack":[32]}]]],["p-5c169ad9",[[1,"gxg-menu",{"menuTitle":[1,"menu-title"],"tabs":[516]},[[0,"menuItemActive","menuItemActiveHandler"]]]]],["p-faeb4ee2",[[1,"gxg-menu-slim",{"menuTitle":[1,"menu-title"],"tabs":[516],"hidden":[4],"hideOnSelect":[4,"hide-on-select"],"ellipsis":[4]},[[0,"itemSelected","itemSelectedHandler"],[0,"keyboardNavigation","keyboardNavigationHandler"]]]]],["p-802392b1",[[1,"gxg-option",{"value":[1],"selected":[4],"iconName":[1,"icon-name"]}]]],["p-cb1845a9",[[1,"gxg-options-item",{"disabled":[4]}]]],["p-bca4d4c1",[[4,"gxg-paginator",{"alignment":[513]}]]],["p-2447a18f",[[1,"gxg-pills",{"getPills":[64]}]]],["p-71132a3c",[[1,"gxg-scroll"]]],["p-bce289e6",[[17,"gxg-select-v2",{"label":[1],"labelPosition":[1,"label-position"],"required":[4],"size":[1],"value":[1],"width":[1],"minWidth":[8,"min-width"],"maxWidth":[8,"max-width"],"disabled":[4],"warning":[4],"error":[4],"visible":[32],"myObserver":[32]},[[0,"optionIsSelected","optionIsSelectedHandler"]]]]],["p-23a7d86e",[[1,"gxg-separator",{"type":[513],"margin":[513]}]]],["p-f49a970a",[[1,"gxg-spacer-layout",{"fullHeight":[4,"full-height"],"space":[1],"orientation":[1],"justifyContent":[1,"justify-content"]}]]],["p-cc27eafc",[[1,"gxg-spacer-one",{"space":[1]}]]],["p-39c03652",[[1,"gxg-split"]]],["p-a6f02255",[[1,"gxg-splitter",{"direction":[1],"forceCollapseZero":[4,"force-collapse-zero"],"knob":[513],"minSize":[1,"min-size"],"sizes":[1],"split":[32],"minSizeArray":[32],"sizesArray":[32],"idsArray":[32],"currentSizes":[32],"draggingState":[32],"leftCollapsedToZero":[32],"rightCollapsedToZero":[32],"collapse":[64]}]]],["p-0e131900",[[1,"gxg-stack",{"space":[513],"columnsSpace":[520,"columns-space"]}]]],["p-f13a59cc",[[1,"gxg-test"]]],["p-e318f082",[[1,"gxg-tree",{"checkbox":[1028],"checked":[1540],"opened":[4],"toggleCheckboxes":[4,"toggle-checkboxes"],"multiSelection":[4,"multi-selection"],"getCheckedItems":[64],"getSelectedItems":[64],"toggleItems":[64]},[[0,"checkboxToggled","checkboxToggledHandler"],[0,"doubleClicked","doubleClickedHandler"],[0,"selectionChanged","selectionChangedHandler"],[0,"toggleIconClicked","toggleIconClickedHandler"]]]]],["p-63011e2b",[[1,"gx-ide-status-buttons",{"active":[4],"errors":[2],"warnings":[2],"succeeded":[2],"minimal":[4],"compact":[516],"noBorder":[516,"no-border"],"noInnerBorders":[516,"no-inner-borders"],"noBorderTop":[516,"no-border-top"],"noBorderEnd":[516,"no-border-end"],"noBorderBottom":[516,"no-border-bottom"],"noBorderStart":[516,"no-border-start"],"iconsSize":[32]}]]],["p-5bb2b052",[[1,"gxg-title-editable",{"value":[1025],"titleType":[513,"title-type"],"disableEdition":[516,"disable-edition"],"debounce":[4],"debounceDelay":[2,"debounce-delay"],"disabled":[4],"clickToEdit":[516,"click-to-edit"],"fluid":[516],"focusType":[513,"focus-type"],"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"hideTooltip":[4,"hide-tooltip"],"editing":[32]}]]],["p-47f3b15b",[[1,"gx-ide-ai-message",{"message":[1],"messageType":[1,"message-type"],"filterValue":[1,"filter-value"],"hidden":[4],"visible":[32],"showCopiedMessage":[32]}]]],["p-e45b5686",[[1,"ch-dropdown-item-separator"]]],["p-0ff8550a",[[1,"ch-form-checkbox",{"checkboxId":[1,"checkbox-id"],"checked":[1028],"indeterminate":[516],"disabled":[4],"label":[1],"value":[1],"name":[1]}]]],["p-2422a593",[[0,"ch-grid-rowset-empty"]]],["p-c5e22cd8",[[1,"ch-notifications-item",{"buttonImgSrc":[1,"button-img-src"],"closeButtonLabel":[1,"close-button-label"],"leftImgSrc":[1,"left-img-src"],"showCloseButton":[4,"show-close-button"],"timeToDismiss":[2,"time-to-dismiss"]}]]],["p-15685d3f",[[1,"ch-timer",{"progress":[2],"accessibleName":[1,"accessible-name"],"animationTime":[2,"animation-time"],"presented":[4]}]]],["p-95d1a4e7",[[1,"ch-action-group",{"accessibleName":[1,"accessible-name"],"buttonLabel":[1,"button-label"],"itemsOverflowBehavior":[1,"items-overflow-behavior"],"expandBehavior":[1,"expand-behavior"],"moreActionsButtonPosition":[1,"more-actions-button-position"],"moreActionsDropdownPosition":[1,"more-actions-dropdown-position"],"openOnFocus":[4,"open-on-focus"],"displayedItems":[32]}],[4,"ch-action-group-item",{"floating":[1540]}]]],["p-7ae11b35",[[1,"ch-dropdown-item",{"expandBehavior":[1,"expand-behavior"],"forceContainingBlock":[516,"force-containing-block"],"href":[1],"leftImgSrc":[1,"left-img-src"],"openOnFocus":[4,"open-on-focus"],"position":[1],"rightImgSrc":[1,"right-img-src"],"hasItems":[32],"handleFocusElement":[64]}]]],["p-92a4add2",[[1,"gxg-form-radio-group",{"center":[4],"disabled":[4],"label":[1],"value":[513],"row":[4],"validationMessage":[1025,"validation-message"],"required":[4],"validationStatus":[1025,"validation-status"],"informationMessage":[1,"information-message"]},[[0,"radioChecked","radioCheckedHandler"],[0,"keyPressed","keyPressedHandler"]]]]],["p-e452e69d",[[17,"gxg-form-textarea",{"singleLine":[516,"single-line"],"ai":[516],"toolTip":[4,"tool-tip"],"error":[1028],"label":[513],"labelPosition":[513,"label-position"],"labelWidth":[8,"label-width"],"centerLabel":[4,"center-label"],"maxWidth":[1,"max-width"],"maxHeight":[1,"max-height"],"height":[1],"placeholder":[1],"value":[513],"rows":[2],"warning":[4],"hideValidationMessage":[4,"hide-validation-message"],"disabled":[4],"required":[4],"validationStatus":[1025,"validation-status"],"validationMessage":[1025,"validation-message"],"informationMessage":[1,"information-message"],"resize":[4],"shrink":[32]}]]],["p-fc03bdd3",[[1,"ch-accordion",{"accessibleDescription":[1,"accessible-description"],"accessibleName":[1,"accessible-name"],"expanded":[1028]}]]],["p-a09a63e2",[[1,"ch-next-data-modeling-item",{"actionsVisible":[4,"actions-visible"],"captions":[16],"dataType":[1,"data-type"],"disabled":[4],"entityNameToATTs":[16],"errorTexts":[16],"fieldNames":[16],"level":[2],"maxAtts":[2,"max-atts"],"mode":[1025],"name":[1],"readonly":[4],"showNewFieldBtn":[1028,"show-new-field-btn"],"type":[1],"expanded":[32],"errorType":[32],"waitingMode":[32],"setAddingMode":[64],"clearInput":[64],"checkErrors":[64],"delete":[64],"hideWaitingMode":[64]},[[0,"expandedChange","handleExpandedChange"],[0,"firstNewField","handleFirstNewField"],[0,"firstNewFieldErrors","handleFirstNewFieldErrors"]]],[4,"ch-next-data-modeling"]]],["p-4165015f",[[1,"gxg-form-checkbox-group",{"disabled":[4],"row":[4],"validationStatus":[1025,"validation-status"],"validationMessage":[1025,"validation-message"],"informationMessage":[1,"information-message"],"getValues":[64]},[[0,"change","changeHandler"]]]]],["p-711613dc",[[1,"gxg-list-box-item",{"disabled":[516],"icon":[1],"selected":[516],"siblingIsSelected":[516,"sibling-is-selected"],"highlighted":[516],"active":[516],"index":[514],"emitCheckboxChange":[4,"emit-checkbox-change"],"value":[8],"checkbox":[4],"checked":[4],"mouseOver":[32]},[[0,"change","checkboxChangedHandler"]]],[1,"gxg-list-box",{"theTitle":[1,"the-title"],"checkboxes":[4],"singleSelection":[4,"single-selection"],"allowsEmpty":[4,"allows-empty"],"emitEmptySelection":[4,"emit-empty-selection"],"keyboardSuggestions":[16],"disableSuggestions":[4,"disable-suggestions"],"noBorder":[516,"no-border"],"borderTop":[516,"border-top"],"borderEnd":[516,"border-end"],"borderBottom":[516,"border-bottom"],"borderStart":[516,"border-start"],"disabled":[4],"required":[4],"validationStatus":[1025,"validation-status"],"validationMessage":[1025,"validation-message"],"informationMessage":[1,"information-message"],"selectedItems":[32],"checkedItems":[32],"hideKeyboardSuggestions":[32],"headerHeight":[32],"getSelectedItems":[64]},[[0,"itemLoaded","itemLoadedHandler"],[0,"itemClicked","itemClickedHandler"],[0,"itemSelected","itemSelectedHandler"],[0,"checkboxStateChanged","checkboxStateChangedHandler"]]]]],["p-5a52aba5",[[1,"ch-window",{"container":[16],"xAlign":[1537,"x-align"],"yAlign":[1537,"y-align"],"hidden":[1540],"modal":[516],"caption":[1],"closeText":[1,"close-text"],"closeTooltip":[1,"close-tooltip"],"closeOnOutsideClick":[4,"close-on-outside-click"],"closeOnEscape":[4,"close-on-escape"],"allowDrag":[1,"allow-drag"],"showFooter":[4,"show-footer"],"showHeader":[4,"show-header"],"showMain":[4,"show-main"],"showSeparation":[4,"show-separation"]},[[1,"mousedown","mousedownHandler"],[0,"windowCloseClicked","windowCloseClickedHandler"]]],[0,"ch-window-close",{"disabled":[4]},[[1,"keydown","pressedHandler"],[1,"click","pressedHandler"]]]]],["p-01978a13",[[1,"ch-dropdown",{"buttonLabel":[1,"button-label"],"expandBehavior":[1,"expand-behavior"],"nestedDropdown":[4,"nested-dropdown"],"openOnFocus":[4,"open-on-focus"],"position":[1],"expanded":[32],"expandedWithHover":[32]},[[0,"actionClick","handleActionClick"],[0,"focusChange","handleDropDownItemFocusChange"]]]]],["p-352674d9",[[1,"gxg-date-picker",{"disabled":[4],"alwaysShow":[4,"always-show"],"value":[1],"label":[1],"noWeekends":[4,"no-weekends"],"minDate":[1,"min-date"],"maxDate":[1,"max-date"],"maxWidth":[1,"max-width"],"rtl":[32]}],[1,"gx-ide-entity-selector",{"accessibilityLabels":[16],"defaultValue":[16],"label":[1],"labelPosition":[513,"label-position"],"centerLabel":[4,"center-label"],"labelWidth":[1,"label-width"],"selectEntityCallback":[16],"value":[1040],"buttonHasFocus":[32]}]]],["p-9af7152b",[[17,"gxg-form-radio",{"error":[4],"radioId":[1,"radio-id"],"checked":[516],"disabled":[516],"label":[1],"name":[1],"value":[1]}]]],["p-da2dfb82",[[0,"ch-grid-action-refresh",{"disabled":[4]},[[1,"keydown","pressedHandler"],[1,"click","pressedHandler"]]],[0,"ch-grid-action-settings",{"disabled":[4]},[[1,"keydown","pressedHandler"],[1,"click","pressedHandler"]]],[0,"ch-grid-actionbar"],[0,"ch-paginator",{"activePage":[1538,"active-page"],"totalPages":[2,"total-pages"],"hasNextPage":[4,"has-next-page"]},[[0,"navigateClicked","navigateClickedHandler"],[0,"pageChanged","pageChangedHandler"],[1,"keydown","keyDownHandler"]]],[0,"ch-paginator-navigate",{"type":[513],"disabled":[4]},[[1,"keydown","pressedHandler"],[1,"click","pressedHandler"]]],[1,"ch-paginator-pages",{"page":[1538],"totalPages":[514,"total-pages"],"maxSize":[1538,"max-size"],"renderFirstLastPages":[4,"render-first-last-pages"],"textDots":[1,"text-dots"]},[[1,"keydown","keyDownHandler"],[1,"focusin","focusHandler"]]],[1,"gx-grid-chameleon-column-filter",{"column":[16],"buttonApplyText":[1,"button-apply-text"],"buttonResetText":[1,"button-reset-text"],"equal":[1025],"less":[1025],"greater":[1025]}]]],["p-991a8b38",[[1,"gxg-text",{"href":[1],"disabled":[4],"target":[1],"type":[513],"textAlign":[513,"text-align"],"padding":[513],"maxWidth":[513,"max-width"],"icon":[1],"iconAlign":[1,"icon-align"],"iconAuto":[4,"icon-auto"],"italic":[516]}]]],["p-00b9fa56",[[1,"gx-ide-container",{"inactiveTitle":[4,"inactive-title"],"containerTitle":[1,"container-title"],"titleType":[1,"title-type"],"displayBorder":[4,"display-border"],"displayBorderTop":[4,"display-border-top"],"displayBorderEnd":[4,"display-border-end"],"displayBorderBottom":[4,"display-border-bottom"],"displayBorderStart":[4,"display-border-start"],"sectionsPadding":[1,"sections-padding"],"titleAlignment":[1,"title-alignment"],"noHeadingBorder":[4,"no-heading-border"],"noHeadingPadding":[4,"no-heading-padding"],"headingPaddingTop":[4,"heading-padding-top"],"headingJustify":[1,"heading-justify"],"titleHeightAsInput":[4,"title-height-as-input"],"flexRow":[4,"flex-row"],"flexContent":[4,"flex-content"],"noContentBorderTop":[4,"no-content-border-top"],"noContentPadding":[4,"no-content-padding"],"noContentGap":[4,"no-content-gap"],"alignItems":[1,"align-items"],"justifyContent":[1,"justify-content"],"contentBorderEnd":[4,"content-border-end"],"slimmerAboveFooter":[4,"slimmer-above-footer"],"noAboveFooterPadding":[4,"no-above-footer-padding"],"noBorderAboveFooter":[4,"no-border-above-footer"],"slimmerFooter":[4,"slimmer-footer"],"noFooterPadding":[4,"no-footer-padding"],"footerJustify":[1,"footer-justify"],"noBorderFooter":[4,"no-border-footer"],"footerSubtleShadow":[4,"footer-subtle-shadow"],"hasHeaderSlot":[32],"hasSlottedContent":[32],"hasFooterSlot":[32],"hasAboveFooterSlot":[32],"hasOnlyHeading":[32],"hasOnlyContent":[32],"hasOnlyFooter":[32]}],[1,"gx-ide-title",{"titleCaption":[1,"title-caption"],"type":[1],"alignment":[1],"padding":[516],"noPaddingBottom":[516,"no-padding-bottom"],"border":[516]}],[1,"gxg-title",{"type":[1],"alignment":[513]}]]],["p-fb4409c1",[[17,"gxg-button",{"grabAttention":[516,"grab-attention"],"alwaysBlack":[4,"always-black"],"disabled":[4],"fit":[4],"fullWidth":[4,"full-width"],"icon":[8],"negative":[4],"type":[1],"buttonStylesEditable":[4,"button-styles-editable"],"mouseEnter":[32],"focusIn":[32]}],[1,"gxg-icon",{"color":[1],"size":[1],"type":[8]}]]],["p-68f2bdb2",[[1,"gxg-ide-loader",{"loaderTitle":[1,"loader-title"],"description":[1],"cancelLabel":[1,"cancel-label"],"cancelCallback":[16],"show":[4],"abortTime":[2,"abort-time"],"container":[16],"showWindow":[32],"showWrapper":[32]}],[0,"gxg-tree-view",{"checkbox":[4],"checked":[4],"checkDroppableZoneCallback":[16],"cssClass":[1,"css-class"],"dragDisabled":[4,"drag-disabled"],"dropDisabled":[4,"drop-disabled"],"dropItemsCallback":[16],"editableItems":[4,"editable-items"],"filter":[1],"filterDebounce":[2,"filter-debounce"],"filterList":[16],"filterOptions":[16],"filterType":[1,"filter-type"],"lazyLoadTreeItemsCallback":[16],"modifyItemCaptionCallback":[16],"multiSelection":[4,"multi-selection"],"renderItem":[16],"showLines":[1,"show-lines"],"sortItemsCallback":[16],"toggleCheckboxes":[4,"toggle-checkboxes"],"treeModel":[16],"loadLazyContent":[64],"scrollIntoVisible":[64],"toggleItems":[64],"updateAllItemsProperties":[64],"updateItemsProperties":[64],"updateValidDropZone":[64]}],[1,"gxg-button-group",{"buttonGroupTitle":[1,"button-group-title"],"titleAlignment":[513,"title-alignment"],"defaultSelectedBtnId":[1,"default-selected-btn-id"],"disabled":[516],"fullWidth":[516,"full-width"],"outlined":[516],"disableActive":[516,"disable-active"],"type":[1],"activeButtonId":[1,"active-button-id"],"value":[32],"rtl":[32]}]]],["p-2589e00e",[[4,"gx-ide-list-selector-item",{"itemId":[513,"item-id"],"itemValue":[1,"item-value"],"itemChecked":[1028,"item-checked"],"readonly":[1540],"ellipsis":[1540],"icon":[1],"iconColor":[1025,"icon-color"],"iconSize":[1025,"icon-size"],"noBorder":[1540,"no-border"],"universalSlotEnd":[516,"universal-slot-end"]}],[1,"gx-ide-list-selector",{"listTitle":[1,"list-title"],"ordered":[4],"readonly":[4],"type":[1],"required":[4],"ellipsis":[4],"value":[1025],"iconsColor":[1,"icons-color"],"iconsSize":[1,"icons-size"],"listName":[1,"list-name"],"noItemsBorder":[4,"no-items-border"],"noListBorder":[516,"no-list-border"]},[[2,"itemSelectionChanged","itemSelectionChangedHandler"]]]]],["p-7a4ff1fe",[[1,"ch-suggest-list",{"label":[1]}],[17,"ch-suggest-list-item",{"iconSrc":[1,"icon-src"],"value":[8]}],[4,"gxg-suggest",{"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"disabled":[4],"ellipsis":[516]}],[17,"ch-suggest",{"debounce":[2],"label":[1],"labelPosition":[513,"label-position"],"showLabel":[4,"show-label"],"value":[1025],"showHeader":[4,"show-header"],"suggestTitle":[1,"suggest-title"],"cursorEnd":[4,"cursor-end"],"windowHidden":[32],"selectInputText":[64]},[[2,"itemSelected","itemSelectedHandler"],[0,"focusChangeAttempt","focusChangeAttemptHandler"],[0,"windowClosed","windowClosedHandler"]]]]],["p-232fe7cb",[[1,"ch-icon",{"color":[1],"lazy":[4],"autoColor":[516,"auto-color"],"src":[513],"size":[1],"isVisible":[32],"svgContent":[32]}]]],["p-ba7e56ce",[[1,"gxg-label",{"labelPosition":[1,"label-position"],"disabled":[516],"noMargin":[4,"no-margin"],"center":[4],"for":[1],"width":[1],"tooltip":[1]}],[1,"gxg-tooltip",{"position":[513],"label":[1],"alignEnd":[516,"align-end"],"fixed":[516],"flex":[516],"noBorder":[516,"no-border"],"visible":[32]}]]],["p-5e50df3c",[[17,"gxg-form-checkbox",{"checkboxId":[1,"checkbox-id"],"checked":[4],"indeterminate":[516],"disabled":[4],"label":[1],"value":[1],"name":[1],"iconName":[1,"icon-name"],"alignTop":[4,"align-top"],"required":[516],"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"informationMessage":[1,"information-message"],"tooltip":[1]}]]],["p-b71f6a1f",[[1,"gxg-tab-bar",{"hidden":[4],"displayBorder":[4,"display-border"],"scrollable":[516],"appendedButtons":[32],"tabBarMenuHeight":[32],"tabBarMenuWidth":[32],"tabBarMenuCollapsed":[32],"tabBarMenuPosition":[32],"rtl":[32],"appendTabButtons":[64]},[[0,"tabActivated","tabActivatedHandler"],[0,"PrevOrNextTab","PrevOrNextTabHandler"]]],[17,"gxg-tab-button",{"hidden":[4],"tabLabel":[1,"tab-label"],"tab":[513],"isSelected":[4,"is-selected"],"disabled":[4],"icon":[1],"tabButtonClick":[64]}],[1,"gxg-tab",{"tab":[1],"noPadding":[4,"no-padding"],"flexContainer":[4,"flex-container"],"flex":[4],"overflowAuto":[4,"overflow-auto"],"flexDirection":[1,"flex-direction"],"isSelected":[516,"is-selected"]}],[1,"gxg-tabs",{"position":[1],"height":[513],"maxHeight":[1,"max-height"],"minWidth":[1,"min-width"],"tabBarBorder":[4,"tab-bar-border"],"noBackground":[516,"no-background"],"noPadding":[4,"no-padding"],"activeTab":[32],"setActiveTab":[64]},[[0,"tabActivated","tabActivatedHandler"]]]]],["p-9f4e169e",[[17,"gxg-form-text",{"hideTooltip":[4,"hide-tooltip"],"toolTip":[4,"tool-tip"],"clearButton":[516,"clear-button"],"debounce":[4],"debounceDelay":[2,"debounce-delay"],"disabled":[4],"readonly":[4],"icon":[8],"cursorEnd":[4,"cursor-end"],"iconPosition":[513,"icon-position"],"label":[1],"labelPosition":[513,"label-position"],"borderless":[4],"minimal":[516],"overDarkBackground":[516,"over-dark-background"],"placeholder":[1],"required":[516],"centerLabel":[4,"center-label"],"labelWidth":[8,"label-width"],"type":[1],"multiple":[4],"fileList":[1040],"acceptFile":[1,"accept-file"],"preventValueChangedEmit":[4,"prevent-value-changed-emit"],"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"informationMessage":[1,"information-message"],"value":[513],"maxWidth":[1,"max-width"],"width":[1],"textStyle":[513,"text-style"],"password":[4],"maxLength":[1,"max-length"],"minLength":[1,"min-length"],"cursorInside":[32],"inputSize":[32],"mouseCoordinates":[32],"rtl":[32],"selectInputText":[64],"openFile":[64],"clearInput":[64]}]]],["p-8edc2bbc",[[17,"gxg-combo-box",{"popOver":[4,"pop-over"],"toolTip":[4,"tool-tip"],"fixedIcon":[1,"fixed-icon"],"disabled":[4],"label":[1],"labelPosition":[513,"label-position"],"minWidth":[1,"min-width"],"maxWidth":[1,"max-width"],"listMaxHeight":[1,"list-max-height"],"placeholder":[1],"disableFilter":[4,"disable-filter"],"disableClear":[4,"disable-clear"],"strict":[4],"value":[8],"caseSensitive":[4,"case-sensitive"],"listPosition":[1,"list-position"],"centerLabel":[4,"center-label"],"labelWidth":[8,"label-width"],"required":[516],"validationStatus":[1025,"validation-status"],"validationMessage":[1,"validation-message"],"cursorEnd":[4,"cursor-end"],"informationMessage":[1,"information-message"],"text":[32],"inputTextValue":[32],"listIsOpen":[32],"inputTextIcon":[32],"noMatch":[32],"lastAllowedValue":[32],"slottedContent":[32],"selectionProgramatic":[32],"lastSetValueByUser":[32],"myObserver":[32],"selectedItem":[32],"removedItem":[32],"open":[64],"close":[64],"getValueByIndex":[64],"setValueByIndex":[64],"selectInputText":[64]},[[0,"itemSelected","itemSelectedHandler"],[0,"itemDidLoad","itemDidLoadHandler"],[0,"keyDownComboItem","keyDownComboItemHandler"]]],[1,"gxg-combo-box-item",{"icon":[1],"value":[8],"index":[514],"disabled":[4],"selected":[516],"exactMatch":[516,"exact-match"],"hidden":[516],"iconColor":[32]}]]],["p-f1922c2f",[[0,"ch-tree-view-render",{"checkbox":[4],"checked":[4],"checkDroppableZoneCallback":[16],"cssClass":[1,"css-class"],"dragDisabled":[4,"drag-disabled"],"dropDisabled":[4,"drop-disabled"],"dropItemsCallback":[16],"editableItems":[4,"editable-items"],"filter":[1],"filterDebounce":[2,"filter-debounce"],"filterList":[16],"filterOptions":[16],"filterType":[1,"filter-type"],"gxImageConstructor":[16],"gxSettings":[8,"gx-settings"],"lazyLoadTreeItemsCallback":[16],"modifyItemCaptionCallback":[16],"multiSelection":[4,"multi-selection"],"renderItem":[1040],"showLines":[1,"show-lines"],"sortItemsCallback":[16],"toggleCheckboxes":[4,"toggle-checkboxes"],"treeModel":[16],"useGxRender":[4,"use-gx-render"],"waitDropProcessing":[32],"dropItems":[64],"loadLazyContent":[64],"scrollIntoVisible":[64],"toggleItems":[64],"updateAllItemsProperties":[64],"updateItemsProperties":[64],"updateValidDropZone":[64]},[[0,"checkboxChange","updateCheckboxValue"],[0,"checkboxToggleChange","updateCheckboxValue"],[0,"loadLazyContent","loadLazyChildrenHandler"],[0,"modifyCaption","handleCaptionModification"],[2,"openReference","handleOpenReference"]]],[1,"ch-tree-view-item",{"caption":[1],"checkbox":[4],"checked":[1540],"customRender":[4,"custom-render"],"disabled":[516],"dragDisabled":[4,"drag-disabled"],"dropDisabled":[4,"drop-disabled"],"dragState":[1025,"drag-state"],"downloading":[1028],"editable":[4],"editing":[1028],"expanded":[1028],"lastItem":[4,"last-item"],"lazyLoad":[1028,"lazy-load"],"leaf":[4],"leftImgSrc":[1,"left-img-src"],"level":[2],"indeterminate":[1028],"metadata":[1],"rightImgSrc":[1,"right-img-src"],"selected":[1540],"showDownloadingSpinner":[4,"show-downloading-spinner"],"showExpandableButton":[4,"show-expandable-button"],"showLines":[1,"show-lines"],"toggleCheckboxes":[4,"toggle-checkboxes"],"focusNextItem":[64],"focusNextSibling":[64],"focusPreviousItem":[64],"focusLastItem":[64],"setFocus":[64],"updateChecked":[64]},[[0,"checkboxChange","updateCheckboxValue"]]],[4,"ch-tree-view",{"multiSelection":[4,"multi-selection"],"openSubTreeCountdown":[2,"open-sub-tree-countdown"],"scrollToEdgeOnDrag":[4,"scroll-to-edge-on-drag"],"waitDropProcessing":[4,"wait-drop-processing"],"draggingInTheDocument":[32],"draggingInTree":[32],"clearSelectedItemsInfo":[64],"scrollIntoVisible":[64],"updateValidDropZone":[64]},[[2,"contextmenu","handleContextMenuEvent"],[2,"keydown","handleKeyDownEvents"],[9,"dragstart","handleDragStart"],[11,"dragend","handleDragEnd"],[3,"dragenter","handleDragEnter"],[3,"dragleave","handleDragLeave"],[1,"drop","handleItemDrop"],[0,"itemDragStart","handleItemDragStart"],[0,"itemDragEnd","handleItemDragEnd"],[0,"selectedItemSync","handleSelectedItemSync"],[0,"selectedItemChange","handleSelectedItemChange"]]],[1,"ch-checkbox",{"accessibleName":[1,"accessible-name"],"caption":[1],"checked":[1028],"checkedValue":[1,"checked-value"],"disabled":[4],"highlightable":[4],"indeterminate":[4],"readonly":[4],"unCheckedValue":[1,"un-checked-value"],"value":[1025]}]]],["p-607ab2bf",[[4,"gxg-grid",{"noBorder":[516,"no-border"],"fullHeight":[516,"full-height"]}],[1,"ch-grid",{"rowSelectionMode":[1,"row-selection-mode"],"rowHighlightEnabled":[8,"row-highlight-enabled"],"rowSelectedClass":[1,"row-selected-class"],"rowHighlightedClass":[1,"row-highlighted-class"],"rowFocusedClass":[1,"row-focused-class"],"rowMarkedClass":[1,"row-marked-class"],"allowColumnReorder":[4,"allow-column-reorder"],"columnResizeMode":[1,"column-resize-mode"],"localization":[16],"rowFocused":[32],"rowHighlighted":[32],"rowsMarked":[32],"rowsSelected":[32],"cellSelected":[32],"gridStyle":[32],"getFocusedRow":[64],"getHoveredRow":[64],"getSelectedRows":[64],"getMarkedRows":[64],"getSelectedCell":[64],"selectRow":[64],"selectAllRows":[64],"selectCell":[64],"markRow":[64],"markAllRows":[64],"expandRow":[64],"collapseRow":[64],"rowEnsureVisible":[64],"cellEnsureVisible":[64],"getPreviousRow":[64],"getNextRow":[64],"getPreviousCell":[64],"getNextCell":[64]},[[1,"focus","focusHandler"],[1,"blur","blurHandler"],[1,"cellFocused","cellFocusedHandler"],[8,"keydown","windowKeyDownHandler"],[1,"keydown","keyDownHandler"],[1,"mousemove","mouseMoveHandler"],[1,"mouseleave","mouseLeaveHandler"],[1,"mousedown","clickHandler"],[1,"mouseup","mouseUpHandler"],[1,"dblclick","dblclickHandler"],[0,"contextmenu","contextmenuHandler"],[1,"columnSelectorClicked","columnSelectorClickedHandler"],[1,"cellSelectorClicked","cellSelectorClickedHandler"],[1,"cellRowActionClicked","cellRowActionClickedHandler"],[0,"columnHiddenChanged","columnStyleChangedHandler"],[0,"columnOrderChanged","columnStyleChangedHandler"],[0,"columnFreezeChanged","columnStyleChangedHandler"],[0,"columnSizeChanging","columnStyleChangedHandler"],[0,"columnFreezeChanged","columnFreezeChangedHandler"],[0,"columnResizeStarted","columnResizeStartedHandler"],[0,"columnResizing","columnResizingHandler"],[0,"columnResizeFinished","columnResizeFinishedHandler"],[0,"columnDragStarted","columnDragStartHandler"],[0,"columnDragging","columnDraggingHandler"],[0,"columnDragEnded","columnDragEndHandler"],[0,"rowDragStarted","rowDragStartHandler"],[0,"rowEnsureVisible","rowEnsureVisibleHandler"],[0,"cellEnsureVisible","cellEnsureVisibleHandler"],[0,"settingsShowClicked","settingsShowClickedHandler"],[0,"settingsCloseClicked","settingsCloseClickedHandler"]]],[1,"ch-grid-column",{"columnId":[1,"column-id"],"columnType":[1,"column-type"],"columnIconUrl":[1,"column-icon-url"],"columnImage":[1,"column-image"],"columnImageSet":[1,"column-image-set"],"columnName":[1,"column-name"],"columnNameHidden":[4,"column-name-hidden"],"columnTooltip":[1,"column-tooltip"],"columnNamePosition":[1,"column-name-position"],"richRowDrag":[4,"rich-row-drag"],"richRowSelector":[4,"rich-row-selector"],"richRowSelectorMode":[1,"rich-row-selector-mode"],"richRowSelectorState":[1025,"rich-row-selector-state"],"richRowActions":[4,"rich-row-actions"],"displayObserverClass":[1,"display-observer-class"],"freeze":[1],"hidden":[516],"hideable":[4],"order":[514],"physicalOrder":[2,"physical-order"],"size":[513],"resizable":[4],"resizing":[1540],"sortable":[4],"settingable":[4],"sortDirection":[1537,"sort-direction"],"showSettings":[1540,"show-settings"]},[[1,"click","clickHandler"],[0,"columnResizeStarted","columnResizeStartedHandler"],[0,"columnResizeFinished","columnResizeFinishedHandler"]]],[0,"ch-grid-columnset",null,[[0,"columnSortChanged","columnSortChangedHandler"]]],[1,"ch-grid-column-settings",{"column":[16],"show":[516]},[[0,"windowClosed","windowClosedHandler"],[0,"columnSettingsChanged","columnSettingsChangedHandler"]]],[1,"ch-grid-settings",{"grid":[16],"show":[1540]},[[0,"windowClosed","windowClosedHandler"]]],[1,"ch-grid-column-resize",{"column":[16],"resizing":[32]},[[1,"click","clickHandler"],[0,"dblclick","dblclickHandler"],[0,"columnResizeStarted","columnResizeStartedHandler"],[0,"columnResizeFinished","columnResizeFinishedHandler"]]],[1,"ch-grid-settings-columns",{"columns":[16]}]]]]'),e))));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as t,h as n,H as r,g as o}from"./p-0906fb46.js";import{f as e}from"./p-b374d112.js";const i=new Map;let s;function l(t){var n;(!t.repeat||t.repeat&&(null===(n=null==s?void 0:s.shortcut.conditions)||void 0===n?void 0:n.allowRepeat))&&(s=function(t){const n=i.get(c(t.ctrlKey,t.altKey,t.shiftKey,t.metaKey,t.key));if(n&&function(t){var n,r,o,i;const s=e();return(null===(n=t.shortcut.conditions)||void 0===n?void 0:n.focusInclude)?Array.from(t.root.querySelectorAll(null===(r=t.shortcut.conditions)||void 0===r?void 0:r.focusInclude)).some((t=>s.includes(t))):!(null===(o=t.shortcut.conditions)||void 0===o?void 0:o.focusExclude)||!Array.from(t.root.querySelectorAll(null===(i=t.shortcut.conditions)||void 0===i?void 0:i.focusExclude)).some((t=>s.includes(t)))}(n)){const r=a(n.shortcut.selector,n.root);r&&("click"===n.shortcut.action?r.dispatchEvent(new Event("click")):r.focus(),!1!==n.shortcut.preventDefault&&t.preventDefault())}return n}(t))}function c(t,n,r,o,e){return[t?"Ctrl":null,n?"Alt":null,r?"Shift":null,o?"Meta":null,e?e.charAt(0).toUpperCase()+e.slice(1):null].filter((t=>null!==t)).join("+")}function a(t,n){const r=(t,n)=>{const o=t.shadowRoot,e=n.split(" "),i=o.querySelector(e.map((t=>`[part~="${t}"]`)).join(""));if(i)return i;const s=o.querySelector(e.map((t=>`[exportparts*="${t}"]`)).join(""));if(s){const t=[],n=s.getAttribute("exportparts");if(e.forEach((r=>{const o=n.match(`(?:([\\w-]+):)?(${r})`)[1];o&&t.push(o)})),e.length===t.length)return r(s,t.join(" "))}return null};if(t.includes("::part")){const o=t.match("(.*)::part\\(([^)]+)\\)"),e=o[2];return r(n.querySelector(o[1]),e)}return n.querySelector(t)}const u=class{constructor(n){t(this,n),this.showShortcuts=!1,this.showKey="F10",this.windowClosedHandler=()=>{this.showShortcuts=!1}}componentDidLoad(){this.src&&fetch(this.src).then((t=>{t.ok&&t.json().then((t=>{const n=this.el.getRootNode();!function(t,n,r){r.forEach((r=>{(function(t=""){return t.split(" ").map((t=>t.split("+").reduce(((t,n)=>{switch(n.toLowerCase()){case"ctrl":t.ctrl=!0;break;case"alt":t.alt=!0;break;case"shift":t.shift=!0;break;case"meta":t.meta=!0;break;default:t.key=n}return t}),{ctrl:!1,alt:!1,shift:!1,meta:!1,key:""})))})(r.keyShortcuts).forEach((o=>{i.set(c(o.ctrl,o.alt,o.shift,o.meta,o.key),{name:t,root:n,shortcut:r})}))})),i.size>0&&window.addEventListener("keydown",l,{capture:!0})}(this.src,n,t)}))}))}disconnectedCallback(){!function(t){const n=[];i.forEach(((r,o)=>{r.name===t&&n.push(o)})),n.forEach((t=>i.delete(t))),0===i.size&&window.removeEventListener("keydown",l,{capture:!0})}(this.src)}windowKeyDownHandler(t){t.key===this.showKey&&(this.showShortcuts=!this.showShortcuts,t.preventDefault())}renderShortcuts(){return Array.from(i.values()).filter((t=>{var n;return!(null===(n=t.shortcut.conditions)||void 0===n?void 0:n.focusInclude)})).map((t=>({element:a(t.shortcut.selector,t.root),keyShortcuts:t.shortcut.keyShortcuts,legendPosition:t.shortcut.legendPosition}))).map((t=>n("ch-window",{container:t.element,modal:!1,hidden:!1,closeOnEscape:!0,closeOnOutsideClick:!0,xAlign:"outside-end",yAlign:"inside-start",onWindowClosed:this.windowClosedHandler,exportparts:"mask:element"},n("span",{part:"tooltip"},t.keyShortcuts))))}render(){return n(r,null,this.showShortcuts&&this.renderShortcuts())}get el(){return o(this)}};u.style=":host{display:contents}";export{u as ch_shortcuts}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as t,c as i,h as s}from"./p-0906fb46.js";const e=(t,i)=>{i.forEach((i=>{const s=i.Level;"LEVEL"===i.Type&&(t[i.DataType]=s.map((t=>t.Name)),e(t,s))}))},h=class{constructor(s){t(this,s),this.fieldAdded=i(this,"fieldAdded",7),this.fieldRemoved=i(this,"fieldRemoved",7),this.entities=[],this.editedControl=null,this.entityWasAdded="none",this.captions={ATT:"Attribute",ENTITY:"Entity",LEVEL:"Collection",adding:"Adding...",addNewEntity:"Add new entity",addNewField:"Add new field",cancel:"Cancel",collection:"Collection",confirm:"Confirm",delete:"Delete",deleteMode:"Confirm delete?",deleting:"Deleting...",edit:"Edit",editing:"Saving...",newEntity:"New Entity",newField:"New Field"},this.disabled=!1,this.errorTexts={Empty:"Field is empty.",AlreadyDefined1:"Field ",AlreadyDefinedEntity1:"Entity ",AlreadyDefined2:" already exists."},this.hideLoading=null,this.maxAtts=3,this.readonly=!1,this.addField=t=>i=>{this.addEntityItem(t,i.detail),this.updateReferences(i,!0)},this.deleteField=(t,i)=>s=>{t.remove(i+1),this.updateReferences(s)},this.editField=t=>i=>{t.Name=i.detail.name,t.Type=i.detail.type,t.DataType="",this.updateReferences(i,!0)},this.addEntity=t=>i=>{this.entityWasAdded="adding";const s={Name:i.detail.name,Level:this.createGxCollectionCallback()};t.push(s),this.addEntityItem(s.Level,i.detail.level[0]),this.updateReferences(i,!0)},this.editEntity=t=>i=>{t.Name=i.detail.name,this.updateReferences(i,!0)}}handleDataModelChange(t){this.entityNameToATTs=(t=>{if(!t)return{};const i={};return t.Entities.forEach((t=>{const s=t.Level;i[t.Name]=s.map((t=>t.Name)),s&&e(i,s)})),i})(t),this.entities=Object.keys(this.entityNameToATTs)}handleHideLoadingChange(){this.editedControl.hideWaitingMode(),"adding"===this.entityWasAdded&&(this.entityWasAdded="finished",this.processEntityAdding())}addEntityItem(t,i){t.push({Name:i.name,Type:i.type,DataType:""})}updateReferences(t,i=!1){t.stopPropagation(),this.editedControl=t.target,i?this.fieldAdded.emit():this.fieldRemoved.emit(),this.processEntityAdding()}processEntityAdding(){if(!this.editedControl||"none"===this.entityWasAdded)return;const t=this.editedControl.classList,i=this.editedControl.firstElementChild.classList,s=this.editedControl.firstElementChild.firstElementChild.classList;return"adding"===this.entityWasAdded?(t.remove(this.addingModeCommonClass,this.entityAddingModeClass),t.add(this.entityClass,this.commonClass),i.add(this.fieldContainerClass),s.remove(this.addingModeCommonClass,...this.fieldAddingModeClass.split(" ")),void s.add(this.fieldClass,this.fieldCommonClass,this.commonClass)):"finished"===this.entityWasAdded?(t.remove(this.entityClass),t.add(this.addingModeCommonClass,this.entityAddingModeClass),i.remove(this.fieldContainerClass),s.remove(this.fieldClass),s.add(this.addingModeCommonClass,...this.fieldAddingModeClass.split(" ")),void(this.entityWasAdded="none")):void 0}componentWillLoad(){this.handleDataModelChange(this.dataModel)}render(){var t,i;return s("ch-next-data-modeling",{class:this.cssClass},null!=this.dataModel&&null!=this.dataModel.Entities&&this.dataModel.Entities.map(((t,i)=>{var e,h,d;return s("ch-next-data-modeling-item",{key:t.Name,captions:this.captions,class:this.entityClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,fieldNames:this.entities,name:t.Name,level:0,readonly:this.readonly,onDeleteField:this.readonly?null:this.deleteField(null===(e=this.dataModelToEdit)||void 0===e?void 0:e.Entities,i),onEditField:this.readonly?null:this.editEntity(null===(h=this.dataModelToEdit)||void 0===h?void 0:h.Entities[i])},s("ch-next-data-modeling",{class:this.fieldContainerClass},t.Level.map(((e,h)=>{var d,n,l;return s("ch-next-data-modeling-item",{key:e.Name,captions:this.captions,class:this.fieldClass+" "+this.fieldCommonClass+" "+this.commonClass,dataType:e.DataType,disabled:this.disabled,entityNameToATTs:this.entityNameToATTs,errorTexts:this.errorTexts,fieldNames:this.entityNameToATTs[t.Name],maxAtts:this.maxAtts,name:e.Name,readonly:this.readonly,type:e.Type,onDeleteField:this.readonly?null:this.deleteField(null===(d=this.dataModelToEdit)||void 0===d?void 0:d.Entities[i].Level,h),onEditField:this.readonly?null:this.editField(null===(n=this.dataModelToEdit)||void 0===n?void 0:n.Entities[i].Level[h])},null!=e.Level&&e.Level.length>0&&s("ch-next-data-modeling",{class:this.subFieldContainerClass},e.Level.map(((t,d)=>{var n,l;return s("ch-next-data-modeling-item",{key:t.Name,captions:this.captions,class:this.subFieldClass+" "+this.fieldCommonClass+" "+this.commonClass,dataType:t.DataType,disabled:this.disabled,entityNameToATTs:this.entityNameToATTs,errorTexts:this.errorTexts,fieldNames:this.entityNameToATTs[e.DataType],level:2,maxAtts:this.maxAtts,name:t.Name,readonly:this.readonly,type:t.Type,onDeleteField:this.readonly?null:this.deleteField(null===(n=this.dataModelToEdit)||void 0===n?void 0:n.Entities[i].Level[h].Level,d),onEditField:this.readonly?null:this.editField(null===(l=this.dataModelToEdit)||void 0===l?void 0:l.Entities[i].Level[h].Level[d])})})),!this.readonly&&s("ch-next-data-modeling-item",{key:"-1",captions:this.captions,class:this.subFieldAddingModeClass+" "+this.fieldCommonClass+" "+this.addingModeCommonClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,fieldNames:this.entityNameToATTs[e.DataType],level:2,mode:"add",type:"ATT",onNewField:this.addField(null===(l=this.dataModelToEdit)||void 0===l?void 0:l.Entities[i].Level[h].Level)})))})),!this.readonly&&s("ch-next-data-modeling-item",{key:"-1",captions:this.captions,class:this.fieldAddingModeClass+" "+this.fieldCommonClass+" "+this.addingModeCommonClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,fieldNames:this.entityNameToATTs[t.Name],mode:"add",type:"ATT",onNewField:this.addField(null===(d=this.dataModelToEdit)||void 0===d?void 0:d.Entities[i].Level)})))})),(null===(t=this.dataModel)||void 0===t?void 0:t.Entities)&&!this.readonly&&s("ch-next-data-modeling-item",{key:"-1",captions:this.captions,class:this.entityAddingModeClass+" "+this.addingModeCommonClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,fieldNames:this.entities,level:0,mode:"add",onNewEntity:this.addEntity(null===(i=this.dataModelToEdit)||void 0===i?void 0:i.Entities)},s("ch-next-data-modeling",null,s("ch-next-data-modeling-item",{actionsVisible:!1,captions:this.captions,class:this.fieldAddingModeClass+" "+this.fieldCommonClass+" "+this.addingModeCommonClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,mode:"add",showNewFieldBtn:!1,type:"ATT"}))))}static get watchers(){return{dataModel:["handleDataModelChange"],hideLoading:["handleHideLoadingChange"]}}};h.style="ch-next-data-modeling-render{display:contents}";export{h as ch_next_data_modeling_render}
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,c as i,h as s}from"./p-0906fb46.js";const e=(t,i)=>{i.forEach((i=>{const s=i.Level;"LEVEL"===i.Type&&(t[i.DataType]=s.map((t=>t.Name)),e(t,s))}))},h=class{constructor(s){t(this,s),this.fieldAdded=i(this,"fieldAdded",7),this.fieldRemoved=i(this,"fieldRemoved",7),this.entities=[],this.editedControl=null,this.entityWasAdded="none",this.captions={ATT:"Attribute",ENTITY:"Entity",LEVEL:"Collection",adding:"Adding...",addNewEntity:"Add new entity",addNewField:"Add new field",cancel:"Cancel",collection:"Collection",confirm:"Confirm",delete:"Delete",deleteMode:"Confirm delete?",deleting:"Deleting...",edit:"Edit",editing:"Saving...",newEntity:"New Entity",newField:"New Field"},this.disabled=!1,this.errorTexts={Empty:"Field is empty.",AlreadyDefined1:"Field ",AlreadyDefinedEntity1:"Entity ",AlreadyDefined2:" already exists."},this.hideLoading=null,this.maxAtts=3,this.readonly=!1,this.addField=t=>i=>{this.addEntityItem(t,i.detail),this.updateReferences(i,!0)},this.deleteField=(t,i)=>s=>{t.remove(i+1),this.updateReferences(s)},this.editField=t=>i=>{t.Name=i.detail.name,t.Type=i.detail.type,t.DataType="",this.updateReferences(i,!0)},this.addEntity=t=>i=>{const s={Name:i.detail.name,Level:this.createGxCollectionCallback()};t.push(s),this.addEntityItem(s.Level,i.detail.level[0]),this.updateReferences(i,!0),this.entityWasAdded="adding"},this.editEntity=t=>i=>{t.Name=i.detail.name,this.updateReferences(i,!0)}}handleDataModelChange(t){this.entityNameToATTs=(t=>{if(!t)return{};const i={};return t.Entities.forEach((t=>{const s=t.Level;i[t.Name]=s.map((t=>t.Name)),s&&e(i,s)})),i})(t),this.entities=Object.keys(this.entityNameToATTs)}handleHideLoadingChange(){this.editedControl.hideWaitingMode(),"adding"===this.entityWasAdded&&(this.entityWasAdded="finished")}addEntityItem(t,i){t.push({Name:i.name,Type:i.type,DataType:""})}updateReferences(t,i=!1){t.stopPropagation(),this.editedControl=t.target,i?this.fieldAdded.emit():this.fieldRemoved.emit(),this.processEntityAdding()}processEntityAdding(){if(!this.editedControl||"none"===this.entityWasAdded)return;const t=this.editedControl.classList,i=this.editedControl.firstElementChild.classList,s=this.editedControl.firstElementChild.firstElementChild.classList;return"adding"===this.entityWasAdded?(t.remove(this.addingModeCommonClass,this.entityAddingModeClass),t.add(this.entityClass,this.commonClass),i.add(this.fieldContainerClass),s.remove(this.addingModeCommonClass,...this.fieldAddingModeClass.split(" ")),void s.add(this.fieldClass,this.fieldCommonClass,this.commonClass)):"finished"===this.entityWasAdded?(t.remove(this.entityClass),t.add(this.addingModeCommonClass,this.entityAddingModeClass),i.remove(this.fieldContainerClass),s.remove(this.fieldClass),s.add(this.addingModeCommonClass,...this.fieldAddingModeClass.split(" ")),void(this.entityWasAdded="none")):void 0}componentWillLoad(){this.handleDataModelChange(this.dataModel)}render(){var t,i;return s("ch-next-data-modeling",{class:this.cssClass},null!=this.dataModel&&null!=this.dataModel.Entities&&this.dataModel.Entities.map(((t,i)=>{var e,h,d;return s("ch-next-data-modeling-item",{key:t.Name,captions:this.captions,class:this.entityClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,fieldNames:this.entities,name:t.Name,level:0,readonly:this.readonly,onDeleteField:this.readonly?null:this.deleteField(null===(e=this.dataModelToEdit)||void 0===e?void 0:e.Entities,i),onEditField:this.readonly?null:this.editEntity(null===(h=this.dataModelToEdit)||void 0===h?void 0:h.Entities[i])},s("ch-next-data-modeling",{class:this.fieldContainerClass},t.Level.map(((e,h)=>{var d,n,l;return s("ch-next-data-modeling-item",{key:e.Name,captions:this.captions,class:this.fieldClass+" "+this.fieldCommonClass+" "+this.commonClass,dataType:e.DataType,disabled:this.disabled,entityNameToATTs:this.entityNameToATTs,errorTexts:this.errorTexts,fieldNames:this.entityNameToATTs[t.Name],maxAtts:this.maxAtts,name:e.Name,readonly:this.readonly,type:e.Type,onDeleteField:this.readonly?null:this.deleteField(null===(d=this.dataModelToEdit)||void 0===d?void 0:d.Entities[i].Level,h),onEditField:this.readonly?null:this.editField(null===(n=this.dataModelToEdit)||void 0===n?void 0:n.Entities[i].Level[h])},null!=e.Level&&e.Level.length>0&&s("ch-next-data-modeling",{class:this.subFieldContainerClass},e.Level.map(((t,d)=>{var n,l;return s("ch-next-data-modeling-item",{key:t.Name,captions:this.captions,class:this.subFieldClass+" "+this.fieldCommonClass+" "+this.commonClass,dataType:t.DataType,disabled:this.disabled,entityNameToATTs:this.entityNameToATTs,errorTexts:this.errorTexts,fieldNames:this.entityNameToATTs[e.DataType],level:2,maxAtts:this.maxAtts,name:t.Name,readonly:this.readonly,type:t.Type,onDeleteField:this.readonly?null:this.deleteField(null===(n=this.dataModelToEdit)||void 0===n?void 0:n.Entities[i].Level[h].Level,d),onEditField:this.readonly?null:this.editField(null===(l=this.dataModelToEdit)||void 0===l?void 0:l.Entities[i].Level[h].Level[d])})})),!this.readonly&&s("ch-next-data-modeling-item",{key:"-1",captions:this.captions,class:this.subFieldAddingModeClass+" "+this.fieldCommonClass+" "+this.addingModeCommonClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,fieldNames:this.entityNameToATTs[e.DataType],level:2,mode:"add",type:"ATT",onNewField:this.addField(null===(l=this.dataModelToEdit)||void 0===l?void 0:l.Entities[i].Level[h].Level)})))})),!this.readonly&&s("ch-next-data-modeling-item",{key:"-1",captions:this.captions,class:this.fieldAddingModeClass+" "+this.fieldCommonClass+" "+this.addingModeCommonClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,fieldNames:this.entityNameToATTs[t.Name],mode:"add",type:"ATT",onNewField:this.addField(null===(d=this.dataModelToEdit)||void 0===d?void 0:d.Entities[i].Level)})))})),(null===(t=this.dataModel)||void 0===t?void 0:t.Entities)&&!this.readonly&&s("ch-next-data-modeling-item",{key:"-1",captions:this.captions,class:this.entityAddingModeClass+" "+this.addingModeCommonClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,fieldNames:this.entities,level:0,mode:"add",onNewEntity:this.addEntity(null===(i=this.dataModelToEdit)||void 0===i?void 0:i.Entities)},s("ch-next-data-modeling",null,s("ch-next-data-modeling-item",{actionsVisible:!1,captions:this.captions,class:this.fieldAddingModeClass+" "+this.fieldCommonClass+" "+this.addingModeCommonClass+" "+this.commonClass,disabled:this.disabled,errorTexts:this.errorTexts,mode:"add",showNewFieldBtn:!1,type:"ATT"}))))}static get watchers(){return{dataModel:["handleDataModelChange"],hideLoading:["handleHideLoadingChange"]}}};h.style="ch-next-data-modeling-render{display:contents}";export{h as ch_next_data_modeling_render}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,h as n,H as o,g as i}from"./p-0906fb46.js";import{f as r}from"./p-b374d112.js";const s=new Map;function e(t){const n=s.get(l(t.ctrlKey,t.altKey,t.shiftKey,t.metaKey,t.key));if(n&&function(t){var n,o,i,s;const e=r();return(null===(n=t.shortcut.conditions)||void 0===n?void 0:n.focusInclude)?Array.from(t.root.querySelectorAll(null===(o=t.shortcut.conditions)||void 0===o?void 0:o.focusInclude)).some((t=>e.includes(t))):!(null===(i=t.shortcut.conditions)||void 0===i?void 0:i.focusExclude)||!Array.from(t.root.querySelectorAll(null===(s=t.shortcut.conditions)||void 0===s?void 0:s.focusExclude)).some((t=>e.includes(t)))}(n)){const o=c(n.shortcut.selector,n.root);o&&("click"===n.shortcut.action?o.dispatchEvent(new Event("click")):o.focus(),!1!==n.shortcut.preventDefault&&t.preventDefault())}}function l(t,n,o,i,r){return[t?"Ctrl":null,n?"Alt":null,o?"Shift":null,i?"Meta":null,r?r.charAt(0).toUpperCase()+r.slice(1):null].filter((t=>null!==t)).join("+")}function c(t,n){const o=(t,n)=>{const i=t.shadowRoot,r=n.split(" "),s=i.querySelector(r.map((t=>`[part~="${t}"]`)).join(""));if(s)return s;const e=i.querySelector(r.map((t=>`[exportparts*="${t}"]`)).join(""));if(e){const t=[],n=e.getAttribute("exportparts");if(r.forEach((o=>{const i=n.match(`(?:([\\w-]+):)?(${o})`)[1];i&&t.push(i)})),r.length===t.length)return o(e,t.join(" "))}return null};if(t.includes("::part")){const i=t.match("(.*)::part\\(([^)]+)\\)"),r=i[2];return o(n.querySelector(i[1]),r)}return n.querySelector(t)}const u=class{constructor(n){t(this,n),this.showShortcuts=!1,this.showKey="F10",this.windowClosedHandler=()=>{this.showShortcuts=!1}}componentDidLoad(){this.src&&fetch(this.src).then((t=>{t.ok&&t.json().then((t=>{const n=this.el.getRootNode();!function(t,n,o){o.forEach((o=>{(function(t=""){return t.split(" ").map((t=>{const n=t.match(/(?:(?<ctrl>Ctrl)?(?<alt>Alt)?(?<shift>Shift)?(?<meta>Meta)?\+?)*(?<key>.*)?/i);if(""!==n.groups.key)return{ctrl:void 0!==n.groups.ctrl,alt:void 0!==n.groups.alt,shift:void 0!==n.groups.shift,meta:void 0!==n.groups.meta,key:n.groups.key}}))})(o.keyShortcuts).forEach((i=>{s.set(l(i.ctrl,i.alt,i.shift,i.meta,i.key),{name:t,root:n,shortcut:o})}))})),s.size>0&&window.addEventListener("keydown",e,{capture:!0})}(this.src,n,t)}))}))}disconnectedCallback(){!function(t){const n=[];s.forEach(((o,i)=>{o.name===t&&n.push(i)})),n.forEach((t=>s.delete(t))),0===s.size&&window.removeEventListener("keydown",e,{capture:!0})}(this.src)}windowKeyDownHandler(t){t.key===this.showKey&&(this.showShortcuts=!this.showShortcuts,t.preventDefault())}renderShortcuts(){return Array.from(s.values()).filter((t=>{var n;return!(null===(n=t.shortcut.conditions)||void 0===n?void 0:n.focusInclude)})).map((t=>({element:c(t.shortcut.selector,t.root),keyShortcuts:t.shortcut.keyShortcuts,legendPosition:t.shortcut.legendPosition}))).map((t=>n("ch-window",{container:t.element,modal:!1,hidden:!1,closeOnEscape:!0,closeOnOutsideClick:!0,xAlign:"outside-end",yAlign:"inside-start",onWindowClosed:this.windowClosedHandler,exportparts:"mask:element"},n("span",{part:"tooltip"},t.keyShortcuts))))}render(){return n(o,null,this.showShortcuts&&this.renderShortcuts())}get el(){return i(this)}};u.style=":host{display:contents}";export{u as ch_shortcuts}
|