finform-react-builder 1.8.4 → 1.8.6

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.
@@ -0,0 +1,19 @@
1
+ import { default as React } from 'react';
2
+ import { ChipProps } from '@mui/material';
3
+ export type FinChipTone = 'soft' | 'solid' | 'outlined';
4
+ export interface FinChipProps extends Omit<ChipProps, 'color' | 'variant'> {
5
+ /**
6
+ * Main color for the chip. Accepts hex (e.g. #005B35),
7
+ * or semantic keys 'primary' | 'secondary' | 'success' | 'error' | 'warning' | 'info' | 'neutral'.
8
+ */
9
+ colorKey?: 'primary' | 'secondary' | 'success' | 'error' | 'warning' | 'info' | 'neutral';
10
+ colorHex?: string;
11
+ tone?: FinChipTone;
12
+ /** Background opacity for soft tone (0..1) */
13
+ bgAlpha?: number;
14
+ /** Border opacity for soft tone (0..1) */
15
+ borderAlpha?: number;
16
+ sx?: any;
17
+ }
18
+ export declare const FinChip: React.FC<FinChipProps>;
19
+ export default FinChip;
@@ -0,0 +1,12 @@
1
+ import { default as React } from 'react';
2
+ export interface FinCustomizedVerticalStepperItem {
3
+ label: string;
4
+ description?: string;
5
+ }
6
+ export interface FinCustomizedVerticalStepperProps {
7
+ items: FinCustomizedVerticalStepperItem[];
8
+ activeIndex?: number;
9
+ onStepClick?: (index: number) => void;
10
+ sx?: any;
11
+ }
12
+ export declare const FinCustomizedVerticalStepper: React.FC<FinCustomizedVerticalStepperProps>;
@@ -10,3 +10,5 @@ export * from './FinUiHeader';
10
10
  export * from './FinDragDropList';
11
11
  export * from './FinGuidelineCard';
12
12
  export * from './FinVerticalStepper';
13
+ export * from './FinCustomizedVerticalStepper';
14
+ export * from './FinChip';