linear-react-components-ui 1.1.24-beta.1 → 1.1.25-rc.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 (259) hide show
  1. package/lib/@types/ColorStyles.d.ts +1 -2
  2. package/lib/@types/Position.d.ts +1 -2
  3. package/lib/assets/styles/calendar.scss +137 -32
  4. package/lib/assets/styles/colorpicker.scss +6 -1
  5. package/lib/assets/styles/colors.scss +12 -48
  6. package/lib/assets/styles/file.scss +8 -0
  7. package/lib/buttons/ActivateButton.d.ts +0 -1
  8. package/lib/buttons/AddButton.d.ts +0 -1
  9. package/lib/buttons/Button.d.ts +0 -1
  10. package/lib/buttons/CancelButton.d.ts +0 -1
  11. package/lib/buttons/DangerButton.d.ts +0 -1
  12. package/lib/buttons/DefaultButton.d.ts +0 -1
  13. package/lib/buttons/DefaultButton.js +17 -32
  14. package/lib/buttons/DestroyButton.d.ts +0 -1
  15. package/lib/buttons/EditButton.d.ts +0 -1
  16. package/lib/buttons/InactivateButton.d.ts +0 -1
  17. package/lib/buttons/InfoButton.d.ts +0 -1
  18. package/lib/buttons/PrimaryButton.d.ts +0 -1
  19. package/lib/buttons/RestoreButton.d.ts +0 -1
  20. package/lib/buttons/SaveButton.d.ts +0 -1
  21. package/lib/buttons/SuccessButton.d.ts +0 -1
  22. package/lib/buttons/WarningButton.d.ts +0 -1
  23. package/lib/buttons/index.d.ts +0 -1
  24. package/lib/buttons/split_button/index.d.ts +0 -1
  25. package/lib/buttons/types.d.ts +5 -2
  26. package/lib/calendar/base/index.js +113 -40
  27. package/lib/form/Field.d.ts +1 -1
  28. package/lib/form/FieldArray.d.ts +1 -1
  29. package/lib/form/FieldNumber.d.ts +1 -1
  30. package/lib/form/FieldPeriod.d.ts +1 -1
  31. package/lib/form/helpers.d.ts +1 -1
  32. package/lib/form/index.d.ts +1 -1
  33. package/lib/form/types.d.ts +1 -1
  34. package/lib/form/withFieldHOC.d.ts +1 -1
  35. package/lib/form/withFormSecurity.d.ts +1 -1
  36. package/lib/icons/helper.d.ts +0 -4
  37. package/lib/icons/helper.js +0 -4
  38. package/lib/icons/index.d.ts +6 -4
  39. package/lib/icons/index.js +9 -14
  40. package/lib/icons/types.d.ts +6 -3
  41. package/lib/index.d.ts +0 -1
  42. package/lib/inputs/base/InputTextBase.d.ts +1 -1
  43. package/lib/inputs/base/InputTextBase.js +8 -18
  44. package/lib/inputs/base/Label.d.ts +14 -0
  45. package/lib/inputs/base/Label.js +35 -0
  46. package/lib/inputs/base/helpers.d.ts +1 -1
  47. package/lib/inputs/base/types.d.ts +17 -6
  48. package/lib/inputs/color/index.js +1 -1
  49. package/lib/inputs/color/types.d.ts +1 -1
  50. package/lib/inputs/date/Dialog.d.ts +1 -1
  51. package/lib/inputs/date/Dropdown.d.ts +1 -1
  52. package/lib/inputs/date/index.d.ts +1 -1
  53. package/lib/inputs/date/types.d.ts +2 -2
  54. package/lib/inputs/errorMessage/index.d.ts +1 -1
  55. package/lib/inputs/file/DefaultFile.d.ts +1 -1
  56. package/lib/inputs/file/DefaultFile.js +27 -27
  57. package/lib/inputs/file/DragDropFile.d.ts +1 -1
  58. package/lib/inputs/file/File.d.ts +1 -1
  59. package/lib/inputs/file/File.js +1 -0
  60. package/lib/inputs/file/FileButtonSettings.d.ts +1 -1
  61. package/lib/inputs/file/FileButtonSettings.js +0 -1
  62. package/lib/inputs/file/helpers.d.ts +1 -1
  63. package/lib/inputs/file/index.d.ts +1 -1
  64. package/lib/inputs/file/types.d.ts +1 -1
  65. package/lib/inputs/inputHOC.d.ts +1 -1
  66. package/lib/inputs/mask/BaseMask.d.ts +1 -1
  67. package/lib/inputs/mask/Cnpj.d.ts +1 -1
  68. package/lib/inputs/mask/Cpf.d.ts +1 -1
  69. package/lib/inputs/mask/Phone.d.ts +1 -1
  70. package/lib/inputs/mask/ZipCode.d.ts +1 -1
  71. package/lib/inputs/mask/helpers.d.ts +1 -1
  72. package/lib/inputs/mask/index.d.ts +1 -1
  73. package/lib/inputs/mask/types.d.ts +2 -2
  74. package/lib/inputs/multiSelect/ActionButtons.d.ts +1 -1
  75. package/lib/inputs/multiSelect/Dropdown.d.ts +1 -1
  76. package/lib/inputs/multiSelect/helper.d.ts +1 -1
  77. package/lib/inputs/multiSelect/index.d.ts +1 -1
  78. package/lib/inputs/multiSelect/types.d.ts +2 -2
  79. package/lib/inputs/number/BaseNumber.d.ts +1 -1
  80. package/lib/inputs/number/Currency.d.ts +1 -1
  81. package/lib/inputs/number/Decimal.d.ts +1 -1
  82. package/lib/inputs/number/index.d.ts +1 -1
  83. package/lib/inputs/number/types.d.ts +3 -3
  84. package/lib/inputs/period/Dialog.d.ts +1 -1
  85. package/lib/inputs/period/Dropdown.d.ts +1 -1
  86. package/lib/inputs/period/PeriodList.d.ts +1 -1
  87. package/lib/inputs/period/helper.d.ts +1 -1
  88. package/lib/inputs/period/index.d.ts +1 -1
  89. package/lib/inputs/period/index.js +10 -8
  90. package/lib/inputs/period/types.d.ts +5 -2
  91. package/lib/inputs/search/index.d.ts +1 -1
  92. package/lib/inputs/select/ActionButtons.d.ts +1 -1
  93. package/lib/inputs/select/Dropdown.d.ts +1 -1
  94. package/lib/inputs/select/helper.d.ts +1 -1
  95. package/lib/inputs/select/index.d.ts +1 -1
  96. package/lib/inputs/select/multiple/Selecteds.d.ts +1 -1
  97. package/lib/inputs/select/multiple/index.d.ts +1 -1
  98. package/lib/inputs/select/simple/index.d.ts +1 -1
  99. package/lib/inputs/select/types.d.ts +1 -1
  100. package/lib/inputs/text/index.d.ts +1 -1
  101. package/lib/inputs/text/types.d.ts +3 -2
  102. package/lib/inputs/textarea/index.d.ts +1 -1
  103. package/lib/inputs/textarea/types.d.ts +1 -1
  104. package/lib/inputs/types.d.ts +1 -1
  105. package/lib/internals/types.d.ts +17 -1
  106. package/lib/internals/withTooltip.d.ts +12 -0
  107. package/lib/internals/withTooltip.js +172 -0
  108. package/lib/labels/DangerLabel.d.ts +0 -1
  109. package/lib/labels/DefaultLabel.d.ts +5 -3
  110. package/lib/labels/DefaultLabel.js +7 -15
  111. package/lib/labels/InfoLabel.d.ts +0 -1
  112. package/lib/labels/PrimaryLabel.d.ts +0 -1
  113. package/lib/labels/SuccessLabel.d.ts +0 -1
  114. package/lib/labels/WarningLabel.d.ts +0 -1
  115. package/lib/labels/index.d.ts +2 -3
  116. package/lib/labels/types.d.ts +5 -2
  117. package/lib/list/Header.d.ts +0 -1
  118. package/lib/list/Item.d.ts +5 -3
  119. package/lib/list/Item.js +12 -17
  120. package/lib/list/helpers.d.ts +0 -1
  121. package/lib/list/index.d.ts +0 -1
  122. package/lib/list/types.d.ts +6 -4
  123. package/lib/menus/sidenav/ExpandMenu.d.ts +2 -2
  124. package/lib/menus/sidenav/MenuLink.d.ts +7 -4
  125. package/lib/menus/sidenav/MenuLink.js +11 -20
  126. package/lib/menus/sidenav/NavMenuGroup.d.ts +2 -2
  127. package/lib/menus/sidenav/NavMenuItem.d.ts +7 -4
  128. package/lib/menus/sidenav/NavMenuItem.js +12 -16
  129. package/lib/menus/sidenav/NavSubMenuItem.d.ts +2 -2
  130. package/lib/menus/sidenav/helpers.d.ts +2 -2
  131. package/lib/menus/sidenav/index.d.ts +2 -2
  132. package/lib/menus/sidenav/popup_menu_search/EmptyList.d.ts +2 -2
  133. package/lib/menus/sidenav/popup_menu_search/index.d.ts +2 -2
  134. package/lib/menus/sidenav/types.d.ts +6 -6
  135. package/lib/popover/PopoverText.js +2 -11
  136. package/lib/popover/index.js +0 -1
  137. package/lib/popover/types.d.ts +0 -1
  138. package/lib/textContent/index.d.ts +11 -6
  139. package/lib/textContent/index.js +11 -20
  140. package/lib/tooltip/index.d.ts +3 -4
  141. package/lib/tooltip/index.js +53 -36
  142. package/lib/tooltip/types.d.ts +3 -25
  143. package/package.json +2 -3
  144. package/lib/BaseMask-04df8f20.d.ts +0 -24
  145. package/lib/BaseNumber-c609c5a0.d.ts +0 -23
  146. package/lib/Cnpj-5471cb1f.d.ts +0 -18
  147. package/lib/Cpf-71c4f0f4.d.ts +0 -18
  148. package/lib/Currency-38d14ff7.d.ts +0 -18
  149. package/lib/Decimal-85d45244.d.ts +0 -13
  150. package/lib/Number-db3c092d.d.ts +0 -20
  151. package/lib/Phone-4c4142e4.d.ts +0 -18
  152. package/lib/ZipCode-dc7dd4da.d.ts +0 -13
  153. package/lib/assets/styles/checkbox2.scss +0 -199
  154. package/lib/assets/styles/datepicker2.scss +0 -338
  155. package/lib/assets/styles/selectfield.scss +0 -409
  156. package/lib/assets/styles/slot.scss +0 -34
  157. package/lib/assets/styles/textfield.scss +0 -148
  158. package/lib/calendar/base/Day.d.ts +0 -8
  159. package/lib/calendar/base/Day.js +0 -36
  160. package/lib/calendar/base/Month.d.ts +0 -8
  161. package/lib/calendar/base/Month.js +0 -39
  162. package/lib/calendar/base/Week.d.ts +0 -8
  163. package/lib/calendar/base/Week.js +0 -35
  164. package/lib/form2/helpers.d.ts +0 -8
  165. package/lib/form2/helpers.js +0 -41
  166. package/lib/form2/index.d.ts +0 -9
  167. package/lib/form2/index.js +0 -36
  168. package/lib/form2/types.d.ts +0 -125
  169. package/lib/form2/types.js +0 -5
  170. package/lib/form2/useForm/index.d.ts +0 -5
  171. package/lib/form2/useForm/index.js +0 -203
  172. package/lib/index-368f781f.d.ts +0 -15
  173. package/lib/index-379b7504.d.ts +0 -44
  174. package/lib/index-7cb5e8b3.d.ts +0 -41
  175. package/lib/index-809a7899.d.ts +0 -23
  176. package/lib/index-c9247c1f.d.ts +0 -15
  177. package/lib/index-de21a05e.d.ts +0 -23
  178. package/lib/inputs2/checkboxfield/index.d.ts +0 -7
  179. package/lib/inputs2/checkboxfield/index.js +0 -146
  180. package/lib/inputs2/colorfield/index.d.ts +0 -9
  181. package/lib/inputs2/colorfield/index.js +0 -119
  182. package/lib/inputs2/date/base/constants.d.ts +0 -7
  183. package/lib/inputs2/date/base/constants.js +0 -43
  184. package/lib/inputs2/date/base/index.d.ts +0 -12
  185. package/lib/inputs2/date/base/index.js +0 -179
  186. package/lib/inputs2/date/datefield/calendarbox.d.ts +0 -7
  187. package/lib/inputs2/date/datefield/calendarbox.js +0 -115
  188. package/lib/inputs2/date/datefield/context.d.ts +0 -13
  189. package/lib/inputs2/date/datefield/context.js +0 -15
  190. package/lib/inputs2/date/datefield/index.d.ts +0 -9
  191. package/lib/inputs2/date/datefield/index.js +0 -334
  192. package/lib/inputs2/date/datefield/triggers.d.ts +0 -8
  193. package/lib/inputs2/date/datefield/triggers.js +0 -47
  194. package/lib/inputs2/date/datefield/types.d.ts +0 -61
  195. package/lib/inputs2/date/datefield/types.js +0 -5
  196. package/lib/inputs2/date/dateperiodfield/calendarbox.d.ts +0 -7
  197. package/lib/inputs2/date/dateperiodfield/calendarbox.js +0 -136
  198. package/lib/inputs2/date/dateperiodfield/context.d.ts +0 -13
  199. package/lib/inputs2/date/dateperiodfield/context.js +0 -17
  200. package/lib/inputs2/date/dateperiodfield/index.d.ts +0 -9
  201. package/lib/inputs2/date/dateperiodfield/index.js +0 -592
  202. package/lib/inputs2/date/dateperiodfield/triggers.d.ts +0 -6
  203. package/lib/inputs2/date/dateperiodfield/triggers.js +0 -120
  204. package/lib/inputs2/date/dateperiodfield/types.d.ts +0 -99
  205. package/lib/inputs2/date/dateperiodfield/types.js +0 -19
  206. package/lib/inputs2/date/helpers.d.ts +0 -20
  207. package/lib/inputs2/date/helpers.js +0 -62
  208. package/lib/inputs2/date/types.d.ts +0 -59
  209. package/lib/inputs2/date/types.js +0 -19
  210. package/lib/inputs2/index.d.ts +0 -29
  211. package/lib/inputs2/index.js +0 -38
  212. package/lib/inputs2/mask/BaseMask.d.ts +0 -10
  213. package/lib/inputs2/mask/BaseMask.js +0 -95
  214. package/lib/inputs2/mask/Cnpj.d.ts +0 -11
  215. package/lib/inputs2/mask/Cnpj.js +0 -57
  216. package/lib/inputs2/mask/Cpf.d.ts +0 -11
  217. package/lib/inputs2/mask/Cpf.js +0 -53
  218. package/lib/inputs2/mask/Phone.d.ts +0 -11
  219. package/lib/inputs2/mask/Phone.js +0 -26
  220. package/lib/inputs2/mask/ZipCode.d.ts +0 -11
  221. package/lib/inputs2/mask/ZipCode.js +0 -23
  222. package/lib/inputs2/mask/helpers.d.ts +0 -4
  223. package/lib/inputs2/mask/helpers.js +0 -57
  224. package/lib/inputs2/number/BaseNumber.d.ts +0 -10
  225. package/lib/inputs2/number/BaseNumber.js +0 -86
  226. package/lib/inputs2/number/Currency.d.ts +0 -11
  227. package/lib/inputs2/number/Currency.js +0 -47
  228. package/lib/inputs2/number/Decimal.d.ts +0 -11
  229. package/lib/inputs2/number/Decimal.js +0 -36
  230. package/lib/inputs2/number/Number.d.ts +0 -9
  231. package/lib/inputs2/number/Number.js +0 -49
  232. package/lib/inputs2/number/format_number.d.ts +0 -5
  233. package/lib/inputs2/number/format_number.js +0 -29
  234. package/lib/inputs2/selectfield/context.d.ts +0 -38
  235. package/lib/inputs2/selectfield/context.js +0 -15
  236. package/lib/inputs2/selectfield/helpers.d.ts +0 -6
  237. package/lib/inputs2/selectfield/helpers.js +0 -25
  238. package/lib/inputs2/selectfield/index.d.ts +0 -10
  239. package/lib/inputs2/selectfield/index.js +0 -491
  240. package/lib/inputs2/selectfield/item.d.ts +0 -11
  241. package/lib/inputs2/selectfield/item.js +0 -85
  242. package/lib/inputs2/selectfield/listbox.d.ts +0 -7
  243. package/lib/inputs2/selectfield/listbox.js +0 -103
  244. package/lib/inputs2/selectfield/search.d.ts +0 -7
  245. package/lib/inputs2/selectfield/search.js +0 -71
  246. package/lib/inputs2/selectfield/selections.d.ts +0 -10
  247. package/lib/inputs2/selectfield/selections.js +0 -86
  248. package/lib/inputs2/selectfield/triggers.d.ts +0 -8
  249. package/lib/inputs2/selectfield/triggers.js +0 -100
  250. package/lib/inputs2/selectfield/types.d.ts +0 -55
  251. package/lib/inputs2/selectfield/types.js +0 -21
  252. package/lib/inputs2/slot/index.d.ts +0 -14
  253. package/lib/inputs2/slot/index.js +0 -47
  254. package/lib/inputs2/textfield/index.d.ts +0 -8
  255. package/lib/inputs2/textfield/index.js +0 -159
  256. package/lib/tooltip/TooltipContent.d.ts +0 -7
  257. package/lib/tooltip/TooltipContent.js +0 -65
  258. package/lib/tooltip/useTooltip.d.ts +0 -30
  259. package/lib/tooltip/useTooltip.js +0 -128
