@zealicsolutions/web-ui 1.0.95 → 1.0.96

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.
@@ -1,4 +1,4 @@
1
- import { AlertMoleculeProps, BadgeMoleculeProps, BasicTextFieldProps, BinaryRadioButtonsProps, ButtonProps, CheckboxProps, ChecklistItem, ChecklistProps, ChipMoleculeProps, DatePickerMoleculeProps, DividerProps, ImageProps, LinkProps, RatingMoleculeProps, SelectMoleculeProps, SliderMoleculeProps, StepperProps, TextProps, VideoProps } from 'molecules';
1
+ import { AlertMoleculeProps, BadgeMoleculeProps, BasicTextFieldProps, BinaryRadioButtonsProps, ButtonProps, CheckboxProps, ChecklistItem, ChecklistProps, ChipMoleculeProps, DateCalendarProps, DatePickerMoleculeProps, DividerProps, ImageProps, LinkProps, RatingMoleculeProps, SelectMoleculeProps, SliderMoleculeProps, StepperProps, TextProps, VideoProps } from 'molecules';
2
2
  /**
3
3
  * [ NEW MOLECULE: 2 ] Import new molecule props from the molecule index
4
4
  *
@@ -515,27 +515,9 @@ export interface CalendarMoleculeType extends BaseMoleculeType {
515
515
  export interface DateCalendarMoleculeType extends BaseMoleculeType {
516
516
  type: 'date_calendar' | 'date_calendar_display';
517
517
  config: {
518
- props: {
519
- sx?: {
520
- container?: Record<string, any>;
521
- calendar?: Record<string, any>;
522
- header?: Record<string, any>;
523
- dayButton?: Record<string, any>;
524
- selectedDay?: Record<string, any>;
525
- disabledDay?: Record<string, any>;
526
- [key: string]: Record<string, any> | undefined;
527
- };
528
- disabled?: boolean;
529
- minDate?: Date;
530
- maxDate?: Date;
531
- disablePast?: boolean;
532
- disableFuture?: boolean;
533
- shouldDisableDate?: (date: Date) => boolean;
534
- };
518
+ props: DateCalendarProps;
535
519
  };
536
520
  properties: {
537
- text?: TextProperties;
538
- selectedDate?: DateProperties;
539
521
  required?: BooleanProperties;
540
522
  requiredErrorText?: TextProperties;
541
523
  validationErrorText?: TextProperties;