@becklyn/next 1.0.4 → 1.0.5

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.
@@ -1,7 +1,7 @@
1
1
  import { FC } from "react";
2
- import { Index } from "../types/structuredData";
2
+ import { StructuredDataIndex } from "../types/structuredData";
3
3
  export interface StructuredDataProps {
4
- data?: Index | null | false;
4
+ data?: StructuredDataIndex | null | false;
5
5
  }
6
6
  export declare const StructuredData: FC<StructuredDataProps>;
7
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../structuredData/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAEhD,MAAM,WAAW,mBAAmB;IAChC,IAAI,CAAC,EAAE,KAAK,GAAG,IAAI,GAAG,KAAK,CAAC;CAC/B;AAED,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,CAgBlD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../structuredData/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,MAAM,WAAW,mBAAmB;IAChC,IAAI,CAAC,EAAE,mBAAmB,GAAG,IAAI,GAAG,KAAK,CAAC;CAC7C;AAED,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,CAgBlD,CAAC"}
@@ -0,0 +1,106 @@
1
+ export type StructuredDataIndex = StructuredDataWebsite | StructuredDataRating | StructuredDataPerson | StructuredDataReview | StructuredDataAggretateRating | StructuredDataAggregateOffer | StructuredDataGeoCoordinates | StructuredDataPostalAddress | StructuredDataPlace | StructuredDataOrganization | StructuredDataListItem | StructuredDataBreadcrumbList | StructuredDataNewsArticle | StructuredDataAnswer | StructuredDataQuestion | StructuredDataFAQPage;
2
+ export interface StructuredDataWebsite {
3
+ "@type": "WebSite";
4
+ name: string;
5
+ url: string;
6
+ }
7
+ export interface StructuredDataRating {
8
+ "@type": "Rating";
9
+ ratingValue: number;
10
+ bestRating: number;
11
+ }
12
+ export interface StructuredDataPerson {
13
+ "@type": "Person";
14
+ name: string;
15
+ }
16
+ export interface StructuredDataReview {
17
+ "@type": "Review";
18
+ reviewRating: StructuredDataRating;
19
+ author: StructuredDataPerson;
20
+ }
21
+ export interface StructuredDataAggretateRating {
22
+ "@type": "AggregateRating";
23
+ ratingValue: number;
24
+ reviewCount: number;
25
+ }
26
+ export interface StructuredDataAggregateOffer {
27
+ "@type": "AggregateOffer";
28
+ offerCount: number;
29
+ lowPrice: number;
30
+ highPrice: number;
31
+ priceCurrency: string;
32
+ }
33
+ export interface StructuredDataGeoCoordinates {
34
+ "@type": "GeoCoordinates";
35
+ latitude?: number;
36
+ longitude?: number;
37
+ }
38
+ export interface StructuredDataPostalAddress {
39
+ "@type": "PostalAddress";
40
+ addressCountry: string;
41
+ addressLocality?: string;
42
+ postalCode?: string;
43
+ streetAddress?: string;
44
+ }
45
+ export interface StructuredDataPlace {
46
+ "@type": "Place";
47
+ geo: StructuredDataGeoCoordinates;
48
+ address: StructuredDataPostalAddress;
49
+ }
50
+ export interface StructuredDataContactPoint {
51
+ "@type": "ContactPoint";
52
+ name?: string;
53
+ productSupported?: string;
54
+ email?: string;
55
+ telephone?: string;
56
+ image?: string;
57
+ }
58
+ export interface StructuredDataMonetaryAmount {
59
+ "@type": "MonetaryAmount";
60
+ currency?: string;
61
+ minValue?: number;
62
+ maxValue?: number;
63
+ }
64
+ export interface StructuredDataOrganization {
65
+ "@type": "Organization";
66
+ name: string;
67
+ url: string;
68
+ image?: string;
69
+ logo: string;
70
+ sameAs?: readonly string[];
71
+ }
72
+ export interface StructuredDataListItem {
73
+ "@type": "ListItem";
74
+ position: number;
75
+ name: string;
76
+ item: string;
77
+ }
78
+ export interface StructuredDataBreadcrumbList {
79
+ "@type": "BreadcrumbList";
80
+ numberOfItems: number;
81
+ itemListElement: StructuredDataListItem[];
82
+ }
83
+ export interface StructuredDataNewsArticle {
84
+ "@type": "NewsArticle";
85
+ url: string;
86
+ publisher: StructuredDataOrganization;
87
+ mainEntityOfPage: string;
88
+ headline?: string;
89
+ image?: string;
90
+ articleBody?: string;
91
+ datePublished?: string;
92
+ }
93
+ export interface StructuredDataAnswer {
94
+ "@type": "Answer";
95
+ text: string;
96
+ }
97
+ export interface StructuredDataQuestion {
98
+ "@type": "Question";
99
+ name?: string;
100
+ acceptedAnswer: StructuredDataAnswer;
101
+ }
102
+ export interface StructuredDataFAQPage {
103
+ "@type": "FAQPage";
104
+ mainEntity: (StructuredDataQuestion | undefined)[];
105
+ }
106
+ //# sourceMappingURL=structuredData.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"structuredData.d.ts","sourceRoot":"","sources":["../../../types/structuredData.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +1,7 @@
1
1
  import { FC } from "react";
