@algorithm-shift/design-system 1.2.995 → 1.2.997

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.mts CHANGED
@@ -156,7 +156,7 @@ interface TabsProps extends ElementProps {
156
156
  }
157
157
 
158
158
  interface StagesProps extends ElementProps {
159
- stages?: Record<string, any>;
159
+ stages?: any[];
160
160
  isShowBtn?: boolean;
161
161
  buttonText?: string;
162
162
  onStageChange?: (stageId: string) => void;
@@ -383,8 +383,8 @@ declare const DateRange: ({ className, style, ...props }: DateRangeInputProps) =
383
383
  declare const TextInputGroup: ({ className, style, prepend, append, ...props }: TextInputGroupProps) => react_jsx_runtime.JSX.Element;
384
384
 
385
385
  interface Option {
386
- id: string;
387
- name: string;
386
+ value: string;
387
+ label: string;
388
388
  }
389
389
  interface LazyMultiSelectDropdownProps extends Omit<any, 'lazyLoad'> {
390
390
  options?: Option[];
package/dist/index.d.ts CHANGED
@@ -156,7 +156,7 @@ interface TabsProps extends ElementProps {
156
156
  }
157
157
 
158
158
  interface StagesProps extends ElementProps {
159
- stages?: Record<string, any>;
159
+ stages?: any[];
160
160
  isShowBtn?: boolean;
161
161
  buttonText?: string;
162
162
  onStageChange?: (stageId: string) => void;
@@ -383,8 +383,8 @@ declare const DateRange: ({ className, style, ...props }: DateRangeInputProps) =
383
383
  declare const TextInputGroup: ({ className, style, prepend, append, ...props }: TextInputGroupProps) => react_jsx_runtime.JSX.Element;
384
384
 
385
385
  interface Option {
386
- id: string;
387
- name: string;
386
+ value: string;
387
+ label: string;
388
388
  }
389
389
  interface LazyMultiSelectDropdownProps extends Omit<any, 'lazyLoad'> {
390
390
  options?: Option[];