@edvisor/product-language 0.11.71 → 0.11.73
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.
|
@@ -28,9 +28,10 @@ declare class ControlsSlot extends Slot {
|
|
|
28
28
|
export declare type IDatePickerSlots = {
|
|
29
29
|
Controls: typeof ControlsSlot;
|
|
30
30
|
};
|
|
31
|
-
export declare function datePickerFactory<T>({ fromDate, toDate, empty, }: {
|
|
31
|
+
export declare function datePickerFactory<T>({ fromDate, toDate, empty, displaysUTC, }: {
|
|
32
32
|
fromDate: (date: Date | undefined) => T;
|
|
33
33
|
toDate: (obj: T) => Date;
|
|
34
34
|
empty: (obj: T) => boolean;
|
|
35
|
+
displaysUTC?: boolean;
|
|
35
36
|
}): FC<IDatePickerProps<T>, IDatePickerSlots>;
|
|
36
37
|
export {};
|
package/package.json
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edvisor/product-language",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.73",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Edvisor.io product-language components",
|
|
6
6
|
"repository": "https://github.com/edvisor-io/front-end/",
|
|
7
|
+
"main": "./index.cjs",
|
|
8
|
+
"types": "./index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./index.d.ts",
|
|
12
|
+
"import": "./index.js",
|
|
13
|
+
"require": "./index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
7
16
|
"devDependencies": {
|
|
8
17
|
"@types/jest-axe": "^3.5.4",
|
|
9
18
|
"release-it": "^15.10.3"
|
|
@@ -48,7 +57,5 @@
|
|
|
48
57
|
}
|
|
49
58
|
},
|
|
50
59
|
"module": "./index.js",
|
|
51
|
-
"
|
|
52
|
-
"type": "module",
|
|
53
|
-
"types": "./index.d.ts"
|
|
60
|
+
"type": "module"
|
|
54
61
|
}
|