linear-react-components-ui 1.1.24-rc.2 → 1.1.25-beta.3

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 (48) hide show
  1. package/lib/assets/styles/button.scss +1 -1
  2. package/lib/assets/styles/calendar.scss +3 -3
  3. package/lib/assets/styles/datepicker2.scss +7 -3
  4. package/lib/assets/styles/dialog.scss +1 -1
  5. package/lib/assets/styles/drawers.scss +1 -2
  6. package/lib/assets/styles/fieldset.scss +1 -1
  7. package/lib/assets/styles/gridlayout.scss +20 -19
  8. package/lib/assets/styles/multiSelect.scss +6 -6
  9. package/lib/assets/styles/periodpicker.scss +1 -1
  10. package/lib/assets/styles/selectfield.scss +7 -3
  11. package/lib/assets/styles/table.scss +6 -0
  12. package/lib/assets/styles/tabs.scss +6 -2
  13. package/lib/assets/styles/textfield.scss +7 -3
  14. package/lib/buttons/DefaultButton.js +1 -1
  15. package/lib/checkbox/index.js +3 -1
  16. package/lib/checkbox/types.d.ts +1 -0
  17. package/lib/dialog/base/index.js +20 -22
  18. package/lib/dialog/form/index.js +6 -4
  19. package/lib/drawer/Drawer.js +2 -3
  20. package/lib/drawer/index.js +1 -1
  21. package/lib/icons/helper.d.ts +12 -0
  22. package/lib/icons/helper.js +12 -0
  23. package/lib/{index-cd005ed1.d.ts → index-19761a50.d.ts} +1 -1
  24. package/lib/{index-299f841a.d.ts → index-4bda404f.d.ts} +2 -1
  25. package/lib/{index-e71434f9.d.ts → index-afb7b5a9.d.ts} +1 -1
  26. package/lib/inputs/date/index.js +3 -6
  27. package/lib/inputs/multiSelect/Dropdown.js +4 -3
  28. package/lib/inputs/multiSelect/index.js +23 -5
  29. package/lib/inputs/multiSelect/types.d.ts +2 -0
  30. package/lib/inputs/period/PeriodList.js +3 -12
  31. package/lib/inputs/period/index.js +97 -124
  32. package/lib/inputs/search/index.js +6 -2
  33. package/lib/inputs/select/multiple/index.js +3 -2
  34. package/lib/inputs/select/simple/index.js +4 -3
  35. package/lib/inputs/select/types.d.ts +1 -0
  36. package/lib/inputs/types.d.ts +1 -0
  37. package/lib/inputs2/checkboxfield/index.d.ts +1 -1
  38. package/lib/inputs2/checkboxfield/index.js +4 -3
  39. package/lib/inputs2/index.d.ts +3 -3
  40. package/lib/inputs2/numberfield/index.js +19 -2
  41. package/lib/inputs2/radiofield/index.d.ts +1 -1
  42. package/lib/inputs2/radiofield/index.js +15 -3
  43. package/lib/inputs2/radiofield/types.d.ts +1 -0
  44. package/lib/inputs2/selectfield/index.d.ts +1 -1
  45. package/lib/table/index.js +18 -8
  46. package/lib/table/types.d.ts +1 -0
  47. package/lib/tabs/index.js +2 -2
  48. package/package.json +1 -1
@@ -366,7 +366,7 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
366
366
  border-color: transparent !important;
367
367
  transition: none;
368
368
 
