@pixelated-tech/components 3.7.3 → 3.7.4

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.
Files changed (40) hide show
  1. package/dist/components/admin/site-health/site-health-on-site-seo.integration.js +15 -0
  2. package/dist/components/general/callout.js +4 -3
  3. package/dist/components/general/intersection-observer.js +117 -0
  4. package/dist/components/general/microinteractions.js +39 -50
  5. package/dist/components/general/schema-services.js +17 -4
  6. package/dist/components/general/schema-website.js +100 -7
  7. package/dist/components/general/splitscroll.css +125 -0
  8. package/dist/components/general/splitscroll.js +89 -0
  9. package/dist/components/sitebuilder/config/ConfigBuilder.js +142 -25
  10. package/dist/components/sitebuilder/config/services-form.json +51 -0
  11. package/dist/components/sitebuilder/config/siteinfo-form.json +68 -0
  12. package/dist/index.js +2 -0
  13. package/dist/scripts/setup-remotes.sh +69 -0
  14. package/dist/types/components/admin/site-health/site-health-on-site-seo.integration.d.ts.map +1 -1
  15. package/dist/types/components/config/config.types.d.ts +8 -1
  16. package/dist/types/components/config/config.types.d.ts.map +1 -1
  17. package/dist/types/components/general/callout.d.ts +3 -2
  18. package/dist/types/components/general/callout.d.ts.map +1 -1
  19. package/dist/types/components/general/intersection-observer.d.ts +73 -0
  20. package/dist/types/components/general/intersection-observer.d.ts.map +1 -0
  21. package/dist/types/components/general/microinteractions.d.ts +1 -1
  22. package/dist/types/components/general/microinteractions.d.ts.map +1 -1
  23. package/dist/types/components/general/schema-services.d.ts +25 -6
  24. package/dist/types/components/general/schema-services.d.ts.map +1 -1
  25. package/dist/types/components/general/schema-website.d.ts +60 -5
  26. package/dist/types/components/general/schema-website.d.ts.map +1 -1
  27. package/dist/types/components/general/splitscroll.d.ts +51 -0
  28. package/dist/types/components/general/splitscroll.d.ts.map +1 -0
  29. package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts +30 -0
  30. package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts.map +1 -1
  31. package/dist/types/index.d.ts +2 -0
  32. package/dist/types/stories/callout/callout.stories.d.ts +7 -0
  33. package/dist/types/stories/callout/callout.stories.d.ts.map +1 -1
  34. package/dist/types/stories/general/splitscroll.stories.d.ts +19 -0
  35. package/dist/types/stories/general/splitscroll.stories.d.ts.map +1 -0
  36. package/dist/types/stories/lookbook/lookbook.stories.d.ts +19 -0
  37. package/dist/types/stories/lookbook/lookbook.stories.d.ts.map +1 -0
  38. package/dist/types/tests/splitscroll.test.d.ts +2 -0
  39. package/dist/types/tests/splitscroll.test.d.ts.map +1 -0
  40. package/package.json +5 -5
