@app-studio/web 0.1.0

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 (546) hide show
  1. package/LICENSE +448 -0
  2. package/README.md +50 -0
  3. package/dist/App.d.ts +3 -0
  4. package/dist/components/Button/Button/Button.props.d.ts +77 -0
  5. package/dist/components/Button/Button/Button.state.d.ts +5 -0
  6. package/dist/components/Button/Button/Button.style.d.ts +5 -0
  7. package/dist/components/Button/Button/Button.view.d.ts +4 -0
  8. package/dist/components/Button/Button.d.ts +6 -0
  9. package/dist/components/Button/examples/AutoFocusButton.d.ts +2 -0
  10. package/dist/components/Button/examples/BorderedButtons.d.ts +2 -0
  11. package/dist/components/Button/examples/ColoredButtons.d.ts +2 -0
  12. package/dist/components/Button/examples/DefaultButton.d.ts +2 -0
  13. package/dist/components/Button/examples/DisabledButton.d.ts +2 -0
  14. package/dist/components/Button/examples/IconButtons.d.ts +2 -0
  15. package/dist/components/Button/examples/LoadingButtons.d.ts +2 -0
  16. package/dist/components/Button/examples/ShadowButton.d.ts +2 -0
  17. package/dist/components/Button/examples/SizeButtons.d.ts +2 -0
  18. package/dist/components/Button/examples/VariantButtons.d.ts +2 -0
  19. package/dist/components/Button/examples/index.d.ts +9 -0
  20. package/dist/components/Form/Checkbox/Checkbox/Checkbox.props.d.ts +97 -0
  21. package/dist/components/Form/Checkbox/Checkbox/Checkbox.state.d.ts +8 -0
  22. package/dist/components/Form/Checkbox/Checkbox/Checkbox.style.d.ts +4 -0
  23. package/dist/components/Form/Checkbox/Checkbox/Checkbox.view.d.ts +4 -0
  24. package/dist/components/Form/Checkbox/Checkbox.d.ts +6 -0
  25. package/dist/components/Form/Checkbox/examples/ColorScheme.d.ts +2 -0
  26. package/dist/components/Form/Checkbox/examples/Default.d.ts +2 -0
  27. package/dist/components/Form/Checkbox/examples/DisabledInput.d.ts +2 -0
  28. package/dist/components/Form/Checkbox/examples/ErrorCheckbox.d.ts +2 -0
  29. package/dist/components/Form/Checkbox/examples/FormCheckout.d.ts +2 -0
  30. package/dist/components/Form/Checkbox/examples/IconCheckbox.d.ts +2 -0
  31. package/dist/components/Form/Checkbox/examples/IndeterminateCheckbox.d.ts +2 -0
  32. package/dist/components/Form/Checkbox/examples/ReadOnlyInput.d.ts +2 -0
  33. package/dist/components/Form/Checkbox/examples/Shadow.d.ts +2 -0
  34. package/dist/components/Form/Checkbox/examples/SizeInput.d.ts +2 -0
  35. package/dist/components/Form/Checkbox/examples/StylesInput.d.ts +2 -0
  36. package/dist/components/Form/Checkbox/examples/index.d.ts +11 -0
  37. package/dist/components/Form/CountryPicker/CountryPicker/CountryPicker.props.d.ts +173 -0
  38. package/dist/components/Form/CountryPicker/CountryPicker/CountryPicker.state.d.ts +15 -0
  39. package/dist/components/Form/CountryPicker/CountryPicker/CountryPicker.style.d.ts +3 -0
  40. package/dist/components/Form/CountryPicker/CountryPicker/CountryPicker.view.d.ts +6 -0
  41. package/dist/components/Form/CountryPicker/CountryPicker.d.ts +6 -0
  42. package/dist/components/Form/CountryPicker/examples/Color.d.ts +2 -0
  43. package/dist/components/Form/CountryPicker/examples/Default.d.ts +2 -0
  44. package/dist/components/Form/CountryPicker/examples/Disabled.d.ts +2 -0
  45. package/dist/components/Form/CountryPicker/examples/Error.d.ts +2 -0
  46. package/dist/components/Form/CountryPicker/examples/Form.d.ts +2 -0
  47. package/dist/components/Form/CountryPicker/examples/Formik.d.ts +2 -0
  48. package/dist/components/Form/CountryPicker/examples/HelperText.d.ts +2 -0
  49. package/dist/components/Form/CountryPicker/examples/ReadOnlyInput.d.ts +2 -0
  50. package/dist/components/Form/CountryPicker/examples/Shadow.d.ts +2 -0
  51. package/dist/components/Form/CountryPicker/examples/Shape.d.ts +2 -0
  52. package/dist/components/Form/CountryPicker/examples/SizeInput.d.ts +2 -0
  53. package/dist/components/Form/CountryPicker/examples/StylesInput.d.ts +2 -0
  54. package/dist/components/Form/CountryPicker/examples/Variant.d.ts +2 -0
  55. package/dist/components/Form/CountryPicker/examples/index.d.ts +12 -0
  56. package/dist/components/Form/DatePicker/DatePicker/DatePicker.props.d.ts +103 -0
  57. package/dist/components/Form/DatePicker/DatePicker/DatePicker.state.d.ts +9 -0
  58. package/dist/components/Form/DatePicker/DatePicker/DatePicker.style.d.ts +3 -0
  59. package/dist/components/Form/DatePicker/DatePicker/DatePicker.view.d.ts +4 -0
  60. package/dist/components/Form/DatePicker/DatePicker.d.ts +6 -0
  61. package/dist/components/Form/DatePicker/examples/ColorScheme.d.ts +2 -0
  62. package/dist/components/Form/DatePicker/examples/Default.d.ts +2 -0
  63. package/dist/components/Form/DatePicker/examples/DisabledInput.d.ts +2 -0
  64. package/dist/components/Form/DatePicker/examples/ErrorCheckbox.d.ts +2 -0
  65. package/dist/components/Form/DatePicker/examples/FormCheckout.d.ts +2 -0
  66. package/dist/components/Form/DatePicker/examples/Formik.d.ts +2 -0
  67. package/dist/components/Form/DatePicker/examples/ReadOnlyInput.d.ts +2 -0
  68. package/dist/components/Form/DatePicker/examples/Shadow.d.ts +2 -0
  69. package/dist/components/Form/DatePicker/examples/SizeInput.d.ts +2 -0
  70. package/dist/components/Form/DatePicker/examples/StylesInput.d.ts +2 -0
  71. package/dist/components/Form/DatePicker/examples/helperTextDatePicker.d.ts +2 -0
  72. package/dist/components/Form/DatePicker/examples/index.d.ts +11 -0
  73. package/dist/components/Form/Label/Label/Label.props.d.ts +36 -0
  74. package/dist/components/Form/Label/Label/Label.style.d.ts +2 -0
  75. package/dist/components/Form/Label/Label/Label.type.d.ts +3 -0
  76. package/dist/components/Form/Label/Label/Label.view.d.ts +4 -0
  77. package/dist/components/Form/Label/Label.d.ts +3 -0
  78. package/dist/components/Form/Password/Password/Password.props.d.ts +34 -0
  79. package/dist/components/Form/Password/Password/Password.state.d.ts +5 -0
  80. package/dist/components/Form/Password/Password/Password.view.d.ts +4 -0
  81. package/dist/components/Form/Password/Password.d.ts +6 -0
  82. package/dist/components/Form/Password/example/Default.d.ts +2 -0
  83. package/dist/components/Form/Password/example/DisabledInput.d.ts +2 -0
  84. package/dist/components/Form/Password/example/ErrorInput.d.ts +2 -0
  85. package/dist/components/Form/Password/example/FormikErrorInput.d.ts +2 -0
  86. package/dist/components/Form/Password/example/FormikHelperText.d.ts +2 -0
  87. package/dist/components/Form/Password/example/HelperText.d.ts +2 -0
  88. package/dist/components/Form/Select/Select/Select.props.d.ts +234 -0
  89. package/dist/components/Form/Select/Select/Select.state.d.ts +16 -0
  90. package/dist/components/Form/Select/Select/Select.style.d.ts +4 -0
  91. package/dist/components/Form/Select/Select/Select.view.d.ts +5 -0
  92. package/dist/components/Form/Select/Select.d.ts +6 -0
  93. package/dist/components/Form/Select/examples/Color.d.ts +2 -0
  94. package/dist/components/Form/Select/examples/Default.d.ts +2 -0
  95. package/dist/components/Form/Select/examples/Disabled.d.ts +2 -0
  96. package/dist/components/Form/Select/examples/Error.d.ts +2 -0
  97. package/dist/components/Form/Select/examples/Form.d.ts +2 -0
  98. package/dist/components/Form/Select/examples/Formik.d.ts +2 -0
  99. package/dist/components/Form/Select/examples/HelperText.d.ts +2 -0
  100. package/dist/components/Form/Select/examples/Multiple.d.ts +2 -0
  101. package/dist/components/Form/Select/examples/ReadOnlyInput.d.ts +2 -0
  102. package/dist/components/Form/Select/examples/Shadow.d.ts +2 -0
  103. package/dist/components/Form/Select/examples/SizeInput.d.ts +2 -0
  104. package/dist/components/Form/Select/examples/StylesInput.d.ts +2 -0
  105. package/dist/components/Form/Switch/Switch/Switch.props.d.ts +72 -0
  106. package/dist/components/Form/Switch/Switch/Switch.state.d.ts +8 -0
  107. package/dist/components/Form/Switch/Switch/Switch.style.d.ts +5 -0
  108. package/dist/components/Form/Switch/Switch/Switch.view.d.ts +4 -0
  109. package/dist/components/Form/Switch/Switch.d.ts +3 -0
  110. package/dist/components/Form/Switch/examples/ChildSwitch.d.ts +2 -0
  111. package/dist/components/Form/Switch/examples/ColorScheme.d.ts +2 -0
  112. package/dist/components/Form/Switch/examples/Default.d.ts +2 -0
  113. package/dist/components/Form/Switch/examples/DisabledInput.d.ts +2 -0
  114. package/dist/components/Form/Switch/examples/FormSwitch.d.ts +2 -0
  115. package/dist/components/Form/Switch/examples/Formik.d.ts +2 -0
  116. package/dist/components/Form/Switch/examples/ReadOnlyInput.d.ts +2 -0
  117. package/dist/components/Form/Switch/examples/Shadow.d.ts +2 -0
  118. package/dist/components/Form/Switch/examples/SizeInput.d.ts +2 -0
  119. package/dist/components/Form/Switch/examples/StylesInput.d.ts +2 -0
  120. package/dist/components/Form/TextArea/TextArea/TextArea.props.d.ts +144 -0
  121. package/dist/components/Form/TextArea/TextArea/TextArea.state.d.ts +12 -0
  122. package/dist/components/Form/TextArea/TextArea/TextArea.type.d.ts +11 -0
  123. package/dist/components/Form/TextArea/TextArea/TextArea.view.d.ts +4 -0
  124. package/dist/components/Form/TextArea/TextArea.d.ts +6 -0
  125. package/dist/components/Form/TextArea/examples/ColorScheme.d.ts +2 -0
  126. package/dist/components/Form/TextArea/examples/Default.d.ts +2 -0
  127. package/dist/components/Form/TextArea/examples/DisabledInput.d.ts +2 -0
  128. package/dist/components/Form/TextArea/examples/ErrorInput.d.ts +2 -0
  129. package/dist/components/Form/TextArea/examples/FormikErrorInput.d.ts +2 -0
  130. package/dist/components/Form/TextArea/examples/FormikHelperText.d.ts +2 -0
  131. package/dist/components/Form/TextArea/examples/HelperText.d.ts +2 -0
  132. package/dist/components/Form/TextArea/examples/LabelInput.d.ts +2 -0
  133. package/dist/components/Form/TextArea/examples/MaxRowCol.d.ts +2 -0
  134. package/dist/components/Form/TextArea/examples/Placeholder.d.ts +2 -0
  135. package/dist/components/Form/TextArea/examples/ReadOnlyInput.d.ts +2 -0
  136. package/dist/components/Form/TextArea/examples/ShadowArea.d.ts +2 -0
  137. package/dist/components/Form/TextArea/examples/ShapeInput.d.ts +2 -0
  138. package/dist/components/Form/TextArea/examples/SizeInput.d.ts +2 -0
  139. package/dist/components/Form/TextArea/examples/StylesInput.d.ts +2 -0
  140. package/dist/components/Form/TextArea/examples/VariantsInputs.d.ts +2 -0
  141. package/dist/components/Form/TextArea/examples/index.d.ts +15 -0
  142. package/dist/components/Form/TextField/TextField/TextField.props.d.ts +124 -0
  143. package/dist/components/Form/TextField/TextField/TextField.state.d.ts +12 -0
  144. package/dist/components/Form/TextField/TextField/TextField.view.d.ts +4 -0
  145. package/dist/components/Form/TextField/TextField.d.ts +6 -0
  146. package/dist/components/Form/TextField/examples/ClearInput.d.ts +2 -0
  147. package/dist/components/Form/TextField/examples/ColorScheme.d.ts +2 -0
  148. package/dist/components/Form/TextField/examples/Default.d.ts +2 -0
  149. package/dist/components/Form/TextField/examples/DisabledInput.d.ts +2 -0
  150. package/dist/components/Form/TextField/examples/ErrorInput.d.ts +2 -0
  151. package/dist/components/Form/TextField/examples/FormikErrorInput.d.ts +2 -0
  152. package/dist/components/Form/TextField/examples/FormikHelperText.d.ts +2 -0
  153. package/dist/components/Form/TextField/examples/HelperText.d.ts +2 -0
  154. package/dist/components/Form/TextField/examples/LabelInput.d.ts +2 -0
  155. package/dist/components/Form/TextField/examples/LeftChild.d.ts +2 -0
  156. package/dist/components/Form/TextField/examples/Placeholder.d.ts +2 -0
  157. package/dist/components/Form/TextField/examples/ReadOnlyInput.d.ts +2 -0
  158. package/dist/components/Form/TextField/examples/RightChild.d.ts +2 -0
  159. package/dist/components/Form/TextField/examples/ShapeInput.d.ts +2 -0
  160. package/dist/components/Form/TextField/examples/SizeInput.d.ts +2 -0
  161. package/dist/components/Form/TextField/examples/StylesInput.d.ts +2 -0
  162. package/dist/components/Form/TextField/examples/VariantsInputs.d.ts +2 -0
  163. package/dist/components/Form/TextField/examples/index.d.ts +17 -0
  164. package/dist/components/Layout/Center/Center/Center.props.d.ts +16 -0
  165. package/dist/components/Layout/Center/Center/Center.view.d.ts +4 -0
  166. package/dist/components/Layout/Center/Center.d.ts +3 -0
  167. package/dist/components/Layout/Horizontal/Horizontal/Horizontal.props.d.ts +24 -0
  168. package/dist/components/Layout/Horizontal/Horizontal/Horizontal.view.d.ts +4 -0
  169. package/dist/components/Layout/Horizontal/Horizontal.d.ts +3 -0
  170. package/dist/components/Layout/Horizontal/examples/Default.d.ts +2 -0
  171. package/dist/components/Layout/Horizontal/examples/Justify.d.ts +2 -0
  172. package/dist/components/Layout/Horizontal/examples/Reversed.d.ts +2 -0
  173. package/dist/components/Layout/Horizontal/examples/Wrap.d.ts +2 -0
  174. package/dist/components/Layout/Horizontal/examples/index.d.ts +4 -0
  175. package/dist/components/Layout/Input/FieldContainer/FieldContainer/FieldContainer.props.d.ts +24 -0
  176. package/dist/components/Layout/Input/FieldContainer/FieldContainer.d.ts +3 -0
  177. package/dist/components/Layout/Input/FieldContent/FieldContent/FieldContent.props.d.ts +74 -0
  178. package/dist/components/Layout/Input/FieldContent/FieldContent.d.ts +3 -0
  179. package/dist/components/Layout/Input/FieldIcons/FieldIcons/FieldIcons.props.d.ts +11 -0
  180. package/dist/components/Layout/Input/FieldIcons/FieldIcons.d.ts +3 -0
  181. package/dist/components/Layout/Input/FieldLabel/FieldLabel/FieldLabel.props.d.ts +30 -0
  182. package/dist/components/Layout/Input/FieldLabel/FieldLabel.d.ts +3 -0
  183. package/dist/components/Layout/Input/FieldLayout/FieldLayout/FieldLayout.props.d.ts +28 -0
  184. package/dist/components/Layout/Input/FieldLayout/FieldLayout.d.ts +3 -0
  185. package/dist/components/Layout/Input/FieldWrapper/FieldWrapper.d.ts +3 -0
  186. package/dist/components/Layout/Input/FieldWrapper/FieldWrapper.props.d.ts +11 -0
  187. package/dist/components/Layout/Input/HelperText/HelperText.d.ts +3 -0
  188. package/dist/components/Layout/Input/HelperText/HelperText.props.d.ts +20 -0
  189. package/dist/components/Layout/Input/index.d.ts +7 -0
  190. package/dist/components/Layout/Vertical/Vertical/Vertical.props.d.ts +24 -0
  191. package/dist/components/Layout/Vertical/Vertical/Vertical.type.d.ts +2 -0
  192. package/dist/components/Layout/Vertical/Vertical/Vertical.view.d.ts +4 -0
  193. package/dist/components/Layout/Vertical/Vertical.d.ts +3 -0
  194. package/dist/components/Layout/Vertical/examples/Default.d.ts +2 -0
  195. package/dist/components/Layout/Vertical/examples/Justify.d.ts +2 -0
  196. package/dist/components/Layout/Vertical/examples/Reversed.d.ts +2 -0
  197. package/dist/components/Layout/Vertical/examples/Wrap.d.ts +2 -0
  198. package/dist/components/Layout/Vertical/examples/index.d.ts +5 -0
  199. package/dist/components/Layout/View/View.d.ts +2 -0
  200. package/dist/components/Layout/configs/Input.style.d.ts +16 -0
  201. package/dist/components/Layout/configs/Input.type.d.ts +12 -0
  202. package/dist/components/Link/Link/Link.props.d.ts +47 -0
  203. package/dist/components/Link/Link/Link.state.d.ts +5 -0
  204. package/dist/components/Link/Link/Link.style.d.ts +2 -0
  205. package/dist/components/Link/Link/Link.view.d.ts +4 -0
  206. package/dist/components/Link/Link.d.ts +6 -0
  207. package/dist/components/Link/examples/Default.d.ts +2 -0
  208. package/dist/components/Link/examples/IsExternal.d.ts +2 -0
  209. package/dist/components/Link/examples/Underline.d.ts +2 -0
  210. package/dist/components/Loader/Loader/Loader.props.d.ts +93 -0
  211. package/dist/components/Loader/Loader/Loader.style.d.ts +4 -0
  212. package/dist/components/Loader/Loader/Loader.view.d.ts +4 -0
  213. package/dist/components/Loader/Loader.d.ts +6 -0
  214. package/dist/components/Loader/examples/ColorLoader.d.ts +2 -0
  215. package/dist/components/Loader/examples/DefaultLoader.d.ts +2 -0
  216. package/dist/components/Loader/examples/PositionLoader.d.ts +2 -0
  217. package/dist/components/Loader/examples/SizeLoader.d.ts +2 -0
  218. package/dist/components/Loader/examples/SpeedLoader.d.ts +2 -0
  219. package/dist/components/Loader/examples/TextLoader.d.ts +2 -0
  220. package/dist/components/Loader/examples/VariantLoader.d.ts +2 -0
  221. package/dist/components/Loader/examples/index.d.ts +7 -0
  222. package/dist/components/Modal/Examples/BlurModal.d.ts +2 -0
  223. package/dist/components/Modal/Examples/CloseButtonModal.d.ts +2 -0
  224. package/dist/components/Modal/Examples/DefaultModal.d.ts +2 -0
  225. package/dist/components/Modal/Examples/FullScreenModal.d.ts +2 -0
  226. package/dist/components/Modal/Examples/ModalPosition.d.ts +2 -0
  227. package/dist/components/Modal/Examples/PreventCloseModal.d.ts +2 -0
  228. package/dist/components/Modal/Examples/ScrollModal.d.ts +2 -0
  229. package/dist/components/Modal/Examples/ShadowModal.d.ts +2 -0
  230. package/dist/components/Modal/Examples/VariantModal.d.ts +2 -0
  231. package/dist/components/Modal/Examples/index.d.ts +9 -0
  232. package/dist/components/Modal/Modal/Modal.props.d.ts +178 -0
  233. package/dist/components/Modal/Modal/Modal.style.d.ts +5 -0
  234. package/dist/components/Modal/Modal/Modal.view.d.ts +7 -0
  235. package/dist/components/Modal/Modal.d.ts +6 -0
  236. package/dist/components/Svg/ArrowDown.d.ts +8 -0
  237. package/dist/components/Svg/ArrowUp.d.ts +8 -0
  238. package/dist/components/Svg/Check.d.ts +8 -0
  239. package/dist/components/Svg/Close.d.ts +8 -0
  240. package/dist/components/Svg/CloseEye.d.ts +8 -0
  241. package/dist/components/Svg/DustBin.d.ts +7 -0
  242. package/dist/components/Svg/Edit.d.ts +8 -0
  243. package/dist/components/Svg/ExternalLink.d.ts +8 -0
  244. package/dist/components/Svg/Indeterminate.d.ts +8 -0
  245. package/dist/components/Svg/OpenEye.d.ts +8 -0
  246. package/dist/components/Svg/Profile.d.ts +8 -0
  247. package/dist/components/Svg/RightArrow.d.ts +8 -0
  248. package/dist/components/Svg/index.d.ts +12 -0
  249. package/dist/components/Text/Text/Text.props.d.ts +77 -0
  250. package/dist/components/Text/Text/Text.style.d.ts +2 -0
  251. package/dist/components/Text/Text/Text.view.d.ts +4 -0
  252. package/dist/components/Text/Text.d.ts +6 -0
  253. package/dist/components/Wrapper.d.ts +6 -0
  254. package/dist/components/index.d.ts +18 -0
  255. package/dist/index.d.ts +1 -0
  256. package/dist/index.js +8 -0
  257. package/dist/web.cjs.development.js +27 -0
  258. package/dist/web.cjs.development.js.map +1 -0
  259. package/dist/web.cjs.production.min.js +2 -0
  260. package/dist/web.cjs.production.min.js.map +1 -0
  261. package/dist/web.esm.js +23 -0
  262. package/dist/web.esm.js.map +1 -0
  263. package/package.json +153 -0
  264. package/src/components/Button/Button/Button.props.ts +79 -0
  265. package/src/components/Button/Button/Button.state.ts +7 -0
  266. package/src/components/Button/Button/Button.style.ts +95 -0
  267. package/src/components/Button/Button/Button.type.d.ts +11 -0
  268. package/src/components/Button/Button/Button.view.tsx +116 -0
  269. package/src/components/Button/Button.md +165 -0
  270. package/src/components/Button/Button.tsx +24 -0
  271. package/src/components/Button/examples/AutoFocusButton.tsx +13 -0
  272. package/src/components/Button/examples/BorderedButtons.tsx +14 -0
  273. package/src/components/Button/examples/ColoredButtons.tsx +12 -0
  274. package/src/components/Button/examples/DefaultButton.tsx +4 -0
  275. package/src/components/Button/examples/DisabledButton.tsx +13 -0
  276. package/src/components/Button/examples/IconButtons.tsx +23 -0
  277. package/src/components/Button/examples/LoadingButtons.tsx +28 -0
  278. package/src/components/Button/examples/ShadowButton.tsx +6 -0
  279. package/src/components/Button/examples/SizeButtons.tsx +16 -0
  280. package/src/components/Button/examples/VariantButtons.tsx +20 -0
  281. package/src/components/Button/examples/index.ts +9 -0
  282. package/src/components/Form/Checkbox/Checkbox/Checkbox.props.ts +118 -0
  283. package/src/components/Form/Checkbox/Checkbox/Checkbox.state.ts +15 -0
  284. package/src/components/Form/Checkbox/Checkbox/Checkbox.style.ts +29 -0
  285. package/src/components/Form/Checkbox/Checkbox/Checkbox.type.d.ts +8 -0
  286. package/src/components/Form/Checkbox/Checkbox/Checkbox.view.tsx +98 -0
  287. package/src/components/Form/Checkbox/Checkbox.md +128 -0
  288. package/src/components/Form/Checkbox/Checkbox.tsx +15 -0
  289. package/src/components/Form/Checkbox/examples/ColorScheme.tsx +12 -0
  290. package/src/components/Form/Checkbox/examples/Default.tsx +5 -0
  291. package/src/components/Form/Checkbox/examples/DisabledInput.tsx +5 -0
  292. package/src/components/Form/Checkbox/examples/ErrorCheckbox.tsx +5 -0
  293. package/src/components/Form/Checkbox/examples/FormCheckout.tsx +46 -0
  294. package/src/components/Form/Checkbox/examples/IconCheckbox.tsx +8 -0
  295. package/src/components/Form/Checkbox/examples/IndeterminateCheckbox.tsx +5 -0
  296. package/src/components/Form/Checkbox/examples/ReadOnlyInput.tsx +5 -0
  297. package/src/components/Form/Checkbox/examples/Shadow.tsx +11 -0
  298. package/src/components/Form/Checkbox/examples/SizeInput.tsx +18 -0
  299. package/src/components/Form/Checkbox/examples/StylesInput.tsx +22 -0
  300. package/src/components/Form/Checkbox/examples/index.ts +11 -0
  301. package/src/components/Form/CountryPicker/CountryPicker/CountryPicker.props.ts +187 -0
  302. package/src/components/Form/CountryPicker/CountryPicker/CountryPicker.state.ts +28 -0
  303. package/src/components/Form/CountryPicker/CountryPicker/CountryPicker.style.ts +17 -0
  304. package/src/components/Form/CountryPicker/CountryPicker/CountryPicker.type.d.ts +22 -0
  305. package/src/components/Form/CountryPicker/CountryPicker/CountryPicker.view.tsx +234 -0
  306. package/src/components/Form/CountryPicker/CountryPicker.md +206 -0
  307. package/src/components/Form/CountryPicker/CountryPicker.tsx +16 -0
  308. package/src/components/Form/CountryPicker/countries.json +1453 -0
  309. package/src/components/Form/CountryPicker/examples/Color.tsx +12 -0
  310. package/src/components/Form/CountryPicker/examples/Default.tsx +4 -0
  311. package/src/components/Form/CountryPicker/examples/Disabled.tsx +5 -0
  312. package/src/components/Form/CountryPicker/examples/Error.tsx +4 -0
  313. package/src/components/Form/CountryPicker/examples/Form.tsx +23 -0
  314. package/src/components/Form/CountryPicker/examples/Formik.tsx +39 -0
  315. package/src/components/Form/CountryPicker/examples/HelperText.tsx +5 -0
  316. package/src/components/Form/CountryPicker/examples/ReadOnlyInput.tsx +5 -0
  317. package/src/components/Form/CountryPicker/examples/Shadow.tsx +4 -0
  318. package/src/components/Form/CountryPicker/examples/Shape.tsx +13 -0
  319. package/src/components/Form/CountryPicker/examples/SizeInput.tsx +16 -0
  320. package/src/components/Form/CountryPicker/examples/StylesInput.tsx +19 -0
  321. package/src/components/Form/CountryPicker/examples/Variant.tsx +13 -0
  322. package/src/components/Form/CountryPicker/examples/index.ts +12 -0
  323. package/src/components/Form/CountryPicker/styles.css +7 -0
  324. package/src/components/Form/DatePicker/DatePicker/DatePicker.props.ts +113 -0
  325. package/src/components/Form/DatePicker/DatePicker/DatePicker.state.ts +17 -0
  326. package/src/components/Form/DatePicker/DatePicker/DatePicker.style.ts +17 -0
  327. package/src/components/Form/DatePicker/DatePicker/DatePicker.type.d.ts +15 -0
  328. package/src/components/Form/DatePicker/DatePicker/DatePicker.view.tsx +118 -0
  329. package/src/components/Form/DatePicker/DatePicker.md +115 -0
  330. package/src/components/Form/DatePicker/DatePicker.tsx +15 -0
  331. package/src/components/Form/DatePicker/examples/ColorScheme.tsx +12 -0
  332. package/src/components/Form/DatePicker/examples/Default.tsx +4 -0
  333. package/src/components/Form/DatePicker/examples/DisabledInput.tsx +5 -0
  334. package/src/components/Form/DatePicker/examples/ErrorCheckbox.tsx +4 -0
  335. package/src/components/Form/DatePicker/examples/FormCheckout.tsx +23 -0
  336. package/src/components/Form/DatePicker/examples/Formik.tsx +35 -0
  337. package/src/components/Form/DatePicker/examples/ReadOnlyInput.tsx +5 -0
  338. package/src/components/Form/DatePicker/examples/Shadow.tsx +10 -0
  339. package/src/components/Form/DatePicker/examples/SizeInput.tsx +16 -0
  340. package/src/components/Form/DatePicker/examples/StylesInput.tsx +14 -0
  341. package/src/components/Form/DatePicker/examples/helperTextDatePicker.tsx +6 -0
  342. package/src/components/Form/DatePicker/examples/index.ts +11 -0
  343. package/src/components/Form/Label/Label/Label.props.ts +36 -0
  344. package/src/components/Form/Label/Label/Label.style.ts +35 -0
  345. package/src/components/Form/Label/Label/Label.type.ts +14 -0
  346. package/src/components/Form/Label/Label/Label.view.tsx +35 -0
  347. package/src/components/Form/Label/Label.tsx +8 -0
  348. package/src/components/Form/Password/Password/Password.props.ts +36 -0
  349. package/src/components/Form/Password/Password/Password.state.ts +6 -0
  350. package/src/components/Form/Password/Password/Password.type.d.ts +14 -0
  351. package/src/components/Form/Password/Password/Password.view.tsx +32 -0
  352. package/src/components/Form/Password/Password.md +108 -0
  353. package/src/components/Form/Password/Password.tsx +15 -0
  354. package/src/components/Form/Password/example/Default.tsx +9 -0
  355. package/src/components/Form/Password/example/DisabledInput.tsx +17 -0
  356. package/src/components/Form/Password/example/ErrorInput.tsx +66 -0
  357. package/src/components/Form/Password/example/FormikErrorInput.tsx +61 -0
  358. package/src/components/Form/Password/example/FormikHelperText.tsx +65 -0
  359. package/src/components/Form/Password/example/HelperText.tsx +65 -0
  360. package/src/components/Form/Select/Select/Select.props.ts +262 -0
  361. package/src/components/Form/Select/Select/Select.state.ts +19 -0
  362. package/src/components/Form/Select/Select/Select.style.ts +19 -0
  363. package/src/components/Form/Select/Select/Select.type.d.ts +15 -0
  364. package/src/components/Form/Select/Select/Select.view.tsx +342 -0
  365. package/src/components/Form/Select/Select.md +165 -0
  366. package/src/components/Form/Select/Select.tsx +16 -0
  367. package/src/components/Form/Select/examples/Color.tsx +12 -0
  368. package/src/components/Form/Select/examples/Default.tsx +4 -0
  369. package/src/components/Form/Select/examples/Disabled.tsx +5 -0
  370. package/src/components/Form/Select/examples/Error.tsx +4 -0
  371. package/src/components/Form/Select/examples/Form.tsx +23 -0
  372. package/src/components/Form/Select/examples/Formik.tsx +41 -0
  373. package/src/components/Form/Select/examples/HelperText.tsx +7 -0
  374. package/src/components/Form/Select/examples/Multiple.tsx +6 -0
  375. package/src/components/Form/Select/examples/ReadOnlyInput.tsx +5 -0
  376. package/src/components/Form/Select/examples/Shadow.tsx +11 -0
  377. package/src/components/Form/Select/examples/SizeInput.tsx +16 -0
  378. package/src/components/Form/Select/examples/StylesInput.tsx +15 -0
  379. package/src/components/Form/Switch/Switch/Switch.props.ts +91 -0
  380. package/src/components/Form/Switch/Switch/Switch.state.ts +11 -0
  381. package/src/components/Form/Switch/Switch/Switch.style.ts +72 -0
  382. package/src/components/Form/Switch/Switch/Switch.type.d.ts +6 -0
  383. package/src/components/Form/Switch/Switch/Switch.view.tsx +78 -0
  384. package/src/components/Form/Switch/Switch.md +148 -0
  385. package/src/components/Form/Switch/Switch.tsx +12 -0
  386. package/src/components/Form/Switch/examples/ChildSwitch.tsx +20 -0
  387. package/src/components/Form/Switch/examples/ColorScheme.tsx +5 -0
  388. package/src/components/Form/Switch/examples/Default.tsx +4 -0
  389. package/src/components/Form/Switch/examples/DisabledInput.tsx +7 -0
  390. package/src/components/Form/Switch/examples/FormSwitch.tsx +22 -0
  391. package/src/components/Form/Switch/examples/Formik.tsx +30 -0
  392. package/src/components/Form/Switch/examples/ReadOnlyInput.tsx +7 -0
  393. package/src/components/Form/Switch/examples/Shadow.tsx +11 -0
  394. package/src/components/Form/Switch/examples/SizeInput.tsx +21 -0
  395. package/src/components/Form/Switch/examples/StylesInput.tsx +34 -0
  396. package/src/components/Form/TextArea/TextArea/TextArea.props.ts +154 -0
  397. package/src/components/Form/TextArea/TextArea/TextArea.state.ts +21 -0
  398. package/src/components/Form/TextArea/TextArea/TextArea.type.ts +15 -0
  399. package/src/components/Form/TextArea/TextArea/TextArea.view.tsx +143 -0
  400. package/src/components/Form/TextArea/TextArea.md +169 -0
  401. package/src/components/Form/TextArea/TextArea.tsx +15 -0
  402. package/src/components/Form/TextArea/examples/ColorScheme.tsx +13 -0
  403. package/src/components/Form/TextArea/examples/Default.tsx +5 -0
  404. package/src/components/Form/TextArea/examples/DisabledInput.tsx +7 -0
  405. package/src/components/Form/TextArea/examples/ErrorInput.tsx +50 -0
  406. package/src/components/Form/TextArea/examples/FormikErrorInput.tsx +52 -0
  407. package/src/components/Form/TextArea/examples/FormikHelperText.tsx +51 -0
  408. package/src/components/Form/TextArea/examples/HelperText.tsx +49 -0
  409. package/src/components/Form/TextArea/examples/LabelInput.tsx +23 -0
  410. package/src/components/Form/TextArea/examples/MaxRowCol.tsx +7 -0
  411. package/src/components/Form/TextArea/examples/Placeholder.tsx +23 -0
  412. package/src/components/Form/TextArea/examples/ReadOnlyInput.tsx +7 -0
  413. package/src/components/Form/TextArea/examples/ShadowArea.tsx +28 -0
  414. package/src/components/Form/TextArea/examples/ShapeInput.tsx +15 -0
  415. package/src/components/Form/TextArea/examples/SizeInput.tsx +16 -0
  416. package/src/components/Form/TextArea/examples/StylesInput.tsx +34 -0
  417. package/src/components/Form/TextArea/examples/VariantsInputs.tsx +15 -0
  418. package/src/components/Form/TextArea/examples/index.ts +15 -0
  419. package/src/components/Form/TextArea/styles.css +7 -0
  420. package/src/components/Form/TextField/TextField/TextField.props.ts +134 -0
  421. package/src/components/Form/TextField/TextField/TextField.state.ts +21 -0
  422. package/src/components/Form/TextField/TextField/TextField.type.d.ts +15 -0
  423. package/src/components/Form/TextField/TextField/TextField.view.tsx +170 -0
  424. package/src/components/Form/TextField/TextField.md +193 -0
  425. package/src/components/Form/TextField/TextField.tsx +14 -0
  426. package/src/components/Form/TextField/examples/ClearInput.tsx +13 -0
  427. package/src/components/Form/TextField/examples/ColorScheme.tsx +13 -0
  428. package/src/components/Form/TextField/examples/Default.tsx +23 -0
  429. package/src/components/Form/TextField/examples/DisabledInput.tsx +7 -0
  430. package/src/components/Form/TextField/examples/ErrorInput.tsx +74 -0
  431. package/src/components/Form/TextField/examples/FormikErrorInput.tsx +76 -0
  432. package/src/components/Form/TextField/examples/FormikHelperText.tsx +62 -0
  433. package/src/components/Form/TextField/examples/HelperText.tsx +60 -0
  434. package/src/components/Form/TextField/examples/LabelInput.tsx +23 -0
  435. package/src/components/Form/TextField/examples/LeftChild.tsx +8 -0
  436. package/src/components/Form/TextField/examples/Placeholder.tsx +23 -0
  437. package/src/components/Form/TextField/examples/ReadOnlyInput.tsx +7 -0
  438. package/src/components/Form/TextField/examples/RightChild.tsx +8 -0
  439. package/src/components/Form/TextField/examples/ShapeInput.tsx +15 -0
  440. package/src/components/Form/TextField/examples/SizeInput.tsx +16 -0
  441. package/src/components/Form/TextField/examples/StylesInput.tsx +35 -0
  442. package/src/components/Form/TextField/examples/VariantsInputs.tsx +15 -0
  443. package/src/components/Form/TextField/examples/index.ts +17 -0
  444. package/src/components/Form/TextField/styles.css +7 -0
  445. package/src/components/Layout/Center/Center/Center.props.ts +18 -0
  446. package/src/components/Layout/Center/Center/Center.view.tsx +12 -0
  447. package/src/components/Layout/Center/Center.md +17 -0
  448. package/src/components/Layout/Center/Center.tsx +11 -0
  449. package/src/components/Layout/Horizontal/Horizontal/Horizontal.props.ts +26 -0
  450. package/src/components/Layout/Horizontal/Horizontal/Horizontal.view.tsx +24 -0
  451. package/src/components/Layout/Horizontal/Horizontal.md +107 -0
  452. package/src/components/Layout/Horizontal/Horizontal.tsx +11 -0
  453. package/src/components/Layout/Horizontal/examples/Default.tsx +11 -0
  454. package/src/components/Layout/Horizontal/examples/Justify.tsx +25 -0
  455. package/src/components/Layout/Horizontal/examples/Reversed.tsx +11 -0
  456. package/src/components/Layout/Horizontal/examples/Wrap.tsx +29 -0
  457. package/src/components/Layout/Horizontal/examples/index.ts +4 -0
  458. package/src/components/Layout/Input/FieldContainer/FieldContainer/FieldContainer.props.ts +25 -0
  459. package/src/components/Layout/Input/FieldContainer/FieldContainer.tsx +17 -0
  460. package/src/components/Layout/Input/FieldContent/FieldContent/FieldContent.props.ts +75 -0
  461. package/src/components/Layout/Input/FieldContent/FieldContent.tsx +55 -0
  462. package/src/components/Layout/Input/FieldIcons/FieldIcons/FieldIcons.props.ts +12 -0
  463. package/src/components/Layout/Input/FieldIcons/FieldIcons.tsx +19 -0
  464. package/src/components/Layout/Input/FieldLabel/FieldLabel/FieldLabel.props.ts +31 -0
  465. package/src/components/Layout/Input/FieldLabel/FieldLabel.tsx +30 -0
  466. package/src/components/Layout/Input/FieldLayout/FieldLayout/FieldLayout.props.ts +29 -0
  467. package/src/components/Layout/Input/FieldLayout/FieldLayout.tsx +33 -0
  468. package/src/components/Layout/Input/FieldWrapper/FieldWrapper.props.ts +12 -0
  469. package/src/components/Layout/Input/FieldWrapper/FieldWrapper.tsx +11 -0
  470. package/src/components/Layout/Input/HelperText/HelperText.props.ts +21 -0
  471. package/src/components/Layout/Input/HelperText/HelperText.tsx +22 -0
  472. package/src/components/Layout/Input/index.ts +7 -0
  473. package/src/components/Layout/Vertical/Vertical/Vertical.props.ts +26 -0
  474. package/src/components/Layout/Vertical/Vertical/Vertical.type.ts +3 -0
  475. package/src/components/Layout/Vertical/Vertical/Vertical.view.tsx +23 -0
  476. package/src/components/Layout/Vertical/Vertical.md +120 -0
  477. package/src/components/Layout/Vertical/Vertical.tsx +12 -0
  478. package/src/components/Layout/Vertical/examples/Default.tsx +11 -0
  479. package/src/components/Layout/Vertical/examples/Justify.tsx +26 -0
  480. package/src/components/Layout/Vertical/examples/Reversed.tsx +11 -0
  481. package/src/components/Layout/Vertical/examples/Wrap.tsx +30 -0
  482. package/src/components/Layout/Vertical/examples/index.tsx +5 -0
  483. package/src/components/Layout/View/View.tsx +2 -0
  484. package/src/components/Layout/configs/Input.style.ts +45 -0
  485. package/src/components/Layout/configs/Input.type.ts +18 -0
  486. package/src/components/Link/Link/Link.props.ts +50 -0
  487. package/src/components/Link/Link/Link.state.ts +6 -0
  488. package/src/components/Link/Link/Link.style.ts +14 -0
  489. package/src/components/Link/Link/Link.type.d.ts +8 -0
  490. package/src/components/Link/Link/Link.view.tsx +44 -0
  491. package/src/components/Link/Link.md +61 -0
  492. package/src/components/Link/Link.tsx +15 -0
  493. package/src/components/Link/examples/Default.tsx +5 -0
  494. package/src/components/Link/examples/IsExternal.tsx +10 -0
  495. package/src/components/Link/examples/Underline.tsx +23 -0
  496. package/src/components/Loader/Loader/Loader.props.ts +105 -0
  497. package/src/components/Loader/Loader/Loader.style.ts +25 -0
  498. package/src/components/Loader/Loader/Loader.type.d.ts +4 -0
  499. package/src/components/Loader/Loader/Loader.view.tsx +138 -0
  500. package/src/components/Loader/Loader.md +111 -0
  501. package/src/components/Loader/Loader.tsx +11 -0
  502. package/src/components/Loader/examples/ColorLoader.tsx +13 -0
  503. package/src/components/Loader/examples/DefaultLoader.tsx +4 -0
  504. package/src/components/Loader/examples/PositionLoader.tsx +19 -0
  505. package/src/components/Loader/examples/SizeLoader.tsx +12 -0
  506. package/src/components/Loader/examples/SpeedLoader.tsx +12 -0
  507. package/src/components/Loader/examples/TextLoader.tsx +8 -0
  508. package/src/components/Loader/examples/VariantLoader.tsx +12 -0
  509. package/src/components/Loader/examples/index.ts +7 -0
  510. package/src/components/Modal/Examples/BlurModal.tsx +38 -0
  511. package/src/components/Modal/Examples/CloseButtonModal.tsx +44 -0
  512. package/src/components/Modal/Examples/DefaultModal.tsx +38 -0
  513. package/src/components/Modal/Examples/FullScreenModal.tsx +28 -0
  514. package/src/components/Modal/Examples/ModalPosition.tsx +61 -0
  515. package/src/components/Modal/Examples/PreventCloseModal.tsx +27 -0
  516. package/src/components/Modal/Examples/ScrollModal.tsx +41 -0
  517. package/src/components/Modal/Examples/ShadowModal.tsx +29 -0
  518. package/src/components/Modal/Examples/VariantModal.tsx +48 -0
  519. package/src/components/Modal/Examples/index.ts +9 -0
  520. package/src/components/Modal/Modal/Modal.props.ts +202 -0
  521. package/src/components/Modal/Modal/Modal.style.ts +23 -0
  522. package/src/components/Modal/Modal/Modal.type.d.ts +7 -0
  523. package/src/components/Modal/Modal/Modal.view.tsx +169 -0
  524. package/src/components/Modal/Modal.md +509 -0
  525. package/src/components/Modal/Modal.tsx +18 -0
  526. package/src/components/Svg/ArrowDown.tsx +32 -0
  527. package/src/components/Svg/ArrowUp.tsx +32 -0
  528. package/src/components/Svg/Check.tsx +28 -0
  529. package/src/components/Svg/Close.tsx +31 -0
  530. package/src/components/Svg/CloseEye.tsx +26 -0
  531. package/src/components/Svg/DustBin.tsx +29 -0
  532. package/src/components/Svg/Edit.tsx +34 -0
  533. package/src/components/Svg/ExternalLink.tsx +31 -0
  534. package/src/components/Svg/Indeterminate.tsx +21 -0
  535. package/src/components/Svg/OpenEye.tsx +26 -0
  536. package/src/components/Svg/Profile.tsx +40 -0
  537. package/src/components/Svg/RightArrow.tsx +44 -0
  538. package/src/components/Svg/index.tsx +12 -0
  539. package/src/components/Text/Text/Text.props.ts +84 -0
  540. package/src/components/Text/Text/Text.style.ts +34 -0
  541. package/src/components/Text/Text/Text.type.d.ts +14 -0
  542. package/src/components/Text/Text/Text.view.tsx +96 -0
  543. package/src/components/Text/Text.md +163 -0
  544. package/src/components/Text/Text.tsx +13 -0
  545. package/src/components/Wrapper.tsx +19 -0
  546. package/src/components/index.tsx +18 -0
