fis-component 0.0.38 → 0.0.40
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/index.js +6 -6
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/Table/ColumnCell/index.d.ts +2 -2
- package/dist/cjs/types/src/components/Table/HeaderCell/index.d.ts +2 -2
- package/dist/esm/index.js +5 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/Table/ColumnCell/index.d.ts +2 -2
- package/dist/esm/types/src/components/Table/HeaderCell/index.d.ts +2 -2
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -10,6 +10,6 @@ interface ColumnCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivE
|
|
|
10
10
|
disabled?: boolean;
|
|
11
11
|
hasBorder?: boolean;
|
|
12
12
|
}
|
|
13
|
-
declare const
|
|
14
|
-
export default
|
|
13
|
+
declare const FISTableCell: import("react").ForwardRefExoticComponent<ColumnCellProps & import("react").RefAttributes<HTMLLabelElement>>;
|
|
14
|
+
export default FISTableCell;
|
|
15
15
|
export type { ColumnCellProps };
|
|
@@ -11,6 +11,6 @@ interface HeaderCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivE
|
|
|
11
11
|
hasTruncateLabel?: boolean;
|
|
12
12
|
onlyIcon?: boolean;
|
|
13
13
|
}
|
|
14
|
-
declare const
|
|
15
|
-
export default
|
|
14
|
+
declare const FISTableHeaderCell: import("react").ForwardRefExoticComponent<HeaderCellProps & import("react").RefAttributes<HTMLLabelElement>>;
|
|
15
|
+
export default FISTableHeaderCell;
|
|
16
16
|
export type { HeaderCellProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -4072,7 +4072,7 @@ interface HeaderCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivE
|
|
|
4072
4072
|
hasTruncateLabel?: boolean;
|
|
4073
4073
|
onlyIcon?: boolean;
|
|
4074
4074
|
}
|
|
4075
|
-
declare const
|
|
4075
|
+
declare const FISTableHeaderCell: React$1.ForwardRefExoticComponent<HeaderCellProps & React$1.RefAttributes<HTMLLabelElement>>;
|
|
4076
4076
|
|
|
4077
4077
|
interface ColumnCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> {
|
|
4078
4078
|
className?: string;
|
|
@@ -4085,7 +4085,7 @@ interface ColumnCellProps extends Omit<DetailedHTMLProps<HTMLAttributes<HTMLDivE
|
|
|
4085
4085
|
disabled?: boolean;
|
|
4086
4086
|
hasBorder?: boolean;
|
|
4087
4087
|
}
|
|
4088
|
-
declare const
|
|
4088
|
+
declare const FISTableCell: React$1.ForwardRefExoticComponent<ColumnCellProps & React$1.RefAttributes<HTMLLabelElement>>;
|
|
4089
4089
|
|
|
4090
4090
|
interface FISSorterProps {
|
|
4091
4091
|
columnKey: string;
|
|
@@ -4280,5 +4280,5 @@ interface PaginationProps extends PaginationProps$1 {
|
|
|
4280
4280
|
}
|
|
4281
4281
|
declare const FISPagination: React__default.FC<PaginationProps>;
|
|
4282
4282
|
|
|
4283
|
-
export { FISAlertBanner, FISAvatar, FISBadge, FISBreadcrumb, FISButton, FISButtonGroup, FISCheckbox, FISCheckboxGroup, FISChipButton, FISCollapse, FISCombobox, FISDateRange, FISDivider, FISIconButton, FISInputArea, FISInputDate, FISInputField, FISInputLabel, FISInputStepper, FISInputText, FISInputTime, FISLinkButton, FISMenuItem, FISMenuSection, FISMenuSelect, FISPagination, FISProgressCircular, FISProgressLinear, FISRadio, RadioGroup as FISRadioGroup, FISSegmented, FISSelect, FISSelectItem, FISSorter, FISSplitButton, FISSwitch, FISTab, FISTable,
|
|
4283
|
+
export { FISAlertBanner, FISAvatar, FISBadge, FISBreadcrumb, FISButton, FISButtonGroup, FISCheckbox, FISCheckboxGroup, FISChipButton, FISCollapse, FISCombobox, FISDateRange, FISDivider, FISIconButton, FISInputArea, FISInputDate, FISInputField, FISInputLabel, FISInputStepper, FISInputText, FISInputTime, FISLinkButton, FISMenuItem, FISMenuSection, FISMenuSelect, FISPagination, FISProgressCircular, FISProgressLinear, FISRadio, RadioGroup as FISRadioGroup, FISSegmented, FISSelect, FISSelectItem, FISSorter, FISSplitButton, FISSwitch, FISTab, FISTable, FISTableCell, FISTableHeaderCell, FISThemeProvider, FISToast, FISTooltip, SegmentedPanelItem, TabPanelItem, useNotification, useToast };
|
|
4284
4284
|
export type { ThemeType$2 as ThemeType };
|