@@ -1,4 +1,4 @@
1
- import PropTypes, { InferProps } from 'prop-types';
1
+ import PropTypes from 'prop-types';
2
2
  /**
3
3
  * Services Schema Component
4
4
  * Generates JSON-LD structured data for services
@@ -11,18 +11,37 @@ export interface ServiceItem {
11
11
  image?: string;
12
12
  areaServed?: string | string[];
13
13
  }
14
- export type ServicesSchemaType = InferProps<typeof ServicesSchema.propTypes>;
15
- export declare function ServicesSchema(props: ServicesSchemaType): import("react/jsx-runtime").JSX.Element;
14
+ export interface ServicesSchemaProps {
15
+ siteInfo?: {
16
+ name?: string;
17
+ url?: string;
18
+ image?: string;
19
+ telephone?: string;
20
+ email?: string;
21
+ services?: ServiceItem[];
22
+ [key: string]: any;
23
+ };
24
+ provider?: {
25
+ name: string;
26
+ url: string;
27
+ logo?: string;
28
+ telephone?: string;
29
+ email?: string;
30
+ };
31
+ services?: ServiceItem[];
32
+ }
33
+ export declare function ServicesSchema(props: ServicesSchemaProps): import("react/jsx-runtime").JSX.Element | null;
16
34
  export declare namespace ServicesSchema {
17
35
  var propTypes: {
18
- provider: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
36
+ siteInfo: PropTypes.Requireable<object>;
37
+ provider: PropTypes.Requireable<PropTypes.InferProps<{
19
38
  name: PropTypes.Validator<string>;
20
39
  url: PropTypes.Validator<string>;
21
40
  logo: PropTypes.Requireable<string>;
22
41
  telephone: PropTypes.Requireable<string>;
23
42
  email: PropTypes.Requireable<string>;
24
- }>>>;
25
- services: PropTypes.Validator<(PropTypes.InferProps<{
43
+ }>>;
44
+ services: PropTypes.Requireable<(PropTypes.InferProps<{
26
45
  name: PropTypes.Validator<string>;
27
46
  description: PropTypes.Validator<string>;
28
47
  url: PropTypes.Requireable<string>;
@@ -1 +1 @@
1
- {"version":3,"file":"schema-services.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-services.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD;;;;GAIG;AAEH,MAAM,WAAW,WAAW;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC/B;AAkBD,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,2CAiCvD;yBAjCe,cAAc;;;;;;;;;;;;;;;;;;AAmC9B,eAAe,cAAc,CAAC"}
1
+ {"version":3,"file":"schema-services.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-services.tsx"],"names":[],"mappings":"AACA,OAAO,SAAyB,MAAM,YAAY,CAAC;AAEnD;;;;GAIG;AAEH,MAAM,WAAW,WAAW;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC/B;AAoBD,MAAM,WAAW,mBAAmB;IACnC,QAAQ,CAAC,EAAE;QACV,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,QAAQ,CAAC,EAAE,WAAW,EAAE,CAAC;QACzB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACnB,CAAC;IACF,QAAQ,CAAC,EAAE;QACV,IAAI,EAAE,MAAM,CAAC;QACb,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,KAAK,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;IACF,QAAQ,CAAC,EAAE,WAAW,EAAE,CAAC;CACzB;AAED,wBAAgB,cAAc,CAAC,KAAK,EAAE,mBAAmB,kDA8CxD;yBA9Ce,cAAc;;;;;;;;;;;;;;;;;;;AAkD9B,eAAe,cAAc,CAAC"}
@@ -1,18 +1,73 @@
1
- import PropTypes, { InferProps } from "prop-types";
2
- export type WebsiteSchemaType = InferProps<typeof WebsiteSchema.propTypes>;
3
- export declare function WebsiteSchema(props: WebsiteSchemaType): import("react/jsx-runtime").JSX.Element;
1
+ import PropTypes from "prop-types";
2
+ import type { SiteInfo } from '../config/config.types';
3
+ export interface WebsiteSchemaProps {
4
+ siteInfo?: SiteInfo;
5
+ name?: string;
6
+ url?: string;
7
+ description?: string;
8
+ keywords?: string;
9
+ inLanguage?: string;
10
+ sameAs?: string[];
11
+ potentialAction?: {
12
+ '@type'?: string;
13
+ target: {
14
+ '@type': string;
15
+ urlTemplate: string;
16
+ };
17
+ 'query-input'?: string;
18
+ };
19
+ publisher?: {
20
+ '@type'?: string;
21
+ name: string;
22
+ url?: string;
23
+ logo?: {
24
+ '@type'?: string;
25
+ url: string;
26
+ width?: number;
27
+ height?: number;
28
+ };
29
+ };
30
+ copyrightYear?: number;
31
+ copyrightHolder?: {
32
+ '@type'?: string;
33
+ name: string;
34
+ url?: string;
35
+ };
36
+ }
37
+ export type WebsiteSchemaType = WebsiteSchemaProps;
38
+ export declare function WebsiteSchema(props: WebsiteSchemaProps): import("react/jsx-runtime").JSX.Element | null;
4
39
  export declare namespace WebsiteSchema {
5
40
  var propTypes: {
6
41
  name: PropTypes.Requireable<string>;
7
42
  url: PropTypes.Requireable<string>;
8
43
  description: PropTypes.Requireable<string>;
44
+ keywords: PropTypes.Requireable<string>;
45
+ inLanguage: PropTypes.Requireable<string>;
46
+ sameAs: PropTypes.Requireable<(string | null | undefined)[]>;
9
47
  potentialAction: PropTypes.Requireable<PropTypes.InferProps<{
10
48
  '@type': PropTypes.Requireable<string>;
11
- target: PropTypes.Requireable<PropTypes.InferProps<{
49
+ target: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
12
50
  '@type': PropTypes.Requireable<string>;
13
51
  urlTemplate: PropTypes.Requireable<string>;
52
+ }>>>;
53
+ 'query-input': PropTypes.Requireable<string>;
54
+ }>>;
55
+ publisher: PropTypes.Requireable<PropTypes.InferProps<{
56
+ '@type': PropTypes.Requireable<string>;
57
+ name: PropTypes.Validator<string>;
58
+ url: PropTypes.Requireable<string>;
59
+ logo: PropTypes.Requireable<PropTypes.InferProps<{
60
+ '@type': PropTypes.Requireable<string>;
61
+ url: PropTypes.Validator<string>;
62
+ width: PropTypes.Requireable<number>;
63
+ height: PropTypes.Requireable<number>;
14
64
  }>>;
15
- query: PropTypes.Requireable<string>;
65
+ }>>;
66
+ copyrightYear: PropTypes.Requireable<number>;
67
+ copyrightHolder: PropTypes.Requireable<PropTypes.InferProps<{
68
+ '@type': PropTypes.Requireable<string>;
69
+ name: PropTypes.Validator<string>;
70
+ url: PropTypes.Requireable<string>;
16
71
  }>>;
17
72
  siteInfo: PropTypes.Requireable<object>;
18
73
  };
@@ -1 +1 @@
1
- {"version":3,"file":"schema-website.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-website.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA4BnD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAE3E,wBAAgB,aAAa,CAAE,KAAK,EAAE,iBAAiB,2CAwBtD;yBAxBe,aAAa"}
1
+ {"version":3,"file":"schema-website.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-website.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAEvD,MAAM,WAAW,kBAAkB;IAClC,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,eAAe,CAAC,EAAE;QACjB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE;YACP,OAAO,EAAE,MAAM,CAAC;YAChB,WAAW,EAAE,MAAM,CAAC;SACpB,CAAC;QACF,aAAa,CAAC,EAAE,MAAM,CAAC;KACvB,CAAC;IACF,SAAS,CAAC,EAAE;QACX,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,IAAI,CAAC,EAAE;YACN,OAAO,CAAC,EAAE,MAAM,CAAC;YACjB,GAAG,EAAE,MAAM,CAAC;YACZ,KAAK,CAAC,EAAE,MAAM,CAAC;YACf,MAAM,CAAC,EAAE,MAAM,CAAC;SAChB,CAAC;KACF,CAAC;IACF,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,eAAe,CAAC,EAAE;QACjB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,GAAG,CAAC,EAAE,MAAM,CAAC;KACb,CAAC;CACF;AA8CD,MAAM,MAAM,iBAAiB,GAAG,kBAAkB,CAAC;AAEnD,wBAAgB,aAAa,CAAE,KAAK,EAAE,kBAAkB,kDAsCvD;yBAtCe,aAAa"}
@@ -0,0 +1,51 @@
1
+ import PropTypes, { InferProps } from 'prop-types';
2
+ import './splitscroll.css';
3
+ export type SplitScrollType = InferProps<typeof SplitScroll.propTypes>;
4
+ export declare function SplitScroll({ children }: SplitScrollType): import("react/jsx-runtime").JSX.Element;
5
+ export declare namespace SplitScroll {
6
+ var propTypes: {
7
+ children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
8
+ };
9
+ var Section: {
10
+ ({ img, imgAlt, imgShape, title, subtitle, url, buttonText, children, aboveFold, isActive, sectionIndex, totalSections, }: SplitScrollSectionProps): import("react/jsx-runtime").JSX.Element;
11
+ propTypes: {
12
+ img: PropTypes.Validator<string>;
13
+ imgAlt: PropTypes.Requireable<string>;
14
+ imgShape: PropTypes.Requireable<"round" | "square" | "bevel" | "squircle">;
15
+ title: PropTypes.Requireable<string>;
16
+ subtitle: PropTypes.Requireable<string>;
17
+ url: PropTypes.Requireable<string>;
18
+ buttonText: PropTypes.Requireable<string>;
19
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
20
+ aboveFold: PropTypes.Requireable<boolean>;
21
+ isActive: PropTypes.Requireable<boolean>;
22
+ sectionIndex: PropTypes.Requireable<number>;
23
+ totalSections: PropTypes.Requireable<number>;
24
+ };
25
+ };
26
+ }
27
+ /**
28
+ * SplitScroll.Section - Individual section within a SplitScroll
29
+ *
30
+ * A facade for the Callout component with variant="split" preset.
31
+ * Automatically configured for the splitscroll layout.
32
+ */
33
+ declare const splitscrollSectionPropTypes: {
34
+ img: PropTypes.Validator<string>;
35
+ imgAlt: PropTypes.Requireable<string>;
36
+ imgShape: PropTypes.Requireable<"round" | "square" | "bevel" | "squircle">;
37
+ title: PropTypes.Requireable<string>;
38
+ subtitle: PropTypes.Requireable<string>;
39
+ url: PropTypes.Requireable<string>;
40
+ buttonText: PropTypes.Requireable<string>;
41
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
42
+ aboveFold: PropTypes.Requireable<boolean>;
43
+ isActive: PropTypes.Requireable<boolean>;
44
+ sectionIndex: PropTypes.Requireable<number>;
45
+ totalSections: PropTypes.Requireable<number>;
46
+ };
47
+ type SplitScrollSectionProps = InferProps<typeof splitscrollSectionPropTypes> & {
48
+ imgShape?: 'square' | 'bevel' | 'squircle' | 'round';
49
+ };
50
+ export {};
51
+ //# sourceMappingURL=splitscroll.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"splitscroll.d.ts","sourceRoot":"","sources":["../../../../src/components/general/splitscroll.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,mBAAmB,CAAC;AAyB3B,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,CAAC,EAAE,QAAQ,EAAE,EAAE,eAAe,2CA0CxD;yBA1Ce,WAAW;;;;;mIAoFxB,uBAAuB;;;;;;;;;;;;;;;;;AAxC1B;;;;;GAKG;AAEH,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;CAchC,CAAC;AAEF,KAAK,uBAAuB,GAAG,UAAU,CAAC,OAAO,2BAA2B,CAAC,GAAG;IAC/E,QAAQ,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,UAAU,GAAG,OAAO,CAAC;CACrD,CAAC"}
@@ -36,6 +36,21 @@ declare const SiteInfoPropTypes: {
36
36
  priceRange: PropTypes.Requireable<string>;
37
37
  sameAs: PropTypes.Requireable<string[]>;
38
38
  keywords: PropTypes.Requireable<string>;
39
+ openingHours: PropTypes.Requireable<string>;
40
+ publisherType: PropTypes.Requireable<string>;
41
+ copyrightYear: PropTypes.Requireable<number>;
42
+ potentialAction: PropTypes.Requireable<PropTypes.InferProps<{
43
+ '@type': PropTypes.Requireable<string>;
44
+ target: PropTypes.Validator<string>;
45
+ 'query-input': PropTypes.Requireable<string>;
46
+ queryInput: PropTypes.Requireable<string>;
47
+ }>>;
48
+ services: PropTypes.Requireable<(PropTypes.InferProps<{
49
+ name: PropTypes.Validator<string>;
50
+ description: PropTypes.Validator<string>;
51
+ url: PropTypes.Requireable<string>;
52
+ areaServed: PropTypes.Requireable<string[]>;
53
+ }> | null | undefined)[]>;
39
54
  };
