@lax-wp/design-system 0.3.69 → 0.3.70
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/components/forms/base-input-field/BaseInputField.d.ts +0 -2
- package/dist/components/forms/currency-input/CurrencyInputField.d.ts +0 -2
- package/dist/components/forms/date-time-field/DateTimeField.d.ts +0 -2
- package/dist/components/forms/dynamic-data-input/DynamicDataInputField.d.ts +0 -2
- package/dist/components/forms/master-data-input/MasterDataInputField.d.ts +0 -2
- package/dist/components/forms/percentage-input/PercentageInputField.d.ts +0 -2
- package/dist/components/forms/select-field/SelectField.d.ts +0 -2
- package/dist/components/forms/text-area-field/TextAreaField.d.ts +0 -2
- package/dist/components/forms/toggle/Toggle.d.ts +0 -2
- package/dist/index.es.js +4110 -4119
- package/dist/index.umd.js +43 -43
- package/package.json +1 -1
|
@@ -105,8 +105,6 @@ export type TBaseInputFieldProps = any & {
|
|
|
105
105
|
key: string;
|
|
106
106
|
value: string;
|
|
107
107
|
}) => void;
|
|
108
|
-
/** Translation function */
|
|
109
|
-
t?: (key: string) => string;
|
|
110
108
|
};
|
|
111
109
|
/**
|
|
112
110
|
* A feature-rich input field component with label, validation, GTN integration,
|
|
@@ -88,8 +88,6 @@ export interface CurrencyInputFieldProps {
|
|
|
88
88
|
isRiskAnalysisOpen?: boolean;
|
|
89
89
|
/** Custom risk details card component */
|
|
90
90
|
RiskDetailsCard?: React.ComponentType<RiskDetailsCardProps<any>>;
|
|
91
|
-
/** Translation function */
|
|
92
|
-
t?: (key: string) => string;
|
|
93
91
|
}
|
|
94
92
|
/**
|
|
95
93
|
* A highly customizable currency input component with label, validation, and styling support.
|
|
@@ -85,8 +85,6 @@ export interface DateTimeFieldProps extends Omit<DatePickerProps, "onChange" | "
|
|
|
85
85
|
key: string;
|
|
86
86
|
value: string;
|
|
87
87
|
}) => void;
|
|
88
|
-
/** Translation function */
|
|
89
|
-
t?: (key: string) => string;
|
|
90
88
|
/** Custom format date function for GTN values */
|
|
91
89
|
formatDateForGTN?: (value: string, options: {
|
|
92
90
|
skipTimezone: boolean;
|
|
@@ -86,8 +86,6 @@ export interface DynamicDataInputFieldProps {
|
|
|
86
86
|
RiskDetailsCard?: React.ComponentType<RiskDetailsCardProps<any>>;
|
|
87
87
|
/** Primary color shades for styling */
|
|
88
88
|
primaryColorShades?: Record<number, string>;
|
|
89
|
-
/** Translation function */
|
|
90
|
-
t?: (key: string) => string;
|
|
91
89
|
/** Whether recording is active (for pilot context) */
|
|
92
90
|
isRecording?: boolean;
|
|
93
91
|
/** Whether playback is active (for pilot context) */
|
|
@@ -103,8 +103,6 @@ export interface MasterDataInputFieldProps {
|
|
|
103
103
|
RiskDetailsCard?: React.ComponentType<RiskDetailsCardProps<any>>;
|
|
104
104
|
/** Primary color shades for styling */
|
|
105
105
|
primaryColorShades?: Record<number, string>;
|
|
106
|
-
/** Translation function */
|
|
107
|
-
t?: (key: string) => string;
|
|
108
106
|
/** Callback to set disable actions state */
|
|
109
107
|
setDisableActions?: (disabled: boolean) => void;
|
|
110
108
|
/** Toast function for deprecated field warning */
|
|
@@ -86,8 +86,6 @@ export interface PercentageInputFieldProps {
|
|
|
86
86
|
isRiskAnalysisOpen?: boolean;
|
|
87
87
|
/** Custom risk details card component */
|
|
88
88
|
RiskDetailsCard?: React.ComponentType<RiskDetailsCardProps<any>>;
|
|
89
|
-
/** Translation function */
|
|
90
|
-
t?: (key: string) => string;
|
|
91
89
|
/** Input placeholder */
|
|
92
90
|
placeholder?: string;
|
|
93
91
|
}
|
|
@@ -131,8 +131,6 @@ export interface SelectFieldProps extends Omit<SelectProps, 'onChange'> {
|
|
|
131
131
|
}>;
|
|
132
132
|
/** Whether the required indicator shows as conditional (yellow instead of red) */
|
|
133
133
|
isRequiredConditional?: boolean;
|
|
134
|
-
/** Translation function */
|
|
135
|
-
t?: (key: string) => string;
|
|
136
134
|
/** Whether this is a live field */
|
|
137
135
|
isLiveField?: boolean;
|
|
138
136
|
}
|
|
@@ -83,8 +83,6 @@ export interface TextAreaFieldProps extends Omit<React.TextareaHTMLAttributes<HT
|
|
|
83
83
|
key: string;
|
|
84
84
|
value: string;
|
|
85
85
|
}) => void;
|
|
86
|
-
/** Translation function */
|
|
87
|
-
t?: (key: string) => string;
|
|
88
86
|
}
|
|
89
87
|
/**
|
|
90
88
|
* A customizable textarea field component with label, validation, GTN integration,
|
|
@@ -89,8 +89,6 @@ export interface ToggleProps {
|
|
|
89
89
|
}>;
|
|
90
90
|
/** Primary color shades for styling */
|
|
91
91
|
primaryColorShades?: Record<number, string>;
|
|
92
|
-
/** Translation function */
|
|
93
|
-
t?: (key: string) => string;
|
|
94
92
|
}
|
|
95
93
|
/**
|
|
96
94
|
* A highly customizable toggle component with label, validation, and styling support.
|