@inntechcorp/it-design 2.2.82 → 2.2.84
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.
|
@@ -3,6 +3,7 @@ export type FormContextType = {
|
|
|
3
3
|
register: (item: FormItemProps) => void;
|
|
4
4
|
unregister: (name: string) => void;
|
|
5
5
|
hasField: (name: string) => boolean;
|
|
6
|
+
scrollTo: (name: string, options?: ScrollIntoViewOptions | boolean) => boolean;
|
|
6
7
|
checkFormIsValid: () => boolean;
|
|
7
8
|
getValues: () => {};
|
|
8
9
|
getFieldValue: (name: string) => FormValueProps;
|
|
@@ -2,7 +2,7 @@ type UseAvoidCollisionOpts = {
|
|
|
2
2
|
/** .chat-bubble, .cookie-bar gibi engellerin CSS seçicileri */
|
|
3
3
|
obstacles?: string[];
|
|
4
4
|
/** Sağa/sola yerleşim - şu an sağ-alt odaklı, gerekirse geliştirilebilir */
|
|
5
|
-
corner?: "bottom-right" | "bottom-left";
|
|
5
|
+
corner?: "bottom-right" | "bottom-left" | "bottom-center";
|
|
6
6
|
/** Otomatik algılama açılsın mı? */
|
|
7
7
|
autoAvoid?: boolean;
|
|
8
8
|
/** Panelden gelen manuel ekstra boşluk */
|