40
55
  export type SiteInfoType = InferProps<typeof SiteInfoPropTypes>;
41
56
  export type ConfigBuilderType = InferProps<typeof ConfigBuilder.propTypes>;
@@ -70,6 +85,21 @@ export declare namespace ConfigBuilder {
70
85
  priceRange: PropTypes.Requireable<string>;
71
86
  sameAs: PropTypes.Requireable<string[]>;
72
87
  keywords: PropTypes.Requireable<string>;
88
+ openingHours: PropTypes.Requireable<string>;
89
+ publisherType: PropTypes.Requireable<string>;
90
+ copyrightYear: PropTypes.Requireable<number>;
91
+ potentialAction: PropTypes.Requireable<PropTypes.InferProps<{
92
+ '@type': PropTypes.Requireable<string>;
93
+ target: PropTypes.Validator<string>;
94
+ 'query-input': PropTypes.Requireable<string>;
95
+ queryInput: PropTypes.Requireable<string>;
96
+ }>>;
97
+ services: PropTypes.Requireable<(PropTypes.InferProps<{
98
+ name: PropTypes.Validator<string>;
99
+ description: PropTypes.Validator<string>;
100
+ url: PropTypes.Requireable<string>;
101
+ areaServed: PropTypes.Requireable<string[]>;
102
+ }> | null | undefined)[]>;
73
103
  }>>>;
