@dxos/react-ui 0.1.2 → 0.1.4

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 (77) hide show
  1. package/dist/src/components/AlertDialog/AlertDialog.js +1 -1
  2. package/dist/src/components/Avatar/Avatar.d.ts +1 -1
  3. package/dist/src/components/Avatar/Avatar.d.ts.map +1 -1
  4. package/dist/src/components/Avatar/Avatar.stories.d.ts +1 -1
  5. package/dist/src/components/Button/Button.d.ts +1 -1
  6. package/dist/src/components/Button/Button.d.ts.map +1 -1
  7. package/dist/src/components/Button/Button.stories.d.ts +1 -1
  8. package/dist/src/components/Heading/Heading.d.ts +4 -1
  9. package/dist/src/components/Heading/Heading.d.ts.map +1 -1
  10. package/dist/src/components/Heading/Heading.stories.d.ts +4 -1
  11. package/dist/src/components/Heading/Heading.stories.d.ts.map +1 -1
  12. package/dist/src/components/Input/BarePinInput.d.ts +313 -0
  13. package/dist/src/components/Input/BarePinInput.d.ts.map +1 -0
  14. package/dist/src/components/Input/BarePinInput.js +62 -0
  15. package/dist/src/components/Input/BarePinInput.js.map +1 -0
  16. package/dist/src/components/Input/BareTextInput.d.ts +5 -0
  17. package/dist/src/components/Input/BareTextInput.d.ts.map +1 -0
  18. package/dist/src/components/Input/BareTextInput.js +22 -0
  19. package/dist/src/components/Input/BareTextInput.js.map +1 -0
  20. package/dist/src/components/Input/Input.d.ts +3 -16
  21. package/dist/src/components/Input/Input.d.ts.map +1 -1
  22. package/dist/src/components/Input/Input.js +22 -10
  23. package/dist/src/components/Input/Input.js.map +1 -1
  24. package/dist/src/components/Input/Input.stories.d.ts +7 -3
  25. package/dist/src/components/Input/Input.stories.d.ts.map +1 -1
  26. package/dist/src/components/Input/Input.stories.js +15 -2
  27. package/dist/src/components/Input/Input.stories.js.map +1 -1
  28. package/dist/src/components/Input/InputProps.d.ts +17 -0
  29. package/dist/src/components/Input/InputProps.d.ts.map +1 -0
  30. package/dist/src/components/Input/InputProps.js +6 -0
  31. package/dist/src/components/Input/InputProps.js.map +1 -0
  32. package/dist/src/hooks/index.d.ts +2 -0
  33. package/dist/src/hooks/index.d.ts.map +1 -1
  34. package/dist/src/hooks/index.js +2 -0
  35. package/dist/src/hooks/index.js.map +1 -1
  36. package/dist/src/hooks/useForwardedRef.d.ts +2 -0
  37. package/dist/src/hooks/useForwardedRef.d.ts.map +1 -0
  38. package/dist/src/hooks/useForwardedRef.js +24 -0
  39. package/dist/src/hooks/useForwardedRef.js.map +1 -0
  40. package/dist/src/hooks/useIsFocused.d.ts +3 -0
  41. package/dist/src/hooks/useIsFocused.d.ts.map +1 -0
  42. package/dist/src/hooks/useIsFocused.js +34 -0
  43. package/dist/src/hooks/useIsFocused.js.map +1 -0
  44. package/dist/src/plugin.d.ts.map +1 -1
  45. package/dist/src/plugin.js +9 -1
  46. package/dist/src/plugin.js.map +1 -1
  47. package/dist/src/styles/focus.d.ts +1 -0
  48. package/dist/src/styles/focus.d.ts.map +1 -1
  49. package/dist/src/styles/focus.js +2 -1
  50. package/dist/src/styles/focus.js.map +1 -1
  51. package/dist/src/styles/index.d.ts +1 -0
  52. package/dist/src/styles/index.d.ts.map +1 -1
  53. package/dist/src/styles/index.js +1 -0
  54. package/dist/src/styles/index.js.map +1 -1
  55. package/dist/src/styles/input.d.ts +11 -0
  56. package/dist/src/styles/input.d.ts.map +1 -0
  57. package/dist/src/styles/input.js +24 -0
  58. package/dist/src/styles/input.js.map +1 -0
  59. package/dist/src/styles/shimmer.d.ts +2 -0
  60. package/dist/src/styles/shimmer.d.ts.map +1 -0
  61. package/dist/src/styles/shimmer.js +8 -0
  62. package/dist/src/styles/shimmer.js.map +1 -0
  63. package/package.json +3 -2
  64. package/src/components/AlertDialog/AlertDialog.tsx +1 -1
  65. package/src/components/Input/BarePinInput.tsx +62 -0
  66. package/src/components/Input/BareTextInput.tsx +31 -0
  67. package/src/components/Input/Input.stories.tsx +18 -1
  68. package/src/components/Input/Input.tsx +33 -54
  69. package/src/components/Input/InputProps.ts +23 -0
  70. package/src/hooks/index.ts +2 -0
  71. package/src/hooks/useForwardedRef.ts +22 -0
  72. package/src/hooks/useIsFocused.ts +38 -0
  73. package/src/plugin.ts +9 -1
  74. package/src/styles/focus.ts +3 -0
  75. package/src/styles/index.ts +1 -0
  76. package/src/styles/input.ts +47 -0
  77. package/src/styles/shimmer.ts +6 -0