@@ -3,44 +3,61 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.Tooltip = exports.default = Tooltip;
7
- var _react = _interopRequireDefault(require("react"));
8
- var _TooltipContent = _interopRequireDefault(require("./TooltipContent"));
9
- var _useTooltip2 = require("./useTooltip");
10
- const _excluded = ["showTooltip"];
6
+ exports.default = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactDom = _interopRequireDefault(require("react-dom"));
9
+ var uuid = _interopRequireWildcard(require("uuid"));
10
+ require("../assets/styles/tooltip.scss");
11
11
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
- function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
13
- function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
14
- function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
15
- function Tooltip(_ref) {
12
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
13
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
14
+ const Tooltip = _ref => {
16
15
  let {
17
16
  text,
18
17
  textError,
19
- targetRef,
20
- style,
21
- width,
22
- space,
23
- className,
24
- position = 'bottom',
25
- onDeniedText
18
+ tooltipRef,
19
+ style = '',
20
+ tooltipDimensions,
21
+ className = 'bottom',
22
+ handlerSetDimensions = () => {}
26
23
  } = _ref;
27
- const _useTooltip = (0, _useTooltip2.useTooltip)({
28
- targetRef,
29
- errorMessage: textError,
30
- position,
31
- width,
32
- text,
33
- space,
34
- onDeniedText
35
- }),
36
- {
37
- showTooltip
38
- } = _useTooltip,
39
- tooltipContentProps = _objectWithoutProperties(_useTooltip, _excluded);
40
- if (!showTooltip) return null;
41
- return /*#__PURE__*/_react.default.createElement(_TooltipContent.default, _extends({
42
- styleForContent: style,
43
- classNameForContent: className,
44
- position: position
45
- }, tooltipContentProps));
46
- }
24
+ const tooltipComponent = (0, _react.useRef)(document.createElement('div'));
25
+ (0, _react.useEffect)(() => {
26
+ tooltipComponent.current.id = `tooltip-${uuid.v1()}`;
27
+ tooltipComponent.current.className = `tooltip-component ${className} `;
28
+ tooltipComponent.current.dataset.testid = 'tooltip-component';
29
+ tooltipComponent.current.style.cssText = style;
30
+ document.body.appendChild(tooltipComponent.current);
31
+ const tooltipEl = document.querySelector(`div#${tooltipComponent.current.id}`);
32
+ let widthDimension = tooltipEl?.offsetWidth;
33
+ const heightDimension = tooltipEl?.offsetHeight;
34
+ if (tooltipDimensions && tooltipDimensions.width) {
35
+ widthDimension = tooltipDimensions.width;
36
+ }
37
+ handlerSetDimensions({
38
+ width: widthDimension,
39
+ height: Number(heightDimension)
40
+ });
41
+ // eslint-disable-next-line no-param-reassign
42
+ if (tooltipRef) {
43
+ tooltipRef.current = tooltipEl;
44
+ }
45
+ return () => {
46
+ document.body.removeChild(tooltipComponent.current);
47
+ };
48
+ }, []);
49
+ (0, _react.useEffect)(() => {
50
+ tooltipComponent.current.className = `tooltip-component ${className} `;
51
+ }, [className]);
52
+ (0, _react.useEffect)(() => {
53
+ tooltipComponent.current.style.cssText = style;
54
+ }, [style]);
55
+ (0, _react.useEffect)(() => {
56
+ tooltipComponent.current.className = textError ? `tooltip-error tooltip-component ${className}` : `tooltip-component ${className}`;
57
+ }, [textError]);
58
+ const getTooltipContent = () => /*#__PURE__*/_react.default.createElement("div", {
59
+ className: "tooltipcontent"
60
+ }, textError || text);
61
+ return /*#__PURE__*/_reactDom.default.createPortal(getTooltipContent(), tooltipComponent.current);
62
+ };
63
+ var _default = exports.default = Tooltip;
@@ -1,39 +1,17 @@
1
- import { RefObject, CSSProperties, MutableRefObject } from 'react';
2
- import { Position } from '../@types/Position.js';
1
+ import { MutableRefObject } from 'react';
3
2
 
