@genexus/genexus-ide-ui 1.1.45 → 1.1.47
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/gx-ide-plugin-details.cjs.entry.js +1 -1
- package/dist/cjs/gx-ide-plugin-details.cjs.entry.js.map +1 -1
- package/dist/cjs/gx-ide-start-page.cjs.entry.js +10 -5
- package/dist/cjs/gx-ide-start-page.cjs.entry.js.map +1 -1
- package/dist/collection/components/plugin-details/plugin-details.css +3 -1
- package/dist/collection/components/start-page/start-page.css +27 -5
- package/dist/collection/components/start-page/start-page.js +9 -4
- package/dist/collection/components/start-page/start-page.js.map +1 -1
- package/dist/collection/pages/assets/images/plugin/python-logo.svg +16 -0
- package/dist/components/gx-ide-plugin-details.js +1 -1
- package/dist/components/gx-ide-plugin-details.js.map +1 -1
- package/dist/components/gx-ide-start-page.js +10 -5
- package/dist/components/gx-ide-start-page.js.map +1 -1
- package/dist/esm/gx-ide-plugin-details.entry.js +1 -1
- package/dist/esm/gx-ide-plugin-details.entry.js.map +1 -1
- package/dist/esm/gx-ide-start-page.entry.js +10 -5
- package/dist/esm/gx-ide-start-page.entry.js.map +1 -1
- package/dist/genexus-ide-ui/genexus-ide-ui.esm.js +1 -1
- package/dist/genexus-ide-ui/{p-60302626.entry.js → p-18bbaa49.entry.js} +26 -26
- package/dist/genexus-ide-ui/p-18bbaa49.entry.js.map +1 -0
- package/dist/genexus-ide-ui/{p-d67ff6a5.entry.js → p-ab1e2886.entry.js} +51 -48
- package/dist/genexus-ide-ui/p-ab1e2886.entry.js.map +1 -0
- package/package.json +1 -1
- package/dist/genexus-ide-ui/p-60302626.entry.js.map +0 -1
- package/dist/genexus-ide-ui/p-d67ff6a5.entry.js.map +0 -1
|
@@ -2,9 +2,9 @@ import { r as n, h as e, H as t, a } from "./p-97107ecc.js";
|
|
|
2
2
|
|
|
3
3
|
import { g as i } from "./p-401bfc97.js";
|
|
4
4
|
|
|
5
|
-
import { L as
|
|
5
|
+
import { L as o } from "./p-311eedf3.js";
|
|
6
6
|
|
|
7
|
-
import { f as
|
|
7
|
+
import { f as r } from "./p-1972b953.js";
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* @module constants
|
|
@@ -168,9 +168,9 @@ function getDefaultOptions() {
|
|
|
168
168
|
const t = getDefaultOptions();
|
|
169
169
|
const a = e?.weekStartsOn ?? e?.locale?.options?.weekStartsOn ?? t.weekStartsOn ?? t.locale?.options?.weekStartsOn ?? 0;
|
|
170
170
|
const i = toDate(n, e?.in);
|
|
171
|
-
const
|
|
172
|
-
const
|
|
173
|
-
i.setDate(i.getDate() -
|
|
171
|
+
const o = i.getDay();
|
|
172
|
+
const r = (o < a ? 7 : 0) + o - a;
|
|
173
|
+
i.setDate(i.getDate() - r);
|
|
174
174
|
i.setHours(0, 0, 0, 0);
|
|
175
175
|
return i;
|
|
176
176
|
}
|
|
@@ -292,9 +292,9 @@ function normalizeDates(n, ...e) {
|
|
|
292
292
|
* //=> 8
|
|
293
293
|
*/ function differenceInCalendarMonths(n, e, t) {
|
|
294
294
|
const [a, i] = normalizeDates(t?.in, n, e);
|
|
295
|
-
const
|
|
296
|
-
const
|
|
297
|
-
return
|
|
295
|
+
const o = a.getFullYear() - i.getFullYear();
|
|
296
|
+
const r = a.getMonth() - i.getMonth();
|
|
297
|
+
return o * 12 + r;
|
|
298
298
|
}
|
|
299
299
|
|
|
300
300
|
function getRoundingMethod(n) {
|
|
@@ -434,17 +434,17 @@ function getRoundingMethod(n) {
|
|
|
434
434
|
* const result = differenceInMonths(new Date(2014, 8, 1), new Date(2014, 0, 31))
|
|
435
435
|
* //=> 7
|
|
436
436
|
*/ function differenceInMonths(n, e, t) {
|
|
437
|
-
const [a, i,
|
|
438
|
-
const
|
|
439
|
-
const s = Math.abs(differenceInCalendarMonths(i,
|
|
437
|
+
const [a, i, o] = normalizeDates(t?.in, n, n, e);
|
|
438
|
+
const r = compareAsc(i, o);
|
|
439
|
+
const s = Math.abs(differenceInCalendarMonths(i, o));
|
|
440
440
|
if (s < 1) return 0;
|
|
441
441
|
if (i.getMonth() === 1 && i.getDate() > 27) i.setDate(30);
|
|
442
|
-
i.setMonth(i.getMonth() -
|
|
443
|
-
let c = compareAsc(i,
|
|
444
|
-
if (isLastDayOfMonth(a) && s === 1 && compareAsc(a,
|
|
442
|
+
i.setMonth(i.getMonth() - r * s);
|
|
443
|
+
let c = compareAsc(i, o) === -r;
|
|
444
|
+
if (isLastDayOfMonth(a) && s === 1 && compareAsc(a, o) === 1) {
|
|
445
445
|
c = false;
|
|
446
446
|
}
|
|
447
|
-
const d =
|
|
447
|
+
const d = r * (s - +c);
|
|
448
448
|
return d === 0 ? 0 : d;
|
|
449
449
|
}
|
|
450
450
|
|
|
@@ -662,9 +662,9 @@ function buildLocalizeFn(n) {
|
|
|
662
662
|
const a = t?.width ? String(t.width) : n.defaultWidth;
|
|
663
663
|
i = n.values[a] || n.values[e];
|
|
664
664
|
}
|
|
665
|
-
const
|
|
665
|
+
const o = n.argumentCallback ? n.argumentCallback(e) : e;
|
|
666
666
|
// @ts-expect-error - For some reason TypeScript just don't want to match it, no matter how hard we try. I challenge you to try to remove it!
|
|
667
|
-
return i[
|
|
667
|
+
return i[o];
|
|
668
668
|
};
|
|
669
669
|
}
|
|
670
670
|
|
|
@@ -818,19 +818,19 @@ function buildMatchFn(n) {
|
|
|
818
818
|
return (e, t = {}) => {
|
|
819
819
|
const a = t.width;
|
|
820
820
|
const i = a && n.matchPatterns[a] || n.matchPatterns[n.defaultMatchWidth];
|
|
821
|
-
const
|
|
822
|
-
if (!
|
|
821
|
+
const o = e.match(i);
|
|
822
|
+
if (!o) {
|
|
823
823
|
return null;
|
|
824
824
|
}
|
|
825
|
-
const
|
|
825
|
+
const r = o[0];
|
|
826
826
|
const s = a && n.parsePatterns[a] || n.parsePatterns[n.defaultParseWidth];
|
|
827
|
-
const c = Array.isArray(s) ? findIndex(s, (n => n.test(
|
|
828
|
-
findKey(s, (n => n.test(
|
|
827
|
+
const c = Array.isArray(s) ? findIndex(s, (n => n.test(r))) : // [TODO] -- I challenge you to fix the type
|
|
828
|
+
findKey(s, (n => n.test(r)));
|
|
829
829
|
let d;
|
|
830
830
|
d = n.valueCallback ? n.valueCallback(c) : c;
|
|
831
831
|
d = t.valueCallback ? // [TODO] -- I challenge you to fix the type
|
|
832
832
|
t.valueCallback(d) : d;
|
|
833
|
-
const l = e.slice(
|
|
833
|
+
const l = e.slice(r.length);
|
|
834
834
|
return {
|
|
835
835
|
value: d,
|
|
836
836
|
rest: l
|
|
@@ -861,14 +861,14 @@ function buildMatchPatternFn(n) {
|
|
|
861
861
|
const a = e.match(n.matchPattern);
|
|
862
862
|
if (!a) return null;
|
|
863
863
|
const i = a[0];
|
|
864
|
-
const
|
|
865
|
-
if (!
|
|
866
|
-
let
|
|
864
|
+
const o = e.match(n.parsePattern);
|
|
865
|
+
if (!o) return null;
|
|
866
|
+
let r = n.valueCallback ? n.valueCallback(o[0]) : o[0];
|
|
867
867
|
// [TODO] I challenge you to fix the type
|
|
868
|
-
|
|
868
|
+
r = t.valueCallback ? t.valueCallback(r) : r;
|
|
869
869
|
const s = e.slice(i.length);
|
|
870
870
|
return {
|
|
871
|
-
value:
|
|
871
|
+
value: r,
|
|
872
872
|
rest: s
|
|
873
873
|
};
|
|
874
874
|
};
|
|
@@ -1081,14 +1081,14 @@ const A = {
|
|
|
1081
1081
|
*/ function formatDistance$2(n, e, t) {
|
|
1082
1082
|
const a = getDefaultOptions();
|
|
1083
1083
|
const i = t?.locale ?? a.locale ?? I;
|
|
1084
|
-
const
|
|
1085
|
-
const
|
|
1086
|
-
if (isNaN(
|
|
1084
|
+
const o = 2520;
|
|
1085
|
+
const r = compareAsc(n, e);
|
|
1086
|
+
if (isNaN(r)) throw new RangeError("Invalid time value");
|
|
1087
1087
|
const d = Object.assign({}, t, {
|
|
1088
1088
|
addSuffix: t?.addSuffix,
|
|
1089
|
-
comparison:
|
|
1089
|
+
comparison: r
|
|
1090
1090
|
});
|
|
1091
|
-
const [l, u] = normalizeDates(t?.in, ...
|
|
1091
|
+
const [l, u] = normalizeDates(t?.in, ...r > 0 ? [ e, n ] : [ n, e ]);
|
|
1092
1092
|
const h = differenceInSeconds(u, l);
|
|
1093
1093
|
const m = (getTimezoneOffsetInMilliseconds(u) - getTimezoneOffsetInMilliseconds(l)) / 1e3;
|
|
1094
1094
|
const f = Math.round((h - m) / 60);
|
|
@@ -1127,7 +1127,7 @@ const A = {
|
|
|
1127
1127
|
const n = Math.round(f / 60);
|
|
1128
1128
|
return i.formatDistance("aboutXHours", n, d);
|
|
1129
1129
|
// 1 day up to 1.75 days
|
|
1130
|
-
} else if (f <
|
|
1130
|
+
} else if (f < o) {
|
|
1131
1131
|
return i.formatDistance("xDays", 1, d);
|
|
1132
1132
|
// 1.75 days up to 30 days
|
|
1133
1133
|
} else if (f < s) {
|
|
@@ -1612,11 +1612,11 @@ const an = {
|
|
|
1612
1612
|
wide: /^([123456789]|1[012])月/i
|
|
1613
1613
|
};
|
|
1614
1614
|
|
|
1615
|
-
const
|
|
1615
|
+
const on = {
|
|
1616
1616
|
any: [ /^1\D/, /^2/, /^3/, /^4/, /^5/, /^6/, /^7/, /^8/, /^9/, /^10/, /^11/, /^12/ ]
|
|
1617
1617
|
};
|
|
1618
1618
|
|
|
1619
|
-
const
|
|
1619
|
+
const rn = {
|
|
1620
1620
|
narrow: /^[日月火水木金土]/,
|
|
1621
1621
|
short: /^[日月火水木金土]/,
|
|
1622
1622
|
abbreviated: /^[日月火水木金土]/,
|
|
@@ -1668,11 +1668,11 @@ const ln = {
|
|
|
1668
1668
|
month: buildMatchFn({
|
|
1669
1669
|
matchPatterns: an,
|
|
1670
1670
|
defaultMatchWidth: "wide",
|
|
1671
|
-
parsePatterns:
|
|
1671
|
+
parsePatterns: on,
|
|
1672
1672
|
defaultParseWidth: "any"
|
|
1673
1673
|
}),
|
|
1674
1674
|
day: buildMatchFn({
|
|
1675
|
-
matchPatterns:
|
|
1675
|
+
matchPatterns: rn,
|
|
1676
1676
|
defaultMatchWidth: "wide",
|
|
1677
1677
|
parsePatterns: sn,
|
|
1678
1678
|
defaultParseWidth: "any"
|
|
@@ -2123,7 +2123,7 @@ const In = {
|
|
|
2123
2123
|
}
|
|
2124
2124
|
};
|
|
2125
2125
|
|
|
2126
|
-
const Nn = '/*Gx Ide*/\n/*@container queries*/\n/* hiChar styles\nFound on /common/helpers.tsx hiChar function is used to add a span/class to every character that matches a search value. It is used to help the user see why the filter results are filtered. The span/class on the characters are useless without proper styling.\n*/\n:host {\n --spacing-body-block-start: var(--
|
|
2126
|
+
const Nn = '/*Gx Ide*/\n/*@container queries*/\n/* hiChar styles\nFound on /common/helpers.tsx hiChar function is used to add a span/class to every character that matches a search value. It is used to help the user see why the filter results are filtered. The span/class on the characters are useless without proper styling.\n*/\n:host {\n --common-spacing: var(--mer-spacing--lg);\n --spacing-body-block-start: var(--common-spacing);\n --spacing-body-block-end: var(--common-spacing);\n --spacing-body-inline-start: var(--common-spacing);\n --spacing-body-inline-end: 0;\n --spacing-body-inline-start: 0;\n display: grid;\n block-size: 100%;\n overflow: auto;\n}\n\n:host(.spacing-body) .section-secondary,\n:host(.spacing-body) .section-create-new-kb__header,\n:host(.spacing-body) .section-create-new-kb__actions,\n:host(.spacing-body-inline) .section-secondary,\n:host(.spacing-body-inline) .section-create-new-kb__header,\n:host(.spacing-body-inline) .section-create-new-kb__actions {\n padding-inline-start: var(--common-spacing);\n padding-inline-end: var(--common-spacing);\n}\n\n:host(.spacing-body-inline-start) .section-secondary,\n:host(.spacing-body-inline-start) .section-create-new-kb__actions {\n padding-inline-start: var(--common-spacing);\n}\n\n:host(.spacing-body-inline-end) .section-secondary,\n:host(.spacing-body-inline-end) .section-create-new-kb__actions {\n padding-inline-end: var(--common-spacing);\n}\n\n.main {\n animation: fadeIn var(--mer-timing--fast) forwards;\n display: grid;\n block-size: 100%;\n overflow: auto;\n opacity: 0;\n grid-template-rows: max-content 1fr;\n gap: var(--mer-spacing--lg);\n}\n\n@keyframes bounce {\n 0% {\n transform: translateY(0);\n }\n 100% {\n transform: translateY(-30px);\n }\n}\n@keyframes fadeIn {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n.section-create-new-kb__actions,\n.section-secondary__actions {\n display: grid;\n grid-auto-flow: column;\n gap: var(--mer-spacing--md);\n overflow-x: auto;\n padding-block-end: var(--mer-spacing--xs);\n}\n\n.card-filled,\n.card-outlined {\n display: grid;\n gap: var(--mer-spacing--md);\n align-content: space-between;\n border-radius: var(--mer-border__radius--md);\n}\n\n.card-filled {\n background-color: var(--mer-surface__elevation--01);\n padding: var(--mer-spacing--md);\n}\n\n.card-outlined {\n border: var(--mer-border__width--sm) solid var(--mer-border-color__on-surface);\n grid-template-columns: max-content 1fr;\n align-items: center;\n padding: var(--mer-spacing--md) var(--mer-spacing--md) var(--mer-spacing--xs) var(--mer-spacing--md);\n}\n\n.icon-capsule {\n pointer-events: none;\n display: inline-flex;\n block-size: 40px;\n inline-size: 40px;\n justify-content: center;\n align-items: center;\n border-radius: 50%;\n border: var(--mer-border__width--sm) dashed var(--mer-border-color__on-elevation--02);\n}\n.icon-capsule .icon-circular {\n --ch-image-size: 20px;\n}\n\n.card__header {\n display: grid;\n gap: var(--mer-spacing--sm);\n justify-items: self-start;\n}\n\n.card__header-description {\n display: grid;\n gap: var(--mer-spacing--xs);\n --font-weight-regular: 300;\n}\n\n.section-create-new-kb {\n display: grid;\n grid-auto-rows: max-content;\n gap: var(--mer-spacing--lg);\n}\n.section-create-new-kb__header {\n display: grid;\n gap: var(--mer-spacing--xs);\n}\n.section-create-new-kb__title {\n color: var(--mer-text__bright);\n font-weight: 500;\n}\n.section-create-new-kb__actions {\n display: grid;\n gap: var(--mer-spacing--md);\n overflow-x: auto;\n grid-auto-flow: column;\n grid-auto-columns: 330px;\n}\n\n.samples-buttons-container {\n flex-wrap: wrap;\n}\n\n.section-secondary {\n display: grid;\n block-size: 100%;\n position: relative;\n overflow: auto;\n}\n.section-secondary__title {\n display: grid;\n grid-template-columns: 1fr max-content 1fr;\n gap: var(--mer-spacing--md);\n align-items: center;\n font-weight: 300;\n}\n.section-secondary__title::before, .section-secondary__title::after {\n content: "";\n block-size: var(--mer-border__width--sm);\n background-color: var(--mer-border-color__on-elevation--01);\n}\n.section-secondary__actions {\n display: grid;\n}\n.section-secondary__actions--two-cards {\n grid-template-columns: repeat(2, minmax(430px, 1fr));\n}\n.section-secondary__actions--multiple-cards {\n grid-auto-columns: 670px;\n}\n\n.section-no-kbs {\n display: grid;\n block-size: 100%;\n position: relative;\n overflow: auto;\n grid-template-rows: max-content max-content;\n gap: var(--mer-spacing--md);\n}\n\n.section-kbs {\n background-color: var(--mer-surface__elevation--01);\n border-radius: var(--mer-border__radius--sm);\n padding: var(--mer-spacing--sm);\n display: grid;\n container-type: inline-size;\n grid-template-rows: auto 1fr;\n overflow: hidden;\n}\n.section-kbs__header {\n display: grid;\n grid-template-columns: max-content 230px;\n align-items: center;\n gap: var(--mer-spacing--xl);\n border-block-end: var(--mer-border__width--sm) solid var(--mer-border-color__on-elevation--01);\n padding-block-end: var(--mer-spacing--sm);\n}\n.section-kbs__header--no-border {\n border-block-end-color: transparent !important;\n}\n.section-kbs__title {\n align-items: center;\n display: flex;\n min-block-size: 31px;\n}\n.section-kbs__filter--hidden {\n opacity: 0;\n}\n.section-kbs__list {\n display: grid;\n grid-auto-rows: max-content;\n grid-template-columns: 1fr 1fr;\n row-gap: var(--mer-spacing--xs);\n column-gap: var(--mer-spacing--md);\n overflow: auto;\n position: relative;\n padding-block-start: var(--mer-spacing--sm);\n}\n.section-kbs__list--empty {\n grid-template-columns: 1fr;\n grid-auto-rows: 1fr;\n overflow: hidden;\n}\n@container (max-width: 768px) {\n .section-kbs__list {\n grid-template-columns: 1fr;\n }\n}\n\n.kb__item {\n --font-weight-regular: 300;\n background-color: var(--mer-surface__elevation--02);\n padding: var(--mer-spacing--sm);\n display: grid;\n grid-template-columns: auto max-content;\n gap: var(--mer-spacing--3xl);\n}\n.kb__details {\n display: grid;\n grid-template-columns: max-content 1fr;\n align-items: center;\n gap: var(--mer-spacing--sm);\n}\n.kb__name {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n text-decoration: underline;\n cursor: pointer;\n display: inline-block;\n}\n.kb__name:hover {\n color: var(--mer-text__bright);\n}\n.kb__modified {\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n text-align: end;\n font-variant-numeric: tabular-nums;\n}\n\n.hiChar {\n color: var(--mer-color__primary--200);\n filter: brightness(1.3);\n}\n\n.loader {\n border: var(--mer-border__width--sm) solid var(--mer-border-color__on-surface);\n}\n\n.heading-2,\n.heading-3 {\n margin: 0;\n font-weight: 600 !important;\n color: #ffffff !important;\n}\n\n.card-filled .heading-3 {\n color: var(--mer-text__on-surface) !important;\n}\n\n.text-body-regular-m,\n.card__footer {\n font-weight: var(--mer-font__weight--light) !important;\n --control__font-weight--regular: var(--mer-font__weight--light);\n}\n\n.card__header-description {\n --line-height-tight: 1.7;\n --font-weight-regular: 300;\n}\n\n.card__header-title {\n color: var(--mer-text__bright);\n}\n\n.button-tertiary-no-padding-inline-start.button-tertiary {\n padding-inline-start: 0;\n}';
|
|
2127
2127
|
|
|
2128
2128
|
var En = undefined && undefined.__classPrivateFieldGet || function(n, e, t, a) {
|
|
2129
2129
|
if (t === "a" && !a) throw new TypeError("Private accessor was defined without a getter");
|
|
@@ -2249,8 +2249,8 @@ const ie = class {
|
|
|
2249
2249
|
locale: En(this, $n, "f")
|
|
2250
2250
|
}) : undefined;
|
|
2251
2251
|
// convert date to date format, since toISOString() requires date as Date.
|
|
2252
|
-
const
|
|
2253
|
-
let s = o
|
|
2252
|
+
const o = n.lastOpenedDate ? new Date(n.lastOpenedDate) : undefined;
|
|
2253
|
+
let s = r(o, "date-time-short");
|
|
2254
2254
|
// icon
|
|
2255
2255
|
const c = (a = n.icon) !== null && a !== void 0 ? a : ee;
|
|
2256
2256
|
return e("article", {
|
|
@@ -2331,7 +2331,7 @@ const ie = class {
|
|
|
2331
2331
|
// clear filter
|
|
2332
2332
|
}
|
|
2333
2333
|
async componentWillLoad() {
|
|
2334
|
-
Yn(this, Hn, await
|
|
2334
|
+
Yn(this, Hn, await o.getComponentStrings(this.el), "f");
|
|
2335
2335
|
// initialize filteredKbs
|
|
2336
2336
|
this.kbsChanged(this.kbs);
|
|
2337
2337
|
// get user language to display the kb "last opened" value in the appropriate language.
|
|
@@ -2341,7 +2341,10 @@ const ie = class {
|
|
|
2341
2341
|
render() {
|
|
2342
2342
|
var n, a;
|
|
2343
2343
|
this.loading = (!this.kbs || ((n = this.kbs) === null || n === void 0 ? void 0 : n.length) === 0) && !this.secondarySection;
|
|
2344
|
-
const i =
|
|
2344
|
+
const i = this.createKBCallback;
|
|
2345
|
+
const o = this.openKbCallback;
|
|
2346
|
+
const r = ((a = this.samples) === null || a === void 0 ? void 0 : a.length) && this.openSampleCallback;
|
|
2347
|
+
const s = i || o || r;
|
|
2345
2348
|
return e(t, {
|
|
2346
2349
|
class: "scrollable"
|
|
2347
2350
|
}, e("ch-theme", {
|
|
@@ -2358,9 +2361,9 @@ const ie = class {
|
|
|
2358
2361
|
class: "heading-5 section-create-new-kb__title"
|
|
2359
2362
|
}, En(this, Hn, "f").createKB.title), e("p", {
|
|
2360
2363
|
class: "body-regular-m"
|
|
2361
|
-
}, En(this, Hn, "f").createKB.description)), e("section", {
|
|
2364
|
+
}, En(this, Hn, "f").createKB.description)), s && e("section", {
|
|
2362
2365
|
class: "section-create-new-kb__actions scrollable"
|
|
2363
|
-
}, e("article", {
|
|
2366
|
+
}, i && e("article", {
|
|
2364
2367
|
// create project
|
|
2365
2368
|
class: "card card-filled"
|
|
2366
2369
|
}, e("header", {
|
|
@@ -2376,7 +2379,7 @@ const ie = class {
|
|
|
2376
2379
|
}, e("button", {
|
|
2377
2380
|
class: "button-primary",
|
|
2378
2381
|
onClick: En(this, Jn, "f").call(this, false)
|
|
2379
|
-
}, En(this, Hn, "f").createProject.buttonCaption))), e("article", {
|
|
2382
|
+
}, En(this, Hn, "f").createProject.buttonCaption))), o && e("article", {
|
|
2380
2383
|
// open existing project
|
|
2381
2384
|
class: "card-filled"
|
|
2382
2385
|
}, e("header", {
|
|
@@ -2392,7 +2395,7 @@ const ie = class {
|
|
|
2392
2395
|
}, e("button", {
|
|
2393
2396
|
class: "button-secondary cancel-btn",
|
|
2394
2397
|
onClick: En(this, Jn, "f").call(this, true)
|
|
2395
|
-
}, En(this, Hn, "f").openExistingProject.buttonCaption))),
|
|
2398
|
+
}, En(this, Hn, "f").openExistingProject.buttonCaption))), r ? e("article", {
|
|
2396
2399
|
// view samples
|
|
2397
2400
|
class: "card-filled"
|
|
2398
2401
|
}, e("header", {
|
|
@@ -2441,4 +2444,4 @@ Vn = new WeakMap, Kn = new WeakMap, Gn = new WeakMap, qn = new WeakSet, Bn = fun
|
|
|
2441
2444
|
ie.style = Nn;
|
|
2442
2445
|
|
|
2443
2446
|
export { ie as gx_ide_start_page };
|
|
2444
|
-
//# sourceMappingURL=p-
|
|
2447
|
+
//# sourceMappingURL=p-ab1e2886.entry.js.map
|