74
104
  routes: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
75
105
  name: PropTypes.Requireable<string>;
@@ -1 +1 @@
1
- {"version":3,"file":"ConfigBuilder.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/config/ConfigBuilder.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAYnD,OAAO,qBAAqB,CAAC;AAE7B,QAAA,MAAM,cAAc;;;;;;;CAOnB,CAAC;AACF,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAE1D,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BtB,CAAC;AACF,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AA+ChE,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CA0nBrD;yBA1nBe,aAAa"}
1
+ {"version":3,"file":"ConfigBuilder.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/config/ConfigBuilder.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,OAAO,qBAAqB,CAAC;AAE7B,QAAA,MAAM,cAAc;;;;;;;CAOnB,CAAC;AACF,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAE1D,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0CtB,CAAC;AACF,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AA+ChE,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAgwBrD;yBAhwBe,aAAa"}
@@ -27,7 +27,9 @@ export * from "./components/general/hubspot.components";
27
27
  export * from "./components/general/image";
28
28
  export * from "./components/general/instagram.components";
29
29
  export * from "./components/general/instagram.functions";
30
+ export * from "./components/general/intersection-observer";
30
31
  export * from "./components/general/loading";
32
+ export * from "./components/general/splitscroll";
31
33
  export * from "./components/general/manifest";
