@commercetools-uikit/checkbox-input 16.11.0 → 16.12.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.
- package/dist/commercetools-uikit-checkbox-input.cjs.dev.js +1 -1
- package/dist/commercetools-uikit-checkbox-input.cjs.prod.js +1 -1
- package/dist/commercetools-uikit-checkbox-input.esm.js +1 -1
- package/dist/declarations/src/export-types.d.ts +1 -1
- package/dist/declarations/src/index.d.ts +3 -3
- package/package.json +6 -6
- package/dist/declarations/src/checkbox.d.ts +0 -6
- package/dist/declarations/src/icons/generated/CheckedReact.d.ts +0 -13
- package/dist/declarations/src/icons/generated/IndeterminateReact.d.ts +0 -13
- package/dist/declarations/src/icons/generated/index.d.ts +0 -2
- package/dist/declarations/src/icons/index.d.ts +0 -1
|
@@ -421,7 +421,7 @@ CheckboxInput.defaultProps = defaultProps;
|
|
|
421
421
|
var CheckboxInput$1 = CheckboxInput;
|
|
422
422
|
|
|
423
423
|
// NOTE: This string will be replaced on build time with the package version.
|
|
424
|
-
var version = "16.
|
|
424
|
+
var version = "16.12.1";
|
|
425
425
|
|
|
426
426
|
exports["default"] = CheckboxInput$1;
|
|
427
427
|
exports.version = version;
|
|
@@ -397,7 +397,7 @@ CheckboxInput.defaultProps = defaultProps;
|
|
|
397
397
|
var CheckboxInput$1 = CheckboxInput;
|
|
398
398
|
|
|
399
399
|
// NOTE: This string will be replaced on build time with the package version.
|
|
400
|
-
var version = "16.
|
|
400
|
+
var version = "16.12.1";
|
|
401
401
|
|
|
402
402
|
exports["default"] = CheckboxInput$1;
|
|
403
403
|
exports.version = version;
|
|
@@ -403,6 +403,6 @@ CheckboxInput.defaultProps = defaultProps;
|
|
|
403
403
|
var CheckboxInput$1 = CheckboxInput;
|
|
404
404
|
|
|
405
405
|
// NOTE: This string will be replaced on build time with the package version.
|
|
406
|
-
var version = "16.
|
|
406
|
+
var version = "16.12.1";
|
|
407
407
|
|
|
408
408
|
export { CheckboxInput$1 as default, version };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { TCheckboxProps } from
|
|
1
|
+
export type { TCheckboxProps } from "./checkbox-input.js";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { default } from
|
|
2
|
-
export { default as version } from
|
|
3
|
-
export * from
|
|
1
|
+
export { default } from "./checkbox-input.js";
|
|
2
|
+
export { default as version } from "./version.js";
|
|
3
|
+
export * from "./export-types.js";
|
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": "16.
|
|
4
|
+
"version": "16.12.1",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@babel/runtime": "^7.20.13",
|
|
26
26
|
"@babel/runtime-corejs3": "^7.20.13",
|
|
27
|
-
"@commercetools-uikit/design-system": "16.
|
|
28
|
-
"@commercetools-uikit/icons": "16.
|
|
29
|
-
"@commercetools-uikit/input-utils": "16.
|
|
30
|
-
"@commercetools-uikit/select-utils": "16.
|
|
31
|
-
"@commercetools-uikit/utils": "16.
|
|
27
|
+
"@commercetools-uikit/design-system": "16.12.1",
|
|
28
|
+
"@commercetools-uikit/icons": "16.12.1",
|
|
29
|
+
"@commercetools-uikit/input-utils": "16.12.1",
|
|
30
|
+
"@commercetools-uikit/select-utils": "16.12.1",
|
|
31
|
+
"@commercetools-uikit/utils": "16.12.1",
|
|
32
32
|
"@emotion/react": "^11.10.5",
|
|
33
33
|
"@emotion/styled": "^11.10.5",
|
|
34
34
|
"prop-types": "15.8.1",
|
|
@@ -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 CheckedIcon: {
|
|
10
|
-
(props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
11
|
-
displayName: string;
|
|
12
|
-
};
|
|
13
|
-
export default CheckedIcon;
|
|
@@ -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 IndeterminateIcon: {
|
|
10
|
-
(props: Props): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
11
|
-
displayName: string;
|
|
12
|
-
};
|
|
13
|
-
export default IndeterminateIcon;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './generated';
|