@spscommerce/ds-react 4.36.4 → 5.0.0
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.
|
@@ -12,7 +12,6 @@ declare const propTypes: {
|
|
|
12
12
|
isOpen: PropTypes.Requireable<boolean>;
|
|
13
13
|
onClear: PropTypes.Requireable<() => void>;
|
|
14
14
|
onSubmit: PropTypes.Requireable<React.FormEventHandler<Element>>;
|
|
15
|
-
pinned: PropTypes.Requireable<boolean>;
|
|
16
15
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
17
16
|
className: PropTypes.Requireable<string>;
|
|
18
17
|
"data-testid": PropTypes.Requireable<string>;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ClickableTagKind } from "@spscommerce/ds-shared";
|
|
2
2
|
import * as PropTypes from "../prop-types";
|
|
3
|
-
import type { SpsMultiSelectTagProps } from "../multi-select/SpsMultiSelectTag";
|
|
4
3
|
declare const propTypes: {
|
|
5
4
|
disabled: PropTypes.Requireable<boolean>;
|
|
6
5
|
href: PropTypes.Requireable<string>;
|
|
@@ -14,5 +13,4 @@ declare const propTypes: {
|
|
|
14
13
|
};
|
|
15
14
|
export declare type SpsClickableTagProps = PropTypes.InferTS<typeof propTypes, HTMLDivElement>;
|
|
16
15
|
export declare function SpsClickableTag(props: SpsClickableTagProps): JSX.Element;
|
|
17
|
-
export declare function SpsMultiSelectTag(props: SpsMultiSelectTagProps): JSX.Element;
|
|
18
16
|
export {};
|
package/lib/icon/SpsIcon.d.ts
CHANGED
|
@@ -9,6 +9,5 @@ declare const propTypes: {
|
|
|
9
9
|
unsafelyReplaceClassName: PropTypes.Requireable<string>;
|
|
10
10
|
};
|
|
11
11
|
export declare type SpsIconProps = PropTypes.InferTS<typeof propTypes, HTMLElement>;
|
|
12
|
-
export declare function SpsIcon(props: SpsIconProps): JSX.Element;
|
|
13
12
|
export declare function SpsI(props: SpsIconProps): JSX.Element;
|
|
14
13
|
export {};
|