@trafilea/afrodita-components 4.0.1-beta.0 → 4.0.1-beta.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/build/dts/components/accordion/styles.d.ts +9 -9
- package/build/dts/components/checkbox/styles.d.ts +6 -6
- package/build/dts/components/radio/input/styles.d.ts +8 -8
- package/build/dts/components/rating/starList/styles.d.ts +5 -5
- package/build/dts/components/rating/styles.d.ts +5 -5
- package/build/dts/components/shared/label/styles.d.ts +6 -6
- package/build/index.esm.js +511 -734
- package/build/index.esm.js.map +1 -1
- package/build/index.js +568 -791
- package/build/index.js.map +1 -1
- package/package.json +2 -2
- package/build/dts/test/test-utils.d.ts +0 -8
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Theme } from 'src/core/theme/Theme';
|
|
2
2
|
export declare const AccordionStyles: {
|
|
3
|
-
baseStyles: import("@emotion/
|
|
4
|
-
simple: (theme: Theme, disabled: boolean) => import("@emotion/
|
|
5
|
-
box: (theme: Theme, disabled: boolean) => import("@emotion/
|
|
3
|
+
baseStyles: import("@emotion/utils").SerializedStyles;
|
|
4
|
+
simple: (theme: Theme, disabled: boolean) => import("@emotion/utils").SerializedStyles;
|
|
5
|
+
box: (theme: Theme, disabled: boolean) => import("@emotion/utils").SerializedStyles;
|
|
6
6
|
};
|
|
7
7
|
export declare const AccordionSummaryStyles: {
|
|
8
|
-
baseStyles: import("@emotion/
|
|
9
|
-
simple: (theme: Theme, disabled: boolean) => import("@emotion/
|
|
10
|
-
box: (theme: Theme, disabled: boolean) => import("@emotion/
|
|
8
|
+
baseStyles: import("@emotion/utils").SerializedStyles;
|
|
9
|
+
simple: (theme: Theme, disabled: boolean) => import("@emotion/utils").SerializedStyles;
|
|
10
|
+
box: (theme: Theme, disabled: boolean) => import("@emotion/utils").SerializedStyles;
|
|
11
11
|
};
|
|
12
12
|
export declare const AccordionDetailsStyles: {
|
|
13
|
-
baseStyles: import("@emotion/
|
|
14
|
-
simple: (theme: Theme) => import("@emotion/
|
|
15
|
-
box: (theme: Theme) => import("@emotion/
|
|
13
|
+
baseStyles: import("@emotion/utils").SerializedStyles;
|
|
14
|
+
simple: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
15
|
+
box: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
16
16
|
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Theme } from 'src/core/theme/Theme';
|
|
2
2
|
export declare const CustomCheckboxStyles: {
|
|
3
|
-
baseStyles: import("@emotion/
|
|
4
|
-
small: (theme: Theme) => import("@emotion/
|
|
5
|
-
medium: (theme: Theme) => import("@emotion/
|
|
6
|
-
large: (theme: Theme) => import("@emotion/
|
|
7
|
-
primary: (theme: Theme, isChecked: boolean, disabled: boolean) => import("@emotion/
|
|
8
|
-
secondary: (theme: Theme, isChecked: boolean, disabled: boolean) => import("@emotion/
|
|
3
|
+
baseStyles: import("@emotion/utils").SerializedStyles;
|
|
4
|
+
small: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
5
|
+
medium: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
6
|
+
large: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
7
|
+
primary: (theme: Theme, isChecked: boolean, disabled: boolean) => import("@emotion/utils").SerializedStyles;
|
|
8
|
+
secondary: (theme: Theme, isChecked: boolean, disabled: boolean) => import("@emotion/utils").SerializedStyles;
|
|
9
9
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Theme } from 'src/core/theme/Theme';
|
|
2
2
|
export declare const CustomRadioStyles: {
|
|
3
|
-
baseStyles: (theme: Theme, disabled: boolean) => import("@emotion/
|
|
4
|
-
small: (theme: Theme, active: boolean) => import("@emotion/
|
|
5
|
-
medium: (theme: Theme, active: boolean) => import("@emotion/
|
|
6
|
-
large: (theme: Theme, active: boolean) => import("@emotion/
|
|
3
|
+
baseStyles: (theme: Theme, disabled: boolean) => import("@emotion/utils").SerializedStyles;
|
|
4
|
+
small: (theme: Theme, active: boolean) => import("@emotion/utils").SerializedStyles;
|
|
5
|
+
medium: (theme: Theme, active: boolean) => import("@emotion/utils").SerializedStyles;
|
|
6
|
+
large: (theme: Theme, active: boolean) => import("@emotion/utils").SerializedStyles;
|
|
7
7
|
};
|
|
8
8
|
export declare const ContainerStyles: {
|
|
9
|
-
baseStyles: import("@emotion/
|
|
10
|
-
small: (theme: Theme) => import("@emotion/
|
|
11
|
-
medium: (theme: Theme) => import("@emotion/
|
|
12
|
-
large: (theme: Theme) => import("@emotion/
|
|
9
|
+
baseStyles: import("@emotion/utils").SerializedStyles;
|
|
10
|
+
small: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
11
|
+
medium: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
12
|
+
large: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
13
13
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
export declare const StarStyles: {
|
|
3
|
-
baseStyles: () => import("@emotion/
|
|
4
|
-
xsmall: () => import("@emotion/
|
|
5
|
-
small: () => import("@emotion/
|
|
6
|
-
medium: () => import("@emotion/
|
|
7
|
-
large: () => import("@emotion/
|
|
3
|
+
baseStyles: () => import("@emotion/utils").SerializedStyles;
|
|
4
|
+
xsmall: () => import("@emotion/utils").SerializedStyles;
|
|
5
|
+
small: () => import("@emotion/utils").SerializedStyles;
|
|
6
|
+
medium: () => import("@emotion/utils").SerializedStyles;
|
|
7
|
+
large: () => import("@emotion/utils").SerializedStyles;
|
|
8
8
|
};
|
|
9
9
|
export declare const Container: import("@emotion/styled").StyledComponent<{
|
|
10
10
|
theme?: import("@emotion/react").Theme | undefined;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { Theme } from 'src/core/theme/Theme';
|
|
3
3
|
export declare const LabelStyles: {
|
|
4
|
-
baseStyles: (theme: Theme) => import("@emotion/
|
|
5
|
-
xsmall: (theme: Theme) => import("@emotion/
|
|
6
|
-
small: (theme: Theme) => import("@emotion/
|
|
7
|
-
medium: (theme: Theme) => import("@emotion/
|
|
8
|
-
large: (theme: Theme) => import("@emotion/
|
|
4
|
+
baseStyles: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
5
|
+
xsmall: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
6
|
+
small: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
7
|
+
medium: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
8
|
+
large: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
9
9
|
};
|
|
10
10
|
export declare const Container: import("@emotion/styled").StyledComponent<{
|
|
11
11
|
theme?: import("@emotion/react").Theme | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Theme } from 'src/core/theme/Theme';
|
|
2
|
-
export declare const baseStyles: import("@emotion/
|
|
3
|
-
export declare const regular: (theme: Theme) => import("@emotion/
|
|
4
|
-
export declare const demi: (theme: Theme) => import("@emotion/
|
|
5
|
-
export declare const small: (theme: Theme) => import("@emotion/
|
|
6
|
-
export declare const medium: (theme: Theme) => import("@emotion/
|
|
7
|
-
export declare const large: (theme: Theme) => import("@emotion/
|
|
2
|
+
export declare const baseStyles: import("@emotion/utils").SerializedStyles;
|
|
3
|
+
export declare const regular: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
4
|
+
export declare const demi: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
5
|
+
export declare const small: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
6
|
+
export declare const medium: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|
|
7
|
+
export declare const large: (theme: Theme) => import("@emotion/utils").SerializedStyles;
|