@atom-learning/components 3.11.4 → 3.11.5

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 (40) hide show
  1. package/CHANGELOG.md +13 -2
  2. package/dist/components/chip/ChipGroup.d.ts +4 -2
  3. package/dist/components/chip/ChipGroup.js +1 -1
  4. package/dist/components/chip/ChipGroup.js.map +1 -1
  5. package/dist/components/chip-toggle-group/ChipToggleGroupRoot.d.ts +10 -12
  6. package/dist/components/index.d.ts +0 -1
  7. package/dist/components/notification-badge/NotificationBadge.d.ts +1 -668
  8. package/dist/components/notification-badge/NotificationBadge.js.map +1 -1
  9. package/dist/components/pagination/PaginationPopover.js +1 -1
  10. package/dist/components/pagination/PaginationPopover.js.map +1 -1
  11. package/dist/components/radio-card/RadioCardGroup.d.ts +2 -2
  12. package/dist/components/radio-card/RadioCardGroup.js +1 -1
  13. package/dist/components/radio-card/RadioCardGroup.js.map +1 -1
  14. package/dist/components/section-message/SectionMessage.d.ts +5 -8
  15. package/dist/components/section-message/SectionMessage.js +1 -1
  16. package/dist/components/section-message/SectionMessage.js.map +1 -1
  17. package/dist/components/section-message/SectionMessageLayout.d.ts +2 -2
  18. package/dist/components/section-message/SectionMessageLayout.js +1 -1
  19. package/dist/components/section-message/SectionMessageLayout.js.map +1 -1
  20. package/dist/components/tile/TileGroup.d.ts +329 -337
  21. package/dist/components/tile/TileGroup.js +1 -1
  22. package/dist/components/tile/TileGroup.js.map +1 -1
  23. package/dist/components/tile-interactive/TileInteractive.js +1 -1
  24. package/dist/components/tile-interactive/TileInteractive.js.map +1 -1
  25. package/dist/components/tile-toggle-group/TileToggleGroupRoot.d.ts +12 -18
  26. package/dist/components/tile-toggle-group/TileToggleGroupRoot.js +1 -1
  27. package/dist/components/tile-toggle-group/TileToggleGroupRoot.js.map +1 -1
  28. package/dist/components/toggle-group/ToggleGroupRoot.d.ts +2 -3
  29. package/dist/components/toggle-group/ToggleGroupRoot.js +1 -1
  30. package/dist/components/toggle-group/ToggleGroupRoot.js.map +1 -1
  31. package/dist/components/toggle-group/index.d.ts +341 -3
  32. package/dist/docgen.json +1 -1
  33. package/dist/index.cjs.js +1 -1
  34. package/dist/index.cjs.js.map +1 -1
  35. package/dist/index.js +1 -1
  36. package/package.json +1 -1
  37. package/dist/components/stack/Stack.d.ts +0 -348
  38. package/dist/components/stack/Stack.js +0 -2
  39. package/dist/components/stack/Stack.js.map +0 -1
  40. package/dist/components/stack/index.d.ts +0 -1
