@commercetools-uikit/checkbox-input 15.11.2 → 15.13.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.
@@ -1,9 +1,6 @@
1
1
  import type { TCheckboxProps } from './checkbox-input';
2
- type TProps = Omit<TCheckboxProps, 'children' | 'hasError' | 'isHovered'> & {
3
- type?: string;
4
- };
5
2
  declare const Checkbox: {
6
- (props: TProps): import("@emotion/react/jsx-runtime").JSX.Element;
3
+ (props: TCheckboxProps): import("@emotion/react/jsx-runtime").JSX.Element;
7
4
  displayName: string;
8
5
  };
9
6
  export default Checkbox;
@@ -1,3 +1,2 @@
1
1
  export { default as CheckedIcon } from './CheckedReact';
2
2
  export { default as IndeterminateIcon } from './IndeterminateReact';
3
- export { default as UncheckedIcon } from './UncheckedReact';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@commercetools-uikit/checkbox-input",
3
3
  "description": "An input component that works as checkbox input.",
4
- "version": "15.11.2",
4
+ "version": "15.13.0",
5
5
  "bugs": "https://github.com/commercetools/ui-kit/issues",
6
6
  "repository": {
7
7
  "type": "git",
@@ -22,16 +22,15 @@
22
22
  "generate-icons": "svgr -d src/icons/generated --typescript -- src/icons/svg"
23
23
  },
24
24
  "dependencies": {
25
- "@babel/runtime": "^7.19.0",
26
- "@babel/runtime-corejs3": "^7.19.1",
27
- "@commercetools-uikit/design-system": "15.11.2",
28
- "@commercetools-uikit/icons": "15.11.2",
29
- "@commercetools-uikit/input-utils": "15.11.2",
30
- "@commercetools-uikit/select-utils": "15.11.2",
31
- "@commercetools-uikit/text": "15.11.2",
32
- "@commercetools-uikit/utils": "15.11.2",
33
- "@emotion/react": "^11.4.0",
34
- "@emotion/styled": "^11.3.0",
25
+ "@babel/runtime": "^7.20.13",
26
+ "@babel/runtime-corejs3": "^7.20.13",
27
+ "@commercetools-uikit/design-system": "15.13.0",
28
+ "@commercetools-uikit/icons": "15.13.0",
29
+ "@commercetools-uikit/input-utils": "15.13.0",
30
+ "@commercetools-uikit/select-utils": "15.13.0",
31
+ "@commercetools-uikit/utils": "15.13.0",
32
+ "@emotion/react": "^11.10.5",
33
+ "@emotion/styled": "^11.10.5",
35
34
  "prop-types": "15.8.1",
36
35
  "react-intl": "^5.25.1"
37
36
  },
@@ -1,3 +0,0 @@
1
- import type { TCheckboxProps } from './checkbox-input';
2
- declare const getCheckboxWrapperStyles: (props: TCheckboxProps) => import("@emotion/utils").SerializedStyles;
3
- export { getCheckboxWrapperStyles };
@@ -1,13 +0,0 @@
1
- export type Props = {
2
- color?: 'solid' | 'neutral60' | 'surface' | 'info' | 'primary' | 'primary40' | 'warning' | 'error';
3
- size?: 'small' | 'medium' | 'big' | 'scale';
4
- };
5
- export type SVGProps = Props & {
6
- className: string;
7
- };
8
- export declare const getIconStyles: (props: Props) => import("@emotion/utils").SerializedStyles;
9
- declare const UncheckedIcon: {
10
- (props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
11
- displayName: string;
12
- };
13
- export default UncheckedIcon;