stone-kit 0.0.237 → 0.0.240

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.
@@ -21,6 +21,7 @@ import "./components/SliderNavigation/ui/SliderNavigation.js";
21
21
  import "./components/TabSelect/ui/TabSelect.js";
22
22
  import "./index-CbZmuQco.js";
23
23
  import "./components/CheckBox/CheckBox.js";
24
+ import "./components/TextArea/TextArea.js";
24
25
  const E = "_root_131pc_1", A = "_text_131pc_17", z = "_rootCol_131pc_25", $ = "_item_131pc_31", q = "_whiteRow_131pc_50", H = "_firstItem_131pc_61", P = "_lastItem_131pc_65", V = "_apart_131pc_89", F = "_isLong_131pc_89", G = "_autoWidth_131pc_114", J = "_isDisabled_131pc_121", K = "_grayRow_131pc_143", e = {
25
26
  root: E,
26
27
  text: A,
@@ -78,7 +79,7 @@ const E = "_root_131pc_1", A = "_text_131pc_17", z = "_rootCol_131pc_25", $ = "_
78
79
  ] });
79
80
  });
80
81
  R.displayName = "TabSwitcherItem";
81
- const It = Object.assign(Q, { Item: R }), w = L.bind(t), U = ({
82
+ const Nt = Object.assign(Q, { Item: R }), w = L.bind(t), U = ({
82
83
  options: o,
83
84
  selectedOption: l,
84
85
  placeholder: n = "",
@@ -170,6 +171,6 @@ const It = Object.assign(Q, { Item: R }), w = L.bind(t), U = ({
170
171
  };
171
172
  U.displayName = "SortSelect";
172
173
  export {
173
- It as S,
174
+ Nt as S,
174
175
  U as a
175
176
  };
@@ -2,7 +2,10 @@ interface IModalFormProps {
2
2
  isFormOpen: boolean;
3
3
  setIsFormOpen: (isOpen: boolean) => void;
4
4
  submitHandler: (data: IFormPageInputs) => void;
5
+ modalWidth?: string;
5
6
  title: string;
7
+ isEmail?: boolean;
8
+ isTextArea?: boolean;
6
9
  subTitle: string;
7
10
  personalCheckBox: {
8
11
  text: string;
@@ -12,6 +15,8 @@ interface IModalFormProps {
12
15
  text: string;
13
16
  isRequired: boolean;
14
17
  } | undefined | null;
18
+ textAreaPlaceholder?: string;
19
+ rowsTextArea?: number;
15
20
  }
16
21
  type IFormPageInputs = {
17
22
  phone: string;
@@ -19,6 +24,7 @@ type IFormPageInputs = {
19
24
  email?: string;
20
25
  personalCheckBox: boolean;
21
26
  advCheckBox?: boolean;
27
+ textarea?: string;
22
28
  };
23
- export declare const ModalForm: ({ isFormOpen, setIsFormOpen, title, subTitle, submitHandler, personalCheckBox, advCheckBox, }: IModalFormProps) => import("react/jsx-runtime").JSX.Element;
29
+ export declare const ModalForm: ({ isFormOpen, setIsFormOpen, title, isEmail, isTextArea, textAreaPlaceholder, subTitle, submitHandler, modalWidth, rowsTextArea, personalCheckBox, advCheckBox, }: IModalFormProps) => import("react/jsx-runtime").JSX.Element;
24
30
  export {};