@etsoo/react 1.2.4 → 1.2.5
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/lib/index.d.ts +3 -0
- package/lib/index.js +3 -0
- package/lib/mu/ComboBox.js +1 -1
- package/lib/mu/CountdownButton.d.ts +1 -1
- package/lib/mu/SelectEx.js +1 -1
- package/lib/mu/TextFieldEx.d.ts +3 -3
- package/lib/mu/texts/DateText.d.ts +30 -0
- package/lib/mu/texts/DateText.js +18 -0
- package/lib/mu/texts/MoneyText.d.ts +17 -0
- package/lib/mu/texts/MoneyText.js +24 -0
- package/lib/mu/texts/NumberText.d.ts +25 -0
- package/lib/mu/texts/NumberText.js +17 -0
- package/package.json +6 -6
- package/src/index.ts +5 -0
- package/src/mu/ComboBox.tsx +1 -1
- package/src/mu/SelectEx.tsx +1 -1
- package/src/mu/texts/DateText.tsx +51 -0
- package/src/mu/texts/MoneyText.tsx +44 -0
- package/src/mu/texts/NumberText.tsx +45 -0
package/lib/index.d.ts
CHANGED
|
@@ -19,6 +19,9 @@ export * from './mu/pages/ResponsivePageProps';
|
|
|
19
19
|
export * from './mu/pages/SearchPageProps';
|
|
20
20
|
export * from './mu/pages/TablePage';
|
|
21
21
|
export * from './mu/pages/ViewPage';
|
|
22
|
+
export * from './mu/texts/DateText';
|
|
23
|
+
export * from './mu/texts/MoneyText';
|
|
24
|
+
export * from './mu/texts/NumberText';
|
|
22
25
|
export * from './mu/ButtonLink';
|
|
23
26
|
export * from './mu/ComboBox';
|
|
24
27
|
export * from './mu/CountdownButton';
|
package/lib/index.js
CHANGED
|
@@ -22,6 +22,9 @@ export * from './mu/pages/ResponsivePageProps';
|
|
|
22
22
|
export * from './mu/pages/SearchPageProps';
|
|
23
23
|
export * from './mu/pages/TablePage';
|
|
24
24
|
export * from './mu/pages/ViewPage';
|
|
25
|
+
export * from './mu/texts/DateText';
|
|
26
|
+
export * from './mu/texts/MoneyText';
|
|
27
|
+
export * from './mu/texts/NumberText';
|
|
25
28
|
export * from './mu/ButtonLink';
|
|
26
29
|
export * from './mu/ComboBox';
|
|
27
30
|
export * from './mu/CountdownButton';
|
package/lib/mu/ComboBox.js
CHANGED
|
@@ -10,7 +10,7 @@ import { SearchField } from './SearchField';
|
|
|
10
10
|
*/
|
|
11
11
|
export function ComboBox(props) {
|
|
12
12
|
// Destruct
|
|
13
|
-
const { search = false, idField = 'id', idValue, inputMargin, inputRequired, inputVariant, defaultValue, label, name, options, readOnly = true, onChange, value, sx = { minWidth: '
|
|
13
|
+
const { search = false, idField = 'id', idValue, inputMargin, inputRequired, inputVariant, defaultValue, label, name, options, readOnly = true, onChange, value, sx = { minWidth: '150px' }, ...rest } = props;
|
|
14
14
|
// Value input ref
|
|
15
15
|
const inputRef = React.createRef();
|
|
16
16
|
// Local default value
|
|
@@ -20,4 +20,4 @@ export declare type CountdownButtonProps = Omit<ButtonProps, 'endIcon' | 'disabl
|
|
|
20
20
|
* @param props Props
|
|
21
21
|
* @returns Button
|
|
22
22
|
*/
|
|
23
|
-
export declare const CountdownButton: React.ForwardRefExoticComponent<Pick<CountdownButtonProps, "children" | "form" | "slot" | "title" | "value" | "name" | "type" | "
|
|
23
|
+
export declare const CountdownButton: React.ForwardRefExoticComponent<Pick<CountdownButtonProps, "children" | "form" | "slot" | "title" | "value" | "name" | "type" | "onScroll" | "id" | "hidden" | "color" | "size" | keyof import("@mui/material/OverridableComponent").CommonProps | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "TouchRippleProps" | "key" | "href" | "disableFocusRipple" | "variant" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "disableElevation" | "fullWidth" | "startIcon" | "onAction"> & React.RefAttributes<HTMLButtonElement>>;
|
package/lib/mu/SelectEx.js
CHANGED
|
@@ -79,7 +79,7 @@ export function SelectEx(props) {
|
|
|
79
79
|
: selected === option.id)
|
|
80
80
|
.map((option) => option.label)
|
|
81
81
|
.join(', ');
|
|
82
|
-
}, sx: { minWidth: '
|
|
82
|
+
}, sx: { minWidth: '150px' }, ...rest }, options.map((option) => {
|
|
83
83
|
// Option id
|
|
84
84
|
const id = option[idField];
|
|
85
85
|
// Option label
|
package/lib/mu/TextFieldEx.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare const TextFieldEx: React.ForwardRefExoticComponent<(Pick<import("
|
|
|
48
48
|
* Show password button
|
|
49
49
|
*/
|
|
50
50
|
showPassword?: boolean | undefined;
|
|
51
|
-
}, "children" | "label" | "slot" | "select" | "style" | "title" | "value" | "name" | "type" | "
|
|
51
|
+
}, "children" | "label" | "slot" | "select" | "style" | "title" | "value" | "name" | "type" | "onScroll" | "className" | "id" | "rows" | "hidden" | "color" | "size" | "disabled" | "error" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "sx" | "key" | "margin" | "variant" | "autoFocus" | "autoComplete" | "readOnly" | "required" | "onEnter" | "inputProps" | "inputRef" | "fullWidth" | "SelectProps" | "InputLabelProps" | "focused" | "hiddenLabel" | "InputProps" | "FormHelperTextProps" | "helperText" | "multiline" | "maxRows" | "minRows" | "showClear" | "showPassword"> | Pick<import("@mui/material").FilledTextFieldProps & {
|
|
52
52
|
/**
|
|
53
53
|
* On enter click
|
|
54
54
|
*/
|
|
@@ -65,7 +65,7 @@ export declare const TextFieldEx: React.ForwardRefExoticComponent<(Pick<import("
|
|
|
65
65
|
* Show password button
|
|
66
66
|
*/
|
|
67
67
|
showPassword?: boolean | undefined;
|
|
68
|
-
}, "children" | "label" | "slot" | "select" | "style" | "title" | "value" | "name" | "type" | "
|
|
68
|
+
}, "children" | "label" | "slot" | "select" | "style" | "title" | "value" | "name" | "type" | "onScroll" | "className" | "id" | "rows" | "hidden" | "color" | "size" | "disabled" | "error" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "sx" | "key" | "margin" | "variant" | "autoFocus" | "autoComplete" | "readOnly" | "required" | "onEnter" | "inputProps" | "inputRef" | "fullWidth" | "SelectProps" | "InputLabelProps" | "focused" | "hiddenLabel" | "InputProps" | "FormHelperTextProps" | "helperText" | "multiline" | "maxRows" | "minRows" | "showClear" | "showPassword"> | Pick<import("@mui/material").OutlinedTextFieldProps & {
|
|
69
69
|
/**
|
|
70
70
|
* On enter click
|
|
71
71
|
*/
|
|
@@ -82,4 +82,4 @@ export declare const TextFieldEx: React.ForwardRefExoticComponent<(Pick<import("
|
|
|
82
82
|
* Show password button
|
|
83
83
|
*/
|
|
84
84
|
showPassword?: boolean | undefined;
|
|
85
|
-
}, "children" | "label" | "slot" | "select" | "style" | "title" | "value" | "name" | "type" | "
|
|
85
|
+
}, "children" | "label" | "slot" | "select" | "style" | "title" | "value" | "name" | "type" | "onScroll" | "className" | "id" | "rows" | "hidden" | "color" | "size" | "disabled" | "error" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "sx" | "key" | "margin" | "variant" | "autoFocus" | "autoComplete" | "readOnly" | "required" | "onEnter" | "inputProps" | "inputRef" | "fullWidth" | "SelectProps" | "InputLabelProps" | "focused" | "hiddenLabel" | "InputProps" | "FormHelperTextProps" | "helperText" | "multiline" | "maxRows" | "minRows" | "showClear" | "showPassword">) & React.RefAttributes<TextFieldExMethods>>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { DateUtils } from '@etsoo/shared';
|
|
3
|
+
import { TypographyProps } from '@mui/material';
|
|
4
|
+
/**
|
|
5
|
+
* Date text props
|
|
6
|
+
*/
|
|
7
|
+
export interface DateTextProps extends TypographyProps {
|
|
8
|
+
/**
|
|
9
|
+
* Locale
|
|
10
|
+
*/
|
|
11
|
+
locale?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Options
|
|
14
|
+
*/
|
|
15
|
+
options?: DateUtils.FormatOptions;
|
|
16
|
+
/**
|
|
17
|
+
* Time zone
|
|
18
|
+
*/
|
|
19
|
+
timeZone?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Value to display
|
|
22
|
+
*/
|
|
23
|
+
value?: Date | string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Date text
|
|
27
|
+
* @param props Props
|
|
28
|
+
* @returns Component
|
|
29
|
+
*/
|
|
30
|
+
export declare function DateText(props: DateTextProps): JSX.Element;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DateUtils } from '@etsoo/shared';
|
|
2
|
+
import { Typography } from '@mui/material';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
/**
|
|
5
|
+
* Date text
|
|
6
|
+
* @param props Props
|
|
7
|
+
* @returns Component
|
|
8
|
+
*/
|
|
9
|
+
export function DateText(props) {
|
|
10
|
+
// Destruct
|
|
11
|
+
const { locale = 'lookup', options, timeZone, value, ...rest } = props;
|
|
12
|
+
// Formatted value
|
|
13
|
+
const localValue = value == null
|
|
14
|
+
? undefined
|
|
15
|
+
: DateUtils.format(locale, value, options, timeZone);
|
|
16
|
+
// Layout
|
|
17
|
+
return (React.createElement(Typography, { noWrap: true, ...rest }, localValue));
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { NumberTextProps } from './NumberText';
|
|
3
|
+
/**
|
|
4
|
+
* Money text props
|
|
5
|
+
*/
|
|
6
|
+
export interface MoneyTextProps extends NumberTextProps {
|
|
7
|
+
/**
|
|
8
|
+
* Currency, USD for US dollar
|
|
9
|
+
*/
|
|
10
|
+
currency?: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Money text
|
|
14
|
+
* @param props Props
|
|
15
|
+
* @returns Component
|
|
16
|
+
*/
|
|
17
|
+
export declare function MoneyText(props: MoneyTextProps): JSX.Element;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Typography } from '@mui/material';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
/**
|
|
4
|
+
* Money text
|
|
5
|
+
* @param props Props
|
|
6
|
+
* @returns Component
|
|
7
|
+
*/
|
|
8
|
+
export function MoneyText(props) {
|
|
9
|
+
var _a, _b;
|
|
10
|
+
// Destruct
|
|
11
|
+
const { currency, locale = 'lookup', options = {}, value, ...rest } = props;
|
|
12
|
+
// Default
|
|
13
|
+
if (currency) {
|
|
14
|
+
(_a = options.style) !== null && _a !== void 0 ? _a : (options.style = 'currency');
|
|
15
|
+
options.currency = currency;
|
|
16
|
+
}
|
|
17
|
+
(_b = options.minimumFractionDigits) !== null && _b !== void 0 ? _b : (options.minimumFractionDigits = 2);
|
|
18
|
+
// Formatter
|
|
19
|
+
const intl = new Intl.NumberFormat(locale, options);
|
|
20
|
+
// Formatted value
|
|
21
|
+
const localValue = value == null ? undefined : intl.format(value);
|
|
22
|
+
// Layout
|
|
23
|
+
return (React.createElement(Typography, { noWrap: true, ...rest }, localValue));
|
|
24
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { TypographyProps } from '@mui/material';
|
|
3
|
+
/**
|
|
4
|
+
* Number text props
|
|
5
|
+
*/
|
|
6
|
+
export interface NumberTextProps extends TypographyProps {
|
|
7
|
+
/**
|
|
8
|
+
* Locale
|
|
9
|
+
*/
|
|
10
|
+
locale?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Options
|
|
13
|
+
*/
|
|
14
|
+
options?: Intl.NumberFormatOptions;
|
|
15
|
+
/**
|
|
16
|
+
* Value
|
|
17
|
+
*/
|
|
18
|
+
value?: number | bigint;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Number text
|
|
22
|
+
* @param props Props
|
|
23
|
+
* @returns Component
|
|
24
|
+
*/
|
|
25
|
+
export declare function NumberText(props: NumberTextProps): JSX.Element;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Typography } from '@mui/material';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
/**
|
|
4
|
+
* Number text
|
|
5
|
+
* @param props Props
|
|
6
|
+
* @returns Component
|
|
7
|
+
*/
|
|
8
|
+
export function NumberText(props) {
|
|
9
|
+
// Destruct
|
|
10
|
+
const { locale = 'lookup', options = {}, value, ...rest } = props;
|
|
11
|
+
// Formatter
|
|
12
|
+
const intl = new Intl.NumberFormat(locale, options);
|
|
13
|
+
// Formatted value
|
|
14
|
+
const localValue = value == null ? undefined : intl.format(value);
|
|
15
|
+
// Layout
|
|
16
|
+
return (React.createElement(Typography, { noWrap: true, ...rest }, localValue));
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/react",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"description": "TypeScript ReactJs framework",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -44,16 +44,16 @@
|
|
|
44
44
|
"@emotion/react": "^11.4.1",
|
|
45
45
|
"@emotion/style": "^0.8.0",
|
|
46
46
|
"@emotion/styled": "^11.3.0",
|
|
47
|
-
"@etsoo/appscript": "^1.0.
|
|
47
|
+
"@etsoo/appscript": "^1.0.94",
|
|
48
48
|
"@etsoo/notificationbase": "^1.0.78",
|
|
49
|
-
"@etsoo/shared": "^1.0.
|
|
49
|
+
"@etsoo/shared": "^1.0.43",
|
|
50
50
|
"@mui/icons-material": "^5.0.1",
|
|
51
51
|
"@mui/material": "^5.0.2",
|
|
52
52
|
"@reach/router": "^1.3.4",
|
|
53
53
|
"@types/pica": "^5.1.3",
|
|
54
54
|
"@types/pulltorefreshjs": "^0.1.5",
|
|
55
55
|
"@types/reach__router": "^1.3.9",
|
|
56
|
-
"@types/react": "^17.0.
|
|
56
|
+
"@types/react": "^17.0.27",
|
|
57
57
|
"@types/react-avatar-editor": "^10.3.6",
|
|
58
58
|
"@types/react-dom": "^17.0.9",
|
|
59
59
|
"@types/react-window": "^1.8.5",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"@babel/runtime-corejs3": "^7.15.4",
|
|
74
74
|
"@types/jest": "^27.0.2",
|
|
75
75
|
"@types/react-test-renderer": "^17.0.1",
|
|
76
|
-
"@typescript-eslint/eslint-plugin": "^4.
|
|
77
|
-
"@typescript-eslint/parser": "^4.
|
|
76
|
+
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
77
|
+
"@typescript-eslint/parser": "^4.33.0",
|
|
78
78
|
"eslint": "^7.32.0",
|
|
79
79
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
80
80
|
"eslint-plugin-import": "^2.24.2",
|
package/src/index.ts
CHANGED
|
@@ -24,6 +24,11 @@ export * from './mu/pages/ResponsivePageProps';
|
|
|
24
24
|
export * from './mu/pages/SearchPageProps';
|
|
25
25
|
export * from './mu/pages/TablePage';
|
|
26
26
|
export * from './mu/pages/ViewPage';
|
|
27
|
+
|
|
28
|
+
export * from './mu/texts/DateText';
|
|
29
|
+
export * from './mu/texts/MoneyText';
|
|
30
|
+
export * from './mu/texts/NumberText';
|
|
31
|
+
|
|
27
32
|
export * from './mu/ButtonLink';
|
|
28
33
|
export * from './mu/ComboBox';
|
|
29
34
|
export * from './mu/CountdownButton';
|
package/src/mu/ComboBox.tsx
CHANGED
package/src/mu/SelectEx.tsx
CHANGED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { DateUtils } from '@etsoo/shared';
|
|
2
|
+
import { Typography, TypographyProps } from '@mui/material';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Date text props
|
|
7
|
+
*/
|
|
8
|
+
export interface DateTextProps extends TypographyProps {
|
|
9
|
+
/**
|
|
10
|
+
* Locale
|
|
11
|
+
*/
|
|
12
|
+
locale?: string;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Options
|
|
16
|
+
*/
|
|
17
|
+
options?: DateUtils.FormatOptions;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Time zone
|
|
21
|
+
*/
|
|
22
|
+
timeZone?: string;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Value to display
|
|
26
|
+
*/
|
|
27
|
+
value?: Date | string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Date text
|
|
32
|
+
* @param props Props
|
|
33
|
+
* @returns Component
|
|
34
|
+
*/
|
|
35
|
+
export function DateText(props: DateTextProps) {
|
|
36
|
+
// Destruct
|
|
37
|
+
const { locale = 'lookup', options, timeZone, value, ...rest } = props;
|
|
38
|
+
|
|
39
|
+
// Formatted value
|
|
40
|
+
const localValue =
|
|
41
|
+
value == null
|
|
42
|
+
? undefined
|
|
43
|
+
: DateUtils.format(locale, value, options, timeZone);
|
|
44
|
+
|
|
45
|
+
// Layout
|
|
46
|
+
return (
|
|
47
|
+
<Typography noWrap {...rest}>
|
|
48
|
+
{localValue}
|
|
49
|
+
</Typography>
|
|
50
|
+
);
|
|
51
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { Typography } from '@mui/material';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { NumberTextProps } from './NumberText';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Money text props
|
|
7
|
+
*/
|
|
8
|
+
export interface MoneyTextProps extends NumberTextProps {
|
|
9
|
+
/**
|
|
10
|
+
* Currency, USD for US dollar
|
|
11
|
+
*/
|
|
12
|
+
currency?: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Money text
|
|
17
|
+
* @param props Props
|
|
18
|
+
* @returns Component
|
|
19
|
+
*/
|
|
20
|
+
export function MoneyText(props: MoneyTextProps) {
|
|
21
|
+
// Destruct
|
|
22
|
+
const { currency, locale = 'lookup', options = {}, value, ...rest } = props;
|
|
23
|
+
|
|
24
|
+
// Default
|
|
25
|
+
if (currency) {
|
|
26
|
+
options.style ??= 'currency';
|
|
27
|
+
options.currency = currency;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
options.minimumFractionDigits ??= 2;
|
|
31
|
+
|
|
32
|
+
// Formatter
|
|
33
|
+
const intl = new Intl.NumberFormat(locale, options);
|
|
34
|
+
|
|
35
|
+
// Formatted value
|
|
36
|
+
const localValue = value == null ? undefined : intl.format(value);
|
|
37
|
+
|
|
38
|
+
// Layout
|
|
39
|
+
return (
|
|
40
|
+
<Typography noWrap {...rest}>
|
|
41
|
+
{localValue}
|
|
42
|
+
</Typography>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Typography, TypographyProps } from '@mui/material';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Number text props
|
|
6
|
+
*/
|
|
7
|
+
export interface NumberTextProps extends TypographyProps {
|
|
8
|
+
/**
|
|
9
|
+
* Locale
|
|
10
|
+
*/
|
|
11
|
+
locale?: string;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Options
|
|
15
|
+
*/
|
|
16
|
+
options?: Intl.NumberFormatOptions;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Value
|
|
20
|
+
*/
|
|
21
|
+
value?: number | bigint;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Number text
|
|
26
|
+
* @param props Props
|
|
27
|
+
* @returns Component
|
|
28
|
+
*/
|
|
29
|
+
export function NumberText(props: NumberTextProps) {
|
|
30
|
+
// Destruct
|
|
31
|
+
const { locale = 'lookup', options = {}, value, ...rest } = props;
|
|
32
|
+
|
|
33
|
+
// Formatter
|
|
34
|
+
const intl = new Intl.NumberFormat(locale, options);
|
|
35
|
+
|
|
36
|
+
// Formatted value
|
|
37
|
+
const localValue = value == null ? undefined : intl.format(value);
|
|
38
|
+
|
|
39
|
+
// Layout
|
|
40
|
+
return (
|
|
41
|
+
<Typography noWrap {...rest}>
|
|
42
|
+
{localValue}
|
|
43
|
+
</Typography>
|
|
44
|
+
);
|
|
45
|
+
}
|