@manuscripts/style-guide 3.5.30 → 3.5.31
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.
|
@@ -15,7 +15,7 @@ const Container = styled_components_1.default.div `
|
|
|
15
15
|
flex-wrap: wrap;
|
|
16
16
|
gap: 4px;
|
|
17
17
|
align-items: center;
|
|
18
|
-
padding:
|
|
18
|
+
padding: 0;
|
|
19
19
|
background: ${(props) => props.theme.colors.background.primary};
|
|
20
20
|
|
|
21
21
|
&:hover Input {
|
|
@@ -36,6 +36,7 @@ const Chip = styled_components_1.default.span `
|
|
|
36
36
|
padding: ${(props) => props.theme.grid.unit}px;
|
|
37
37
|
font-size: ${(props) => props.theme.font.size.small};
|
|
38
38
|
line-height: ${(props) => props.theme.font.lineHeight.normal};
|
|
39
|
+
margin-left: 10px;
|
|
39
40
|
|
|
40
41
|
& + Input {
|
|
41
42
|
padding-left: 0;
|
|
@@ -70,7 +71,6 @@ const Input = styled_components_1.default.input `
|
|
|
70
71
|
border: none;
|
|
71
72
|
flex: 1;
|
|
72
73
|
min-width: 6em;
|
|
73
|
-
padding: 10px 16px;
|
|
74
74
|
|
|
75
75
|
appearance: none;
|
|
76
76
|
-moz-appearance: textfield;
|
|
@@ -9,7 +9,7 @@ const Container = styled.div `
|
|
|
9
9
|
flex-wrap: wrap;
|
|
10
10
|
gap: 4px;
|
|
11
11
|
align-items: center;
|
|
12
|
-
padding:
|
|
12
|
+
padding: 0;
|
|
13
13
|
background: ${(props) => props.theme.colors.background.primary};
|
|
14
14
|
|
|
15
15
|
&:hover Input {
|
|
@@ -30,6 +30,7 @@ const Chip = styled.span `
|
|
|
30
30
|
padding: ${(props) => props.theme.grid.unit}px;
|
|
31
31
|
font-size: ${(props) => props.theme.font.size.small};
|
|
32
32
|
line-height: ${(props) => props.theme.font.lineHeight.normal};
|
|
33
|
+
margin-left: 10px;
|
|
33
34
|
|
|
34
35
|
& + Input {
|
|
35
36
|
padding-left: 0;
|
|
@@ -64,7 +65,6 @@ const Input = styled.input `
|
|
|
64
65
|
border: none;
|
|
65
66
|
flex: 1;
|
|
66
67
|
min-width: 6em;
|
|
67
|
-
padding: 10px 16px;
|
|
68
68
|
|
|
69
69
|
appearance: none;
|
|
70
70
|
-moz-appearance: textfield;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manuscripts/style-guide",
|
|
3
3
|
"description": "Shared components for Manuscripts applications",
|
|
4
|
-
"version": "3.5.
|
|
4
|
+
"version": "3.5.31",
|
|
5
5
|
"repository": "github:Atypon-OpenSource/manuscripts-style-guide",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "dist/cjs",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"test": "vitest run",
|
|
32
32
|
"typecheck": "tsc --noEmit",
|
|
33
33
|
"version": "pnpm build",
|
|
34
|
+
"unlink-all": "git checkout -- pnpm-workspace.yaml pnpm-lock.yaml && rm -rf node_modules && pnpm install",
|
|
34
35
|
"prepare": "husky install"
|
|
35
36
|
},
|
|
36
37
|
"dependencies": {
|