@spscommerce/ds-react 4.4.0 → 4.5.0-ie

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spscommerce/ds-react",
3
3
  "description": "SPS Design System React components",
4
- "version": "4.4.0",
4
+ "version": "4.5.0-ie",
5
5
  "author": "SPS Commerce",
6
6
  "license": "UNLICENSED",
7
7
  "repository": "https://github.com/spscommerce/design-system/tree/main/packages/@spscommerce/ds-react",
@@ -19,19 +19,14 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "@react-aria/tabs": "^3.0.1",
23
- "@react-stately/tabs": "^3.0.1",
24
- "@react-types/shared": "^3.8.0",
25
- "@react-types/tabs": "^3.0.1",
26
22
  "axe-prop-types": "^1.0.9",
27
23
  "tiny-invariant": "^1.0.4"
28
24
  },
29
25
  "peerDependencies": {
30
- "@react-stately/collections": "^3.3.3",
31
- "@spscommerce/ds-colors": "^4.4.0",
32
- "@spscommerce/ds-shared": "^4.4.0",
33
- "@spscommerce/positioning": "^4.4.0",
34
- "@spscommerce/utils": "^4.4.0",
26
+ "@spscommerce/ds-colors": "^4.5.0",
27
+ "@spscommerce/ds-shared": "^4.5.0",
28
+ "@spscommerce/positioning": "^4.5.0",
29
+ "@spscommerce/utils": "^4.5.0",
35
30
  "clsx": "^1.0.3",
36
31
  "moment": "^2.25.3",
37
32
  "moment-timezone": "^0.5.28",
@@ -44,10 +39,10 @@
44
39
  "scroll-into-view-if-needed": "^2.2.20"
45
40
  },
46
41
  "devDependencies": {
47
- "@spscommerce/ds-colors": "^4.4.0",
48
- "@spscommerce/ds-shared": "^4.4.0",
49
- "@spscommerce/positioning": "^4.4.0",
50
- "@spscommerce/utils": "^4.4.0",
42
+ "@spscommerce/ds-colors": "^4.5.0",
43
+ "@spscommerce/ds-shared": "^4.5.0",
44
+ "@spscommerce/positioning": "^4.5.0",
45
+ "@spscommerce/utils": "^4.5.0",
51
46
  "@types/prop-types": "^15.7.1",
52
47
  "@types/react": "^16.8.8",
53
48
  "clsx": "^1.0.3",
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export default function SpsCardV2({ children, className, ...rest }: React.HTMLProps<HTMLDivElement>): JSX.Element;
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export default function SpsCardV2Footer({ children, className, ...rest }: React.HTMLProps<HTMLDivElement>): JSX.Element;
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export default function SpsCardV2Header({ children, className, ...rest }: React.HTMLProps<HTMLDivElement>): JSX.Element;
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export default function SpsCardV2Title({ children, className, ...rest }: React.HTMLProps<HTMLDivElement>): JSX.Element;
@@ -1,5 +0,0 @@
1
- import SpsCardV2 from './SpsCardV2';
2
- import SpsCardV2Footer from './SpsCardV2Footer';
3
- import SpsCardV2Header from './SpsCardV2Header';
4
- import SpsCardV2Title from './SpsCardV2Title';
5
- export { SpsCardV2, SpsCardV2Footer, SpsCardV2Header, SpsCardV2Title, };
@@ -1,6 +0,0 @@
1
- import { TabListState } from '@react-stately/tabs';
2
- import { Node } from '@react-types/shared';
3
- export default function SpsTab<T>({ item, state, }: {
4
- item: Node<T>;
5
- state: TabListState<T>;
6
- }): JSX.Element;
@@ -1,5 +0,0 @@
1
- import { TabListState } from '@react-stately/tabs';
2
- import { AriaTabPanelProps } from '@react-types/tabs';
3
- export default function SpsTabPanel<T>({ state, ...props }: {
4
- state: TabListState<T>;
5
- } & AriaTabPanelProps): JSX.Element;
@@ -1,2 +0,0 @@
1
- import { TabListProps } from '@react-types/tabs';
2
- export default function SpsTabsV2(props: TabListProps<object>): JSX.Element;
@@ -1,4 +0,0 @@
1
- import SpsTab from './SpsTab';
2
- import SpsTabPanel from './SpsTabPanel';
3
- import SpsTabsV2 from './SpsTabsV2';
4
- export { SpsTab, SpsTabPanel, SpsTabsV2, };