@genesislcap/web-core 14.244.0 → 14.244.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/dist/cjs/FAST/fast-web-utilities.js +2 -1
- package/dist/dts/FAST/fast-web-utilities.d.ts +1 -1
- package/dist/dts/FAST/fast-web-utilities.d.ts.map +1 -1
- package/dist/esm/FAST/fast-web-utilities.js +1 -1
- package/dist/web-core.d.ts +3 -0
- package/docs/api-report.md +3 -0
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.uniqueId = exports.SystemColors = exports.pascalCase = exports.Orientation = exports.limit = exports.Direction = exports.classNames = void 0;
|
|
3
|
+
exports.isNullOrWhiteSpace = exports.uniqueId = exports.SystemColors = exports.pascalCase = exports.Orientation = exports.limit = exports.Direction = exports.classNames = void 0;
|
|
4
4
|
var fast_web_utilities_1 = require("@microsoft/fast-web-utilities");
|
|
5
5
|
Object.defineProperty(exports, "classNames", { enumerable: true, get: function () { return fast_web_utilities_1.classNames; } });
|
|
6
6
|
Object.defineProperty(exports, "Direction", { enumerable: true, get: function () { return fast_web_utilities_1.Direction; } });
|
|
@@ -9,3 +9,4 @@ Object.defineProperty(exports, "Orientation", { enumerable: true, get: function
|
|
|
9
9
|
Object.defineProperty(exports, "pascalCase", { enumerable: true, get: function () { return fast_web_utilities_1.pascalCase; } });
|
|
10
10
|
Object.defineProperty(exports, "SystemColors", { enumerable: true, get: function () { return fast_web_utilities_1.SystemColors; } });
|
|
11
11
|
Object.defineProperty(exports, "uniqueId", { enumerable: true, get: function () { return fast_web_utilities_1.uniqueId; } });
|
|
12
|
+
Object.defineProperty(exports, "isNullOrWhiteSpace", { enumerable: true, get: function () { return fast_web_utilities_1.isNullOrWhiteSpace; } });
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { classNames, Direction, limit, Orientation, pascalCase, SystemColors, uniqueId, } from '@microsoft/fast-web-utilities';
|
|
1
|
+
export { classNames, Direction, limit, Orientation, pascalCase, SystemColors, uniqueId, isNullOrWhiteSpace, } from '@microsoft/fast-web-utilities';
|
|
2
2
|
//# sourceMappingURL=fast-web-utilities.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fast-web-utilities.d.ts","sourceRoot":"","sources":["../../../src/FAST/fast-web-utilities.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EACV,SAAS,EACT,KAAK,EACL,WAAW,EACX,UAAU,EACV,YAAY,EACZ,QAAQ,
|
|
1
|
+
{"version":3,"file":"fast-web-utilities.d.ts","sourceRoot":"","sources":["../../../src/FAST/fast-web-utilities.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EACV,SAAS,EACT,KAAK,EACL,WAAW,EACX,UAAU,EACV,YAAY,EACZ,QAAQ,EACR,kBAAkB,GACnB,MAAM,+BAA+B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { classNames, Direction, limit, Orientation, pascalCase, SystemColors, uniqueId, } from '@microsoft/fast-web-utilities';
|
|
1
|
+
export { classNames, Direction, limit, Orientation, pascalCase, SystemColors, uniqueId, isNullOrWhiteSpace, } from '@microsoft/fast-web-utilities';
|
package/dist/web-core.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ import { html } from '@microsoft/fast-element';
|
|
|
80
80
|
import { HTMLBindingDirective } from '@microsoft/fast-element';
|
|
81
81
|
import { HTMLView } from '@microsoft/fast-element';
|
|
82
82
|
import { inject } from '@microsoft/fast-foundation';
|
|
83
|
+
import { isNullOrWhiteSpace } from '@microsoft/fast-web-utilities';
|
|
83
84
|
import { Key } from '@microsoft/fast-foundation';
|
|
84
85
|
import { limit } from '@microsoft/fast-web-utilities';
|
|
85
86
|
import { listboxOptionTemplate } from '@microsoft/fast-foundation';
|
|
@@ -391,6 +392,8 @@ export { HTMLView }
|
|
|
391
392
|
|
|
392
393
|
export { inject }
|
|
393
394
|
|
|
395
|
+
export { isNullOrWhiteSpace }
|
|
396
|
+
|
|
394
397
|
export { Key }
|
|
395
398
|
|
|
396
399
|
export { limit }
|
package/docs/api-report.md
CHANGED
|
@@ -86,6 +86,7 @@ import { html } from '@microsoft/fast-element';
|
|
|
86
86
|
import { HTMLBindingDirective } from '@microsoft/fast-element';
|
|
87
87
|
import { HTMLView } from '@microsoft/fast-element';
|
|
88
88
|
import { inject } from '@microsoft/fast-foundation';
|
|
89
|
+
import { isNullOrWhiteSpace } from '@microsoft/fast-web-utilities';
|
|
89
90
|
import { Key } from '@microsoft/fast-foundation';
|
|
90
91
|
import { limit } from '@microsoft/fast-web-utilities';
|
|
91
92
|
import { listboxOptionTemplate } from '@microsoft/fast-foundation';
|
|
@@ -343,6 +344,8 @@ export { HTMLView }
|
|
|
343
344
|
|
|
344
345
|
export { inject }
|
|
345
346
|
|
|
347
|
+
export { isNullOrWhiteSpace }
|
|
348
|
+
|
|
346
349
|
export { Key }
|
|
347
350
|
|
|
348
351
|
export { limit }
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/web-core",
|
|
3
3
|
"description": "Genesis Foundation Web Core",
|
|
4
|
-
"version": "14.244.
|
|
4
|
+
"version": "14.244.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "538c19faaf0ec3a5f8034516c74bf8083009485b"
|
|
47
47
|
}
|