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

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 (59) 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 +2 -5
  4. package/lib/assets/styles/drawers.scss +3 -2
  5. package/lib/assets/styles/fieldset.scss +1 -1
  6. package/lib/assets/styles/multiSelect.scss +6 -6
  7. package/lib/assets/styles/periodpicker.scss +1 -1
  8. package/lib/assets/styles/selectfield.scss +1 -1
  9. package/lib/assets/styles/table.scss +6 -0
  10. package/lib/assets/styles/tabs.scss +6 -2
  11. package/lib/assets/styles/textfield.scss +1 -1
  12. package/lib/buttons/DefaultButton.js +1 -1
  13. package/lib/checkbox/index.js +3 -1
  14. package/lib/checkbox/types.d.ts +1 -0
  15. package/lib/dialog/base/Content.js +4 -4
  16. package/lib/dialog/base/index.js +20 -22
  17. package/lib/dialog/form/index.js +6 -4
  18. package/lib/drawer/Drawer.js +1 -1
  19. package/lib/form2/index.d.ts +1 -1
  20. package/lib/form2/types.d.ts +4 -0
  21. package/lib/form2/useForm/index.js +2 -0
  22. package/lib/index-19761a50.d.ts +26 -0
  23. package/lib/index-4bda404f.d.ts +42 -0
  24. package/lib/index-afb7b5a9.d.ts +15 -0
  25. package/lib/inputs/date/index.js +3 -3
  26. package/lib/inputs/multiSelect/Dropdown.js +4 -3
  27. package/lib/inputs/multiSelect/index.js +23 -5
  28. package/lib/inputs/multiSelect/types.d.ts +2 -0
  29. package/lib/inputs/period/PeriodList.js +3 -12
  30. package/lib/inputs/period/index.js +97 -124
  31. package/lib/inputs/search/index.js +6 -2
  32. package/lib/inputs/select/multiple/index.js +3 -2
  33. package/lib/inputs/select/simple/index.js +4 -3
  34. package/lib/inputs/select/types.d.ts +1 -0
  35. package/lib/inputs/types.d.ts +1 -0
  36. package/lib/inputs2/checkboxfield/index.d.ts +1 -1
  37. package/lib/inputs2/checkboxfield/index.js +4 -3
  38. package/lib/inputs2/date/base/index.js +1 -2
  39. package/lib/inputs2/date/datefield/calendarbox.d.ts +1 -1
  40. package/lib/inputs2/date/dateperiodfield/calendarbox.d.ts +1 -1
  41. package/lib/inputs2/index.d.ts +3 -3
  42. package/lib/inputs2/numberfield/index.js +19 -2
  43. package/lib/inputs2/radiofield/index.d.ts +1 -1
  44. package/lib/inputs2/radiofield/index.js +15 -3
  45. package/lib/inputs2/radiofield/types.d.ts +1 -0
  46. package/lib/inputs2/selectfield/index.d.ts +1 -1
  47. package/lib/inputs2/selectfield/item.d.ts +1 -1
  48. package/lib/inputs2/selectfield/listbox.d.ts +1 -1
  49. package/lib/inputs2/selectfield/options.d.ts +1 -1
  50. package/lib/inputs2/selectfield/search.d.ts +1 -1
  51. package/lib/inputs2/selectfield/selections.d.ts +1 -1
  52. package/lib/inputs2/slot/index.d.ts +2 -2
  53. package/lib/table/index.js +18 -8
  54. package/lib/table/types.d.ts +1 -0
  55. package/lib/tabs/index.js +2 -2
  56. package/package.json +1 -1
  57. package/lib/index-4b31b471.d.ts +0 -15
  58. package/lib/index-8a0c7463.d.ts +0 -41
  59. package/lib/index-9203efed.d.ts +0 -26
@@ -44,7 +44,7 @@ var _RowColumn = _interopRequireDefault(require("./RowColumn"));
44
44
  require("../assets/styles/table.scss");
45
45
  var _helpers = _interopRequireDefault(require("./helpers"));
46
46
  const _excluded = ["children"],
47
- _excluded2 = ["onColClick", "onRowClick", "bodyScrollable", "vertical", "skeletonize", "strict", "skeletonHeight", "skeletonInHeader", "skeletonInRows", "selectedRowId"];
47
+ _excluded2 = ["onColClick", "onRowClick", "bodyScrollable", "vertical", "skeletonize", "strict", "skeletonHeight", "skeletonInHeader", "skeletonInRows", "selectedRowId", "allowHorizontalScroll"];
48
48
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
49
49
  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); }
50
50
  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); }
