@alveole/components 0.16.0 → 0.16.2
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/ui/EmptyState/EmptyState.stories.d.ts +4 -1
- package/dist/ui/EmptyState/EmptyState.stories.d.ts.map +1 -1
- package/dist/ui/EmptyState/EmptyState.styles.d.ts +4 -1
- package/dist/ui/EmptyState/EmptyState.styles.d.ts.map +1 -1
- package/dist/ui/EmptyState/EmptyState.styles.js +7 -4
- package/dist/ui/ToolbarTop/ToolbarTop.stories.d.ts +1 -1
- package/dist/ui/ToolbarTop/ToolbarTop.styles.d.ts +1 -1
- package/dist/ui/ToolbarTop/ToolbarTop.styles.js +1 -1
- package/package.json +1 -1
|
@@ -17,12 +17,16 @@ declare const _default: {
|
|
|
17
17
|
paddingLeft: import("@alveole/theme").Spacing;
|
|
18
18
|
paddingRight: import("@alveole/theme").Spacing;
|
|
19
19
|
textAlign: "center";
|
|
20
|
+
height: "100%";
|
|
21
|
+
width: "100%";
|
|
20
22
|
};
|
|
21
23
|
contenu: {
|
|
22
24
|
display: "flex";
|
|
23
25
|
gap: import("@alveole/theme").Spacing;
|
|
24
26
|
alignItems: "center";
|
|
25
27
|
textAlign: "center";
|
|
28
|
+
flex: number;
|
|
29
|
+
justifyContent: "center";
|
|
26
30
|
};
|
|
27
31
|
media: {
|
|
28
32
|
display: "flex";
|
|
@@ -54,7 +58,6 @@ declare const _default: {
|
|
|
54
58
|
};
|
|
55
59
|
footer: {
|
|
56
60
|
width: "100%";
|
|
57
|
-
marginTop: import("@alveole/theme").Spacing;
|
|
58
61
|
display: "flex";
|
|
59
62
|
flexDirection: "column";
|
|
60
63
|
gap: import("@alveole/theme").Spacing;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EmptyState.stories.d.ts","sourceRoot":"","sources":["../../../src/ui/EmptyState/EmptyState.stories.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"EmptyState.stories.d.ts","sourceRoot":"","sources":["../../../src/ui/EmptyState/EmptyState.stories.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAKA,wBASkB;AAElB,eAAO,MAAM,OAAO,+CAOnB,CAAC;AAEF,eAAO,MAAM,QAAQ,+CAQpB,CAAC;AAEF,eAAO,MAAM,WAAW,+CAcvB,CAAC;AAEF,eAAO,MAAM,kBAAkB,+CAO9B,CAAC;AAEF,eAAO,MAAM,aAAa,+CAOzB,CAAC"}
|
|
@@ -10,12 +10,16 @@ export declare const useStyles: () => {
|
|
|
10
10
|
paddingLeft: import("@alveole/theme").Spacing;
|
|
11
11
|
paddingRight: import("@alveole/theme").Spacing;
|
|
12
12
|
textAlign: "center";
|
|
13
|
+
height: "100%";
|
|
14
|
+
width: "100%";
|
|
13
15
|
};
|
|
14
16
|
contenu: {
|
|
15
17
|
display: "flex";
|
|
16
18
|
gap: import("@alveole/theme").Spacing;
|
|
17
19
|
alignItems: "center";
|
|
18
20
|
textAlign: "center";
|
|
21
|
+
flex: number;
|
|
22
|
+
justifyContent: "center";
|
|
19
23
|
};
|
|
20
24
|
media: {
|
|
21
25
|
display: "flex";
|
|
@@ -47,7 +51,6 @@ export declare const useStyles: () => {
|
|
|
47
51
|
};
|
|
48
52
|
footer: {
|
|
49
53
|
width: "100%";
|
|
50
|
-
marginTop: import("@alveole/theme").Spacing;
|
|
51
54
|
display: "flex";
|
|
52
55
|
flexDirection: "column";
|
|
53
56
|
gap: import("@alveole/theme").Spacing;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EmptyState.styles.d.ts","sourceRoot":"","sources":["../../../src/ui/EmptyState/EmptyState.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"EmptyState.styles.d.ts","sourceRoot":"","sources":["../../../src/ui/EmptyState/EmptyState.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmDnB,CAAC"}
|
|
@@ -7,16 +7,20 @@ export const useStyles = makeStyles(({ text, color, spacing, radius }) => ({
|
|
|
7
7
|
justifyContent: 'center',
|
|
8
8
|
gap: spacing('150'),
|
|
9
9
|
paddingTop: 0,
|
|
10
|
-
paddingBottom: spacing('
|
|
11
|
-
paddingLeft: spacing('
|
|
12
|
-
paddingRight: spacing('
|
|
10
|
+
paddingBottom: spacing('2W'),
|
|
11
|
+
paddingLeft: spacing('2W'),
|
|
12
|
+
paddingRight: spacing('2W'),
|
|
13
13
|
textAlign: 'center',
|
|
14
|
+
height: '100%',
|
|
15
|
+
width: '100%',
|
|
14
16
|
},
|
|
15
17
|
contenu: {
|
|
16
18
|
display: 'flex',
|
|
17
19
|
gap: spacing('2W'),
|
|
18
20
|
alignItems: 'center',
|
|
19
21
|
textAlign: 'center',
|
|
22
|
+
flex: 1,
|
|
23
|
+
justifyContent: 'center',
|
|
20
24
|
},
|
|
21
25
|
media: {
|
|
22
26
|
display: 'flex',
|
|
@@ -42,7 +46,6 @@ export const useStyles = makeStyles(({ text, color, spacing, radius }) => ({
|
|
|
42
46
|
},
|
|
43
47
|
footer: {
|
|
44
48
|
width: '100%',
|
|
45
|
-
marginTop: spacing('100'),
|
|
46
49
|
display: 'flex',
|
|
47
50
|
flexDirection: 'column',
|
|
48
51
|
gap: spacing('100'),
|