@rolder/kit 3.0.0-alpha.6 → 3.0.0-alpha.8

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.
Files changed (263) hide show
  1. package/package.json +3 -3
  2. package/rslib.config.ts +21 -0
  3. package/src/ai/ui/conversation/ConversationContext.ts +21 -0
  4. package/src/ai/ui/conversation/ConversationProvider.tsx +21 -0
  5. package/src/ai/ui/conversation/Empty.tsx +15 -0
  6. package/src/ai/ui/conversation/File.tsx +40 -0
  7. package/src/ai/ui/conversation/FileIcon.tsx +143 -0
  8. package/src/ai/ui/conversation/Loader.tsx +8 -0
  9. package/src/ai/ui/conversation/Message.tsx +34 -0
  10. package/src/ai/ui/conversation/Root.tsx +24 -0
  11. package/src/ai/ui/conversation/index.ts +16 -0
  12. package/{dist/ai/ui/conversation/types.d.ts → src/ai/ui/conversation/types.ts} +5 -4
  13. package/src/ai/ui/conversation/useChatMessage.ts +13 -0
  14. package/src/ai/ui/promptInput/File.tsx +98 -0
  15. package/src/ai/ui/promptInput/FileIcon.tsx +149 -0
  16. package/src/ai/ui/promptInput/Footer.tsx +5 -0
  17. package/src/ai/ui/promptInput/PromptInputContext.ts +24 -0
  18. package/src/ai/ui/promptInput/PromptInputProvider.tsx +54 -0
  19. package/src/ai/ui/promptInput/Root.tsx +29 -0
  20. package/src/ai/ui/promptInput/Submit.tsx +39 -0
  21. package/src/ai/ui/promptInput/Textarea.tsx +39 -0
  22. package/src/ai/ui/promptInput/index.ts +15 -0
  23. package/src/ai/ui/promptInput/types.ts +9 -0
  24. package/src/ai/utils/convertFileUIPartBlobToDataURL.ts +29 -0
  25. package/src/ai/utils/parseAiMessagePart.ts +19 -0
  26. package/src/app/AppDefaults.tsx +21 -0
  27. package/src/app/DefaultApp.tsx +50 -0
  28. package/src/app/cookieColorSchemeManager.ts +70 -0
  29. package/src/app/defaultRequestMiddlewares.ts +22 -0
  30. package/src/app/defaultTheme.ts +22 -0
  31. package/src/functions/getCookie.ts +36 -0
  32. package/src/functions/setCookie.ts +29 -0
  33. package/src/functions/setCookies.ts +24 -0
  34. package/src/hooks/useMutation.ts +14 -0
  35. package/src/hooks/useMutationWithInvalidate.ts +23 -0
  36. package/{dist/index.d.ts → src/index.ts} +45 -5
  37. package/{dist → src}/styles.css +21 -11
  38. package/src/surreal/connection.ts +72 -0
  39. package/src/surreal/deafaultCrud.ts +25 -0
  40. package/src/surreal/deserialize.ts +144 -0
  41. package/src/surreal/encryption.ts +51 -0
  42. package/src/ui/AnimatedChevron.tsx +32 -0
  43. package/src/ui/JsonInput.tsx +52 -0
  44. package/src/ui/RouterLink.tsx +78 -0
  45. package/src/ui/editor/Content.tsx +11 -0
  46. package/src/ui/editor/Provider.tsx +96 -0
  47. package/src/ui/editor/Root.tsx +25 -0
  48. package/src/ui/editor/Toolbar.tsx +92 -0
  49. package/src/ui/editor/index.ts +13 -0
  50. package/src/ui/editor/types.ts +7 -0
  51. package/src/ui/error/DefaultError.tsx +60 -0
  52. package/src/ui/error/DefaultNotFound.tsx +19 -0
  53. package/src/ui/error/Forbidden.tsx +18 -0
  54. package/src/ui/error/defaultErrorNotification.ts +9 -0
  55. package/src/ui/form/blurOnError.ts +21 -0
  56. package/src/ui/form/buttons/CancelButton.tsx +42 -0
  57. package/src/ui/form/buttons/SubmitButton.tsx +43 -0
  58. package/src/ui/form/buttons/SubscribeActionIcon.tsx +18 -0
  59. package/src/ui/form/buttons/SubscribeButton.tsx +17 -0
  60. package/src/ui/form/context.ts +45 -0
  61. package/src/ui/form/fields/JsonField.tsx +16 -0
  62. package/src/ui/form/fields/MultiSelectField.tsx +17 -0
  63. package/src/ui/form/fields/NumberField.tsx +17 -0
  64. package/src/ui/form/fields/PassowrdField.tsx +20 -0
  65. package/src/ui/form/fields/SelectField.tsx +17 -0
  66. package/src/ui/form/fields/SwitchField.tsx +17 -0
  67. package/src/ui/form/fields/TextField.tsx +17 -0
  68. package/src/ui/form/fields/TextPassowrdField.tsx +51 -0
  69. package/src/ui/form/fields/TextareaField.tsx +17 -0
  70. package/src/ui/form/fieldsSchema.ts +24 -0
  71. package/src/ui/hoverPaper/HoverPaper.tsx +17 -0
  72. package/src/ui/hoverPaper/usePaperHover.ts +9 -0
  73. package/src/ui/saveInput/JsonInput.tsx +40 -0
  74. package/src/ui/saveInput/NumberInput.tsx +40 -0
  75. package/src/ui/saveInput/SaveInput.tsx +15 -0
  76. package/src/ui/saveInput/Select.tsx +41 -0
  77. package/src/ui/saveInput/Switch.tsx +46 -0
  78. package/src/ui/saveInput/TextInput.tsx +40 -0
  79. package/src/ui/saveInput/Textarea.tsx +40 -0
  80. package/src/ui/scrollArea/ARCH.md +204 -0
  81. package/src/ui/scrollArea/README.md +369 -0
  82. package/{dist/ui/scrollArea/ScrollArea.d.ts → src/ui/scrollArea/ScrollArea.tsx} +41 -10
  83. package/src/ui/scrollArea/ScrollAreaButton.tsx +56 -0
  84. package/src/ui/scrollArea/ScrollAreaContent.tsx +36 -0
  85. package/{dist/ui/scrollArea/context.d.ts → src/ui/scrollArea/context.tsx} +18 -3
  86. package/src/ui/scrollArea/index.ts +10 -0
  87. package/src/ui/scrollArea/types.ts +77 -0
  88. package/src/ui/scrollArea/useScrollArea.ts +227 -0
  89. package/tsconfig.json +14 -0
  90. package/dist/ai/ui/conversation/ConversationContext.d.ts +0 -7
  91. package/dist/ai/ui/conversation/ConversationContext.js +0 -8
  92. package/dist/ai/ui/conversation/ConversationProvider.d.ts +0 -2
  93. package/dist/ai/ui/conversation/ConversationProvider.js +0 -14
  94. package/dist/ai/ui/conversation/Empty.d.ts +0 -1
  95. package/dist/ai/ui/conversation/Empty.js +0 -21
  96. package/dist/ai/ui/conversation/File.d.ts +0 -4
  97. package/dist/ai/ui/conversation/File.js +0 -42
  98. package/dist/ai/ui/conversation/FileIcon.d.ts +0 -3
  99. package/dist/ai/ui/conversation/FileIcon.js +0 -225
  100. package/dist/ai/ui/conversation/Loader.d.ts +0 -2
  101. package/dist/ai/ui/conversation/Loader.js +0 -12
  102. package/dist/ai/ui/conversation/Message.d.ts +0 -4
  103. package/dist/ai/ui/conversation/Message.js +0 -25
  104. package/dist/ai/ui/conversation/Root.d.ts +0 -2
  105. package/dist/ai/ui/conversation/Root.js +0 -26
  106. package/dist/ai/ui/conversation/index.d.ts +0 -13
  107. package/dist/ai/ui/conversation/index.js +0 -14
  108. package/dist/ai/ui/conversation/types.js +0 -0
  109. package/dist/ai/ui/conversation/useChatMessage.d.ts +0 -2
  110. package/dist/ai/ui/conversation/useChatMessage.js +0 -12
  111. package/dist/ai/ui/promptInput/File.d.ts +0 -2
  112. package/dist/ai/ui/promptInput/File.js +0 -117
  113. package/dist/ai/ui/promptInput/FileIcon.d.ts +0 -3
  114. package/dist/ai/ui/promptInput/FileIcon.js +0 -225
  115. package/dist/ai/ui/promptInput/Footer.d.ts +0 -2
  116. package/dist/ai/ui/promptInput/Footer.js +0 -8
  117. package/dist/ai/ui/promptInput/PromptInputContext.d.ts +0 -12
  118. package/dist/ai/ui/promptInput/PromptInputContext.js +0 -8
  119. package/dist/ai/ui/promptInput/PromptInputProvider.d.ts +0 -2
  120. package/dist/ai/ui/promptInput/PromptInputProvider.js +0 -50
  121. package/dist/ai/ui/promptInput/Root.d.ts +0 -3
  122. package/dist/ai/ui/promptInput/Root.js +0 -17
  123. package/dist/ai/ui/promptInput/Submit.d.ts +0 -2
  124. package/dist/ai/ui/promptInput/Submit.js +0 -40
  125. package/dist/ai/ui/promptInput/Textarea.d.ts +0 -2
  126. package/dist/ai/ui/promptInput/Textarea.js +0 -33
  127. package/dist/ai/ui/promptInput/index.d.ts +0 -8
  128. package/dist/ai/ui/promptInput/index.js +0 -13
  129. package/dist/ai/ui/promptInput/types.d.ts +0 -11
  130. package/dist/ai/ui/promptInput/types.js +0 -0
  131. package/dist/ai/utils/convertFileUIPartBlobToDataURL.d.ts +0 -5
  132. package/dist/ai/utils/convertFileUIPartBlobToDataURL.js +0 -21
  133. package/dist/ai/utils/parseAiMessagePart.d.ts +0 -2
  134. package/dist/ai/utils/parseAiMessagePart.js +0 -12
  135. package/dist/app/AppDefaults.d.ts +0 -3
  136. package/dist/app/AppDefaults.js +0 -27
  137. package/dist/app/DefaultApp.d.ts +0 -6
  138. package/dist/app/DefaultApp.js +0 -43
  139. package/dist/app/cookieColorSchemeManager.d.ts +0 -6
  140. package/dist/app/cookieColorSchemeManager.js +0 -46
  141. package/dist/app/defaultRequestMiddlewares.d.ts +0 -4
  142. package/dist/app/defaultRequestMiddlewares.js +0 -24
  143. package/dist/app/defaultTheme.d.ts +0 -141
  144. package/dist/app/defaultTheme.js +0 -24
  145. package/dist/functions/getCookie.d.ts +0 -3
  146. package/dist/functions/getCookie.js +0 -8
  147. package/dist/functions/setCookie.d.ts +0 -10
  148. package/dist/functions/setCookie.js +0 -19
  149. package/dist/functions/setCookies.d.ts +0 -14
  150. package/dist/functions/setCookies.js +0 -13
  151. package/dist/hooks/useMutation.d.ts +0 -4
  152. package/dist/hooks/useMutation.js +0 -8
  153. package/dist/hooks/useMutationWithInvalidate.d.ts +0 -4
  154. package/dist/hooks/useMutationWithInvalidate.js +0 -16
  155. package/dist/index.js +0 -26
  156. package/dist/surreal/connection.d.ts +0 -9
  157. package/dist/surreal/connection.js +0 -49
  158. package/dist/surreal/deafaultCrud.d.ts +0 -2
  159. package/dist/surreal/deafaultCrud.js +0 -18
  160. package/dist/surreal/deserialize.d.ts +0 -17
  161. package/dist/surreal/deserialize.js +0 -46
  162. package/dist/surreal/encryption.d.ts +0 -6
  163. package/dist/surreal/encryption.js +0 -30
  164. package/dist/ui/AnimatedChevron.d.ts +0 -6
  165. package/dist/ui/AnimatedChevron.js +0 -31
  166. package/dist/ui/JsonInput.d.ts +0 -2
  167. package/dist/ui/JsonInput.js +0 -45
  168. package/dist/ui/RouterLink.d.ts +0 -16
  169. package/dist/ui/RouterLink.js +0 -36
  170. package/dist/ui/editor/Content.d.ts +0 -3
  171. package/dist/ui/editor/Content.js +0 -13
  172. package/dist/ui/editor/Provider.d.ts +0 -17
  173. package/dist/ui/editor/Provider.js +0 -80
  174. package/dist/ui/editor/Root.d.ts +0 -2
  175. package/dist/ui/editor/Root.js +0 -18
  176. package/dist/ui/editor/Toolbar.d.ts +0 -5
  177. package/dist/ui/editor/Toolbar.js +0 -156
  178. package/dist/ui/editor/index.d.ts +0 -12
  179. package/dist/ui/editor/index.js +0 -11
  180. package/dist/ui/editor/types.d.ts +0 -7
  181. package/dist/ui/editor/types.js +0 -0
  182. package/dist/ui/error/DefaultError.d.ts +0 -2
  183. package/dist/ui/error/DefaultError.js +0 -62
  184. package/dist/ui/error/DefaultNotFound.d.ts +0 -1
  185. package/dist/ui/error/DefaultNotFound.js +0 -37
  186. package/dist/ui/error/Forbidden.d.ts +0 -1
  187. package/dist/ui/error/Forbidden.js +0 -32
  188. package/dist/ui/error/defaultErrorNotification.d.ts +0 -1
  189. package/dist/ui/error/defaultErrorNotification.js +0 -8
  190. package/dist/ui/error/index.js +0 -5
  191. package/dist/ui/form/blurOnError.d.ts +0 -4
  192. package/dist/ui/form/blurOnError.js +0 -11
  193. package/dist/ui/form/buttons/CancelButton.d.ts +0 -5
  194. package/dist/ui/form/buttons/CancelButton.js +0 -44
  195. package/dist/ui/form/buttons/SubmitButton.d.ts +0 -5
  196. package/dist/ui/form/buttons/SubmitButton.js +0 -47
  197. package/dist/ui/form/buttons/SubscribeActionIcon.d.ts +0 -4
  198. package/dist/ui/form/buttons/SubscribeActionIcon.js +0 -15
  199. package/dist/ui/form/buttons/SubscribeButton.d.ts +0 -5
  200. package/dist/ui/form/buttons/SubscribeButton.js +0 -16
  201. package/dist/ui/form/buttons/index.js +0 -4
  202. package/dist/ui/form/context.d.ts +0 -83
  203. package/dist/ui/form/context.js +0 -26
  204. package/dist/ui/form/fields/JsonField.d.ts +0 -2
  205. package/dist/ui/form/fields/JsonField.js +0 -13
  206. package/dist/ui/form/fields/MultiSelectField.d.ts +0 -2
  207. package/dist/ui/form/fields/MultiSelectField.js +0 -15
  208. package/dist/ui/form/fields/NumberField.d.ts +0 -2
  209. package/dist/ui/form/fields/NumberField.js +0 -15
  210. package/dist/ui/form/fields/PassowrdField.d.ts +0 -2
  211. package/dist/ui/form/fields/PassowrdField.js +0 -18
  212. package/dist/ui/form/fields/SelectField.d.ts +0 -2
  213. package/dist/ui/form/fields/SelectField.js +0 -15
  214. package/dist/ui/form/fields/SwitchField.d.ts +0 -2
  215. package/dist/ui/form/fields/SwitchField.js +0 -15
  216. package/dist/ui/form/fields/TextField.d.ts +0 -2
  217. package/dist/ui/form/fields/TextField.js +0 -15
  218. package/dist/ui/form/fields/TextPassowrdField.d.ts +0 -2
  219. package/dist/ui/form/fields/TextPassowrdField.js +0 -51
  220. package/dist/ui/form/fields/TextareaField.d.ts +0 -2
  221. package/dist/ui/form/fields/TextareaField.js +0 -15
  222. package/dist/ui/form/fields/index.js +0 -9
  223. package/dist/ui/form/fieldsSchema.d.ts +0 -12
  224. package/dist/ui/form/fieldsSchema.js +0 -13
  225. package/dist/ui/form/index.js +0 -4
  226. package/dist/ui/hoverPaper/HoverPaper.d.ts +0 -6
  227. package/dist/ui/hoverPaper/HoverPaper.js +0 -15
  228. package/dist/ui/hoverPaper/index.js +0 -3
  229. package/dist/ui/hoverPaper/usePaperHover.d.ts +0 -4
  230. package/dist/ui/hoverPaper/usePaperHover.js +0 -9
  231. package/dist/ui/saveInput/JsonInput.d.ts +0 -6
  232. package/dist/ui/saveInput/JsonInput.js +0 -34
  233. package/dist/ui/saveInput/NumberInput.d.ts +0 -6
  234. package/dist/ui/saveInput/NumberInput.js +0 -27
  235. package/dist/ui/saveInput/SaveInput.d.ts +0 -36
  236. package/dist/ui/saveInput/SaveInput.js +0 -15
  237. package/dist/ui/saveInput/Select.d.ts +0 -6
  238. package/dist/ui/saveInput/Select.js +0 -27
  239. package/dist/ui/saveInput/Switch.d.ts +0 -6
  240. package/dist/ui/saveInput/Switch.js +0 -30
  241. package/dist/ui/saveInput/TextInput.d.ts +0 -6
  242. package/dist/ui/saveInput/TextInput.js +0 -26
  243. package/dist/ui/saveInput/Textarea.d.ts +0 -6
  244. package/dist/ui/saveInput/Textarea.js +0 -26
  245. package/dist/ui/saveInput/index.js +0 -2
  246. package/dist/ui/scrollArea/ScrollArea.js +0 -30
  247. package/dist/ui/scrollArea/ScrollAreaButton.d.ts +0 -5
  248. package/dist/ui/scrollArea/ScrollAreaButton.js +0 -51
  249. package/dist/ui/scrollArea/ScrollAreaContent.d.ts +0 -6
  250. package/dist/ui/scrollArea/ScrollAreaContent.js +0 -29
  251. package/dist/ui/scrollArea/context.js +0 -10
  252. package/dist/ui/scrollArea/index.d.ts +0 -3
  253. package/dist/ui/scrollArea/index.js +0 -3
  254. package/dist/ui/scrollArea/types.d.ts +0 -65
  255. package/dist/ui/scrollArea/types.js +0 -0
  256. package/dist/ui/scrollArea/useScrollArea.d.ts +0 -9
  257. package/dist/ui/scrollArea/useScrollArea.js +0 -146
  258. /package/{dist/ui/error/index.d.ts → src/ui/error/index.ts} +0 -0
  259. /package/{dist/ui/form/buttons/index.d.ts → src/ui/form/buttons/index.ts} +0 -0
  260. /package/{dist/ui/form/fields/index.d.ts → src/ui/form/fields/index.ts} +0 -0
  261. /package/{dist/ui/form/index.d.ts → src/ui/form/index.ts} +0 -0
  262. /package/{dist/ui/hoverPaper/index.d.ts → src/ui/hoverPaper/index.ts} +0 -0
  263. /package/{dist/ui/saveInput/index.d.ts → src/ui/saveInput/index.ts} +0 -0