@@ -81,7 +81,8 @@ const Table = _ref2 => {
81
81
  skeletonHeight,
82
82
  skeletonInHeader,
83
83
  skeletonInRows,
84
- selectedRowId: selectedRowIdFromProps
84
+ selectedRowId: selectedRowIdFromProps,
85
+ allowHorizontalScroll = false
85
86
  } = props,
86
87
  rest = _objectWithoutProperties(props, _excluded2);
87
88
  const [selectedRowId, setSelectedRowId] = (0, _react.useState)(selectedRowIdFromProps);
@@ -114,6 +115,20 @@ const Table = _ref2 => {
114
115
  columnsWidth,
115
116
  handlerSetColumnsCount
116
117
  }), [bodyContainerRef, bodyScrollWidth, selectedRowId, vertical, skeletonize, skeletonHeight, skeletonInHeader, skeletonInRows, strict, columnsCount, handleSelectRow, onColClick, onRowClick, handlerSetColumnsWidth, columnsWidth, handlerSetColumnsCount]);
118
+ const getTableComponent = () => {
119
+ const tableComponent = /*#__PURE__*/_react.default.createElement(_react.Fragment, null, /*#__PURE__*/_react.default.createElement("table", _extends({
120
+ style: {
121
+ contain: strict ? 'strict' : 'size style'
122
+ },
123
+ className: getClass(props)
124
+ }, rest), children));
125
+ if (allowHorizontalScroll) {
126
+ return /*#__PURE__*/_react.default.createElement("div", {
127
+ className: "horizontal-scroll-container"
128
+ }, tableComponent);
129
+ }
130
+ return tableComponent;
131
+ };
117
132
  const contextValues = (0, _react.useMemo)(() => getContextValues(), [getContextValues]);
118
133
  (0, _react.useEffect)(() => {
119
134
  if (bodyScrollable && bodyContainerRef && bodyContainerRef.current) {
@@ -132,11 +147,6 @@ const Table = _ref2 => {
132
147
  value: contextValues
133
148
  }, bodyScrollable ? /*#__PURE__*/_react.default.createElement("div", {
134
149
  className: getClass(props)
135
- }, children) : /*#__PURE__*/_react.default.createElement("table", _extends({
136
- style: {
137
- contain: strict ? 'strict' : 'size style'
138
- },
139
- className: getClass(props)
140
- }, rest), children));
150
+ }, children) : getTableComponent());
141
151
  };
142
152
  var _default = exports.default = Table;
@@ -18,6 +18,7 @@ interface ITableProps extends TableHTMLAttributes<HTMLTableElement> {
18
18
  skeletonInRows?: number;
19
19
  skeletonInHeader?: boolean;
20
20
  skeletonHeight?: number;
21
+ allowHorizontalScroll?: boolean;
21
22
  }
22
23
  interface ITableHeaderProps extends ComponentProps<'th'> {
23
24
  children?: ReactNode;
package/lib/tabs/index.js CHANGED
@@ -10,13 +10,13 @@ Object.defineProperty(exports, "TabPanel", {
10
10
  }
11
11
  });
12
12
  exports.default = void 0;
13
+ require("../assets/styles/tabs.scss");
13
14
  var _react = _interopRequireWildcard(require("react"));
15
+ var _lodash = _interopRequireDefault(require("lodash"));
14
16
  var _Menu = _interopRequireDefault(require("./Menu"));
15
17
  var _Panel = _interopRequireDefault(require("./Panel"));
16
18
  var _tabHelpers = require("./tabHelpers");
17
- require("../assets/styles/tabs.scss");
18
19
  var _context = require("./context");
19
- var _lodash = _interopRequireDefault(require("lodash"));
20
20
  const _excluded = ["toolbar", "children", "firstTabIdent", "handlerTabClick", "handlerCloseTab", "style", "tabMenuSize", "tabMenuAlign", "tabMenuPosition", "customClassForToolBar", "tabsWidth", "tabsWithError", "keepPanelsInOrder"];
21
21
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
22
22
  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); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linear-react-components-ui",
3
- "version": "1.1.24-rc.1",
3
+ "version": "1.1.25-beta.2",
4
4
  "description": "Linear Sistemas ReactJs Components",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.cjs",
