@fluidattacks/design 1.2.29 → 1.2.30
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/design.js +209 -139
- package/dist/design.mjs +1597 -1411
- package/dist/gradients.svg +4 -4
- package/dist/src/components/icon-card/index.d.ts +3 -0
- package/dist/src/components/icon-card/styles.d.ts +2 -0
- package/dist/src/components/icon-card/types.d.ts +10 -0
- package/dist/src/components/interactive-card/icon/index.d.ts +5 -0
- package/dist/src/components/interactive-card/index.d.ts +3 -0
- package/dist/src/components/interactive-card/styles.d.ts +2 -1
- package/dist/src/index.d.ts +1 -0
- package/package.json +2 -2
package/dist/gradients.svg
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
<stop offset="1" stop-color="#B8075D"/>
|
|
6
6
|
</linearGradient>
|
|
7
7
|
|
|
8
|
-
<linearGradient id="gradient-02" gradientTransform="rotate(
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
<linearGradient id="gradient-02" gradientTransform="rotate(90)">
|
|
9
|
+
<stop stop-color="#667085"/>
|
|
10
|
+
<stop offset="1" stop-color="#FCFCFD"/>
|
|
11
|
+
</linearGradient>
|
|
12
12
|
</defs>
|
|
13
13
|
</svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const IconCardContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
+
export { IconCardContainer };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
type DefaultIconNames = "book-open" | "bullseye" | "briefcase" | "calendar-xmark" | "diagram-venn" | "file" | "headset" | "infinity" | "messages-question" | "radar" | "scanner-touchscreen" | "screwdriver-wrench" | "sidebar" | "user-robot";
|
|
2
|
+
/**
|
|
3
|
+
* Icon card props interface.
|
|
4
|
+
* @interface IconCardProps
|
|
5
|
+
* @property { DefaultIconNames } icon - Custom selection of FontAwesome icons.
|
|
6
|
+
*/
|
|
7
|
+
interface IIconCardProps {
|
|
8
|
+
icon: DefaultIconNames;
|
|
9
|
+
}
|
|
10
|
+
export type { IIconCardProps };
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
declare const InteractiveCardContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
-
|
|
2
|
+
declare const InteractiveCardIcon: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
+
export { InteractiveCardContainer, InteractiveCardIcon };
|
package/dist/src/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './components/form';
|
|
|
11
11
|
export * from './components/icon';
|
|
12
12
|
export * from './components/icon-button';
|
|
13
13
|
export * from './components/inputs';
|
|
14
|
+
export * from './components/interactive-card';
|
|
14
15
|
export * from './components/language-selector';
|
|
15
16
|
export * from './components/logo';
|
|
16
17
|
export * from './components/logo-carousel';
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@cloudinary/react": "1.13.0",
|
|
8
8
|
"@cloudinary/url-gen": "1.21.0",
|
|
9
|
-
"@fortawesome/free-solid-svg-icons": "6.
|
|
9
|
+
"@fortawesome/free-solid-svg-icons": "6.7.1",
|
|
10
10
|
"@fortawesome/react-fontawesome": "0.2.2",
|
|
11
11
|
"react": "18.2.0",
|
|
12
12
|
"react-dom": "18.2.0",
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"storybook": "storybook dev"
|
|
93
93
|
},
|
|
94
94
|
"types": "dist/src/index.d.ts",
|
|
95
|
-
"version": "1.2.
|
|
95
|
+
"version": "1.2.30"
|
|
96
96
|
}
|