@gravity-ui/dynamic-forms 5.19.0 → 5.19.1

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 (368) hide show
  1. package/build/cjs/index.d.ts +1 -0
  2. package/build/cjs/lib/core/components/Form/Controller/Controller.d.ts +11 -0
  3. package/build/cjs/lib/core/components/Form/Controller/index.d.ts +1 -0
  4. package/build/cjs/lib/core/components/Form/Controller/types.d.ts +98 -0
  5. package/build/cjs/lib/core/components/Form/Controller/utils.d.ts +27 -0
  6. package/build/cjs/lib/core/components/Form/DynamicField.d.ts +19 -0
  7. package/build/cjs/lib/core/components/Form/constants.d.ts +4 -0
  8. package/build/cjs/lib/core/components/Form/hooks/index.d.ts +17 -0
  9. package/build/cjs/lib/core/components/Form/hooks/useControllerMirror.d.ts +2 -0
  10. package/build/cjs/lib/core/components/Form/hooks/useCreateContext.d.ts +3 -0
  11. package/build/cjs/lib/core/components/Form/hooks/useCreateSearchContext.d.ts +3 -0
  12. package/build/cjs/lib/core/components/Form/hooks/useDynamicFieldMirror.d.ts +2 -0
  13. package/build/cjs/lib/core/components/Form/hooks/useDynamicFormsCtx.d.ts +1 -0
  14. package/build/cjs/lib/core/components/Form/hooks/useFormShared.d.ts +4 -0
  15. package/build/cjs/lib/core/components/Form/hooks/useFormSharedStore.d.ts +4 -0
  16. package/build/cjs/lib/core/components/Form/hooks/useGenerateRandomValue.d.ts +1 -0
  17. package/build/cjs/lib/core/components/Form/hooks/useIntegrationFF.d.ts +10 -0
  18. package/build/cjs/lib/core/components/Form/hooks/useMonaco.d.ts +1 -0
  19. package/build/cjs/lib/core/components/Form/hooks/useMutateDFState.d.ts +1 -0
  20. package/build/cjs/lib/core/components/Form/hooks/useMutators.d.ts +5 -0
  21. package/build/cjs/lib/core/components/Form/hooks/useSearch/index.d.ts +1 -0
  22. package/build/cjs/lib/core/components/Form/hooks/useSearch/useSearch.d.ts +4 -0
  23. package/build/cjs/lib/core/components/Form/hooks/useSearchContext.d.ts +1 -0
  24. package/build/cjs/lib/core/components/Form/hooks/useSearchStore.d.ts +6 -0
  25. package/build/cjs/lib/core/components/Form/hooks/useStore.d.ts +10 -0
  26. package/build/cjs/lib/core/components/Form/hooks/useStoreValue.d.ts +1 -0
  27. package/build/cjs/lib/core/components/Form/index.d.ts +6 -0
  28. package/build/cjs/lib/core/components/Form/types/array.d.ts +14 -0
  29. package/build/cjs/lib/core/components/Form/types/boolean.d.ts +14 -0
  30. package/build/cjs/lib/core/components/Form/types/config.d.ts +14 -0
  31. package/build/cjs/lib/core/components/Form/types/context.d.ts +23 -0
  32. package/build/cjs/lib/core/components/Form/types/field.d.ts +33 -0
  33. package/build/cjs/lib/core/components/Form/types/index.d.ts +16 -0
  34. package/build/cjs/lib/core/components/Form/types/input.d.ts +23 -0
  35. package/build/cjs/lib/core/components/Form/types/layout.d.ts +9 -0
  36. package/build/cjs/lib/core/components/Form/types/mirror.d.ts +15 -0
  37. package/build/cjs/lib/core/components/Form/types/mutators.d.ts +29 -0
  38. package/build/cjs/lib/core/components/Form/types/number.d.ts +14 -0
  39. package/build/cjs/lib/core/components/Form/types/object.d.ts +14 -0
  40. package/build/cjs/lib/core/components/Form/types/search.d.ts +8 -0
  41. package/build/cjs/lib/core/components/Form/types/store.d.ts +7 -0
  42. package/build/cjs/lib/core/components/Form/types/string.d.ts +14 -0
  43. package/build/cjs/lib/core/components/Form/types/validators.d.ts +8 -0
  44. package/build/cjs/lib/core/components/Form/types/value.d.ts +8 -0
  45. package/build/cjs/lib/core/components/Form/utils/common.d.ts +6 -0
  46. package/build/cjs/lib/core/components/Form/utils/index.d.ts +2 -0
  47. package/build/cjs/lib/core/components/Form/utils/search.d.ts +3 -0
  48. package/build/cjs/lib/core/components/View/DynamicView.d.ts +17 -0
  49. package/build/cjs/lib/core/components/View/ViewController.d.ts +7 -0
  50. package/build/cjs/lib/core/components/View/helpers.d.ts +1 -0
  51. package/build/cjs/lib/core/components/View/hooks/index.d.ts +7 -0
  52. package/build/cjs/lib/core/components/View/hooks/useComponents.d.ts +6 -0
  53. package/build/cjs/lib/core/components/View/hooks/useCreateContext.d.ts +3 -0
  54. package/build/cjs/lib/core/components/View/hooks/useDynamicFormsCtx.d.ts +1 -0
  55. package/build/cjs/lib/core/components/View/hooks/useMonaco.d.ts +1 -0
  56. package/build/cjs/lib/core/components/View/hooks/useRender.d.ts +15 -0
  57. package/build/cjs/lib/core/components/View/hooks/useViewShared.d.ts +4 -0
  58. package/build/cjs/lib/core/components/View/hooks/useViewSharedStore.d.ts +4 -0
  59. package/build/cjs/lib/core/components/View/index.d.ts +5 -0
  60. package/build/cjs/lib/core/components/View/types/array.d.ts +13 -0
  61. package/build/cjs/lib/core/components/View/types/boolean.d.ts +13 -0
  62. package/build/cjs/lib/core/components/View/types/config.d.ts +13 -0
  63. package/build/cjs/lib/core/components/View/types/context.d.ts +18 -0
  64. package/build/cjs/lib/core/components/View/types/index.d.ts +9 -0
  65. package/build/cjs/lib/core/components/View/types/layout.d.ts +8 -0
  66. package/build/cjs/lib/core/components/View/types/number.d.ts +13 -0
  67. package/build/cjs/lib/core/components/View/types/object.d.ts +13 -0
  68. package/build/cjs/lib/core/components/View/types/string.d.ts +13 -0
  69. package/build/cjs/lib/core/components/View/types/views.d.ts +23 -0
  70. package/build/cjs/lib/core/components/index.d.ts +2 -0
  71. package/build/cjs/lib/core/constants.d.ts +8 -0
  72. package/build/cjs/lib/core/helpers.d.ts +7 -0
  73. package/build/cjs/lib/core/index.d.ts +4 -0
  74. package/build/cjs/lib/core/types/index.d.ts +2 -0
  75. package/build/cjs/lib/core/types/specs.d.ts +194 -0
  76. package/build/cjs/lib/core/types/value.d.ts +5 -0
  77. package/build/cjs/lib/index.d.ts +2 -0
  78. package/build/cjs/lib/kit/components/AccordeonCard/AccordeonCard.d.ts +16 -0
  79. package/build/cjs/lib/kit/components/AccordeonCard/index.d.ts +1 -0
  80. package/build/cjs/lib/kit/components/Card/Card.d.ts +14 -0
  81. package/build/cjs/lib/kit/components/Card/index.d.ts +1 -0
  82. package/build/cjs/lib/kit/components/CopyButton/CopyButton.d.ts +11 -0
  83. package/build/cjs/lib/kit/components/CopyButton/index.d.ts +1 -0
  84. package/build/cjs/lib/kit/components/ErrorWrapper/ErrorWrapper.d.ts +10 -0
  85. package/build/cjs/lib/kit/components/ErrorWrapper/index.d.ts +1 -0
  86. package/build/cjs/lib/kit/components/GenerateRandomValueButton/GenerateRandomValueButton.d.ts +8 -0
  87. package/build/cjs/lib/kit/components/GenerateRandomValueButton/index.d.ts +1 -0
  88. package/build/cjs/lib/kit/components/GroupIndent/GroupIndent.d.ts +5 -0
  89. package/build/cjs/lib/kit/components/GroupIndent/index.d.ts +1 -0
  90. package/build/cjs/lib/kit/components/HTMLContent/HTMLContent.d.ts +6 -0
  91. package/build/cjs/lib/kit/components/HTMLContent/index.d.ts +1 -0
  92. package/build/cjs/lib/kit/components/Inputs/ArrayBase/ArrayBase.d.ts +2 -0
  93. package/build/cjs/lib/kit/components/Inputs/ArrayBase/index.d.ts +1 -0
  94. package/build/cjs/lib/kit/components/Inputs/CardOneOf/CardOneOf.d.ts +2 -0
  95. package/build/cjs/lib/kit/components/Inputs/CardOneOf/index.d.ts +1 -0
  96. package/build/cjs/lib/kit/components/Inputs/Checkbox/Checkbox.d.ts +5 -0
  97. package/build/cjs/lib/kit/components/Inputs/Checkbox/index.d.ts +1 -0
  98. package/build/cjs/lib/kit/components/Inputs/CheckboxGroup/CheckboxGroup.d.ts +5 -0
  99. package/build/cjs/lib/kit/components/Inputs/CheckboxGroup/index.d.ts +1 -0
  100. package/build/cjs/lib/kit/components/Inputs/ColorPicker/ColorPicker.d.ts +21 -0
  101. package/build/cjs/lib/kit/components/Inputs/ColorPicker/index.d.ts +1 -0
  102. package/build/cjs/lib/kit/components/Inputs/DateInput/DateInput.d.ts +8 -0
  103. package/build/cjs/lib/kit/components/Inputs/DateInput/index.d.ts +1 -0
  104. package/build/cjs/lib/kit/components/Inputs/FileInput/FileInput.d.ts +3 -0
  105. package/build/cjs/lib/kit/components/Inputs/FileInput/index.d.ts +1 -0
  106. package/build/cjs/lib/kit/components/Inputs/FileInput/utils.d.ts +2 -0
  107. package/build/cjs/lib/kit/components/Inputs/MonacoInput/MonacoHeader.d.ts +11 -0
  108. package/build/cjs/lib/kit/components/Inputs/MonacoInput/MonacoInputBase.d.ts +9 -0
  109. package/build/cjs/lib/kit/components/Inputs/MonacoInput/MonacoInputDialog.d.ts +20 -0
  110. package/build/cjs/lib/kit/components/Inputs/MonacoInput/index.d.ts +1 -0
  111. package/build/cjs/lib/kit/components/Inputs/MonacoInput/useMonacoOptions.d.ts +2 -0
  112. package/build/cjs/lib/kit/components/Inputs/MultiOneOf/MultiOneOf.d.ts +7 -0
  113. package/build/cjs/lib/kit/components/Inputs/MultiOneOf/index.d.ts +1 -0
  114. package/build/cjs/lib/kit/components/Inputs/MultiSelect/MultiSelect.d.ts +6 -0
  115. package/build/cjs/lib/kit/components/Inputs/MultiSelect/index.d.ts +1 -0
  116. package/build/cjs/lib/kit/components/Inputs/Number/Number.d.ts +6 -0
  117. package/build/cjs/lib/kit/components/Inputs/Number/index.d.ts +1 -0
  118. package/build/cjs/lib/kit/components/Inputs/NumberWithScale/NumberWithScale.d.ts +3 -0
  119. package/build/cjs/lib/kit/components/Inputs/NumberWithScale/index.d.ts +1 -0
  120. package/build/cjs/lib/kit/components/Inputs/NumberWithScale/useInitial.d.ts +5 -0
  121. package/build/cjs/lib/kit/components/Inputs/ObjectBase/ObjectBase.d.ts +7 -0
  122. package/build/cjs/lib/kit/components/Inputs/ObjectBase/index.d.ts +1 -0
  123. package/build/cjs/lib/kit/components/Inputs/ObjectValueInput/ObjectValueInput.d.ts +2 -0
  124. package/build/cjs/lib/kit/components/Inputs/ObjectValueInput/index.d.ts +1 -0
  125. package/build/cjs/lib/kit/components/Inputs/OneOf/OneOf.d.ts +7 -0
  126. package/build/cjs/lib/kit/components/Inputs/OneOf/index.d.ts +1 -0
  127. package/build/cjs/lib/kit/components/Inputs/RadioGroup/RadioGroup.d.ts +6 -0
  128. package/build/cjs/lib/kit/components/Inputs/RadioGroup/index.d.ts +1 -0
  129. package/build/cjs/lib/kit/components/Inputs/RangeInputPicker/RangeInputPicker.d.ts +4 -0
  130. package/build/cjs/lib/kit/components/Inputs/RangeInputPicker/RangeInputPickerNumber.d.ts +4 -0
  131. package/build/cjs/lib/kit/components/Inputs/RangeInputPicker/index.d.ts +3 -0
  132. package/build/cjs/lib/kit/components/Inputs/RangeInputPicker/types.d.ts +15 -0
  133. package/build/cjs/lib/kit/components/Inputs/Secret/Secret.d.ts +2 -0
  134. package/build/cjs/lib/kit/components/Inputs/Secret/index.d.ts +1 -0
  135. package/build/cjs/lib/kit/components/Inputs/Select/Select.d.ts +6 -0
  136. package/build/cjs/lib/kit/components/Inputs/Select/index.d.ts +1 -0
  137. package/build/cjs/lib/kit/components/Inputs/Switch/Switch.d.ts +2 -0
  138. package/build/cjs/lib/kit/components/Inputs/Switch/index.d.ts +1 -0
  139. package/build/cjs/lib/kit/components/Inputs/TableArrayInput/TableArrayInput.d.ts +2 -0
  140. package/build/cjs/lib/kit/components/Inputs/TableArrayInput/index.d.ts +1 -0
  141. package/build/cjs/lib/kit/components/Inputs/Text/Text.d.ts +6 -0
  142. package/build/cjs/lib/kit/components/Inputs/Text/index.d.ts +1 -0
  143. package/build/cjs/lib/kit/components/Inputs/TextArea/TextArea.d.ts +5 -0
  144. package/build/cjs/lib/kit/components/Inputs/TextArea/index.d.ts +1 -0
  145. package/build/cjs/lib/kit/components/Inputs/TextContent/TextContent.d.ts +12 -0
  146. package/build/cjs/lib/kit/components/Inputs/TextContent/index.d.ts +1 -0
  147. package/build/cjs/lib/kit/components/Inputs/TextContent/utils.d.ts +4 -0
  148. package/build/cjs/lib/kit/components/Inputs/TextLink/TextLink.d.ts +2 -0
  149. package/build/cjs/lib/kit/components/Inputs/TextLink/index.d.ts +1 -0
  150. package/build/cjs/lib/kit/components/Inputs/TimeRangeSelector/TimeRangeSelector.d.ts +2 -0
  151. package/build/cjs/lib/kit/components/Inputs/TimeRangeSelector/components/TimeRangeSelect/TimeRangeSelect.d.ts +13 -0
  152. package/build/cjs/lib/kit/components/Inputs/TimeRangeSelector/components/TimeRangeSelect/index.d.ts +1 -0
  153. package/build/cjs/lib/kit/components/Inputs/TimeRangeSelector/components/index.d.ts +1 -0
  154. package/build/cjs/lib/kit/components/Inputs/TimeRangeSelector/index.d.ts +1 -0
  155. package/build/cjs/lib/kit/components/Inputs/TimeRangeSelector/utils.d.ts +16 -0
  156. package/build/cjs/lib/kit/components/Inputs/index.d.ts +26 -0
  157. package/build/cjs/lib/kit/components/Layouts/Accordeon/Accordeon.d.ts +8 -0
  158. package/build/cjs/lib/kit/components/Layouts/Accordeon/index.d.ts +1 -0
  159. package/build/cjs/lib/kit/components/Layouts/AccordeonCard/AccordeonCardForm.d.ts +3 -0
  160. package/build/cjs/lib/kit/components/Layouts/AccordeonCard/index.d.ts +1 -0
  161. package/build/cjs/lib/kit/components/Layouts/CardAccordeon.d.ts +3 -0
  162. package/build/cjs/lib/kit/components/Layouts/CardSection.d.ts +3 -0
  163. package/build/cjs/lib/kit/components/Layouts/Column/Column.d.ts +3 -0
  164. package/build/cjs/lib/kit/components/Layouts/Column/index.d.ts +1 -0
  165. package/build/cjs/lib/kit/components/Layouts/Row/Row.d.ts +4 -0
  166. package/build/cjs/lib/kit/components/Layouts/Row/index.d.ts +1 -0
  167. package/build/cjs/lib/kit/components/Layouts/Section/Section.d.ts +15 -0
  168. package/build/cjs/lib/kit/components/Layouts/Section/index.d.ts +1 -0
  169. package/build/cjs/lib/kit/components/Layouts/TableCell/TableCell.d.ts +3 -0
  170. package/build/cjs/lib/kit/components/Layouts/TableCell/index.d.ts +1 -0
  171. package/build/cjs/lib/kit/components/Layouts/Transparent/Transparent.d.ts +3 -0
  172. package/build/cjs/lib/kit/components/Layouts/Transparent/index.d.ts +1 -0
  173. package/build/cjs/lib/kit/components/Layouts/index.d.ts +9 -0
  174. package/build/cjs/lib/kit/components/LazyLoader/LazyLoader.d.ts +6 -0
  175. package/build/cjs/lib/kit/components/LazyLoader/index.d.ts +1 -0
  176. package/build/cjs/lib/kit/components/LongValue/LongValue.d.ts +7 -0
  177. package/build/cjs/lib/kit/components/LongValue/index.d.ts +1 -0
  178. package/build/cjs/lib/kit/components/RemoveButton/RemoveButton.d.ts +7 -0
  179. package/build/cjs/lib/kit/components/RemoveButton/index.d.ts +1 -0
  180. package/build/cjs/lib/kit/components/SimpleVerticalAccordeon/SimpleVerticalAccordeon.d.ts +44 -0
  181. package/build/cjs/lib/kit/components/SimpleVerticalAccordeon/index.d.ts +1 -0
  182. package/build/cjs/lib/kit/components/TogglerCard/TogglerCard.d.ts +11 -0
  183. package/build/cjs/lib/kit/components/TogglerCard/index.d.ts +1 -0
  184. package/build/cjs/lib/kit/components/ViewLayouts/ViewAccordeon/ViewAccordeon.d.ts +8 -0
  185. package/build/cjs/lib/kit/components/ViewLayouts/ViewAccordeon/index.d.ts +1 -0
  186. package/build/cjs/lib/kit/components/ViewLayouts/ViewAccordeonCard/ViewAccordeonCard.d.ts +3 -0
  187. package/build/cjs/lib/kit/components/ViewLayouts/ViewAccordeonCard/index.d.ts +1 -0
  188. package/build/cjs/lib/kit/components/ViewLayouts/ViewCardAccordeon.d.ts +3 -0
  189. package/build/cjs/lib/kit/components/ViewLayouts/ViewCardSection.d.ts +3 -0
  190. package/build/cjs/lib/kit/components/ViewLayouts/ViewColumn/ViewColumn.d.ts +3 -0
  191. package/build/cjs/lib/kit/components/ViewLayouts/ViewColumn/index.d.ts +1 -0
  192. package/build/cjs/lib/kit/components/ViewLayouts/ViewRow/ViewRow.d.ts +3 -0
  193. package/build/cjs/lib/kit/components/ViewLayouts/ViewRow/index.d.ts +1 -0
  194. package/build/cjs/lib/kit/components/ViewLayouts/ViewSection/ViewSection.d.ts +6 -0
  195. package/build/cjs/lib/kit/components/ViewLayouts/ViewSection/index.d.ts +1 -0
  196. package/build/cjs/lib/kit/components/ViewLayouts/ViewTableCell/ViewTableCell.d.ts +3 -0
  197. package/build/cjs/lib/kit/components/ViewLayouts/ViewTableCell/index.d.ts +1 -0
  198. package/build/cjs/lib/kit/components/ViewLayouts/ViewTransparent/ViewTransparent.d.ts +3 -0
  199. package/build/cjs/lib/kit/components/ViewLayouts/ViewTransparent/index.d.ts +1 -0
  200. package/build/cjs/lib/kit/components/ViewLayouts/index.d.ts +9 -0
  201. package/build/cjs/lib/kit/components/Views/ArrayBaseView/ArrayBaseView.d.ts +2 -0
  202. package/build/cjs/lib/kit/components/Views/ArrayBaseView/index.d.ts +1 -0
  203. package/build/cjs/lib/kit/components/Views/BaseView/BaseView.d.ts +3 -0
  204. package/build/cjs/lib/kit/components/Views/BaseView/index.d.ts +1 -0
  205. package/build/cjs/lib/kit/components/Views/CardOneOfView.d.ts +2 -0
  206. package/build/cjs/lib/kit/components/Views/CheckboxGroupView/CheckboxGroupView.d.ts +2 -0
  207. package/build/cjs/lib/kit/components/Views/CheckboxGroupView/index.d.ts +1 -0
  208. package/build/cjs/lib/kit/components/Views/ColorPickerView/ColorPickerView.d.ts +2 -0
  209. package/build/cjs/lib/kit/components/Views/ColorPickerView/index.d.ts +1 -0
  210. package/build/cjs/lib/kit/components/Views/DateView/DateView.d.ts +3 -0
  211. package/build/cjs/lib/kit/components/Views/DateView/index.d.ts +1 -0
  212. package/build/cjs/lib/kit/components/Views/FileInputView/FileInputView.d.ts +3 -0
  213. package/build/cjs/lib/kit/components/Views/FileInputView/index.d.ts +1 -0
  214. package/build/cjs/lib/kit/components/Views/MonacoInputView/MonacoBaseView.d.ts +3 -0
  215. package/build/cjs/lib/kit/components/Views/MonacoInputView/MonacoViewDialog.d.ts +15 -0
  216. package/build/cjs/lib/kit/components/Views/MonacoInputView/index.d.ts +1 -0
  217. package/build/cjs/lib/kit/components/Views/MultiOneOfView/MultiOneOfView.d.ts +7 -0
  218. package/build/cjs/lib/kit/components/Views/MultiOneOfView/index.d.ts +1 -0
  219. package/build/cjs/lib/kit/components/Views/MultiSelectView/MultiSelectView.d.ts +2 -0
  220. package/build/cjs/lib/kit/components/Views/MultiSelectView/index.d.ts +1 -0
  221. package/build/cjs/lib/kit/components/Views/NumberWithScaleView/NumberWithScaleView.d.ts +3 -0
  222. package/build/cjs/lib/kit/components/Views/NumberWithScaleView/index.d.ts +1 -0
  223. package/build/cjs/lib/kit/components/Views/ObjectBaseView/ObjectBaseView.d.ts +7 -0
  224. package/build/cjs/lib/kit/components/Views/ObjectBaseView/index.d.ts +1 -0
  225. package/build/cjs/lib/kit/components/Views/ObjectValueInputView/ObjectValueInputView.d.ts +2 -0
  226. package/build/cjs/lib/kit/components/Views/ObjectValueInputView/index.d.ts +1 -0
  227. package/build/cjs/lib/kit/components/Views/OneOfView/OneOfView.d.ts +7 -0
  228. package/build/cjs/lib/kit/components/Views/OneOfView/index.d.ts +1 -0
  229. package/build/cjs/lib/kit/components/Views/RangeInputPickerView/RangeInputPickerNumberView.d.ts +2 -0
  230. package/build/cjs/lib/kit/components/Views/RangeInputPickerView/RangeInputPickerView.d.ts +2 -0
  231. package/build/cjs/lib/kit/components/Views/RangeInputPickerView/index.d.ts +2 -0
  232. package/build/cjs/lib/kit/components/Views/TableArrayView/TableArrayView.d.ts +2 -0
  233. package/build/cjs/lib/kit/components/Views/TableArrayView/index.d.ts +1 -0
  234. package/build/cjs/lib/kit/components/Views/TextAreaView/TextAreaView.d.ts +2 -0
  235. package/build/cjs/lib/kit/components/Views/TextAreaView/index.d.ts +1 -0
  236. package/build/cjs/lib/kit/components/Views/TextContentView.d.ts +2 -0
  237. package/build/cjs/lib/kit/components/Views/TextLinkView/TextLinkView.d.ts +2 -0
  238. package/build/cjs/lib/kit/components/Views/TextLinkView/index.d.ts +1 -0
  239. package/build/cjs/lib/kit/components/Views/TimeRangeSelectorView/TimeRangeSelectorView.d.ts +2 -0
  240. package/build/cjs/lib/kit/components/Views/TimeRangeSelectorView/index.d.ts +1 -0
  241. package/build/cjs/lib/kit/components/Views/index.d.ts +20 -0
  242. package/build/cjs/lib/kit/components/index.d.ts +14 -0
  243. package/build/cjs/lib/kit/constants/common.d.ts +13 -0
  244. package/build/cjs/lib/kit/constants/config.d.ts +3 -0
  245. package/build/cjs/lib/kit/constants/index.d.ts +2 -0
  246. package/build/cjs/lib/kit/hooks/index.d.ts +2 -0
  247. package/build/cjs/lib/kit/hooks/useErrorChecker.d.ts +8 -0
  248. package/build/cjs/lib/kit/hooks/useOneOf/index.d.ts +1 -0
  249. package/build/cjs/lib/kit/hooks/useOneOf/useOneOf.d.ts +12 -0
  250. package/build/cjs/lib/kit/i18n/configure.d.ts +12 -0
  251. package/build/cjs/lib/kit/i18n/index.d.ts +2 -0
  252. package/build/cjs/lib/kit/index.d.ts +6 -0
  253. package/build/cjs/lib/kit/utils/bigIntMath.d.ts +2 -0
  254. package/build/cjs/lib/kit/utils/cn.d.ts +2 -0
  255. package/build/cjs/lib/kit/utils/common.d.ts +6 -0
  256. package/build/cjs/lib/kit/utils/index.d.ts +5 -0
  257. package/build/cjs/lib/kit/utils/objectInline.d.ts +4 -0
  258. package/build/cjs/lib/kit/utils/objectKeys.d.ts +4 -0
  259. package/build/cjs/lib/kit/validators/helpers.d.ts +7 -0
  260. package/build/cjs/lib/kit/validators/index.d.ts +2 -0
  261. package/build/cjs/lib/kit/validators/messages.d.ts +2 -0
  262. package/build/cjs/lib/kit/validators/types.d.ts +20 -0
  263. package/build/cjs/lib/kit/validators/validators.d.ts +42 -0
  264. package/build/cjs/lib/unstable/core/Entity/Entity.d.ts +10 -0
  265. package/build/cjs/lib/unstable/core/Entity/index.d.ts +2 -0
  266. package/build/cjs/lib/unstable/core/Entity/types.d.ts +27 -0
  267. package/build/cjs/lib/unstable/core/Entity/utils.d.ts +3 -0
  268. package/build/cjs/lib/unstable/core/SchemaRenderer/SchemaRenderer.d.ts +5 -0
  269. package/build/cjs/lib/unstable/core/SchemaRenderer/index.d.ts +1 -0
  270. package/build/cjs/lib/unstable/core/constants.d.ts +22 -0
  271. package/build/cjs/lib/unstable/core/index.d.ts +5 -0
  272. package/build/cjs/lib/unstable/core/types/components.d.ts +29 -0
  273. package/build/cjs/lib/unstable/core/types/config.d.ts +36 -0
  274. package/build/cjs/lib/unstable/core/types/helpers.d.ts +18 -0
  275. package/build/cjs/lib/unstable/core/types/index.d.ts +5 -0
  276. package/build/cjs/lib/unstable/core/types/schema.d.ts +1186 -0
  277. package/build/cjs/lib/unstable/core/types/validation.d.ts +39 -0
  278. package/build/cjs/lib/unstable/core/types/values.d.ts +4 -0
  279. package/build/cjs/lib/unstable/core/useSchemaRenderer/constants.d.ts +1 -0
  280. package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/index.d.ts +2 -0
  281. package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/useEntitiesState.d.ts +7 -0
  282. package/build/cjs/lib/unstable/core/useSchemaRenderer/hooks/useSchemaRendererMutators.d.ts +10 -0
  283. package/build/cjs/lib/unstable/core/useSchemaRenderer/index.d.ts +3 -0
  284. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/async-validation.d.ts +3 -0
  285. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/index.d.ts +2 -0
  286. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/async-validation/types.d.ts +34 -0
  287. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/external-errors.d.ts +3 -0
  288. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/index.d.ts +2 -0
  289. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/external-errors/types.d.ts +25 -0
  290. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/index.d.ts +13 -0
  291. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/index.d.ts +2 -0
  292. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/schema-mutators.d.ts +3 -0
  293. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/schema-mutators/types.d.ts +26 -0
  294. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/index.d.ts +2 -0
  295. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/trigger-fields.d.ts +2 -0
  296. package/build/cjs/lib/unstable/core/useSchemaRenderer/mutators/trigger-fields/types.d.ts +6 -0
  297. package/build/cjs/lib/unstable/core/useSchemaRenderer/types.d.ts +22 -0
  298. package/build/cjs/lib/unstable/core/useSchemaRenderer/useSchemaRenderer.d.ts +37 -0
  299. package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/common.d.ts +1 -0
  300. package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-ajv-validate.d.ts +11 -0
  301. package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/get-validate.d.ts +14 -0
  302. package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/index.d.ts +2 -0
  303. package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-ajv-error.d.ts +10 -0
  304. package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-ajv-validate-errors.d.ts +20 -0
  305. package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-entity-parameters-error.d.ts +15 -0
  306. package/build/cjs/lib/unstable/core/useSchemaRenderer/utils/process-errors-state.d.ts +12 -0
  307. package/build/cjs/lib/unstable/core/utils/common.d.ts +49 -0
  308. package/build/cjs/lib/unstable/core/utils/index.d.ts +1 -0
  309. package/build/cjs/lib/unstable/kit/Accordeon.d.ts +3 -0
  310. package/build/cjs/lib/unstable/kit/Any.d.ts +2 -0
  311. package/build/cjs/lib/unstable/kit/ArrayBase.d.ts +2 -0
  312. package/build/cjs/lib/unstable/kit/MultiSelect.d.ts +6 -0
  313. package/build/cjs/lib/unstable/kit/ObjectBase.d.ts +7 -0
  314. package/build/cjs/lib/unstable/kit/Row.d.ts +10 -0
  315. package/build/cjs/lib/unstable/kit/Text.d.ts +6 -0
  316. package/build/cjs/lib/unstable/kit/components/ArrayRemoveButton/ArrayRemoveButton.d.ts +5 -0
  317. package/build/cjs/lib/unstable/kit/components/ArrayRemoveButton/index.d.ts +1 -0
  318. package/build/cjs/lib/unstable/kit/components/ControlError/ControlError.d.ts +8 -0
  319. package/build/cjs/lib/unstable/kit/components/ControlError/index.d.ts +1 -0
  320. package/build/cjs/lib/unstable/kit/components/HTMLContent/HTMLContent.d.ts +6 -0
  321. package/build/cjs/lib/unstable/kit/components/HTMLContent/index.d.ts +1 -0
  322. package/build/cjs/lib/unstable/kit/components/index.d.ts +3 -0
  323. package/build/cjs/lib/unstable/kit/config.d.ts +95 -0
  324. package/build/cjs/lib/unstable/kit/constants/config.d.ts +112 -0
  325. package/build/cjs/lib/unstable/kit/constants/index.d.ts +1 -0
  326. package/build/cjs/lib/unstable/kit/controls/ArrayBase/ArrayBase.d.ts +8 -0
  327. package/build/cjs/lib/unstable/kit/controls/ArrayBase/index.d.ts +1 -0
  328. package/build/cjs/lib/unstable/kit/controls/Checkbox/Checkbox.d.ts +6 -0
  329. package/build/cjs/lib/unstable/kit/controls/Checkbox/index.d.ts +1 -0
  330. package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/CheckboxGroup.d.ts +9 -0
  331. package/build/cjs/lib/unstable/kit/controls/CheckboxGroup/index.d.ts +1 -0
  332. package/build/cjs/lib/unstable/kit/controls/ColorPicker/ColorPicker.d.ts +6 -0
  333. package/build/cjs/lib/unstable/kit/controls/ColorPicker/index.d.ts +1 -0
  334. package/build/cjs/lib/unstable/kit/controls/DateInput/DateInput.d.ts +8 -0
  335. package/build/cjs/lib/unstable/kit/controls/DateInput/index.d.ts +1 -0
  336. package/build/cjs/lib/unstable/kit/controls/MultiSelect/MultiSelect.d.ts +8 -0
  337. package/build/cjs/lib/unstable/kit/controls/MultiSelect/index.d.ts +1 -0
  338. package/build/cjs/lib/unstable/kit/controls/NumberBase/Number.d.ts +6 -0
  339. package/build/cjs/lib/unstable/kit/controls/NumberBase/index.d.ts +1 -0
  340. package/build/cjs/lib/unstable/kit/controls/ObjectBase/ObjectBase.d.ts +8 -0
  341. package/build/cjs/lib/unstable/kit/controls/ObjectBase/index.d.ts +1 -0
  342. package/build/cjs/lib/unstable/kit/controls/Password/Password.d.ts +6 -0
  343. package/build/cjs/lib/unstable/kit/controls/Password/index.d.ts +1 -0
  344. package/build/cjs/lib/unstable/kit/controls/RadioGroup/RadioGroup.d.ts +8 -0
  345. package/build/cjs/lib/unstable/kit/controls/RadioGroup/index.d.ts +1 -0
  346. package/build/cjs/lib/unstable/kit/controls/RangeSlider/RangeSlider.d.ts +7 -0
  347. package/build/cjs/lib/unstable/kit/controls/RangeSlider/index.d.ts +1 -0
  348. package/build/cjs/lib/unstable/kit/controls/Select/Select.d.ts +9 -0
  349. package/build/cjs/lib/unstable/kit/controls/Select/index.d.ts +1 -0
  350. package/build/cjs/lib/unstable/kit/controls/Slider/Slider.d.ts +6 -0
  351. package/build/cjs/lib/unstable/kit/controls/Slider/index.d.ts +1 -0
  352. package/build/cjs/lib/unstable/kit/controls/StringBase/StringBase.d.ts +6 -0
  353. package/build/cjs/lib/unstable/kit/controls/StringBase/index.d.ts +1 -0
  354. package/build/cjs/lib/unstable/kit/controls/Switch/Switch.d.ts +6 -0
  355. package/build/cjs/lib/unstable/kit/controls/Switch/index.d.ts +1 -0
  356. package/build/cjs/lib/unstable/kit/controls/TextArea/TextArea.d.ts +6 -0
  357. package/build/cjs/lib/unstable/kit/controls/TextArea/index.d.ts +1 -0
  358. package/build/cjs/lib/unstable/kit/controls/index.d.ts +16 -0
  359. package/build/cjs/lib/unstable/kit/utils/cn.d.ts +1 -0
  360. package/build/cjs/lib/unstable/kit/utils/common.d.ts +7 -0
  361. package/build/cjs/lib/unstable/kit/utils/index.d.ts +2 -0
  362. package/build/cjs/lib/unstable/kit/wrappers/Row/Row.d.ts +6 -0
  363. package/build/cjs/lib/unstable/kit/wrappers/Row/index.d.ts +1 -0
  364. package/build/cjs/lib/unstable/kit/wrappers/Transparent/Transparent.d.ts +3 -0
  365. package/build/cjs/lib/unstable/kit/wrappers/Transparent/index.d.ts +1 -0
  366. package/build/cjs/lib/unstable/kit/wrappers/index.d.ts +2 -0
  367. package/build/cjs/unstable.d.ts +4 -0
  368. package/package.json +1 -1
