@commercetools-uikit/radio-input 16.10.0 → 16.12.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.
- package/dist/commercetools-uikit-radio-input.cjs.dev.js +1 -1
- package/dist/commercetools-uikit-radio-input.cjs.prod.js +1 -1
- package/dist/commercetools-uikit-radio-input.esm.js +1 -1
- package/dist/declarations/src/export-types.d.ts +2 -2
- package/dist/declarations/src/index.d.ts +5 -5
- package/package.json +9 -9
- package/dist/declarations/src/radio-option.styles.d.ts +0 -31
|
@@ -344,7 +344,7 @@ Group.defaultProps = defaultProps;
|
|
|
344
344
|
var Group$1 = Group;
|
|
345
345
|
|
|
346
346
|
// NOTE: This string will be replaced on build time with the package version.
|
|
347
|
-
var version = "16.
|
|
347
|
+
var version = "16.12.0";
|
|
348
348
|
|
|
349
349
|
const RadioInput = {
|
|
350
350
|
Group: Group$1,
|
|
@@ -268,7 +268,7 @@ Group.defaultProps = defaultProps;
|
|
|
268
268
|
var Group$1 = Group;
|
|
269
269
|
|
|
270
270
|
// NOTE: This string will be replaced on build time with the package version.
|
|
271
|
-
var version = "16.
|
|
271
|
+
var version = "16.12.0";
|
|
272
272
|
|
|
273
273
|
const RadioInput = {
|
|
274
274
|
Group: Group$1,
|
|
@@ -321,7 +321,7 @@ Group.defaultProps = defaultProps;
|
|
|
321
321
|
var Group$1 = Group;
|
|
322
322
|
|
|
323
323
|
// NOTE: This string will be replaced on build time with the package version.
|
|
324
|
-
var version = "16.
|
|
324
|
+
var version = "16.12.0";
|
|
325
325
|
|
|
326
326
|
const RadioInput = {
|
|
327
327
|
Group: Group$1,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { TGroupProps } from
|
|
2
|
-
export type { TOptionProps } from
|
|
1
|
+
export type { TGroupProps } from "./radio-group.js";
|
|
2
|
+
export type { TOptionProps } from "./radio-option.js";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const RadioInput: {
|
|
2
2
|
Group: {
|
|
3
|
-
(props: import("./radio-group").TGroupProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
3
|
+
(props: import("./radio-group.js").TGroupProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
4
4
|
displayName: string;
|
|
5
|
-
defaultProps: Pick<import("./radio-group").TGroupProps, "direction" | "horizontalConstraint" | "directionProps">;
|
|
5
|
+
defaultProps: Pick<import("./radio-group.js").TGroupProps, "direction" | "horizontalConstraint" | "directionProps">;
|
|
6
6
|
};
|
|
7
7
|
Option: {
|
|
8
|
-
(props: import("./radio-option").TOptionProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
8
|
+
(props: import("./radio-option.js").TOptionProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
9
9
|
displayName: string;
|
|
10
10
|
defaultProps: {
|
|
11
11
|
components: {};
|
|
@@ -13,5 +13,5 @@ declare const RadioInput: {
|
|
|
13
13
|
};
|
|
14
14
|
};
|
|
15
15
|
export default RadioInput;
|
|
16
|
-
export { default as version } from
|
|
17
|
-
export * from
|
|
16
|
+
export { default as version } from "./version.js";
|
|
17
|
+
export * from "./export-types.js";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-uikit/radio-input",
|
|
3
3
|
"description": "A RadioInput represents a group of options where only one option can be selected at a time.",
|
|
4
|
-
"version": "16.
|
|
4
|
+
"version": "16.12.0",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@babel/runtime": "^7.20.13",
|
|
23
23
|
"@babel/runtime-corejs3": "^7.20.13",
|
|
24
|
-
"@commercetools-uikit/constraints": "16.
|
|
25
|
-
"@commercetools-uikit/design-system": "16.
|
|
26
|
-
"@commercetools-uikit/icons": "16.
|
|
27
|
-
"@commercetools-uikit/input-utils": "16.
|
|
28
|
-
"@commercetools-uikit/spacings-inline": "16.
|
|
29
|
-
"@commercetools-uikit/spacings-inset": "16.
|
|
30
|
-
"@commercetools-uikit/spacings-stack": "16.
|
|
31
|
-
"@commercetools-uikit/utils": "16.
|
|
24
|
+
"@commercetools-uikit/constraints": "16.12.0",
|
|
25
|
+
"@commercetools-uikit/design-system": "16.12.0",
|
|
26
|
+
"@commercetools-uikit/icons": "16.12.0",
|
|
27
|
+
"@commercetools-uikit/input-utils": "16.12.0",
|
|
28
|
+
"@commercetools-uikit/spacings-inline": "16.12.0",
|
|
29
|
+
"@commercetools-uikit/spacings-inset": "16.12.0",
|
|
30
|
+
"@commercetools-uikit/spacings-stack": "16.12.0",
|
|
31
|
+
"@commercetools-uikit/utils": "16.12.0",
|
|
32
32
|
"@emotion/react": "^11.10.5",
|
|
33
33
|
"@emotion/styled": "^11.10.5",
|
|
34
34
|
"prop-types": "15.8.1",
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import type { TStylesProps } from './radio-option';
|
|
3
|
-
declare const LabelTextWrapper: import("@emotion/styled").StyledComponent<{
|
|
4
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
5
|
-
as?: import("react").ElementType<any> | undefined;
|
|
6
|
-
} & TStylesProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
7
|
-
declare const AdditionalTextWrapper: import("@emotion/styled").StyledComponent<{
|
|
8
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
9
|
-
as?: import("react").ElementType<any> | undefined;
|
|
10
|
-
} & TStylesProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
11
|
-
declare const RadioInputWrapper: import("@emotion/styled").StyledComponent<{
|
|
12
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
13
|
-
as?: import("react").ElementType<any> | undefined;
|
|
14
|
-
} & TStylesProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
15
|
-
declare const RadioOptionKnob: import("@emotion/styled").StyledComponent<{
|
|
16
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
17
|
-
as?: import("react").ElementType<any> | undefined;
|
|
18
|
-
} & TStylesProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
19
|
-
declare const RadioOptionBorder: import("@emotion/styled").StyledComponent<{
|
|
20
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
21
|
-
as?: import("react").ElementType<any> | undefined;
|
|
22
|
-
} & TStylesProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
23
|
-
declare const RadioOptionContainer: import("@emotion/styled").StyledComponent<{
|
|
24
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
25
|
-
as?: import("react").ElementType<any> | undefined;
|
|
26
|
-
} & TStylesProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
27
|
-
declare const RadioOptionLabel: import("@emotion/styled").StyledComponent<{
|
|
28
|
-
theme?: import("@emotion/react").Theme | undefined;
|
|
29
|
-
as?: import("react").ElementType<any> | undefined;
|
|
30
|
-
} & TStylesProps, import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, {}>;
|
|
31
|
-
export { LabelTextWrapper, RadioInputWrapper, AdditionalTextWrapper, RadioOptionKnob, RadioOptionBorder, RadioOptionLabel, RadioOptionContainer, };
|