2
- import { Index } from "../types/structuredData";
2
+ import { StructuredDataIndex } from "../types/structuredData";
3
3
  export interface StructuredDataProps {
4
- data?: Index | null | false;
4
+ data?: StructuredDataIndex | null | false;
5
5
  }
6
6
  export declare const StructuredData: FC<StructuredDataProps>;
7
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../structuredData/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAC;AAEhD,MAAM,WAAW,mBAAmB;IAChC,IAAI,CAAC,EAAE,KAAK,GAAG,IAAI,GAAG,KAAK,CAAC;CAC/B;AAED,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,CAgBlD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../structuredData/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,MAAM,WAAW,mBAAmB;IAChC,IAAI,CAAC,EAAE,mBAAmB,GAAG,IAAI,GAAG,KAAK,CAAC;CAC7C;AAED,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,CAgBlD,CAAC"}
@@ -0,0 +1,106 @@
1
+ export type StructuredDataIndex = StructuredDataWebsite | StructuredDataRating | StructuredDataPerson | StructuredDataReview | StructuredDataAggretateRating | StructuredDataAggregateOffer | StructuredDataGeoCoordinates | StructuredDataPostalAddress | StructuredDataPlace | StructuredDataOrganization | StructuredDataListItem | StructuredDataBreadcrumbList | StructuredDataNewsArticle | StructuredDataAnswer | StructuredDataQuestion | StructuredDataFAQPage;
2
+ export interface StructuredDataWebsite {
3
+ "@type": "WebSite";
4
+ name: string;
5
+ url: string;
6
+ }
7
+ export interface StructuredDataRating {
8
+ "@type": "Rating";
9
+ ratingValue: number;
10
+ bestRating: number;
11
+ }
12
+ export interface StructuredDataPerson {
13
+ "@type": "Person";
14
+ name: string;
15
+ }
16
+ export interface StructuredDataReview {
17
+ "@type": "Review";
18
+ reviewRating: StructuredDataRating;
19
+ author: StructuredDataPerson;
20
+ }
21
+ export interface StructuredDataAggretateRating {
22
+ "@type": "AggregateRating";
23
+ ratingValue: number;
24
+ reviewCount: number;
25
+ }
26
+ export interface StructuredDataAggregateOffer {
27
+ "@type": "AggregateOffer";
28
+ offerCount: number;
29
+ lowPrice: number;
30
+ highPrice: number;
31
+ priceCurrency: string;
32
+ }
33
+ export interface StructuredDataGeoCoordinates {
34
+ "@type": "GeoCoordinates";
35
+ latitude?: number;
36
+ longitude?: number;
37
+ }
38
+ export interface StructuredDataPostalAddress {
39
+ "@type": "PostalAddress";
40
+ addressCountry: string;
41
+ addressLocality?: string;
42
+ postalCode?: string;
43
+ streetAddress?: string;
44
+ }
45
+ export interface StructuredDataPlace {
46
+ "@type": "Place";
47
+ geo: StructuredDataGeoCoordinates;
48
+ address: StructuredDataPostalAddress;
49
+ }
50
+ export interface StructuredDataContactPoint {
51
+ "@type": "ContactPoint";
52
+ name?: string;
53
+ productSupported?: string;
54
+ email?: string;
55
+ telephone?: string;
56
+ image?: string;
57
+ }
58
+ export interface StructuredDataMonetaryAmount {
59
+ "@type": "MonetaryAmount";
60
+ currency?: string;
61
+ minValue?: number;
62
+ maxValue?: number;
63
+ }
64
+ export interface StructuredDataOrganization {
65
+ "@type": "Organization";
66
+ name: string;
67
+ url: string;
68
+ image?: string;
69
+ logo: string;
70
+ sameAs?: readonly string[];
71
+ }
72
+ export interface StructuredDataListItem {
73
+ "@type": "ListItem";
74
+ position: number;
75
+ name: string;
76
+ item: string;
77
+ }
78
+ export interface StructuredDataBreadcrumbList {
79
+ "@type": "BreadcrumbList";
80
+ numberOfItems: number;
81
+ itemListElement: StructuredDataListItem[];
82
+ }
83
+ export interface StructuredDataNewsArticle {
84
+ "@type": "NewsArticle";
85
+ url: string;
86
+ publisher: StructuredDataOrganization;
87
+ mainEntityOfPage: string;
88
+ headline?: string;
89
+ image?: string;
90
+ articleBody?: string;
91
+ datePublished?: string;
92
+ }
93
+ export interface StructuredDataAnswer {
94
+ "@type": "Answer";
95
+ text: string;
96
+ }
97
+ export interface StructuredDataQuestion {
98
+ "@type": "Question";
99
+ name?: string;
100
+ acceptedAnswer: StructuredDataAnswer;
101
+ }
102
+ export interface StructuredDataFAQPage {
103
+ "@type": "FAQPage";
104
+ mainEntity: (StructuredDataQuestion | undefined)[];
105
+ }
106
+ //# sourceMappingURL=structuredData.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"structuredData.d.ts","sourceRoot":"","sources":["../../../types/structuredData.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mBAAmB,GACzB,qBAAqB,GACrB,oBAAoB,GACpB,oBAAoB,GACpB,oBAAoB,GACpB,6BAA6B,GAC7B,4BAA4B,GAC5B,4BAA4B,GAC5B,2BAA2B,GAC3B,mBAAmB,GACnB,0BAA0B,GAC1B,sBAAsB,GACtB,4BAA4B,GAC5B,yBAAyB,GACzB,oBAAoB,GACpB,sBAAsB,GACtB,qBAAqB,CAAC;AAE5B,MAAM,WAAW,qBAAqB;IAClC,OAAO,EAAE,SAAS,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,oBAAoB;IACjC,OAAO,EAAE,QAAQ,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,oBAAoB;IACjC,OAAO,EAAE,QAAQ,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,oBAAoB;IACjC,OAAO,EAAE,QAAQ,CAAC;IAClB,YAAY,EAAE,oBAAoB,CAAC;IACnC,MAAM,EAAE,oBAAoB,CAAC;CAChC;AAED,MAAM,WAAW,6BAA6B;IAC1C,OAAO,EAAE,iBAAiB,CAAC;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,4BAA4B;IACzC,OAAO,EAAE,gBAAgB,CAAC;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,4BAA4B;IACzC,OAAO,EAAE,gBAAgB,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,2BAA2B;IACxC,OAAO,EAAE,eAAe,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,mBAAmB;IAChC,OAAO,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,4BAA4B,CAAC;IAClC,OAAO,EAAE,2BAA2B,CAAC;CACxC;AAED,MAAM,WAAW,0BAA0B;IACvC,OAAO,EAAE,cAAc,CAAC;IACxB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,4BAA4B;IACzC,OAAO,EAAE,gBAAgB,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,0BAA0B;IACvC,OAAO,EAAE,cAAc,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CAC9B;AAED,MAAM,WAAW,sBAAsB;IACnC,OAAO,EAAE,UAAU,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,4BAA4B;IACzC,OAAO,EAAE,gBAAgB,CAAC;IAC1B,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,sBAAsB,EAAE,CAAC;CAC7C;AAED,MAAM,WAAW,yBAAyB;IACtC,OAAO,EAAE,aAAa,CAAC;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,0BAA0B,CAAC;IACtC,gBAAgB,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,oBAAoB;IACjC,OAAO,EAAE,QAAQ,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,sBAAsB;IACnC,OAAO,EAAE,UAAU,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,cAAc,EAAE,oBAAoB,CAAC;CACxC;AAED,MAAM,WAAW,qBAAqB;IAClC,OAAO,EAAE,SAAS,CAAC;IACnB,UAAU,EAAE,CAAC,sBAAsB,GAAG,SAAS,CAAC,EAAE,CAAC;CACtD"}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@becklyn/next",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "lint": "eslint . --max-warnings 0 && prettier --check \"./**/*.{ts,tsx}\"",