@axos-web-dev/shared-components 0.0.7 → 0.0.9

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 { PropsWithChildren } from "react";
2
2
  import { FormProps } from ".";
3
3
  export interface renderFormProps extends FormProps, PropsWithChildren {
4
- formName?: string;
4
+ form?: string;
5
5
  }
6
6
  export declare const renderSwitch: (form: string | undefined, props: FormProps) => import("react/jsx-runtime").JSX.Element;
7
7
  export declare const RenderWebForm: (props: renderFormProps) => import("react/jsx-runtime").JSX.Element;
@@ -11,7 +11,7 @@ const renderSwitch = (form = "Contact Form", props) => {
11
11
  }
12
12
  };
13
13
  const RenderWebForm = (props) => {
14
- return /* @__PURE__ */ jsx(Fragment, { children: renderSwitch(props.formName, props) });
14
+ return /* @__PURE__ */ jsx(Fragment, { children: renderSwitch(props.form, props) });
15
15
  };
16
16
  export {
17
17
  RenderWebForm,
@@ -6,8 +6,8 @@ export interface FormProps extends PropsWithChildren {
6
6
  [index: string]: string;
7
7
  }) => void;
8
8
  icon?: boolean;
9
- headline?: ReactNode;
10
- disclosure?: ReactNode;
9
+ headline?: ReactNode | string;
10
+ disclosure?: ReactNode | string;
11
11
  variant?: QuaternaryTypes;
12
12
  validateEmail: (email: string) => Promise<boolean>;
13
13
  callToAction: Omit<ChevronProps, "targetUrl">;
@@ -2,18 +2,20 @@ import { jsxs, jsx } from "react/jsx-runtime";
2
2
  import { BulletItem } from "../BulletItem/BulletItem.js";
3
3
  import { Chevron } from "../Chevron/index.js";
4
4
  import { getVariant } from "../utils/getVariant.js";
5
+ import clsx from "clsx";
5
6
  import { Button } from "../Button/index.js";
6
7
  import { containerIconBillboard, layout, billboard_icon, content, headerIconBillboard, title, list, buttons } from "./IconBillboard.css.js";
