stone-kit 0.0.461 → 0.0.462
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/{SortSelect-f8wlE1wn.js → SortSelect-CMtsppe9.js} +3 -5
- package/dist/components/FormModal/ui/ModalForm.d.ts +2 -1
- package/dist/components/FormModal/ui/ModalForm.js +2346 -793
- package/dist/components/SortSelect/index.js +1 -1
- package/dist/components/SortSelect/ui/SortSelect.js +3 -5
- package/dist/components/TabSwitcher/index.js +1 -1
- package/dist/components/TabSwitcher/ui/TabSwitcher.js +3 -5
- package/dist/components/ZoomControls/ui/ZoomControls.js +4 -6
- package/dist/main.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/index-D4uptQ6W.js +0 -1559
|
@@ -21,9 +21,7 @@ import { useClientWidth as L } from "./shared/useClientWidth.js";
|
|
|
21
21
|
import "./components/SliderNavigation/ui/SliderNavigation.js";
|
|
22
22
|
import "./components/LotCardSkeleton/ui/LotCardSkeleton.js";
|
|
23
23
|
import "./components/TabSelect/ui/TabSelect.js";
|
|
24
|
-
import "./
|
|
25
|
-
import "./components/CheckBox/CheckBox.js";
|
|
26
|
-
import "./components/TextArea/TextArea.js";
|
|
24
|
+
import "./components/FormModal/ui/ModalForm.js";
|
|
27
25
|
const j = "_root_cgepa_1", E = "_text_cgepa_18", A = "_rootCol_cgepa_26", z = "_item_cgepa_32", $ = "_whiteRow_cgepa_51", q = "_firstItem_cgepa_62", H = "_lastItem_cgepa_66", P = "_apart_cgepa_97", V = "_isLong_cgepa_97", F = "_autoWidth_cgepa_122", G = "_isDisabled_cgepa_129", J = "_grayRow_cgepa_153", e = {
|
|
28
26
|
root: j,
|
|
29
27
|
text: E,
|
|
@@ -82,7 +80,7 @@ const j = "_root_cgepa_1", E = "_text_cgepa_18", A = "_rootCol_cgepa_26", z = "_
|
|
|
82
80
|
] });
|
|
83
81
|
});
|
|
84
82
|
W.displayName = "TabSwitcherItem";
|
|
85
|
-
const
|
|
83
|
+
const St = Object.assign(K, { Item: W }), b = O.bind(t), Q = ({
|
|
86
84
|
options: o,
|
|
87
85
|
selectedOption: n,
|
|
88
86
|
placeholder: m = "",
|
|
@@ -175,6 +173,6 @@ const Nt = Object.assign(K, { Item: W }), b = O.bind(t), Q = ({
|
|
|
175
173
|
};
|
|
176
174
|
Q.displayName = "SortSelect";
|
|
177
175
|
export {
|
|
178
|
-
|
|
176
|
+
St as S,
|
|
179
177
|
Q as a
|
|
180
178
|
};
|
|
@@ -20,6 +20,7 @@ interface IModalFormProps {
|
|
|
20
20
|
isRequiredEmail?: boolean;
|
|
21
21
|
isRequiredPhoneOrEmail?: boolean;
|
|
22
22
|
isAdvCheckBox?: boolean;
|
|
23
|
+
addTitleClassName?: string;
|
|
23
24
|
}
|
|
24
25
|
type IFormPageInputs = {
|
|
25
26
|
phone: string;
|
|
@@ -29,5 +30,5 @@ type IFormPageInputs = {
|
|
|
29
30
|
advCheckBox?: boolean;
|
|
30
31
|
textarea?: string;
|
|
31
32
|
};
|
|
32
|
-
export declare const ModalForm: ({ isFormOpen, setIsFormOpen, isNews, title, isEmail, isPhone, isTextArea, telegramLink, isRequiredPhone, isRequiredEmail, isRequiredPhoneOrEmail, textAreaPlaceholder, subTitle, submitHandler, modalWidth, rowsTextArea, advCheckBox, isAdvCheckBox, }: IModalFormProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
33
|
+
export declare const ModalForm: ({ isFormOpen, setIsFormOpen, isNews, title, isEmail, isPhone, isTextArea, telegramLink, isRequiredPhone, isRequiredEmail, isRequiredPhoneOrEmail, textAreaPlaceholder, subTitle, submitHandler, modalWidth, rowsTextArea, advCheckBox, isAdvCheckBox, addTitleClassName }: IModalFormProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
33
34
|
export {};
|