@@ -0,0 +1 @@
1
+ export * from './Checkbox';
@@ -0,0 +1,5 @@
1
+ import { type CheckboxProps as CheckboxBaseProps } from '@gravity-ui/uikit';
2
+ import type { ArrayInput } from '../../../../core';
3
+ export interface CheckboxGroupProps extends Omit<CheckboxBaseProps, 'checked' | 'onChange' | 'onBlur' | 'onFocus' | 'disabled' | 'qa' | 'content'> {
4
+ }
5
+ export declare const CheckboxGroup: ArrayInput<CheckboxGroupProps>;
@@ -0,0 +1 @@
1
+ export * from './CheckboxGroup';
@@ -0,0 +1,21 @@
1
+ import React from 'react';
2
+ import { unstable_ColorPicker as ColorPickerBase } from '@gravity-ui/uikit/unstable';
3
+ import type { StringInput } from '../../../../core';
4
+ /**
5
+ * Props forwarded to the underlying `unstable_ColorPicker` from `@gravity-ui/uikit/unstable`.
6
+ *
7
+ * NOTE: The underlying uikit component is marked as **unstable** — its API and behavior
8
+ * may change in future uikit releases without following semver. Use with that in mind.
9
+ *
10
+ * @see https://preview.gravity-ui.com/uikit/?path=/docs/lab-colorpicker--docs
11
+ */
12
+ export interface ColorPickerProps extends Omit<React.ComponentProps<typeof ColorPickerBase>, 'value' | 'onUpdate' | 'disabled'> {
13
+ }
14
+ /**
15
+ * Dynamic-forms input that renders a color picker for `StringSpec`.
16
+ *
17
+ * Wraps `unstable_ColorPicker` from `@gravity-ui/uikit/unstable`. Because the underlying
18
+ * uikit component is **unstable**, the visual appearance, available `inputProps`, and
19
+ * supported color formats may change between uikit releases.
20
+ */
21
+ export declare const ColorPicker: StringInput<ColorPickerProps>;
@@ -0,0 +1 @@
1
+ export * from './ColorPicker';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { DatePickerProps } from '@gravity-ui/date-components';
3
+ import type { StringInputProps } from '../../../../core';
4
+ export declare const DEFAULT_DATE_FORMAT = "DD.MM.YYYY HH:mm";
5
+ export interface DateProps extends Omit<DatePickerProps, 'value' | 'disabled' | 'placeholder' | 'qa'> {
6
+ }
7
+ export declare const DateInput: React.FC<StringInputProps<DateProps>>;
8
+ export default DateInput;
@@ -0,0 +1 @@
1
+ export * from './DateInput';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { StringInputProps } from '../../../../core';
3
+ export declare const FileInput: React.FC<StringInputProps>;
@@ -0,0 +1 @@
1
+ export * from './FileInput';
@@ -0,0 +1,2 @@
1
+ import type { ReadAsMethod } from '../../../../core';
2
+ export declare function readFile(file: Blob, readAsMethod?: ReadAsMethod): Promise<string | ArrayBuffer | null>;
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import { type TextProps } from '@gravity-ui/uikit';
3
+ interface MonacoHeaderProps {
4
+ language: string;
5
+ dialogButton?: React.ReactNode;
6
+ headerIconSize: number;
7
+ headerIconIndent: number;
8
+ headerTitleVariant: TextProps['variant'];
9
+ }
10
+ export declare const MonacoHeader: React.FC<MonacoHeaderProps>;
11
+ export {};
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import type { MonacoEditorProps } from 'react-monaco-editor/lib/types';
3
+ import type { StringInputProps } from '../../../../core/';
4
+ export interface MonacoInputBaseProps extends StringInputProps {
5
+ MonacoComponent?: React.ComponentType<MonacoEditorProps>;
6
+ withoutDialog?: boolean;
7
+ }
8
+ export declare const MonacoInputBase: React.FC<MonacoInputBaseProps>;
9
+ export declare const MonacoInput: React.FC<MonacoInputBaseProps>;
@@ -0,0 +1,20 @@
1
+ import React from 'react';
2
+ import { type TextProps } from '@gravity-ui/uikit';
3
+ import type { MonacoEditorProps } from 'react-monaco-editor/lib/types';
4
+ interface MonacoInputDialogProps {
5
+ name: string;
6
+ visible: boolean;
7
+ value: string;
8
+ language: string;
9
+ title: string | undefined;
10
+ fontSize: number | undefined;
11
+ onChange: (value: string) => void;
12
+ onClose: () => void;
13
+ changeMonacoValue: (value: string) => void;
14
+ MonacoComponent?: React.ComponentType<MonacoEditorProps>;
15
+ headerIconSize: number;
16
+ headerIconIndent: number;
17
+ headerTitleVariant: TextProps['variant'];
18
+ }
19
+ export declare const MonacoInputDialog: React.FC<MonacoInputDialogProps>;
20
+ export {};
@@ -0,0 +1 @@
1
+ export * from './MonacoInputBase';
@@ -0,0 +1,2 @@
1
+ import type { monaco } from 'react-monaco-editor';
2
+ export declare const useMonacoOptions: (fontSize: number | undefined, readOnly: boolean) => monaco.editor.IStandaloneEditorConstructionOptions;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { ObjectIndependentInput, ObjectIndependentInputProps } from '../../../../core';
3
+ export interface MultiOneOfProps extends ObjectIndependentInputProps {
4
+ withoutIndent?: boolean;
5
+ }
6
+ export declare const MultiOneOf: React.FC<MultiOneOfProps>;
7
+ export declare const MultiOneOfFlat: ObjectIndependentInput;
@@ -0,0 +1 @@
1
+ export * from './MultiOneOf';
@@ -0,0 +1,6 @@
1
+ import type { SelectProps as SelectBaseProps } from '@gravity-ui/uikit';
2
+ import type { ArrayInput } from '../../../../core';
3
+ export interface MultiSelectProps extends Omit<SelectBaseProps, 'onUpdate' | 'value' | 'onOpenChange' | 'disabled' | 'placeholder' | 'filterPlaceholder' | 'multiple' | 'qa'> {
4
+ withCustomOptions?: boolean;
5
+ }
6
+ export declare const MultiSelect: ArrayInput<MultiSelectProps>;
@@ -0,0 +1 @@
1
+ export * from './MultiSelect';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import type { NumberInputProps as NumberInputBaseProps } from '@gravity-ui/uikit';
3
+ import type { NumberInputProps } from '../../../../core';
4
+ export interface NumberProps extends Omit<NumberInputBaseProps, 'value' | 'onBlur' | 'onFocus' | 'onUpdate' | 'disabled' | 'placeholder' | 'qa'> {
5
+ }
6
+ export declare const NumInput: ({ name, input: { value, onBlur, onChange, onFocus }, spec, inputProps, }: NumberInputProps<NumberProps>) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './Number';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { StringInputProps } from '../../../../core';
3
+ export declare const NumberWithScale: React.FC<StringInputProps>;
@@ -0,0 +1 @@
1
+ export * from './NumberWithScale';
@@ -0,0 +1,5 @@
1
+ import type { StringSpec } from '../../../../core';
2
+ export declare const useInitial: (value: string, spec: StringSpec, deps?: any[]) => {
3
+ initialType: string;
4
+ initialValue: string;
5
+ };
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { ObjectIndependentInput, ObjectIndependentInputProps } from '../../../../core';
3
+ export interface ObjectBaseProps extends ObjectIndependentInputProps {
4
+ inline?: boolean;
5
+ }
6
+ export declare const ObjectBase: React.FC<ObjectBaseProps>;
7
+ export declare const ObjectInline: ObjectIndependentInput;
@@ -0,0 +1 @@
1
+ export * from './ObjectBase';
@@ -0,0 +1,2 @@
1
+ import type { ObjectIndependentInput } from '../../../../core';
2
+ export declare const ObjectValueInput: ObjectIndependentInput;
@@ -0,0 +1 @@
1
+ export * from './ObjectValueInput';
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { ObjectIndependentInput, ObjectIndependentInputProps } from '../../../../core';
3
+ export interface OneOfProps extends ObjectIndependentInputProps {
4
+ withoutIndent?: boolean;
5
+ }
6
+ export declare const OneOf: React.FC<OneOfProps>;
7
+ export declare const OneOfFlat: ObjectIndependentInput;
@@ -0,0 +1 @@
1
+ export * from './OneOf';
@@ -0,0 +1,6 @@
1
+ import { type RadioGroupProps as RadioGroupBaseProps } from '@gravity-ui/uikit';
2
+ import type { StringInput } from '../../../../core';
3
+ export interface RadioGroupProps extends Omit<RadioGroupBaseProps, 'direction' | 'onChange' | 'onBlur' | 'onFocus' | 'disabled' | 'qa' | 'content'> {
4
+ withCustomOptions?: boolean;
5
+ }
6
+ export declare const RadioGroup: StringInput<RadioGroupProps>;
@@ -0,0 +1 @@
1
+ export * from './RadioGroup';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { ObjectInputProps } from '../../../../core';
3
+ import type { RangeInputPickerInputProps } from './types';
4
+ export declare const RangeInputPicker: (props: ObjectInputProps<RangeInputPickerInputProps>) => React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { NumberInputProps } from '../../../../core';
3
+ import type { RangeInputPickerInputProps } from './types';
4
+ export declare const RangeInputPickerNumber: ({ name, input: { value, onBlur, onChange, onFocus }, spec, }: NumberInputProps<RangeInputPickerInputProps>) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ export * from './RangeInputPicker';
2
+ export * from './RangeInputPickerNumber';
3
+ export * from './types';
@@ -0,0 +1,15 @@
1
+ export interface RangeInputPickerInputProps {
2
+ sliderParams?: {
3
+ min: number;
4
+ max: number;
5
+ step?: number;
6
+ marks?: number | number[];
7
+ };
8
+ showSlider?: boolean;
9
+ showInputs?: boolean;
10
+ separator?: string;
11
+ }
12
+ export interface RangeInputPickerValue {
13
+ from?: number;
14
+ to?: number;
15
+ }
@@ -0,0 +1,2 @@
1
+ import type { ObjectIndependentInput } from '../../../../core';
2
+ export declare const Secret: ObjectIndependentInput;
@@ -0,0 +1 @@
1
+ export * from './Secret';
@@ -0,0 +1,6 @@
1
+ import type { SelectProps as SelectBaseProps } from '@gravity-ui/uikit';
2
+ import type { StringInput } from '../../../../core';
3
+ export interface SelectProps extends Omit<SelectBaseProps, 'onUpdate' | 'value' | 'onOpenChange' | 'disabled' | 'placeholder' | 'filterPlaceholder' | 'multiple' | 'qa'> {
4
+ withCustomOptions?: boolean;
5
+ }
6
+ export declare const Select: StringInput<SelectProps>;
@@ -0,0 +1 @@
1
+ export * from './Select';
@@ -0,0 +1,2 @@
1
+ import type { BooleanInput } from '../../../../core';
2
+ export declare const Switch: BooleanInput;
@@ -0,0 +1 @@
1
+ export * from './Switch';
@@ -0,0 +1,2 @@
1
+ import type { ArrayInput } from '../../../../core';
2
+ export declare const TableArrayInput: ArrayInput;
@@ -0,0 +1 @@
1
+ export * from './TableArrayInput';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import type { TextInputProps as TextInputBaseProps } from '@gravity-ui/uikit';
3
+ import type { NumberInputProps, StringInputProps } from '../../../../core';
4
+ export interface TextProps extends Omit<TextInputBaseProps, 'value' | 'onBlur' | 'onFocus' | 'onUpdate' | 'disabled' | 'placeholder' | 'qa'> {
5
+ }
6
+ export declare const Text: <T extends NumberInputProps<TextProps> | StringInputProps<TextProps>>({ name, input: { value, onBlur, onChange, onFocus }, spec, inputProps, }: T) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './Text';
@@ -0,0 +1,5 @@
1
+ import type { TextAreaProps as TextAreaBaseProps } from '@gravity-ui/uikit';
2
+ import type { StringInput } from '../../../../core';
3
+ export interface TextAreaProps extends Omit<TextAreaBaseProps, 'value' | 'onBlur' | 'onFocus' | 'onUpdate' | 'disabled' | 'placeholder' | 'qa'> {
4
+ }
5
+ export declare const TextArea: StringInput<TextAreaProps>;
@@ -0,0 +1 @@
1
+ export * from './TextArea';
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import type { StringIndependentInput, StringSpec } from '../../../../core';
3
+ export interface TextContentComponentProps {
4
+ spec: StringSpec;
5
+ value?: string;
6
+ Layout?: React.FC<{
7
+ spec: StringSpec;
8
+ children: React.ReactElement;
9
+ }>;
10
+ }
11
+ export declare const TextContentComponent: React.FC<TextContentComponentProps>;
12
+ export declare const TextContent: StringIndependentInput;
@@ -0,0 +1 @@
1
+ export * from './TextContent';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { AlertProps } from '@gravity-ui/uikit';
3
+ export declare const loadIcon: (name: string) => React.LazyExoticComponent<React.ComponentType<any>>;
4
+ export declare const isAlertView: (view: unknown) => view is AlertProps["view"];
@@ -0,0 +1,2 @@
1
+ import type { ObjectIndependentInput } from '../../../../core';
2
+ export declare const TextLink: ObjectIndependentInput;
@@ -0,0 +1 @@
1
+ export * from './TextLink';
@@ -0,0 +1,2 @@
1
+ import type { ObjectIndependentInput } from '../../../../core';
2
+ export declare const TimeRangeSelector: ObjectIndependentInput;
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import { type SelectOption } from '@gravity-ui/uikit';
3
+ import type { FieldObjectValue, FieldValue, IndependentInputProps, ObjectSpec, StringSpec } from '../../../../../../core';
4
+ interface TimeRangeSelectProps {
5
+ spec: StringSpec<any, undefined, undefined>;
6
+ name: string;
7
+ options: SelectOption<string>[];
8
+ value?: FieldValue;
9
+ handleChange: (value: string[]) => void;
10
+ props: IndependentInputProps<FieldObjectValue, undefined, undefined, ObjectSpec<undefined, undefined, undefined>>;
11
+ }
12
+ export declare const TimeRangeSelect: React.FC<TimeRangeSelectProps>;
13
+ export {};
@@ -0,0 +1 @@
1
+ export * from './TimeRangeSelect';
@@ -0,0 +1 @@
1
+ export * from './TimeRangeSelector';
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ export declare const filterTimeArray: (times: {
3
+ id: string;
4
+ value: string;
5
+ content: string | React.JSX.Element;
6
+ key: string;
7
+ }[], cutoff: string, direction: "greater" | "less") => {
8
+ content: string | React.JSX.Element;
9
+ disabled: boolean;
10
+ id: string;
11
+ value: string;
12
+ key: string;
13
+ }[];
14
+ export declare const validateArray: (arr: {
15
+ value: string;
16
+ }[]) => boolean;
@@ -0,0 +1,26 @@
1
+ export * from './ArrayBase';
2
+ export * from './CardOneOf';
3
+ export * from './Checkbox';
4
+ export * from './CheckboxGroup';
5
+ export * from './FileInput';
6
+ export * from './DateInput';
7
+ export * from './ColorPicker';
8
+ export * from './MonacoInput';
9
+ export * from './MultiOneOf';
10
+ export * from './MultiSelect';
11
+ export * from './NumberWithScale';
12
+ export * from './ObjectBase';
13
+ export * from './ObjectValueInput';
14
+ export * from './OneOf';
15
+ export * from './RadioGroup';
16
+ export * from './RangeInputPicker';
17
+ export * from './Secret';
18
+ export * from './Select';
19
+ export * from './Switch';
20
+ export * from './TableArrayInput';
21
+ export * from './Text';
22
+ export * from './TextArea';
23
+ export * from './TextContent';
24
+ export * from './TextLink';
25
+ export * from './TimeRangeSelector';
26
+ export * from './Number';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { TextProps } from '@gravity-ui/uikit';
3
+ import type { ArrayLayoutProps, ObjectLayoutProps } from '../../../../core';
4
+ interface AccordeonLayoutProps {
5
+ variantTitle?: TextProps['variant'];
6
+ }
7
+ export declare const Accordeon: <T extends ArrayLayoutProps<Record<string, any> | undefined, AccordeonLayoutProps | undefined> | ObjectLayoutProps<Record<string, any> | undefined, AccordeonLayoutProps | undefined>>({ name, spec, input, meta, children, }: T) => React.JSX.Element;
8
+ export {};
@@ -0,0 +1 @@
1
+ export * from './Accordeon';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { ArrayLayoutProps, ObjectLayoutProps } from '../../../../core';
3
+ export declare const AccordeonCardForm: <T extends ArrayLayoutProps | ObjectLayoutProps>({ name, spec, input, children, meta, }: T) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './AccordeonCardForm';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { FieldValue, LayoutProps, Spec } from '../../../core';
3
+ export declare const CardAccordeon: <T extends FieldValue, S extends Spec>({ name, spec, input, meta, children, }: LayoutProps<T, undefined, undefined, S>) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { FieldValue, LayoutProps, Spec } from '../../../core';
3
+ export declare const CardSection: <T extends FieldValue, S extends Spec>({ name, spec, input, meta, children, }: LayoutProps<T, undefined, undefined, S>) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { FieldValue, LayoutProps, Spec } from '../../../../core';
3
+ export declare const Column: <T extends FieldValue, S extends Spec>(props: LayoutProps<T, undefined, undefined, S>) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './Column';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { FieldValue, LayoutProps, Spec } from '../../../../core';
3
+ export declare const Row: <T extends FieldValue, S extends Spec>(props: LayoutProps<T, undefined, undefined, S>) => React.JSX.Element;
4
+ export declare const RowVerbose: <T extends FieldValue, S extends Spec>(props: LayoutProps<T, undefined, undefined, S>) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './Row';
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import type { FieldValue, FormValue, LayoutProps, Spec, ViewLayoutProps } from '../../../../core';
3
+ interface SectionProps {
4
+ titleSize: 's' | 'm';
5
+ withIndent?: boolean;
6
+ ignoreDescription?: boolean;
7
+ descriptionAsSubtitle?: boolean;
8
+ }
9
+ export declare const Section: <D extends FieldValue, T extends FormValue, S extends Spec>(props: (LayoutProps<D, undefined, undefined, S> | ViewLayoutProps<T, S>) & Pick<SectionProps, "ignoreDescription">) => React.JSX.Element;
10
+ export declare const Section2: <D extends FieldValue, T extends FormValue, S extends Spec>(props: (LayoutProps<D, undefined, undefined, S> | ViewLayoutProps<T, S>) & Pick<SectionProps, "ignoreDescription">) => React.JSX.Element;
11
+ export declare const SectionWithSubtitle: <D extends FieldValue, T extends FormValue, S extends Spec>(props: (LayoutProps<D, undefined, undefined, S> | ViewLayoutProps<T, S>) & Pick<SectionProps, "ignoreDescription">) => React.JSX.Element;
12
+ export declare const SectionWithSubtitle2: <D extends FieldValue, T extends FormValue, S extends Spec>(props: (LayoutProps<D, undefined, undefined, S> | ViewLayoutProps<T, S>) & Pick<SectionProps, "ignoreDescription">) => React.JSX.Element;
13
+ export declare const Group: <D extends FieldValue, T extends FormValue, S extends Spec>(props: (LayoutProps<D, undefined, undefined, S> | ViewLayoutProps<T, S>) & Pick<SectionProps, "ignoreDescription">) => React.JSX.Element;
14
+ export declare const Group2: <D extends FieldValue, T extends FormValue, S extends Spec>(props: (LayoutProps<D, undefined, undefined, S> | ViewLayoutProps<T, S>) & Pick<SectionProps, "ignoreDescription">) => React.JSX.Element;
15
+ export {};
@@ -0,0 +1 @@
1
+ export * from './Section';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { FieldValue, LayoutProps, Spec } from '../../../../core';
3
+ export declare const TableCell: <T extends FieldValue, S extends Spec>({ name, meta, children, }: LayoutProps<T, undefined, undefined, S>) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './TableCell';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { FieldValue, LayoutProps, Spec } from '../../../../core';
3
+ export declare const Transparent: <T extends FieldValue, S extends Spec>({ name, spec, input, meta, children, }: LayoutProps<T, undefined, undefined, S>) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './Transparent';
@@ -0,0 +1,9 @@
1
+ export * from './Accordeon';
2
+ export * from './AccordeonCard';
3
+ export * from './CardAccordeon';
4
+ export * from './CardSection';
5
+ export * from './Row';
6
+ export * from './Column';
7
+ export * from './Section';
8
+ export * from './TableCell';
9
+ export * from './Transparent';
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export type LazyLoaderProps = {
3
+ component: React.LazyExoticComponent<React.ComponentType<any>>;
4
+ initialFallback?: React.JSX.Element;
5
+ };
6
+ export declare const LazyLoader: ({ component, initialFallback, }: LazyLoaderProps) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './LazyLoader';
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { type TextProps } from '@gravity-ui/uikit';
3
+ export interface LongValueProps extends TextProps {
4
+ value?: string | number | boolean;
5
+ onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
6
+ }
7
+ export declare const LongValue: React.FC<LongValueProps>;
@@ -0,0 +1 @@
1
+ export * from './LongValue';
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ export interface RemoveButtonProps {
3
+ name: string;
4
+ onDrop: () => void;
5
+ switcherClassName?: string;
6
+ }
7
+ export declare const RemoveButton: React.FC<RemoveButtonProps>;
@@ -0,0 +1 @@
1
+ export * from './RemoveButton';
@@ -0,0 +1,44 @@
1
+ import React from 'react';
2
+ import type { TextProps } from '@gravity-ui/uikit';
3
+ interface SimpleVerticalAccordeonProps {
4
+ children: React.ReactNode;
5
+ name: string;
6
+ title: string;
7
+ titleSize?: 's' | 'm' | 'l';
8
+ note?: string;
9
+ openTitle?: string;
10
+ open: boolean;
11
+ headerActionsTemplate?: React.ReactNode;
12
+ className?: string;
13
+ contentClassName?: string;
14
+ buttonClassName?: string;
15
+ onOpenChange?: (open: boolean) => void;
16
+ hideInsteadOfDestroy?: boolean;
17
+ withBranchView?: boolean;
18
+ viewLayout?: boolean;
19
+ variantTitle?: TextProps['variant'];
20
+ }
21
+ interface SimpleVerticalAccordeonState {
22
+ open: boolean;
23
+ hidden: boolean;
24
+ isFirstRender: boolean;
25
+ }
26
+ export declare class SimpleVerticalAccordeon extends React.Component<SimpleVerticalAccordeonProps, SimpleVerticalAccordeonState> {
27
+ static defaultProps: {
28
+ titleSize: string;
29
+ open: boolean;
30
+ withBranchView: boolean;
31
+ };
32
+ componentRef: React.RefObject<HTMLDivElement | null>;
33
+ titleRef: React.RefObject<HTMLElement | null>;
34
+ constructor(props: SimpleVerticalAccordeonProps);
35
+ componentDidUpdate(prevProps: Readonly<SimpleVerticalAccordeonProps>): void;
36
+ componentDidMount(): void;
37
+ render(): false | React.JSX.Element | null;
38
+ checkVisibility: () => void;
39
+ private handleClick;
40
+ private getTitle;
41
+ private getCurrentTitleVariant;
42
+ private getTooltip;
43
+ }
44
+ export {};
@@ -0,0 +1 @@
1
+ export * from './SimpleVerticalAccordeon';