@hybridcore/ui 1.5.87 → 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 +65 -2
- package/dist/{FormControlLabel-DzNokgFD.js → FormControlLabel-BrdX4R71.js} +1 -1
- package/dist/{Input-B7ry6o4t.js → Input-CoIrGZAh.js} +1 -1
- package/dist/{InputLabel-rrSJo8M_.js → InputLabel-CBuAYyuT.js} +163 -162
- package/dist/{OutlinedInput-BDK6qOwW.js → OutlinedInput-B-iZoc9l.js} +1 -1
- package/dist/{Select-jjAc5JX1.js → Select-t3ewnSdf.js} +3 -3
- package/dist/{TextField-Bf46COnQ.js → TextField-BQ8a50fA.js} +4 -4
- 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/data-security-selectors/dissemination-list/index.js +652 -742
- package/dist/components/data-security-selectors/dissemination-list/logic.js +62 -0
- package/dist/components/data-security-selectors/dissemination-list/styled.js +88 -0
- package/dist/components/date-time-picker/index.js +57 -94
- package/dist/components/date-time-picker/logic.js +70 -0
- package/dist/components/date-time-picker/styled.js +83 -0
- package/dist/components/geometry-picker/index.js +45 -43
- package/dist/components/instance-form/components/composite-list/index.js +1 -1
- package/dist/components/instance-form/components/variable/index.js +5 -5
- package/dist/components/instance-form/components/variables/index.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/property-mapping/index.js +1 -1
- package/dist/components/range-selector/components/composite-list-range/index.js +1 -1
- package/dist/components/range-selector/components/date-range/index.js +1 -1
- package/dist/components/range-selector/components/number-range/index.js +38 -35
- package/dist/components/range-selector/components/string-range/index.js +15 -14
- package/dist/components/range-selector/index.js +1 -1
- package/dist/components/search-input/index.js +2 -2
- package/dist/components/template-form/components/property-list/index.js +1 -1
- package/dist/components/template-form/components/property-list/property-list-form.js +5 -5
- package/dist/components/template-form/components/recognition-property-list/recognition-property-list-form.js +3 -3
- package/dist/components/template-form/index.js +3 -3
- package/dist/components/template-property-filters/property.js +4 -4
- package/dist/components/tree-select/index.js +52 -50
- package/dist/components/widget/index.js +4 -0
- package/dist/components/widget/styled.js +38 -0
- package/dist/{index-MMaYBAn0.js → index-CGNxsLVm.js} +6 -6
- package/dist/{index-NNOChRJ7.js → index-SpeaLUQD.js} +2 -2
- package/dist/main.d.ts +397 -122
- package/dist/main.js +14 -12
- package/dist/{property-list-form-BvnaooEW.js → property-list-form-C5hcK2y2.js} +4 -4
- package/package.json +4 -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,18 +207,33 @@ 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[];
|
|
213
213
|
defaultSelected?: string[];
|
|
214
214
|
}
|
|
215
215
|
|
|
216
|
-
export declare const DateTimePicker:
|
|
216
|
+
export declare const DateTimePicker: (props: DateTimePickerProps & React_2.RefAttributes<HTMLDivElement>) => React_2.ReactNode | null;
|
|
217
|
+
|
|
218
|
+
export declare type DateTimePickerLabelPosition = "default" | "top";
|
|
219
|
+
|
|
220
|
+
export declare interface DateTimePickerProps {
|
|
221
|
+
value?: string;
|
|
222
|
+
onChange(value: string): void;
|
|
223
|
+
label?: string;
|
|
224
|
+
name?: string;
|
|
225
|
+
minDate?: Dayjs;
|
|
226
|
+
variant?: DateTimePickerVariant;
|
|
227
|
+
labelPosition?: DateTimePickerLabelPosition;
|
|
228
|
+
size?: DateTimePickerSize;
|
|
229
|
+
minuteStep?: number;
|
|
230
|
+
pattern?: string;
|
|
231
|
+
sx?: SxProps<Theme>;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
export declare type DateTimePickerSize = "small" | "medium";
|
|
235
|
+
|
|
236
|
+
export declare type DateTimePickerVariant = "standard" | "outlined" | "filled";
|
|
217
237
|
|
|
218
238
|
declare function decrypt(encryptionKey: any, base64data: string): Promise<{
|
|
219
239
|
status: string;
|
|
@@ -227,32 +247,22 @@ declare function decrypt(encryptionKey: any, base64data: string): Promise<{
|
|
|
227
247
|
|
|
228
248
|
declare const _default: default_2.MemoExoticComponent<(props: MAP.Props & default_2.RefAttributes<MAP.Handle>) => default_2.ReactNode | null>;
|
|
229
249
|
|
|
230
|
-
export declare const DisseminationList:
|
|
250
|
+
export declare const DisseminationList: (props: DisseminationListProps & React_2.RefAttributes<HTMLDivElement>) => React_2.ReactNode | null;
|
|
231
251
|
|
|
232
|
-
declare
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
*/
|
|
252
|
+
export declare type DisseminationListLabelPosition = "default" | "left" | "top";
|
|
253
|
+
|
|
254
|
+
export declare interface DisseminationListProps {
|
|
236
255
|
selectedIds: string[];
|
|
237
|
-
/**
|
|
238
|
-
*
|
|
239
|
-
*/
|
|
240
256
|
memberedGroups: AUTH.MemberedGroupsType[];
|
|
241
|
-
/**
|
|
242
|
-
*
|
|
243
|
-
*/
|
|
244
257
|
showError?: boolean;
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
*/
|
|
248
|
-
variant?: "standard" | "outlined" | "filled";
|
|
249
|
-
labelPosition?: "default" | "left" | "top";
|
|
250
|
-
/**
|
|
251
|
-
*
|
|
252
|
-
*/
|
|
258
|
+
variant?: DisseminationListVariant;
|
|
259
|
+
labelPosition?: DisseminationListLabelPosition;
|
|
253
260
|
onChange(value: string[]): void;
|
|
261
|
+
sx?: SxProps<Theme>;
|
|
254
262
|
}
|
|
255
263
|
|
|
264
|
+
export declare type DisseminationListVariant = "standard" | "outlined" | "filled";
|
|
265
|
+
|
|
256
266
|
export declare const DocumentViewer: FC<DocumentViewerProps>;
|
|
257
267
|
|
|
258
268
|
declare interface DocumentViewerProps {
|
|
@@ -303,7 +313,7 @@ ref?: ((instance: HTMLDivElement | null) => void | DO_NOT_USE_OR_YOU_WILL_BE_FIR
|
|
|
303
313
|
|
|
304
314
|
declare function generateKey(): Promise<CryptoKey>;
|
|
305
315
|
|
|
306
|
-
export declare const GeometryPicker: React.FC<
|
|
316
|
+
export declare const GeometryPicker: React.FC<Props_4>;
|
|
307
317
|
|
|
308
318
|
declare const hasAccess: (path: string, access: AccessType, permissions: AUTH.PermissionType) => boolean;
|
|
309
319
|
|
|
@@ -331,7 +341,7 @@ export declare interface HighlightLineChartProps {
|
|
|
331
341
|
sx?: SxProps<Theme>;
|
|
332
342
|
}
|
|
333
343
|
|
|
334
|
-
export declare const IconButton: default_2.FC<
|
|
344
|
+
export declare const IconButton: default_2.FC<Props_5>;
|
|
335
345
|
|
|
336
346
|
declare function importKey(jwk: any): Promise<CryptoKey>;
|
|
337
347
|
|
|
@@ -578,7 +588,7 @@ export declare namespace KeyProductionUtils {
|
|
|
578
588
|
}
|
|
579
589
|
}
|
|
580
590
|
|
|
581
|
-
export declare const KeyProtectionMenu: React.FC<
|
|
591
|
+
export declare const KeyProtectionMenu: React.FC<Props_6>;
|
|
582
592
|
|
|
583
593
|
export declare const LinearIndicator: FC<LinearIndicatorProps>;
|
|
584
594
|
|
|
@@ -605,7 +615,7 @@ export declare interface LineSeriesData {
|
|
|
605
615
|
color?: string;
|
|
606
616
|
}
|
|
607
617
|
|
|
608
|
-
export declare const Loading: React.FC<
|
|
618
|
+
export declare const Loading: React.FC<Props_7>;
|
|
609
619
|
|
|
610
620
|
export { LocalizationProvider }
|
|
611
621
|
|
|
@@ -699,9 +709,14 @@ export declare namespace Map_2 {
|
|
|
699
709
|
|
|
700
710
|
export declare const MetricCard: (props: MetricCardProps & React_2.RefAttributes<HTMLDivElement>) => React_2.ReactNode | null;
|
|
701
711
|
|
|
712
|
+
export declare interface MetricCardDataPoint {
|
|
713
|
+
t: string; // ISO date
|
|
714
|
+
v: number;
|
|
715
|
+
}
|
|
716
|
+
|
|
702
717
|
export declare interface MetricCardProps {
|
|
703
718
|
label: string;
|
|
704
|
-
value:
|
|
719
|
+
value: MetricCardDataPoint[];
|
|
705
720
|
description?: string;
|
|
706
721
|
variant?: MetricVariant;
|
|
707
722
|
loading?: boolean;
|
|
@@ -723,9 +738,16 @@ export declare interface MetricCardProps {
|
|
|
723
738
|
|
|
724
739
|
export declare type MetricChangeType = "percentage" | "absolute";
|
|
725
740
|
|
|
726
|
-
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";
|
|
727
749
|
|
|
728
|
-
declare type MetricIconPosition =
|
|
750
|
+
export declare type MetricIconPosition =
|
|
729
751
|
| "left"
|
|
730
752
|
| "right"
|
|
731
753
|
| "top-left"
|
|
@@ -774,7 +796,7 @@ export declare interface PaginatedListProps {
|
|
|
774
796
|
sx?: SxProps<Theme>;
|
|
775
797
|
}
|
|
776
798
|
|
|
777
|
-
export declare const PhoneInput: React.FC<
|
|
799
|
+
export declare const PhoneInput: React.FC<Props_8>;
|
|
778
800
|
|
|
779
801
|
export declare const PropertyFilterInput: FC<PropertyProps>;
|
|
780
802
|
|
|
@@ -814,16 +836,6 @@ declare interface Props<T extends string> {
|
|
|
814
836
|
}
|
|
815
837
|
|
|
816
838
|
declare interface Props_10 {
|
|
817
|
-
values: FV.TemplateFilter[];
|
|
818
|
-
templates: Map<string | number, ONTOLOGY.TemplateType>;
|
|
819
|
-
inputVariant?: "standard" | "outlined" | "filled";
|
|
820
|
-
fieldOptions?: {
|
|
821
|
-
[key: string]: FieldOptions;
|
|
822
|
-
};
|
|
823
|
-
onChange(values: FV.TemplateFilter[], value?: FV.TemplateFilter): void;
|
|
824
|
-
}
|
|
825
|
-
|
|
826
|
-
declare interface Props_11 {
|
|
827
839
|
data: DataType[];
|
|
828
840
|
idKey?: string;
|
|
829
841
|
selected?: string[];
|
|
@@ -858,43 +870,6 @@ declare interface Props_3 {
|
|
|
858
870
|
}
|
|
859
871
|
|
|
860
872
|
declare interface Props_4 {
|
|
861
|
-
/**
|
|
862
|
-
*
|
|
863
|
-
*/
|
|
864
|
-
value?: string;
|
|
865
|
-
/**
|
|
866
|
-
*
|
|
867
|
-
*/
|
|
868
|
-
onChange(value: string);
|
|
869
|
-
/**
|
|
870
|
-
*
|
|
871
|
-
*/
|
|
872
|
-
label?: string;
|
|
873
|
-
|
|
874
|
-
name?: string;
|
|
875
|
-
/**
|
|
876
|
-
*
|
|
877
|
-
*/
|
|
878
|
-
minDate?: Dayjs;
|
|
879
|
-
/**
|
|
880
|
-
*
|
|
881
|
-
*/
|
|
882
|
-
variant?: "standard" | "outlined" | "filled";
|
|
883
|
-
/**
|
|
884
|
-
*
|
|
885
|
-
*/
|
|
886
|
-
size?: "small" | "medium";
|
|
887
|
-
/**
|
|
888
|
-
*
|
|
889
|
-
*/
|
|
890
|
-
minuteStep?: number;
|
|
891
|
-
/**
|
|
892
|
-
*
|
|
893
|
-
*/
|
|
894
|
-
pattern?: string;
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
declare interface Props_5 {
|
|
898
873
|
/**
|
|
899
874
|
*
|
|
900
875
|
*/
|
|
@@ -916,13 +891,14 @@ declare interface Props_5 {
|
|
|
916
891
|
*/
|
|
917
892
|
defaultExtent?: Extent;
|
|
918
893
|
variant?: "standard" | "outlined" | "filled";
|
|
894
|
+
labelPosition?: "default" | "top";
|
|
919
895
|
/**
|
|
920
896
|
*
|
|
921
897
|
*/
|
|
922
898
|
onChange?(value: string): void;
|
|
923
899
|
}
|
|
924
900
|
|
|
925
|
-
declare interface
|
|
901
|
+
declare interface Props_5 extends IconButtonProps {
|
|
926
902
|
/**
|
|
927
903
|
*
|
|
928
904
|
*/
|
|
@@ -941,21 +917,31 @@ declare interface Props_6 extends IconButtonProps {
|
|
|
941
917
|
children: React.ReactNode;
|
|
942
918
|
}
|
|
943
919
|
|
|
944
|
-
declare interface
|
|
920
|
+
declare interface Props_6 {
|
|
945
921
|
encryptionKey: CryptoKey | null;
|
|
946
922
|
}
|
|
947
923
|
|
|
948
|
-
declare interface
|
|
924
|
+
declare interface Props_7 extends StyleProps {
|
|
949
925
|
show: boolean;
|
|
950
926
|
}
|
|
951
927
|
|
|
952
|
-
declare interface
|
|
928
|
+
declare interface Props_8 {
|
|
953
929
|
label?: string;
|
|
954
930
|
value: string;
|
|
955
931
|
placeholder?: string;
|
|
956
932
|
onChange(value: string): void;
|
|
957
933
|
}
|
|
958
934
|
|
|
935
|
+
declare interface Props_9 {
|
|
936
|
+
values: FV.TemplateFilter[];
|
|
937
|
+
templates: Map<string | number, ONTOLOGY.TemplateType>;
|
|
938
|
+
inputVariant?: "standard" | "outlined" | "filled";
|
|
939
|
+
fieldOptions?: {
|
|
940
|
+
[key: string]: FieldOptions;
|
|
941
|
+
};
|
|
942
|
+
onChange(values: FV.TemplateFilter[], value?: FV.TemplateFilter): void;
|
|
943
|
+
}
|
|
944
|
+
|
|
959
945
|
declare function register(): Promise<Credential | null>;
|
|
960
946
|
|
|
961
947
|
export declare const SearchInput: (props: SearchInputProps & default_2.RefAttributes<SearchInputHandle>) => default_2.ReactNode | null;
|
|
@@ -1164,7 +1150,7 @@ K extends
|
|
|
1164
1150
|
onCatalogueInstanceSearchSubmit?(value?: string): void;
|
|
1165
1151
|
}
|
|
1166
1152
|
|
|
1167
|
-
export declare const TemplatePropertyFilters: FC<
|
|
1153
|
+
export declare const TemplatePropertyFilters: FC<Props_9>;
|
|
1168
1154
|
|
|
1169
1155
|
export { ThemeOptions }
|
|
1170
1156
|
|
|
@@ -1173,22 +1159,17 @@ export { ThemeProvider }
|
|
|
1173
1159
|
export declare const TreeSelect: FC<TreeSelectProps>;
|
|
1174
1160
|
|
|
1175
1161
|
declare interface TreeSelectProps {
|
|
1176
|
-
/**
|
|
1177
|
-
*
|
|
1178
|
-
*/
|
|
1179
1162
|
data: any;
|
|
1180
|
-
/**
|
|
1181
|
-
*
|
|
1182
|
-
*/
|
|
1183
1163
|
selected: "" | string[] | undefined;
|
|
1184
1164
|
variant?: "standard" | "outlined" | "filled";
|
|
1165
|
+
labelPosition?: "default" | "top";
|
|
1185
1166
|
disabled?: string[];
|
|
1186
1167
|
label?: string;
|
|
1187
1168
|
idKey?: string;
|
|
1188
1169
|
onChange(id: string, checked: boolean): void;
|
|
1189
1170
|
}
|
|
1190
1171
|
|
|
1191
|
-
export declare const TreeViewFilter: FC<
|
|
1172
|
+
export declare const TreeViewFilter: FC<Props_10>;
|
|
1192
1173
|
|
|
1193
1174
|
export declare const Uploader: FC<UploaderProps>;
|
|
1194
1175
|
|
|
@@ -1204,24 +1185,141 @@ declare interface UploaderProps {
|
|
|
1204
1185
|
uploadAction(file: any): Promise<string>;
|
|
1205
1186
|
}
|
|
1206
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
|
+
|
|
1207
1214
|
export { }
|
|
1208
1215
|
|
|
1209
1216
|
|
|
1210
1217
|
|
|
1218
|
+
// Module augmentation must target BOTH module paths.
|
|
1219
|
+
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1220
|
+
declare module "@mui/material" {
|
|
1221
|
+
interface ComponentNameToClassKey {
|
|
1222
|
+
HCCandlestickChart: "root";
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
interface ComponentsPropsList {
|
|
1226
|
+
HCCandlestickChart: CandlestickChartProps;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
interface Components {
|
|
1230
|
+
HCCandlestickChart?: {
|
|
1231
|
+
defaultProps?: ComponentsPropsList["HCCandlestickChart"];
|
|
1232
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCCandlestickChart"];
|
|
1233
|
+
variants?: ComponentsVariants["HCCandlestickChart"];
|
|
1234
|
+
};
|
|
1235
|
+
}
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
|
|
1239
|
+
|
|
1240
|
+
declare module "@mui/material/styles" {
|
|
1241
|
+
interface ComponentNameToClassKey {
|
|
1242
|
+
HCCandlestickChart: "root";
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
interface ComponentsPropsList {
|
|
1246
|
+
HCCandlestickChart: CandlestickChartProps;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
interface Components {
|
|
1250
|
+
HCCandlestickChart?: {
|
|
1251
|
+
defaultProps?: ComponentsPropsList["HCCandlestickChart"];
|
|
1252
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCCandlestickChart"];
|
|
1253
|
+
variants?: ComponentsVariants["HCCandlestickChart"];
|
|
1254
|
+
};
|
|
1255
|
+
}
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
// Module augmentation must target BOTH module paths.
|
|
1261
|
+
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1262
|
+
declare module "@mui/material" {
|
|
1263
|
+
interface ComponentNameToClassKey {
|
|
1264
|
+
HCHighlightLineChart: "root";
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
interface ComponentsPropsList {
|
|
1268
|
+
HCHighlightLineChart: HighlightLineChartProps;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
interface Components {
|
|
1272
|
+
HCHighlightLineChart?: {
|
|
1273
|
+
defaultProps?: ComponentsPropsList["HCHighlightLineChart"];
|
|
1274
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCHighlightLineChart"];
|
|
1275
|
+
variants?: ComponentsVariants["HCHighlightLineChart"];
|
|
1276
|
+
};
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
|
|
1281
|
+
|
|
1211
1282
|
declare module "@mui/material/styles" {
|
|
1212
1283
|
interface ComponentNameToClassKey {
|
|
1213
|
-
|
|
1284
|
+
HCHighlightLineChart: "root";
|
|
1214
1285
|
}
|
|
1215
1286
|
|
|
1216
1287
|
interface ComponentsPropsList {
|
|
1217
|
-
|
|
1288
|
+
HCHighlightLineChart: HighlightLineChartProps;
|
|
1218
1289
|
}
|
|
1219
1290
|
|
|
1220
1291
|
interface Components {
|
|
1221
|
-
|
|
1222
|
-
defaultProps?: ComponentsPropsList["
|
|
1223
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1224
|
-
variants?: ComponentsVariants["
|
|
1292
|
+
HCHighlightLineChart?: {
|
|
1293
|
+
defaultProps?: ComponentsPropsList["HCHighlightLineChart"];
|
|
1294
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCHighlightLineChart"];
|
|
1295
|
+
variants?: ComponentsVariants["HCHighlightLineChart"];
|
|
1296
|
+
};
|
|
1297
|
+
}
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
// Module augmentation must target BOTH module paths.
|
|
1303
|
+
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1304
|
+
declare module "@mui/material" {
|
|
1305
|
+
interface ComponentNameToClassKey {
|
|
1306
|
+
HCDisseminationList:
|
|
1307
|
+
| "root"
|
|
1308
|
+
| "label"
|
|
1309
|
+
| "sideLabel"
|
|
1310
|
+
| "selectWrapper"
|
|
1311
|
+
| "helperText";
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
interface ComponentsPropsList {
|
|
1315
|
+
HCDisseminationList: Partial<DisseminationListProps>;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
interface Components {
|
|
1319
|
+
HCDisseminationList?: {
|
|
1320
|
+
defaultProps?: ComponentsPropsList["HCDisseminationList"];
|
|
1321
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCDisseminationList"];
|
|
1322
|
+
variants?: ComponentsVariants["HCDisseminationList"];
|
|
1225
1323
|
};
|
|
1226
1324
|
}
|
|
1227
1325
|
}
|
|
@@ -1230,18 +1328,77 @@ declare module "@mui/material/styles" {
|
|
|
1230
1328
|
|
|
1231
1329
|
declare module "@mui/material/styles" {
|
|
1232
1330
|
interface ComponentNameToClassKey {
|
|
1233
|
-
|
|
1331
|
+
HCDisseminationList:
|
|
1332
|
+
| "root"
|
|
1333
|
+
| "label"
|
|
1334
|
+
| "sideLabel"
|
|
1335
|
+
| "selectWrapper"
|
|
1336
|
+
| "helperText";
|
|
1234
1337
|
}
|
|
1235
1338
|
|
|
1236
1339
|
interface ComponentsPropsList {
|
|
1237
|
-
|
|
1340
|
+
HCDisseminationList: Partial<DisseminationListProps>;
|
|
1238
1341
|
}
|
|
1239
1342
|
|
|
1240
1343
|
interface Components {
|
|
1241
|
-
|
|
1242
|
-
defaultProps?: ComponentsPropsList["
|
|
1243
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1244
|
-
variants?: ComponentsVariants["
|
|
1344
|
+
HCDisseminationList?: {
|
|
1345
|
+
defaultProps?: ComponentsPropsList["HCDisseminationList"];
|
|
1346
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCDisseminationList"];
|
|
1347
|
+
variants?: ComponentsVariants["HCDisseminationList"];
|
|
1348
|
+
};
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
|
|
1353
|
+
|
|
1354
|
+
// Module augmentation must target BOTH module paths.
|
|
1355
|
+
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1356
|
+
declare module "@mui/material" {
|
|
1357
|
+
interface ComponentNameToClassKey {
|
|
1358
|
+
HCDateTimePicker:
|
|
1359
|
+
| "root"
|
|
1360
|
+
| "label"
|
|
1361
|
+
| "container"
|
|
1362
|
+
| "timeInputContainer"
|
|
1363
|
+
| "timeInput"
|
|
1364
|
+
| "timeButton";
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
interface ComponentsPropsList {
|
|
1368
|
+
HCDateTimePicker: Partial<DateTimePickerProps>;
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
interface Components {
|
|
1372
|
+
HCDateTimePicker?: {
|
|
1373
|
+
defaultProps?: ComponentsPropsList["HCDateTimePicker"];
|
|
1374
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCDateTimePicker"];
|
|
1375
|
+
variants?: ComponentsVariants["HCDateTimePicker"];
|
|
1376
|
+
};
|
|
1377
|
+
}
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
declare module "@mui/material/styles" {
|
|
1383
|
+
interface ComponentNameToClassKey {
|
|
1384
|
+
HCDateTimePicker:
|
|
1385
|
+
| "root"
|
|
1386
|
+
| "label"
|
|
1387
|
+
| "container"
|
|
1388
|
+
| "timeInputContainer"
|
|
1389
|
+
| "timeInput"
|
|
1390
|
+
| "timeButton";
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
interface ComponentsPropsList {
|
|
1394
|
+
HCDateTimePicker: Partial<DateTimePickerProps>;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
interface Components {
|
|
1398
|
+
HCDateTimePicker?: {
|
|
1399
|
+
defaultProps?: ComponentsPropsList["HCDateTimePicker"];
|
|
1400
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCDateTimePicker"];
|
|
1401
|
+
variants?: ComponentsVariants["HCDateTimePicker"];
|
|
1245
1402
|
};
|
|
1246
1403
|
}
|
|
1247
1404
|
}
|
|
@@ -1332,9 +1489,41 @@ declare namespace MAP {
|
|
|
1332
1489
|
|
|
1333
1490
|
|
|
1334
1491
|
|
|
1492
|
+
// Module augmentation must target BOTH module paths.
|
|
1493
|
+
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1494
|
+
declare module "@mui/material" {
|
|
1495
|
+
interface ComponentNameToClassKey {
|
|
1496
|
+
HCMetricCard:
|
|
1497
|
+
| "root"
|
|
1498
|
+
| "content"
|
|
1499
|
+
| "label"
|
|
1500
|
+
| "value"
|
|
1501
|
+
| "trendContainer"
|
|
1502
|
+
| "trendValue"
|
|
1503
|
+
| "description"
|
|
1504
|
+
| "icon"
|
|
1505
|
+
| "cornerIcon"
|
|
1506
|
+
| "chart";
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
interface ComponentsPropsList {
|
|
1510
|
+
HCMetricCard: MetricCardProps;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
interface Components {
|
|
1514
|
+
HCMetricCard?: {
|
|
1515
|
+
defaultProps?: ComponentsPropsList["HCMetricCard"];
|
|
1516
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCMetricCard"];
|
|
1517
|
+
variants?: ComponentsVariants["HCMetricCard"];
|
|
1518
|
+
};
|
|
1519
|
+
}
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
|
|
1523
|
+
|
|
1335
1524
|
declare module "@mui/material/styles" {
|
|
1336
1525
|
interface ComponentNameToClassKey {
|
|
1337
|
-
|
|
1526
|
+
HCMetricCard:
|
|
1338
1527
|
| "root"
|
|
1339
1528
|
| "content"
|
|
1340
1529
|
| "label"
|
|
@@ -1348,14 +1537,36 @@ declare module "@mui/material/styles" {
|
|
|
1348
1537
|
}
|
|
1349
1538
|
|
|
1350
1539
|
interface ComponentsPropsList {
|
|
1351
|
-
|
|
1540
|
+
HCMetricCard: MetricCardProps;
|
|
1352
1541
|
}
|
|
1353
1542
|
|
|
1354
1543
|
interface Components {
|
|
1355
|
-
|
|
1356
|
-
defaultProps?: ComponentsPropsList["
|
|
1357
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1358
|
-
variants?: ComponentsVariants["
|
|
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"];
|
|
1359
1570
|
};
|
|
1360
1571
|
}
|
|
1361
1572
|
}
|
|
@@ -1364,18 +1575,82 @@ declare module "@mui/material/styles" {
|
|
|
1364
1575
|
|
|
1365
1576
|
declare module "@mui/material/styles" {
|
|
1366
1577
|
interface ComponentNameToClassKey {
|
|
1367
|
-
|
|
1578
|
+
HCPaginatedList: "root" | "content" | "header" | "list" | "pagination";
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
interface ComponentsPropsList {
|
|
1582
|
+
HCPaginatedList: PaginatedListProps;
|
|
1583
|
+
}
|
|
1584
|
+
|
|
1585
|
+
interface Components {
|
|
1586
|
+
HCPaginatedList?: {
|
|
1587
|
+
defaultProps?: ComponentsPropsList["HCPaginatedList"];
|
|
1588
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCPaginatedList"];
|
|
1589
|
+
variants?: ComponentsVariants["HCPaginatedList"];
|
|
1590
|
+
};
|
|
1591
|
+
}
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
// Module augmentation must target BOTH module paths.
|
|
1597
|
+
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1598
|
+
declare module "@mui/material" {
|
|
1599
|
+
interface ComponentNameToClassKey {
|
|
1600
|
+
HCWidget: "root" | "header" | "content" | "footer";
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
interface ComponentsPropsList {
|
|
1604
|
+
HCWidget: WidgetProps;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
interface Components {
|
|
1608
|
+
HCWidget?: {
|
|
1609
|
+
defaultProps?: ComponentsPropsList["HCWidget"];
|
|
1610
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCWidget"];
|
|
1611
|
+
variants?: ComponentsVariants["HCWidget"];
|
|
1612
|
+
};
|
|
1613
|
+
}
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
|
|
1617
|
+
|
|
1618
|
+
declare module "@mui/material/styles" {
|
|
1619
|
+
interface ComponentNameToClassKey {
|
|
1620
|
+
HCWidget: "root" | "header" | "content" | "footer";
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
interface ComponentsPropsList {
|
|
1624
|
+
HCWidget: WidgetProps;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
interface Components {
|
|
1628
|
+
HCWidget?: {
|
|
1629
|
+
defaultProps?: ComponentsPropsList["HCWidget"];
|
|
1630
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCWidget"];
|
|
1631
|
+
variants?: ComponentsVariants["HCWidget"];
|
|
1632
|
+
};
|
|
1633
|
+
}
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
|
|
1637
|
+
|
|
1638
|
+
// Module augmentation must target BOTH module paths.
|
|
1639
|
+
// See docs/COMPONENT_GUIDE.md § "Theme augmentation targets" for rationale.
|
|
1640
|
+
declare module "@mui/material" {
|
|
1641
|
+
interface ComponentNameToClassKey {
|
|
1642
|
+
HCProfileCard: "root" | "image" | "hierarchy" | "variables";
|
|
1368
1643
|
}
|
|
1369
1644
|
|
|
1370
1645
|
interface ComponentsPropsList {
|
|
1371
|
-
|
|
1646
|
+
HCProfileCard: ProfileCardProps;
|
|
1372
1647
|
}
|
|
1373
1648
|
|
|
1374
1649
|
interface Components {
|
|
1375
|
-
|
|
1376
|
-
defaultProps?: ComponentsPropsList["
|
|
1377
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1378
|
-
variants?: ComponentsVariants["
|
|
1650
|
+
HCProfileCard?: {
|
|
1651
|
+
defaultProps?: ComponentsPropsList["HCProfileCard"];
|
|
1652
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCProfileCard"];
|
|
1653
|
+
variants?: ComponentsVariants["HCProfileCard"];
|
|
1379
1654
|
};
|
|
1380
1655
|
}
|
|
1381
1656
|
}
|
|
@@ -1384,18 +1659,18 @@ declare module "@mui/material/styles" {
|
|
|
1384
1659
|
|
|
1385
1660
|
declare module "@mui/material/styles" {
|
|
1386
1661
|
interface ComponentNameToClassKey {
|
|
1387
|
-
|
|
1662
|
+
HCProfileCard: "root" | "image" | "hierarchy" | "variables";
|
|
1388
1663
|
}
|
|
1389
1664
|
|
|
1390
1665
|
interface ComponentsPropsList {
|
|
1391
|
-
|
|
1666
|
+
HCProfileCard: ProfileCardProps;
|
|
1392
1667
|
}
|
|
1393
1668
|
|
|
1394
1669
|
interface Components {
|
|
1395
|
-
|
|
1396
|
-
defaultProps?: ComponentsPropsList["
|
|
1397
|
-
styleOverrides?: ComponentsOverrides<Theme>["
|
|
1398
|
-
variants?: ComponentsVariants["
|
|
1670
|
+
HCProfileCard?: {
|
|
1671
|
+
defaultProps?: ComponentsPropsList["HCProfileCard"];
|
|
1672
|
+
styleOverrides?: ComponentsOverrides<Theme>["HCProfileCard"];
|
|
1673
|
+
variants?: ComponentsVariants["HCProfileCard"];
|
|
1399
1674
|
};
|
|
1400
1675
|
}
|
|
1401
1676
|
}
|