@mdspl/mds-shared-ui 1.0.7 → 1.0.8
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/index.cjs +3 -3
- package/dist/index.d.ts +2 -1
- package/dist/index.js +218 -217
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -432,7 +432,7 @@ declare type SlotProps = {
|
|
|
432
432
|
|
|
433
433
|
export declare type SortOrder = 'asc' | 'desc';
|
|
434
434
|
|
|
435
|
-
export declare function StackedDateTime({ value, dateVariant, timeVariant, dateFormat, timeFormat, align, dateColor, dateFontSize, dateFontWeight, timeColor, timeFontSize, timeFontWeight, }: StackedDateTimeProps): JSX_2.Element;
|
|
435
|
+
export declare function StackedDateTime({ value, dateVariant, timeVariant, dateFormat, timeFormat, align, dateColor, dateFontSize, dateFontWeight, timeColor, timeFontSize, timeFontWeight, showTime, }: StackedDateTimeProps): JSX_2.Element;
|
|
436
436
|
|
|
437
437
|
declare interface StackedDateTimeProps {
|
|
438
438
|
value: string | Date | number | null | undefined;
|
|
@@ -447,6 +447,7 @@ declare interface StackedDateTimeProps {
|
|
|
447
447
|
timeFontSize?: string | number;
|
|
448
448
|
timeFontWeight?: string | number;
|
|
449
449
|
timeColor?: string;
|
|
450
|
+
showTime?: boolean;
|
|
450
451
|
}
|
|
451
452
|
|
|
452
453
|
declare interface TableState {
|