@mdspl/mds-shared-ui 1.0.6 → 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.d.ts CHANGED
@@ -183,6 +183,7 @@ export declare interface IMDSButtonTypes {
183
183
  rounded?: 'sm' | 'md' | 'lg' | 'xl' | 'full' | 'xs';
184
184
  type?: 'submit' | 'reset' | 'button';
185
185
  textColor?: string;
186
+ borderColor?: string;
186
187
  }
187
188
 
188
189
  export declare interface IMDSCheckboxTypes {
@@ -295,7 +296,7 @@ declare type Listener = (value: OptionValue | undefined) => void;
295
296
 
296
297
  export declare const loadOrder: (pageKey: string) => string[];
297
298
 
298
- export declare const MDSButton: ({ onClick, size, variant, label, leftIcon, rightIcon, isDisabled, colorScheme, loading, loadingText, rounded, type, textColor, }: IMDSButtonTypes) => JSX_2.Element;
299
+ export declare const MDSButton: ({ onClick, size, variant, label, leftIcon, rightIcon, isDisabled, colorScheme, loading, loadingText, rounded, type, textColor, borderColor, }: IMDSButtonTypes) => JSX_2.Element;
299
300
 
300
301
  export declare const MDSCheckbox: ({ value, onChange, size, label, helperText, isDisabled, required, errorText, }: IMDSCheckboxTypes) => JSX_2.Element;
301
302
 
@@ -431,7 +432,7 @@ declare type SlotProps = {
431
432
 
432
433
  export declare type SortOrder = 'asc' | 'desc';
433
434
 
434
- 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;
435
436
 
436
437
  declare interface StackedDateTimeProps {
437
438
  value: string | Date | number | null | undefined;
@@ -446,6 +447,7 @@ declare interface StackedDateTimeProps {
446
447
  timeFontSize?: string | number;
447
448
  timeFontWeight?: string | number;
448
449
  timeColor?: string;
450
+ showTime?: boolean;
449
451
  }
450
452
 
451
453
  declare interface TableState {