@movable/ui 3.20.8-alpha.0 → 3.20.8-alpha.1
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.
|
@@ -8,7 +8,7 @@ type InkCardBaseProps = CardProps & {
|
|
|
8
8
|
cardMedia?: InkCardMediaProps;
|
|
9
9
|
cardType?: InkCardType;
|
|
10
10
|
};
|
|
11
|
-
type InkCardProps = (InkCardBaseProps & {
|
|
11
|
+
export type InkCardProps = (InkCardBaseProps & {
|
|
12
12
|
galleryContent: GalleryContentProps;
|
|
13
13
|
cardType: 'gallery';
|
|
14
14
|
}) | (InkCardBaseProps & {
|
|
@@ -24,7 +24,7 @@ export * from './InkTextField';
|
|
|
24
24
|
export * from './InkSelect';
|
|
25
25
|
export { InternalUseOnlyLabel, InternalUseOnlyAlert, } from './InternalUseOnlyIndicators';
|
|
26
26
|
export { InkChart } from './InkChart';
|
|
27
|
-
export { InkCard } from './InkCard';
|
|
27
|
+
export { InkCard, type InkCardProps } from './InkCard';
|
|
28
28
|
export { InkGridToolBar } from './InkGridToolBar';
|
|
29
29
|
export { InkDataGrid, InkDataGridEmpty, InkDataGridTextWrapCell, createEmptyColumns, createTextWrapColumn, type InkDataGridProps, type InkDataGridEmptyProps, type InkDataGridTextWrapCellProps, } from './InkDataGrid';
|
|
30
30
|
export { InkHighlightAlert, InkAlert, type InkAlertProps } from './Alert';
|
package/lib/index.d.ts
CHANGED
|
@@ -417,7 +417,7 @@ declare interface InkCardMediaProps extends CardMediaProps {
|
|
|
417
417
|
cardType?: InkCardType;
|
|
418
418
|
}
|
|
419
419
|
|
|
420
|
-
declare type InkCardProps = (InkCardBaseProps & {
|
|
420
|
+
export declare type InkCardProps = (InkCardBaseProps & {
|
|
421
421
|
galleryContent: GalleryContentProps;
|
|
422
422
|
cardType: 'gallery';
|
|
423
423
|
}) | (InkCardBaseProps & {
|