@sproutsocial/seeds-react-container 0.3.5 → 0.3.8
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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +25 -0
- package/dist/esm/index.js +2 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +2 -4
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- package/src/styles.tsx +2 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,19 +3,19 @@ $ tsup --dts
|
|
|
3
3
|
[34mCLI[39m Building entry: src/index.ts
|
|
4
4
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
5
5
|
[34mCLI[39m tsup v8.5.0
|
|
6
|
-
[34mCLI[39m Using tsup config: /home/runner/
|
|
6
|
+
[34mCLI[39m Using tsup config: /home/runner/_work/seeds/seeds/seeds-react/seeds-react-container/tsup.config.ts
|
|
7
7
|
[34mCLI[39m Target: es2022
|
|
8
8
|
[34mCLI[39m Cleaning output folder
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
14
|
-
[
|
|
15
|
-
[
|
|
16
|
-
[
|
|
11
|
+
[32mESM[39m [1mdist/esm/index.js [22m[32m659.00 B[39m
|
|
12
|
+
[32mESM[39m [1mdist/esm/index.js.map [22m[32m1.08 KB[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 102ms
|
|
14
|
+
[32mCJS[39m [1mdist/index.js [22m[32m2.40 KB[39m
|
|
15
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m1.22 KB[39m
|
|
16
|
+
[32mCJS[39m ⚡️ Build success in 102ms
|
|
17
17
|
[34mDTS[39m Build start
|
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
|
18
|
+
[32mDTS[39m ⚡️ Build success in 4382ms
|
|
19
19
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m241.00 B[39m
|
|
20
20
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m241.00 B[39m
|
|
21
|
-
Done in
|
|
21
|
+
Done in 6.33s.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @sproutsocial/seeds-react-container
|
|
2
2
|
|
|
3
|
+
## 0.3.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [17d4f12]
|
|
8
|
+
- @sproutsocial/seeds-react-theme@3.6.0
|
|
9
|
+
- @sproutsocial/seeds-react-box@1.1.14
|
|
10
|
+
- @sproutsocial/seeds-react-mixins@4.3.1
|
|
11
|
+
|
|
12
|
+
## 0.3.7
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 5bb63e1: Add shared CSS mixins (container, divider, truncate) to seeds-react-mixins. Update Container to use the container mixin internally.
|
|
17
|
+
- Updated dependencies [5bb63e1]
|
|
18
|
+
- @sproutsocial/seeds-react-mixins@4.3.0
|
|
19
|
+
|
|
20
|
+
## 0.3.6
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [118e300]
|
|
25
|
+
- @sproutsocial/seeds-react-theme@3.5.1
|
|
26
|
+
- @sproutsocial/seeds-react-box@1.1.13
|
|
27
|
+
|
|
3
28
|
## 0.3.5
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/dist/esm/index.js
CHANGED
|
@@ -4,11 +4,9 @@ import * as React from "react";
|
|
|
4
4
|
// src/styles.tsx
|
|
5
5
|
import styled from "styled-components";
|
|
6
6
|
import { Box } from "@sproutsocial/seeds-react-box";
|
|
7
|
+
import { container } from "@sproutsocial/seeds-react-mixins";
|
|
7
8
|
var StyledContainer = styled(Box)`
|
|
8
|
-
|
|
9
|
-
border-radius: ${({ theme }) => theme.radii.outer};
|
|
10
|
-
border: ${({ theme }) => theme.borders[500]}
|
|
11
|
-
${({ theme }) => theme.colors.container.border.base};
|
|
9
|
+
${container}
|
|
12
10
|
`;
|
|
13
11
|
var styles_default = StyledContainer;
|
|
14
12
|
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/Container.tsx","../../src/styles.tsx"],"sourcesContent":["import * as React from \"react\";\nimport StyledContainer from \"./styles\";\nimport type { TypeBoxProps } from \"@sproutsocial/seeds-react-box\";\n\nconst Container = React.forwardRef<HTMLDivElement, TypeBoxProps>(\n (props, ref) => {\n return <StyledContainer {...props} ref={ref} />;\n }\n);\n\nContainer.displayName = \"Container\";\n\nexport default Container;\n","import styled from \"styled-components\";\nimport { Box } from \"@sproutsocial/seeds-react-box\";\nimport type { TypeBoxProps } from \"@sproutsocial/seeds-react-box\";\n\nconst StyledContainer = styled(Box)<TypeBoxProps>`\n
|
|
1
|
+
{"version":3,"sources":["../../src/Container.tsx","../../src/styles.tsx"],"sourcesContent":["import * as React from \"react\";\nimport StyledContainer from \"./styles\";\nimport type { TypeBoxProps } from \"@sproutsocial/seeds-react-box\";\n\nconst Container = React.forwardRef<HTMLDivElement, TypeBoxProps>(\n (props, ref) => {\n return <StyledContainer {...props} ref={ref} />;\n }\n);\n\nContainer.displayName = \"Container\";\n\nexport default Container;\n","import styled from \"styled-components\";\nimport { Box } from \"@sproutsocial/seeds-react-box\";\nimport type { TypeBoxProps } from \"@sproutsocial/seeds-react-box\";\nimport { container } from \"@sproutsocial/seeds-react-mixins\";\n\nconst StyledContainer = styled(Box)<TypeBoxProps>`\n ${container}\n`;\n\nexport default StyledContainer;\n"],"mappings":";AAAA,YAAY,WAAW;;;ACAvB,OAAO,YAAY;AACnB,SAAS,WAAW;AAEpB,SAAS,iBAAiB;AAE1B,IAAM,kBAAkB,OAAO,GAAG;AAAA,IAC9B,SAAS;AAAA;AAGb,IAAO,iBAAQ;;;ADHJ;AAFX,IAAM,YAAkB;AAAA,EACtB,CAAC,OAAO,QAAQ;AACd,WAAO,oBAAC,kBAAiB,GAAG,OAAO,KAAU;AAAA,EAC/C;AACF;AAEA,UAAU,cAAc;AAExB,IAAO,oBAAQ;","names":[]}
|
package/dist/index.js
CHANGED
|
@@ -40,11 +40,9 @@ var React = __toESM(require("react"));
|
|
|
40
40
|
// src/styles.tsx
|
|
41
41
|
var import_styled_components = __toESM(require("styled-components"));
|
|
42
42
|
var import_seeds_react_box = require("@sproutsocial/seeds-react-box");
|
|
43
|
+
var import_seeds_react_mixins = require("@sproutsocial/seeds-react-mixins");
|
|
43
44
|
var StyledContainer = (0, import_styled_components.default)(import_seeds_react_box.Box)`
|
|
44
|
-
|
|
45
|
-
border-radius: ${({ theme }) => theme.radii.outer};
|
|
46
|
-
border: ${({ theme }) => theme.borders[500]}
|
|
47
|
-
${({ theme }) => theme.colors.container.border.base};
|
|
45
|
+
${import_seeds_react_mixins.container}
|
|
48
46
|
`;
|
|
49
47
|
var styles_default = StyledContainer;
|
|
50
48
|
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/Container.tsx","../src/styles.tsx"],"sourcesContent":["import Container from \"./Container\";\n\nexport { Container };\n","import * as React from \"react\";\nimport StyledContainer from \"./styles\";\nimport type { TypeBoxProps } from \"@sproutsocial/seeds-react-box\";\n\nconst Container = React.forwardRef<HTMLDivElement, TypeBoxProps>(\n (props, ref) => {\n return <StyledContainer {...props} ref={ref} />;\n }\n);\n\nContainer.displayName = \"Container\";\n\nexport default Container;\n","import styled from \"styled-components\";\nimport { Box } from \"@sproutsocial/seeds-react-box\";\nimport type { TypeBoxProps } from \"@sproutsocial/seeds-react-box\";\n\nconst StyledContainer = styled(Box)<TypeBoxProps>`\n
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/Container.tsx","../src/styles.tsx"],"sourcesContent":["import Container from \"./Container\";\n\nexport { Container };\n","import * as React from \"react\";\nimport StyledContainer from \"./styles\";\nimport type { TypeBoxProps } from \"@sproutsocial/seeds-react-box\";\n\nconst Container = React.forwardRef<HTMLDivElement, TypeBoxProps>(\n (props, ref) => {\n return <StyledContainer {...props} ref={ref} />;\n }\n);\n\nContainer.displayName = \"Container\";\n\nexport default Container;\n","import styled from \"styled-components\";\nimport { Box } from \"@sproutsocial/seeds-react-box\";\nimport type { TypeBoxProps } from \"@sproutsocial/seeds-react-box\";\nimport { container } from \"@sproutsocial/seeds-react-mixins\";\n\nconst StyledContainer = styled(Box)<TypeBoxProps>`\n ${container}\n`;\n\nexport default StyledContainer;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA,YAAuB;;;ACAvB,+BAAmB;AACnB,6BAAoB;AAEpB,gCAA0B;AAE1B,IAAM,sBAAkB,yBAAAA,SAAO,0BAAG;AAAA,IAC9B,mCAAS;AAAA;AAGb,IAAO,iBAAQ;;;ADHJ;AAFX,IAAM,YAAkB;AAAA,EACtB,CAAC,OAAO,QAAQ;AACd,WAAO,4CAAC,kBAAiB,GAAG,OAAO,KAAU;AAAA,EAC/C;AACF;AAEA,UAAU,cAAc;AAExB,IAAO,oBAAQ;","names":["styled"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sproutsocial/seeds-react-container",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"description": "Seeds React Container",
|
|
5
5
|
"author": "Sprout Social, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,8 +18,9 @@
|
|
|
18
18
|
"test:watch": "jest --watch --coverage=false"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@sproutsocial/seeds-react-box": "^1.1.
|
|
22
|
-
"@sproutsocial/seeds-react-
|
|
21
|
+
"@sproutsocial/seeds-react-box": "^1.1.14",
|
|
22
|
+
"@sproutsocial/seeds-react-mixins": "^4.3.1",
|
|
23
|
+
"@sproutsocial/seeds-react-theme": "^3.6.0",
|
|
23
24
|
"@sproutsocial/seeds-react-system-props": "^3.0.1"
|
|
24
25
|
},
|
|
25
26
|
"devDependencies": {
|
package/src/styles.tsx
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import styled from "styled-components";
|
|
2
2
|
import { Box } from "@sproutsocial/seeds-react-box";
|
|
3
3
|
import type { TypeBoxProps } from "@sproutsocial/seeds-react-box";
|
|
4
|
+
import { container } from "@sproutsocial/seeds-react-mixins";
|
|
4
5
|
|
|
5
6
|
const StyledContainer = styled(Box)<TypeBoxProps>`
|
|
6
|
-
|
|
7
|
-
border-radius: ${({ theme }) => theme.radii.outer};
|
|
8
|
-
border: ${({ theme }) => theme.borders[500]}
|
|
9
|
-
${({ theme }) => theme.colors.container.border.base};
|
|
7
|
+
${container}
|
|
10
8
|
`;
|
|
11
9
|
|
|
12
10
|
export default StyledContainer;
|