369
- > svg {
369
+ svg {
370
370
  opacity: 0;
371
371
  visibility: hidden;
372
372
  }
@@ -44,10 +44,10 @@ $border-radius-size: 5px;
44
44
  justify-content: center;
45
45
  background-color: transparent;
46
46
  font-weight: bold;
47
- border: none;
47
+ border: 1px solid transparent;
48
48
 
49
49
  svg {
50
- margin: 0;
50
+ margin: 0 !important;
51
51
  }
52
52
 
53
53
  &:hover {
@@ -110,7 +110,7 @@ $border-radius-size: 5px;
110
110
  width: 100%;
111
111
  padding: 0;
112
112
  font-size: 13px;
113
- border: none;
113
+ border: 2px solid transparent;
114
114
  background-color: transparent;
115
115
 
116
116
  &.-nowday {
@@ -58,7 +58,7 @@ input::-webkit-inner-spin-button {
58
58
  .container {
59
59
  position: relative;
60
60
  width: 100%;
61
- height: 32px;
61
+ height: 31px;
62
62
  margin: 0;
63
63
  padding: 0;
64
64
  overflow: hidden;
@@ -106,14 +106,18 @@ input::-webkit-inner-spin-button {
106
106
  .input {
107
107
  @extend %input-placeholder;
108
108
  @extend %component-fonts;
109
- flex-grow: 1;
110
- max-width: 100%;
109
+ flex: 1;
110
+ height: 100%;
111
+ width: 100%;
111
112
  padding: 6px;
112
113
  font-size: 0.875rem;
113
114
  text-indent: 0.375rem;
114
115
  line-height: 0.875rem;
115
116
  border: none;
116
117
  background-color: transparent;
118
+ overflow: hidden;
119
+ text-overflow: ellipsis;
120
+ white-space: nowrap;
117
121
  &[data-state-text-align=left] {
118
122
  text-align: left;
119
123
  }
@@ -96,7 +96,7 @@ $shadow-button-inset-default: inset 0 0 0 1px $default-border-color, $shadow-but
96
96
  }
97
97
  }
98
98
  }
99
- .footer {
99
+ > .footer {
100
100
  bottom: 0px;
101
101
  background: #ffffff;
102
102
  padding: 10px 0 8px 8px;
@@ -1,9 +1,9 @@
1
1
  @import "colors.scss";
2
2
  @import "commons.scss";
3
3
  @import "effects.scss";
4
+
4
5
  .drawer-component {
5
6
  position: fixed;
6
- z-index: 9998;
7
7
  overflow: auto;
8
8
  & .drawercontainer {
9
9
  font-family: 'Roboto', sans-serif;
@@ -155,5 +155,4 @@
155
155
  width: 100%;
156
156
  top: 0;
157
157
  left: 0;
158
- z-index: 9997;
159
158
  }
@@ -64,7 +64,7 @@
64
64
  background-color: $fieldset-default;
65
65
  text-transform: uppercase;
66
66
  border-radius: 0px 10px 0px 0px;
67
- z-index: 9;
67
+ z-index: 0;
68
68
  display: flex;
69
69
  align-items: center;
70
70
  gap: 8px;
@@ -26,31 +26,32 @@ html {
26
26
  &.-withskeleton {
27
27
  margin-bottom: 10px;
28
28
  }
29
- }
30
29
 
31
- @media (min-width: 576px) {
32
- .container {
33
- max-width: 540px;
30
+ @media (min-width: 576px) {
31
+ >.container {
32
+ max-width: 540px;
33
+ }
34
34
  }
35
- }
36
-
37
- @media (min-width: 768px) {
38
- .container {
39
- max-width: 720px;
35
+
36
+ @media (min-width: 768px) {
37
+ >.container {
38
+ max-width: 720px;
39
+ }
40
40
  }
41
- }
42
-
43
- @media (min-width: 992px) {
44
- .container {
45
- max-width: 960px;
41
+
42
+ @media (min-width: 992px) {
43
+ >.container {
44
+ max-width: 960px;
45
+ }
46
46
  }
47
- }
48
-
49
- @media (min-width: 1200px) {
50
- .container {
51
- max-width: 1140px;
47
+
48
+ @media (min-width: 1200px) {
49
+ >.container {
50
+ max-width: 1140px;
51
+ }
52
52
  }
53
53
  }
54
+
54
55
  .container-fluid {
55
56
  width: 100%;
56
57
  padding-right: 15px;
@@ -58,23 +58,23 @@
58
58
  z-index: 9999;
59
59
 
60
60
  >.filtercontainer {
61
- position: relative;
62
- display: grid;
63
- grid-template-columns: 1fr 20px;
61
+ display: flex;
62
+ align-items: center;
63
+ justify-content: start;
64
64
  border: 1px solid $component-border-color;
65
65
  margin: 4px;
66
66
 
67
67
  >.filterinput {
68
68
  border: 0;
69
+ flex: 1;
69
70
  font-size: 13px;
70
71
  text-indent: 4px;
71
72
  padding: 10px 5px;
72
73
  }
73
74
 
74
75
  >.filtericon {
75
- position: absolute;
76
- right: 5px;
77
- top: 10px;
76
+ margin: 0px;
77
+ margin-right: 6px;
78
78
  }
79
79
  }
80
80
 
@@ -76,7 +76,7 @@
76
76
  display: flex;
77
77
  cursor: pointer;
78
78
  justify-content: stretch;
79
-
79
+
80
80
  &:not(:last-child) {
81
81
  border-bottom: solid 1px $separator-background;
82
82
  }
@@ -62,7 +62,7 @@ input::-webkit-inner-spin-button {
62
62
  .container {
63
63
  position: relative;
64
64
  width: 100%;
65
- min-height: 32px;
65
+ min-height: 31px;
66
66
  margin: 0;
67
67
  padding: 0;
68
68
  overflow: hidden;
@@ -116,14 +116,18 @@ input::-webkit-inner-spin-button {
116
116
  .input {
117
117
  @extend %input-placeholder;
118
118
  @extend %component-fonts;
119
- flex-grow: 1;
120
- max-width: 100%;
119
+ flex: 1;
120
+ width: 100%;
121
+ height: 100%;
121
122
  padding: 6px;
122
123
  font-size: 0.875rem;
123
124
  text-indent: 0.375rem;
124
125
  line-height: 0.875rem;
125
126
  border: none;
126
127
  background-color: transparent;
128
+ overflow: hidden;
129
+ text-overflow: ellipsis;
130
+ white-space: nowrap;
127
131
  &[data-state-text-align=left] {
128
132
  text-align: left;
129
133
  }
@@ -177,3 +177,9 @@
177
177
  overflow: hidden;
178
178
  }
179
179
  }
180
+
181
+ div:has(table.table-component).horizontal-scroll-container {
182
+ height: auto;
183
+ width: 100%;
184
+ overflow-x: scroll;
185
+ }
@@ -82,8 +82,6 @@ $dropdown-width: 38px;
82
82
  }
83
83
 
84
84
  .menu>.menuitem>.menubutton {
85
- white-space: nowrap;
86
- text-overflow: ellipsis;
87
85
  background: transparent;
88
86
  border: 0;
89
87
  width: 100%;
@@ -92,10 +90,16 @@ $dropdown-width: 38px;
92
90
  box-shadow: none !important;
93
91
 
94
92
  .button-container {
93
+ overflow: hidden;
95
94
  justify-content: flex-start;
96
95
  > svg {
97
96
  margin-right: 10px;
98
97
  }
98
+ .button-content {
99
+ overflow: hidden;
100
+ white-space: nowrap;
101
+ text-overflow: ellipsis;
102
+ }
99
103
  }
100
104
  }
101
105
 
@@ -62,7 +62,7 @@ input[type="number"] {
62
62
  }
63
63
  .container {
64
64
  width: 100%;
65
- height: 32px;
65
+ height: 31px;
66
66
  margin: 0;
67
67
  padding: 0;
68
68
  overflow: hidden;
@@ -108,14 +108,18 @@ input[type="number"] {
108
108
  .input {
109
109
  @extend %input-placeholder;
110
110
  @extend %component-fonts;
111
- flex-grow: 1;
112
- max-width: 100%;
111
+ flex: 1;
112
+ height: 100%;
113
+ width: 100%;
113
114
  padding: 6px;
114
115
  font-size: 0.875rem;
115
116
  text-indent: 0.375rem;
116
117
  line-height: 0.875rem;
117
118
  border: none;
118
119
  background-color: transparent;
120
+ overflow: hidden;
121
+ text-overflow: ellipsis;
122
+ white-space: nowrap;
119
123
  &[data-state-text-align="left"] {
120
124
  text-align: left;
121
125
  }
@@ -67,7 +67,7 @@ const DefaultButton = _ref => {
67
67
  const refButton = (0, _react.useRef)(null);
68
68
  const disabledIconColor = 'rgb(193, 193, 193)';
69
69
  const disabledByPermission = onDenied.disabled;
70
- const isDisabled = !!onDenied.disabled || disabled;
70
+ const isDisabled = !!onDenied.disabled || disabled || skeletonize;
71
71
  const getClass = () => "button-component ".concat(className, "\n ").concat(customClass, "\n ").concat(transparent && '-transparent', "\n ").concat(isDisabled && '-disabled', "\n ").concat(size && "-".concat(size), "\n ").concat(dropdown && !round && 'icon-right', "\n ").concat(dropdown && round && 'icon-center', "\n ").concat(iconAlign && !dropdown && "icon-".concat(iconAlign), "\n ").concat(boxShadow ? '' : '-shadowsdisabled', "\n ").concat(round && '-round');
72
72
  const returnPadlockIcon = resultantStyle => /*#__PURE__*/_react.default.createElement(_icons.default, {
73
73
  name: "padlock",
@@ -45,7 +45,8 @@ const CheckBox = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
45
45
  customClassForLabel,
46
46
  hintPosition = 'below',
47
47
  themePopover = 'light',
48
- popoverAlign = 'left'
48
+ popoverAlign = 'left',
49
+ tabIndex = 0
49
50
  } = _ref;
50
51
  const [isChecked, setIsChecked] = (0, _react.useState)(checked);
51
52
  const options = [_permissionValidations.OPTIONS_ON_DENIED.disabled, _permissionValidations.OPTIONS_ON_DENIED.unvisible];
@@ -95,6 +96,7 @@ const CheckBox = /*#__PURE__*/(0, _react.forwardRef)((_ref, ref) => {
95
96
  if (targetRef) targetRef(r);
96
97
  inputRef.current = r;
97
98
  },
99
+ tabIndex: tabIndex,
98
100
  className: "input",
99
101
  type: "checkbox",
100
102
  autoFocus: autofocus,
@@ -40,6 +40,7 @@ interface ICheckBoxProps {
40
40
  targetSpanRef?: (ref: HTMLSpanElement | null) => void;
41
41
  errorMessages?: string[] | undefined;
42
42
  customClassForLabel?: string;
43
+ tabIndex?: number;
43
44
  themePopover?: 'light' | 'dark';
44
45
  popoverAlign?: 'right' | 'left';
45
46
  }
@@ -4,15 +4,15 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = exports.DialogContext = void 0;
7
- var _react = _interopRequireWildcard(require("react"));
7
+ require("../../assets/styles/dialog.scss");
8
+ var _react = _interopRequireDefault(require("react"));
8
9
  var _reactDom = _interopRequireDefault(require("react-dom"));
9
10
  var uuid = _interopRequireWildcard(require("uuid"));
10
11
  var _style = _interopRequireDefault(require("./style"));
11
- require("../../assets/styles/dialog.scss");
12
12
  var _form = require("../form");
13
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
14
13
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
15
- const DialogContext = exports.DialogContext = /*#__PURE__*/(0, _react.createContext)({});
14
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
15
+ const DialogContext = exports.DialogContext = /*#__PURE__*/_react.default.createContext({});
16
16
  const {
17
17
  body
18
18
  } = document;
@@ -33,23 +33,23 @@ const BaseDialog = props => {
33
33
  } = props;
34
34
  const {
35
35
  headerRef
36
- } = (0, _react.useContext)(_form.FormDialogContext);
37
- const [isDragging, setIsDragging] = (0, _react.useState)(false);
38
- const [open = true, setOpen] = (0, _react.useState)(openProp);
39
- const wrapperEl = (0, _react.useRef)(null);
40
- const modalContainerRef = (0, _react.useRef)(null);
41
- const focusableElementsRef = (0, _react.useRef)([]);
36
+ } = _react.default.useContext(_form.FormDialogContext);
37
+ const [open = true, setOpen] = _react.default.useState(openProp);
38
+ const [isDragging, setIsDragging] = _react.default.useState(false);
39
+ const wrapperEl = _react.default.useRef(null);
40
+ const modalContainerRef = _react.default.useRef(null);
41
+ const focusableElementsRef = _react.default.useRef([]);
42
42
  if (openProp !== undefined && openProp !== open) {
43
43
  setOpen(openProp);
44
44
  }
45
- const handleClose = () => {
45
+ const handleClose = _react.default.useCallback(() => {
46
46
  if (openProp !== undefined && onOpenChange) {
47
47
  onOpenChange(false);
48
48
  } else {
49
49
  if (handlerClose) handlerClose();
50
50
  if (onOpenChange) onOpenChange(false);
51
51
  }
52
- };
52
+ }, [openProp, onOpenChange, handlerClose]);
53
53
  const handleClickOutside = event => {
54
54
  if (!closeOnOutsideClick) return;
55
55
  const target = event.target;
@@ -58,17 +58,15 @@ const BaseDialog = props => {
58
58
  handleClose();
59
59
  }
60
60
  };
61
- const onKeyDownPress = event => {
61
+ const onKeyDownPress = _react.default.useCallback(event => {
62
62
  if ((event === null || event === void 0 ? void 0 : event.key) === 'Escape') {
63
63
  event.stopPropagation();
64
64
  handleClose();
65
65
  }
66
- };
67
- (0, _react.useEffect)(() => {
66
+ }, [handleClose]);
67
+ _react.default.useEffect(() => {
68
68
  if (open && modalContainerRef.current) {
69
- var _focusableElementsRef;
70
69
  focusableElementsRef.current = Array.from(modalContainerRef.current.querySelectorAll("button, a, input, select, textarea, [tabindex]:not([tabindex='-1'])"));
71
- (_focusableElementsRef = focusableElementsRef.current[0]) === null || _focusableElementsRef === void 0 ? void 0 : _focusableElementsRef.focus();
72
70
  }
73
71
  }, [open]);
74
72
  const onDialogPositionChange = _ref => {
@@ -151,7 +149,7 @@ const BaseDialog = props => {
151
149
  style: (0, _style.default)(props),
152
150
  ref: wrapperEl
153
151
  }, children)));
154
- (0, _react.useLayoutEffect)(() => {
152
+ _react.default.useLayoutEffect(() => {
155
153
  const {
156
154
  activeElement
157
155
  } = document;
@@ -160,7 +158,7 @@ const BaseDialog = props => {
160
158
  lastElementActiveBeforeOpen === null || lastElementActiveBeforeOpen === void 0 ? void 0 : lastElementActiveBeforeOpen.focus();
161
159
  };
162
160
  }, []);
163
- (0, _react.useEffect)(() => {
161
+ _react.default.useEffect(() => {
164
162
  if (open) {
165
163
  if (closeOnEsc) {
166
164
  document.addEventListener('keydown', onKeyDownPress);
@@ -169,8 +167,8 @@ const BaseDialog = props => {
169
167
  return () => {
170
168
  document.removeEventListener('keydown', onKeyDownPress);
171
169
  };
172
- }, [open, closeOnEsc]);
173
- (0, _react.useEffect)(() => {
170
+ }, [open, closeOnEsc, onKeyDownPress]);
171
+ _react.default.useEffect(() => {
174
172
  if (open) {
175
173
  document.addEventListener('mousedown', onMouseDown);
176
174
  document.addEventListener('mouseup', onMouseUp);
@@ -182,7 +180,7 @@ const BaseDialog = props => {
182
180
  document.removeEventListener('mousemove', onMouseMove);
183
181
  };
184
182
  }, [isDragging, open]);
185
- (0, _react.useEffect)(() => {
183
+ _react.default.useEffect(() => {
186
184
  const scrollbarWidth = window.innerWidth - document.documentElement.clientWidth;
187
185
  const originalOverflow = document.body.style.overflow;
188
186
  const originalPaddingRight = document.body.style.paddingRight;
@@ -34,6 +34,7 @@ const ModalForm = props => {
34
34
  wrapperClassName = '',
35
35
  contentClassName = '',
36
36
  headerClassName = '',
37
+ closeOnEsc = true,
37
38
  securityBeforeUnload = false,
38
39
  securityTitle = 'Dados Alterados',
39
40
  securityText = 'Você possui dados alterados, confirma o fechamento?'
@@ -45,7 +46,7 @@ const ModalForm = props => {
45
46
  opacity: 0.4,
46
47
  pointerEvent: 'none'
47
48
  } : {};
48
- const handlerClose = () => {
49
+ const handlerClose = (0, _react.useCallback)(() => {
49
50
  if (securityBeforeUnload) {
50
51
  setShowSecurityDialog(true);
51
52
  return;
@@ -53,7 +54,7 @@ const ModalForm = props => {
53
54
  if (props.handlerClose) {
54
55
  props.handlerClose();
55
56
  }
56
- };
57
+ }, [securityBeforeUnload, props.handlerClose]);
57
58
  const onConfirmSecurity = () => {
58
59
  var _props$handlerClose;
59
60
  (_props$handlerClose = props.handlerClose) === null || _props$handlerClose === void 0 ? void 0 : _props$handlerClose.call(props);
@@ -93,8 +94,9 @@ const ModalForm = props => {
93
94
  height: height,
94
95
  className: className,
95
96
  wrapperClassName: "dialog-form-wrapper ".concat(wrapperClassName),
96
- securityBeforeUnload: securityBeforeUnload,
97
- handlerClose: handlerClose
97
+ handlerClose: handlerClose,
98
+ closeOnEsc: closeOnEsc,
99
+ securityBeforeUnload: securityBeforeUnload
98
100
  }), props.title && /*#__PURE__*/_react.default.createElement("div", {
99
101
  className: "header-form ".concat(headerClassName)
100
102
  }, /*#__PURE__*/_react.default.createElement(_Header.default, {
@@ -82,6 +82,7 @@ const BaseDrawer = _ref => {
82
82
  const drawerOverlay = document.createElement('div');
83
83
  drawerOverlay.className = 'drawer-overlay';
84
84
  drawerOverlay.id = id;
85
+ drawerOverlay.inert = false;
85
86
  drawerOverlay.dataset.testid = 'drawer-overlay';
86
87
  body.appendChild(drawerOverlay);
87
88
  };
@@ -100,10 +101,8 @@ const BaseDrawer = _ref => {
100
101
  } else {
101
102
  body = document.getElementById(targetId);
102
103
  }
104
+ if (overlay && body) setDrawerOverlay(body, overlayId);
103
105
  if (body) setDrawerComponent(body, randomId);
104
- if (overlay && body) {
105
- setDrawerOverlay(body, overlayId);
106
- }
107
106
  return () => {
108
107
  const drawerOverlay = document.getElementById(overlayId);
109
108
  if (closeOnEsc) document.body.removeEventListener('keydown', closeDrawerOnEsc);
@@ -16,10 +16,10 @@ Object.defineProperty(exports, "DrawerHeader", {
16
16
  }
17
17
  });
18
18
  exports.default = void 0;
19
+ require("../assets/styles/drawers.scss");
19
20
  var _Drawer = _interopRequireDefault(require("./Drawer"));
20
21
  var _Header = _interopRequireDefault(require("./Header"));
21
22
  var _Content = _interopRequireDefault(require("./Content"));
22
- require("../assets/styles/drawers.scss");
23
23
  var _withFormSecurity = _interopRequireDefault(require("../form/withFormSecurity"));
24
24
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
25
25
  var _default = exports.default = (0, _withFormSecurity.default)(_Drawer.default);
@@ -651,6 +651,18 @@ declare const _default: {
651
651
  viewbox: string;
652
652
  paths: string[];
653
653
  };
654
+ perdaConsumoInterno: {
655
+ viewbox: string;
656
+ paths: string[];
657
+ };
658
+ inventario: {
659
+ viewbox: string;
660
+ paths: string[];
661
+ };
662
+ trocaFornecedor: {
663
+ viewbox: string;
664
+ paths: string[];
665
+ };
654
666
  };
655
667
 
656
668
  export { _default as default };
@@ -656,5 +656,17 @@ var _default = exports.default = {
656
656
  minus: {
657
657
  viewbox: '0 0 16 16',
658
658
  paths: ['M0 5h16v6h-16z']
659
+ },
660
+ perdaConsumoInterno: {
661
+ viewbox: '0 0 16 16',
662
+ paths: ['M6 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z', 'M11 7.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.412 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.338-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z', 'M6 12.25c0 0.412-0.338 0.75-0.75 0.75h-1.5c-0.413 0-0.75-0.338-0.75-0.75v-1.5c0-0.412 0.337-0.75 0.75-0.75h1.5c0.412 0 0.75 0.338 0.75 0.75v1.5z', 'M14.251 2.5l1.749-1.749v-0.751h-0.751l-1.749 1.749-1.749-1.749h-0.751v0.751l1.749 1.749-1.749 1.749v0.751h0.751l1.749-1.749 1.749 1.749h0.751v-0.751z', 'M0 12h1v2h-1v-2z', 'M0 9h1v2h-1v-2z', 'M13 7h1v2h-1v-2z', 'M13 13h1v2h-1v-2z', 'M13 10h1v2h-1v-2z', 'M0 6h1v2h-1v-2z', 'M0 3h1v2h-1v-2z', 'M8 2h2v1h-2v-1z', 'M5 2h2v1h-2v-1z', 'M2 2h2v1h-2v-1z', 'M7 15h2v1h-2v-1z', 'M10 15h2v1h-2v-1z', 'M4 15h2v1h-2v-1z', 'M1 15h2v1h-2v-1z']
663
+ },
664
+ inventario: {
665
+ viewbox: '0 0 16 16',
666
+ paths: ['M11 4v-4h-11v11h4v5h12v-12h-5zM10 6.125h-4v-0.125h4v0.125zM10 10h-4v-0.125h4v0.125zM10 9.625h-4v-0.25h4v0.25zM10 9.125h-4v-0.25h4v0.25zM10 8.625h-4v-0.25h4v0.25zM10 8.125h-4v-0.25h4v0.25zM10 7.625h-4v-0.25h4v0.25zM10 7.125h-4v-0.25h4v0.25zM10 6.625h-4v-0.25h4v0.25zM4 10h-3v-9h9v3h-6v6zM15 15h-10v-3h7v-7h3v10z']
667
+ },
668
+ trocaFornecedor: {
669
+ viewbox: '0 0 16 16',
670
+ paths: ['M11 8v6h1v-6h2.5l-3-3-3 3z', 'M1 3h1.5v1h-1.5v-1z', 'M3 3h1.5v1h-1.5v-1z', 'M5 3h1v1.5h-1v-1.5z', 'M1 6.5h1v1.5h-1v-1.5z', 'M2.5 7h1.5v1h-1.5v-1z', 'M4.5 7h1.5v1h-1.5v-1z', 'M1 4.5h1v1.5h-1v-1.5z', 'M5 5h1v1.5h-1v-1.5z', 'M5 11v3h-3v-3h3zM6 10h-5v5h5v-5z']
659
671
  }
660
672
  };
@@ -4,7 +4,7 @@ import { Options } from './inputs2/selectfield/options.js';
4
4
  import { Item } from './inputs2/selectfield/item.js';
5
5
  import { SelectFieldInputProps } from './inputs2/selectfield/types.js';
6
6
 
7
- declare const Input: React__default.ForwardRefExoticComponent<Pick<SelectFieldInputProps, "form" | "label" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "align" | "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" | "children" | "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" | "onClick" | "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" | "customClass" | "permissionAttr" | "size" | "skeletonize" | "disabled" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "tooltip" | "tooltipWidth" | "tooltipPosition" | "checked" | "required" | "hint" | "hintPosition" | "themePopover" | "popoverAlign" | "width" | "height" | "multiple" | "readOnly" | "list" | "step" | "maxLength" | "textAlign" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "showClearButton" | "searchOnDropdown" | "undigitable" | "openDropdownOnFocus" | "onSearch" | "striped" | "src" | "alt" | "max" | "min" | "errors" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "externalSearch" | "notFoundFilterLabel" | "searchInputPlaceholder" | "multipleInputLabelEmpty" | "multipleInputLabelManySelection" | "dropdownAlignButton"> & React__default.RefAttributes<HTMLInputElement>>;
7
+ declare const Input: React__default.ForwardRefExoticComponent<Pick<SelectFieldInputProps, "form" | "label" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "align" | "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" | "children" | "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" | "onClick" | "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" | "customClass" | "permissionAttr" | "size" | "skeletonize" | "disabled" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "tooltip" | "tooltipWidth" | "tooltipPosition" | "checked" | "required" | "hint" | "hintPosition" | "themePopover" | "popoverAlign" | "width" | "height" | "multiple" | "readOnly" | "list" | "step" | "maxLength" | "textAlign" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "showClearButton" | "searchOnDropdown" | "undigitable" | "openDropdownOnFocus" | "onSearch" | "striped" | "max" | "min" | "src" | "alt" | "errors" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "externalSearch" | "notFoundFilterLabel" | "searchInputPlaceholder" | "multipleInputLabelEmpty" | "multipleInputLabelManySelection" | "dropdownAlignButton"> & React__default.RefAttributes<HTMLInputElement>>;
8
8
 
9
9
  declare const index_Input: typeof Input;
10
10
  declare const index_Item: typeof Item;
@@ -26,8 +26,9 @@ interface CheckboxFieldInputProps extends InputHTMLProps, ITooltipCommonProps {
26
26
  popoverAlign?: Extract<Position, 'left' | 'right'>;
27
27
  permissionAttr?: PermissionAttr;
28
28
  onDeniedActions?: OnDenied;
29
+ tabIndex?: number;
29
30
  }
30
- declare const Input: React__default.ForwardRefExoticComponent<Pick<CheckboxFieldInputProps, "form" | "label" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "align" | "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" | "children" | "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" | "onClick" | "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" | "customClass" | "permissionAttr" | "size" | "skeletonize" | "disabled" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "tooltip" | "tooltipWidth" | "tooltipPosition" | "checked" | "required" | "labelUppercase" | "hint" | "hintPosition" | "themePopover" | "popoverAlign" | "width" | "height" | "multiple" | "readOnly" | "list" | "step" | "maxLength" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "src" | "alt" | "max" | "min" | "errors" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "variant"> & React__default.RefAttributes<HTMLInputElement>>;
31
+ declare const Input: React__default.ForwardRefExoticComponent<Pick<CheckboxFieldInputProps, "form" | "label" | "slot" | "style" | "title" | "pattern" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "align" | "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" | "children" | "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" | "onClick" | "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" | "customClass" | "permissionAttr" | "size" | "skeletonize" | "disabled" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "tooltip" | "tooltipWidth" | "tooltipPosition" | "checked" | "required" | "labelUppercase" | "hint" | "hintPosition" | "themePopover" | "popoverAlign" | "width" | "height" | "multiple" | "readOnly" | "list" | "step" | "maxLength" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "max" | "min" | "src" | "alt" | "errors" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "variant"> & React__default.RefAttributes<HTMLInputElement>>;
31
32
 
32
33
  type index_CheckboxFieldInputProps = CheckboxFieldInputProps;
33
34
  declare const index_Input: typeof Input;