@anywayseo/tools 5.3.0 → 5.4.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/components/base/index.d.ts +2 -0
- package/dist/components/base/social-network/icons/facebook/index.d.ts +2 -0
- package/dist/components/base/social-network/icons/index.d.ts +5 -0
- package/dist/components/base/social-network/icons/instagram/index.d.ts +2 -0
- package/dist/components/base/social-network/icons/pinterest/index.d.ts +2 -0
- package/dist/components/base/social-network/icons/x/index.d.ts +2 -0
- package/dist/components/base/social-network/icons/youtube/index.d.ts +2 -0
- package/dist/components/base/social-network/index.d.ts +5 -0
- package/dist/components/base/social-networks/index.d.ts +8 -0
- package/dist/components/index.cjs +3 -1
- package/dist/components/index.mjs +3 -1
- package/dist/{index-BGMR4f6W.js → index-4Zb1neOM.js} +293 -206
- package/dist/{index-CjaAcLJf.mjs → index-BM-_Lr_j.mjs} +96 -9
- package/dist/index.cjs +3 -1
- package/dist/index.mjs +3 -1
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/social-network/index.d.ts +6 -0
- package/dist/types/content/author/index.d.ts +2 -7
- package/dist/types/site/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -4,3 +4,5 @@ export { default as Grid } from './grid';
|
|
|
4
4
|
export { default as Image } from './image';
|
|
5
5
|
export { default as Link } from './link';
|
|
6
6
|
export { default as LinkButton } from './link-button';
|
|
7
|
+
export { default as SocialNetwork } from './social-network';
|
|
8
|
+
export { default as SocialNetworks } from './social-networks';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { FlexProps } from '@chakra-ui/react';
|
|
3
|
+
import { ISocialNetwork } from '../../../types';
|
|
4
|
+
type SocialNetworksProps = {
|
|
5
|
+
socialNetworks: ISocialNetwork[];
|
|
6
|
+
} & FlexProps;
|
|
7
|
+
declare const SocialNetworks: FC<SocialNetworksProps>;
|
|
8
|
+
export default SocialNetworks;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("../index-
|
|
3
|
+
const index = require("../index-4Zb1neOM.js");
|
|
4
4
|
const index$1 = require("../index-BltrZp3R.js");
|
|
5
5
|
exports.Author = index.Author;
|
|
6
6
|
exports.AuthorCard = index.AuthorCard;
|
|
@@ -23,6 +23,8 @@ exports.List = index.List;
|
|
|
23
23
|
exports.NotFound = index.NotFound;
|
|
24
24
|
exports.ProsCons = index.ProsCons;
|
|
25
25
|
exports.Seo = index.Seo;
|
|
26
|
+
exports.SocialNetwork = index.SocialNetwork;
|
|
27
|
+
exports.SocialNetworks = index.SocialNetworks;
|
|
26
28
|
exports.StrapiContentRenderer = index.StrapiContentRenderer;
|
|
27
29
|
exports.Table = index.Table;
|
|
28
30
|
exports.Tabs = index.Tabs;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { k, A, B, a, l, C, F, b, c, G, d, e, f, m, H, L, n, g, N, P, S, h, T, i, j } from "../index-
|
|
1
|
+
import { k, A, B, a, l, C, F, b, c, G, d, e, f, m, H, L, n, g, N, P, S, o, p, h, T, i, j } from "../index-BM-_Lr_j.mjs";
|
|
2
2
|
import { I, L as L2 } from "../index-Bwlxdh5F.mjs";
|
|
3
3
|
export {
|
|
4
4
|
k as Author,
|
|
@@ -24,6 +24,8 @@ export {
|
|
|
24
24
|
N as NotFound,
|
|
25
25
|
P as ProsCons,
|
|
26
26
|
S as Seo,
|
|
27
|
+
o as SocialNetwork,
|
|
28
|
+
p as SocialNetworks,
|
|
27
29
|
h as StrapiContentRenderer,
|
|
28
30
|
T as Table,
|
|
29
31
|
i as Tabs,
|