@loja-integrada/admin-components 0.18.7 → 0.18.9

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.
@@ -48,6 +48,11 @@ export declare const valueContainerStyles: {
48
48
  paddingLeft: number;
49
49
  };
50
50
  };
51
+ export declare const indicatorContainerClasses: {
52
+ default: string;
53
+ secondary: string;
54
+ simple: string;
55
+ };
51
56
  export interface CustomOptionProps {
52
57
  value: string | number;
53
58
  label: string;
@@ -7,4 +7,5 @@ export interface FloatingLabelInputProps extends Omit<React.InputHTMLAttributes<
7
7
  showLabel?: boolean;
8
8
  className?: string;
9
9
  textArea?: false;
10
+ errorMessage?: string;
10
11
  }
@@ -7,14 +7,14 @@ declare const InformationBoxTypes: Record<InformationBoxTypesOptions, {
7
7
  icon: IconProps['icon'];
8
8
  iconClass: string;
9
9
  }>;
10
- export declare const InformationBox: React.MemoExoticComponent<({ type, subtitle, }: InformationBoxProps) => JSX.Element>;
10
+ export declare const InformationBox: React.MemoExoticComponent<({ type, subtitle, title, }: InformationBoxProps) => JSX.Element>;
11
11
  export interface InformationBoxProps {
12
12
  /** InformationBox color
13
13
  * @default info
14
14
  * */
15
15
  type?: keyof typeof InformationBoxTypes;
16
- /**
17
- * @default true
16
+ /** Title default is related with `type`
17
+ * @default ''
18
18
  */
19
19
  title?: string | React.ReactNode;
20
20
  /**