@ambuj.bhaskar/react-component-library 0.24.4-alpha → 0.24.6-alpha

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
@@ -722,12 +722,15 @@ export declare type ChartProps = {
722
722
  barVariant?: BarChartVariant;
723
723
  lineVariant?: LineVariant;
724
724
  lineTension?: number;
725
+ opacity?: number;
726
+ lineStroke?: number;
725
727
  data: ChartData;
726
728
  options?: any;
727
729
  width?: string;
728
730
  height?: string;
729
731
  backgroundColor?: Color;
730
732
  className?: string;
733
+ colors?: Color[];
731
734
  };
732
735
 
733
736
  declare type ChartType = "line" | "bar" | "doughnut" | "pie";
@@ -996,7 +999,7 @@ export declare type LoginPageProps<TFormValues extends Record<string, any> = any
996
999
  formConfig: {
997
1000
  [key: string]: {
998
1001
  label?: string;
999
- type: "input" | "select" | "multiselect" | "checkbox";
1002
+ type: "input" | "select" | "multiselect" | "checkbox" | "password";
1000
1003
  width?: string;
1001
1004
  placeholder?: string;
1002
1005
  options?: {