@sproutsocial/seeds-react-partner-logo 1.0.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/index.d.mts +38 -0
- package/dist/index.d.ts +38 -0
- package/dist/index.js +164 -0
- package/dist/index.mjs +124 -0
- package/package.json +35 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
import { EnumLogoNamesWithoutVariants } from '@sproutsocial/seeds-partner-logos';
|
|
4
|
+
import { TypeStyledComponentsCommonProps, TypeSystemCommonProps, TypeSystemFlexboxProps } from '@sproutsocial/seeds-react-system-props';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Use PartnerLogoNames instead
|
|
8
|
+
*/
|
|
9
|
+
declare const PartnerNames: readonly ["adobe-experience-manager", "android", "apple-app-store", "apple", "bigcommerce", "bitly", "bynder", "canva", "dropbox", "facebook-audience-network", "facebook", "facebook-groups", "facebook-shops", "feedly", "github", "glassdoor", "google-analytics", "google-business-messages", "google-drive", "google-my-business", "google-play-store", "hubspot", "instagram", "linkedin-audience-network", "linkedin", "marketo", "messenger", "microsoft-dynamics", "pinterest", "reddit", "salesforce-cloud", "salesforce", "shopify", "slack", "sproutsocial", "tableau", "threads", "tiktok", "tripadvisor", "trustpilot", "tumblr", "twitter-audience-network", "twitter", "whatsapp", "woocommerce", "x-twitter", "yelp", "youtube", "zendesk"];
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated Use EnumLogoNames instead
|
|
12
|
+
*/
|
|
13
|
+
type TypePartnerNames = EnumLogoNamesWithoutVariants;
|
|
14
|
+
declare const PartnerLogoSizes: {
|
|
15
|
+
readonly mini: "12px";
|
|
16
|
+
readonly small: "16px";
|
|
17
|
+
readonly medium: "24px";
|
|
18
|
+
readonly large: "32px";
|
|
19
|
+
readonly jumbo: "64px";
|
|
20
|
+
};
|
|
21
|
+
type TypePartnerLogoSize = keyof typeof PartnerLogoSizes;
|
|
22
|
+
declare const PartnerLogoTypes: readonly ["symbol", "wordmark", "lockup"];
|
|
23
|
+
type TypePartnerLogoTypes = (typeof PartnerLogoTypes)[number];
|
|
24
|
+
interface TypePartnerLogoProps extends TypeStyledComponentsCommonProps, TypeSystemCommonProps, TypeSystemFlexboxProps, Omit<React.ComponentPropsWithoutRef<"span">, "color"> {
|
|
25
|
+
/** The name of the partner whose logo you want to render. */
|
|
26
|
+
partnerName: EnumLogoNamesWithoutVariants;
|
|
27
|
+
/** Manually override the default mode behavior by rendering a logo based on the background it's displayed on. */
|
|
28
|
+
backgroundType?: "dark" | "light";
|
|
29
|
+
logoType?: TypePartnerLogoTypes;
|
|
30
|
+
height?: string;
|
|
31
|
+
width?: string;
|
|
32
|
+
size?: TypePartnerLogoSize;
|
|
33
|
+
svgProps?: React.ComponentPropsWithoutRef<"svg">;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
declare const PartnerLogo: ({ partnerName, backgroundType, logoType, height, width, size, "aria-label": ariaLabel, svgProps, ...rest }: TypePartnerLogoProps) => React__default.JSX.Element;
|
|
37
|
+
|
|
38
|
+
export { PartnerLogo, PartnerLogoSizes, PartnerLogoTypes, PartnerNames, type TypePartnerLogoProps, type TypePartnerLogoSize, type TypePartnerLogoTypes, type TypePartnerNames, PartnerLogo as default };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import React__default from 'react';
|
|
3
|
+
import { EnumLogoNamesWithoutVariants } from '@sproutsocial/seeds-partner-logos';
|
|
4
|
+
import { TypeStyledComponentsCommonProps, TypeSystemCommonProps, TypeSystemFlexboxProps } from '@sproutsocial/seeds-react-system-props';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Use PartnerLogoNames instead
|
|
8
|
+
*/
|
|
9
|
+
declare const PartnerNames: readonly ["adobe-experience-manager", "android", "apple-app-store", "apple", "bigcommerce", "bitly", "bynder", "canva", "dropbox", "facebook-audience-network", "facebook", "facebook-groups", "facebook-shops", "feedly", "github", "glassdoor", "google-analytics", "google-business-messages", "google-drive", "google-my-business", "google-play-store", "hubspot", "instagram", "linkedin-audience-network", "linkedin", "marketo", "messenger", "microsoft-dynamics", "pinterest", "reddit", "salesforce-cloud", "salesforce", "shopify", "slack", "sproutsocial", "tableau", "threads", "tiktok", "tripadvisor", "trustpilot", "tumblr", "twitter-audience-network", "twitter", "whatsapp", "woocommerce", "x-twitter", "yelp", "youtube", "zendesk"];
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated Use EnumLogoNames instead
|
|
12
|
+
*/
|
|
13
|
+
type TypePartnerNames = EnumLogoNamesWithoutVariants;
|
|
14
|
+
declare const PartnerLogoSizes: {
|
|
15
|
+
readonly mini: "12px";
|
|
16
|
+
readonly small: "16px";
|
|
17
|
+
readonly medium: "24px";
|
|
18
|
+
readonly large: "32px";
|
|
19
|
+
readonly jumbo: "64px";
|
|
20
|
+
};
|
|
21
|
+
type TypePartnerLogoSize = keyof typeof PartnerLogoSizes;
|
|
22
|
+
declare const PartnerLogoTypes: readonly ["symbol", "wordmark", "lockup"];
|
|
23
|
+
type TypePartnerLogoTypes = (typeof PartnerLogoTypes)[number];
|
|
24
|
+
interface TypePartnerLogoProps extends TypeStyledComponentsCommonProps, TypeSystemCommonProps, TypeSystemFlexboxProps, Omit<React.ComponentPropsWithoutRef<"span">, "color"> {
|
|
25
|
+
/** The name of the partner whose logo you want to render. */
|
|
26
|
+
partnerName: EnumLogoNamesWithoutVariants;
|
|
27
|
+
/** Manually override the default mode behavior by rendering a logo based on the background it's displayed on. */
|
|
28
|
+
backgroundType?: "dark" | "light";
|
|
29
|
+
logoType?: TypePartnerLogoTypes;
|
|
30
|
+
height?: string;
|
|
31
|
+
width?: string;
|
|
32
|
+
size?: TypePartnerLogoSize;
|
|
33
|
+
svgProps?: React.ComponentPropsWithoutRef<"svg">;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
declare const PartnerLogo: ({ partnerName, backgroundType, logoType, height, width, size, "aria-label": ariaLabel, svgProps, ...rest }: TypePartnerLogoProps) => React__default.JSX.Element;
|
|
37
|
+
|
|
38
|
+
export { PartnerLogo, PartnerLogoSizes, PartnerLogoTypes, PartnerNames, type TypePartnerLogoProps, type TypePartnerLogoSize, type TypePartnerLogoTypes, type TypePartnerNames, PartnerLogo as default };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
|
|
30
|
+
// src/index.ts
|
|
31
|
+
var src_exports = {};
|
|
32
|
+
__export(src_exports, {
|
|
33
|
+
PartnerLogo: () => PartnerLogo_default,
|
|
34
|
+
PartnerLogoSizes: () => PartnerLogoSizes,
|
|
35
|
+
PartnerLogoTypes: () => PartnerLogoTypes,
|
|
36
|
+
PartnerNames: () => PartnerNames,
|
|
37
|
+
default: () => src_default
|
|
38
|
+
});
|
|
39
|
+
module.exports = __toCommonJS(src_exports);
|
|
40
|
+
|
|
41
|
+
// src/PartnerLogo.tsx
|
|
42
|
+
var import_react = __toESM(require("react"));
|
|
43
|
+
var import_styled_components2 = require("styled-components");
|
|
44
|
+
|
|
45
|
+
// src/styles.ts
|
|
46
|
+
var import_styled_components = __toESM(require("styled-components"));
|
|
47
|
+
var import_styled_system = require("styled-system");
|
|
48
|
+
var import_seeds_react_system_props = require("@sproutsocial/seeds-react-system-props");
|
|
49
|
+
var sizes = {
|
|
50
|
+
mini: "12px",
|
|
51
|
+
small: "16px",
|
|
52
|
+
medium: "24px",
|
|
53
|
+
large: "32px",
|
|
54
|
+
jumbo: "64px"
|
|
55
|
+
};
|
|
56
|
+
var stylesForSize = (height, width, logoSize) => import_styled_components.css`
|
|
57
|
+
height: ${logoSize ? logoSize : height};
|
|
58
|
+
line-height: ${logoSize ? logoSize : height};
|
|
59
|
+
|
|
60
|
+
.logo-svg {
|
|
61
|
+
height: ${logoSize ? logoSize : height};
|
|
62
|
+
width: ${logoSize ? logoSize : ""};
|
|
63
|
+
}
|
|
64
|
+
`;
|
|
65
|
+
var Container = (0, import_styled_components.default)("span")`
|
|
66
|
+
display: inline-block;
|
|
67
|
+
color: inherit;
|
|
68
|
+
vertical-align: middle;
|
|
69
|
+
${import_seeds_react_system_props.COMMON}
|
|
70
|
+
${import_seeds_react_system_props.FLEXBOX}
|
|
71
|
+
${import_styled_system.verticalAlign}
|
|
72
|
+
${(props) => stylesForSize(props.height, props.width, sizes[props.logoSize])}
|
|
73
|
+
`;
|
|
74
|
+
var styles_default = Container;
|
|
75
|
+
|
|
76
|
+
// src/PartnerLogo.tsx
|
|
77
|
+
var import_seeds_partner_logos = require("@sproutsocial/seeds-partner-logos");
|
|
78
|
+
var whichLogo = ({
|
|
79
|
+
backgroundType,
|
|
80
|
+
logoType,
|
|
81
|
+
partnerName
|
|
82
|
+
}, mode) => {
|
|
83
|
+
const logo = logoType && logoType !== "symbol" ? partnerName + "-" + logoType : partnerName;
|
|
84
|
+
if (backgroundType && backgroundType === "dark") {
|
|
85
|
+
return `${logo}-dark`;
|
|
86
|
+
} else if (backgroundType && backgroundType === "light") {
|
|
87
|
+
return logo;
|
|
88
|
+
} else if (mode === "dark") {
|
|
89
|
+
return `${logo}-dark`;
|
|
90
|
+
} else {
|
|
91
|
+
return logo;
|
|
92
|
+
}
|
|
93
|
+
};
|
|
94
|
+
var PartnerLogo = ({
|
|
95
|
+
partnerName,
|
|
96
|
+
backgroundType,
|
|
97
|
+
logoType = "symbol",
|
|
98
|
+
height,
|
|
99
|
+
width,
|
|
100
|
+
size,
|
|
101
|
+
"aria-label": ariaLabel,
|
|
102
|
+
svgProps,
|
|
103
|
+
...rest
|
|
104
|
+
}) => {
|
|
105
|
+
const { mode } = (0, import_styled_components2.useTheme)();
|
|
106
|
+
const logo = whichLogo({ backgroundType, logoType, partnerName }, mode);
|
|
107
|
+
const logoViewBox = import_seeds_partner_logos.ViewBoxes[logo];
|
|
108
|
+
const viewBoxCoordinates = logoViewBox?.split(" ") || [];
|
|
109
|
+
const defaultWidth = viewBoxCoordinates[2];
|
|
110
|
+
const defaultHeight = viewBoxCoordinates[3];
|
|
111
|
+
return /* @__PURE__ */ import_react.default.createElement(
|
|
112
|
+
styles_default,
|
|
113
|
+
{
|
|
114
|
+
height: height ? height : defaultHeight + "px",
|
|
115
|
+
width: width ? width : defaultWidth + "px",
|
|
116
|
+
logoSize: size,
|
|
117
|
+
className: "logo",
|
|
118
|
+
role: "img",
|
|
119
|
+
"aria-label": ariaLabel,
|
|
120
|
+
"data-qa-logo": partnerName,
|
|
121
|
+
...rest
|
|
122
|
+
},
|
|
123
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
124
|
+
"svg",
|
|
125
|
+
{
|
|
126
|
+
className: "logo-svg",
|
|
127
|
+
viewBox: logoViewBox,
|
|
128
|
+
focusable: false,
|
|
129
|
+
"data-qa-logo-svg": `${partnerName}-svg`,
|
|
130
|
+
...svgProps
|
|
131
|
+
},
|
|
132
|
+
/* @__PURE__ */ import_react.default.createElement(
|
|
133
|
+
"use",
|
|
134
|
+
{
|
|
135
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
136
|
+
xlinkHref: `#seeds-svgs_${logo}`
|
|
137
|
+
}
|
|
138
|
+
)
|
|
139
|
+
)
|
|
140
|
+
);
|
|
141
|
+
};
|
|
142
|
+
var PartnerLogo_default = PartnerLogo;
|
|
143
|
+
|
|
144
|
+
// src/PartnerLogoTypes.ts
|
|
145
|
+
var import_seeds_partner_logos2 = require("@sproutsocial/seeds-partner-logos");
|
|
146
|
+
var PartnerNames = import_seeds_partner_logos2.LogoNamesWithoutVariants;
|
|
147
|
+
var PartnerLogoSizes = {
|
|
148
|
+
mini: "12px",
|
|
149
|
+
small: "16px",
|
|
150
|
+
medium: "24px",
|
|
151
|
+
large: "32px",
|
|
152
|
+
jumbo: "64px"
|
|
153
|
+
};
|
|
154
|
+
var PartnerLogoTypes = ["symbol", "wordmark", "lockup"];
|
|
155
|
+
|
|
156
|
+
// src/index.ts
|
|
157
|
+
var src_default = PartnerLogo_default;
|
|
158
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
159
|
+
0 && (module.exports = {
|
|
160
|
+
PartnerLogo,
|
|
161
|
+
PartnerLogoSizes,
|
|
162
|
+
PartnerLogoTypes,
|
|
163
|
+
PartnerNames
|
|
164
|
+
});
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
// src/PartnerLogo.tsx
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { useTheme } from "styled-components";
|
|
4
|
+
|
|
5
|
+
// src/styles.ts
|
|
6
|
+
import styled, { css } from "styled-components";
|
|
7
|
+
import { verticalAlign } from "styled-system";
|
|
8
|
+
import { COMMON, FLEXBOX } from "@sproutsocial/seeds-react-system-props";
|
|
9
|
+
var sizes = {
|
|
10
|
+
mini: "12px",
|
|
11
|
+
small: "16px",
|
|
12
|
+
medium: "24px",
|
|
13
|
+
large: "32px",
|
|
14
|
+
jumbo: "64px"
|
|
15
|
+
};
|
|
16
|
+
var stylesForSize = (height, width, logoSize) => css`
|
|
17
|
+
height: ${logoSize ? logoSize : height};
|
|
18
|
+
line-height: ${logoSize ? logoSize : height};
|
|
19
|
+
|
|
20
|
+
.logo-svg {
|
|
21
|
+
height: ${logoSize ? logoSize : height};
|
|
22
|
+
width: ${logoSize ? logoSize : ""};
|
|
23
|
+
}
|
|
24
|
+
`;
|
|
25
|
+
var Container = styled("span")`
|
|
26
|
+
display: inline-block;
|
|
27
|
+
color: inherit;
|
|
28
|
+
vertical-align: middle;
|
|
29
|
+
${COMMON}
|
|
30
|
+
${FLEXBOX}
|
|
31
|
+
${verticalAlign}
|
|
32
|
+
${(props) => stylesForSize(props.height, props.width, sizes[props.logoSize])}
|
|
33
|
+
`;
|
|
34
|
+
var styles_default = Container;
|
|
35
|
+
|
|
36
|
+
// src/PartnerLogo.tsx
|
|
37
|
+
import { ViewBoxes } from "@sproutsocial/seeds-partner-logos";
|
|
38
|
+
var whichLogo = ({
|
|
39
|
+
backgroundType,
|
|
40
|
+
logoType,
|
|
41
|
+
partnerName
|
|
42
|
+
}, mode) => {
|
|
43
|
+
const logo = logoType && logoType !== "symbol" ? partnerName + "-" + logoType : partnerName;
|
|
44
|
+
if (backgroundType && backgroundType === "dark") {
|
|
45
|
+
return `${logo}-dark`;
|
|
46
|
+
} else if (backgroundType && backgroundType === "light") {
|
|
47
|
+
return logo;
|
|
48
|
+
} else if (mode === "dark") {
|
|
49
|
+
return `${logo}-dark`;
|
|
50
|
+
} else {
|
|
51
|
+
return logo;
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
var PartnerLogo = ({
|
|
55
|
+
partnerName,
|
|
56
|
+
backgroundType,
|
|
57
|
+
logoType = "symbol",
|
|
58
|
+
height,
|
|
59
|
+
width,
|
|
60
|
+
size,
|
|
61
|
+
"aria-label": ariaLabel,
|
|
62
|
+
svgProps,
|
|
63
|
+
...rest
|
|
64
|
+
}) => {
|
|
65
|
+
const { mode } = useTheme();
|
|
66
|
+
const logo = whichLogo({ backgroundType, logoType, partnerName }, mode);
|
|
67
|
+
const logoViewBox = ViewBoxes[logo];
|
|
68
|
+
const viewBoxCoordinates = logoViewBox?.split(" ") || [];
|
|
69
|
+
const defaultWidth = viewBoxCoordinates[2];
|
|
70
|
+
const defaultHeight = viewBoxCoordinates[3];
|
|
71
|
+
return /* @__PURE__ */ React.createElement(
|
|
72
|
+
styles_default,
|
|
73
|
+
{
|
|
74
|
+
height: height ? height : defaultHeight + "px",
|
|
75
|
+
width: width ? width : defaultWidth + "px",
|
|
76
|
+
logoSize: size,
|
|
77
|
+
className: "logo",
|
|
78
|
+
role: "img",
|
|
79
|
+
"aria-label": ariaLabel,
|
|
80
|
+
"data-qa-logo": partnerName,
|
|
81
|
+
...rest
|
|
82
|
+
},
|
|
83
|
+
/* @__PURE__ */ React.createElement(
|
|
84
|
+
"svg",
|
|
85
|
+
{
|
|
86
|
+
className: "logo-svg",
|
|
87
|
+
viewBox: logoViewBox,
|
|
88
|
+
focusable: false,
|
|
89
|
+
"data-qa-logo-svg": `${partnerName}-svg`,
|
|
90
|
+
...svgProps
|
|
91
|
+
},
|
|
92
|
+
/* @__PURE__ */ React.createElement(
|
|
93
|
+
"use",
|
|
94
|
+
{
|
|
95
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
96
|
+
xlinkHref: `#seeds-svgs_${logo}`
|
|
97
|
+
}
|
|
98
|
+
)
|
|
99
|
+
)
|
|
100
|
+
);
|
|
101
|
+
};
|
|
102
|
+
var PartnerLogo_default = PartnerLogo;
|
|
103
|
+
|
|
104
|
+
// src/PartnerLogoTypes.ts
|
|
105
|
+
import { LogoNamesWithoutVariants } from "@sproutsocial/seeds-partner-logos";
|
|
106
|
+
var PartnerNames = LogoNamesWithoutVariants;
|
|
107
|
+
var PartnerLogoSizes = {
|
|
108
|
+
mini: "12px",
|
|
109
|
+
small: "16px",
|
|
110
|
+
medium: "24px",
|
|
111
|
+
large: "32px",
|
|
112
|
+
jumbo: "64px"
|
|
113
|
+
};
|
|
114
|
+
var PartnerLogoTypes = ["symbol", "wordmark", "lockup"];
|
|
115
|
+
|
|
116
|
+
// src/index.ts
|
|
117
|
+
var src_default = PartnerLogo_default;
|
|
118
|
+
export {
|
|
119
|
+
PartnerLogo_default as PartnerLogo,
|
|
120
|
+
PartnerLogoSizes,
|
|
121
|
+
PartnerLogoTypes,
|
|
122
|
+
PartnerNames,
|
|
123
|
+
src_default as default
|
|
124
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sproutsocial/seeds-react-partner-logo",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Seeds React Partner Logo component",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"author": "Sprout Social, Inc.",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsup"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@sproutsocial/seeds-react-system-props": "^2.1.0",
|
|
17
|
+
"@sproutsocial/seeds-react-theme": "^1.0.0",
|
|
18
|
+
"styled-system": "^5.1.5"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@sproutsocial/seeds-partner-logos": "*",
|
|
22
|
+
"react": "^17.0.2",
|
|
23
|
+
"styled-components": "^5.2.3",
|
|
24
|
+
"tsx": "3.13.0",
|
|
25
|
+
"typescript": "^5.1.6",
|
|
26
|
+
"tsup": "^8.0.2"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@sproutsocial/seeds-partner-logos": ">=1.5.0",
|
|
30
|
+
"styled-components": "^5.2.3"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18"
|
|
34
|
+
}
|
|
35
|
+
}
|