@limetech/lime-web-components 5.3.0 → 5.5.0
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/datetimeformatter/datetimeformatter.d.ts +15 -0
- package/dist/datetimeformatter/datetimeformatter.d.ts.map +1 -1
- package/dist/es5/testing/index.js +1 -0
- package/dist/es5/testing/services/datetimeformatter.js +11 -0
- package/dist/es5/testing/services/index.js +5 -0
- package/dist/es5/testing/services/translator.js +9 -0
- package/dist/limetype/property.d.ts +8 -0
- package/dist/limetype/property.d.ts.map +1 -1
- package/dist/testing/index.d.ts +1 -0
- package/dist/testing/index.d.ts.map +1 -1
- package/dist/testing/index.js +1 -0
- package/dist/testing/services/datetimeformatter.d.ts +3 -0
- package/dist/testing/services/datetimeformatter.d.ts.map +1 -0
- package/dist/testing/services/datetimeformatter.js +5 -0
- package/dist/testing/services/index.d.ts +3 -0
- package/dist/testing/services/index.d.ts.map +1 -0
- package/dist/testing/services/index.js +2 -0
- package/dist/testing/services/translator.d.ts +3 -0
- package/dist/testing/services/translator.d.ts.map +1 -0
- package/dist/testing/services/translator.js +5 -0
- package/package.json +8 -8
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
import { DateTimeType } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* The hour cycle to use.
|
|
4
|
+
* - `h11` is 12 hour clock where midnight and midday are 0:00.
|
|
5
|
+
* - `h12` is 12 hour clock where midnight and midday are 12:00.
|
|
6
|
+
* - `h23` is 24 hour clock where midnight is 0:00.
|
|
7
|
+
* - `h24` is 24 hour clock where midnight is 24:00.
|
|
8
|
+
*
|
|
9
|
+
* @alpha
|
|
10
|
+
* @group Localization
|
|
11
|
+
*/
|
|
12
|
+
export type HourCycle = 'h11' | 'h12' | 'h23' | 'h24';
|
|
2
13
|
/**
|
|
3
14
|
* Options for `DateTimeFormatter.format()`.
|
|
4
15
|
*
|
|
@@ -21,6 +32,10 @@ export interface DateTimeFormatterOptions {
|
|
|
21
32
|
* property, and instead allow the service to use its own default value.
|
|
22
33
|
*/
|
|
23
34
|
locale?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The hour cycle to use.
|
|
37
|
+
*/
|
|
38
|
+
hourCycle?: HourCycle;
|
|
24
39
|
}
|
|
25
40
|
/**
|
|
26
41
|
* Service for formatting date and time values.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datetimeformatter.d.ts","sourceRoot":"","sources":["../../src/datetimeformatter/datetimeformatter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEvC;;;;;GAKG;AACH,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,IAAI,EAAE,YAAY,CAAC;IAEnB;;;;;;;;;OASG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"datetimeformatter.d.ts","sourceRoot":"","sources":["../../src/datetimeformatter/datetimeformatter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAEvC;;;;;;;;;GASG;AACH,MAAM,MAAM,SAAS,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;AAEtD;;;;;GAKG;AACH,MAAM,WAAW,wBAAwB;IACrC;;OAEG;IACH,IAAI,EAAE,YAAY,CAAC;IAEnB;;;;;;;;;OASG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,CAAC;CACzB;AAED;;;;;GAKG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;;;;;;;;;;;;;;;OAkBG;IACH,MAAM,CACF,IAAI,EAAE,IAAI,GAAG,MAAM,EACnB,OAAO,EAAE,YAAY,GAAG,wBAAwB,GACjD,MAAM,CAAC;CACb"}
|
|
@@ -4,6 +4,7 @@ exports.limeobjects = exports.limetypes = void 0;
|
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
5
|
tslib_1.__exportStar(require("./component-testing"), exports);
|
|
6
6
|
tslib_1.__exportStar(require("./platform"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./services"), exports);
|
|
7
8
|
var limetypes_1 = require("./limetypes");
|
|
8
9
|
Object.defineProperty(exports, "limetypes", { enumerable: true, get: function () { return limetypes_1.limetypes; } });
|
|
9
10
|
var limeobjects_1 = require("./limeobjects");
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getDateTimeFormatter = void 0;
|
|
4
|
+
var getDateTimeFormatter = function () {
|
|
5
|
+
return {
|
|
6
|
+
format: jest.fn(function (date, type) {
|
|
7
|
+
return "".concat(typeof date === 'object' ? JSON.stringify(date) : date, " - ").concat(typeof type === 'object' ? JSON.stringify(type) : type);
|
|
8
|
+
}),
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
exports.getDateTimeFormatter = getDateTimeFormatter;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getTranslator = void 0;
|
|
4
|
+
var getTranslator = function () {
|
|
5
|
+
return {
|
|
6
|
+
get: jest.fn(function (id, params) { return id; }),
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
exports.getTranslator = getTranslator;
|
|
@@ -33,6 +33,14 @@ export interface Option {
|
|
|
33
33
|
id?: number;
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
36
|
+
* The subset of `PropertyType`s that represent a date or time of some kind.
|
|
37
|
+
*
|
|
38
|
+
* **NOTE**<br>
|
|
39
|
+
* For legacy reasons:
|
|
40
|
+
* - the type `time` represents a value with date _and_ time
|
|
41
|
+
* - the type `timeofday` represents a value with _only_ time
|
|
42
|
+
* - there is no type for "week"; instead week properties use the type `time` and are configured as "week" in the applicable view config
|
|
43
|
+
*
|
|
36
44
|
* @public
|
|
37
45
|
* @group Lime types
|
|
38
46
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"property.d.ts","sourceRoot":"","sources":["../../src/limetype/property.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC;;;GAGG;AACH,MAAM,WAAW,YAAY;IACzB,GAAG,EAAE,GAAG,CAAC;IACT,YAAY,EAAE,GAAG,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,IAAI,EAAE,YAAY,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,QAAQ,CAAC,EAAE;QACP,WAAW,EAAE,MAAM,QAAQ,CAAC;QAC5B,gBAAgB,EAAE,MAAM,YAAY,CAAC;KACxC,CAAC;CACL;AAED;;;GAGG;AACH,MAAM,WAAW,MAAM;IACnB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,OAAO,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;CACf;AAED
|
|
1
|
+
{"version":3,"file":"property.d.ts","sourceRoot":"","sources":["../../src/limetype/property.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC;;;GAGG;AACH,MAAM,WAAW,YAAY;IACzB,GAAG,EAAE,GAAG,CAAC;IACT,YAAY,EAAE,GAAG,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,IAAI,EAAE,YAAY,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,QAAQ,CAAC,EAAE;QACP,WAAW,EAAE,MAAM,QAAQ,CAAC;QAC5B,gBAAgB,EAAE,MAAM,YAAY,CAAC;KACxC,CAAC;CACL;AAED;;;GAGG;AACH,MAAM,WAAW,MAAM;IACnB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,OAAO,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,EAAE,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;;;;;;;;;;GAWG;AACH,MAAM,MAAM,oBAAoB,GAC1B,MAAM,GACN,WAAW,GACX,MAAM,GACN,MAAM,GACN,SAAS,GACT,OAAO,CAAC;AAEd;;;GAGG;AACH,MAAM,MAAM,YAAY,GAClB,QAAQ,GACR,MAAM,GACN,OAAO,GACP,SAAS,GACT,SAAS,GACT,SAAS,GACT,OAAO,GACP,MAAM,GACN,MAAM,GACN,KAAK,GACL,QAAQ,GACR,KAAK,GACL,MAAM,GACN,QAAQ,GACR,SAAS,GACT,WAAW,GACX,qBAAqB,GACrB,QAAQ,GACR,oBAAoB,CAAC;AAE3B;;;GAGG;AACH,wBAAgB,UAAU,CAAC,QAAQ,EAAE,YAAY,WAShD;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,YAAY,WAItD;AAED;;;GAGG;AACH,wBAAgB,MAAM,CAAC,QAAQ,EAAE,YAAY,WAW5C;AAED;;;GAGG;AACH,wBAAgB,QAAQ,CAAC,QAAQ,EAAE,YAAY,WAI9C;AAED;;;GAGG;AACH,wBAAgB,OAAO,CAAC,QAAQ,EAAE,YAAY,WAI7C"}
|
package/dist/testing/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/testing/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/testing/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
|
package/dist/testing/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"datetimeformatter.d.ts","sourceRoot":"","sources":["../../../src/testing/services/datetimeformatter.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,iBAAiB,EAGpB,MAAM,yBAAyB,CAAC;AAEjC,eAAO,MAAM,oBAAoB,yBAYhC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/testing/services/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"translator.d.ts","sourceRoot":"","sources":["../../../src/testing/services/translator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAE9C,eAAO,MAAM,aAAa,kBASzB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@limetech/lime-web-components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.0",
|
|
4
4
|
"description": "Lime Web Components",
|
|
5
5
|
"author": "Lime Technologies",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,19 +29,19 @@
|
|
|
29
29
|
"postpublish:dry-run": "npm run docs:publish -- --v=current --dryRun"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@stencil/core": "^2.22.
|
|
32
|
+
"@stencil/core": "^2.22.2",
|
|
33
33
|
"rxjs": "^7.8.0",
|
|
34
34
|
"tslib": "^2.5.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@commitlint/config-conventional": "^16.2.4",
|
|
38
|
-
"@microsoft/api-extractor": "^7.34.
|
|
38
|
+
"@microsoft/api-extractor": "^7.34.4",
|
|
39
39
|
"@types/jest": "^27.5.0",
|
|
40
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
41
|
-
"@typescript-eslint/parser": "^5.
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
|
41
|
+
"@typescript-eslint/parser": "^5.52.0",
|
|
42
42
|
"commitizen": "^4.3.0",
|
|
43
43
|
"cz-conventional-changelog": "^3.3.0",
|
|
44
|
-
"eslint": "^8.
|
|
44
|
+
"eslint": "^8.34.0",
|
|
45
45
|
"eslint-config-prettier": "^8.6.0",
|
|
46
46
|
"eslint-plugin-ban": "^1.6.0",
|
|
47
47
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
@@ -51,13 +51,13 @@
|
|
|
51
51
|
"eslint-plugin-tsdoc": "^0.2.17",
|
|
52
52
|
"jest": "^27.5.1",
|
|
53
53
|
"jest-cli": "^27.5.1",
|
|
54
|
-
"prettier": "^2.8.
|
|
54
|
+
"prettier": "^2.8.4",
|
|
55
55
|
"replace-in-file": "^6.3.5",
|
|
56
56
|
"shelljs": "0.8.5",
|
|
57
57
|
"typedoc": "^0.23.24",
|
|
58
58
|
"typedoc-plugin-markdown": "~2.4.2",
|
|
59
59
|
"typescript": "^4.9.5",
|
|
60
|
-
"yargs": "^17.
|
|
60
|
+
"yargs": "^17.7.0"
|
|
61
61
|
},
|
|
62
62
|
"keywords": [
|
|
63
63
|
"lime web components",
|