package/CHANGELOG.md CHANGED
@@ -1,9 +1,20 @@
1
- ## [3.11.4](https://github.com/Atom-Learning/components/compare/v3.11.3...v3.11.4) (2024-01-12)
1
+ ## [3.11.5](https://github.com/Atom-Learning/components/compare/v3.11.4...v3.11.5) (2024-01-28)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * update quest theme ([fafe118](https://github.com/Atom-Learning/components/commit/fafe11807a6b215f9779e7614f06bfb834a67f4e))
6
+ * apply wrap to tiletogglegroup ([947232e](https://github.com/Atom-Learning/components/commit/947232ebcbda9e28facb57dee4d96451bd56f4b6))
7
+ * attempt to fix TS errors ([7ff5f6b](https://github.com/Atom-Learning/components/commit/7ff5f6ba048f6f1cd5a7cf49fbf1166dfce0c658))
8
+ * docs components titles ([9911b4e](https://github.com/Atom-Learning/components/commit/9911b4ecf0bc579300a217e891b2d3c32f6658c2))
9
+ * ignore TS error ([e1d90b3](https://github.com/Atom-Learning/components/commit/e1d90b35201e0300f1989fbb32d3d03c8c6f95a2))
10
+ * merged main ([12524bf](https://github.com/Atom-Learning/components/commit/12524bfb8cc11d7fce8e6d3da34c963c043f8508))
11
+ * minor props differences, docs component previews ([c143cd8](https://github.com/Atom-Learning/components/commit/c143cd8df679075c4031080f29b2170fe0ef14b7))
12
+ * replace Stack with Flex in documentation content ([8b93544](https://github.com/Atom-Learning/components/commit/8b9354433f83a8cb2456fee38bcfd20212e9a3c0))
13
+ * replace Stack with Flex in documentation source ([711d4db](https://github.com/Atom-Learning/components/commit/711d4dbcf72bb5f9957c4f9d5508d9353cdddd70))
14
+ * replace Stack with Flex in source ([350d5ab](https://github.com/Atom-Learning/components/commit/350d5ab8ec4e92556e779d1e7030f639fc2d8b10))
15
+ * snapshots ([f9a0f35](https://github.com/Atom-Learning/components/commit/f9a0f35b0aad24ae789a6724a7339adc923a41ab))
16
+ * ts issue ([cf91630](https://github.com/Atom-Learning/components/commit/cf91630c05a1331eff3bbda0a3db2e756db195bf))
17
+ * update snapshots ([f49d3ff](https://github.com/Atom-Learning/components/commit/f49d3ffd3b3397f209f19204d188016aab29e799))
7
18
 
8
19
  # [1.4.0](https://github.com/Atom-Learning/components/compare/v1.3.0...v1.4.0) (2022-04-11)
9
20
 
@@ -1,7 +1,9 @@
1
1
  import * as React from 'react';
2
- import { Stack } from '../../components/stack';
2
+ import { Flex } from '../../components/flex';
3
3
  declare type TChipGroupProps = {
4
4
  gap: 1 | 2 | 3;
5
5
  };
6
- export declare const ChipGroup: React.ForwardRefExoticComponent<TChipGroupProps & React.ComponentProps<typeof Stack>>;
6
+ export declare const ChipGroup: React.ForwardRefExoticComponent<TChipGroupProps & React.ComponentProps<typeof Flex> & {
7
+ as?: any;
8
+ }>;
7
9
  export {};
@@ -1,2 +1,2 @@
1
- import*as r from"react";import{Stack as a}from"../stack/Stack.js";const p=r.forwardRef(({gap:o=2,...e},t)=>r.createElement(a,{ref:t,direction:"row",gap:o,align:!1,...e}));export{p as ChipGroup};
1
+ import*as r from"react";import{Flex as a}from"../flex/Flex.js";const t=r.forwardRef(({gap:e=2,...o},p)=>r.createElement(a,{direction:"row",wrap:"wrap",gap:e,...o,ref:p}));export{t as ChipGroup};
2
2
  //# sourceMappingURL=ChipGroup.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ChipGroup.js","sources":["../../../src/components/chip/ChipGroup.tsx"],"sourcesContent":["import * as React from 'react'\n\nimport { Stack } from '~/components/stack'\n\ntype TChipGroupProps = {\n gap: 1 | 2 | 3\n}\n\nexport const ChipGroup: React.ForwardRefExoticComponent<\n TChipGroupProps & React.ComponentProps<typeof Stack>\n> = React.forwardRef(({ gap = 2, ...rest }, ref) => {\n return <Stack ref={ref} direction=\"row\" gap={gap} align={false} {...rest} />\n})\n"],"names":["ChipGroup","React","gap","rest","ref","Stack"],"mappings":"kEAQO,MAAMA,EAETC,EAAM,WAAW,CAAC,CAAE,IAAAC,EAAM,KAAMC,CAAK,EAAGC,IACnCH,EAAA,cAACI,EAAA,CAAM,IAAKD,EAAK,UAAU,MAAM,IAAKF,EAAK,MAAO,GAAQ,GAAGC,EAAM,CAC3E"}
1
+ {"version":3,"file":"ChipGroup.js","sources":["../../../src/components/chip/ChipGroup.tsx"],"sourcesContent":["import * as React from 'react'\n\nimport { Flex } from '~/components/flex'\n\ntype TChipGroupProps = {\n gap: 1 | 2 | 3\n}\n\nexport const ChipGroup: React.ForwardRefExoticComponent<\n TChipGroupProps & React.ComponentProps<typeof Flex> & { as?: any }\n> = React.forwardRef(({ gap = 2, ...rest }, ref) => (\n <Flex direction=\"row\" wrap=\"wrap\" gap={gap} {...rest} ref={ref} />\n))\n"],"names":["ChipGroup","React","gap","rest","ref","Flex"],"mappings":"+DAQO,MAAMA,EAETC,EAAM,WAAW,CAAC,CAAE,IAAAC,EAAM,KAAMC,CAAK,EAAGC,IAC1CH,EAAA,cAACI,EAAA,CAAK,UAAU,MAAM,KAAK,OAAO,IAAKH,EAAM,GAAGC,EAAM,IAAKC,EAAK,CACjE"}
@@ -5,11 +5,11 @@ export declare const ChipToggleGroupRoot: React.ForwardRefExoticComponent<(Pick<
5
5
  } & Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
6
6
  ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
7
7
  }, "direction" | "gap" | "css" | "wrap" | "justify" | "align"> & import("@stitches/react/types/styled-component").TransformProps<{
8
- direction?: "row" | "column" | "row-reverse" | undefined;
9
- wrap?: "wrap" | "wrap-reverse" | "no-wrap" | undefined;
10
- justify?: boolean | "center" | "false" | "end" | "start" | undefined;
11
- align?: boolean | "center" | "false" | "end" | "start" | undefined;
12
- gap?: number | boolean | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "24" | "false" | undefined;
8
+ direction?: "inherit" | "initial" | "revert" | "unset" | "row" | "column" | "column-reverse" | "row-reverse" | "revert-layer" | undefined;
9
+ wrap?: "inherit" | "initial" | "revert" | "unset" | "nowrap" | "wrap" | "wrap-reverse" | "revert-layer" | undefined;
10
+ justify?: "center" | "left" | "right" | "stretch" | "inherit" | "initial" | "revert" | "unset" | "space-around" | "space-between" | "space-evenly" | "end" | "flex-end" | "flex-start" | "start" | "normal" | "revert-layer" | "unsafe" | "safe" | undefined;
11
+ align?: "center" | "stretch" | "inherit" | "initial" | "revert" | "unset" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "normal" | "self-end" | "self-start" | "revert-layer" | "unsafe" | "safe" | "first baseline" | "last baseline" | undefined;
12
+ gap?: number | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "24" | undefined;
13
13
  }, {
14
14
  sm: string;
15
15
  md: string;
@@ -343,18 +343,17 @@ export declare const ChipToggleGroupRoot: React.ForwardRefExoticComponent<(Pick<
343
343
  };
344
344
  }> | undefined;
345
345
  } & {
346
- css?: import("../..").CSS | undefined;
347
346
  as?: any;
348
347
  } & ToggleGroup.ToggleGroupSingleProps & React.RefAttributes<HTMLDivElement>, "color" | "direction" | "translate" | "gap" | "css" | "onBlur" | "onChange" | "onSubmit" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "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" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "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" | "as" | "wrap" | "justify" | "asChild" | "disabled" | "value" | "type" | "orientation" | "onValueChange" | "loop" | "align" | "rovingFocus"> | Pick<{
349
348
  gap: 1 | 2 | 3;
350
349
  } & Omit<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
351
350
  ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
352
351
  }, "direction" | "gap" | "css" | "wrap" | "justify" | "align"> & import("@stitches/react/types/styled-component").TransformProps<{
353
- direction?: "row" | "column" | "row-reverse" | undefined;
354
- wrap?: "wrap" | "wrap-reverse" | "no-wrap" | undefined;
355
- justify?: boolean | "center" | "false" | "end" | "start" | undefined;
356
- align?: boolean | "center" | "false" | "end" | "start" | undefined;
357
- gap?: number | boolean | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "24" | "false" | undefined;
352
+ direction?: "inherit" | "initial" | "revert" | "unset" | "row" | "column" | "column-reverse" | "row-reverse" | "revert-layer" | undefined;
353
+ wrap?: "inherit" | "initial" | "revert" | "unset" | "nowrap" | "wrap" | "wrap-reverse" | "revert-layer" | undefined;
354
+ justify?: "center" | "left" | "right" | "stretch" | "inherit" | "initial" | "revert" | "unset" | "space-around" | "space-between" | "space-evenly" | "end" | "flex-end" | "flex-start" | "start" | "normal" | "revert-layer" | "unsafe" | "safe" | undefined;
355
+ align?: "center" | "stretch" | "inherit" | "initial" | "revert" | "unset" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "normal" | "self-end" | "self-start" | "revert-layer" | "unsafe" | "safe" | "first baseline" | "last baseline" | undefined;
356
+ gap?: number | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "24" | undefined;
358
357
  }, {
359
358
  sm: string;
360
359
  md: string;
@@ -688,6 +687,5 @@ export declare const ChipToggleGroupRoot: React.ForwardRefExoticComponent<(Pick<
688
687
  };
689
688
  }> | undefined;
690
689
  } & {
691
- css?: import("../..").CSS | undefined;
692
690
  as?: any;
693
691
  } & ToggleGroup.ToggleGroupMultipleProps & React.RefAttributes<HTMLDivElement>, "color" | "direction" | "translate" | "gap" | "css" | "onBlur" | "onChange" | "onSubmit" | "slot" | "style" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "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" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "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" | "as" | "wrap" | "justify" | "asChild" | "disabled" | "value" | "type" | "orientation" | "onValueChange" | "loop" | "align" | "rovingFocus">) & React.RefAttributes<HTMLDivElement>>;
@@ -66,7 +66,6 @@ export { Slider } from './slider';
66
66
  export { SliderField } from './slider-field';
67
67
  export { Sortable } from './sortable';
68
68
  export { Spacer } from './spacer';
69
- export { Stack } from './stack';
70
69
  export { StackContent } from './stack-content';
71
70
  export { Stepper } from './stepper';
72
71
  export { Switch } from './switch';