@hybridcore/ui 1.5.88 → 1.5.89
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/README.md +20 -7
- package/dist/components/charts/candlestick/logic.js +6 -6
- package/dist/components/charts/candlestick/styled.js +1 -1
- package/dist/components/charts/highlighting-line-data/logic.js +1 -1
- package/dist/components/charts/highlighting-line-data/styled.js +1 -1
- package/dist/components/metric-card/MetricChart.js +210 -192
- package/dist/components/metric-card/index.js +101 -76
- package/dist/components/metric-card/logic.js +142 -65
- package/dist/components/metric-card/styled.js +69 -46
- package/dist/components/paginated-list/logic.js +13 -13
- package/dist/components/paginated-list/styled.js +12 -12
- package/dist/components/profile-card/logic.js +5 -5
- package/dist/components/profile-card/styled.js +4 -4
- package/dist/components/widget/index.js +4 -0
- package/dist/components/widget/styled.js +38 -0
- package/dist/main.d.ts +148 -68
- package/dist/main.js +13 -11
- package/package.json +3 -1
package/dist/main.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs';
|
|
|
2
2
|
import { BoxOwnProps } from '@mui/system';
|
|
3
3
|
import { BoxProps } from '@mui/material';
|
|
4
4
|
import { Collection } from 'ol';
|
|
5
|
+
import { CommonProps } from '@mui/material/OverridableComponent';
|
|
5
6
|
import { Coordinate } from 'ol/coordinate';
|
|
6
7
|
import { createTheme } from '@mui/material';
|
|
7
8
|
import { Dayjs } from 'dayjs';
|
|
@@ -25,6 +26,9 @@ import { IconButtonProps } from '@mui/material/IconButton';
|
|
|
25
26
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
26
27
|
import { LocalizationProvider } from '@mui/x-date-pickers';
|
|
27
28
|
import { MUIStyledCommonProps } from '@mui/system';
|
|
29
|
+
import { OverridableStringUnion } from '@mui/types';
|
|
30
|
+
import { PaperClasses } from '@mui/material';
|
|
31
|
+
import { PaperPropsVariantOverrides } from '@mui/material';
|
|
28
32
|
import { Pixel } from 'ol/pixel';
|
|
29
33
|
import * as React_2 from 'react';
|
|
30
34
|
import { ReactNode } from 'react';
|
|
@@ -33,6 +37,7 @@ import { Size } from 'ol/size';
|
|
|
33
37
|
import { StyledComponent } from '@emotion/styled';
|
|
34
38
|
import { SxProps } from '@mui/material';
|
|
35
39
|
import { SxProps as SxProps_2 } from '@mui/material/styles';
|
|
40
|
+
import { SxProps as SxProps_3 } from '@mui/system';
|
|
36
41
|
import { TabsProps as TabsProps_2 } from '@mui/material';
|
|
37
42
|
import { Theme } from '@mui/material';
|
|
38
43
|
import { Theme as Theme_2 } from '@mui/material/styles';
|
|
@@ -202,11 +207,6 @@ export declare const ContextMenu: React.FC<Props_3>;
|
|
|
202
207
|
|
|
203
208
|
export { createTheme }
|
|
204
209
|
|
|
205
|
-
declare interface DataPointType {
|
|
206
|
-
t: string; // ISO date
|
|
207
|
-
v: number;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
210
|
declare interface DataType extends ItemProps {
|
|
211
211
|
idKey?: string;
|
|
212
212
|
children?: DataType[];
|
|
@@ -709,9 +709,14 @@ export declare namespace Map_2 {
|
|
|
709
709
|
|
|
710
710
|
export declare const MetricCard: (props: MetricCardProps & React_2.RefAttributes<HTMLDivElement>) => React_2.ReactNode | null;
|
|
711
711
|
|
|
712
|
+
export declare interface MetricCardDataPoint {
|
|
713
|
+
t: string; // ISO date
|
|
714
|
+
v: number;
|
|
715
|
+
}
|
|
716
|
+
|
|
712
717
|
export declare interface MetricCardProps {
|
|
713
718
|
label: string;
|
|
714
|
-
value:
|
|
719
|
+
value: MetricCardDataPoint[];
|
|
715
720
|
description?: string;
|
|
716
721
|
variant?: MetricVariant;
|
|
717
722
|
loading?: boolean;
|
|
@@ -733,9 +738,16 @@ export declare interface MetricCardProps {
|
|
|
733
738
|
|
|
734
739
|
export declare type MetricChangeType = "percentage" | "absolute";
|
|
735
740
|
|
|
736
|
-
declare
|
|
741
|
+
export declare interface MetricChartSnapshot {
|
|
742
|
+
metric: string;
|
|
743
|
+
value: number;
|
|
744
|
+
change?: string;
|
|
745
|
+
asOf?: string;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
export declare type MetricChartType = "column" | "line";
|
|
737
749
|
|
|
738
|
-
declare type MetricIconPosition =
|
|
750
|
+
export declare type MetricIconPosition =
|
|
739
751
|
| "left"
|
|
740
752
|
| "right"
|
|
741
753
|
| "top-left"
|
|
@@ -1173,6 +1185,32 @@ declare interface UploaderProps {
|
|
|
1173
1185
|
uploadAction(file: any): Promise<string>;
|
|
1174
1186
|
}
|
|
1175
1187
|
|
|
1188
|
+
export declare const Widget: {
|
|
1189
|
+
Root: StyledComponent<Pick<{
|
|
1190
|
+
children?: React.ReactNode;
|
|
1191
|
+
classes?: Partial<PaperClasses>;
|
|
1192
|
+
elevation?: number;
|
|
1193
|
+
square?: boolean;
|
|
1194
|
+
sx?: SxProps_3<Theme>;
|
|
1195
|
+
variant?: OverridableStringUnion<"elevation" | "outlined", PaperPropsVariantOverrides>;
|
|
1196
|
+
} & CommonProps & Omit<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1197
|
+
ref?: ((instance: HTMLDivElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLDivElement> | null | undefined;
|
|
1198
|
+
}, "children" | "sx" | keyof CommonProps | "elevation" | "square" | "variant">, "ref" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "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" | "onResize" | "onResizeCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "sx" | keyof CommonProps | "elevation" | "square" | "variant"> & MUIStyledCommonProps<Theme>, {}, {}>;
|
|
1199
|
+
Header: StyledComponent<Pick<BoxOwnProps<Theme> & Omit<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1200
|
+
ref?: ((instance: HTMLDivElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLDivElement> | null | undefined;
|
|
1201
|
+
}, keyof BoxOwnProps<Theme>>, "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "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" | "onResize" | "onResizeCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof BoxOwnProps<Theme>> & MUIStyledCommonProps<Theme>, {}, {}>;
|
|
1202
|
+
Content: StyledComponent<Pick<BoxOwnProps<Theme> & Omit<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1203
|
+
ref?: ((instance: HTMLDivElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLDivElement> | null | undefined;
|
|
1204
|
+
}, keyof BoxOwnProps<Theme>>, "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "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" | "onResize" | "onResizeCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof BoxOwnProps<Theme>> & MUIStyledCommonProps<Theme>, {}, {}>;
|
|
1205
|
+
Footer: StyledComponent<Pick<BoxOwnProps<Theme> & Omit<Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1206
|
+
ref?: ((instance: HTMLDivElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | RefObject<HTMLDivElement> | null | undefined;
|
|
1207
|
+
}, keyof BoxOwnProps<Theme>>, "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "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" | "onResize" | "onResizeCapture" | "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" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof BoxOwnProps<Theme>> & MUIStyledCommonProps<Theme>, {}, {}>;
|
|
1208
|
+
};
|
|
1209
|
+
|
|
1210
|
+
export declare interface WidgetProps {
|
|
1211
|
+
sx?: SxProps<Theme>;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1176
1214
|
export { }
|
|
1177
1215
|
|
|
1178
1216
|
|
|
@@ -1181,18 +1219,18 @@ export { }
|
|
|
1181
1219
|
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1182
1220
|
declare module "@mui/material" {
|
|
1183
1221
|
interface ComponentNameToClassKey {
|
|
1184
|
-
|
|
1222
|
+
HCCandlestickChart: "root";
|
|
1185
1223
|
}
|
|
1186
1224
|
|
|
1187
1225
|
interface ComponentsPropsList {
|
|
1188
|
-
|
|
1226
|
+
HCCandlestickChart: CandlestickChartProps;
|
|
1189
1227
|
}
|
|
1190
1228
|
|
|
1191
1229
|
interface Components {
|
|
1192
|
-
|
|
1193
|
-
defaultProps?: ComponentsPropsList["
|
|
1194
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1195
|
-
variants?: ComponentsVariants["
|
|
1230
|
+
HCCandlestickChart?: {
|
|
1231
|
+
defaultProps?: ComponentsPropsList["HCCandlestickChart"];
|
|
1232
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCCandlestickChart"];
|
|
1233
|
+
variants?: ComponentsVariants["HCCandlestickChart"];
|
|
1196
1234
|
};
|
|
1197
1235
|
}
|
|
1198
1236
|
}
|
|
@@ -1201,18 +1239,18 @@ declare module "@mui/material" {
|
|
|
1201
1239
|
|
|
1202
1240
|
declare module "@mui/material/styles" {
|
|
1203
1241
|
interface ComponentNameToClassKey {
|
|
1204
|
-
|
|
1242
|
+
HCCandlestickChart: "root";
|
|
1205
1243
|
}
|
|
1206
1244
|
|
|
1207
1245
|
interface ComponentsPropsList {
|
|
1208
|
-
|
|
1246
|
+
HCCandlestickChart: CandlestickChartProps;
|
|
1209
1247
|
}
|
|
1210
1248
|
|
|
1211
1249
|
interface Components {
|
|
1212
|
-
|
|
1213
|
-
defaultProps?: ComponentsPropsList["
|
|
1214
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1215
|
-
variants?: ComponentsVariants["
|
|
1250
|
+
HCCandlestickChart?: {
|
|
1251
|
+
defaultProps?: ComponentsPropsList["HCCandlestickChart"];
|
|
1252
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCCandlestickChart"];
|
|
1253
|
+
variants?: ComponentsVariants["HCCandlestickChart"];
|
|
1216
1254
|
};
|
|
1217
1255
|
}
|
|
1218
1256
|
}
|
|
@@ -1223,18 +1261,18 @@ declare module "@mui/material/styles" {
|
|
|
1223
1261
|
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1224
1262
|
declare module "@mui/material" {
|
|
1225
1263
|
interface ComponentNameToClassKey {
|
|
1226
|
-
|
|
1264
|
+
HCHighlightLineChart: "root";
|
|
1227
1265
|
}
|
|
1228
1266
|
|
|
1229
1267
|
interface ComponentsPropsList {
|
|
1230
|
-
|
|
1268
|
+
HCHighlightLineChart: HighlightLineChartProps;
|
|
1231
1269
|
}
|
|
1232
1270
|
|
|
1233
1271
|
interface Components {
|
|
1234
|
-
|
|
1235
|
-
defaultProps?: ComponentsPropsList["
|
|
1236
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1237
|
-
variants?: ComponentsVariants["
|
|
1272
|
+
HCHighlightLineChart?: {
|
|
1273
|
+
defaultProps?: ComponentsPropsList["HCHighlightLineChart"];
|
|
1274
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCHighlightLineChart"];
|
|
1275
|
+
variants?: ComponentsVariants["HCHighlightLineChart"];
|
|
1238
1276
|
};
|
|
1239
1277
|
}
|
|
1240
1278
|
}
|
|
@@ -1243,18 +1281,18 @@ declare module "@mui/material" {
|
|
|
1243
1281
|
|
|
1244
1282
|
declare module "@mui/material/styles" {
|
|
1245
1283
|
interface ComponentNameToClassKey {
|
|
1246
|
-
|
|
1284
|
+
HCHighlightLineChart: "root";
|
|
1247
1285
|
}
|
|
1248
1286
|
|
|
1249
1287
|
interface ComponentsPropsList {
|
|
1250
|
-
|
|
1288
|
+
HCHighlightLineChart: HighlightLineChartProps;
|
|
1251
1289
|
}
|
|
1252
1290
|
|
|
1253
1291
|
interface Components {
|
|
1254
|
-
|
|
1255
|
-
defaultProps?: ComponentsPropsList["
|
|
1256
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1257
|
-
variants?: ComponentsVariants["
|
|
1292
|
+
HCHighlightLineChart?: {
|
|
1293
|
+
defaultProps?: ComponentsPropsList["HCHighlightLineChart"];
|
|
1294
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCHighlightLineChart"];
|
|
1295
|
+
variants?: ComponentsVariants["HCHighlightLineChart"];
|
|
1258
1296
|
};
|
|
1259
1297
|
}
|
|
1260
1298
|
}
|
|
@@ -1455,7 +1493,7 @@ declare namespace MAP {
|
|
|
1455
1493
|
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1456
1494
|
declare module "@mui/material" {
|
|
1457
1495
|
interface ComponentNameToClassKey {
|
|
1458
|
-
|
|
1496
|
+
HCMetricCard:
|
|
1459
1497
|
| "root"
|
|
1460
1498
|
| "content"
|
|
1461
1499
|
| "label"
|
|
@@ -1469,14 +1507,14 @@ declare module "@mui/material" {
|
|
|
1469
1507
|
}
|
|
1470
1508
|
|
|
1471
1509
|
interface ComponentsPropsList {
|
|
1472
|
-
|
|
1510
|
+
HCMetricCard: MetricCardProps;
|
|
1473
1511
|
}
|
|
1474
1512
|
|
|
1475
1513
|
interface Components {
|
|
1476
|
-
|
|
1477
|
-
defaultProps?: ComponentsPropsList["
|
|
1478
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1479
|
-
variants?: ComponentsVariants["
|
|
1514
|
+
HCMetricCard?: {
|
|
1515
|
+
defaultProps?: ComponentsPropsList["HCMetricCard"];
|
|
1516
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCMetricCard"];
|
|
1517
|
+
variants?: ComponentsVariants["HCMetricCard"];
|
|
1480
1518
|
};
|
|
1481
1519
|
}
|
|
1482
1520
|
}
|
|
@@ -1485,7 +1523,7 @@ declare module "@mui/material" {
|
|
|
1485
1523
|
|
|
1486
1524
|
declare module "@mui/material/styles" {
|
|
1487
1525
|
interface ComponentNameToClassKey {
|
|
1488
|
-
|
|
1526
|
+
HCMetricCard:
|
|
1489
1527
|
| "root"
|
|
1490
1528
|
| "content"
|
|
1491
1529
|
| "label"
|
|
@@ -1499,14 +1537,56 @@ declare module "@mui/material/styles" {
|
|
|
1499
1537
|
}
|
|
1500
1538
|
|
|
1501
1539
|
interface ComponentsPropsList {
|
|
1502
|
-
|
|
1540
|
+
HCMetricCard: MetricCardProps;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
interface Components {
|
|
1544
|
+
HCMetricCard?: {
|
|
1545
|
+
defaultProps?: ComponentsPropsList["HCMetricCard"];
|
|
1546
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCMetricCard"];
|
|
1547
|
+
variants?: ComponentsVariants["HCMetricCard"];
|
|
1548
|
+
};
|
|
1549
|
+
}
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
|
|
1553
|
+
|
|
1554
|
+
// Module augmentation must target BOTH module paths.
|
|
1555
|
+
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1556
|
+
declare module "@mui/material" {
|
|
1557
|
+
interface ComponentNameToClassKey {
|
|
1558
|
+
HCPaginatedList: "root" | "content" | "header" | "list" | "pagination";
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
interface ComponentsPropsList {
|
|
1562
|
+
HCPaginatedList: PaginatedListProps;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
interface Components {
|
|
1566
|
+
HCPaginatedList?: {
|
|
1567
|
+
defaultProps?: ComponentsPropsList["HCPaginatedList"];
|
|
1568
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCPaginatedList"];
|
|
1569
|
+
variants?: ComponentsVariants["HCPaginatedList"];
|
|
1570
|
+
};
|
|
1571
|
+
}
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
|
|
1575
|
+
|
|
1576
|
+
declare module "@mui/material/styles" {
|
|
1577
|
+
interface ComponentNameToClassKey {
|
|
1578
|
+
HCPaginatedList: "root" | "content" | "header" | "list" | "pagination";
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
interface ComponentsPropsList {
|
|
1582
|
+
HCPaginatedList: PaginatedListProps;
|
|
1503
1583
|
}
|
|
1504
1584
|
|
|
1505
1585
|
interface Components {
|
|
1506
|
-
|
|
1507
|
-
defaultProps?: ComponentsPropsList["
|
|
1508
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1509
|
-
variants?: ComponentsVariants["
|
|
1586
|
+
HCPaginatedList?: {
|
|
1587
|
+
defaultProps?: ComponentsPropsList["HCPaginatedList"];
|
|
1588
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCPaginatedList"];
|
|
1589
|
+
variants?: ComponentsVariants["HCPaginatedList"];
|
|
1510
1590
|
};
|
|
1511
1591
|
}
|
|
1512
1592
|
}
|
|
@@ -1517,18 +1597,18 @@ declare module "@mui/material/styles" {
|
|
|
1517
1597
|
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1518
1598
|
declare module "@mui/material" {
|
|
1519
1599
|
interface ComponentNameToClassKey {
|
|
1520
|
-
|
|
1600
|
+
HCWidget: "root" | "header" | "content" | "footer";
|
|
1521
1601
|
}
|
|
1522
1602
|
|
|
1523
1603
|
interface ComponentsPropsList {
|
|
1524
|
-
|
|
1604
|
+
HCWidget: WidgetProps;
|
|
1525
1605
|
}
|
|
1526
1606
|
|
|
1527
1607
|
interface Components {
|
|
1528
|
-
|
|
1529
|
-
defaultProps?: ComponentsPropsList["
|
|
1530
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1531
|
-
variants?: ComponentsVariants["
|
|
1608
|
+
HCWidget?: {
|
|
1609
|
+
defaultProps?: ComponentsPropsList["HCWidget"];
|
|
1610
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCWidget"];
|
|
1611
|
+
variants?: ComponentsVariants["HCWidget"];
|
|
1532
1612
|
};
|
|
1533
1613
|
}
|
|
1534
1614
|
}
|
|
@@ -1537,18 +1617,18 @@ declare module "@mui/material" {
|
|
|
1537
1617
|
|
|
1538
1618
|
declare module "@mui/material/styles" {
|
|
1539
1619
|
interface ComponentNameToClassKey {
|
|
1540
|
-
|
|
1620
|
+
HCWidget: "root" | "header" | "content" | "footer";
|
|
1541
1621
|
}
|
|
1542
1622
|
|
|
1543
1623
|
interface ComponentsPropsList {
|
|
1544
|
-
|
|
1624
|
+
HCWidget: WidgetProps;
|
|
1545
1625
|
}
|
|
1546
1626
|
|
|
1547
1627
|
interface Components {
|
|
1548
|
-
|
|
1549
|
-
defaultProps?: ComponentsPropsList["
|
|
1550
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1551
|
-
variants?: ComponentsVariants["
|
|
1628
|
+
HCWidget?: {
|
|
1629
|
+
defaultProps?: ComponentsPropsList["HCWidget"];
|
|
1630
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCWidget"];
|
|
1631
|
+
variants?: ComponentsVariants["HCWidget"];
|
|
1552
1632
|
};
|
|
1553
1633
|
}
|
|
1554
1634
|
}
|
|
@@ -1559,18 +1639,18 @@ declare module "@mui/material/styles" {
|
|
|
1559
1639
|
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1560
1640
|
declare module "@mui/material" {
|
|
1561
1641
|
interface ComponentNameToClassKey {
|
|
1562
|
-
|
|
1642
|
+
HCProfileCard: "root" | "image" | "hierarchy" | "variables";
|
|
1563
1643
|
}
|
|
1564
1644
|
|
|
1565
1645
|
interface ComponentsPropsList {
|
|
1566
|
-
|
|
1646
|
+
HCProfileCard: ProfileCardProps;
|
|
1567
1647
|
}
|
|
1568
1648
|
|
|
1569
1649
|
interface Components {
|
|
1570
|
-
|
|
1571
|
-
defaultProps?: ComponentsPropsList["
|
|
1572
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1573
|
-
variants?: ComponentsVariants["
|
|
1650
|
+
HCProfileCard?: {
|
|
1651
|
+
defaultProps?: ComponentsPropsList["HCProfileCard"];
|
|
1652
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCProfileCard"];
|
|
1653
|
+
variants?: ComponentsVariants["HCProfileCard"];
|
|
1574
1654
|
};
|
|
1575
1655
|
}
|
|
1576
1656
|
}
|
|
@@ -1579,18 +1659,18 @@ declare module "@mui/material" {
|
|
|
1579
1659
|
|
|
1580
1660
|
declare module "@mui/material/styles" {
|
|
1581
1661
|
interface ComponentNameToClassKey {
|
|
1582
|
-
|
|
1662
|
+
HCProfileCard: "root" | "image" | "hierarchy" | "variables";
|
|
1583
1663
|
}
|
|
1584
1664
|
|
|
1585
1665
|
interface ComponentsPropsList {
|
|
1586
|
-
|
|
1666
|
+
HCProfileCard: ProfileCardProps;
|
|
1587
1667
|
}
|
|
1588
1668
|
|
|
1589
1669
|
interface Components {
|
|
1590
|
-
|
|
1591
|
-
defaultProps?: ComponentsPropsList["
|
|
1592
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1593
|
-
variants?: ComponentsVariants["
|
|
1670
|
+
HCProfileCard?: {
|
|
1671
|
+
defaultProps?: ComponentsPropsList["HCProfileCard"];
|
|
1672
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCProfileCard"];
|
|
1673
|
+
variants?: ComponentsVariants["HCProfileCard"];
|
|
1594
1674
|
};
|
|
1595
1675
|
}
|
|
1596
1676
|
}
|
package/dist/main.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ThemeProvider as Ft, createTheme as Ht } from "@mui/material";
|
|
2
2
|
import { LocalizationProvider as Bt } from "@mui/x-date-pickers";
|
|
3
3
|
import { Access as Pt } from "./components/access/index.js";
|
|
4
|
-
import { b as
|
|
4
|
+
import { b as Wt } from "./helpers-DaCoWmi2.js";
|
|
5
5
|
import { Card as Et } from "./components/card/index.js";
|
|
6
6
|
import { CardAlternate as zt } from "./components/card-alternate/index.js";
|
|
7
7
|
import { CandlestickChart as Nt } from "./components/charts/candlestick/index.js";
|
|
@@ -28,7 +28,7 @@ import { Loading as Fe } from "./components/loading/index.js";
|
|
|
28
28
|
import { i as Ce } from "./index-JrtqxUdI.js";
|
|
29
29
|
import { MetricCard as Ie } from "./components/metric-card/index.js";
|
|
30
30
|
import { PaginatedList as je } from "./components/paginated-list/index.js";
|
|
31
|
-
import { PhoneInput as
|
|
31
|
+
import { PhoneInput as $e } from "./components/phone-input/index.js";
|
|
32
32
|
import { SearchInput as Ue } from "./components/search-input/index.js";
|
|
33
33
|
import { Tabs as Ze } from "./components/tabs/index.js";
|
|
34
34
|
import { TemplateFilters as Je } from "./components/template-filters/index.js";
|
|
@@ -38,8 +38,9 @@ import { Property as Ke } from "./components/template-property-filters/property.
|
|
|
38
38
|
import { TreeSelect as Xe } from "./components/tree-select/index.js";
|
|
39
39
|
import { TreeViewFilter as er } from "./components/treeview-filter/index.js";
|
|
40
40
|
import { Uploader as sr } from "./components/uploader/index.js";
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
41
|
+
import { Widget as or } from "./components/widget/styled.js";
|
|
42
|
+
import { FlexCol as ir } from "./components/flex-col/index.js";
|
|
43
|
+
import { FlexRow as dr } from "./components/flex-row/index.js";
|
|
43
44
|
import { a as dt } from "./objectWithoutPropertiesLoose-DJteAcBH.js";
|
|
44
45
|
import B from "dayjs";
|
|
45
46
|
import { c as U, a as z } from "./index-DMSHuq6l.js";
|
|
@@ -168,10 +169,10 @@ var et = { exports: {} };
|
|
|
168
169
|
w && (y = L[2]), n = this.$locale(), !b && y && (n = d.Ls[y]), this.$d = function(P, C, A, j) {
|
|
169
170
|
try {
|
|
170
171
|
if (["x", "X"].indexOf(C) > -1) return new Date((C === "X" ? 1e3 : 1) * P);
|
|
171
|
-
var m = H(C)(P), N = m.year,
|
|
172
|
-
N &&
|
|
172
|
+
var m = H(C)(P), N = m.year, W = m.month, nt = m.day, ot = m.hours, at = m.minutes, it = m.seconds, ht = m.milliseconds, Q = m.zone, X = m.week, J = /* @__PURE__ */ new Date(), V = nt || (N || W ? 1 : J.getDate()), _ = N || J.getFullYear(), $ = 0;
|
|
173
|
+
N && !W || ($ = W > 0 ? W - 1 : J.getMonth());
|
|
173
174
|
var E, R = ot || 0, q = at || 0, G = it || 0, K = ht || 0;
|
|
174
|
-
return Q ? new Date(Date.UTC(_,
|
|
175
|
+
return Q ? new Date(Date.UTC(_, $, V, R, q, G, K + 60 * Q.offset * 1e3)) : A ? new Date(Date.UTC(_, $, V, R, q, G, K)) : (E = new Date(_, $, V, R, q, G, K), X && (E = j(E).week(X).toDate()), E);
|
|
175
176
|
} catch {
|
|
176
177
|
return /* @__PURE__ */ new Date("");
|
|
177
178
|
}
|
|
@@ -396,7 +397,7 @@ class bt {
|
|
|
396
397
|
}
|
|
397
398
|
export {
|
|
398
399
|
Pt as Access,
|
|
399
|
-
|
|
400
|
+
Wt as AccessUtils,
|
|
400
401
|
bt as AdapterDayjs,
|
|
401
402
|
Nt as CandlestickChart,
|
|
402
403
|
Et as Card,
|
|
@@ -408,8 +409,8 @@ export {
|
|
|
408
409
|
de as DateTimePicker,
|
|
409
410
|
oe as DisseminationList,
|
|
410
411
|
ce as DocumentViewer,
|
|
411
|
-
|
|
412
|
-
|
|
412
|
+
ir as FlexCol,
|
|
413
|
+
dr as FlexRow,
|
|
413
414
|
me as GeometryPicker,
|
|
414
415
|
Vt as HighlightLineChart,
|
|
415
416
|
pe as IconButton,
|
|
@@ -425,7 +426,7 @@ export {
|
|
|
425
426
|
Ce as Map,
|
|
426
427
|
Ie as MetricCard,
|
|
427
428
|
je as PaginatedList,
|
|
428
|
-
|
|
429
|
+
$e as PhoneInput,
|
|
429
430
|
Ke as PropertyFilterInput,
|
|
430
431
|
Ue as SearchInput,
|
|
431
432
|
ie as SecurityLevel,
|
|
@@ -437,6 +438,7 @@ export {
|
|
|
437
438
|
Xe as TreeSelect,
|
|
438
439
|
er as TreeViewFilter,
|
|
439
440
|
sr as Uploader,
|
|
441
|
+
or as Widget,
|
|
440
442
|
Qt as alert,
|
|
441
443
|
Xt as confirm,
|
|
442
444
|
Ht as createTheme
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hybridcore/ui",
|
|
3
3
|
"description": "Hybrid Core UI Library",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.89",
|
|
5
5
|
"author": "Hybrid Core",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"type": "module",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"dev": "vite",
|
|
18
18
|
"build": "tsc -b ./tsconfig.lib.json && vite build",
|
|
19
19
|
"build:watch": "vite build --watch",
|
|
20
|
+
"build:push": "YALC_PUSH=1 vite build --watch",
|
|
20
21
|
"lint": "eslint .",
|
|
21
22
|
"preview": "vite preview",
|
|
22
23
|
"prepublishOnly": "yarn build",
|
|
@@ -35,6 +36,7 @@
|
|
|
35
36
|
"@mui/x-data-grid": "6.0.4",
|
|
36
37
|
"@mui/x-date-pickers": "6.3.0",
|
|
37
38
|
"@mui/x-tree-view": "^7.23.0",
|
|
39
|
+
"@tabler/icons-react": "^3.41.1",
|
|
38
40
|
"@terraformer/wkt": "^2.2.1",
|
|
39
41
|
"@turf/turf": "^7.0.0",
|
|
40
42
|
"dayjs": "^1.11.7",
|