4
3
  type Dimensions = {
5
4
  width: number | string;
6
5
  height: number;
7
6
  };
8
7
  interface ITooltipProps {
9
- targetRef: RefObject<HTMLElement>;
10
8
  text?: string;
11
- textError?: string;
12
- style?: CSSProperties;
9
+ style?: string;
13
10
  className?: string;
14
- width?: string | number;
15
- space?: number;
16
- position?: Exclude<Position, 'center'>;
17
- onDeniedText?: string;
18
- }
19
- interface ITooltipContentProps {
20
11
  tooltipRef?: MutableRefObject<HTMLElement | null>;
21
- text?: string;
22
- style?: string;
23
- styleForContent?: CSSProperties;
24
- classNameForContent?: string;
25
- width?: string | number;
26
- space?: number;
27
- tooltip?: string;
28
- position?: Exclude<Position, 'center'>;
29
12
  handlerSetDimensions?: ({ width, height }: Dimensions) => void;
30
13
  tooltipDimensions?: Dimensions;
31
14
  textError?: string;
32
15
  }
33
- interface ITooltipCommonProps {
34
- tooltip?: string;
35
- tooltipWidth?: string | number;
36
- tooltipPosition?: Exclude<Position, 'center'>;
37
- }
38
16
 
39
- export { ITooltipCommonProps, ITooltipContentProps, ITooltipProps };
17
+ export { ITooltipProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linear-react-components-ui",
3
- "version": "1.1.24-beta.1",
3
+ "version": "1.1.25-rc.0",
4
4
  "description": "Linear Sistemas ReactJs Components",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.cjs",
@@ -54,7 +54,7 @@
54
54
  "moment": "2.30.1",
55
55
  "prop-types": "15.8.1",
56
56
  "react-dev-utils": "12.0.0",
57
- "react-imask": "7.6.1",
57
+ "react-imask": "^7.6.1",
58
58
  "react-router-dom": "6.21.3",
59
59
  "react-syntax-highlighter": "15.5.0",
60
60
  "semver": "7.5.4",
@@ -68,7 +68,6 @@
68
68
  "@babel/preset-env": "7.20.2",
69
69
  "@babel/preset-react": "7.18.6",
70
70
  "@babel/preset-typescript": "7.23.3",
71
- "@faker-js/faker": "9.8.0",
72
71
  "@svgr/webpack": "8.1.0",
73
72
  "@swc/core": "1.4.13",
74
73
  "@testing-library/dom": "10.4.0",
@@ -1,24 +0,0 @@
1
- import React__default from 'react';
2
- import { T as TextFieldInputProps } from './index-379b7504.js';
3
- import { FactoryOpts } from 'imask';
4
-
5
- interface MaskFieldProps extends TextFieldInputProps {
6
- maskOptions?: FactoryOpts;
7
- onAccept?: (value: string) => void;
8
- onComplete?: (value: string, maskRef: any, e?: InputEvent) => void;
9
- onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
10
- autoCompleteMask?: string;
11
- value?: string;
12
- }
13
- declare const Input: React__default.ForwardRefExoticComponent<Pick<MaskFieldProps, "form" | "label" | "slot" | "style" | "title" | "children" | "pattern" | "className" | "customClass" | "key" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "readOnly" | "permissionAttr" | "skeletonize" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "labelUppercase" | "maxLength" | "required" | "onComplete" | "hint" | "hintPosition" | "textAlign" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "autoCompleteMask" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "onAccept" | "maskOptions"> & React__default.RefAttributes<HTMLInputElement>>;
14
-
15
- declare const BaseMask_Input: typeof Input;
16
- type BaseMask_MaskFieldProps = MaskFieldProps;
17
- declare namespace BaseMask {
18
- export {
19
- BaseMask_Input as Input,
20
- BaseMask_MaskFieldProps as MaskFieldProps,
21
- };
22
- }
23
-
24
- export { BaseMask as B, Input as I, MaskFieldProps as M };
@@ -1,23 +0,0 @@
1
- import React__default from 'react';
2
- import { FactoryOpts } from 'imask';
3
- import { T as TextFieldInputProps } from './index-379b7504.js';
4
-
5
- interface BaseNumberFieldProps extends TextFieldInputProps {
6
- value?: string;
7
- onComplete?: (value: string, maskRef: any, e?: InputEvent) => void;
8
- onChange?: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
9
- onAccept?: (value: string) => void;
10
- maskOptions?: FactoryOpts;
11
- }
12
- declare const Input: React__default.ForwardRefExoticComponent<Pick<BaseNumberFieldProps, "form" | "label" | "slot" | "style" | "title" | "children" | "pattern" | "className" | "customClass" | "key" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "readOnly" | "permissionAttr" | "skeletonize" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "labelUppercase" | "maxLength" | "required" | "onComplete" | "hint" | "hintPosition" | "textAlign" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "onAccept" | "maskOptions"> & React__default.RefAttributes<HTMLInputElement>>;
13
-
14
- type BaseNumber_BaseNumberFieldProps = BaseNumberFieldProps;
15
- declare const BaseNumber_Input: typeof Input;
16
- declare namespace BaseNumber {
17
- export {
18
- BaseNumber_BaseNumberFieldProps as BaseNumberFieldProps,
19
- BaseNumber_Input as Input,
20
- };
21
- }
22
-
23
- export { BaseNumber as B, Input as I, BaseNumberFieldProps as a };
@@ -1,18 +0,0 @@
1
- import React__default from 'react';
2
- import { M as MaskFieldProps } from './BaseMask-04df8f20.js';
3
-
4
- interface CnpjFieldProps extends MaskFieldProps {
5
- onValidate?: (errors: string[]) => void;
6
- }
7
- declare const Input: React__default.ForwardRefExoticComponent<Pick<CnpjFieldProps, "form" | "label" | "slot" | "style" | "title" | "children" | "pattern" | "className" | "customClass" | "key" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "readOnly" | "permissionAttr" | "skeletonize" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "labelUppercase" | "maxLength" | "required" | "onComplete" | "hint" | "hintPosition" | "textAlign" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "autoCompleteMask" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "onAccept" | "maskOptions" | "onValidate"> & React__default.RefAttributes<HTMLInputElement>>;
8
-
9
- type Cnpj_CnpjFieldProps = CnpjFieldProps;
10
- declare const Cnpj_Input: typeof Input;
11
- declare namespace Cnpj {
12
- export {
13
- Cnpj_CnpjFieldProps as CnpjFieldProps,
14
- Cnpj_Input as Input,
15
- };
16
- }
17
-
18
- export { Cnpj as C, Input as I, CnpjFieldProps as a };
@@ -1,18 +0,0 @@
1
- import React__default from 'react';
2
- import { M as MaskFieldProps } from './BaseMask-04df8f20.js';
3
-
4
- interface CpfFieldProps extends MaskFieldProps {
5
- onValidate?: (errors: string[]) => void;
6
- }
7
- declare const Input: React__default.ForwardRefExoticComponent<Pick<CpfFieldProps, "form" | "label" | "slot" | "style" | "title" | "children" | "pattern" | "className" | "customClass" | "key" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "readOnly" | "permissionAttr" | "skeletonize" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "labelUppercase" | "maxLength" | "required" | "onComplete" | "hint" | "hintPosition" | "textAlign" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "autoCompleteMask" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "onAccept" | "maskOptions" | "onValidate"> & React__default.RefAttributes<HTMLInputElement>>;
8
-
9
- type Cpf_CpfFieldProps = CpfFieldProps;
10
- declare const Cpf_Input: typeof Input;
11
- declare namespace Cpf {
12
- export {
13
- Cpf_CpfFieldProps as CpfFieldProps,
14
- Cpf_Input as Input,
15
- };
16
- }
17
-
18
- export { Cpf as C, Input as I, CpfFieldProps as a };
@@ -1,18 +0,0 @@
1
- import React__default from 'react';
2
- import { a as BaseNumberFieldProps } from './BaseNumber-c609c5a0.js';
3
-
4
- interface CurrencyProps extends BaseNumberFieldProps {
5
- currencySymbol?: string;
6
- min?: number;
7
- max?: number;
8
- }
9
- declare const Input: React__default.ForwardRefExoticComponent<Pick<CurrencyProps, "form" | "label" | "slot" | "style" | "title" | "children" | "pattern" | "className" | "customClass" | "key" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "readOnly" | "permissionAttr" | "skeletonize" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "labelUppercase" | "maxLength" | "required" | "onComplete" | "hint" | "hintPosition" | "textAlign" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "currencySymbol" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "onAccept" | "maskOptions"> & React__default.RefAttributes<HTMLInputElement>>;
10
-
11
- declare const Currency_Input: typeof Input;
12
- declare namespace Currency {
13
- export {
14
- Currency_Input as Input,
15
- };
16
- }
17
-
18
- export { Currency as C, Input as I };
@@ -1,13 +0,0 @@
1
- import React__default from 'react';
2
- import { a as BaseNumberFieldProps } from './BaseNumber-c609c5a0.js';
3
-
4
- declare const Input: React__default.ForwardRefExoticComponent<Pick<BaseNumberFieldProps, "form" | "label" | "slot" | "style" | "title" | "children" | "pattern" | "className" | "customClass" | "key" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "readOnly" | "permissionAttr" | "skeletonize" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "labelUppercase" | "maxLength" | "required" | "onComplete" | "hint" | "hintPosition" | "textAlign" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "onAccept" | "maskOptions"> & React__default.RefAttributes<HTMLInputElement>>;
5
-
6
- declare const Decimal_Input: typeof Input;
7
- declare namespace Decimal {
8
- export {
9
- Decimal_Input as Input,
10
- };
11
- }
12
-
13
- export { Decimal as D, Input as I };
@@ -1,20 +0,0 @@
1
- import React__default, { ReactNode } from 'react';
2
- import { T as TextFieldInputProps } from './index-379b7504.js';
3
-
4
- interface NumberFieldProps extends Omit<TextFieldInputProps, 'type' | 'value' | 'onChange'> {
5
- children?: ReactNode;
6
- min?: number;
7
- max?: number;
8
- }
9
- declare const Input: React__default.ForwardRefExoticComponent<Pick<NumberFieldProps, "form" | "label" | "slot" | "style" | "title" | "children" | "pattern" | "className" | "customClass" | "key" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "readOnly" | "permissionAttr" | "skeletonize" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "labelUppercase" | "maxLength" | "required" | "hint" | "hintPosition" | "textAlign" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength"> & React__default.RefAttributes<HTMLInputElement>>;
10
-
11
- declare const Number_Input: typeof Input;
12
- type Number_NumberFieldProps = NumberFieldProps;
13
- declare namespace Number {
14
- export {
15
- Number_Input as Input,
16
- Number_NumberFieldProps as NumberFieldProps,
17
- };
18
- }
19
-
20
- export { Input as I, Number as N, NumberFieldProps as a };
@@ -1,18 +0,0 @@
1
- import React__default from 'react';
2
- import { M as MaskFieldProps } from './BaseMask-04df8f20.js';
3
-
4
- interface PhoneFieldProps extends MaskFieldProps {
5
- isCellphone?: boolean;
6
- }
7
- declare const Input: React__default.ForwardRefExoticComponent<Pick<PhoneFieldProps, "form" | "label" | "slot" | "style" | "title" | "children" | "pattern" | "className" | "customClass" | "key" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "readOnly" | "permissionAttr" | "skeletonize" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "labelUppercase" | "maxLength" | "required" | "onComplete" | "hint" | "hintPosition" | "textAlign" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "autoCompleteMask" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "onAccept" | "maskOptions" | "isCellphone"> & React__default.RefAttributes<HTMLInputElement>>;
8
-
9
- declare const Phone_Input: typeof Input;
10
- type Phone_PhoneFieldProps = PhoneFieldProps;
11
- declare namespace Phone {
12
- export {
13
- Phone_Input as Input,
14
- Phone_PhoneFieldProps as PhoneFieldProps,
15
- };
16
- }
17
-
18
- export { Input as I, Phone as P, PhoneFieldProps as a };
@@ -1,13 +0,0 @@
1
- import React__default from 'react';
2
- import { M as MaskFieldProps } from './BaseMask-04df8f20.js';
3
-
4
- declare const Input: React__default.ForwardRefExoticComponent<Pick<MaskFieldProps, "form" | "label" | "slot" | "style" | "title" | "children" | "pattern" | "className" | "customClass" | "key" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "readOnly" | "permissionAttr" | "skeletonize" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "type" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "list" | "step" | "labelUppercase" | "maxLength" | "required" | "onComplete" | "hint" | "hintPosition" | "textAlign" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "autoCompleteMask" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "onAccept" | "maskOptions"> & React__default.RefAttributes<HTMLInputElement>>;
5
-
6
- declare const ZipCode_Input: typeof Input;
7
- declare namespace ZipCode {
8
- export {
9
- ZipCode_Input as Input,
10
- };
11
- }
12
-
13
- export { Input as I, ZipCode as Z };