@hitachivantara/uikit-react-core 5.106.2 → 5.108.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/ActionBar/ActionBar.styles.cjs +1 -1
- package/dist/cjs/Pagination/Pagination.cjs +22 -41
- package/dist/cjs/Pagination/Pagination.styles.cjs +36 -50
- package/dist/cjs/SearchInput/SearchInput.styles.cjs +1 -2
- package/dist/cjs/Select/Select.cjs +3 -2
- package/dist/cjs/StatusIcon/StatusIcon.cjs +3 -3
- package/dist/cjs/providers/ThemeProvider.cjs +2 -2
- package/dist/cjs/themes/ds3.cjs +13 -24
- package/dist/cjs/themes/pentahoPlus.cjs +35 -0
- package/dist/esm/ActionBar/ActionBar.styles.js +1 -1
- package/dist/esm/Pagination/Pagination.js +22 -41
- package/dist/esm/Pagination/Pagination.styles.js +38 -52
- package/dist/esm/SearchInput/SearchInput.styles.js +1 -2
- package/dist/esm/Select/Select.js +3 -2
- package/dist/esm/StatusIcon/StatusIcon.js +3 -3
- package/dist/esm/providers/ThemeProvider.js +2 -2
- package/dist/esm/themes/ds3.js +13 -24
- package/dist/esm/themes/pentahoPlus.js +35 -0
- package/dist/types/index.d.ts +80 -76
- package/package.json +8 -8
package/dist/types/index.d.ts
CHANGED
|
@@ -71,6 +71,8 @@ import { ReducerTableState } from 'react-table';
|
|
|
71
71
|
import { RefAttributes } from 'react';
|
|
72
72
|
import { Renderer } from 'react-table';
|
|
73
73
|
import { Row } from 'react-table';
|
|
74
|
+
import { SelectOption } from '@mui/base/useOption';
|
|
75
|
+
import { SelectValue } from '@mui/base/useSelect';
|
|
74
76
|
import { SlideProps } from '@mui/material/Slide';
|
|
75
77
|
import { SliderProps } from 'rc-slider';
|
|
76
78
|
import { SliderRef } from 'rc-slider';
|
|
@@ -716,6 +718,16 @@ declare const DEFAULT_LABELS_3: {
|
|
|
716
718
|
};
|
|
717
719
|
|
|
718
720
|
declare const DEFAULT_LABELS_4: {
|
|
721
|
+
backwards: string;
|
|
722
|
+
forwards: string;
|
|
723
|
+
};
|
|
724
|
+
|
|
725
|
+
declare const DEFAULT_LABELS_5: {
|
|
726
|
+
recommendedColorsLabel: string;
|
|
727
|
+
customColorsLabel: string;
|
|
728
|
+
};
|
|
729
|
+
|
|
730
|
+
declare const DEFAULT_LABELS_6: {
|
|
719
731
|
/** The label of the clear button. */
|
|
720
732
|
clearButtonLabel: string;
|
|
721
733
|
/** The label of the reveal password button. @deprecated unused */
|
|
@@ -728,16 +740,6 @@ declare const DEFAULT_LABELS_4: {
|
|
|
728
740
|
searchButtonLabel: string;
|
|
729
741
|
};
|
|
730
742
|
|
|
731
|
-
declare const DEFAULT_LABELS_5: {
|
|
732
|
-
backwards: string;
|
|
733
|
-
forwards: string;
|
|
734
|
-
};
|
|
735
|
-
|
|
736
|
-
declare const DEFAULT_LABELS_6: {
|
|
737
|
-
recommendedColorsLabel: string;
|
|
738
|
-
customColorsLabel: string;
|
|
739
|
-
};
|
|
740
|
-
|
|
741
743
|
declare const DEFAULT_LABELS_7: {
|
|
742
744
|
/** Label for overwrite the default header behavior. */
|
|
743
745
|
select: string | undefined;
|
|
@@ -1076,7 +1078,7 @@ export declare interface HvAccordionProps extends HvBaseProps<HTMLDivElement, "o
|
|
|
1076
1078
|
/** Content to be rendered. */
|
|
1077
1079
|
children: React.ReactNode;
|
|
1078
1080
|
/** The accordion label button. */
|
|
1079
|
-
label?:
|
|
1081
|
+
label?: React.ReactNode;
|
|
1080
1082
|
/** The function that will be executed whenever the accordion toggles. It will receive the state of the accordion. */
|
|
1081
1083
|
onChange?: (event: React.SyntheticEvent, value: boolean) => void;
|
|
1082
1084
|
/** Whether the accordion is open or not. If this property is defined the accordion must be fully controlled. */
|
|
@@ -1435,7 +1437,7 @@ export declare interface HvBannerProps extends Omit<SnackbarProps, "anchorOrigin
|
|
|
1435
1437
|
* */
|
|
1436
1438
|
onClose?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
1437
1439
|
/** The message to display. */
|
|
1438
|
-
label?:
|
|
1440
|
+
label?: React.ReactNode;
|
|
1439
1441
|
/** The anchor of the Snackbar. */
|
|
1440
1442
|
anchorOrigin?: "top" | "bottom";
|
|
1441
1443
|
/** Variant of the snackbar. */
|
|
@@ -2292,7 +2294,7 @@ declare interface HvCarouselControlsProps extends HvBaseProps<HTMLDivElement>, P
|
|
|
2292
2294
|
onPreviousClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
2293
2295
|
onNextClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
2294
2296
|
/** Labels used on the component. */
|
|
2295
|
-
labels?: Partial<typeof
|
|
2297
|
+
labels?: Partial<typeof DEFAULT_LABELS_4>;
|
|
2296
2298
|
}
|
|
2297
2299
|
|
|
2298
2300
|
export declare interface HvCarouselProps extends HvBaseProps<HTMLDivElement, "title" | "onChange"> {
|
|
@@ -2423,7 +2425,7 @@ export declare type HvCheckBoxClasses = ExtractNames<typeof useClasses_37>;
|
|
|
2423
2425
|
*/
|
|
2424
2426
|
export declare const HvCheckBoxGroup: ForwardRefExoticComponent<HvCheckBoxGroupProps & RefAttributes<HTMLDivElement>>;
|
|
2425
2427
|
|
|
2426
|
-
export declare type HvCheckBoxGroupClasses = ExtractNames<typeof
|
|
2428
|
+
export declare type HvCheckBoxGroupClasses = ExtractNames<typeof useClasses_48>;
|
|
2427
2429
|
|
|
2428
2430
|
export declare interface HvCheckBoxGroupProps extends HvBaseProps<HTMLDivElement, "onChange"> {
|
|
2429
2431
|
/**
|
|
@@ -2559,7 +2561,7 @@ export { HvColorAny }
|
|
|
2559
2561
|
*/
|
|
2560
2562
|
export declare const HvColorPicker: ForwardRefExoticComponent<HvColorPickerProps & RefAttributes<HTMLDivElement>>;
|
|
2561
2563
|
|
|
2562
|
-
export declare type HvColorPickerClasses = ExtractNames<typeof
|
|
2564
|
+
export declare type HvColorPickerClasses = ExtractNames<typeof useClasses_49>;
|
|
2563
2565
|
|
|
2564
2566
|
export declare interface HvColorPickerProps {
|
|
2565
2567
|
"aria-label"?: string;
|
|
@@ -2607,7 +2609,7 @@ export declare interface HvColorPickerProps {
|
|
|
2607
2609
|
/** If `true`, the labels are shown. If `false`, they are not shown. */
|
|
2608
2610
|
showLabels?: boolean;
|
|
2609
2611
|
/** An object containing all the labels. */
|
|
2610
|
-
labels?: Partial<typeof
|
|
2612
|
+
labels?: Partial<typeof DEFAULT_LABELS_5>;
|
|
2611
2613
|
/** Icon type for the input's end adornment. */
|
|
2612
2614
|
dropdownIcon?: "arrow" | "colorPicker";
|
|
2613
2615
|
/** If `true`, the input only shows an icon. If `false`, the input shows text and icons. */
|
|
@@ -2676,7 +2678,7 @@ declare type HvColumnWithStrictAccessor<D extends object = Record<string, unknow
|
|
|
2676
2678
|
/** The container enables you to center your content horizontally and bound it to a specific breakpoint. */
|
|
2677
2679
|
export declare const HvContainer: ForwardRefExoticComponent<Omit<HvContainerProps, "ref"> & RefAttributes<HTMLDivElement>>;
|
|
2678
2680
|
|
|
2679
|
-
export declare type HvContainerClasses = ExtractNames<typeof
|
|
2681
|
+
export declare type HvContainerClasses = ExtractNames<typeof useClasses_50>;
|
|
2680
2682
|
|
|
2681
2683
|
export declare interface HvContainerProps extends Omit<ContainerProps, "classes"> {
|
|
2682
2684
|
/**
|
|
@@ -2705,7 +2707,7 @@ export declare interface HvContainerProps extends Omit<ContainerProps, "classes"
|
|
|
2705
2707
|
|
|
2706
2708
|
export declare const HvControls: (props: HvControlsProps) => JSX_2.Element;
|
|
2707
2709
|
|
|
2708
|
-
export declare type HvControlsClasses = ExtractNames<typeof
|
|
2710
|
+
export declare type HvControlsClasses = ExtractNames<typeof useClasses_51>;
|
|
2709
2711
|
|
|
2710
2712
|
export declare interface HvControlsProps extends HvBaseProps {
|
|
2711
2713
|
/**
|
|
@@ -4204,9 +4206,9 @@ export declare type HvInlineEditorProps<C extends React.ElementType = typeof HvI
|
|
|
4204
4206
|
*/
|
|
4205
4207
|
export declare const HvInput: <InputElement extends HTMLElement = HTMLTextAreaElement | HTMLInputElement>(props: HvInputProps<InputElement> & RefAttributes<InputElement>) => React.ReactElement<any> | null;
|
|
4206
4208
|
|
|
4207
|
-
export declare type HvInputClasses = ExtractNames<typeof
|
|
4209
|
+
export declare type HvInputClasses = ExtractNames<typeof useClasses_57>;
|
|
4208
4210
|
|
|
4209
|
-
export declare type HvInputLabels = Partial<typeof
|
|
4211
|
+
export declare type HvInputLabels = Partial<typeof DEFAULT_LABELS_6>;
|
|
4210
4212
|
|
|
4211
4213
|
export declare interface HvInputProps<InputElement extends HTMLElement = HTMLInputElement | HTMLTextAreaElement> extends Omit<HvBaseInputProps, "onChange" | "onBlur" | "onFocus" | "onKeyDown"> {
|
|
4212
4214
|
/** @inheritdoc */
|
|
@@ -4406,7 +4408,7 @@ export declare interface HvLabelProps extends HvTypographyProps<"label"> {
|
|
|
4406
4408
|
|
|
4407
4409
|
export declare const HvLeftControl: ({ id, classes: classesProp, className, children, placeholder, onSearch, hideSearch, searchProps, ...others }: HvLeftControlProps) => JSX_2.Element;
|
|
4408
4410
|
|
|
4409
|
-
export declare type HvLeftControlClasses = ExtractNames<typeof
|
|
4411
|
+
export declare type HvLeftControlClasses = ExtractNames<typeof useClasses_56>;
|
|
4410
4412
|
|
|
4411
4413
|
export declare interface HvLeftControlProps extends HvBaseProps {
|
|
4412
4414
|
/** if `true` the hide sort by dropdown is not rendered */
|
|
@@ -4444,9 +4446,9 @@ export declare const HvList: (props: HvListProps) => JSX_2.Element | null;
|
|
|
4444
4446
|
export declare type HvListClasses = ExtractNames<typeof useClasses_88>;
|
|
4445
4447
|
|
|
4446
4448
|
/**
|
|
4447
|
-
* A
|
|
4448
|
-
* The simple list is for continuous
|
|
4449
|
-
* This pattern is ideal for
|
|
4449
|
+
* A **list** is any enumeration of a set of items.
|
|
4450
|
+
* The simple list is for continuous **vertical indexes of text or icons+text**. The content of these lists must be simple: ideally simples fields.
|
|
4451
|
+
* This pattern is ideal for **selections**. It should be used inside an `HvPanel`.
|
|
4450
4452
|
*/
|
|
4451
4453
|
export declare const HvListContainer: ForwardRefExoticComponent<HvListContainerProps & RefAttributes<HTMLUListElement>>;
|
|
4452
4454
|
|
|
@@ -4772,7 +4774,7 @@ export declare interface HvOverflowTooltipProps extends HvBaseProps {
|
|
|
4772
4774
|
*/
|
|
4773
4775
|
export declare const HvPagination: ForwardRefExoticComponent<HvPaginationProps & RefAttributes<HTMLDivElement>>;
|
|
4774
4776
|
|
|
4775
|
-
export declare type HvPaginationClasses = ExtractNames<typeof
|
|
4777
|
+
export declare type HvPaginationClasses = ExtractNames<typeof useClasses_47>;
|
|
4776
4778
|
|
|
4777
4779
|
export declare type HvPaginationLabels = Partial<typeof DEFAULT_LABELS_3>;
|
|
4778
4780
|
|
|
@@ -4806,7 +4808,7 @@ export declare interface HvPaginationProps extends HvBaseProps {
|
|
|
4806
4808
|
/** Other props to pagination component. */
|
|
4807
4809
|
navigationProps?: React.HTMLAttributes<HTMLDivElement>;
|
|
4808
4810
|
/** Extra properties passed to the input component representing the current pages. */
|
|
4809
|
-
currentPageInputProps?:
|
|
4811
|
+
currentPageInputProps?: HvBaseInputProps;
|
|
4810
4812
|
/** A Jss Object used to override or extend the styles applied to the component. */
|
|
4811
4813
|
classes?: HvPaginationClasses;
|
|
4812
4814
|
}
|
|
@@ -4939,7 +4941,7 @@ export declare interface HvProviderProps {
|
|
|
4939
4941
|
* This component allows you to create conditions and group them using logical operators.
|
|
4940
4942
|
* It outputs a structured set of rules which can be easily parsed to create SQL/NoSQL/whatever queries.
|
|
4941
4943
|
*
|
|
4942
|
-
* Take a look at the [usage page](https://
|
|
4944
|
+
* Take a look at the [usage page](https://pentaho.github.io/uikit-docs/master/components/query-builder) to learn more about this component.
|
|
4943
4945
|
*/
|
|
4944
4946
|
export declare const HvQueryBuilder: (props: HvQueryBuilderProps) => JSX_2.Element;
|
|
4945
4947
|
|
|
@@ -5703,6 +5705,8 @@ export declare interface HvSelectProps<OptionValue extends {}, Multiple extends
|
|
|
5703
5705
|
classes?: HvSelectClasses;
|
|
5704
5706
|
placeholder?: React.ReactNode;
|
|
5705
5707
|
autoComplete?: string;
|
|
5708
|
+
/** Custom render function for rendering the selected value. */
|
|
5709
|
+
renderValue?: (option: SelectValue<SelectOption<OptionValue>, Multiple>) => React.ReactNode;
|
|
5706
5710
|
/** Whether the width of the select panel can vary independently. */
|
|
5707
5711
|
variableWidth?: boolean;
|
|
5708
5712
|
/**
|
|
@@ -6256,7 +6260,7 @@ export declare type HvTabClasses = ExtractNames<typeof useClasses_118>;
|
|
|
6256
6260
|
* You can rely on these **elements** when your table doesn’t have many interactions or you need it to be very lightweight.
|
|
6257
6261
|
*
|
|
6258
6262
|
* For better data handling and **advanced features** we recommend the use of the utility hooks collection.
|
|
6259
|
-
* See the [Table Hooks documentation](https://
|
|
6263
|
+
* See the [Table Hooks documentation](https://pentaho.github.io/uikit-docs/master/components/table#usehvtable-hooks) for more details.
|
|
6260
6264
|
*/
|
|
6261
6265
|
export declare const HvTable: ForwardRefExoticComponent<HvTableProps & RefAttributes<HTMLElement>>;
|
|
6262
6266
|
|
|
@@ -6300,7 +6304,7 @@ export declare const HvTableCell: ForwardRefExoticComponent<HvTableCellProps & R
|
|
|
6300
6304
|
|
|
6301
6305
|
export declare type HvTableCellAlign = "center" | "inherit" | "justify" | "left" | "right";
|
|
6302
6306
|
|
|
6303
|
-
export declare type HvTableCellClasses = ExtractNames<typeof
|
|
6307
|
+
export declare type HvTableCellClasses = ExtractNames<typeof useClasses_52>;
|
|
6304
6308
|
|
|
6305
6309
|
export declare interface HvTableCellProps extends Omit<React.TdHTMLAttributes<HTMLTableCellElement>, "align"> {
|
|
6306
6310
|
/** The component used for the root node. Either a string to use a HTML element or a component. Defaults to td. */
|
|
@@ -6339,7 +6343,7 @@ export declare type HvTableCellType = "body" | "footer" | "head";
|
|
|
6339
6343
|
|
|
6340
6344
|
export declare type HvTableCellVariant = "checkbox" | "expand" | "actions" | "default" | "none";
|
|
6341
6345
|
|
|
6342
|
-
export declare type HvTableClasses = ExtractNames<typeof
|
|
6346
|
+
export declare type HvTableClasses = ExtractNames<typeof useClasses_55>;
|
|
6343
6347
|
|
|
6344
6348
|
export declare type HvTableColumnConfig<D extends object = Record<string, unknown>, H extends HvTableHeaderRenderer | undefined = HvTableHeaderRenderer> = HvColumnGroup<D, H> | HvColumnWithLooseAccessor<D, H> | HvColumnWithStrictAccessor<D, H>;
|
|
6345
6349
|
|
|
@@ -6385,7 +6389,7 @@ export declare type HvTableHeadClasses = ExtractNames<typeof useClasses_115>;
|
|
|
6385
6389
|
*/
|
|
6386
6390
|
export declare const HvTableHeader: ForwardRefExoticComponent<HvTableHeaderProps & RefAttributes<HTMLElement>>;
|
|
6387
6391
|
|
|
6388
|
-
export declare type HvTableHeaderClasses = ExtractNames<typeof
|
|
6392
|
+
export declare type HvTableHeaderClasses = ExtractNames<typeof useClasses_54>;
|
|
6389
6393
|
|
|
6390
6394
|
export declare interface HvTableHeaderProps extends Omit<React.ThHTMLAttributes<HTMLTableCellElement>, "align"> {
|
|
6391
6395
|
/** The component used for the root node. Either a string to use a HTML element or a component. Defaults to th. */
|
|
@@ -6526,7 +6530,7 @@ export declare interface HvTableProps extends React.TableHTMLAttributes<HTMLTabl
|
|
|
6526
6530
|
*/
|
|
6527
6531
|
export declare const HvTableRow: ForwardRefExoticComponent<HvTableRowProps & RefAttributes<HTMLElement>>;
|
|
6528
6532
|
|
|
6529
|
-
export declare type HvTableRowClasses = ExtractNames<typeof
|
|
6533
|
+
export declare type HvTableRowClasses = ExtractNames<typeof useClasses_53>;
|
|
6530
6534
|
|
|
6531
6535
|
export declare interface HvTableRowProps extends HvBaseProps<HTMLTableRowElement, "children"> {
|
|
6532
6536
|
/** Content to be rendered */
|
|
@@ -9543,33 +9547,7 @@ declare const useClasses_46: (classesProp?: Partial<Record<"image" | "slide", st
|
|
|
9543
9547
|
readonly cx: (...args: any) => string;
|
|
9544
9548
|
};
|
|
9545
9549
|
|
|
9546
|
-
declare const useClasses_47: (classesProp?: Partial<Record<"
|
|
9547
|
-
readonly classes: {
|
|
9548
|
-
root: string;
|
|
9549
|
-
labelContainer: string;
|
|
9550
|
-
label: string;
|
|
9551
|
-
description: string;
|
|
9552
|
-
adornmentsBox: string;
|
|
9553
|
-
icon: string;
|
|
9554
|
-
adornmentButton: string;
|
|
9555
|
-
iconClear: string;
|
|
9556
|
-
hasSuggestions: string;
|
|
9557
|
-
suggestionsContainer: string;
|
|
9558
|
-
suggestionList: string;
|
|
9559
|
-
inputExtension: string;
|
|
9560
|
-
input: string;
|
|
9561
|
-
inputRoot: string;
|
|
9562
|
-
inputRootFocused: string;
|
|
9563
|
-
inputRootDisabled: string;
|
|
9564
|
-
inputRootMultiline: string;
|
|
9565
|
-
inputBorderContainer: string;
|
|
9566
|
-
error: string;
|
|
9567
|
-
};
|
|
9568
|
-
readonly css: any;
|
|
9569
|
-
readonly cx: (...args: any) => string;
|
|
9570
|
-
};
|
|
9571
|
-
|
|
9572
|
-
declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "pageSizeOptions" | "pageSizeHeader" | "pageSizeRoot" | "pageSizeTextContainer" | "totalPagesTextContainer" | "pageSizeOptionsSelect" | "pageNavigator" | "iconContainer" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
|
|
9550
|
+
declare const useClasses_47: (classesProp?: Partial<Record<"icon" | "root" | "pageSizeOptions" | "pageSizeHeader" | "pageSizeRoot" | "pageSizeTextContainer" | "totalPagesTextContainer" | "pageSizeOptionsSelect" | "pageNavigator" | "iconContainer" | "pageInfo" | "pageJump" | "pageSizeInput" | "pageSizeInputRoot" | "pageSizeInputContainer", string>>, addStatic?: boolean) => {
|
|
9573
9551
|
readonly classes: {
|
|
9574
9552
|
root: string;
|
|
9575
9553
|
pageSizeOptions: string;
|
|
@@ -9591,7 +9569,7 @@ declare const useClasses_48: (classesProp?: Partial<Record<"icon" | "root" | "pa
|
|
|
9591
9569
|
readonly cx: (...args: any) => string;
|
|
9592
9570
|
};
|
|
9593
9571
|
|
|
9594
|
-
declare const
|
|
9572
|
+
declare const useClasses_48: (classesProp?: Partial<Record<"vertical" | "horizontal" | "label" | "root" | "group" | "error" | "invalid" | "selectAll", string>>, addStatic?: boolean) => {
|
|
9595
9573
|
readonly classes: {
|
|
9596
9574
|
root: string;
|
|
9597
9575
|
label: string;
|
|
@@ -9606,15 +9584,7 @@ declare const useClasses_49: (classesProp?: Partial<Record<"vertical" | "horizon
|
|
|
9606
9584
|
readonly cx: (...args: any) => string;
|
|
9607
9585
|
};
|
|
9608
9586
|
|
|
9609
|
-
declare const
|
|
9610
|
-
readonly classes: {
|
|
9611
|
-
root: string;
|
|
9612
|
-
};
|
|
9613
|
-
readonly css: any;
|
|
9614
|
-
readonly cx: (...args: any) => string;
|
|
9615
|
-
};
|
|
9616
|
-
|
|
9617
|
-
declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "description" | "panel" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
9587
|
+
declare const useClasses_49: (classesProp?: Partial<Record<"label" | "colorPicker" | "root" | "description" | "panel" | "labelContainer" | "headerColorValue" | "headerColorIcon" | "colorPickerIcon" | "recommendedColorsRoot" | "dropdownRootIconOnly" | "headerColorIconOnly" | "pickerFields", string>>, addStatic?: boolean) => {
|
|
9618
9588
|
readonly classes: {
|
|
9619
9589
|
root: string;
|
|
9620
9590
|
labelContainer: string;
|
|
@@ -9634,7 +9604,15 @@ declare const useClasses_50: (classesProp?: Partial<Record<"label" | "colorPicke
|
|
|
9634
9604
|
readonly cx: (...args: any) => string;
|
|
9635
9605
|
};
|
|
9636
9606
|
|
|
9637
|
-
declare const
|
|
9607
|
+
declare const useClasses_5: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9608
|
+
readonly classes: {
|
|
9609
|
+
root: string;
|
|
9610
|
+
};
|
|
9611
|
+
readonly css: any;
|
|
9612
|
+
readonly cx: (...args: any) => string;
|
|
9613
|
+
};
|
|
9614
|
+
|
|
9615
|
+
declare const useClasses_50: (classesProp?: Partial<Record<"fixed" | "root" | "disableGutters" | "maxWidthXs" | "maxWidthSm" | "maxWidthMd" | "maxWidthLg" | "maxWidthXl", string>>, addStatic?: boolean) => {
|
|
9638
9616
|
readonly classes: {
|
|
9639
9617
|
root: string;
|
|
9640
9618
|
disableGutters: string;
|
|
@@ -9649,7 +9627,7 @@ declare const useClasses_51: (classesProp?: Partial<Record<"fixed" | "root" | "d
|
|
|
9649
9627
|
readonly cx: (...args: any) => string;
|
|
9650
9628
|
};
|
|
9651
9629
|
|
|
9652
|
-
declare const
|
|
9630
|
+
declare const useClasses_51: (classesProp?: Partial<Record<"section" | "root" | "rightSection" | "leftSection", string>>, addStatic?: boolean) => {
|
|
9653
9631
|
readonly classes: {
|
|
9654
9632
|
root: string;
|
|
9655
9633
|
section: string;
|
|
@@ -9660,7 +9638,7 @@ declare const useClasses_52: (classesProp?: Partial<Record<"section" | "root" |
|
|
|
9660
9638
|
readonly cx: (...args: any) => string;
|
|
9661
9639
|
};
|
|
9662
9640
|
|
|
9663
|
-
declare const
|
|
9641
|
+
declare const useClasses_52: (classesProp?: Partial<Record<"body" | "footer" | "head" | "root" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "variantListHead" | "variantListactions" | "variantListcheckbox" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing", string>>, addStatic?: boolean) => {
|
|
9664
9642
|
readonly classes: {
|
|
9665
9643
|
root: string;
|
|
9666
9644
|
head: string;
|
|
@@ -9691,7 +9669,7 @@ declare const useClasses_53: (classesProp?: Partial<Record<"body" | "footer" | "
|
|
|
9691
9669
|
readonly cx: (...args: any) => string;
|
|
9692
9670
|
};
|
|
9693
9671
|
|
|
9694
|
-
declare const
|
|
9672
|
+
declare const useClasses_53: (classesProp?: Partial<Record<"body" | "expanded" | "footer" | "head" | "selected" | "root" | "variantList" | "variantListHead" | "striped" | "hover", string>>, addStatic?: boolean) => {
|
|
9695
9673
|
readonly classes: {
|
|
9696
9674
|
root: string;
|
|
9697
9675
|
head: string;
|
|
@@ -9708,7 +9686,7 @@ declare const useClasses_54: (classesProp?: Partial<Record<"body" | "expanded" |
|
|
|
9708
9686
|
readonly cx: (...args: any) => string;
|
|
9709
9687
|
};
|
|
9710
9688
|
|
|
9711
|
-
declare const
|
|
9689
|
+
declare const useClasses_54: (classesProp?: Partial<Record<"body" | "resizer" | "footer" | "head" | "root" | "resizable" | "sorted" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "variantNone" | "variantCheckbox" | "variantActions" | "variantExpand" | "variantList" | "stickyColumn" | "stickyColumnMostLeft" | "stickyColumnLeastRight" | "groupColumnMostLeft" | "groupColumnMostRight" | "resizing" | "headerContent" | "headerText" | "headerParagraph" | "sortableHeaderText" | "sortable" | "sortButton" | "sortIcon" | "alignFlexLeft" | "alignFlexRight" | "alignFlexCenter" | "alignFlexJustify", string>>, addStatic?: boolean) => {
|
|
9712
9690
|
readonly classes: {
|
|
9713
9691
|
root: string;
|
|
9714
9692
|
head: string;
|
|
@@ -9748,7 +9726,7 @@ declare const useClasses_55: (classesProp?: Partial<Record<"body" | "resizer" |
|
|
|
9748
9726
|
readonly cx: (...args: any) => string;
|
|
9749
9727
|
};
|
|
9750
9728
|
|
|
9751
|
-
declare const
|
|
9729
|
+
declare const useClasses_55: (classesProp?: Partial<Record<"root" | "stickyHeader" | "stickyColumns" | "listRow", string>>, addStatic?: boolean) => {
|
|
9752
9730
|
readonly classes: {
|
|
9753
9731
|
root: string;
|
|
9754
9732
|
stickyHeader: string;
|
|
@@ -9759,9 +9737,35 @@ declare const useClasses_56: (classesProp?: Partial<Record<"root" | "stickyHeade
|
|
|
9759
9737
|
readonly cx: (...args: any) => string;
|
|
9760
9738
|
};
|
|
9761
9739
|
|
|
9762
|
-
declare const
|
|
9740
|
+
declare const useClasses_56: (classesProp?: Partial<Record<"root", string>>, addStatic?: boolean) => {
|
|
9741
|
+
readonly classes: {
|
|
9742
|
+
root: string;
|
|
9743
|
+
};
|
|
9744
|
+
readonly css: any;
|
|
9745
|
+
readonly cx: (...args: any) => string;
|
|
9746
|
+
};
|
|
9747
|
+
|
|
9748
|
+
declare const useClasses_57: (classesProp?: Partial<Record<"label" | "icon" | "input" | "root" | "error" | "description" | "adornmentButton" | "inputBorderContainer" | "inputRoot" | "inputRootFocused" | "inputRootDisabled" | "inputRootMultiline" | "labelContainer" | "adornmentsBox" | "iconClear" | "hasSuggestions" | "suggestionsContainer" | "suggestionList" | "inputExtension", string>>, addStatic?: boolean) => {
|
|
9763
9749
|
readonly classes: {
|
|
9764
9750
|
root: string;
|
|
9751
|
+
labelContainer: string;
|
|
9752
|
+
label: string;
|
|
9753
|
+
description: string;
|
|
9754
|
+
adornmentsBox: string;
|
|
9755
|
+
icon: string;
|
|
9756
|
+
adornmentButton: string;
|
|
9757
|
+
iconClear: string;
|
|
9758
|
+
hasSuggestions: string;
|
|
9759
|
+
suggestionsContainer: string;
|
|
9760
|
+
suggestionList: string;
|
|
9761
|
+
inputExtension: string;
|
|
9762
|
+
input: string;
|
|
9763
|
+
inputRoot: string;
|
|
9764
|
+
inputRootFocused: string;
|
|
9765
|
+
inputRootDisabled: string;
|
|
9766
|
+
inputRootMultiline: string;
|
|
9767
|
+
inputBorderContainer: string;
|
|
9768
|
+
error: string;
|
|
9765
9769
|
};
|
|
9766
9770
|
readonly css: any;
|
|
9767
9771
|
readonly cx: (...args: any) => string;
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hitachivantara/uikit-react-core",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.108.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Hitachi Vantara UI Kit Team",
|
|
6
6
|
"description": "UI Kit Core React components.",
|
|
7
|
-
"homepage": "https://github.com/
|
|
7
|
+
"homepage": "https://github.com/pentaho/hv-uikit-react",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"keywords": [
|
|
10
10
|
"hitachi-vantara",
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
],
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/
|
|
18
|
+
"url": "git+https://github.com/pentaho/hv-uikit-react.git",
|
|
19
19
|
"directory": "packages/core"
|
|
20
20
|
},
|
|
21
21
|
"license": "Apache-2.0",
|
|
22
22
|
"bugs": {
|
|
23
|
-
"url": "https://github.com/
|
|
23
|
+
"url": "https://github.com/pentaho/hv-uikit-react/issues"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@emotion/react": "^11.11.1",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@emotion/cache": "^11.11.0",
|
|
34
34
|
"@emotion/serialize": "^1.1.2",
|
|
35
|
-
"@hitachivantara/uikit-react-shared": "^5.5.
|
|
36
|
-
"@hitachivantara/uikit-react-utils": "^0.2.
|
|
37
|
-
"@hitachivantara/uikit-styles": "^5.
|
|
35
|
+
"@hitachivantara/uikit-react-shared": "^5.5.8",
|
|
36
|
+
"@hitachivantara/uikit-react-utils": "^0.2.48",
|
|
37
|
+
"@hitachivantara/uikit-styles": "^5.53.0",
|
|
38
38
|
"@internationalized/date": "^3.2.0",
|
|
39
39
|
"@mui/base": "5.0.0-beta.68",
|
|
40
40
|
"@popperjs/core": "^2.11.8",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"access": "public",
|
|
62
62
|
"directory": "package"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "df761f73245bd857bb831dfd0300d5e5f7afeccd",
|
|
65
65
|
"exports": {
|
|
66
66
|
".": {
|
|
67
67
|
"types": "./dist/types/index.d.ts",
|