@7shifts/sous-chef 3.65.0-beta.0 → 3.65.0-beta.1

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.
@@ -8,5 +8,4 @@ import DropdownList from './DropdownList';
8
8
  import DropdownListDivider from './DropdownListDivider';
9
9
  import DropdownListItem from './DropdownListItem';
10
10
  import HintModal from './HintModal';
11
- import ConfirmModal from './ConfirmModal';
12
- export { Tooltip, Modal, ModalBody, ModalFooter, Calendar, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, HintModal, ConfirmModal };
11
+ export { Tooltip, Modal, ModalBody, ModalFooter, Calendar, Dropdown, DropdownList, DropdownListDivider, DropdownListItem, HintModal };
@@ -0,0 +1,9 @@
1
+ export declare class MockIntersectionObserver {
2
+ static entries: Array<Element>;
3
+ static options?: IntersectionObserverInit;
4
+ static callback: IntersectionObserverCallback;
5
+ constructor(callback: IntersectionObserverCallback, options?: IntersectionObserverInit);
6
+ observe(target: Element): void;
7
+ unobserve(target: Element): void;
8
+ static run(isIntersecting: boolean): void;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7shifts/sous-chef",
3
- "version": "3.65.0-beta.0",
3
+ "version": "3.65.0-beta.1",
4
4
  "description": "7shifts component library",
5
5
  "author": "7shifts",
6
6
  "license": "MIT",
@@ -1,3 +0,0 @@
1
- import React from 'react';
2
- declare const EmptyStateIllustration: () => React.JSX.Element;
3
- export default EmptyStateIllustration;
@@ -1 +0,0 @@
1
- export { default } from './EmptyStateIllustration';