32
34
  export * from "./components/general/markdown";
33
35
  export * from "./components/general/menu-accordion";
@@ -65,5 +65,12 @@ export namespace CalloutStory {
65
65
  export { imgShape_1 as imgShape };
66
66
  }
67
67
  }
68
+ export namespace CalloutWithChildren {
69
+ function render(): import("react/jsx-runtime").JSX.Element;
70
+ }
71
+ export namespace CalloutSplitWithChildren {
72
+ export function render_1(): import("react/jsx-runtime").JSX.Element;
73
+ export { render_1 as render };
74
+ }
68
75
  import { Callout } from '@/components/general/callout';
69
76
  //# sourceMappingURL=callout.stories.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"callout.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/callout/callout.stories.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBACwB,8BAA8B"}
1
+ {"version":3,"file":"callout.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/callout/callout.stories.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA+DS,2DAuCP;;;IAIO,oEAiCP;;;wBA1IsB,8BAA8B"}
@@ -0,0 +1,19 @@
1
+ declare namespace _default {
2
+ export let title: string;
3
+ export { SplitScroll as component };
4
+ export let decorators: ((Story: any) => import("react/jsx-runtime").JSX.Element)[];
5
+ }
6
+ export default _default;
7
+ export namespace BasicSplitScroll {
8
+ function render(): import("react/jsx-runtime").JSX.Element;
9
+ }
10
+ export namespace ProductShowcase {
11
+ export function render_1(): import("react/jsx-runtime").JSX.Element;
12
+ export { render_1 as render };
13
+ }
14
+ export namespace MinimalSplitScroll {
15
+ export function render_2(): import("react/jsx-runtime").JSX.Element;
16
+ export { render_2 as render };
17
+ }
18
+ import { SplitScroll } from '@/components/general/splitscroll';
19
+ //# sourceMappingURL=splitscroll.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"splitscroll.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/general/splitscroll.stories.js"],"names":[],"mappings":";;;;;;;IA4BS,2DAwGP;;;IAIO,oEAyFP;;;;IAIO,oEAuBP;;;4BA3P0B,kCAAkC"}
@@ -0,0 +1,19 @@
1
+ declare namespace _default {
2
+ export let title: string;
3
+ export { SplitScroll as component };
4
+ export let decorators: ((Story: any) => import("react/jsx-runtime").JSX.Element)[];
5
+ }
6
+ export default _default;
7
+ export namespace BasicSplitScroll {
8
+ function render(): import("react/jsx-runtime").JSX.Element;
9
+ }
10
+ export namespace ProductShowcase {
11
+ export function render_1(): import("react/jsx-runtime").JSX.Element;
12
+ export { render_1 as render };
13
+ }
14
+ export namespace MinimalSplitScroll {
15
+ export function render_2(): import("react/jsx-runtime").JSX.Element;
16
+ export { render_2 as render };
17
+ }
18
+ import { SplitScroll } from '@/components/general/splitscroll';
19
+ //# sourceMappingURL=lookbook.stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lookbook.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/lookbook/lookbook.stories.js"],"names":[],"mappings":";;;;;;;IA4BS,2DAwGP;;;IAIO,oEAyFP;;;;IAIO,oEAuBP;;;4BA3P0B,kCAAkC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=splitscroll.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"splitscroll.test.d.ts","sourceRoot":"","sources":["../../../src/tests/splitscroll.test.tsx"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixelated-tech/components",
3
- "version": "3.7.3",
3
+ "version": "3.7.4",
4
4
  "private": false,
5
5
  "author": {
6
6
  "name": "Pixelated Technologies",
@@ -138,7 +138,7 @@
138
138
  "eslint-plugin-react": "^7.37.4",
139
139
  "eslint-plugin-storybook": "^10.1.11",
140
140
  "file-loader": "^6.2.0",
141
- "happy-dom": "^20.0.11",
141
+ "happy-dom": "^20.1.0",
142
142
  "jsdom": "^27.4.0",
143
143
  "less-loader": "^12.3.0",
144
144
  "mini-css-extract-plugin": "^2.9.4",
@@ -169,9 +169,9 @@
169
169
  "react-dom": "^19.2.0"
170
170
  },
171
171
  "optionalDependencies": {
172
- "@aws-sdk/client-cloudwatch": "^3.964.0",
173
- "@aws-sdk/client-route-53": "^3.964.0",
174
- "googleapis": "^169.0.0",
172
+ "@aws-sdk/client-cloudwatch": "^3.965.0",
173
+ "@aws-sdk/client-route-53": "^3.965.0",
174
+ "googleapis": "^170.0.0",
175
175
  "md5": "^2.3.0",
176
176
  "puppeteer": "^24.34.0",
177
177
  "react-redux": "*",