@@ -1,15 +0,0 @@
1
- import React__default from 'react';
2
- import { RadioFieldInputProps } from './inputs2/radiofield/types.js';
3
-
4
- declare const Input: React__default.ForwardRefExoticComponent<Pick<RadioFieldInputProps, "key" | "style" | "children" | "form" | "label" | "slot" | "title" | "pattern" | "className" | "customClass" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "id" | "value" | "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" | "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" | "hint" | "hintPosition" | "textAlign" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "getFieldValue"> & React__default.RefAttributes<HTMLInputElement>>;
5
-
6
- declare const index_Input: typeof Input;
7
- declare const index_RadioFieldInputProps: typeof RadioFieldInputProps;
8
- declare namespace index {
9
- export {
10
- index_Input as Input,
11
- index_RadioFieldInputProps as RadioFieldInputProps,
12
- };
13
- }
14
-
15
- export { Input as I, index as i };
@@ -1,41 +0,0 @@
1
- import React__default from 'react';
2
- import { Size } from './@types/Size.js';
3
- import { ColorTheme } from './@types/ColorStyles.js';
4
- import { ITooltipCommonProps } from './tooltip/types.js';
5
- import { HintPosition, Position } from './@types/Position.js';
6
- import { PermissionAttr, OnDenied } from './@types/PermissionAttr.js';
7
-
8
- type InputHTMLProps = Omit<React__default.ComponentProps<'input'>, 'size' | 'type'>;
9
- interface CheckboxFieldInputProps extends InputHTMLProps, ITooltipCommonProps {
10
- hint?: string;
11
- label?: string;
12
- size?: Exclude<Size, 'mini'>;
13
- variant?: 'default' | 'secondary';
14
- errors?: string[];
15
- gridLayout?: string;
16
- customClass?: string;
17
- customClassLabel?: string;
18
- customClassWrapper?: string;
19
- customClassInputContainer?: string;
20
- rounded?: boolean;
21
- readOnly?: boolean;
22
- skeletonize?: boolean;
23
- labelUppercase?: boolean;
24
- hintPosition?: HintPosition;
25
- themePopover?: ColorTheme;
26
- popoverAlign?: Extract<Position, 'left' | 'right'>;
27
- permissionAttr?: PermissionAttr;
28
- onDeniedActions?: OnDenied;
29
- }
30
- declare const Input: React__default.ForwardRefExoticComponent<Pick<CheckboxFieldInputProps, "key" | "style" | "children" | "form" | "label" | "slot" | "title" | "pattern" | "className" | "customClass" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "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" | "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" | "hint" | "hintPosition" | "rounded" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "max" | "min" | "src" | "alt" | "errors" | "capture" | "crossOrigin" | "enterKeyHint" | "minLength" | "customClassLabel" | "customClassWrapper" | "customClassInputContainer" | "variant"> & React__default.RefAttributes<HTMLInputElement>>;
31
-
32
- type index_CheckboxFieldInputProps = CheckboxFieldInputProps;
33
- declare const index_Input: typeof Input;
34
- declare namespace index {
35
- export {
36
- index_CheckboxFieldInputProps as CheckboxFieldInputProps,
37
- index_Input as Input,
38
- };
39
- }
40
-
41
- export { CheckboxFieldInputProps as C, Input as I, index as i };
@@ -1,26 +0,0 @@
1
- import React__default from 'react';
2
- import { LeftSlot, RightSlot } from './inputs2/slot/index.js';
3
- import { Options } from './inputs2/selectfield/options.js';
4
- import { Item } from './inputs2/selectfield/item.js';
5
- import { SelectFieldInputProps } from './inputs2/selectfield/types.js';
6
-
7
- declare const Input: React__default.ForwardRefExoticComponent<Pick<SelectFieldInputProps, "key" | "style" | "children" | "form" | "label" | "slot" | "title" | "pattern" | "className" | "customClass" | "width" | "height" | "align" | "name" | "onClick" | "size" | "disabled" | "color" | "tooltip" | "tooltipPosition" | "tooltipWidth" | "hidden" | "multiple" | "id" | "value" | "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" | "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" | "maxLength" | "required" | "hint" | "hintPosition" | "textAlign" | "onDeniedActions" | "gridLayout" | "accept" | "autoComplete" | "themePopover" | "popoverAlign" | "checked" | "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
-
9
- declare const index_Input: typeof Input;
10
- declare const index_Item: typeof Item;
11
- declare const index_LeftSlot: typeof LeftSlot;
12
- declare const index_Options: typeof Options;
13
- declare const index_RightSlot: typeof RightSlot;
14
- declare const index_SelectFieldInputProps: typeof SelectFieldInputProps;
15
- declare namespace index {
16
- export {
17
- index_Input as Input,
18
- index_Item as Item,
19
- index_LeftSlot as LeftSlot,
20
- index_Options as Options,
21
- index_RightSlot as RightSlot,
22
- index_SelectFieldInputProps as SelectFieldInputProps,
23
- };
24
- }
25
-
26
- export { Input as I, index as i };