carbon-react 111.9.1 → 111.10.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/esm/components/note/__internal__/status-icon/index.d.ts +1 -0
- package/esm/components/note/__internal__/status-icon/index.js +1 -0
- package/esm/components/note/__internal__/status-icon/status-icon.component.d.ts +9 -0
- package/esm/components/note/__internal__/{status-with-tooltip/status.component.js → status-icon/status-icon.component.js} +4 -6
- package/esm/components/note/__internal__/status-icon/status-icon.style.d.ts +2 -0
- package/esm/components/note/__internal__/{status-with-tooltip/status.style.js → status-icon/status-icon.style.js} +0 -0
- package/esm/components/note/index.d.ts +2 -2
- package/esm/components/note/note.component.d.ts +28 -0
- package/esm/components/note/note.component.js +188 -46
- package/esm/components/note/note.style.d.ts +13 -0
- package/esm/components/note/note.style.js +0 -5
- package/esm/components/numeral-date/index.d.ts +2 -1
- package/esm/components/numeral-date/numeral-date.component.d.ts +81 -0
- package/esm/components/numeral-date/numeral-date.component.js +237 -128
- package/esm/components/numeral-date/numeral-date.style.d.ts +11 -0
- package/esm/components/sidebar/sidebar.component.d.ts +2 -2
- package/esm/components/sidebar/sidebar.component.js +106 -2
- package/esm/components/sidebar/sidebar.style.d.ts +1 -6
- package/esm/components/sidebar/sidebar.style.js +7 -2
- package/esm/components/text-editor/__internal__/decorators/index.d.ts +3 -0
- package/esm/components/text-editor/__internal__/decorators/link-decorator.d.ts +7 -0
- package/esm/components/text-editor/__internal__/utils/index.d.ts +1 -0
- package/esm/components/text-editor/__internal__/utils/utils.d.ts +28 -0
- package/esm/components/text-editor/text-editor.component.d.ts +8 -0
- package/esm/components/text-editor/text-editor.style.d.ts +3 -0
- package/esm/style/utils/width.d.ts +1 -1
- package/lib/components/note/__internal__/status-icon/index.d.ts +1 -0
- package/lib/components/note/__internal__/{status-with-tooltip → status-icon}/index.js +2 -2
- package/lib/components/note/__internal__/{status-with-tooltip → status-icon}/package.json +1 -1
- package/lib/components/note/__internal__/status-icon/status-icon.component.d.ts +9 -0
- package/lib/components/note/__internal__/{status-with-tooltip/status.component.js → status-icon/status-icon.component.js} +5 -7
- package/lib/components/note/__internal__/status-icon/status-icon.style.d.ts +2 -0
- package/lib/components/note/__internal__/{status-with-tooltip/status.style.js → status-icon/status-icon.style.js} +0 -0
- package/lib/components/note/index.d.ts +2 -2
- package/lib/components/note/note.component.d.ts +28 -0
- package/lib/components/note/note.component.js +195 -55
- package/lib/components/note/note.style.d.ts +13 -0
- package/lib/components/note/note.style.js +0 -6
- package/lib/components/numeral-date/index.d.ts +2 -1
- package/lib/components/numeral-date/numeral-date.component.d.ts +81 -0
- package/lib/components/numeral-date/numeral-date.component.js +237 -128
- package/lib/components/numeral-date/numeral-date.style.d.ts +11 -0
- package/lib/components/sidebar/sidebar.component.d.ts +2 -2
- package/lib/components/sidebar/sidebar.component.js +106 -2
- package/lib/components/sidebar/sidebar.style.d.ts +1 -6
- package/lib/components/sidebar/sidebar.style.js +8 -2
- package/lib/components/text-editor/__internal__/decorators/index.d.ts +3 -0
- package/lib/components/text-editor/__internal__/decorators/link-decorator.d.ts +7 -0
- package/lib/components/text-editor/__internal__/utils/index.d.ts +1 -0
- package/lib/components/text-editor/__internal__/utils/utils.d.ts +28 -0
- package/lib/components/text-editor/text-editor.component.d.ts +8 -0
- package/lib/components/text-editor/text-editor.style.d.ts +3 -0
- package/lib/style/utils/width.d.ts +1 -1
- package/package.json +3 -2
- package/esm/components/note/__internal__/status-with-tooltip/index.js +0 -1
- package/esm/components/note/note.d.ts +0 -30
- package/esm/components/numeral-date/numeral-date.d.ts +0 -97
- package/lib/components/note/note.d.ts +0 -30
- package/lib/components/numeral-date/numeral-date.d.ts +0 -97
|
@@ -7,6 +7,8 @@ exports.default = void 0;
|
|
|
7
7
|
|
|
8
8
|
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
9
9
|
|
|
10
|
+
var _width = _interopRequireDefault(require("../../style/utils/width"));
|
|
11
|
+
|
|
10
12
|
var _base = _interopRequireDefault(require("../../style/themes/base"));
|
|
11
13
|
|
|
12
14
|
var _iconButton = _interopRequireDefault(require("../icon-button/icon-button.style"));
|
|
@@ -42,7 +44,8 @@ const StyledSidebar = _styledComponents.default.div`
|
|
|
42
44
|
onCancel,
|
|
43
45
|
position,
|
|
44
46
|
size,
|
|
45
|
-
theme
|
|
47
|
+
theme,
|
|
48
|
+
width
|
|
46
49
|
}) => (0, _styledComponents.css)`
|
|
47
50
|
background: var(--colorsUtilityMajor025);
|
|
48
51
|
border-radius: 1px;
|
|
@@ -53,9 +56,12 @@ const StyledSidebar = _styledComponents.default.div`
|
|
|
53
56
|
top: 0;
|
|
54
57
|
z-index: ${theme.zIndex.fullScreenModal};
|
|
55
58
|
|
|
56
|
-
${size && (0, _styledComponents.css)`
|
|
59
|
+
${!width && size && (0, _styledComponents.css)`
|
|
57
60
|
width: ${_sidebar.SIDEBAR_SIZES_CSS[size]};
|
|
58
61
|
`}
|
|
62
|
+
${width && (0, _width.default)({
|
|
63
|
+
width
|
|
64
|
+
})}
|
|
59
65
|
|
|
60
66
|
${position && (0, _styledComponents.css)`
|
|
61
67
|
box-shadow: var(--boxShadow300);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { computeBlockType, getContent, getContentInfo, getDecoratedValue, getSelection, getSelectionInfo, getSelectedLength, moveSelectionToEnd, resetBlockType, isASCIIChar, replaceText, hasBlockStyle, hasInlineStyle, blockStyleFn } from "./utils";
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export function blockStyleFn(block: any): "" | "text-editor-block-unordered" | "text-editor-block-ordered";
|
|
2
|
+
export function hasBlockStyle(value: any, type: any): boolean;
|
|
3
|
+
export function hasInlineStyle(value: any, style: any): any;
|
|
4
|
+
export function isASCIIChar(str: any): boolean;
|
|
5
|
+
export function replaceText(editorState: any, text: any, inlineStyle: any, forceSelection: any): EditorState;
|
|
6
|
+
export function computeBlockType(char: any, type: any): "ordered-list-item" | "unordered-list-item" | "unstyled";
|
|
7
|
+
export function resetBlockType(value: any, newType?: string): EditorState;
|
|
8
|
+
export function getDecoratedValue(value: any): EditorState;
|
|
9
|
+
export function getContent(value: any): any;
|
|
10
|
+
export function getSelection(value: any): any;
|
|
11
|
+
export function getContentInfo(value: any): {
|
|
12
|
+
content: any;
|
|
13
|
+
currentBlock: any;
|
|
14
|
+
blockType: any;
|
|
15
|
+
blockLength: any;
|
|
16
|
+
blockText: any;
|
|
17
|
+
blockMap: any;
|
|
18
|
+
};
|
|
19
|
+
export function getSelectionInfo(value: any): {
|
|
20
|
+
selection: any;
|
|
21
|
+
startKey: any;
|
|
22
|
+
endKey: any;
|
|
23
|
+
startOffset: any;
|
|
24
|
+
endOffset: any;
|
|
25
|
+
};
|
|
26
|
+
export function moveSelectionToEnd(value: any): EditorState;
|
|
27
|
+
export function getSelectedLength(value: any): number;
|
|
28
|
+
import { EditorState } from "draft-js";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export const EditorContext: React.Context<{}>;
|
|
2
|
+
export const TextEditorState: typeof EditorState;
|
|
3
|
+
export const TextEditorContentState: typeof ContentState;
|
|
4
|
+
export default TextEditor;
|
|
5
|
+
import React from "react";
|
|
6
|
+
import { EditorState } from "draft-js";
|
|
7
|
+
import { ContentState } from "draft-js";
|
|
8
|
+
declare const TextEditor: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export const StyledEditorWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
+
export const StyledEditorContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export const StyledEditorOutline: import("styled-components").StyledComponent<"div", any, {}, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "carbon-react",
|
|
3
|
-
"version": "111.
|
|
3
|
+
"version": "111.10.0",
|
|
4
4
|
"description": "A library of reusable React components for easily building user interfaces.",
|
|
5
5
|
"files": [
|
|
6
6
|
"lib",
|
|
@@ -138,8 +138,9 @@
|
|
|
138
138
|
"file-loader": "^6.2.0",
|
|
139
139
|
"fs-extra": "^10.0.0",
|
|
140
140
|
"husky": "^4.3.6",
|
|
141
|
-
"jest": "^
|
|
141
|
+
"jest": "^27.5.1",
|
|
142
142
|
"jest-canvas-mock": "^2.3.1",
|
|
143
|
+
"jest-environment-jsdom": "^27.5.1",
|
|
143
144
|
"jest-fetch-mock": "^3.0.3",
|
|
144
145
|
"jest-styled-components": "^6.3.1",
|
|
145
146
|
"lint-staged": "^10.5.3",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "./status.component";
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { MarginProps } from "styled-system";
|
|
3
|
-
|
|
4
|
-
export interface NoteProps extends MarginProps {
|
|
5
|
-
/** The rich text content to display in the Note */
|
|
6
|
-
noteContent: Record<string, unknown>;
|
|
7
|
-
/** Set a percentage-based width for the whole Note component, relative to its parent. */
|
|
8
|
-
width?: number;
|
|
9
|
-
/** renders a control for the Note */
|
|
10
|
-
inlineControl?: React.ReactNode;
|
|
11
|
-
/** Adds a Title to the Note */
|
|
12
|
-
title?: string;
|
|
13
|
-
/** Adds a name to the Note footer */
|
|
14
|
-
name?: string;
|
|
15
|
-
/** Adds a created on date to the Note footer */
|
|
16
|
-
createdDate: string;
|
|
17
|
-
/** Adds a status and tooltip to the Note footer */
|
|
18
|
-
status?: {
|
|
19
|
-
text: string;
|
|
20
|
-
timeStamp: string;
|
|
21
|
-
};
|
|
22
|
-
/** The previews to display of any links added to the Editor */
|
|
23
|
-
previews?: React.ReactNode[];
|
|
24
|
-
/** Callback to report a url when a link is added */
|
|
25
|
-
onLinkAdded?: (url: string) => void;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
declare function Note(props: NoteProps): JSX.Element;
|
|
29
|
-
|
|
30
|
-
export default Note;
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { MarginProps } from "styled-system";
|
|
3
|
-
import { ValidationProps } from "../../__internal__/validations";
|
|
4
|
-
|
|
5
|
-
interface DayMonthDate {
|
|
6
|
-
dd: string;
|
|
7
|
-
mm: string;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
interface MonthYearDate {
|
|
11
|
-
mm: string;
|
|
12
|
-
yyyy: string;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
interface FullDate extends DayMonthDate {
|
|
16
|
-
yyyy: string;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
interface NumeralDateEvent {
|
|
20
|
-
target: {
|
|
21
|
-
name: string;
|
|
22
|
-
id: string;
|
|
23
|
-
value: DayMonthDate | MonthYearDate | FullDate;
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface NumeralDateProps extends ValidationProps, MarginProps {
|
|
28
|
-
/** Identifier used for testing purposes, applied to the root element of the component. */
|
|
29
|
-
"data-component"?: string;
|
|
30
|
-
/** Identifier used for testing purposes, applied to the root element of the component. */
|
|
31
|
-
"data-element"?: string;
|
|
32
|
-
/** Identifier used for testing purposes, applied to the root element of the component. */
|
|
33
|
-
"data-role"?: string;
|
|
34
|
-
/** If true, the component will be disabled */
|
|
35
|
-
disabled?: boolean;
|
|
36
|
-
/** If true, the component will be read-only */
|
|
37
|
-
readOnly?: boolean;
|
|
38
|
-
/** Breakpoint for adaptive label (inline labels change to top aligned). Enables the adaptive behaviour when set */
|
|
39
|
-
adaptiveLabelBreakpoint?: number;
|
|
40
|
-
/* Array of strings to define custom input layout.
|
|
41
|
-
Allowed formats:
|
|
42
|
-
['dd', 'mm', 'yyyy'],
|
|
43
|
-
['mm', 'dd', 'yyyy'],
|
|
44
|
-
['dd', 'mm'],
|
|
45
|
-
['mm', 'dd'],
|
|
46
|
-
['mm', 'yyyy'] */
|
|
47
|
-
dateFormat?:
|
|
48
|
-
| ["dd", "mm", "yyyy"]
|
|
49
|
-
| ["mm", "dd", "yyyy"]
|
|
50
|
-
| ["dd", "mm"]
|
|
51
|
-
| ["mm", "dd"]
|
|
52
|
-
| ["mm", "yyyy"];
|
|
53
|
-
/** Default value for use in uncontrolled mode */
|
|
54
|
-
defaultValue?: DayMonthDate | MonthYearDate | FullDate;
|
|
55
|
-
/** Value for use in controlled mode */
|
|
56
|
-
value?: DayMonthDate | MonthYearDate | FullDate;
|
|
57
|
-
/** When true, enables the internal errors to be displayed */
|
|
58
|
-
enableInternalError?: boolean;
|
|
59
|
-
/** When true, enables the internal warnings to be displayed */
|
|
60
|
-
enableInternalWarning?: boolean;
|
|
61
|
-
/** Help content to be displayed under an input */
|
|
62
|
-
fieldHelp?: React.ReactNode;
|
|
63
|
-
/** `id` for events */
|
|
64
|
-
id?: string;
|
|
65
|
-
/** `name` for events */
|
|
66
|
-
name?: string;
|
|
67
|
-
/** Label */
|
|
68
|
-
label?: string;
|
|
69
|
-
/** Label alignment. Works only when labelInline is true */
|
|
70
|
-
labelAlign?: "left" | "right";
|
|
71
|
-
/** Text applied to label help tooltip */
|
|
72
|
-
labelHelp?: React.ReactNode;
|
|
73
|
-
/** When true, label is placed in line with an input */
|
|
74
|
-
labelInline?: boolean;
|
|
75
|
-
/** Label width */
|
|
76
|
-
labelWidth?: number;
|
|
77
|
-
/** Spacing between label and a field for inline label, given number will be multiplied by base spacing unit (8) */
|
|
78
|
-
labelSpacing?: 1 | 2;
|
|
79
|
-
/** Blur event handler */
|
|
80
|
-
onBlur?: (ev: NumeralDateEvent) => void;
|
|
81
|
-
/** Change event handler */
|
|
82
|
-
onChange?: (ev: NumeralDateEvent) => void;
|
|
83
|
-
/** Flag to configure component as mandatory */
|
|
84
|
-
required?: boolean;
|
|
85
|
-
/** Size of an input */
|
|
86
|
-
size?: "small" | "medium" | "large";
|
|
87
|
-
/** When true, validation icons will be placed on labels instead of being placed on the inputs */
|
|
88
|
-
validationOnLabel?: boolean;
|
|
89
|
-
/** Overrides the default tooltip position */
|
|
90
|
-
tooltipPosition?: "top" | "bottom" | "left" | "right";
|
|
91
|
-
/** Aria label for rendered help component */
|
|
92
|
-
helpAriaLabel?: string;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
declare function NumeralDate(props: NumeralDateProps): JSX.Element;
|
|
96
|
-
|
|
97
|
-
export default NumeralDate;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { MarginProps } from "styled-system";
|
|
3
|
-
|
|
4
|
-
export interface NoteProps extends MarginProps {
|
|
5
|
-
/** The rich text content to display in the Note */
|
|
6
|
-
noteContent: Record<string, unknown>;
|
|
7
|
-
/** Set a percentage-based width for the whole Note component, relative to its parent. */
|
|
8
|
-
width?: number;
|
|
9
|
-
/** renders a control for the Note */
|
|
10
|
-
inlineControl?: React.ReactNode;
|
|
11
|
-
/** Adds a Title to the Note */
|
|
12
|
-
title?: string;
|
|
13
|
-
/** Adds a name to the Note footer */
|
|
14
|
-
name?: string;
|
|
15
|
-
/** Adds a created on date to the Note footer */
|
|
16
|
-
createdDate: string;
|
|
17
|
-
/** Adds a status and tooltip to the Note footer */
|
|
18
|
-
status?: {
|
|
19
|
-
text: string;
|
|
20
|
-
timeStamp: string;
|
|
21
|
-
};
|
|
22
|
-
/** The previews to display of any links added to the Editor */
|
|
23
|
-
previews?: React.ReactNode[];
|
|
24
|
-
/** Callback to report a url when a link is added */
|
|
25
|
-
onLinkAdded?: (url: string) => void;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
declare function Note(props: NoteProps): JSX.Element;
|
|
29
|
-
|
|
30
|
-
export default Note;
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { MarginProps } from "styled-system";
|
|
3
|
-
import { ValidationProps } from "../../__internal__/validations";
|
|
4
|
-
|
|
5
|
-
interface DayMonthDate {
|
|
6
|
-
dd: string;
|
|
7
|
-
mm: string;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
interface MonthYearDate {
|
|
11
|
-
mm: string;
|
|
12
|
-
yyyy: string;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
interface FullDate extends DayMonthDate {
|
|
16
|
-
yyyy: string;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
interface NumeralDateEvent {
|
|
20
|
-
target: {
|
|
21
|
-
name: string;
|
|
22
|
-
id: string;
|
|
23
|
-
value: DayMonthDate | MonthYearDate | FullDate;
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface NumeralDateProps extends ValidationProps, MarginProps {
|
|
28
|
-
/** Identifier used for testing purposes, applied to the root element of the component. */
|
|
29
|
-
"data-component"?: string;
|
|
30
|
-
/** Identifier used for testing purposes, applied to the root element of the component. */
|
|
31
|
-
"data-element"?: string;
|
|
32
|
-
/** Identifier used for testing purposes, applied to the root element of the component. */
|
|
33
|
-
"data-role"?: string;
|
|
34
|
-
/** If true, the component will be disabled */
|
|
35
|
-
disabled?: boolean;
|
|
36
|
-
/** If true, the component will be read-only */
|
|
37
|
-
readOnly?: boolean;
|
|
38
|
-
/** Breakpoint for adaptive label (inline labels change to top aligned). Enables the adaptive behaviour when set */
|
|
39
|
-
adaptiveLabelBreakpoint?: number;
|
|
40
|
-
/* Array of strings to define custom input layout.
|
|
41
|
-
Allowed formats:
|
|
42
|
-
['dd', 'mm', 'yyyy'],
|
|
43
|
-
['mm', 'dd', 'yyyy'],
|
|
44
|
-
['dd', 'mm'],
|
|
45
|
-
['mm', 'dd'],
|
|
46
|
-
['mm', 'yyyy'] */
|
|
47
|
-
dateFormat?:
|
|
48
|
-
| ["dd", "mm", "yyyy"]
|
|
49
|
-
| ["mm", "dd", "yyyy"]
|
|
50
|
-
| ["dd", "mm"]
|
|
51
|
-
| ["mm", "dd"]
|
|
52
|
-
| ["mm", "yyyy"];
|
|
53
|
-
/** Default value for use in uncontrolled mode */
|
|
54
|
-
defaultValue?: DayMonthDate | MonthYearDate | FullDate;
|
|
55
|
-
/** Value for use in controlled mode */
|
|
56
|
-
value?: DayMonthDate | MonthYearDate | FullDate;
|
|
57
|
-
/** When true, enables the internal errors to be displayed */
|
|
58
|
-
enableInternalError?: boolean;
|
|
59
|
-
/** When true, enables the internal warnings to be displayed */
|
|
60
|
-
enableInternalWarning?: boolean;
|
|
61
|
-
/** Help content to be displayed under an input */
|
|
62
|
-
fieldHelp?: React.ReactNode;
|
|
63
|
-
/** `id` for events */
|
|
64
|
-
id?: string;
|
|
65
|
-
/** `name` for events */
|
|
66
|
-
name?: string;
|
|
67
|
-
/** Label */
|
|
68
|
-
label?: string;
|
|
69
|
-
/** Label alignment. Works only when labelInline is true */
|
|
70
|
-
labelAlign?: "left" | "right";
|
|
71
|
-
/** Text applied to label help tooltip */
|
|
72
|
-
labelHelp?: React.ReactNode;
|
|
73
|
-
/** When true, label is placed in line with an input */
|
|
74
|
-
labelInline?: boolean;
|
|
75
|
-
/** Label width */
|
|
76
|
-
labelWidth?: number;
|
|
77
|
-
/** Spacing between label and a field for inline label, given number will be multiplied by base spacing unit (8) */
|
|
78
|
-
labelSpacing?: 1 | 2;
|
|
79
|
-
/** Blur event handler */
|
|
80
|
-
onBlur?: (ev: NumeralDateEvent) => void;
|
|
81
|
-
/** Change event handler */
|
|
82
|
-
onChange?: (ev: NumeralDateEvent) => void;
|
|
83
|
-
/** Flag to configure component as mandatory */
|
|
84
|
-
required?: boolean;
|
|
85
|
-
/** Size of an input */
|
|
86
|
-
size?: "small" | "medium" | "large";
|
|
87
|
-
/** When true, validation icons will be placed on labels instead of being placed on the inputs */
|
|
88
|
-
validationOnLabel?: boolean;
|
|
89
|
-
/** Overrides the default tooltip position */
|
|
90
|
-
tooltipPosition?: "top" | "bottom" | "left" | "right";
|
|
91
|
-
/** Aria label for rendered help component */
|
|
92
|
-
helpAriaLabel?: string;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
declare function NumeralDate(props: NumeralDateProps): JSX.Element;
|
|
96
|
-
|
|
97
|
-
export default NumeralDate;
|