@sankhyalabs/sankhyablocks 8.16.0-dev.67 → 8.16.0-dev.69
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/{SnkFormConfigManager-ae3185b2.js → SnkFormConfigManager-07f747be.js} +6 -4
- package/dist/cjs/snk-application.cjs.entry.js +12 -14
- package/dist/cjs/snk-config-options_3.cjs.entry.js +1 -1
- package/dist/cjs/snk-detail-view.cjs.entry.js +2 -2
- package/dist/cjs/{snk-guides-viewer-ea5d0907.js → snk-guides-viewer-b20b0cfd.js} +1 -1
- package/dist/cjs/snk-guides-viewer.cjs.entry.js +2 -2
- package/dist/cjs/snk-simple-crud.cjs.entry.js +1 -1
- package/dist/collection/components/snk-application/snk-application.js +12 -14
- package/dist/collection/components/snk-form-config/SnkFormConfigManager.js +6 -4
- package/dist/components/SnkFormConfigManager.js +6 -4
- package/dist/components/snk-application2.js +12 -14
- package/dist/esm/{SnkFormConfigManager-b65e6db0.js → SnkFormConfigManager-1ff928fa.js} +6 -4
- package/dist/esm/snk-application.entry.js +12 -14
- package/dist/esm/snk-config-options_3.entry.js +1 -1
- package/dist/esm/snk-detail-view.entry.js +2 -2
- package/dist/esm/{snk-guides-viewer-830f5fb9.js → snk-guides-viewer-94918cf7.js} +1 -1
- package/dist/esm/snk-guides-viewer.entry.js +2 -2
- package/dist/esm/snk-simple-crud.entry.js +1 -1
- package/dist/sankhyablocks/{p-f975370f.entry.js → p-0d86c004.entry.js} +1 -1
- package/dist/sankhyablocks/{p-0cda2226.entry.js → p-16cc8640.entry.js} +1 -1
- package/dist/sankhyablocks/{p-171b7623.js → p-3150ad41.js} +1 -1
- package/dist/sankhyablocks/{p-254c59d2.entry.js → p-3a3d4055.entry.js} +1 -1
- package/dist/sankhyablocks/{p-f258690a.entry.js → p-471785a1.entry.js} +1 -1
- package/dist/sankhyablocks/{p-54f5354a.entry.js → p-4ca8e061.entry.js} +1 -1
- package/dist/sankhyablocks/p-aaef93e8.js +1 -0
- package/dist/sankhyablocks/sankhyablocks.esm.js +1 -1
- package/package.json +1 -1
- package/dist/sankhyablocks/p-05b6ff91.js +0 -1
@@ -90,13 +90,15 @@ class SnkFormConfigManager {
|
|
90
90
|
const fields = (_a = this._config) === null || _a === void 0 ? void 0 : _a.fields;
|
91
91
|
const hasConfig = this.hasConfig();
|
92
92
|
if (hasConfig && !forceEmptyConfig) {
|
93
|
-
return fields.map(({ label, name, readOnly, visible, required, tab }) => {
|
93
|
+
return fields.map(({ label, name, readOnly, visible, required, tab, group }) => {
|
94
94
|
var _a;
|
95
95
|
if (label == undefined) {
|
96
96
|
const currentField = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getField(name);
|
97
|
-
|
97
|
+
if (!currentField)
|
98
|
+
return;
|
99
|
+
return Object.assign(Object.assign({}, currentField), { name: name !== null && name !== void 0 ? name : currentField.name, readOnly: readOnly !== null && readOnly !== void 0 ? readOnly : currentField.readOnly, visible: visible !== null && visible !== void 0 ? visible : currentField.visible, required: required !== null && required !== void 0 ? required : currentField.required, tab: tab, group: group });
|
98
100
|
}
|
99
|
-
return { name, label, readOnly, visible, required, tab };
|
101
|
+
return { name, label, readOnly, visible, required, tab, group };
|
100
102
|
})
|
101
103
|
.filter(field => this.isFieldVisible(field, descriptionFilter));
|
102
104
|
}
|
@@ -109,7 +111,7 @@ class SnkFormConfigManager {
|
|
109
111
|
return filteredFields;
|
110
112
|
}
|
111
113
|
isFieldVisible(field, descriptionFilter) {
|
112
|
-
if (field.visible === false) {
|
114
|
+
if (field === undefined || field.visible === false) {
|
113
115
|
return false;
|
114
116
|
}
|
115
117
|
if (descriptionFilter == undefined) {
|
@@ -1428,7 +1428,7 @@ const SnkApplication = class {
|
|
1428
1428
|
try {
|
1429
1429
|
await this.checkTimeoutLimitLockManager();
|
1430
1430
|
await core.LockManager.whenHasLock(this._element, core.LockManagerOperation.APP_LOADING);
|
1431
|
-
await core.LockManager.whenResolve(this._element, core.LockManagerOperation.APP_LOADING,
|
1431
|
+
await core.LockManager.whenResolve(this._element, core.LockManagerOperation.APP_LOADING, 200);
|
1432
1432
|
await core.LockManager.resetLocks(this._element, core.LockManagerOperation.APP_LOADING);
|
1433
1433
|
this._applicationReady = true;
|
1434
1434
|
}
|
@@ -1468,19 +1468,17 @@ const SnkApplication = class {
|
|
1468
1468
|
}
|
1469
1469
|
// TODO: Etapa 2 - implementar template de loading
|
1470
1470
|
renderLoadingSkeleton(template) {
|
1471
|
-
if (this.enableLockManagerLoadingApp)
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
return this.getSpinnerLoadingDefault();
|
1483
|
-
}
|
1471
|
+
if (!this.enableLockManagerLoadingApp)
|
1472
|
+
return;
|
1473
|
+
if (this._isBrowserTypeElectron) {
|
1474
|
+
return this.getSpinnerLoadingDefault();
|
1475
|
+
}
|
1476
|
+
switch (template) {
|
1477
|
+
case TEMPLATES_LOADING_SKELETON.APPLICATION:
|
1478
|
+
case TEMPLATES_LOADING_SKELETON.GRID:
|
1479
|
+
return this.getSkeletonTemplateApplication();
|
1480
|
+
default:
|
1481
|
+
return this.getSkeletonTemplateApplication();
|
1484
1482
|
}
|
1485
1483
|
}
|
1486
1484
|
getLoadingVisibilityStyle() {
|
@@ -7,7 +7,7 @@ const core = require('@sankhyalabs/core');
|
|
7
7
|
const DataType = require('@sankhyalabs/core/dist/dataunit/metadata/DataType');
|
8
8
|
const utils = require('@sankhyalabs/ezui/dist/collection/utils');
|
9
9
|
const constants = require('./constants-35ddd366.js');
|
10
|
-
const SnkFormConfigManager = require('./SnkFormConfigManager-
|
10
|
+
const SnkFormConfigManager = require('./SnkFormConfigManager-07f747be.js');
|
11
11
|
const ResourceIDUtils = require('./ResourceIDUtils-5ff86aa7.js');
|
12
12
|
const Sortable = require('./Sortable-fb1c4cbb.js');
|
13
13
|
const formConfigFetcher = require('./form-config-fetcher-90126e4c.js');
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
5
5
|
const index = require('./index-f9e81701.js');
|
6
6
|
const core = require('@sankhyalabs/core');
|
7
|
-
const SnkFormConfigManager = require('./SnkFormConfigManager-
|
7
|
+
const SnkFormConfigManager = require('./SnkFormConfigManager-07f747be.js');
|
8
8
|
const form = require('@sankhyalabs/ezui/dist/collection/utils/form');
|
9
9
|
require('./DataFetcher-65879b2c.js');
|
10
10
|
require('./pesquisa-fetcher-f3454c23.js');
|
@@ -17,7 +17,7 @@ require('./filter-item-type.enum-a7ffdaa6.js');
|
|
17
17
|
require('./form-config-fetcher-90126e4c.js');
|
18
18
|
const taskbarElements = require('./taskbar-elements-9ad1f9c0.js');
|
19
19
|
const constants = require('./constants-35ddd366.js');
|
20
|
-
const snkGuidesViewer = require('./snk-guides-viewer-
|
20
|
+
const snkGuidesViewer = require('./snk-guides-viewer-b20b0cfd.js');
|
21
21
|
const SnkMessageBuilder = require('./SnkMessageBuilder-bae64d0d.js');
|
22
22
|
require('./ConfigStorage-d024aec8.js');
|
23
23
|
require('./PrintUtils-bcaeb82f.js');
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
const index = require('./index-f9e81701.js');
|
4
4
|
const core = require('@sankhyalabs/core');
|
5
|
-
const SnkFormConfigManager = require('./SnkFormConfigManager-
|
5
|
+
const SnkFormConfigManager = require('./SnkFormConfigManager-07f747be.js');
|
6
6
|
const form = require('@sankhyalabs/ezui/dist/collection/utils/form');
|
7
7
|
const fieldSearch = require('./field-search-68e34bf4.js');
|
8
8
|
const taskbarElements = require('./taskbar-elements-9ad1f9c0.js');
|
@@ -2,10 +2,10 @@
|
|
2
2
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
4
4
|
|
5
|
-
const snkGuidesViewer = require('./snk-guides-viewer-
|
5
|
+
const snkGuidesViewer = require('./snk-guides-viewer-b20b0cfd.js');
|
6
6
|
require('./index-f9e81701.js');
|
7
7
|
require('@sankhyalabs/core');
|
8
|
-
require('./SnkFormConfigManager-
|
8
|
+
require('./SnkFormConfigManager-07f747be.js');
|
9
9
|
require('./ConfigStorage-d024aec8.js');
|
10
10
|
require('./form-config-fetcher-90126e4c.js');
|
11
11
|
require('./DataFetcher-65879b2c.js');
|
@@ -19,7 +19,7 @@ require('./filter-item-type.enum-a7ffdaa6.js');
|
|
19
19
|
const formConfigFetcher = require('./form-config-fetcher-90126e4c.js');
|
20
20
|
const fieldSearch = require('./field-search-68e34bf4.js');
|
21
21
|
const ConfigStorage = require('./ConfigStorage-d024aec8.js');
|
22
|
-
const SnkFormConfigManager = require('./SnkFormConfigManager-
|
22
|
+
const SnkFormConfigManager = require('./SnkFormConfigManager-07f747be.js');
|
23
23
|
const GetSelectedRecordsIDsInfo = require('./GetSelectedRecordsIDsInfo-bd50caf1.js');
|
24
24
|
const index$2 = require('./index-102ba62d.js');
|
25
25
|
require('./PrintUtils-bcaeb82f.js');
|
@@ -1063,7 +1063,7 @@ export class SnkApplication {
|
|
1063
1063
|
try {
|
1064
1064
|
await this.checkTimeoutLimitLockManager();
|
1065
1065
|
await LockManager.whenHasLock(this._element, LockManagerOperation.APP_LOADING);
|
1066
|
-
await LockManager.whenResolve(this._element, LockManagerOperation.APP_LOADING,
|
1066
|
+
await LockManager.whenResolve(this._element, LockManagerOperation.APP_LOADING, 200);
|
1067
1067
|
await LockManager.resetLocks(this._element, LockManagerOperation.APP_LOADING);
|
1068
1068
|
this._applicationReady = true;
|
1069
1069
|
}
|
@@ -1103,19 +1103,17 @@ export class SnkApplication {
|
|
1103
1103
|
}
|
1104
1104
|
// TODO: Etapa 2 - implementar template de loading
|
1105
1105
|
renderLoadingSkeleton(template) {
|
1106
|
-
if (this.enableLockManagerLoadingApp)
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
return this.getSpinnerLoadingDefault();
|
1118
|
-
}
|
1106
|
+
if (!this.enableLockManagerLoadingApp)
|
1107
|
+
return;
|
1108
|
+
if (this._isBrowserTypeElectron) {
|
1109
|
+
return this.getSpinnerLoadingDefault();
|
1110
|
+
}
|
1111
|
+
switch (template) {
|
1112
|
+
case TEMPLATES_LOADING_SKELETON.APPLICATION:
|
1113
|
+
case TEMPLATES_LOADING_SKELETON.GRID:
|
1114
|
+
return this.getSkeletonTemplateApplication();
|
1115
|
+
default:
|
1116
|
+
return this.getSkeletonTemplateApplication();
|
1119
1117
|
}
|
1120
1118
|
}
|
1121
1119
|
getLoadingVisibilityStyle() {
|
@@ -87,13 +87,15 @@ export class SnkFormConfigManager {
|
|
87
87
|
const fields = (_a = this._config) === null || _a === void 0 ? void 0 : _a.fields;
|
88
88
|
const hasConfig = this.hasConfig();
|
89
89
|
if (hasConfig && !forceEmptyConfig) {
|
90
|
-
return fields.map(({ label, name, readOnly, visible, required, tab }) => {
|
90
|
+
return fields.map(({ label, name, readOnly, visible, required, tab, group }) => {
|
91
91
|
var _a;
|
92
92
|
if (label == undefined) {
|
93
93
|
const currentField = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getField(name);
|
94
|
-
|
94
|
+
if (!currentField)
|
95
|
+
return;
|
96
|
+
return Object.assign(Object.assign({}, currentField), { name: name !== null && name !== void 0 ? name : currentField.name, readOnly: readOnly !== null && readOnly !== void 0 ? readOnly : currentField.readOnly, visible: visible !== null && visible !== void 0 ? visible : currentField.visible, required: required !== null && required !== void 0 ? required : currentField.required, tab: tab, group: group });
|
95
97
|
}
|
96
|
-
return { name, label, readOnly, visible, required, tab };
|
98
|
+
return { name, label, readOnly, visible, required, tab, group };
|
97
99
|
})
|
98
100
|
.filter(field => this.isFieldVisible(field, descriptionFilter));
|
99
101
|
}
|
@@ -106,7 +108,7 @@ export class SnkFormConfigManager {
|
|
106
108
|
return filteredFields;
|
107
109
|
}
|
108
110
|
isFieldVisible(field, descriptionFilter) {
|
109
|
-
if (field.visible === false) {
|
111
|
+
if (field === undefined || field.visible === false) {
|
110
112
|
return false;
|
111
113
|
}
|
112
114
|
if (descriptionFilter == undefined) {
|
@@ -88,13 +88,15 @@ class SnkFormConfigManager {
|
|
88
88
|
const fields = (_a = this._config) === null || _a === void 0 ? void 0 : _a.fields;
|
89
89
|
const hasConfig = this.hasConfig();
|
90
90
|
if (hasConfig && !forceEmptyConfig) {
|
91
|
-
return fields.map(({ label, name, readOnly, visible, required, tab }) => {
|
91
|
+
return fields.map(({ label, name, readOnly, visible, required, tab, group }) => {
|
92
92
|
var _a;
|
93
93
|
if (label == undefined) {
|
94
94
|
const currentField = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getField(name);
|
95
|
-
|
95
|
+
if (!currentField)
|
96
|
+
return;
|
97
|
+
return Object.assign(Object.assign({}, currentField), { name: name !== null && name !== void 0 ? name : currentField.name, readOnly: readOnly !== null && readOnly !== void 0 ? readOnly : currentField.readOnly, visible: visible !== null && visible !== void 0 ? visible : currentField.visible, required: required !== null && required !== void 0 ? required : currentField.required, tab: tab, group: group });
|
96
98
|
}
|
97
|
-
return { name, label, readOnly, visible, required, tab };
|
99
|
+
return { name, label, readOnly, visible, required, tab, group };
|
98
100
|
})
|
99
101
|
.filter(field => this.isFieldVisible(field, descriptionFilter));
|
100
102
|
}
|
@@ -107,7 +109,7 @@ class SnkFormConfigManager {
|
|
107
109
|
return filteredFields;
|
108
110
|
}
|
109
111
|
isFieldVisible(field, descriptionFilter) {
|
110
|
-
if (field.visible === false) {
|
112
|
+
if (field === undefined || field.visible === false) {
|
111
113
|
return false;
|
112
114
|
}
|
113
115
|
if (descriptionFilter == undefined) {
|
@@ -1420,7 +1420,7 @@ const SnkApplication = /*@__PURE__*/ proxyCustomElement(class extends HTMLElemen
|
|
1420
1420
|
try {
|
1421
1421
|
await this.checkTimeoutLimitLockManager();
|
1422
1422
|
await LockManager.whenHasLock(this._element, LockManagerOperation.APP_LOADING);
|
1423
|
-
await LockManager.whenResolve(this._element, LockManagerOperation.APP_LOADING,
|
1423
|
+
await LockManager.whenResolve(this._element, LockManagerOperation.APP_LOADING, 200);
|
1424
1424
|
await LockManager.resetLocks(this._element, LockManagerOperation.APP_LOADING);
|
1425
1425
|
this._applicationReady = true;
|
1426
1426
|
}
|
@@ -1460,19 +1460,17 @@ const SnkApplication = /*@__PURE__*/ proxyCustomElement(class extends HTMLElemen
|
|
1460
1460
|
}
|
1461
1461
|
// TODO: Etapa 2 - implementar template de loading
|
1462
1462
|
renderLoadingSkeleton(template) {
|
1463
|
-
if (this.enableLockManagerLoadingApp)
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
return this.getSpinnerLoadingDefault();
|
1475
|
-
}
|
1463
|
+
if (!this.enableLockManagerLoadingApp)
|
1464
|
+
return;
|
1465
|
+
if (this._isBrowserTypeElectron) {
|
1466
|
+
return this.getSpinnerLoadingDefault();
|
1467
|
+
}
|
1468
|
+
switch (template) {
|
1469
|
+
case TEMPLATES_LOADING_SKELETON.APPLICATION:
|
1470
|
+
case TEMPLATES_LOADING_SKELETON.GRID:
|
1471
|
+
return this.getSkeletonTemplateApplication();
|
1472
|
+
default:
|
1473
|
+
return this.getSkeletonTemplateApplication();
|
1476
1474
|
}
|
1477
1475
|
}
|
1478
1476
|
getLoadingVisibilityStyle() {
|
@@ -88,13 +88,15 @@ class SnkFormConfigManager {
|
|
88
88
|
const fields = (_a = this._config) === null || _a === void 0 ? void 0 : _a.fields;
|
89
89
|
const hasConfig = this.hasConfig();
|
90
90
|
if (hasConfig && !forceEmptyConfig) {
|
91
|
-
return fields.map(({ label, name, readOnly, visible, required, tab }) => {
|
91
|
+
return fields.map(({ label, name, readOnly, visible, required, tab, group }) => {
|
92
92
|
var _a;
|
93
93
|
if (label == undefined) {
|
94
94
|
const currentField = (_a = this._dataUnit) === null || _a === void 0 ? void 0 : _a.getField(name);
|
95
|
-
|
95
|
+
if (!currentField)
|
96
|
+
return;
|
97
|
+
return Object.assign(Object.assign({}, currentField), { name: name !== null && name !== void 0 ? name : currentField.name, readOnly: readOnly !== null && readOnly !== void 0 ? readOnly : currentField.readOnly, visible: visible !== null && visible !== void 0 ? visible : currentField.visible, required: required !== null && required !== void 0 ? required : currentField.required, tab: tab, group: group });
|
96
98
|
}
|
97
|
-
return { name, label, readOnly, visible, required, tab };
|
99
|
+
return { name, label, readOnly, visible, required, tab, group };
|
98
100
|
})
|
99
101
|
.filter(field => this.isFieldVisible(field, descriptionFilter));
|
100
102
|
}
|
@@ -107,7 +109,7 @@ class SnkFormConfigManager {
|
|
107
109
|
return filteredFields;
|
108
110
|
}
|
109
111
|
isFieldVisible(field, descriptionFilter) {
|
110
|
-
if (field.visible === false) {
|
112
|
+
if (field === undefined || field.visible === false) {
|
111
113
|
return false;
|
112
114
|
}
|
113
115
|
if (descriptionFilter == undefined) {
|
@@ -1424,7 +1424,7 @@ const SnkApplication = class {
|
|
1424
1424
|
try {
|
1425
1425
|
await this.checkTimeoutLimitLockManager();
|
1426
1426
|
await LockManager.whenHasLock(this._element, LockManagerOperation.APP_LOADING);
|
1427
|
-
await LockManager.whenResolve(this._element, LockManagerOperation.APP_LOADING,
|
1427
|
+
await LockManager.whenResolve(this._element, LockManagerOperation.APP_LOADING, 200);
|
1428
1428
|
await LockManager.resetLocks(this._element, LockManagerOperation.APP_LOADING);
|
1429
1429
|
this._applicationReady = true;
|
1430
1430
|
}
|
@@ -1464,19 +1464,17 @@ const SnkApplication = class {
|
|
1464
1464
|
}
|
1465
1465
|
// TODO: Etapa 2 - implementar template de loading
|
1466
1466
|
renderLoadingSkeleton(template) {
|
1467
|
-
if (this.enableLockManagerLoadingApp)
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
return this.getSpinnerLoadingDefault();
|
1479
|
-
}
|
1467
|
+
if (!this.enableLockManagerLoadingApp)
|
1468
|
+
return;
|
1469
|
+
if (this._isBrowserTypeElectron) {
|
1470
|
+
return this.getSpinnerLoadingDefault();
|
1471
|
+
}
|
1472
|
+
switch (template) {
|
1473
|
+
case TEMPLATES_LOADING_SKELETON.APPLICATION:
|
1474
|
+
case TEMPLATES_LOADING_SKELETON.GRID:
|
1475
|
+
return this.getSkeletonTemplateApplication();
|
1476
|
+
default:
|
1477
|
+
return this.getSkeletonTemplateApplication();
|
1480
1478
|
}
|
1481
1479
|
}
|
1482
1480
|
getLoadingVisibilityStyle() {
|
@@ -3,7 +3,7 @@ import { UserInterface, ObjectUtils, StringUtils, ApplicationContext, ElementIDU
|
|
3
3
|
import { DataType, getConvertedValue } from '@sankhyalabs/core/dist/dataunit/metadata/DataType';
|
4
4
|
import { CheckMode, ApplicationUtils, DialogType } from '@sankhyalabs/ezui/dist/collection/utils';
|
5
5
|
import { c as VARS_BY_TYPE, D as DEFAULT_TYPE, d as TAGS_BY_TYPE, C as CONFIG_EVENTS, a as CONFIG_SORTABLE_EVENTS, b as TAB_NAMES, A as ACTION_CONFIG } from './constants-7302ee87.js';
|
6
|
-
import { S as SnkFormConfigManager } from './SnkFormConfigManager-
|
6
|
+
import { S as SnkFormConfigManager } from './SnkFormConfigManager-1ff928fa.js';
|
7
7
|
import { R as ResourceIDUtils } from './ResourceIDUtils-a114189a.js';
|
8
8
|
import { S as Sortable } from './Sortable-83960219.js';
|
9
9
|
import { U as UserConfigType } from './form-config-fetcher-126e2471.js';
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, f as forceUpdate, h, H as Host } from './index-a7d3d3f1.js';
|
2
2
|
import { Action } from '@sankhyalabs/core';
|
3
|
-
import { S as SnkFormConfigManager } from './SnkFormConfigManager-
|
3
|
+
import { S as SnkFormConfigManager } from './SnkFormConfigManager-1ff928fa.js';
|
4
4
|
import { FormMetadata, buildFormMetadata } from '@sankhyalabs/ezui/dist/collection/utils/form';
|
5
5
|
import './DataFetcher-5221b992.js';
|
6
6
|
import './pesquisa-fetcher-0af41f09.js';
|
@@ -13,7 +13,7 @@ import './filter-item-type.enum-d45e026f.js';
|
|
13
13
|
import './form-config-fetcher-126e2471.js';
|
14
14
|
import { T as TaskbarElement } from './taskbar-elements-d59867f1.js';
|
15
15
|
import { V as VIEW_MODE } from './constants-7302ee87.js';
|
16
|
-
import { S as SnkGuidesViewer } from './snk-guides-viewer-
|
16
|
+
import { S as SnkGuidesViewer } from './snk-guides-viewer-94918cf7.js';
|
17
17
|
import { S as SnkMessageBuilder } from './SnkMessageBuilder-6fff4a4c.js';
|
18
18
|
import './ConfigStorage-373bb440.js';
|
19
19
|
import './PrintUtils-3e4ff0f5.js';
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { r as registerInstance, c as createEvent, h, F as Fragment } from './index-a7d3d3f1.js';
|
2
2
|
import { Action, ElementIDUtils } from '@sankhyalabs/core';
|
3
|
-
import { S as SnkFormConfigManager } from './SnkFormConfigManager-
|
3
|
+
import { S as SnkFormConfigManager } from './SnkFormConfigManager-1ff928fa.js';
|
4
4
|
import { buildFormMetadata, FormMetadata } from '@sankhyalabs/ezui/dist/collection/utils/form';
|
5
5
|
import { o as openFieldSearch, T as TaskbarProcessor, b as buildFieldSearch } from './field-search-f8b1d91e.js';
|
6
6
|
import { T as TaskbarElement } from './taskbar-elements-d59867f1.js';
|
@@ -1,7 +1,7 @@
|
|
1
|
-
export { S as snk_guides_viewer } from './snk-guides-viewer-
|
1
|
+
export { S as snk_guides_viewer } from './snk-guides-viewer-94918cf7.js';
|
2
2
|
import './index-a7d3d3f1.js';
|
3
3
|
import '@sankhyalabs/core';
|
4
|
-
import './SnkFormConfigManager-
|
4
|
+
import './SnkFormConfigManager-1ff928fa.js';
|
5
5
|
import './ConfigStorage-373bb440.js';
|
6
6
|
import './form-config-fetcher-126e2471.js';
|
7
7
|
import './DataFetcher-5221b992.js';
|
@@ -15,7 +15,7 @@ import './filter-item-type.enum-d45e026f.js';
|
|
15
15
|
import { F as FormConfigFetcher } from './form-config-fetcher-126e2471.js';
|
16
16
|
import { T as TaskbarProcessor, b as buildFieldSearch, o as openFieldSearch } from './field-search-f8b1d91e.js';
|
17
17
|
import { C as ConfigStorage } from './ConfigStorage-373bb440.js';
|
18
|
-
import { S as SnkFormConfigManager } from './SnkFormConfigManager-
|
18
|
+
import { S as SnkFormConfigManager } from './SnkFormConfigManager-1ff928fa.js';
|
19
19
|
import { g as getSelectedRecordsIDsInfo } from './GetSelectedRecordsIDsInfo-9fa41508.js';
|
20
20
|
import { s as store } from './index-bdf75557.js';
|
21
21
|
import './PrintUtils-3e4ff0f5.js';
|