@bpmn-io/form-js-viewer 1.8.7 → 1.9.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/assets/form-js-base.css +9 -0
- package/dist/assets/form-js.css +9 -0
- package/dist/index.cjs +57 -52
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +57 -52
- package/dist/index.es.js.map +1 -1
- package/dist/types/render/components/util/dateTimeUtil.d.ts +6 -0
- package/package.json +4 -4
|
@@ -3,6 +3,12 @@ export function formatTime(use24h: any, minutes: any): string;
|
|
|
3
3
|
export function parseInputTime(stringTime: any): number;
|
|
4
4
|
export function serializeTime(minutes: any, offset: any, timeSerializingFormat: any): string;
|
|
5
5
|
export function parseIsoTime(isoTimeString: any): number;
|
|
6
|
+
/**
|
|
7
|
+
* Returns the date object as a simple 'YYYY-MM-DD' formatted date in the local timezone.
|
|
8
|
+
*
|
|
9
|
+
* @param {*} date The date object to serialize.
|
|
10
|
+
* @returns {string} The serialized date.
|
|
11
|
+
*/
|
|
6
12
|
export function serializeDate(date: any): string;
|
|
7
13
|
export function isDateTimeInputInformationSufficient(value: any): boolean;
|
|
8
14
|
export function isDateInputInformationMatching(value: any): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-viewer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"description": "View forms - powered by bpmn.io",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -55,7 +55,8 @@
|
|
|
55
55
|
"flatpickr": "^4.6.13",
|
|
56
56
|
"ids": "^1.0.5",
|
|
57
57
|
"lodash": "^4.17.21",
|
|
58
|
-
"
|
|
58
|
+
"luxon": "^3.5.0",
|
|
59
|
+
"marked": "^13.0.0",
|
|
59
60
|
"min-dash": "^4.2.1",
|
|
60
61
|
"preact": "^10.5.14"
|
|
61
62
|
},
|
|
@@ -64,6 +65,5 @@
|
|
|
64
65
|
],
|
|
65
66
|
"files": [
|
|
66
67
|
"dist"
|
|
67
|
-
]
|
|
68
|
-
"gitHead": "aaaaf358018b2410011613345a5e254fccdea891"
|
|
68
|
+
]
|
|
69
69
|
}
|