@axos-web-dev/shared-components 0.0.117 → 0.0.118
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/Accordion/Accordion.css.d.ts +9 -9
- package/dist/ArticlesSet/ArticlesSet.js +1 -1
- package/dist/Calculators/MarginTradingCalculator/index.js +4 -2
- package/dist/Calculators/calculators.js +6 -0
- package/dist/Carousel/index.d.ts +1 -0
- package/dist/Carousel/index.js +5 -4
- package/dist/Comparison/Comparison.css.js +2 -2
- package/dist/ContentBanner/index.js +1 -1
- package/dist/ExecutiveBio/ExecutiveBio.js +1 -1
- package/dist/FaqAccordion/index.d.ts +1 -0
- package/dist/FaqAccordion/index.js +2 -2
- package/dist/FooterDisclosure/FooterDisclosure.d.ts +5 -2
- package/dist/FooterDisclosure/FooterDisclosure.js +18 -2
- package/dist/Forms/ApplicationStart.js +105 -113
- package/dist/Forms/ClearingForm.js +177 -185
- package/dist/Forms/CommercialLending.js +276 -281
- package/dist/Forms/ContactCompany.js +107 -115
- package/dist/Forms/ContactUs.js +89 -97
- package/dist/Forms/ContactUsAAS.js +170 -178
- package/dist/Forms/ContactUsBusiness.js +128 -136
- package/dist/Forms/ContactUsNMLSId.js +111 -119
- package/dist/Forms/CpraRequest.js +592 -600
- package/dist/Forms/DealerServices.js +219 -227
- package/dist/Forms/EmailOnly.js +48 -56
- package/dist/Forms/EmailUs.js +65 -73
- package/dist/Forms/Forms.css.js +2 -2
- package/dist/Forms/SalesforceFieldsForm.d.ts +1 -0
- package/dist/Forms/ScheduleCall.js +149 -160
- package/dist/Forms/ScheduleCallPremier.js +171 -179
- package/dist/Forms/WcplSurvey.js +102 -110
- package/dist/HeroBanner/HeroBanner.css.js +1 -1
- package/dist/HeroBanner/HeroBanner.js +2 -2
- package/dist/IconBillboard/IconBillboard.d.ts +1 -0
- package/dist/IconBillboard/IconBillboard.js +6 -4
- package/dist/ImageBillboard/ImageBillboard.css.js +1 -1
- package/dist/ImageBillboard/ImageBillboardSet.js +1 -0
- package/dist/Input/Checkbox.d.ts +1 -1
- package/dist/Input/Input.css.js +1 -1
- package/dist/Input/InputProps.d.ts +0 -6
- package/dist/Insight/Featured/CategorySelector.css.js +1 -1
- package/dist/StepItemSet/StepItemSet.js +1 -1
- package/dist/Table/Table.d.ts +13 -13
- package/dist/TextBlock/TextBlock.js +1 -1
- package/dist/VideoTile/VideoTile.js +1 -1
- package/dist/VideoWrapper/index.js +22 -30
- package/dist/assets/Comparison/Comparison.css +0 -1
- package/dist/assets/Table/Table.css +8 -8
- package/dist/index.css.js +1 -1
- package/package.json +121 -121
- package/dist/Input/DatePicker.css.d.ts +0 -1
- package/dist/Input/DatePicker.css.js +0 -6
- package/dist/Input/Datepicker.d.ts +0 -3
- package/dist/Input/Datepicker.js +0 -47
- package/dist/Input/InputDate.css.d.ts +0 -6
- package/dist/Input/InputDate.css.js +0 -15
- package/dist/Input/InputDate.d.ts +0 -3
- package/dist/Input/InputDate.js +0 -47
- package/dist/assets/Input/DatePicker.css +0 -95
- package/dist/assets/Input/InputDate.css +0 -39
|
@@ -17,7 +17,8 @@ const IconBillboard = (props) => {
|
|
|
17
17
|
headline,
|
|
18
18
|
body,
|
|
19
19
|
icon,
|
|
20
|
-
set
|
|
20
|
+
set,
|
|
21
|
+
id
|
|
21
22
|
} = props;
|
|
22
23
|
const variant = getVariant(fullVariant);
|
|
23
24
|
return /* @__PURE__ */ jsxs(
|
|
@@ -28,6 +29,7 @@ const IconBillboard = (props) => {
|
|
|
28
29
|
"billboard",
|
|
29
30
|
`${set ? "" : "containment"}`
|
|
30
31
|
),
|
|
32
|
+
id,
|
|
31
33
|
children: [
|
|
32
34
|
/* @__PURE__ */ jsxs("div", { className: `middle ${layout({ side })}`, children: [
|
|
33
35
|
icon && /* @__PURE__ */ jsx("div", { className: billboard_icon, role: "presentation", children: /* @__PURE__ */ jsx("img", { src: icon?.src, className: "img_fluid", alt: icon?.alt }) }),
|
|
@@ -41,7 +43,7 @@ const IconBillboard = (props) => {
|
|
|
41
43
|
] }),
|
|
42
44
|
callToActionRow && /* @__PURE__ */ jsx("div", { className: buttons, children: callToActionRow.map(
|
|
43
45
|
({
|
|
44
|
-
id,
|
|
46
|
+
id: id2,
|
|
45
47
|
variant: variant2,
|
|
46
48
|
displayText,
|
|
47
49
|
targetUrl,
|
|
@@ -59,7 +61,7 @@ const IconBillboard = (props) => {
|
|
|
59
61
|
newTab,
|
|
60
62
|
children: displayText
|
|
61
63
|
},
|
|
62
|
-
|
|
64
|
+
id2
|
|
63
65
|
) : /* @__PURE__ */ jsx(
|
|
64
66
|
Chevron,
|
|
65
67
|
{
|
|
@@ -69,7 +71,7 @@ const IconBillboard = (props) => {
|
|
|
69
71
|
newTab,
|
|
70
72
|
children: displayText
|
|
71
73
|
},
|
|
72
|
-
|
|
74
|
+
id2
|
|
73
75
|
)
|
|
74
76
|
) })
|
|
75
77
|
]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
/* empty css */
|
|
1
2
|
/* empty css */
|
|
2
3
|
/* empty css */
|
|
3
4
|
/* empty css */
|
|
4
|
-
/* empty css */
|
|
5
5
|
/* empty css */
|
|
6
6
|
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
7
7
|
var billboard = createRuntimeFn({ defaultClassName: "_1m7m2a0", variantClassNames: { variant: { primary: "_1m7m2a1", secondary: "_1m7m2a2", tertiary: "_1m7m2a3", quaternary: "_1m7m2a4" } }, defaultVariants: {}, compoundVariants: [] });
|
package/dist/Input/Checkbox.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InputProps } from './InputProps';
|
|
2
2
|
|
|
3
3
|
export declare const Checkbox: import('react').ForwardRefExoticComponent<InputProps & {
|
|
4
|
-
children?: import('react').ReactNode
|
|
4
|
+
children?: import('react').ReactNode;
|
|
5
5
|
} & import('react').RefAttributes<HTMLInputElement>>;
|
package/dist/Input/Input.css.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
/* empty css */
|
|
1
2
|
/* empty css */
|
|
2
3
|
/* empty css */
|
|
3
|
-
/* empty css */
|
|
4
4
|
/* empty css */
|
|
5
5
|
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
6
6
|
var iconInput = createRuntimeFn({ defaultClassName: "_18du0la0", variantClassNames: { size: { small: "_18du0la1", medium: "_18du0la2", large: "_18du0la3" } }, defaultVariants: {}, compoundVariants: [] });
|
|
@@ -36,9 +36,3 @@ export interface RadioButtonProps extends InputProps {
|
|
|
36
36
|
value: string | number;
|
|
37
37
|
groupName: string;
|
|
38
38
|
}
|
|
39
|
-
export interface DatepickerInputProps extends InputProps {
|
|
40
|
-
month?: string;
|
|
41
|
-
selected?: string;
|
|
42
|
-
show?: boolean;
|
|
43
|
-
onDateChange: (day: string) => void;
|
|
44
|
-
}
|
|
@@ -19,7 +19,7 @@ const StepItemSet = ({
|
|
|
19
19
|
additionalDetails
|
|
20
20
|
}) => {
|
|
21
21
|
const variant = getVariant(fullVariant);
|
|
22
|
-
return /* @__PURE__ */ jsx("section", { className: `${bs_section({ variant })}`, id
|
|
22
|
+
return /* @__PURE__ */ jsx("section", { className: `${bs_section({ variant })}`, id, children: /* @__PURE__ */ jsxs("div", { className: `${bs_wrapper} containment`, children: [
|
|
23
23
|
(title || description) && /* @__PURE__ */ jsxs("div", { className: "text_center", children: [
|
|
24
24
|
/* @__PURE__ */ jsxs(
|
|
25
25
|
"svg",
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -9,14 +9,14 @@ export declare const TableBody: ({ children }: PropsWithChildren) => import("rea
|
|
|
9
9
|
export declare const TableCell: ({ children, as, variant, highlighted, ...props }: CellProps) => import('react').DetailedReactHTMLElement<{
|
|
10
10
|
className: string;
|
|
11
11
|
manifest?: string | undefined;
|
|
12
|
-
amp?: string;
|
|
12
|
+
amp?: string | undefined;
|
|
13
13
|
defaultChecked?: boolean | undefined;
|
|
14
14
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
15
15
|
suppressContentEditableWarning?: boolean | undefined;
|
|
16
16
|
suppressHydrationWarning?: boolean | undefined;
|
|
17
17
|
accessKey?: string | undefined;
|
|
18
18
|
autoFocus?: boolean | undefined;
|
|
19
|
-
contentEditable?: (boolean | "false" | "true") | "
|
|
19
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
20
20
|
contextMenu?: string | undefined;
|
|
21
21
|
dir?: string | undefined;
|
|
22
22
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
@@ -29,7 +29,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
29
29
|
style?: import('react').CSSProperties | undefined;
|
|
30
30
|
tabIndex?: number | undefined;
|
|
31
31
|
title?: string | undefined;
|
|
32
|
-
translate?: "
|
|
32
|
+
translate?: "no" | "yes" | undefined;
|
|
33
33
|
radioGroup?: string | undefined;
|
|
34
34
|
role?: import('react').AriaRole | undefined;
|
|
35
35
|
about?: string | undefined;
|
|
@@ -54,38 +54,38 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
54
54
|
itemRef?: string | undefined;
|
|
55
55
|
results?: number | undefined;
|
|
56
56
|
security?: string | undefined;
|
|
57
|
-
unselectable?: "
|
|
58
|
-
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" |
|
|
57
|
+
unselectable?: "off" | "on" | undefined;
|
|
58
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
59
59
|
is?: string | undefined;
|
|
60
60
|
popover?: "" | "auto" | "manual" | undefined;
|
|
61
|
-
popoverTargetAction?: "
|
|
61
|
+
popoverTargetAction?: "hide" | "show" | "toggle" | undefined;
|
|
62
62
|
popoverTarget?: string | undefined;
|
|
63
63
|
onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
|
64
64
|
onBeforeToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
|
65
65
|
inert?: boolean | undefined;
|
|
66
66
|
"aria-activedescendant"?: string | undefined;
|
|
67
67
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
68
|
-
"aria-autocomplete"?: "none" | "
|
|
68
|
+
"aria-autocomplete"?: "none" | "both" | "inline" | "list" | undefined;
|
|
69
69
|
"aria-braillelabel"?: string | undefined;
|
|
70
70
|
"aria-brailleroledescription"?: string | undefined;
|
|
71
71
|
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
72
|
-
"aria-checked"?: boolean | "
|
|
72
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
73
73
|
"aria-colcount"?: number | undefined;
|
|
74
74
|
"aria-colindex"?: number | undefined;
|
|
75
75
|
"aria-colindextext"?: string | undefined;
|
|
76
76
|
"aria-colspan"?: number | undefined;
|
|
77
77
|
"aria-controls"?: string | undefined;
|
|
78
|
-
"aria-current"?: boolean | "false" | "true" | "
|
|
78
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "step" | "location" | "date" | undefined;
|
|
79
79
|
"aria-describedby"?: string | undefined;
|
|
80
80
|
"aria-description"?: string | undefined;
|
|
81
81
|
"aria-details"?: string | undefined;
|
|
82
82
|
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
83
|
-
"aria-dropeffect"?: "
|
|
83
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
|
84
84
|
"aria-errormessage"?: string | undefined;
|
|
85
85
|
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
86
86
|
"aria-flowto"?: string | undefined;
|
|
87
87
|
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
88
|
-
"aria-haspopup"?: boolean | "
|
|
88
|
+
"aria-haspopup"?: boolean | "grid" | "listbox" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
89
89
|
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
90
90
|
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
91
91
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -100,9 +100,9 @@ export declare const TableCell: ({ children, as, variant, highlighted, ...props
|
|
|
100
100
|
"aria-owns"?: string | undefined;
|
|
101
101
|
"aria-placeholder"?: string | undefined;
|
|
102
102
|
"aria-posinset"?: number | undefined;
|
|
103
|
-
"aria-pressed"?: boolean | "
|
|
103
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
104
104
|
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
105
|
-
"aria-relevant"?: "
|
|
105
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
106
106
|
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
107
107
|
"aria-roledescription"?: string | undefined;
|
|
108
108
|
"aria-rowcount"?: number | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { textBlockHeader } from "./TextBlock.css.js";
|
|
3
3
|
const TextBlock = (props) => {
|
|
4
|
-
return /* @__PURE__ */ jsxs("div", { id:
|
|
4
|
+
return /* @__PURE__ */ jsxs("div", { id: `${props.id}`, className: "containment", children: [
|
|
5
5
|
/* @__PURE__ */ jsx("h2", { className: `header_2 text_center ${textBlockHeader}`, children: props.headline }),
|
|
6
6
|
/* @__PURE__ */ jsx("div", { children: props.bodyCopy })
|
|
7
7
|
] });
|
|
@@ -29,7 +29,7 @@ const VideoTile = ({
|
|
|
29
29
|
event.preventDefault();
|
|
30
30
|
toggle();
|
|
31
31
|
};
|
|
32
|
-
return /* @__PURE__ */ jsxs("div", { id
|
|
32
|
+
return /* @__PURE__ */ jsxs("div", { id, className: `flex center`, children: [
|
|
33
33
|
/* @__PURE__ */ jsx(VideoInit, {}),
|
|
34
34
|
/* @__PURE__ */ jsxs("div", { className: `containment ${video_container} flex_col`, children: [
|
|
35
35
|
title && /* @__PURE__ */ jsx("h2", { className: `${mb_8} ${video_title}`, children: title }),
|
|
@@ -11,37 +11,29 @@ const VideoWrapper = ({
|
|
|
11
11
|
backgroundColor,
|
|
12
12
|
id
|
|
13
13
|
}) => {
|
|
14
|
-
return /* @__PURE__ */ jsx(
|
|
15
|
-
"div",
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"div",
|
|
14
|
+
return /* @__PURE__ */ jsx("div", { id, style: backgroundColor ? { backgroundColor } : {}, children: /* @__PURE__ */ jsx("section", { children: /* @__PURE__ */ jsxs("div", { className: "containment", children: [
|
|
15
|
+
/* @__PURE__ */ jsx("div", { className: "section_header", children: /* @__PURE__ */ jsx("h2", { className: "header_1", children: title }) }),
|
|
16
|
+
/* @__PURE__ */ jsx(
|
|
17
|
+
"div",
|
|
18
|
+
{
|
|
19
|
+
className: `${grid_wrapper} ${videoTiles.length % 3 === 0 ? grid_3 : grid_2}`,
|
|
20
|
+
children: videoTiles?.map((videoItem, index) => /* @__PURE__ */ jsx(
|
|
21
|
+
VideoTile,
|
|
23
22
|
{
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
))
|
|
39
|
-
}
|
|
40
|
-
)
|
|
41
|
-
] }) })
|
|
42
|
-
},
|
|
43
|
-
id
|
|
44
|
-
);
|
|
23
|
+
id: videoItem.id,
|
|
24
|
+
title: videoItem?.title,
|
|
25
|
+
videoId: videoItem?.videoId,
|
|
26
|
+
thumbnailImage: videoItem?.thumbnailImage,
|
|
27
|
+
displayType: videoItem?.displayType,
|
|
28
|
+
maxWidth: videoItem?.maxWidth || "588px",
|
|
29
|
+
videoPlayer: videoItem.displayType,
|
|
30
|
+
transcript: videoItem?.transcript
|
|
31
|
+
},
|
|
32
|
+
index
|
|
33
|
+
))
|
|
34
|
+
}
|
|
35
|
+
)
|
|
36
|
+
] }) }) }, id);
|
|
45
37
|
};
|
|
46
38
|
export {
|
|
47
39
|
VideoWrapper
|
|
@@ -226,16 +226,16 @@ tr:last-child td {
|
|
|
226
226
|
min-width: unset;
|
|
227
227
|
width: 100%;
|
|
228
228
|
}
|
|
229
|
-
|
|
229
|
+
tr:has(> :last-child:nth-child(-n + 3)) td {
|
|
230
230
|
width: 33%;
|
|
231
231
|
}
|
|
232
|
-
|
|
232
|
+
tr:has(> :last-child:nth-child(-n + 3)) th {
|
|
233
233
|
width: 33%;
|
|
234
234
|
}
|
|
235
|
-
|
|
235
|
+
tr:has(> :last-child:nth-child(-n + 3)) td:first-child {
|
|
236
236
|
position: relative;
|
|
237
237
|
}
|
|
238
|
-
|
|
238
|
+
tr:has(> :last-child:nth-child(-n + 3)) th:first-child {
|
|
239
239
|
position: relative;
|
|
240
240
|
}
|
|
241
241
|
._1nivbwe12 tr td:first-child p {
|
|
@@ -297,21 +297,21 @@ td:has(.flex.middle span.img_fluid) .img_fluid {
|
|
|
297
297
|
overflow: auto;
|
|
298
298
|
width: auto;
|
|
299
299
|
}
|
|
300
|
-
|
|
300
|
+
tr:has(> :last-child:nth-child(-n + 3)) td {
|
|
301
301
|
font-size: 14px;
|
|
302
302
|
min-width: unset;
|
|
303
303
|
width: 30%;
|
|
304
304
|
}
|
|
305
|
-
|
|
305
|
+
tr:has(> :last-child:nth-child(-n + 3)) th {
|
|
306
306
|
min-width: unset;
|
|
307
307
|
width: 30%;
|
|
308
308
|
}
|
|
309
|
-
|
|
309
|
+
tr:has(> :last-child:nth-child(-n + 3)) td:first-child {
|
|
310
310
|
box-shadow: none;
|
|
311
311
|
z-index: 0;
|
|
312
312
|
width: 40%;
|
|
313
313
|
}
|
|
314
|
-
|
|
314
|
+
tr:has(> :last-child:nth-child(-n + 3)) th:first-child {
|
|
315
315
|
box-shadow: none;
|
|
316
316
|
z-index: 0;
|
|
317
317
|
width: 40%;
|
package/dist/index.css.js
CHANGED
package/package.json
CHANGED
|
@@ -1,121 +1,121 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@axos-web-dev/shared-components",
|
|
3
|
-
"description": "Axos shared components library for web.",
|
|
4
|
-
"version": "0.0.
|
|
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.9.0",
|
|
32
|
-
"@react-input/mask": "^1.2.5",
|
|
33
|
-
"@react-input/number-format": "^1.0.27",
|
|
34
|
-
"@storybook/icons": "^1.2.9",
|
|
35
|
-
"@storybook/preview-api": "^8.2.9",
|
|
36
|
-
"@types/iframe-resizer": "3.5.13",
|
|
37
|
-
"@vanilla-extract/css": "^1.15.3",
|
|
38
|
-
"@vanilla-extract/recipes": "^0.5.1",
|
|
39
|
-
"clsx": "^2.1.1",
|
|
40
|
-
"iframe-resizer": "4.3.11",
|
|
41
|
-
"lodash": "^4.17.21",
|
|
42
|
-
"moment": "^2.30.1",
|
|
43
|
-
"react-date-picker": "^11.0.0",
|
|
44
|
-
"react-hook-form": "^7.52.1",
|
|
45
|
-
"react-markdown": "^9.0.1",
|
|
46
|
-
"react-slick": "^0.30.2",
|
|
47
|
-
"react-use": "^17.5.1",
|
|
48
|
-
"slick-carousel": "^1.8.1",
|
|
49
|
-
"typed-css-modules": "^0.9.1",
|
|
50
|
-
"vite-plugin-svgr": "^4.2.0",
|
|
51
|
-
"zod": "^3.23.8",
|
|
52
|
-
"zustand": "^4.5.4"
|
|
53
|
-
},
|
|
54
|
-
"peerDependencies": {
|
|
55
|
-
"@vanilla-extract/css-utils": "^0.1.3",
|
|
56
|
-
"@vanilla-extract/recipes": "^0.5.1",
|
|
57
|
-
"@vanilla-extract/vite-plugin": "^4.0.3",
|
|
58
|
-
"next": "^14.1.4",
|
|
59
|
-
"react": "^18.2.0",
|
|
60
|
-
"react-dom": "^18.2.0",
|
|
61
|
-
"react-slick": "^0.30.2",
|
|
62
|
-
"slick-carousel": "^1.8.1"
|
|
63
|
-
},
|
|
64
|
-
"devDependencies": {
|
|
65
|
-
"@chromatic-com/storybook": "^1.8.0",
|
|
66
|
-
"@rollup/plugin-alias": "^5.1.0",
|
|
67
|
-
"@storybook/addon-essentials": "^8.2.9",
|
|
68
|
-
"@storybook/addon-interactions": "^8.2.9",
|
|
69
|
-
"@storybook/addon-links": "^8.2.9",
|
|
70
|
-
"@storybook/addon-mdx-gfm": "^8.2.9",
|
|
71
|
-
"@storybook/addon-onboarding": "^8.2.9",
|
|
72
|
-
"@storybook/addon-themes": "^8.2.9",
|
|
73
|
-
"@storybook/blocks": "^8.2.9",
|
|
74
|
-
"@storybook/react": "^8.2.9",
|
|
75
|
-
"@storybook/react-vite": "^8.2.9",
|
|
76
|
-
"@storybook/test": "^8.2.9",
|
|
77
|
-
"@svgr/core": "^8.1.0",
|
|
78
|
-
"@svgr/plugin-prettier": "^8.1.0",
|
|
79
|
-
"@svgr/plugin-svgo": "^8.1.0",
|
|
80
|
-
"@types/lodash": "^4.17.7",
|
|
81
|
-
"@types/node": "^20.14.11",
|
|
82
|
-
"@types/react": "^18.3.3",
|
|
83
|
-
"@types/react-datepicker": "^6.2.0",
|
|
84
|
-
"@types/react-dom": "^18.3.0",
|
|
85
|
-
"@types/react-slick": "^0.23.13",
|
|
86
|
-
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
87
|
-
"@typescript-eslint/parser": "^7.9.0",
|
|
88
|
-
"@vanilla-extract/css-utils": "^0.1.3",
|
|
89
|
-
"@vanilla-extract/recipes": "^0.5.2",
|
|
90
|
-
"@vanilla-extract/vite-plugin": "^4.0.9",
|
|
91
|
-
"@vitejs/plugin-react-swc": "^3.6.0",
|
|
92
|
-
"esbuild-vanilla-image-loader": "^0.1.3",
|
|
93
|
-
"eslint": "^8.57.0",
|
|
94
|
-
"eslint-plugin-react-hooks": "^4.6.2",
|
|
95
|
-
"eslint-plugin-react-refresh": "^0.4.7",
|
|
96
|
-
"eslint-plugin-storybook": "^0.8.0",
|
|
97
|
-
"glob": "^10.4.5",
|
|
98
|
-
"husky": "^9.0.11",
|
|
99
|
-
"next": "^14.1.4",
|
|
100
|
-
"prettier": "3.2.5",
|
|
101
|
-
"react": "^18.3.1",
|
|
102
|
-
"react-dom": "^18.3.1",
|
|
103
|
-
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
104
|
-
"rollup-plugin-svg-import": "^3.0.0",
|
|
105
|
-
"rollup-plugin-svgo": "^2.0.0",
|
|
106
|
-
"storybook": "^8.2.9",
|
|
107
|
-
"typescript": "^5.4.5",
|
|
108
|
-
"typescript-plugin-css-modules": "^5.1.0",
|
|
109
|
-
"vite": "^5.3.4",
|
|
110
|
-
"vite-plugin-dts": "^3.9.1",
|
|
111
|
-
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
112
|
-
"vite-plugin-setting-css-module": "^1.1.4",
|
|
113
|
-
"vite-tsconfig-paths": "^4.3.2"
|
|
114
|
-
},
|
|
115
|
-
"main": "index.js",
|
|
116
|
-
"directories": {
|
|
117
|
-
"lib": "lib"
|
|
118
|
-
},
|
|
119
|
-
"author": "axos-web-dev",
|
|
120
|
-
"license": "ISC"
|
|
121
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@axos-web-dev/shared-components",
|
|
3
|
+
"description": "Axos shared components library for web.",
|
|
4
|
+
"version": "0.0.118",
|
|
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.9.0",
|
|
32
|
+
"@react-input/mask": "^1.2.5",
|
|
33
|
+
"@react-input/number-format": "^1.0.27",
|
|
34
|
+
"@storybook/icons": "^1.2.9",
|
|
35
|
+
"@storybook/preview-api": "^8.2.9",
|
|
36
|
+
"@types/iframe-resizer": "3.5.13",
|
|
37
|
+
"@vanilla-extract/css": "^1.15.3",
|
|
38
|
+
"@vanilla-extract/recipes": "^0.5.1",
|
|
39
|
+
"clsx": "^2.1.1",
|
|
40
|
+
"iframe-resizer": "4.3.11",
|
|
41
|
+
"lodash": "^4.17.21",
|
|
42
|
+
"moment": "^2.30.1",
|
|
43
|
+
"react-date-picker": "^11.0.0",
|
|
44
|
+
"react-hook-form": "^7.52.1",
|
|
45
|
+
"react-markdown": "^9.0.1",
|
|
46
|
+
"react-slick": "^0.30.2",
|
|
47
|
+
"react-use": "^17.5.1",
|
|
48
|
+
"slick-carousel": "^1.8.1",
|
|
49
|
+
"typed-css-modules": "^0.9.1",
|
|
50
|
+
"vite-plugin-svgr": "^4.2.0",
|
|
51
|
+
"zod": "^3.23.8",
|
|
52
|
+
"zustand": "^4.5.4"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"@vanilla-extract/css-utils": "^0.1.3",
|
|
56
|
+
"@vanilla-extract/recipes": "^0.5.1",
|
|
57
|
+
"@vanilla-extract/vite-plugin": "^4.0.3",
|
|
58
|
+
"next": "^14.1.4",
|
|
59
|
+
"react": "^18.2.0",
|
|
60
|
+
"react-dom": "^18.2.0",
|
|
61
|
+
"react-slick": "^0.30.2",
|
|
62
|
+
"slick-carousel": "^1.8.1"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@chromatic-com/storybook": "^1.8.0",
|
|
66
|
+
"@rollup/plugin-alias": "^5.1.0",
|
|
67
|
+
"@storybook/addon-essentials": "^8.2.9",
|
|
68
|
+
"@storybook/addon-interactions": "^8.2.9",
|
|
69
|
+
"@storybook/addon-links": "^8.2.9",
|
|
70
|
+
"@storybook/addon-mdx-gfm": "^8.2.9",
|
|
71
|
+
"@storybook/addon-onboarding": "^8.2.9",
|
|
72
|
+
"@storybook/addon-themes": "^8.2.9",
|
|
73
|
+
"@storybook/blocks": "^8.2.9",
|
|
74
|
+
"@storybook/react": "^8.2.9",
|
|
75
|
+
"@storybook/react-vite": "^8.2.9",
|
|
76
|
+
"@storybook/test": "^8.2.9",
|
|
77
|
+
"@svgr/core": "^8.1.0",
|
|
78
|
+
"@svgr/plugin-prettier": "^8.1.0",
|
|
79
|
+
"@svgr/plugin-svgo": "^8.1.0",
|
|
80
|
+
"@types/lodash": "^4.17.7",
|
|
81
|
+
"@types/node": "^20.14.11",
|
|
82
|
+
"@types/react": "^18.3.3",
|
|
83
|
+
"@types/react-datepicker": "^6.2.0",
|
|
84
|
+
"@types/react-dom": "^18.3.0",
|
|
85
|
+
"@types/react-slick": "^0.23.13",
|
|
86
|
+
"@typescript-eslint/eslint-plugin": "^7.9.0",
|
|
87
|
+
"@typescript-eslint/parser": "^7.9.0",
|
|
88
|
+
"@vanilla-extract/css-utils": "^0.1.3",
|
|
89
|
+
"@vanilla-extract/recipes": "^0.5.2",
|
|
90
|
+
"@vanilla-extract/vite-plugin": "^4.0.9",
|
|
91
|
+
"@vitejs/plugin-react-swc": "^3.6.0",
|
|
92
|
+
"esbuild-vanilla-image-loader": "^0.1.3",
|
|
93
|
+
"eslint": "^8.57.0",
|
|
94
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
95
|
+
"eslint-plugin-react-refresh": "^0.4.7",
|
|
96
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
97
|
+
"glob": "^10.4.5",
|
|
98
|
+
"husky": "^9.0.11",
|
|
99
|
+
"next": "^14.1.4",
|
|
100
|
+
"prettier": "3.2.5",
|
|
101
|
+
"react": "^18.3.1",
|
|
102
|
+
"react-dom": "^18.3.1",
|
|
103
|
+
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
104
|
+
"rollup-plugin-svg-import": "^3.0.0",
|
|
105
|
+
"rollup-plugin-svgo": "^2.0.0",
|
|
106
|
+
"storybook": "^8.2.9",
|
|
107
|
+
"typescript": "^5.4.5",
|
|
108
|
+
"typescript-plugin-css-modules": "^5.1.0",
|
|
109
|
+
"vite": "^5.3.4",
|
|
110
|
+
"vite-plugin-dts": "^3.9.1",
|
|
111
|
+
"vite-plugin-lib-inject-css": "^2.1.1",
|
|
112
|
+
"vite-plugin-setting-css-module": "^1.1.4",
|
|
113
|
+
"vite-tsconfig-paths": "^4.3.2"
|
|
114
|
+
},
|
|
115
|
+
"main": "index.js",
|
|
116
|
+
"directories": {
|
|
117
|
+
"lib": "lib"
|
|
118
|
+
},
|
|
119
|
+
"author": "axos-web-dev",
|
|
120
|
+
"license": "ISC"
|
|
121
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const datePicker: string;
|