@idevs/corelib 1.1.0 → 1.1.1
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/CHANGELOG.md +10 -0
- package/dist/formatters/formatterHelper.d.ts +30 -0
- package/dist/formatters/formatterHelper.d.ts.map +1 -0
- package/dist/formatters/formatterHelper.js +67 -0
- package/dist/formatters/formatterHelper.js.map +1 -0
- package/dist/formatters/index.d.ts +1 -0
- package/dist/formatters/index.d.ts.map +1 -1
- package/dist/formatters/index.js +1 -0
- package/dist/formatters/index.js.map +1 -1
- package/dist/helpers/index.d.ts +2 -0
- package/dist/helpers/index.d.ts.map +1 -1
- package/dist/helpers/index.js +2 -0
- package/dist/helpers/index.js.map +1 -1
- package/dist/helpers/processQueryButtons.d.ts +10 -0
- package/dist/helpers/processQueryButtons.d.ts.map +1 -0
- package/dist/helpers/processQueryButtons.js +27 -0
- package/dist/helpers/processQueryButtons.js.map +1 -0
- package/dist/helpers/windowHelper.d.ts +2 -0
- package/dist/helpers/windowHelper.d.ts.map +1 -0
- package/dist/helpers/windowHelper.js +8 -0
- package/dist/helpers/windowHelper.js.map +1 -0
- package/dist/types/gridEditableMode.d.ts +9 -0
- package/dist/types/gridEditableMode.d.ts.map +1 -0
- package/dist/types/gridEditableMode.js +3 -0
- package/dist/types/gridEditableMode.js.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.1.1] - 2026-05-24
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Csi/UI port — batch 1/4** (primitives from PowerACC):
|
|
12
|
+
- `helpers/windowHelper.ts` — `isSmallDevice()` responsive media-query check.
|
|
13
|
+
- `helpers/processQueryButtons.ts` — `addProcessQueryButtons()` factory for paired Query/Clear toolbar buttons.
|
|
14
|
+
- `types/gridEditableMode.ts` — `GridEditableMode` discriminated union (`Full` / `Off` / `Some`).
|
|
15
|
+
- `formatters/formatterHelper.ts` — `customerCodeFormatter`, `isNumericTemplate`, `isNumericInput` (filename fixes the original `Formater` typo).
|
|
16
|
+
- 22 new unit tests covering the three modules above.
|
|
17
|
+
|
|
8
18
|
## [1.1.0] - 2026-05-23
|
|
9
19
|
|
|
10
20
|
### Added
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Apply a pattern mask to a value.
|
|
3
|
+
* - '0' and 'x' placeholders both consume the next alphanumeric character from
|
|
4
|
+
* the value; they differ only in their padding char when the value is shorter
|
|
5
|
+
* ('0' pads with '0', 'x' pads with a space).
|
|
6
|
+
* - All other pattern characters are literal separators copied through.
|
|
7
|
+
*
|
|
8
|
+
* Early-return guard: the input is first stripped of non-alphanumerics. If the
|
|
9
|
+
* pattern is composed entirely of '0' characters (no separators, e.g. "0000")
|
|
10
|
+
* AND the stripped value is not a pure digit string, the original value is
|
|
11
|
+
* returned untouched. That covers two cases:
|
|
12
|
+
* - the stripped value contains a letter (e.g. "AB12")
|
|
13
|
+
* - the stripped value is empty (raw input was empty or separators-only)
|
|
14
|
+
* Numeric masks that contain separators (e.g. "0000-00000-0") do NOT trigger
|
|
15
|
+
* this guard — this is the inherited behavior from the original PowerACC
|
|
16
|
+
* implementation.
|
|
17
|
+
*/
|
|
18
|
+
export declare function customerCodeFormatter(value: string, pattern: string): string;
|
|
19
|
+
/**
|
|
20
|
+
* True when the pattern, after removing all '0' characters, contains only
|
|
21
|
+
* digits, whitespace, or the common separators (`. _ -`). In practice this
|
|
22
|
+
* means the pattern has no 'x' (letter) placeholders. Note: patterns
|
|
23
|
+
* consisting solely of separators (e.g. "-") or solely of literal digits
|
|
24
|
+
* (e.g. "123") also return true; the check is "no letter placeholders",
|
|
25
|
+
* not "has at least one '0' placeholder".
|
|
26
|
+
*/
|
|
27
|
+
export declare function isNumericTemplate(pattern: string): boolean;
|
|
28
|
+
/** True when the value consists of digits once common separators (- _ . space) are stripped. */
|
|
29
|
+
export declare function isNumericInput(value: string): boolean;
|
|
30
|
+
//# sourceMappingURL=formatterHelper.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formatterHelper.d.ts","sourceRoot":"","sources":["../../src/formatters/formatterHelper.ts"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAwB5E;AAED;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAE1D;AAED,gGAAgG;AAChG,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAErD"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.customerCodeFormatter = customerCodeFormatter;
|
|
4
|
+
exports.isNumericTemplate = isNumericTemplate;
|
|
5
|
+
exports.isNumericInput = isNumericInput;
|
|
6
|
+
const ALPHANUMERIC_STRIP = /[^0-9a-zA-Z]/g;
|
|
7
|
+
const DIGITS_ONLY = /^\d+$/;
|
|
8
|
+
const NUMERIC_TEMPLATE_RESIDUE = /^[0-9\s._-]+$/;
|
|
9
|
+
const COMMON_SEPARATORS = /[\s._-]/g;
|
|
10
|
+
/**
|
|
11
|
+
* Apply a pattern mask to a value.
|
|
12
|
+
* - '0' and 'x' placeholders both consume the next alphanumeric character from
|
|
13
|
+
* the value; they differ only in their padding char when the value is shorter
|
|
14
|
+
* ('0' pads with '0', 'x' pads with a space).
|
|
15
|
+
* - All other pattern characters are literal separators copied through.
|
|
16
|
+
*
|
|
17
|
+
* Early-return guard: the input is first stripped of non-alphanumerics. If the
|
|
18
|
+
* pattern is composed entirely of '0' characters (no separators, e.g. "0000")
|
|
19
|
+
* AND the stripped value is not a pure digit string, the original value is
|
|
20
|
+
* returned untouched. That covers two cases:
|
|
21
|
+
* - the stripped value contains a letter (e.g. "AB12")
|
|
22
|
+
* - the stripped value is empty (raw input was empty or separators-only)
|
|
23
|
+
* Numeric masks that contain separators (e.g. "0000-00000-0") do NOT trigger
|
|
24
|
+
* this guard — this is the inherited behavior from the original PowerACC
|
|
25
|
+
* implementation.
|
|
26
|
+
*/
|
|
27
|
+
function customerCodeFormatter(value, pattern) {
|
|
28
|
+
const cleanValue = value.replace(ALPHANUMERIC_STRIP, '');
|
|
29
|
+
const isAllZerosPattern = pattern.replace(/[^0-9]/g, '') === '0'.repeat(pattern.length);
|
|
30
|
+
const isNumericValue = DIGITS_ONLY.test(cleanValue);
|
|
31
|
+
if (isAllZerosPattern && !isNumericValue) {
|
|
32
|
+
return value;
|
|
33
|
+
}
|
|
34
|
+
let result = '';
|
|
35
|
+
let valueIndex = 0;
|
|
36
|
+
for (let i = 0; i < pattern.length; i++) {
|
|
37
|
+
const patternChar = pattern.charAt(i);
|
|
38
|
+
if (patternChar === '0' || patternChar === 'x') {
|
|
39
|
+
if (valueIndex < cleanValue.length) {
|
|
40
|
+
result += cleanValue.charAt(valueIndex++);
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
result += patternChar === '0' ? '0' : ' ';
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
result += patternChar;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
return result;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* True when the pattern, after removing all '0' characters, contains only
|
|
54
|
+
* digits, whitespace, or the common separators (`. _ -`). In practice this
|
|
55
|
+
* means the pattern has no 'x' (letter) placeholders. Note: patterns
|
|
56
|
+
* consisting solely of separators (e.g. "-") or solely of literal digits
|
|
57
|
+
* (e.g. "123") also return true; the check is "no letter placeholders",
|
|
58
|
+
* not "has at least one '0' placeholder".
|
|
59
|
+
*/
|
|
60
|
+
function isNumericTemplate(pattern) {
|
|
61
|
+
return NUMERIC_TEMPLATE_RESIDUE.test(pattern.replace(/0/g, ''));
|
|
62
|
+
}
|
|
63
|
+
/** True when the value consists of digits once common separators (- _ . space) are stripped. */
|
|
64
|
+
function isNumericInput(value) {
|
|
65
|
+
return DIGITS_ONLY.test(value.replace(COMMON_SEPARATORS, ''));
|
|
66
|
+
}
|
|
67
|
+
//# sourceMappingURL=formatterHelper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formatterHelper.js","sourceRoot":"","sources":["../../src/formatters/formatterHelper.ts"],"names":[],"mappings":";;AAsBA,sDAwBC;AAUD,8CAEC;AAGD,wCAEC;AA/DD,MAAM,kBAAkB,GAAG,eAAe,CAAA;AAC1C,MAAM,WAAW,GAAG,OAAO,CAAA;AAC3B,MAAM,wBAAwB,GAAG,eAAe,CAAA;AAChD,MAAM,iBAAiB,GAAG,UAAU,CAAA;AAEpC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,qBAAqB,CAAC,KAAa,EAAE,OAAe;IAClE,MAAM,UAAU,GAAG,KAAK,CAAC,OAAO,CAAC,kBAAkB,EAAE,EAAE,CAAC,CAAA;IACxD,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,KAAK,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;IACvF,MAAM,cAAc,GAAG,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;IAEnD,IAAI,iBAAiB,IAAI,CAAC,cAAc,EAAE,CAAC;QACzC,OAAO,KAAK,CAAA;IACd,CAAC;IAED,IAAI,MAAM,GAAG,EAAE,CAAA;IACf,IAAI,UAAU,GAAG,CAAC,CAAA;IAClB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QACxC,MAAM,WAAW,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAA;QACrC,IAAI,WAAW,KAAK,GAAG,IAAI,WAAW,KAAK,GAAG,EAAE,CAAC;YAC/C,IAAI,UAAU,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC;gBACnC,MAAM,IAAI,UAAU,CAAC,MAAM,CAAC,UAAU,EAAE,CAAC,CAAA;YAC3C,CAAC;iBAAM,CAAC;gBACN,MAAM,IAAI,WAAW,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,CAAA;YAC3C,CAAC;QACH,CAAC;aAAM,CAAC;YACN,MAAM,IAAI,WAAW,CAAA;QACvB,CAAC;IACH,CAAC;IACD,OAAO,MAAM,CAAA;AACf,CAAC;AAED;;;;;;;GAOG;AACH,SAAgB,iBAAiB,CAAC,OAAe;IAC/C,OAAO,wBAAwB,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAA;AACjE,CAAC;AAED,gGAAgG;AAChG,SAAgB,cAAc,CAAC,KAAa;IAC1C,OAAO,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,iBAAiB,EAAE,EAAE,CAAC,CAAC,CAAA;AAC/D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/formatters/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/formatters/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA"}
|
package/dist/formatters/index.js
CHANGED
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./formatters"), exports);
|
|
18
|
+
__exportStar(require("./formatterHelper"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/formatters/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA4B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/formatters/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA4B;AAC5B,oDAAiC"}
|
package/dist/helpers/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/helpers/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,qBAAqB,CAAA;AACnC,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/helpers/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAA;AAC9B,cAAc,cAAc,CAAA;AAC5B,cAAc,qBAAqB,CAAA;AACnC,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAC/C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gBAAgB,CAAA"}
|
package/dist/helpers/index.js
CHANGED
|
@@ -20,4 +20,6 @@ __exportStar(require("./gridHelper"), exports);
|
|
|
20
20
|
__exportStar(require("./excelExportHelper"), exports);
|
|
21
21
|
var pdfExportHelper_1 = require("./pdfExportHelper");
|
|
22
22
|
Object.defineProperty(exports, "doExportPdf", { enumerable: true, get: function () { return pdfExportHelper_1.doExportPdf; } });
|
|
23
|
+
__exportStar(require("./processQueryButtons"), exports);
|
|
24
|
+
__exportStar(require("./windowHelper"), exports);
|
|
23
25
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/helpers/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,iDAA8B;AAC9B,+CAA4B;AAC5B,sDAAmC;AACnC,qDAA+C;AAAtC,8GAAA,WAAW,OAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/helpers/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,iDAA8B;AAC9B,+CAA4B;AAC5B,sDAAmC;AACnC,qDAA+C;AAAtC,8GAAA,WAAW,OAAA;AACpB,wDAAqC;AACrC,iDAA8B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ToolButton } from '@serenity-is/corelib';
|
|
2
|
+
export type ProcessQueryOptions = {
|
|
3
|
+
onClick: (isQuery: boolean) => void;
|
|
4
|
+
};
|
|
5
|
+
/**
|
|
6
|
+
* Factory for a paired "Query" / "Clear" toolbar button group.
|
|
7
|
+
* `onClick(true)` fires for Query, `onClick(false)` for Clear.
|
|
8
|
+
*/
|
|
9
|
+
export declare function addProcessQueryButtons(opt: ProcessQueryOptions): ToolButton[];
|
|
10
|
+
//# sourceMappingURL=processQueryButtons.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"processQueryButtons.d.ts","sourceRoot":"","sources":["../../src/helpers/processQueryButtons.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAEtD,MAAM,MAAM,mBAAmB,GAAG;IAChC,OAAO,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAA;CACpC,CAAA;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,GAAG,EAAE,mBAAmB,GAAG,UAAU,EAAE,CAkB7E"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.addProcessQueryButtons = addProcessQueryButtons;
|
|
4
|
+
/**
|
|
5
|
+
* Factory for a paired "Query" / "Clear" toolbar button group.
|
|
6
|
+
* `onClick(true)` fires for Query, `onClick(false)` for Clear.
|
|
7
|
+
*/
|
|
8
|
+
function addProcessQueryButtons(opt) {
|
|
9
|
+
return [
|
|
10
|
+
{
|
|
11
|
+
title: 'Query',
|
|
12
|
+
hint: 'Process query',
|
|
13
|
+
cssClass: 'process-query-button text-blue',
|
|
14
|
+
icon: 'bi bi-search',
|
|
15
|
+
separator: true,
|
|
16
|
+
onClick: () => opt.onClick(true),
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
title: 'Clear',
|
|
20
|
+
hint: 'Clear query',
|
|
21
|
+
cssClass: 'clear-query-button text-red',
|
|
22
|
+
icon: 'bi bi-ban',
|
|
23
|
+
onClick: () => opt.onClick(false),
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=processQueryButtons.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"processQueryButtons.js","sourceRoot":"","sources":["../../src/helpers/processQueryButtons.ts"],"names":[],"mappings":";;AAUA,wDAkBC;AAtBD;;;GAGG;AACH,SAAgB,sBAAsB,CAAC,GAAwB;IAC7D,OAAO;QACL;YACE,KAAK,EAAE,OAAO;YACd,IAAI,EAAE,eAAe;YACrB,QAAQ,EAAE,gCAAgC;YAC1C,IAAI,EAAE,cAAc;YACpB,SAAS,EAAE,IAAI;YACf,OAAO,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC;SACjC;QACD;YACE,KAAK,EAAE,OAAO;YACd,IAAI,EAAE,aAAa;YACnB,QAAQ,EAAE,6BAA6B;YACvC,IAAI,EAAE,WAAW;YACjB,OAAO,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC;SAClC;KACF,CAAA;AACH,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"windowHelper.d.ts","sourceRoot":"","sources":["../../src/helpers/windowHelper.ts"],"names":[],"mappings":"AAEA,wBAAgB,aAAa,IAAI,OAAO,CAEvC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isSmallDevice = isSmallDevice;
|
|
4
|
+
const SMALL_DEVICE_QUERY = 'only screen and (max-width: 768px)';
|
|
5
|
+
function isSmallDevice() {
|
|
6
|
+
return window.matchMedia(SMALL_DEVICE_QUERY).matches;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=windowHelper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"windowHelper.js","sourceRoot":"","sources":["../../src/helpers/windowHelper.ts"],"names":[],"mappings":";;AAEA,sCAEC;AAJD,MAAM,kBAAkB,GAAG,oCAAoC,CAAA;AAE/D,SAAgB,aAAa;IAC3B,OAAO,MAAM,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,OAAO,CAAA;AACtD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gridEditableMode.d.ts","sourceRoot":"","sources":["../../src/types/gridEditableMode.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GACxB;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,GAChB;IAAE,IAAI,EAAE,KAAK,CAAA;CAAE,GACf;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gridEditableMode.js","sourceRoot":"","sources":["../../src/types/gridEditableMode.ts"],"names":[],"mappings":""}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,oBAAoB,CAAA"}
|
package/dist/types/index.js
CHANGED
|
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./common"), exports);
|
|
18
18
|
__exportStar(require("./export"), exports);
|
|
19
|
+
__exportStar(require("./gridEditableMode"), exports);
|
|
19
20
|
//# sourceMappingURL=index.js.map
|
package/dist/types/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,2CAAwB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,2CAAwB;AACxB,qDAAkC"}
|