7
8
  const IconBillboard = (props) => {
8
9
  const {
9
10
  callToActionRow,
10
- variant,
11
+ variant: fullVariant = "primary",
11
12
  side = false,
12
13
  items,
13
14
  headline,
14
15
  body
15
16
  } = props;
16
- return /* @__PURE__ */ jsxs("div", { className: containerIconBillboard({ variant }), children: [
17
+ const variant = getVariant(fullVariant);
18
+ return /* @__PURE__ */ jsxs("div", { className: clsx(containerIconBillboard({ variant }), "containment"), children: [
17
19
  /* @__PURE__ */ jsxs("div", { className: layout({ side }), children: [
18
20
  /* @__PURE__ */ jsx("div", { className: billboard_icon, children: props.icon }),
19
21
  /* @__PURE__ */ jsxs("div", { className: content, children: [
@@ -25,52 +25,61 @@ const IconBillboardSet = ({
25
25
  bodyCopy && /* @__PURE__ */ jsx(Fragment, { children: bodyCopy })
26
26
  ] }),
27
27
  /* @__PURE__ */ jsx("div", { className: section_container, children: iconBillboards.map(
28
- ({ id, icon, headline: headline2, bodyCopy: bodyCopy2, bullets, callToActionRow }) => /* @__PURE__ */ jsxs("div", { className: containerIconBillboard({ variant }), children: [
29
- /* @__PURE__ */ jsxs("div", { className: layout({ side }), children: [
30
- icon && /* @__PURE__ */ jsx("div", { className: billboard_icon, children: /* @__PURE__ */ jsx(
31
- "img",
32
- {
33
- src: icon == null ? void 0 : icon.src,
34
- className: "img_fluid",
35
- alt: icon == null ? void 0 : icon.alt
36
- }
37
- ) }),
38
- /* @__PURE__ */ jsxs("div", { className: content, children: [
39
- /* @__PURE__ */ jsxs("div", { className: headerIconBillboard, children: [
40
- /* @__PURE__ */ jsx("div", { className: title({ variant }), children: headline2 }),
41
- /* @__PURE__ */ jsx("div", { children: bodyCopy2 })
28
+ ({ id, icon, headline: headline2, bodyCopy: bodyCopy2, bullets, callToActionRow }) => /* @__PURE__ */ jsxs(
29
+ "div",
30
+ {
31
+ className: containerIconBillboard({
32
+ variant: getVariant(variant)
33
+ }),
34
+ children: [
35
+ /* @__PURE__ */ jsxs("div", { className: layout({ side }), children: [
36
+ icon && /* @__PURE__ */ jsx("div", { className: billboard_icon, children: /* @__PURE__ */ jsx(
37
+ "img",
38
+ {
39
+ src: icon == null ? void 0 : icon.src,
40
+ className: "img_fluid",
41
+ alt: icon == null ? void 0 : icon.alt
42
+ }
43
+ ) }),
44
+ /* @__PURE__ */ jsxs("div", { className: content, children: [
45
+ /* @__PURE__ */ jsxs("div", { className: headerIconBillboard, children: [
46
+ /* @__PURE__ */ jsx("div", { className: title({ variant }), children: headline2 }),
47
+ /* @__PURE__ */ jsx("div", { children: bodyCopy2 })
48
+ ] }),
49
+ /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("ul", { className: list, children: bullets.map((item) => /* @__PURE__ */ jsx(BulletItem, { id: item.id, children: item.copy }, item.id)) }) })
50
+ ] })
42
51
  ] }),
43
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("ul", { className: list, children: bullets.map((item) => /* @__PURE__ */ jsx(BulletItem, { id: item.id, children: item.copy }, item.id)) }) })
44
- ] })
45
- ] }),
46
- callToActionRow && /* @__PURE__ */ jsx("div", { className: buttons, children: callToActionRow.map(
47
- ({
48
- id: id2,
49
- variant: variant2,
50
- displayText,
51
- targetUrl,
52
- type
53
- }) => type === "Button" ? /* @__PURE__ */ jsx(
54
- Button,
55
- {
56
- targetUrl,
57
- color: getVariant(variant2),
58
- size: "medium",
59
- rounded: "medium",
60
- children: displayText
61
- },
62
- id2
63
- ) : /* @__PURE__ */ jsx(
64
- Chevron,
65
- {
66
- targetUrl,
67
- variant: getVariant(variant2),
68
- children: displayText
69
- },
70
- id2
71
- )
72
- ) })
73
- ] }, id)
52
+ callToActionRow && /* @__PURE__ */ jsx("div", { className: buttons, children: callToActionRow.map(
53
+ ({
54
+ id: id2,
55
+ variant: variant2,
56
+ displayText,
57
+ targetUrl,
58
+ type
59
+ }) => type === "Button" ? /* @__PURE__ */ jsx(
60
+ Button,
61
+ {
62
+ targetUrl,
63
+ color: getVariant(variant2),
64
+ size: "medium",
65
+ rounded: "medium",
66
+ children: displayText
67
+ },
68
+ id2
69
+ ) : /* @__PURE__ */ jsx(
70
+ Chevron,
71
+ {
72
+ targetUrl,
73
+ variant: getVariant(variant2),
74
+ children: displayText
75
+ },
76
+ id2
77
+ )
78
+ ) })
79
+ ]
80
+ },
81
+ id
82
+ )
74
83
  ) }),
75
84
  additionalDetails && /* @__PURE__ */ jsx("div", { className: section_text, children: /* @__PURE__ */ jsx(Fragment, { children: additionalDetails }) })
76
85
  ] });
@@ -4,7 +4,7 @@
4
4
  /* empty css */
5
5
  import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
6
6
  var billboard = createRuntimeFn({ defaultClassName: "_1m7m2a0", variantClassNames: { variant: { primary: "_1m7m2a1", secondary: "_1m7m2a2", tertiary: "_1m7m2a3", quaternary: "_1m7m2a4" } }, defaultVariants: {}, compoundVariants: [] });
7
- var imagePlacement = createRuntimeFn({ defaultClassName: "_1m7m2a5", variantClassNames: { position: { left: "_1m7m2a6", right: "_1m7m2a7" } }, defaultVariants: {}, compoundVariants: [] });
7
+ var imagePlacement = createRuntimeFn({ defaultClassName: "_1m7m2a5", variantClassNames: { position: { left: "_1m7m2a6", right: "_1m7m2a7" } }, defaultVariants: { position: "left" }, compoundVariants: [] });
8
8
  var supertag = createRuntimeFn({ defaultClassName: "_1m7m2a8", variantClassNames: { variant: { primary: "_1m7m2a9", secondary: "_1m7m2aa", tertiary: "_1m7m2ab", quaternary: "_1m7m2ac" } }, defaultVariants: {}, compoundVariants: [] });
9
9
  var header = createRuntimeFn({ defaultClassName: "_1m7m2ad", variantClassNames: { variant: { primary: "_1m7m2ae", secondary: "_1m7m2af", tertiary: "_1m7m2ag", quaternary: "_1m7m2ah" } }, defaultVariants: {}, compoundVariants: [] });
10
10
  var billboard_container = "_1m7m2ai";
@@ -1,2 +1,2 @@
1
1
  import type { ImageBillboardSetProps as Props } from "./ImageBillboard.interface";
2
- export declare const ImageBillboardSet: ({ id, variant, headline, bodyCopy, additionalDetails, imageBillboards, }: Props) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const ImageBillboard: ({ id, variant, headline, bodyCopy, additionalDetails, imageBillboards, }: Props) => import("react/jsx-runtime").JSX.Element;
@@ -9,7 +9,7 @@ import clsx from "clsx";
9
9
  import { Button } from "../Button/index.js";
10
10
  import { inline_container } from "../SetContainer/SetContainer.css.js";
11
11
  import { section_text_ImageBillboard, header, billboard, billboard_container, billboard_img, body, billboard_body, billboard_header_section, supertag, billboard_ctas } from "./ImageBillboard.css.js";
12
- const ImageBillboardSet = ({
12
+ const ImageBillboard = ({
13
13
  id,
14
14
  variant,
15
15
  headline,
@@ -128,5 +128,5 @@ const ImageBillboardSet = ({
128
128
  ] }, id);
129
129
  };
130
130
  export {
131
- ImageBillboardSet
131
+ ImageBillboard
132
132
  };
@@ -1,2 +1,2 @@
1
1
  import { ImageBillboardInterface } from "./ImageBillboard.interface";
2
- export declare const ImageBillboard: ({ id, variant, headline, bodyCopy, bordered, bullets, callToActionRow, eyebrow, image, imagePlacement: position, }: ImageBillboardInterface) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const ImageBillboardSet: ({ id, variant, headline, bodyCopy, bordered, bullets, callToActionRow, eyebrow, image, imagePlacement: position, }: ImageBillboardInterface) => import("react/jsx-runtime").JSX.Element;
@@ -8,7 +8,7 @@ import SvgCheckIcon from "../icons/CheckIcon/index.js";
8
8
  import { getVariant } from "../utils/getVariant.js";
9
9
  import clsx from "clsx";
10
10
  import { billboard, imagePlacement, billboard_img, body, billboard_body, billboard_header_section, supertag, header, billboard_ctas } from "./ImageBillboard.css.js";
11
- const ImageBillboard = ({
11
+ const ImageBillboardSet = ({
12
12
  id,
13
13
  variant,
14
14
  headline,
@@ -18,7 +18,7 @@ const ImageBillboard = ({
18
18
  callToActionRow,
19
19
  eyebrow,
20
20
  image,
21
- imagePlacement: position
21
+ imagePlacement: position = "left"
22
22
  }) => {
23
23
  const billboard_variant = getVariant(variant);
24
24
  return /* @__PURE__ */ jsxs(
@@ -28,7 +28,8 @@ const ImageBillboard = ({
28
28
  billboard({ variant: billboard_variant }),
29
29
  `rounded flex`,
30
30
  bordered ? "bordered" : "",
31
- imagePlacement({ position })
31
+ imagePlacement({ position: position == null ? void 0 : position.toLowerCase() }),
32
+ "containment"
32
33
  ),
33
34
  children: [
34
35
  /* @__PURE__ */ jsx("div", { className: `${billboard_img} flex`, children: /* @__PURE__ */ jsx("img", { src: image.src, className: "img_fluid", alt: image.alt }) }),
@@ -101,5 +102,5 @@ const ImageBillboard = ({
101
102
  );
102
103
  };
103
104
  export {
104
- ImageBillboard
105
+ ImageBillboardSet
105
106
  };
@@ -1,6 +1,6 @@
1
- import { ImageBillboardSet } from "./ImageBillboard.js";
1
+ import { ImageBillboard } from "./ImageBillboard.js";
2
2
  import { billboard, billboard_body, billboard_container, billboard_ctas, billboard_header_section, billboard_img, body, header, imagePlacement, section_text_ImageBillboard, single_container, supertag, three_inline, two_inline } from "./ImageBillboard.css.js";
3
- import { ImageBillboard } from "./ImageBillboardSet.js";
3
+ import { ImageBillboardSet } from "./ImageBillboardSet.js";
4
4
  export {
5
5
  ImageBillboard,
6
6
  ImageBillboardSet,
@@ -8,6 +8,7 @@ import "../icons/CheckIcon/CheckIcon.css.js";
8
8
  /* empty css */
9
9
  import { getVariant } from "../utils/getVariant.js";
10
10
  import "../Chevron/Chevron.css.js";
11
+ import "clsx";
11
12
  import "react";
12
13
  import "../Button/Button.css.js";
13
14
  import { inline_container } from "./SetContainer.css.js";
@@ -86,7 +86,6 @@
86
86
  object-fit: cover;
87
87
  aspect-ratio: 1 / 1;
88
88
  min-width: 600px;
89
- max-height: 480px;
90
89
  }
91
90
  ._1m7m2an {
92
91
  padding: 32px 28px;
package/dist/main.js CHANGED
@@ -22,9 +22,9 @@ import { HeroBanner } from "./HeroBanner/index.js";
22
22
  import { IconBillboard } from "./IconBillboard/IconBillboard.js";
23
23
  import { billboard_icon, buttons, containerIconBillboard, content, headerIconBillboard, header_section, layout, list, listItem, section_container, section_text, title } from "./IconBillboard/IconBillboard.css.js";
24
24
  import { IconBillboardSet } from "./IconBillboard/IconBillboardSet.js";
25
- import { ImageBillboardSet } from "./ImageBillboard/ImageBillboard.js";
25
+ import { ImageBillboard } from "./ImageBillboard/ImageBillboard.js";
26
26
  import { billboard, billboard_body, billboard_container, billboard_ctas, billboard_header_section, billboard_img, body, header, imagePlacement, section_text_ImageBillboard, single_container, supertag, three_inline, two_inline } from "./ImageBillboard/ImageBillboard.css.js";
27
- import { ImageBillboard } from "./ImageBillboard/ImageBillboardSet.js";
27
+ import { ImageBillboardSet } from "./ImageBillboard/ImageBillboardSet.js";
28
28
  import { Input } from "./Input/index.js";
29
29
  import { MainHTML } from "./MainHTML/index.js";
30
30
  import { Modal } from "./Modal/index.js";
@@ -2,3 +2,4 @@ export type CallToActionTypes = "primary" | "secondary" | "tertiary";
2
2
  export type PrimaryAndTertiaryTypes = "primary" | "tertiary";
3
3
  export type SecondaryTypes = "primary" | "secondary";
4
4
  export type QuaternaryTypes = "primary" | "secondary" | "tertiary" | "quaternary";
5
+ export type SideProps = "left" | "right";
package/package.json CHANGED
@@ -1,105 +1,105 @@
1
- {
2
- "name": "@axos-web-dev/shared-components",
3
- "description": "Axos shared components library for web.",
4
- "version": "0.0.7",
5
- "type": "module",
6
- "module": "dist/main.js",
7
- "types": "dist/main.d.ts",
8
- "files": [
9
- "dist"
10
- ],
11
- "sideEffects": [
12
- "dist/assets/**/*.css"
13
- ],
14
- "scripts": {
15
- "dev": "vite",
16
- "build": "tsc --p ./tsconfig.build.json && vite build",
17
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
18
- "preview": "vite preview",
19
- "prepublishOnly": "npm run build",
20
- "check-types": "tsc --pretty --noEmit",
21
- "check-format": "prettier --check .",
22
- "check-lint": "eslint . --ext ts --ext tsx --ext js",
23
- "format": "prettier --write .",
24
- "test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
25
- "prepare": "husky install",
26
- "storybook": "storybook dev -p 6006",
27
- "build-storybook": "storybook build",
28
- "npm:link": "npm run build && npm link"
29
- },
30
- "dependencies": {
31
- "@hookform/resolvers": "^3.3.4",
32
- "@storybook/builder-vite": "^7.6.13",
33
- "@storybook/preview-api": "^7.6.16",
34
- "@vanilla-extract/css": "^1.14.1",
35
- "@vanilla-extract/recipes": "^0.5.1",
36
- "clsx": "^2.1.0",
37
- "react-hook-form": "^7.51.1",
38
- "react-markdown": "^9.0.1",
39
- "react-use": "^17.5.0",
40
- "typed-css-modules": "^0.9.1",
41
- "vite-plugin-svgr": "^4.2.0",
42
- "zod": "^3.22.4",
43
- "zustand": "^4.5.0"
44
- },
45
- "peerDependencies": {
46
- "@vanilla-extract/css": "^1.14.1",
47
- "@vanilla-extract/css-utils": "^0.1.3",
48
- "@vanilla-extract/recipes": "^0.5.1",
49
- "@vanilla-extract/vite-plugin": "^4.0.3",
50
- "next": "14.0.4",
51
- "react": "^18.2.0",
52
- "react-dom": "^18.2.0"
53
- },
54
- "devDependencies": {
55
- "@rollup/plugin-alias": "^5.1.0",
56
- "@storybook/addon-essentials": "^7.6.13",
57
- "@storybook/addon-interactions": "^7.6.13",
58
- "@storybook/addon-links": "^7.6.13",
59
- "@storybook/addon-onboarding": "^1.0.11",
60
- "@storybook/addon-themes": "^7.6.10",
61
- "@storybook/blocks": "^7.6.13",
62
- "@storybook/react": "^7.6.13",
63
- "@storybook/react-vite": "^7.6.13",
64
- "@storybook/test": "^7.6.13",
65
- "@svgr/core": "^8.1.0",
66
- "@svgr/plugin-prettier": "^8.1.0",
67
- "@svgr/plugin-svgo": "^8.1.0",
68
- "@types/node": "^20.11.16",
69
- "@types/react": "^18.2.43",
70
- "@types/react-dom": "^18.2.17",
71
- "@typescript-eslint/eslint-plugin": "^6.14.0",
72
- "@typescript-eslint/parser": "^6.14.0",
73
- "@vanilla-extract/css-utils": "^0.1.3",
74
- "@vanilla-extract/recipes": "^0.5.1",
75
- "@vanilla-extract/vite-plugin": "^4.0.3",
76
- "@vitejs/plugin-react-swc": "^3.5.0",
77
- "esbuild-vanilla-image-loader": "^0.1.3",
78
- "eslint": "^8.55.0",
79
- "eslint-plugin-react-hooks": "^4.6.0",
80
- "eslint-plugin-react-refresh": "^0.4.5",
81
- "eslint-plugin-storybook": "^0.6.15",
82
- "glob": "^10.3.10",
83
- "husky": "^8.0.0",
84
- "prettier": "3.2.5",
85
- "react": "^18.2.0",
86
- "react-dom": "^18.2.0",
87
- "rollup-plugin-preserve-directives": "^0.4.0",
88
- "rollup-plugin-svg-import": "^3.0.0",
89
- "rollup-plugin-svgo": "^2.0.0",
90
- "storybook": "^7.6.13",
91
- "typescript": "^5.2.2",
92
- "typescript-plugin-css-modules": "^5.1.0",
93
- "vite": "^5.0.8",
94
- "vite-plugin-dts": "^3.7.3",
95
- "vite-plugin-lib-inject-css": "^1.3.0",
96
- "vite-plugin-setting-css-module": "^1.1.4",
97
- "vite-tsconfig-paths": "^4.3.1"
98
- },
99
- "main": "index.js",
100
- "directories": {
101
- "lib": "lib"
102
- },
103
- "author": "axos-web-dev",
104
- "license": "ISC"
105
- }
1
+ {
2
+ "name": "@axos-web-dev/shared-components",
3
+ "description": "Axos shared components library for web.",
4
+ "version": "0.0.9",
5
+ "type": "module",
6
+ "module": "dist/main.js",
7
+ "types": "dist/main.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "sideEffects": [
12
+ "dist/assets/**/*.css"
13
+ ],
14
+ "scripts": {
15
+ "dev": "vite",
16
+ "build": "tsc --p ./tsconfig.build.json && vite build",
17
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
18
+ "preview": "vite preview",
19
+ "prepublishOnly": "npm run build",
20
+ "check-types": "tsc --pretty --noEmit",
21
+ "check-format": "prettier --check .",
22
+ "check-lint": "eslint . --ext ts --ext tsx --ext js",
23
+ "format": "prettier --write .",
24
+ "test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
25
+ "prepare": "husky install",
26
+ "storybook": "storybook dev -p 6006",
27
+ "build-storybook": "storybook build",
28
+ "npm:link": "npm run build && npm link"
29
+ },
30
+ "dependencies": {
31
+ "@hookform/resolvers": "^3.3.4",
32
+ "@storybook/builder-vite": "^7.6.13",
33
+ "@storybook/preview-api": "^7.6.16",
34
+ "@vanilla-extract/css": "^1.14.1",
35
+ "@vanilla-extract/recipes": "^0.5.1",
36
+ "clsx": "^2.1.0",
37
+ "react-hook-form": "^7.51.1",
38
+ "react-markdown": "^9.0.1",
39
+ "react-use": "^17.5.0",
40
+ "typed-css-modules": "^0.9.1",
41
+ "vite-plugin-svgr": "^4.2.0",
42
+ "zod": "^3.22.4",
43
+ "zustand": "^4.5.0"
44
+ },
45
+ "peerDependencies": {
46
+ "@vanilla-extract/css": "^1.14.1",
47
+ "@vanilla-extract/css-utils": "^0.1.3",
48
+ "@vanilla-extract/recipes": "^0.5.1",
49
+ "@vanilla-extract/vite-plugin": "^4.0.3",
50
+ "next": "14.0.4",
51
+ "react": "^18.2.0",
52
+ "react-dom": "^18.2.0"
53
+ },
54
+ "devDependencies": {
55
+ "@rollup/plugin-alias": "^5.1.0",
56
+ "@storybook/addon-essentials": "^7.6.13",
57
+ "@storybook/addon-interactions": "^7.6.13",
58
+ "@storybook/addon-links": "^7.6.13",
59
+ "@storybook/addon-onboarding": "^1.0.11",
60
+ "@storybook/addon-themes": "^7.6.10",
61
+ "@storybook/blocks": "^7.6.13",
62
+ "@storybook/react": "^7.6.13",
63
+ "@storybook/react-vite": "^7.6.13",
64
+ "@storybook/test": "^7.6.13",
65
+ "@svgr/core": "^8.1.0",
66
+ "@svgr/plugin-prettier": "^8.1.0",
67
+ "@svgr/plugin-svgo": "^8.1.0",
68
+ "@types/node": "^20.11.16",
69
+ "@types/react": "^18.2.43",
70
+ "@types/react-dom": "^18.2.17",
71
+ "@typescript-eslint/eslint-plugin": "^6.14.0",
72
+ "@typescript-eslint/parser": "^6.14.0",
73
+ "@vanilla-extract/css-utils": "^0.1.3",
74
+ "@vanilla-extract/recipes": "^0.5.1",
75
+ "@vanilla-extract/vite-plugin": "^4.0.3",
76
+ "@vitejs/plugin-react-swc": "^3.5.0",
77
+ "esbuild-vanilla-image-loader": "^0.1.3",
78
+ "eslint": "^8.55.0",
79
+ "eslint-plugin-react-hooks": "^4.6.0",
80
+ "eslint-plugin-react-refresh": "^0.4.5",
81
+ "eslint-plugin-storybook": "^0.6.15",
82
+ "glob": "^10.3.10",
83
+ "husky": "^8.0.0",
84
+ "prettier": "3.2.5",
85
+ "react": "^18.2.0",
86
+ "react-dom": "^18.2.0",
87
+ "rollup-plugin-preserve-directives": "^0.4.0",
88
+ "rollup-plugin-svg-import": "^3.0.0",
89
+ "rollup-plugin-svgo": "^2.0.0",
90
+ "storybook": "^7.6.13",
91
+ "typescript": "^5.2.2",
92
+ "typescript-plugin-css-modules": "^5.1.0",
93
+ "vite": "^5.0.8",
94
+ "vite-plugin-dts": "^3.7.3",
95
+ "vite-plugin-lib-inject-css": "^1.3.0",
96
+ "vite-plugin-setting-css-module": "^1.1.4",
97
+ "vite-tsconfig-paths": "^4.3.1"
98
+ },
99
+ "main": "index.js",
100
+ "directories": {
101
+ "lib": "lib"
102
+ },
103
+ "author": "axos-web-dev",
104
+ "license": "ISC"
105
+ }