@difizen/libro-core 0.1.21 → 0.2.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.
|
@@ -73,7 +73,7 @@ export var DefaultDatePicker = function DefaultDatePicker(_ref6) {
|
|
|
73
73
|
return /*#__PURE__*/_jsx(DatePicker, {
|
|
74
74
|
value: dayjs(value, dateFormat),
|
|
75
75
|
onChange: function onChange(date, dateString) {
|
|
76
|
-
return _onChange6(dateString);
|
|
76
|
+
return _onChange6(dateString.toString());
|
|
77
77
|
}
|
|
78
78
|
});
|
|
79
79
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ModalContribution, ToolbarContribution } from '@difizen/mana-app';
|
|
2
2
|
import type { ToolbarRegistry } from '@difizen/mana-app';
|
|
3
3
|
export declare class SettingsContribution implements ModalContribution, ToolbarContribution {
|
|
4
|
-
registerModal(): import("@difizen/mana-app").ModalItem<
|
|
4
|
+
registerModal(): import("@difizen/mana-app").ModalItem<any>;
|
|
5
5
|
registerToolbarItems(registry: ToolbarRegistry): void;
|
|
6
6
|
}
|
|
7
7
|
//# sourceMappingURL=settings-contribution.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@difizen/libro-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"libro",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@ant-design/icons": "^5.1.0",
|
|
37
|
-
"@difizen/libro-code-editor": "^0.
|
|
38
|
-
"@difizen/libro-common": "^0.
|
|
39
|
-
"@difizen/libro-shared-model": "^0.
|
|
40
|
-
"@difizen/libro-virtualized": "^0.
|
|
37
|
+
"@difizen/libro-code-editor": "^0.2.0",
|
|
38
|
+
"@difizen/libro-common": "^0.2.0",
|
|
39
|
+
"@difizen/libro-shared-model": "^0.2.0",
|
|
40
|
+
"@difizen/libro-virtualized": "^0.2.0",
|
|
41
41
|
"@difizen/mana-app": "latest",
|
|
42
42
|
"@difizen/mana-l10n": "latest",
|
|
43
43
|
"@difizen/mana-react": "latest",
|
|
@@ -60,6 +60,6 @@ export const DefaultDatePicker: React.FC<RenderProps<string>> = ({
|
|
|
60
60
|
}) => (
|
|
61
61
|
<DatePicker
|
|
62
62
|
value={dayjs(value, dateFormat)}
|
|
63
|
-
onChange={(date, dateString) => onChange(dateString)}
|
|
63
|
+
onChange={(date, dateString) => onChange(dateString.toString())}
|
|
64
64
|
/>
|
|
65
65
|
);
|