package/LICENSE ADDED
@@ -0,0 +1,448 @@
1
+ Copyright (c) Facebook, Inc. and its affiliates.
2
+ All rights reserved.
3
+
4
+ This source code is licensed under the license found in the
5
+ LICENSE file in the root directory of this source tree.
6
+
7
+ Attribution-NonCommercial 4.0 International
8
+
9
+ =======================================================================
10
+
11
+ Creative Commons Corporation ("Creative Commons") is not a law firm and
12
+ does not provide legal services or legal advice. Distribution of
13
+ Creative Commons public licenses does not create a lawyer-client or
14
+ other relationship. Creative Commons makes its licenses and related
15
+ information available on an "as-is" basis. Creative Commons gives no
16
+ warranties regarding its licenses, any material licensed under their
17
+ terms and conditions, or any related information. Creative Commons
18
+ disclaims all liability for damages resulting from their use to the
19
+ fullest extent possible.
20
+
21
+ Using Creative Commons Public Licenses
22
+
23
+ Creative Commons public licenses provide a standard set of terms and
24
+ conditions that creators and other rights holders may use to share
25
+ original works of authorship and other material subject to copyright
26
+ and certain other rights specified in the public license below. The
27
+ following considerations are for informational purposes only, are not
28
+ exhaustive, and do not form part of our licenses.
29
+
30
+ Considerations for licensors: Our public licenses are
31
+ intended for use by those authorized to give the public
32
+ permission to use material in ways otherwise restricted by
33
+ copyright and certain other rights. Our licenses are
34
+ irrevocable. Licensors should read and understand the terms
35
+ and conditions of the license they choose before applying it.
36
+ Licensors should also secure all rights necessary before
37
+ applying our licenses so that the public can reuse the
38
+ material as expected. Licensors should clearly mark any
39
+ material not subject to the license. This includes other CC-
40
+ licensed material, or material used under an exception or
41
+ limitation to copyright. More considerations for licensors:
42
+ wiki.creativecommons.org/Considerations_for_licensors
43
+
44
+ Considerations for the public: By using one of our public
45
+ licenses, a licensor grants the public permission to use the
46
+ licensed material under specified terms and conditions. If
47
+ the licensor's permission is not necessary for any reason--for
48
+ example, because of any applicable exception or limitation to
49
+ copyright--then that use is not regulated by the license. Our
50
+ licenses grant only permissions under copyright and certain
51
+ other rights that a licensor has authority to grant. Use of
52
+ the licensed material may still be restricted for other
53
+ reasons, including because others have copyright or other
54
+ rights in the material. A licensor may make special requests,
55
+ such as asking that all changes be marked or described.
56
+ Although not required by our licenses, you are encouraged to
57
+ respect those requests where reasonable. More_considerations
58
+ for the public:
59
+ wiki.creativecommons.org/Considerations_for_licensees
60
+
61
+ =======================================================================
62
+
63
+ Creative Commons Attribution-NonCommercial 4.0 International Public
64
+ License
65
+
66
+ By exercising the Licensed Rights (defined below), You accept and agree
67
+ to be bound by the terms and conditions of this Creative Commons
68
+ Attribution-NonCommercial 4.0 International Public License ("Public
69
+ License"). To the extent this Public License may be interpreted as a
70
+ contract, You are granted the Licensed Rights in consideration of Your
71
+ acceptance of these terms and conditions, and the Licensor grants You
72
+ such rights in consideration of benefits the Licensor receives from
73
+ making the Licensed Material available under these terms and
74
+ conditions.
75
+
76
+ Section 1 -- Definitions.
77
+
78
+ a. Adapted Material means material subject to Copyright and Similar
79
+ Rights that is derived from or based upon the Licensed Material
80
+ and in which the Licensed Material is translated, altered,
81
+ arranged, transformed, or otherwise modified in a manner requiring
82
+ permission under the Copyright and Similar Rights held by the
83
+ Licensor. For purposes of this Public License, where the Licensed
84
+ Material is a musical work, performance, or sound recording,
85
+ Adapted Material is always produced where the Licensed Material is
86
+ synched in timed relation with a moving image.
87
+
88
+ b. Adapter's License means the license You apply to Your Copyright
89
+ and Similar Rights in Your contributions to Adapted Material in
90
+ accordance with the terms and conditions of this Public License.
91
+
92
+ c. Copyright and Similar Rights means copyright and/or similar rights
93
+ closely related to copyright including, without limitation,
94
+ performance, broadcast, sound recording, and Sui Generis Database
95
+ Rights, without regard to how the rights are labeled or
96
+ categorized. For purposes of this Public License, the rights
97
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
98
+ Rights.
99
+ d. Effective Technological Measures means those measures that, in the
100
+ absence of proper authority, may not be circumvented under laws
101
+ fulfilling obligations under Article 11 of the WIPO Copyright
102
+ Treaty adopted on December 20, 1996, and/or similar international
103
+ agreements.
104
+
105
+ e. Exceptions and Limitations means fair use, fair dealing, and/or
106
+ any other exception or limitation to Copyright and Similar Rights
107
+ that applies to Your use of the Licensed Material.
108
+
109
+ f. Licensed Material means the artistic or literary work, database,
110
+ or other material to which the Licensor applied this Public
111
+ License.
112
+
113
+ g. Licensed Rights means the rights granted to You subject to the
114
+ terms and conditions of this Public License, which are limited to
115
+ all Copyright and Similar Rights that apply to Your use of the
116
+ Licensed Material and that the Licensor has authority to license.
117
+
118
+ h. Licensor means the individual(s) or entity(ies) granting rights
119
+ under this Public License.
120
+
121
+ i. NonCommercial means not primarily intended for or directed towards
122
+ commercial advantage or monetary compensation. For purposes of
123
+ this Public License, the exchange of the Licensed Material for
124
+ other material subject to Copyright and Similar Rights by digital
125
+ file-sharing or similar means is NonCommercial provided there is
126
+ no payment of monetary compensation in connection with the
127
+ exchange.
128
+
129
+ j. Share means to provide material to the public by any means or
130
+ process that requires permission under the Licensed Rights, such
131
+ as reproduction, public display, public performance, distribution,
132
+ dissemination, communication, or importation, and to make material
133
+ available to the public including in ways that members of the
134
+ public may access the material from a place and at a time
135
+ individually chosen by them.
136
+
137
+ k. Sui Generis Database Rights means rights other than copyright
138
+ resulting from Directive 96/9/EC of the European Parliament and of
139
+ the Council of 11 March 1996 on the legal protection of databases,
140
+ as amended and/or succeeded, as well as other essentially
141
+ equivalent rights anywhere in the world.
142
+
143
+ l. You means the individual or entity exercising the Licensed Rights
144
+ under this Public License. Your has a corresponding meaning.
145
+
146
+ Section 2 -- Scope.
147
+
148
+ a. License grant.
149
+
150
+ 1. Subject to the terms and conditions of this Public License,
151
+ the Licensor hereby grants You a worldwide, royalty-free,
152
+ non-sublicensable, non-exclusive, irrevocable license to
153
+ exercise the Licensed Rights in the Licensed Material to:
154
+
155
+ a. reproduce and Share the Licensed Material, in whole or
156
+ in part, for NonCommercial purposes only; and
157
+
158
+ b. produce, reproduce, and Share Adapted Material for
159
+ NonCommercial purposes only.
160
+
161
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
162
+ Exceptions and Limitations apply to Your use, this Public
163
+ License does not apply, and You do not need to comply with
164
+ its terms and conditions.
165
+
166
+ 3. Term. The term of this Public License is specified in Section
167
+ 6(a).
168
+
169
+ 4. Media and formats; technical modifications allowed. The
170
+ Licensor authorizes You to exercise the Licensed Rights in
171
+ all media and formats whether now known or hereafter created,
172
+ and to make technical modifications necessary to do so. The
173
+ Licensor waives and/or agrees not to assert any right or
174
+ authority to forbid You from making technical modifications
175
+ necessary to exercise the Licensed Rights, including
176
+ technical modifications necessary to circumvent Effective
177
+ Technological Measures. For purposes of this Public License,
178
+ simply making modifications authorized by this Section 2(a)
179
+ (4) never produces Adapted Material.
180
+
181
+ 5. Downstream recipients.
182
+
183
+ a. Offer from the Licensor -- Licensed Material. Every
184
+ recipient of the Licensed Material automatically
185
+ receives an offer from the Licensor to exercise the
186
+ Licensed Rights under the terms and conditions of this
187
+ Public License.
188
+
189
+ b. No downstream restrictions. You may not offer or impose
190
+ any additional or different terms or conditions on, or
191
+ apply any Effective Technological Measures to, the
192
+ Licensed Material if doing so restricts exercise of the
193
+ Licensed Rights by any recipient of the Licensed
194
+ Material.
195
+
196
+ 6. No endorsement. Nothing in this Public License constitutes or
197
+ may be construed as permission to assert or imply that You
198
+ are, or that Your use of the Licensed Material is, connected
199
+ with, or sponsored, endorsed, or granted official status by,
200
+ the Licensor or others designated to receive attribution as
201
+ provided in Section 3(a)(1)(A)(i).
202
+
203
+ b. Other rights.
204
+
205
+ 1. Moral rights, such as the right of integrity, are not
206
+ licensed under this Public License, nor are publicity,
207
+ privacy, and/or other similar personality rights; however, to
208
+ the extent possible, the Licensor waives and/or agrees not to
209
+ assert any such rights held by the Licensor to the limited
210
+ extent necessary to allow You to exercise the Licensed
211
+ Rights, but not otherwise.
212
+
213
+ 2. Patent and trademark rights are not licensed under this
214
+ Public License.
215
+
216
+ 3. To the extent possible, the Licensor waives any right to
217
+ collect royalties from You for the exercise of the Licensed
218
+ Rights, whether directly or through a collecting society
219
+ under any voluntary or waivable statutory or compulsory
220
+ licensing scheme. In all other cases the Licensor expressly
221
+ reserves any right to collect such royalties, including when
222
+ the Licensed Material is used other than for NonCommercial
223
+ purposes.
224
+
225
+ Section 3 -- License Conditions.
226
+
227
+ Your exercise of the Licensed Rights is expressly made subject to the
228
+ following conditions.
229
+
230
+ a. Attribution.
231
+
232
+ 1. If You Share the Licensed Material (including in modified
233
+ form), You must:
234
+
235
+ a. retain the following if it is supplied by the Licensor
236
+ with the Licensed Material:
237
+
238
+ i. identification of the creator(s) of the Licensed
239
+ Material and any others designated to receive
240
+ attribution, in any reasonable manner requested by
241
+ the Licensor (including by pseudonym if
242
+ designated);
243
+
244
+ ii. a copyright notice;
245
+
246
+ iii. a notice that refers to this Public License;
247
+
248
+ iv. a notice that refers to the disclaimer of
249
+ warranties;
250
+
251
+ v. a URI or hyperlink to the Licensed Material to the
252
+ extent reasonably practicable;
253
+
254
+ b. indicate if You modified the Licensed Material and
255
+ retain an indication of any previous modifications; and
256
+
257
+ c. indicate the Licensed Material is licensed under this
258
+ Public License, and include the text of, or the URI or
259
+ hyperlink to, this Public License.
260
+
261
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
262
+ reasonable manner based on the medium, means, and context in
263
+ which You Share the Licensed Material. For example, it may be
264
+ reasonable to satisfy the conditions by providing a URI or
265
+ hyperlink to a resource that includes the required
266
+ information.
267
+
268
+ 3. If requested by the Licensor, You must remove any of the
269
+ information required by Section 3(a)(1)(A) to the extent
270
+ reasonably practicable.
271
+
272
+ 4. If You Share Adapted Material You produce, the Adapter's
273
+ License You apply must not prevent recipients of the Adapted
274
+ Material from complying with this Public License.
275
+
276
+ Section 4 -- Sui Generis Database Rights.
277
+
278
+ Where the Licensed Rights include Sui Generis Database Rights that
279
+ apply to Your use of the Licensed Material:
280
+
281
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
282
+ to extract, reuse, reproduce, and Share all or a substantial
283
+ portion of the contents of the database for NonCommercial purposes
284
+ only;
285
+
286
+ b. if You include all or a substantial portion of the database
287
+ contents in a database in which You have Sui Generis Database
288
+ Rights, then the database in which You have Sui Generis Database
289
+ Rights (but not its individual contents) is Adapted Material; and
290
+
291
+ c. You must comply with the conditions in Section 3(a) if You Share
292
+ all or a substantial portion of the contents of the database.
293
+
294
+ For the avoidance of doubt, this Section 4 supplements and does not
295
+ replace Your obligations under this Public License where the Licensed
296
+ Rights include other Copyright and Similar Rights.
297
+
298
+ Section 5 -- Disclaimer of Warranties and Limitation of Liability.
299
+
300
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
301
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
302
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
303
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
304
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
305
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
306
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
307
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
308
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
309
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
310
+
311
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
312
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
313
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
314
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
315
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
316
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
317
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
318
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
319
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
320
+
321
+ c. The disclaimer of warranties and limitation of liability provided
322
+ above shall be interpreted in a manner that, to the extent
323
+ possible, most closely approximates an absolute disclaimer and
324
+ waiver of all liability.
325
+
326
+ Section 6 -- Term and Termination.
327
+
328
+ a. This Public License applies for the term of the Copyright and
329
+ Similar Rights licensed here. However, if You fail to comply with
330
+ this Public License, then Your rights under this Public License
331
+ terminate automatically.
332
+
333
+ b. Where Your right to use the Licensed Material has terminated under
334
+ Section 6(a), it reinstates:
335
+
336
+ 1. automatically as of the date the violation is cured, provided
337
+ it is cured within 30 days of Your discovery of the
338
+ violation; or
339
+
340
+ 2. upon express reinstatement by the Licensor.
341
+
342
+ For the avoidance of doubt, this Section 6(b) does not affect any
343
+ right the Licensor may have to seek remedies for Your violations
344
+ of this Public License.
345
+
346
+ c. For the avoidance of doubt, the Licensor may also offer the
347
+ Licensed Material under separate terms or conditions or stop
348
+ distributing the Licensed Material at any time; however, doing so
349
+ will not terminate this Public License.
350
+
351
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
352
+ License.
353
+
354
+ Section 7 -- Other Terms and Conditions.
355
+
356
+ a. The Licensor shall not be bound by any additional or different
357
+ terms or conditions communicated by You unless expressly agreed.
358
+
359
+ b. Any arrangements, understandings, or agreements regarding the
360
+ Licensed Material not stated herein are separate from and
361
+ independent of the terms and conditions of this Public License.
362
+
363
+ Section 8 -- Interpretation.
364
+
365
+ a. For the avoidance of doubt, this Public License does not, and
366
+ shall not be interpreted to, reduce, limit, restrict, or impose
367
+ conditions on any use of the Licensed Material that could lawfully
368
+ be made without permission under this Public License.
369
+
370
+ b. To the extent possible, if any provision of this Public License is
371
+ deemed unenforceable, it shall be automatically reformed to the
372
+ minimum extent necessary to make it enforceable. If the provision
373
+ cannot be reformed, it shall be severed from this Public License
374
+ without affecting the enforceability of the remaining terms and
375
+ conditions.
376
+
377
+ c. No term or condition of this Public License will be waived and no
378
+ failure to comply consented to unless expressly agreed to by the
379
+ Licensor.
380
+
381
+ d. Nothing in this Public License constitutes or may be interpreted
382
+ as a limitation upon, or waiver of, any privileges and immunities
383
+ that apply to the Licensor or You, including from the legal
384
+ processes of any jurisdiction or authority.
385
+
386
+ =======================================================================
387
+
388
+ Creative Commons is not a party to its public
389
+ licenses. Notwithstanding, Creative Commons may elect to apply one of
390
+ its public licenses to material it publishes and in those instances
391
+ will be considered the “Licensor.” The text of the Creative Commons
392
+ public licenses is dedicated to the public domain under the CC0 Public
393
+ Domain Dedication. Except for the limited purpose of indicating that
394
+ material is shared under a Creative Commons public license or as
395
+ otherwise permitted by the Creative Commons policies published at
396
+ creativecommons.org/policies, Creative Commons does not authorize the
397
+ use of the trademark "Creative Commons" or any other trademark or logo
398
+ of Creative Commons without its prior written consent including,
399
+ without limitation, in connection with any unauthorized modifications
400
+ to any of its public licenses or any other arrangements,
401
+ understandings, or agreements concerning use of licensed material. For
402
+ the avoidance of doubt, this paragraph does not form part of the
403
+ public licenses.
404
+
405
+ Creative Commons may be contacted at creativecommons.org.
406
+
407
+ --------------------------- LICENSE FOR SMPL --------------------------------
408
+ https://smpl.is.tue.mpg.de/bodylicense
409
+
410
+ SMPL-Body License
411
+ Max Planck Society e.V as Licensor
412
+ grants a
413
+
414
+ SMPL-BODY Creative Commons License
415
+
416
+ SMPL: Skinned Multi-Person Linear Model (hereinafter "SMPL-Model") is a 3D representation of the human body that supports realistic changes in body shape and pose. SMPL-Body is a subset of SMPL-Model which excludes the shape blendshapes or the tools to create 3D bodies using the shape blendshapes of the SMPL-Model. A SMPL-Body contains a 3D mesh, a skeleton rig, pose blendshapes and dynamic blendshapes. A SMPL-Body can be shared in the form of OBJ file(s), animated FBX file(s), or as a set of mesh vertices, skeleton rig, pose blendshapes and dynamic blendshapes in other appropriate 3D file formats.
417
+
418
+ SMPL-Body is licensed under the Creative Commons Attribution 4.0 International License. You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. To view a copy of this license, visit:
419
+
420
+ http://creativecommons.org/licenses/by/4.0/
421
+
422
+ OR
423
+
424
+ https://creativecommons.org/licenses/by/4.0/deed.de (GERMAN)
425
+
426
+ The SMPL-Model specification is defined in the granted US patent US10395411B2 (published on 2018-11-01 and 2019-08-27, granted on 2019-08-27) and the pending European EP3314577A1 (published on 2018-05-02) and World WO2016207311A1 (published on 2016-12-29) patent applications, "Skinned Multi-Person Linear Model". The Max Planck Society (MPG) owns the technology disclosed in these granted and pending patent applications.
427
+
428
+ With this free CC-license, we want to encourage the adoption and use of SMPL-Body and related file formats as a new Standard in 3D Body Modeling. The Grant of right qualifies as a donation under German law. As to § 521 Bürgerliches Gesetzbuch the donor is responsible only for intent and gross negligence.
429
+
430
+ Attribution for Publications with SMPL-Body
431
+ You agree to cite the most recent paper describing the model as specified on the download website: http://smpl.is.tue.mpg.de/ This website lists the most up to date bibliographic information.
432
+
433
+ --------------------------- LICENSE FOR SPIN --------------------------------
434
+
435
+ Copyright (c) 2019,
436
+ University of Pennsylvania,
437
+ Max Planck Institute for Intelligent Systems
438
+ All rights reserved.
439
+
440
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
441
+
442
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
443
+
444
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
445
+
446
+ 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
447
+
448
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # Getting Started with Create React App
2
+
3
+ This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4
+
5
+ ## Available Scripts
6
+
7
+ In the project directory, you can run:
8
+
9
+ ### `npm start`
10
+
11
+ Runs the app in the development mode.\
12
+ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13
+
14
+ The page will reload if you make edits.\
15
+ You will also see any lint errors in the console.
16
+
17
+ ### `npm test`
18
+
19
+ Launches the test runner in the interactive watch mode.\
20
+ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21
+
22
+ ### `npm run build`
23
+
24
+ Builds the app for production to the `build` folder.\
25
+ It correctly bundles React in production mode and optimizes the build for the best performance.
26
+
27
+ The build is minified and the filenames include the hashes.\
28
+ Your app is ready to be deployed!
29
+
30
+ See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31
+
32
+ ### `npm run eject`
33
+
34
+ **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35
+
36
+ If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37
+
38
+ Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39
+
40
+ You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41
+
42
+ ## Learn More
43
+
44
+ You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45
+
46
+ To learn React, check out the [React documentation](https://reactjs.org/).
47
+
48
+ ##### Licensed under the [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/legalcode) license.
49
+ See the [LICENSE](LICENSE) file.
50
+
package/dist/App.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ export declare const App: React.FC;
3
+ export default App;
@@ -0,0 +1,77 @@
1
+ import React, { CSSProperties } from 'react';
2
+ import { Shadow } from 'app-studio';
3
+ import { Elevation } from 'src/utils/elevation';
4
+ import { IconPosition, Shape, Size, Variant } from './Button.type';
5
+ /**
6
+ * Represents the properties for the Button component.
7
+ */
8
+ export interface ButtonProps {
9
+ /**
10
+ * The content to be rendered inside the button.
11
+ */
12
+ children?: React.ReactNode;
13
+ /**
14
+ * Sets the background color of the button.
15
+ */
16
+ colorScheme?: string;
17
+ /**
18
+ * Specifies the external URL used when the variant is set to "link".
19
+ */
20
+ externalHref?: string;
21
+ /**
22
+ * Indicates whether the button is in a loading state.
23
+ */
24
+ isLoading?: boolean;
25
+ /**
26
+ * The icon component rendered within the button.
27
+ */
28
+ icon?: React.ReactNode;
29
+ /**
30
+ * Specifies the position of the icon within the button.
31
+ */
32
+ iconPosition?: IconPosition;
33
+ /**
34
+ * Disables the button if set to true.
35
+ */
36
+ isDisabled?: boolean;
37
+ /**
38
+ * Adjusts the width of the button to take available space.
39
+ */
40
+ isFilled?: boolean;
41
+ /**
42
+ * Adjusts the width of the button based on content size.
43
+ */
44
+ isAuto?: boolean;
45
+ /**
46
+ * Makes the icon container shape rounded if set to true.
47
+ */
48
+ isIconRounded?: boolean;
49
+ /**
50
+ * The event handler called when the button is clicked or pressed.
51
+ */
52
+ onPress?: Function;
53
+ /**
54
+ * Specifies the size of the button's text and padding.
55
+ */
56
+ size?: Size;
57
+ /**
58
+ * Sets a shadow effect applied to the button.
59
+ */
60
+ shadow?: Shadow | Elevation | CSSProperties;
61
+ /**
62
+ * Specifies the shape of the button's corners.
63
+ */
64
+ shape?: Shape;
65
+ /**
66
+ * Descriptive label for accessibility (ARIA) purposes.
67
+ */
68
+ ariaLabel?: string;
69
+ /**
70
+ * Specifies the style variant of the button.
71
+ */
72
+ variant?: Variant;
73
+ /**
74
+ * Additional properties for the button component.
75
+ */
76
+ [x: string]: any;
77
+ }
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare const useButtonState: () => {
3
+ isHovered: boolean;
4
+ setIsHovered: React.Dispatch<React.SetStateAction<boolean>>;
5
+ };
@@ -0,0 +1,5 @@
1
+ import { CSSProperties } from 'react';
2
+ import { Shape, Size } from './Button.type';
3
+ export declare const ButtonSizes: Record<Size, CSSProperties>;
4
+ export declare const ButtonShapes: Record<Shape, number | string>;
5
+ export declare const IconSizes: Record<Size, CSSProperties>;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ButtonProps } from './Button.props';
3
+ declare const ButtonView: React.FC<ButtonProps>;
4
+ export default ButtonView;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import { ButtonProps } from './Button/Button.props';
3
+ /**
4
+ * Buttons allow us to trigger an event or an action with a single click.
5
+ */
6
+ export declare const Button: React.FC<ButtonProps>;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const ExternalButton: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const BorderedButtons: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const ColoredButtons: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const DefaultButton: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const DisabledButton: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const IconButtons: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const LoadingButtons: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const ShadowButton: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const ButtonSizes: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const VariantButtons: () => JSX.Element;
@@ -0,0 +1,9 @@
1
+ export * from 'src/components/Button/examples/BorderedButtons';
2
+ export * from 'src/components/Button/examples/ColoredButtons';
3
+ export * from 'src/components/Button/examples/DefaultButton';
4
+ export * from 'src/components/Button/examples/DisabledButton';
5
+ export * from 'src/components/Button/examples/IconButtons';
6
+ export * from 'src/components/Button/examples/LoadingButtons';
7
+ export * from 'src/components/Button/examples/ShadowButton';
8
+ export * from 'src/components/Button/examples/SizeButtons';
9
+ export * from 'src/components/Button/examples/VariantButtons';