@@ -1,37 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import { Stack, Text, Title } from "@mantine/core";
3
- import { RouterLink } from "../RouterLink.js";
4
- const DefaultNotFound = ()=>/*#__PURE__*/ jsxs(Stack, {
5
- align: "center",
6
- justify: "center",
7
- gap: 0,
8
- ta: "center",
9
- h: "100vh",
10
- children: [
11
- /*#__PURE__*/ jsx(Text, {
12
- c: "dimmed",
13
- fw: "bold",
14
- children: "404"
15
- }),
16
- /*#__PURE__*/ jsx(Title, {
17
- textWrap: "balance",
18
- size: 65,
19
- children: "Страница не найдена"
20
- }),
21
- /*#__PURE__*/ jsx(Title, {
22
- order: 3,
23
- ml: 4,
24
- textWrap: "balance",
25
- c: "dimmed",
26
- children: "Извините, но здесь нет страницы. Возможно она перемещена."
27
- }),
28
- /*#__PURE__*/ jsx(RouterLink.Button, {
29
- to: "/",
30
- mt: "xl",
31
- size: "lg",
32
- radius: "md",
33
- children: "На главную"
34
- })
35
- ]
36
- });
37
- export { DefaultNotFound };
@@ -1 +0,0 @@
1
- export declare const Forbidden: () => import("react/jsx-runtime").JSX.Element;
@@ -1,32 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import { Stack, Title } from "@mantine/core";
3
- import { RouterLink } from "../RouterLink.js";
4
- const Forbidden = ()=>/*#__PURE__*/ jsxs(Stack, {
5
- align: "center",
6
- justify: "center",
7
- gap: 0,
8
- ta: "center",
9
- h: "100vh",
10
- children: [
11
- /*#__PURE__*/ jsx(Title, {
12
- textWrap: "balance",
13
- size: 65,
14
- children: "Доступ запрещен!"
15
- }),
16
- /*#__PURE__*/ jsx(Title, {
17
- order: 3,
18
- ml: 4,
19
- textWrap: "balance",
20
- c: "var(--mantine-color-error)",
21
- children: "У вас нет доступа к этой странице"
22
- }),
23
- /*#__PURE__*/ jsx(RouterLink.Button, {
24
- to: "/",
25
- mt: "xl",
26
- size: "lg",
27
- radius: "md",
28
- children: "На главную"
29
- })
30
- ]
31
- });
32
- export { Forbidden };
@@ -1 +0,0 @@
1
- export declare const defaultErrorNotification: (error: Error) => string;
@@ -1,8 +0,0 @@
1
- import { notifications } from "@mantine/notifications";
2
- const defaultErrorNotification = (error)=>notifications.show({
3
- title: 'Системная ошибка',
4
- message: error.message,
5
- color: 'red',
6
- autoClose: false
7
- });
8
- export { defaultErrorNotification };
@@ -1,5 +0,0 @@
1
- import { DefaultError } from "./DefaultError.js";
2
- import { DefaultNotFound } from "./DefaultNotFound.js";
3
- import { defaultErrorNotification } from "./defaultErrorNotification.js";
4
- import { Forbidden } from "./Forbidden.js";
5
- export { DefaultError, DefaultNotFound, Forbidden, defaultErrorNotification };
@@ -1,4 +0,0 @@
1
- import type { AnyFormApi } from '@tanstack/react-form';
2
- export declare const blurOnError: ({ formApi }: {
3
- formApi: AnyFormApi;
4
- }) => void;
@@ -1,11 +0,0 @@
1
- const blurOnError = ({ formApi })=>{
2
- const inputNames = Array.from(new Set(Object.keys(formApi.state.fieldMeta).filter((i)=>formApi.state.fieldMeta[i]?.errors.length)));
3
- for (const inputName of inputNames){
4
- const input = document.querySelector(`#form input[name="${inputName}"]`);
5
- if (input) {
6
- input.focus();
7
- break;
8
- }
9
- }
10
- };
11
- export { blurOnError };
@@ -1,5 +0,0 @@
1
- import { type ButtonProps } from '@mantine/core';
2
- export declare const CancelButton: (props: ButtonProps & {
3
- label?: string;
4
- onClick?: () => void;
5
- }) => import("react/jsx-runtime").JSX.Element;
@@ -1,44 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import { Button } from "@mantine/core";
3
- import { useFormContext } from "../context.js";
4
- const CancelButton = (props)=>{
5
- const form = useFormContext();
6
- return /*#__PURE__*/ jsx(form.Subscribe, {
7
- selector: (state)=>state.isSubmitting,
8
- children: (isSubmitting)=>/*#__PURE__*/ jsx(Button, {
9
- type: "reset",
10
- size: "xs",
11
- variant: "light",
12
- leftSection: /*#__PURE__*/ jsxs("svg", {
13
- xmlns: "http://www.w3.org/2000/svg",
14
- width: "16",
15
- height: "16",
16
- viewBox: "0 0 16 16",
17
- fill: "none",
18
- stroke: "currentColor",
19
- strokeWidth: "2",
20
- strokeLinecap: "round",
21
- strokeLinejoin: "round",
22
- role: "img",
23
- "aria-label": "Cancel",
24
- children: [
25
- /*#__PURE__*/ jsx("path", {
26
- stroke: "none",
27
- d: "M0 0h24v24H0z",
28
- fill: "none"
29
- }),
30
- /*#__PURE__*/ jsx("path", {
31
- d: "M3 12a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"
32
- }),
33
- /*#__PURE__*/ jsx("path", {
34
- d: "M18.364 5.636l-12.728 12.728"
35
- })
36
- ]
37
- }),
38
- disabled: isSubmitting,
39
- ...props,
40
- children: props.label || 'Отмена'
41
- })
42
- });
43
- };
44
- export { CancelButton };
@@ -1,5 +0,0 @@
1
- import { type ButtonProps } from '@mantine/core';
2
- export declare const SubmitButton: (props: ButtonProps & {
3
- label?: string;
4
- onClick?: () => void;
5
- }) => import("react/jsx-runtime").JSX.Element;
@@ -1,47 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import { Button } from "@mantine/core";
3
- import { useFormContext } from "../context.js";
4
- const SubmitButton = (props)=>{
5
- const form = useFormContext();
6
- return /*#__PURE__*/ jsx(form.Subscribe, {
7
- selector: (state)=>state,
8
- children: (state)=>/*#__PURE__*/ jsx(Button, {
9
- type: "submit",
10
- size: "xs",
11
- leftSection: /*#__PURE__*/ jsxs("svg", {
12
- xmlns: "http://www.w3.org/2000/svg",
13
- width: "20",
14
- height: "20",
15
- viewBox: "0 0 20 20",
16
- fill: "none",
17
- stroke: "currentColor",
18
- strokeWidth: "2",
19
- strokeLinecap: "round",
20
- strokeLinejoin: "round",
21
- role: "img",
22
- "aria-label": "Submit",
23
- children: [
24
- /*#__PURE__*/ jsx("path", {
25
- stroke: "none",
26
- d: "M0 0h24v24H0z",
27
- fill: "none"
28
- }),
29
- /*#__PURE__*/ jsx("path", {
30
- d: "M6 4h10l4 4v10a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2"
31
- }),
32
- /*#__PURE__*/ jsx("path", {
33
- d: "M10 14a2 2 0 1 0 4 0a2 2 0 1 0 -4 0"
34
- }),
35
- /*#__PURE__*/ jsx("path", {
36
- d: "M14 4l0 4l-6 0l0 -4"
37
- })
38
- ]
39
- }),
40
- loading: state.isSubmitting,
41
- disabled: !state.isDirty,
42
- ...props,
43
- children: props.label || 'Сохранить'
44
- })
45
- });
46
- };
47
- export { SubmitButton };
@@ -1,4 +0,0 @@
1
- import { type ActionIconProps } from '@mantine/core';
2
- export declare const SubscribeActionIcon: (props: ActionIconProps & {
3
- onClick?: () => void;
4
- }) => import("react/jsx-runtime").JSX.Element;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { ActionIcon } from "@mantine/core";
3
- import { useFormContext } from "../context.js";
4
- const SubscribeActionIcon = (props)=>{
5
- const form = useFormContext();
6
- return /*#__PURE__*/ jsx(form.Subscribe, {
7
- selector: (state)=>state.isSubmitting,
8
- children: (isSubmitting)=>/*#__PURE__*/ jsx(ActionIcon, {
9
- disabled: isSubmitting,
10
- ...props,
11
- children: props.children
12
- })
13
- });
14
- };
15
- export { SubscribeActionIcon };
@@ -1,5 +0,0 @@
1
- import { type ButtonProps } from '@mantine/core';
2
- export declare const SubscribeButton: (props: ButtonProps & {
3
- label: string;
4
- onClick?: () => void;
5
- }) => import("react/jsx-runtime").JSX.Element;
@@ -1,16 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { Button } from "@mantine/core";
3
- import { useFormContext } from "../context.js";
4
- const SubscribeButton = (props)=>{
5
- const form = useFormContext();
6
- return /*#__PURE__*/ jsx(form.Subscribe, {
7
- selector: (state)=>state.isSubmitting,
8
- children: (isSubmitting)=>/*#__PURE__*/ jsx(Button, {
9
- type: "button",
10
- disabled: isSubmitting,
11
- ...props,
12
- children: props.label
13
- })
14
- });
15
- };
16
- export { SubscribeButton };
@@ -1,4 +0,0 @@
1
- export * from "./CancelButton.js";
2
- export * from "./SubmitButton.js";
3
- export * from "./SubscribeActionIcon.js";
4
- export * from "./SubscribeButton.js";
@@ -1,83 +0,0 @@
1
- declare const useFieldContext: <TData>() => import("@tanstack/form-core").FieldApi<any, string, TData, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any>, useFormContext: () => import("@tanstack/react-form").ReactFormExtendedApi<Record<string, never>, any, any, any, any, any, any, any, any, any, any, any>;
2
- declare const useAppForm: <TFormData, TOnMount extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnChange extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta>(props: import("@tanstack/form-core").FormOptions<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>) => import("@tanstack/react-form").AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {
3
- readonly TextField: (props: import("@mantine/core").TextInputProps) => import("react/jsx-runtime").JSX.Element;
4
- readonly NumberField: (props: import("@mantine/core").NumberInputProps) => import("react/jsx-runtime").JSX.Element;
5
- readonly TextareaField: (props: import("@mantine/core").TextareaProps) => import("react/jsx-runtime").JSX.Element;
6
- readonly TextPassowrdField: (props: import("@mantine/core").TextInputProps) => import("react/jsx-runtime").JSX.Element;
7
- readonly PassowrdField: (props: import("@mantine/core").PasswordInputProps) => import("react/jsx-runtime").JSX.Element;
8
- readonly SelectField: (props: import("@mantine/core").SelectProps) => import("react/jsx-runtime").JSX.Element;
9
- readonly MultiSelectField: (props: import("@mantine/core").MultiSelectProps) => import("react/jsx-runtime").JSX.Element;
10
- readonly SwitchField: (props: import("@mantine/core").SwitchProps) => import("react/jsx-runtime").JSX.Element;
11
- readonly JsonField: (props: import("@uiw/react-codemirror").ReactCodeMirrorProps) => import("react/jsx-runtime").JSX.Element;
12
- }, {
13
- readonly SubmitButton: (props: import("@mantine/core").ButtonProps & {
14
- label?: string;
15
- onClick?: () => void;
16
- }) => import("react/jsx-runtime").JSX.Element;
17
- readonly CancelButton: (props: import("@mantine/core").ButtonProps & {
18
- label?: string;
19
- onClick?: () => void;
20
- }) => import("react/jsx-runtime").JSX.Element;
21
- readonly SubscribeButton: (props: import("@mantine/core").ButtonProps & {
22
- label: string;
23
- onClick?: () => void;
24
- }) => import("react/jsx-runtime").JSX.Element;
25
- readonly SubscribeActionIcon: (props: import("@mantine/core").ActionIconProps & {
26
- onClick?: () => void;
27
- }) => import("react/jsx-runtime").JSX.Element;
28
- }>, withForm: <TFormData, TOnMount extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnChange extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends import("@tanstack/form-core").FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta, TRenderProps extends object = {}>({ render, props, }: import("@tanstack/react-form").WithFormProps<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {
29
- readonly TextField: (props: import("@mantine/core").TextInputProps) => import("react/jsx-runtime").JSX.Element;
30
- readonly NumberField: (props: import("@mantine/core").NumberInputProps) => import("react/jsx-runtime").JSX.Element;
31
- readonly TextareaField: (props: import("@mantine/core").TextareaProps) => import("react/jsx-runtime").JSX.Element;
32
- readonly TextPassowrdField: (props: import("@mantine/core").TextInputProps) => import("react/jsx-runtime").JSX.Element;
33
- readonly PassowrdField: (props: import("@mantine/core").PasswordInputProps) => import("react/jsx-runtime").JSX.Element;
34
- readonly SelectField: (props: import("@mantine/core").SelectProps) => import("react/jsx-runtime").JSX.Element;
35
- readonly MultiSelectField: (props: import("@mantine/core").MultiSelectProps) => import("react/jsx-runtime").JSX.Element;
36
- readonly SwitchField: (props: import("@mantine/core").SwitchProps) => import("react/jsx-runtime").JSX.Element;
37
- readonly JsonField: (props: import("@uiw/react-codemirror").ReactCodeMirrorProps) => import("react/jsx-runtime").JSX.Element;
38
- }, {
39
- readonly SubmitButton: (props: import("@mantine/core").ButtonProps & {
40
- label?: string;
41
- onClick?: () => void;
42
- }) => import("react/jsx-runtime").JSX.Element;
43
- readonly CancelButton: (props: import("@mantine/core").ButtonProps & {
44
- label?: string;
45
- onClick?: () => void;
46
- }) => import("react/jsx-runtime").JSX.Element;
47
- readonly SubscribeButton: (props: import("@mantine/core").ButtonProps & {
48
- label: string;
49
- onClick?: () => void;
50
- }) => import("react/jsx-runtime").JSX.Element;
51
- readonly SubscribeActionIcon: (props: import("@mantine/core").ActionIconProps & {
52
- onClick?: () => void;
53
- }) => import("react/jsx-runtime").JSX.Element;
54
- }, TRenderProps>) => import("react").FunctionComponent<import("react").PropsWithChildren<NoInfer<[unknown] extends [TRenderProps] ? any : TRenderProps> & {
55
- form: import("@tanstack/react-form").AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnMount] ? [TOnMount] extends [TOnMount & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount : TOnMount, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnChange] ? [TOnChange] extends [TOnChange & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange : TOnChange, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync] ? [TOnChangeAsync] extends [TOnChangeAsync & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync : TOnChangeAsync, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnBlur] ? [TOnBlur] extends [TOnBlur & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur : TOnBlur, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync] ? [TOnBlurAsync] extends [TOnBlurAsync & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync : TOnBlurAsync, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit] ? [TOnSubmit] extends [TOnSubmit & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit : TOnSubmit, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync] ? [TOnSubmitAsync] extends [TOnSubmitAsync & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync : TOnSubmitAsync, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic] ? [TOnDynamic] extends [TOnDynamic & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic : TOnDynamic, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync] ? [TOnDynamicAsync] extends [TOnDynamicAsync & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync : TOnDynamicAsync, [import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined] extends [TOnServer] ? [TOnServer] extends [TOnServer & (import("@tanstack/form-core").FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer : TOnServer, [unknown] extends [TSubmitMeta] ? any : TSubmitMeta, {
56
- readonly TextField: (props: import("@mantine/core").TextInputProps) => import("react/jsx-runtime").JSX.Element;
57
- readonly NumberField: (props: import("@mantine/core").NumberInputProps) => import("react/jsx-runtime").JSX.Element;
58
- readonly TextareaField: (props: import("@mantine/core").TextareaProps) => import("react/jsx-runtime").JSX.Element;
59
- readonly TextPassowrdField: (props: import("@mantine/core").TextInputProps) => import("react/jsx-runtime").JSX.Element;
60
- readonly PassowrdField: (props: import("@mantine/core").PasswordInputProps) => import("react/jsx-runtime").JSX.Element;
61
- readonly SelectField: (props: import("@mantine/core").SelectProps) => import("react/jsx-runtime").JSX.Element;
62
- readonly MultiSelectField: (props: import("@mantine/core").MultiSelectProps) => import("react/jsx-runtime").JSX.Element;
63
- readonly SwitchField: (props: import("@mantine/core").SwitchProps) => import("react/jsx-runtime").JSX.Element;
64
- readonly JsonField: (props: import("@uiw/react-codemirror").ReactCodeMirrorProps) => import("react/jsx-runtime").JSX.Element;
65
- }, {
66
- readonly SubmitButton: (props: import("@mantine/core").ButtonProps & {
67
- label?: string;
68
- onClick?: () => void;
69
- }) => import("react/jsx-runtime").JSX.Element;
70
- readonly CancelButton: (props: import("@mantine/core").ButtonProps & {
71
- label?: string;
72
- onClick?: () => void;
73
- }) => import("react/jsx-runtime").JSX.Element;
74
- readonly SubscribeButton: (props: import("@mantine/core").ButtonProps & {
75
- label: string;
76
- onClick?: () => void;
77
- }) => import("react/jsx-runtime").JSX.Element;
78
- readonly SubscribeActionIcon: (props: import("@mantine/core").ActionIconProps & {
79
- onClick?: () => void;
80
- }) => import("react/jsx-runtime").JSX.Element;
81
- }>;
82
- }>>;
83
- export { useAppForm, useFieldContext, useFormContext, withForm };
@@ -1,26 +0,0 @@
1
- import { createFormHook, createFormHookContexts } from "@tanstack/react-form";
2
- import { CancelButton, SubmitButton, SubscribeActionIcon, SubscribeButton } from "./buttons/index.js";
3
- import { JsonField, MultiSelectField, NumberField, PassowrdField, SelectField, SwitchField, TextField, TextPassowrdField, TextareaField } from "./fields/index.js";
4
- const { fieldContext, useFieldContext, formContext, useFormContext } = createFormHookContexts();
5
- const { useAppForm, withForm } = createFormHook({
6
- fieldComponents: {
7
- TextField: TextField,
8
- NumberField: NumberField,
9
- TextareaField: TextareaField,
10
- TextPassowrdField: TextPassowrdField,
11
- PassowrdField: PassowrdField,
12
- SelectField: SelectField,
13
- MultiSelectField: MultiSelectField,
14
- SwitchField: SwitchField,
15
- JsonField: JsonField
16
- },
17
- formComponents: {
18
- SubmitButton: SubmitButton,
19
- CancelButton: CancelButton,
20
- SubscribeButton: SubscribeButton,
21
- SubscribeActionIcon: SubscribeActionIcon
22
- },
23
- fieldContext,
24
- formContext
25
- });
26
- export { useAppForm, useFieldContext, useFormContext, withForm };
@@ -1,2 +0,0 @@
1
- import type { ReactCodeMirrorProps } from '@uiw/react-codemirror';
2
- export declare const JsonField: (props: ReactCodeMirrorProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,13 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { JsonInput } from "../../JsonInput.js";
3
- import { useFieldContext } from "../context.js";
4
- const JsonField = (props)=>{
5
- const field = useFieldContext();
6
- return /*#__PURE__*/ jsx(JsonInput, {
7
- value: field.state.value || '',
8
- onChange: field.handleChange,
9
- onBlur: field.handleBlur,
10
- ...props
11
- });
12
- };
13
- export { JsonField };
@@ -1,2 +0,0 @@
1
- import { type MultiSelectProps } from '@mantine/core';
2
- export declare const MultiSelectField: (props: MultiSelectProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { MultiSelect } from "@mantine/core";
3
- import { useFieldContext } from "../context.js";
4
- const MultiSelectField = (props)=>{
5
- const field = useFieldContext();
6
- return /*#__PURE__*/ jsx(MultiSelect, {
7
- name: field.name,
8
- value: field.state.value || [],
9
- onChange: field.handleChange,
10
- onBlur: field.handleBlur,
11
- error: field.state.meta.errors.map((error)=>error.message).join(', '),
12
- ...props
13
- });
14
- };
15
- export { MultiSelectField };
@@ -1,2 +0,0 @@
1
- import { type NumberInputProps } from '@mantine/core';
2
- export declare const NumberField: (props: NumberInputProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { NumberInput } from "@mantine/core";
3
- import { useFieldContext } from "../context.js";
4
- const NumberField = (props)=>{
5
- const field = useFieldContext();
6
- return /*#__PURE__*/ jsx(NumberInput, {
7
- name: field.name,
8
- value: field.state.value || '',
9
- onChange: (v)=>field.handleChange(v),
10
- onBlur: field.handleBlur,
11
- error: field.state.meta.errors.map((error)=>error.message).join(', '),
12
- ...props
13
- });
14
- };
15
- export { NumberField };
@@ -1,2 +0,0 @@
1
- import { type PasswordInputProps } from '@mantine/core';
2
- export declare const PassowrdField: (props: PasswordInputProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,18 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { PasswordInput } from "@mantine/core";
3
- import { useFieldContext } from "../context.js";
4
- const PassowrdField = (props)=>{
5
- const field = useFieldContext();
6
- return /*#__PURE__*/ jsx(PasswordInput, {
7
- size: "lg",
8
- label: "Пароль",
9
- placeholder: "Введите пароль",
10
- name: field.name,
11
- value: field.state.value || '',
12
- onChange: (e)=>field.handleChange(e.target.value),
13
- onBlur: field.handleBlur,
14
- error: field.state.meta.errors.map((error)=>error.message).join(', '),
15
- ...props
16
- });
17
- };
18
- export { PassowrdField };
@@ -1,2 +0,0 @@
1
- import { type SelectProps } from '@mantine/core';
2
- export declare const SelectField: (props: SelectProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { Select } from "@mantine/core";
3
- import { useFieldContext } from "../context.js";
4
- const SelectField = (props)=>{
5
- const field = useFieldContext();
6
- return /*#__PURE__*/ jsx(Select, {
7
- name: field.name,
8
- value: field.state.value,
9
- onChange: field.handleChange,
10
- onBlur: field.handleBlur,
11
- error: field.state.meta.errors.map((error)=>error.message).join(', '),
12
- ...props
13
- });
14
- };
15
- export { SelectField };
@@ -1,2 +0,0 @@
1
- import { type SwitchProps } from '@mantine/core';
2
- export declare const SwitchField: (props: SwitchProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { Switch } from "@mantine/core";
3
- import { useFieldContext } from "../context.js";
4
- const SwitchField = (props)=>{
5
- const field = useFieldContext();
6
- return /*#__PURE__*/ jsx(Switch, {
7
- name: field.name,
8
- checked: field.state.value,
9
- onChange: (e)=>field.handleChange(e.currentTarget.checked),
10
- error: field.state.meta.errors.map((error)=>error.message).join(', '),
11
- w: "fit-content",
12
- ...props
13
- });
14
- };
15
- export { SwitchField };
@@ -1,2 +0,0 @@
1
- import { type TextInputProps } from '@mantine/core';
2
- export declare const TextField: (props: TextInputProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { TextInput } from "@mantine/core";
3
- import { useFieldContext } from "../context.js";
4
- const TextField = (props)=>{
5
- const field = useFieldContext();
6
- return /*#__PURE__*/ jsx(TextInput, {
7
- name: field.name,
8
- value: field.state.value || '',
9
- onChange: (e)=>field.handleChange(e.target.value),
10
- onBlur: field.handleBlur,
11
- error: field.state.meta.errors.map((error)=>error.message).join(', '),
12
- ...props
13
- });
14
- };
15
- export { TextField };
@@ -1,2 +0,0 @@
1
- import { type TextInputProps } from '@mantine/core';
2
- export declare const TextPassowrdField: (props: TextInputProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,51 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import { ActionIcon, TextInput } from "@mantine/core";
3
- import omgopass from "omgopass";
4
- import { useFieldContext } from "../context.js";
5
- const TextPassowrdField = (props)=>{
6
- const field = useFieldContext();
7
- return /*#__PURE__*/ jsx(TextInput, {
8
- label: "Пароль",
9
- placeholder: "Введите пароль",
10
- rightSection: /*#__PURE__*/ jsx(ActionIcon, {
11
- variant: "light",
12
- onClick: ()=>field.setValue(omgopass({
13
- minSyllableLength: 2,
14
- maxSyllableLength: 2
15
- })),
16
- children: /*#__PURE__*/ jsxs("svg", {
17
- xmlns: "http://www.w3.org/2000/svg",
18
- width: "16",
19
- height: "16",
20
- viewBox: "0 0 16 16",
21
- fill: "none",
22
- stroke: "currentColor",
23
- strokeWidth: "2",
24
- strokeLinecap: "round",
25
- strokeLinejoin: "round",
26
- role: "img",
27
- "aria-label": "Refresh",
28
- children: [
29
- /*#__PURE__*/ jsx("path", {
30
- stroke: "none",
31
- d: "M0 0h24v24H0z",
32
- fill: "none"
33
- }),
34
- /*#__PURE__*/ jsx("path", {
35
- d: "M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4"
36
- }),
37
- /*#__PURE__*/ jsx("path", {
38
- d: "M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4"
39
- })
40
- ]
41
- })
42
- }),
43
- name: field.name,
44
- value: field.state.value || '',
45
- onChange: (e)=>field.handleChange(e.target.value),
46
- onBlur: field.handleBlur,
47
- error: field.state.meta.errors.map((error)=>error.message).join(', '),
48
- ...props
49
- });
50
- };
51
- export { TextPassowrdField };
@@ -1,2 +0,0 @@
1
- import { type TextareaProps } from '@mantine/core';
2
- export declare const TextareaField: (props: TextareaProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,15 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import { Textarea } from "@mantine/core";
3
- import { useFieldContext } from "../context.js";
4
- const TextareaField = (props)=>{
5
- const field = useFieldContext();
6
- return /*#__PURE__*/ jsx(Textarea, {
7
- name: field.name,
8
- value: field.state.value || '',
9
- onChange: (e)=>field.handleChange(e.target.value),
10
- onBlur: field.handleBlur,
11
- error: field.state.meta.errors.map((error)=>error.message).join(', '),
12
- ...props
13
- });
14
- };
15
- export { TextareaField };
@@ -1,9 +0,0 @@
1
- export * from "./JsonField.js";
2
- export * from "./MultiSelectField.js";
3
- export * from "./NumberField.js";
4
- export * from "./PassowrdField.js";
5
- export * from "./SelectField.js";
6
- export * from "./SwitchField.js";
7
- export * from "./TextareaField.js";
8
- export * from "./TextField.js";
9
- export * from "./TextPassowrdField.js";