@@ -51,7 +51,7 @@ const AlertDialog = ({ title, titleVisuallyHidden, description, openTrigger, can
51
51
  react_2.default.createElement(react_1.Transition.Child, { as: react_2.Fragment, enter: 'ease-out duration-300', enterFrom: 'opacity-0 scale-95', enterTo: 'opacity-100 scale-100', leave: 'ease-in duration-200', leaveFrom: 'opacity-100 scale-100', leaveTo: 'opacity-0 scale-95' },
52
52
  react_2.default.createElement(AlertDialogPrimitive.Content, { forceMount: true, className: (0, classnames_1.default)('fixed z-50', 'w-[95vw] max-w-md rounded-xl p-4 md:w-full', 'top-[50%] left-[50%] -translate-x-[50%] -translate-y-[50%]', 'shadow-2xl bg-white dark:bg-neutral-800 elevated-buttons', styles_1.defaultFocus) },
53
53
  react_2.default.createElement(AlertDialogPrimitive.Title, { className: (0, classnames_1.default)('text-2xl font-display font-medium text-neutral-900 dark:text-neutral-100 rounded-md', titleVisuallyHidden && 'sr-only', styles_1.defaultFocus), tabIndex: 0 }, title),
54
- description && (react_2.default.createElement(AlertDialogPrimitive.Description, { className: (0, classnames_1.default)('mt-2', styles_1.defaultDescription) }, description)),
54
+ description && (react_2.default.createElement(AlertDialogPrimitive.Description, { className: (0, classnames_1.default)('my-2', styles_1.defaultDescription) }, description)),
55
55
  children,
56
56
  destructiveConfirmInputProps && react_2.default.createElement(Input_1.Input, { ...destructiveConfirmInputProps, onChange: setConfirmStringValue }),
57
57
  react_2.default.createElement("div", { className: 'flex flex-wrap justify-end gap-4' },
@@ -9,5 +9,5 @@ export interface AvatarProps extends ComponentProps<typeof AvatarPrimitive.Root>
9
9
  mediaSrc?: string;
10
10
  children?: ReactNode;
11
11
  }
12
- export declare const Avatar: React.ForwardRefExoticComponent<Pick<React.PropsWithChildren<AvatarProps>, "label" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "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" | "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" | "size" | "asChild" | "fallbackValue" | "variant" | "mediaSrc"> & React.RefAttributes<HTMLSpanElement>>;
12
+ export declare const Avatar: React.ForwardRefExoticComponent<Pick<React.PropsWithChildren<AvatarProps>, "label" | "slot" | "style" | "title" | "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" | "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" | "size" | "asChild" | "fallbackValue" | "variant" | "mediaSrc"> & React.RefAttributes<HTMLSpanElement>>;
13
13
  //# sourceMappingURL=Avatar.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../../../../src/components/Avatar/Avatar.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAG1D,OAAO,KAAK,EAAE,EAEZ,cAAc,EAId,gBAAgB,EAChB,SAAS,EAEV,MAAM,OAAO,CAAC;AAGf,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AAGnC,MAAM,WAAW,WAAY,SAAQ,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC;IAC9E,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,EAAE,KAAK,CAAC,CAAC;IAC3D,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,OAAO,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAOD,eAAO,MAAM,MAAM,orJA6ClB,CAAC"}
1
+ {"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../../../../src/components/Avatar/Avatar.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAG1D,OAAO,KAAK,EAAE,EAEZ,cAAc,EAId,gBAAgB,EAChB,SAAS,EAEV,MAAM,OAAO,CAAC;AAGf,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AAGnC,MAAM,WAAW,WAAY,SAAQ,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC;IAC9E,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,EAAE,KAAK,CAAC,CAAC;IAC3D,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,OAAO,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAOD,eAAO,MAAM,MAAM,+tJA6ClB,CAAC"}
@@ -3,7 +3,7 @@ import React from 'react';
3
3
  import { AvatarProps } from './Avatar';
4
4
  declare const _default: {
5
5
  title: string;
6
- component: React.ForwardRefExoticComponent<Pick<React.PropsWithChildren<AvatarProps>, "label" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "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" | "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" | "size" | "asChild" | "fallbackValue" | "variant" | "mediaSrc"> & React.RefAttributes<HTMLSpanElement>>;
6
+ component: React.ForwardRefExoticComponent<Pick<React.PropsWithChildren<AvatarProps>, "label" | "slot" | "style" | "title" | "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" | "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" | "size" | "asChild" | "fallbackValue" | "variant" | "mediaSrc"> & React.RefAttributes<HTMLSpanElement>>;
7
7
  };
8
8
  export default _default;
9
9
  export declare const Default: import("@storybook/react").Story<AvatarProps>;
@@ -1,4 +1,4 @@
1
1
  import React from 'react';
2
2
  import { ButtonProps } from './ButtonProps';
3
- export declare const Button: React.ForwardRefExoticComponent<Pick<ButtonProps, "disabled" | "form" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "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" | "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" | "value" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "variant" | "compact" | "rounding"> & React.RefAttributes<HTMLButtonElement>>;
3
+ export declare const Button: React.ForwardRefExoticComponent<Pick<ButtonProps, "disabled" | "form" | "slot" | "style" | "title" | "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" | "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" | "value" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "variant" | "compact" | "rounding"> & React.RefAttributes<HTMLButtonElement>>;
4
4
  //# sourceMappingURL=Button.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAG5C,eAAO,MAAM,MAAM,wwJAWlB,CAAC"}
1
+ {"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAE1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAG5C,eAAO,MAAM,MAAM,mzJAWlB,CAAC"}
@@ -3,7 +3,7 @@ import React from 'react';
3
3
  import { ButtonProps } from './ButtonProps';
4
4
  declare const _default: {
5
5
  title: string;
6
- component: React.ForwardRefExoticComponent<Pick<ButtonProps, "disabled" | "form" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "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" | "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" | "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" | "value" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "variant" | "compact" | "rounding"> & React.RefAttributes<HTMLButtonElement>>;
6
+ component: React.ForwardRefExoticComponent<Pick<ButtonProps, "disabled" | "form" | "slot" | "style" | "title" | "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" | "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" | "value" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "type" | "variant" | "compact" | "rounding"> & React.RefAttributes<HTMLButtonElement>>;
7
7
  };
8
8
  export default _default;
9
9
  export declare const Default: import("@storybook/react").Story<Omit<ButtonProps, "ref">>;
@@ -20,6 +20,7 @@ export declare const Heading: ({ level, ...props }: PropsWithChildren<HeadingPro
20
20
  hidden?: boolean | undefined;
21
21
  id?: string | undefined;
22
22
  lang?: string | undefined;
23
+ nonce?: string | undefined;
23
24
  placeholder?: string | undefined;
24
25
  slot?: string | undefined;
25
26
  spellCheck?: (boolean | "true" | "false") | undefined;
@@ -64,7 +65,7 @@ export declare const Heading: ({ level, ...props }: PropsWithChildren<HeadingPro
64
65
  'aria-describedby'?: string | undefined;
65
66
  'aria-details'?: string | undefined;
66
67
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
67
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
68
+ 'aria-dropeffect'?: "copy" | "link" | "none" | "execute" | "move" | "popup" | undefined;
68
69
  'aria-errormessage'?: string | undefined;
69
70
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
70
71
  'aria-flowto'?: string | undefined;
@@ -170,6 +171,8 @@ export declare const Heading: ({ level, ...props }: PropsWithChildren<HeadingPro
170
171
  onProgressCapture?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
171
172
  onRateChange?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
172
173
  onRateChangeCapture?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
174
+ onResize?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
175
+ onResizeCapture?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
173
176
  onSeeked?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
174
177
  onSeekedCapture?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
175
178
  onSeeking?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Heading.d.ts","sourceRoot":"","sources":["../../../../src/components/Heading/Heading.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,EAAiB,iBAAiB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAE3E,MAAM,WAAW,YAAa,SAAQ,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC;IAC9D,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC9B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAWD,eAAO,MAAM,OAAO,wBAAyB,kBAAkB,YAAY,CAAC;;eAZ/D,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAkBrB,CAAC"}
1
+ {"version":3,"file":"Heading.d.ts","sourceRoot":"","sources":["../../../../src/components/Heading/Heading.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,EAAiB,iBAAiB,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAE3E,MAAM,WAAW,YAAa,SAAQ,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC;IAC9D,KAAK,CAAC,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAC9B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAWD,eAAO,MAAM,OAAO,wBAAyB,kBAAkB,YAAY,CAAC;;eAZ/D,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAkBrB,CAAC"}
@@ -20,6 +20,7 @@ declare const _default: {
20
20
  hidden?: boolean | undefined;
21
21
  id?: string | undefined;
22
22
  lang?: string | undefined;
23
+ nonce?: string | undefined;
23
24
  placeholder?: string | undefined;
24
25
  slot?: string | undefined;
25
26
  spellCheck?: (boolean | "true" | "false") | undefined;
@@ -64,7 +65,7 @@ declare const _default: {
64
65
  'aria-describedby'?: string | undefined;
65
66
  'aria-details'?: string | undefined;
66
67
  'aria-disabled'?: (boolean | "true" | "false") | undefined;
67
- 'aria-dropeffect'?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
68
+ 'aria-dropeffect'?: "copy" | "link" | "none" | "execute" | "move" | "popup" | undefined;
68
69
  'aria-errormessage'?: string | undefined;
69
70
  'aria-expanded'?: (boolean | "true" | "false") | undefined;
70
71
  'aria-flowto'?: string | undefined;
@@ -170,6 +171,8 @@ declare const _default: {
170
171
  onProgressCapture?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
171
172
  onRateChange?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
172
173
  onRateChangeCapture?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
174
+ onResize?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
175
+ onResizeCapture?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
173
176
  onSeeked?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
174
177
  onSeekedCapture?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
175
178
  onSeeking?: React.ReactEventHandler<HTMLHeadingElement> | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Heading.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/Heading/Heading.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,YAAY,CAAC;AACpB,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAW,YAAY,EAAE,MAAM,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElD,wBAGE;AAQF,eAAO,MAAM,OAAO,gDAA+C,CAAC;AAGpE,eAAO,MAAM,MAAM,mBAA6C,CAAC;AACjE,eAAO,MAAM,MAAM,mBAA6C,CAAC;AACjE,eAAO,MAAM,MAAM,mBAA6C,CAAC;AACjE,eAAO,MAAM,MAAM,mBAA6C,CAAC;AACjE,eAAO,MAAM,MAAM,mBAA6C,CAAC"}
1
+ {"version":3,"file":"Heading.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/Heading/Heading.stories.tsx"],"names":[],"mappings":"AAIA,OAAO,YAAY,CAAC;AACpB,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAW,YAAY,EAAE,MAAM,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAElD,wBAGE;AAQF,eAAO,MAAM,OAAO,gDAA+C,CAAC;AAGpE,eAAO,MAAM,MAAM,mBAA6C,CAAC;AACjE,eAAO,MAAM,MAAM,mBAA6C,CAAC;AACjE,eAAO,MAAM,MAAM,mBAA6C,CAAC;AACjE,eAAO,MAAM,MAAM,mBAA6C,CAAC;AACjE,eAAO,MAAM,MAAM,mBAA6C,CAAC"}
@@ -0,0 +1,313 @@
1
+ import { CodeInput } from 'rci';
2
+ import React, { ComponentProps } from 'react';
3
+ import { InputProps } from './InputProps';
4
+ export declare type BarePinInputProps = Omit<InputProps, 'ref' | 'label' | 'onChange'> & Pick<ComponentProps<typeof CodeInput>, 'onChange' | 'value' | 'length'>;
5
+ export declare const BarePinInput: React.ForwardRefExoticComponent<Omit<InputProps, "label" | "ref" | "onChange"> & Pick<{
6
+ disabled?: boolean | undefined;
7
+ form?: string | undefined;
8
+ slot?: string | undefined;
9
+ style?: React.CSSProperties | undefined;
10
+ title?: string | undefined;
11
+ pattern?: string | undefined;
12
+ ref?: React.RefObject<HTMLInputElement> | ((instance: HTMLInputElement | null) => void) | null | undefined;
13
+ key?: React.Key | null | undefined;
14
+ defaultChecked?: boolean | undefined;
15
+ defaultValue?: string | number | readonly string[] | undefined;
16
+ suppressContentEditableWarning?: boolean | undefined;
17
+ suppressHydrationWarning?: boolean | undefined;
18
+ accessKey?: string | undefined;
19
+ className?: string | undefined;
20
+ contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
21
+ contextMenu?: string | undefined;
22
+ dir?: string | undefined;
23
+ draggable?: (boolean | "true" | "false") | undefined;
24
+ hidden?: boolean | undefined;
25
+ id?: string | undefined;
26
+ lang?: string | undefined;
27
+ nonce?: string | undefined;
28
+ placeholder?: string | undefined;
29
+ spellCheck?: (boolean | "true" | "false") | undefined;
30
+ tabIndex?: number | undefined;
31
+ translate?: "yes" | "no" | undefined;
32
+ radioGroup?: string | undefined;
33
+ role?: React.AriaRole | undefined;
34
+ about?: string | undefined;
35
+ datatype?: string | undefined;
36
+ inlist?: any;
37
+ prefix?: string | undefined;
38
+ property?: string | undefined;
39
+ resource?: string | undefined;
40
+ typeof?: string | undefined;
41
+ vocab?: string | undefined;
42
+ autoCapitalize?: string | undefined;
43
+ autoCorrect?: string | undefined;
44
+ autoSave?: string | undefined;
45
+ color?: string | undefined;
46
+ itemProp?: string | undefined;
47
+ itemScope?: boolean | undefined;
48
+ itemType?: string | undefined;
49
+ itemID?: string | undefined;
50
+ itemRef?: string | undefined;
51
+ results?: number | undefined;
52
+ security?: string | undefined;
53
+ unselectable?: "on" | "off" | undefined;
54
+ inputMode?: "text" | "search" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
55
+ is?: string | undefined;
56
+ 'aria-activedescendant'?: string | undefined;
57
+ 'aria-atomic'?: (boolean | "true" | "false") | undefined;
58
+ 'aria-autocomplete'?: "list" | "none" | "inline" | "both" | undefined;
59
+ 'aria-busy'?: (boolean | "true" | "false") | undefined;
60
+ 'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
61
+ 'aria-colcount'?: number | undefined;
62
+ 'aria-colindex'?: number | undefined;
63
+ 'aria-colspan'?: number | undefined;
64
+ 'aria-controls'?: string | undefined;
65
+ 'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
66
+ 'aria-describedby'?: string | undefined;
67
+ 'aria-details'?: string | undefined;
68
+ 'aria-disabled'?: (boolean | "true" | "false") | undefined;
69
+ 'aria-dropeffect'?: "copy" | "link" | "none" | "execute" | "move" | "popup" | undefined;
70
+ 'aria-errormessage'?: string | undefined;
71
+ 'aria-expanded'?: (boolean | "true" | "false") | undefined;
72
+ 'aria-flowto'?: string | undefined;
73
+ 'aria-grabbed'?: (boolean | "true" | "false") | undefined;
74
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
75
+ 'aria-hidden'?: (boolean | "true" | "false") | undefined;
76
+ 'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
77
+ 'aria-keyshortcuts'?: string | undefined;
78
+ 'aria-label'?: string | undefined;
79
+ 'aria-labelledby'?: string | undefined;
80
+ 'aria-level'?: number | undefined;
81
+ 'aria-live'?: "assertive" | "off" | "polite" | undefined;
82
+ 'aria-modal'?: (boolean | "true" | "false") | undefined;
83
+ 'aria-multiline'?: (boolean | "true" | "false") | undefined;
84
+ 'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
85
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
86
+ 'aria-owns'?: string | undefined;
87
+ 'aria-placeholder'?: string | undefined;
88
+ 'aria-posinset'?: number | undefined;
89
+ 'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
90
+ 'aria-readonly'?: (boolean | "true" | "false") | undefined;
91
+ 'aria-relevant'?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
92
+ 'aria-required'?: (boolean | "true" | "false") | undefined;
93
+ 'aria-roledescription'?: string | undefined;
94
+ 'aria-rowcount'?: number | undefined;
95
+ 'aria-rowindex'?: number | undefined;
96
+ 'aria-rowspan'?: number | undefined;
97
+ 'aria-selected'?: (boolean | "true" | "false") | undefined;
98
+ 'aria-setsize'?: number | undefined;
99
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
100
+ 'aria-valuemax'?: number | undefined;
101
+ 'aria-valuemin'?: number | undefined;
102
+ 'aria-valuenow'?: number | undefined;
103
+ 'aria-valuetext'?: string | undefined;
104
+ dangerouslySetInnerHTML?: {
105
+ __html: string;
106
+ } | undefined;
107
+ onCopy?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
108
+ onCopyCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
109
+ onCut?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
110
+ onCutCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
111
+ onPaste?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
112
+ onPasteCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
113
+ onCompositionEnd?: React.CompositionEventHandler<HTMLInputElement> | undefined;
114
+ onCompositionEndCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
115
+ onCompositionStart?: React.CompositionEventHandler<HTMLInputElement> | undefined;
116
+ onCompositionStartCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
117
+ onCompositionUpdate?: React.CompositionEventHandler<HTMLInputElement> | undefined;
118
+ onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
119
+ onFocus?: React.FocusEventHandler<HTMLInputElement> | undefined;
120
+ onFocusCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
121
+ onBlur?: React.FocusEventHandler<HTMLInputElement> | undefined;
122
+ onBlurCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
123
+ onChange?: React.ChangeEventHandler<HTMLInputElement> | undefined;
124
+ onChangeCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
125
+ onBeforeInput?: React.FormEventHandler<HTMLInputElement> | undefined;
126
+ onBeforeInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
127
+ onInput?: React.FormEventHandler<HTMLInputElement> | undefined;
128
+ onInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
129
+ onReset?: React.FormEventHandler<HTMLInputElement> | undefined;
130
+ onResetCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
131
+ onSubmit?: React.FormEventHandler<HTMLInputElement> | undefined;
132
+ onSubmitCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
133
+ onInvalid?: React.FormEventHandler<HTMLInputElement> | undefined;
134
+ onInvalidCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
135
+ onLoad?: React.ReactEventHandler<HTMLInputElement> | undefined;
136
+ onLoadCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
137
+ onError?: React.ReactEventHandler<HTMLInputElement> | undefined;
138
+ onErrorCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
139
+ onKeyDown?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
140
+ onKeyDownCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
141
+ onKeyPress?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
142
+ onKeyPressCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
143
+ onKeyUp?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
144
+ onKeyUpCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
145
+ onAbort?: React.ReactEventHandler<HTMLInputElement> | undefined;
146
+ onAbortCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
147
+ onCanPlay?: React.ReactEventHandler<HTMLInputElement> | undefined;
148
+ onCanPlayCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
149
+ onCanPlayThrough?: React.ReactEventHandler<HTMLInputElement> | undefined;
150
+ onCanPlayThroughCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
151
+ onDurationChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
152
+ onDurationChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
153
+ onEmptied?: React.ReactEventHandler<HTMLInputElement> | undefined;
154
+ onEmptiedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
155
+ onEncrypted?: React.ReactEventHandler<HTMLInputElement> | undefined;
156
+ onEncryptedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
157
+ onEnded?: React.ReactEventHandler<HTMLInputElement> | undefined;
158
+ onEndedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
159
+ onLoadedData?: React.ReactEventHandler<HTMLInputElement> | undefined;
160
+ onLoadedDataCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
161
+ onLoadedMetadata?: React.ReactEventHandler<HTMLInputElement> | undefined;
162
+ onLoadedMetadataCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
163
+ onLoadStart?: React.ReactEventHandler<HTMLInputElement> | undefined;
164
+ onLoadStartCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
165
+ onPause?: React.ReactEventHandler<HTMLInputElement> | undefined;
166
+ onPauseCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
167
+ onPlay?: React.ReactEventHandler<HTMLInputElement> | undefined;
168
+ onPlayCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
169
+ onPlaying?: React.ReactEventHandler<HTMLInputElement> | undefined;
170
+ onPlayingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
171
+ onProgress?: React.ReactEventHandler<HTMLInputElement> | undefined;
172
+ onProgressCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
173
+ onRateChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
174
+ onRateChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
175
+ onResize?: React.ReactEventHandler<HTMLInputElement> | undefined;
176
+ onResizeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
177
+ onSeeked?: React.ReactEventHandler<HTMLInputElement> | undefined;
178
+ onSeekedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
179
+ onSeeking?: React.ReactEventHandler<HTMLInputElement> | undefined;
180
+ onSeekingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
181
+ onStalled?: React.ReactEventHandler<HTMLInputElement> | undefined;
182
+ onStalledCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
183
+ onSuspend?: React.ReactEventHandler<HTMLInputElement> | undefined;
184
+ onSuspendCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
185
+ onTimeUpdate?: React.ReactEventHandler<HTMLInputElement> | undefined;
186
+ onTimeUpdateCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
187
+ onVolumeChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
188
+ onVolumeChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
189
+ onWaiting?: React.ReactEventHandler<HTMLInputElement> | undefined;
190
+ onWaitingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
191
+ onAuxClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
192
+ onAuxClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
193
+ onClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
194
+ onClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
195
+ onContextMenu?: React.MouseEventHandler<HTMLInputElement> | undefined;
196
+ onContextMenuCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
197
+ onDoubleClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
198
+ onDoubleClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
199
+ onDrag?: React.DragEventHandler<HTMLInputElement> | undefined;
200
+ onDragCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
201
+ onDragEnd?: React.DragEventHandler<HTMLInputElement> | undefined;
202
+ onDragEndCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
203
+ onDragEnter?: React.DragEventHandler<HTMLInputElement> | undefined;
204
+ onDragEnterCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
205
+ onDragExit?: React.DragEventHandler<HTMLInputElement> | undefined;
206
+ onDragExitCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
207
+ onDragLeave?: React.DragEventHandler<HTMLInputElement> | undefined;
208
+ onDragLeaveCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
209
+ onDragOver?: React.DragEventHandler<HTMLInputElement> | undefined;
210
+ onDragOverCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
211
+ onDragStart?: React.DragEventHandler<HTMLInputElement> | undefined;
212
+ onDragStartCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
213
+ onDrop?: React.DragEventHandler<HTMLInputElement> | undefined;
214
+ onDropCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
215
+ onMouseDown?: React.MouseEventHandler<HTMLInputElement> | undefined;
216
+ onMouseDownCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
217
+ onMouseEnter?: React.MouseEventHandler<HTMLInputElement> | undefined;
218
+ onMouseLeave?: React.MouseEventHandler<HTMLInputElement> | undefined;
219
+ onMouseMove?: React.MouseEventHandler<HTMLInputElement> | undefined;
220
+ onMouseMoveCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
221
+ onMouseOut?: React.MouseEventHandler<HTMLInputElement> | undefined;
222
+ onMouseOutCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
223
+ onMouseOver?: React.MouseEventHandler<HTMLInputElement> | undefined;
224
+ onMouseOverCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
225
+ onMouseUp?: React.MouseEventHandler<HTMLInputElement> | undefined;
226
+ onMouseUpCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
227
+ onSelect?: React.ReactEventHandler<HTMLInputElement> | undefined;
228
+ onSelectCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
229
+ onTouchCancel?: React.TouchEventHandler<HTMLInputElement> | undefined;
230
+ onTouchCancelCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
231
+ onTouchEnd?: React.TouchEventHandler<HTMLInputElement> | undefined;
232
+ onTouchEndCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
233
+ onTouchMove?: React.TouchEventHandler<HTMLInputElement> | undefined;
234
+ onTouchMoveCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
235
+ onTouchStart?: React.TouchEventHandler<HTMLInputElement> | undefined;
236
+ onTouchStartCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
237
+ onPointerDown?: React.PointerEventHandler<HTMLInputElement> | undefined;
238
+ onPointerDownCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
239
+ onPointerMove?: React.PointerEventHandler<HTMLInputElement> | undefined;
240
+ onPointerMoveCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
241
+ onPointerUp?: React.PointerEventHandler<HTMLInputElement> | undefined;
242
+ onPointerUpCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
243
+ onPointerCancel?: React.PointerEventHandler<HTMLInputElement> | undefined;
244
+ onPointerCancelCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
245
+ onPointerEnter?: React.PointerEventHandler<HTMLInputElement> | undefined;
246
+ onPointerEnterCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
247
+ onPointerLeave?: React.PointerEventHandler<HTMLInputElement> | undefined;
248
+ onPointerLeaveCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
249
+ onPointerOver?: React.PointerEventHandler<HTMLInputElement> | undefined;
250
+ onPointerOverCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
251
+ onPointerOut?: React.PointerEventHandler<HTMLInputElement> | undefined;
252
+ onPointerOutCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
253
+ onGotPointerCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
254
+ onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
255
+ onLostPointerCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
256
+ onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
257
+ onScroll?: React.UIEventHandler<HTMLInputElement> | undefined;
258
+ onScrollCapture?: React.UIEventHandler<HTMLInputElement> | undefined;
259
+ onWheel?: React.WheelEventHandler<HTMLInputElement> | undefined;
260
+ onWheelCapture?: React.WheelEventHandler<HTMLInputElement> | undefined;
261
+ onAnimationStart?: React.AnimationEventHandler<HTMLInputElement> | undefined;
262
+ onAnimationStartCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
263
+ onAnimationEnd?: React.AnimationEventHandler<HTMLInputElement> | undefined;
264
+ onAnimationEndCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
265
+ onAnimationIteration?: React.AnimationEventHandler<HTMLInputElement> | undefined;
266
+ onAnimationIterationCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
267
+ onTransitionEnd?: React.TransitionEventHandler<HTMLInputElement> | undefined;
268
+ onTransitionEndCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
269
+ list?: string | undefined;
270
+ step?: string | number | undefined;
271
+ value?: string | number | readonly string[] | undefined;
272
+ size?: number | undefined;
273
+ accept?: string | undefined;
274
+ alt?: string | undefined;
275
+ autoComplete?: string | undefined;
276
+ autoFocus?: boolean | undefined;
277
+ capture?: boolean | "user" | "environment" | undefined;
278
+ checked?: boolean | undefined;
279
+ crossOrigin?: string | undefined;
280
+ enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined;
281
+ formAction?: string | undefined;
282
+ formEncType?: string | undefined;
283
+ formMethod?: string | undefined;
284
+ formNoValidate?: boolean | undefined;
285
+ formTarget?: string | undefined;
286
+ height?: string | number | undefined;
287
+ max?: string | number | undefined;
288
+ min?: string | number | undefined;
289
+ minLength?: number | undefined;
290
+ multiple?: boolean | undefined;
291
+ name?: string | undefined;
292
+ readOnly?: boolean | undefined;
293
+ required?: boolean | undefined;
294
+ src?: string | undefined;
295
+ type?: React.HTMLInputTypeAttribute | undefined;
296
+ width?: string | number | undefined;
297
+ } & {
298
+ inputRef: React.RefObject<HTMLInputElement>;
299
+ renderSegment: (segmentProps: import("rci").SegmentProps) => React.ReactNode;
300
+ length?: number | undefined;
301
+ fontFamily?: string | undefined;
302
+ fontSize?: string | undefined;
303
+ padding?: string | undefined;
304
+ paddingY?: string | undefined;
305
+ paddingX?: string | undefined;
306
+ spacing?: string | undefined;
307
+ characterWidth?: string | undefined;
308
+ segmentWidth?: string | undefined;
309
+ inputWidth?: string | undefined;
310
+ inputClassName?: string | undefined;
311
+ inputStyle?: React.CSSProperties | undefined;
312
+ }, "onChange" | "length" | "value"> & React.RefAttributes<HTMLInputElement>>;
313
+ //# sourceMappingURL=BarePinInput.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BarePinInput.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/BarePinInput.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAsB,MAAM,KAAK,CAAC;AACpD,OAAO,KAAK,EAAE,EAA2B,cAAc,EAAE,MAAM,OAAO,CAAC;AAIvE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAQ1C,oBAAY,iBAAiB,GAAG,IAAI,CAAC,UAAU,EAAE,KAAK,GAAG,OAAO,GAAG,UAAU,CAAC,GAC5E,IAAI,CAAC,cAAc,CAAC,OAAO,SAAS,CAAC,EAAE,UAAU,GAAG,OAAO,GAAG,QAAQ,CAAC,CAAC;AAG1E,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAuCxB,CAAC"}