@mindly/ui-components 5.56.0 → 5.57.0

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,7 +1,7 @@
1
1
  /**
2
2
  * Day number of the month for specialists payments
3
3
  **/
4
- export declare const NUMBER_OF_PAYMENT_DAY = 4;
4
+ export declare const NUMBER_OF_PAYMENT_DAY = 10;
5
5
  type DatesResultType = {
6
6
  isPreviousMonth: boolean;
7
7
  isOldMonth: boolean;
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
- export type ItemCardVariants = 'neutral' | 'transparent';
2
+ export type ItemCardVariants = 'neutral' | 'transparent' | 'transparent20';
3
3
  export type ItemCardProps = React.ComponentPropsWithoutRef<'div'> & {
4
4
  variant: ItemCardVariants;
5
- size?: 'M' | 'M4';
5
+ size?: 'M' | 'M4' | 'M45';
6
6
  };