@greghowe79/the-lib 2.0.8 → 2.1.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/lib/components/button/button.qwik.cjs +1 -1
- package/lib/components/button/button.qwik.mjs +1 -1
- package/lib/components/card/card.qwik.cjs +1 -1
- package/lib/components/card/card.qwik.mjs +1 -1
- package/lib/components/hero/hero.qwik.cjs +48 -11
- package/lib/components/hero/hero.qwik.mjs +49 -12
- package/lib/components/hero/styles.css.qwik.cjs +1 -1
- package/lib/components/hero/styles.css.qwik.mjs +1 -1
- package/lib/components/input/input.qwik.cjs +1 -1
- package/lib/components/input/input.qwik.mjs +1 -1
- package/lib/components/modal/modal.qwik.cjs +1 -1
- package/lib/components/modal/modal.qwik.mjs +1 -1
- package/lib/components/navigationmenu/NavigationMenu.qwik.cjs +1 -1
- package/lib/components/navigationmenu/NavigationMenu.qwik.mjs +1 -1
- package/lib/components/onboarding/onboardingsteps.qwik.cjs +1 -1
- package/lib/components/onboarding/onboardingsteps.qwik.mjs +1 -1
- package/lib/components/select/select.qwik.cjs +1 -1
- package/lib/components/select/select.qwik.mjs +1 -1
- package/lib/components/text_area/text_area.qwik.cjs +1 -1
- package/lib/components/text_area/text_area.qwik.mjs +1 -1
- package/lib-types/components/button/button.d.ts +1 -1
- package/lib-types/components/card/card.d.ts +1 -1
- package/lib-types/components/hero/hero.d.ts +2 -1
- package/lib-types/components/input/input.d.ts +1 -1
- package/lib-types/components/modal/modal.d.ts +1 -1
- package/lib-types/components/navigationmenu/NavigationMenu.d.ts +1 -1
- package/lib-types/components/onboarding/onboardingsteps.d.ts +1 -1
- package/lib-types/components/select/select.d.ts +1 -1
- package/lib-types/components/text_area/text_area.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
4
|
const qwik = require("@builder.io/qwik");
|
|
5
5
|
const styles = require("./styles.css.qwik.cjs");
|
|
6
|
-
require("@fontsource/roboto-condensed/500.css");
|
|
6
|
+
require("@fontsource/roboto-condensed/latin-500.css");
|
|
7
7
|
const loader = require("../loader/loader.qwik.cjs");
|
|
8
8
|
const Button = qwik.component$(({ id, label, variant = "primary", icon, disabled = false, ariaLabel, type = "button", size = "md", onClick$, isLoading, active = false }) => {
|
|
9
9
|
qwik.useStylesScoped$(styles);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
2
|
import { component$, useStylesScoped$ } from "@builder.io/qwik";
|
|
3
3
|
import styles from "./styles.css.qwik.mjs";
|
|
4
|
-
import "@fontsource/roboto-condensed/500.css";
|
|
4
|
+
import "@fontsource/roboto-condensed/latin-500.css";
|
|
5
5
|
import { Loader } from "../loader/loader.qwik.mjs";
|
|
6
6
|
const Button = component$(({ id, label, variant = "primary", icon, disabled = false, ariaLabel, type = "button", size = "md", onClick$, isLoading, active = false }) => {
|
|
7
7
|
useStylesScoped$(styles);
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
4
|
const qwik = require("@builder.io/qwik");
|
|
5
5
|
const styles = require("./styles.css.qwik.cjs");
|
|
6
|
-
require("@fontsource/roboto-condensed/500.css");
|
|
6
|
+
require("@fontsource/roboto-condensed/latin-500.css");
|
|
7
7
|
const qwikCity = require("@builder.io/qwik-city");
|
|
8
8
|
const Card = qwik.component$(({ item, icon, subtitle, link, path, disabled }) => {
|
|
9
9
|
qwik.useStyles$(styles);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
2
|
import { component$, useStyles$ } from "@builder.io/qwik";
|
|
3
3
|
import styles from "./styles.css.qwik.mjs";
|
|
4
|
-
import "@fontsource/roboto-condensed/500.css";
|
|
4
|
+
import "@fontsource/roboto-condensed/latin-500.css";
|
|
5
5
|
import { Link } from "@builder.io/qwik-city";
|
|
6
6
|
const Card = component$(({ item, icon, subtitle, link, path, disabled }) => {
|
|
7
7
|
useStyles$(styles);
|
|
@@ -3,20 +3,57 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
4
|
const qwik = require("@builder.io/qwik");
|
|
5
5
|
const styles = require("./styles.css.qwik.cjs");
|
|
6
|
-
require("@fontsource/roboto-condensed/500.css");
|
|
6
|
+
require("@fontsource/roboto-condensed/latin-500.css");
|
|
7
|
+
require("@fontsource/roboto-condensed/latin-400.css");
|
|
7
8
|
const Hero = qwik.component$(({ title, content }) => {
|
|
8
9
|
qwik.useStylesScoped$(styles);
|
|
9
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
10
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
10
11
|
class: "hero",
|
|
11
|
-
children:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
12
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
13
|
+
class: "hero-grid",
|
|
14
|
+
children: [
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
16
|
+
class: "span-1-md"
|
|
17
|
+
}),
|
|
18
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
19
|
+
class: "span-10-md",
|
|
20
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
21
|
+
class: "ion-hero-2up",
|
|
22
|
+
children: [
|
|
23
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
24
|
+
class: "hero-2up__left-area",
|
|
25
|
+
children: [
|
|
26
|
+
/* @__PURE__ */ jsxRuntime.jsx("h1", {
|
|
27
|
+
class: "headline-1",
|
|
28
|
+
children: /* @__PURE__ */ jsxRuntime.jsxs("span", {
|
|
29
|
+
class: "title",
|
|
30
|
+
children: [
|
|
31
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", {
|
|
32
|
+
children: "Dummy text"
|
|
33
|
+
}),
|
|
34
|
+
" ",
|
|
35
|
+
title
|
|
36
|
+
]
|
|
37
|
+
})
|
|
38
|
+
}),
|
|
39
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
40
|
+
class: "content",
|
|
41
|
+
children: content
|
|
42
|
+
}),
|
|
43
|
+
/* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
|
|
44
|
+
]
|
|
45
|
+
}),
|
|
46
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
47
|
+
class: "hero-2up__right-area",
|
|
48
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {
|
|
49
|
+
name: "media"
|
|
50
|
+
})
|
|
51
|
+
})
|
|
52
|
+
]
|
|
53
|
+
})
|
|
54
|
+
})
|
|
55
|
+
]
|
|
56
|
+
})
|
|
20
57
|
});
|
|
21
58
|
});
|
|
22
59
|
exports.Hero = Hero;
|
|
@@ -1,20 +1,57 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
|
|
2
2
|
import { component$, useStylesScoped$, Slot } from "@builder.io/qwik";
|
|
3
3
|
import styles from "./styles.css.qwik.mjs";
|
|
4
|
-
import "@fontsource/roboto-condensed/500.css";
|
|
4
|
+
import "@fontsource/roboto-condensed/latin-500.css";
|
|
5
|
+
import "@fontsource/roboto-condensed/latin-400.css";
|
|
5
6
|
const Hero = component$(({ title, content }) => {
|
|
6
7
|
useStylesScoped$(styles);
|
|
7
|
-
return /* @__PURE__ */
|
|
8
|
+
return /* @__PURE__ */ jsx("div", {
|
|
8
9
|
class: "hero",
|
|
9
|
-
children:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
10
|
+
children: /* @__PURE__ */ jsxs("div", {
|
|
11
|
+
class: "hero-grid",
|
|
12
|
+
children: [
|
|
13
|
+
/* @__PURE__ */ jsx("div", {
|
|
14
|
+
class: "span-1-md"
|
|
15
|
+
}),
|
|
16
|
+
/* @__PURE__ */ jsx("div", {
|
|
17
|
+
class: "span-10-md",
|
|
18
|
+
children: /* @__PURE__ */ jsxs("div", {
|
|
19
|
+
class: "ion-hero-2up",
|
|
20
|
+
children: [
|
|
21
|
+
/* @__PURE__ */ jsxs("div", {
|
|
22
|
+
class: "hero-2up__left-area",
|
|
23
|
+
children: [
|
|
24
|
+
/* @__PURE__ */ jsx("h1", {
|
|
25
|
+
class: "headline-1",
|
|
26
|
+
children: /* @__PURE__ */ jsxs("span", {
|
|
27
|
+
class: "title",
|
|
28
|
+
children: [
|
|
29
|
+
/* @__PURE__ */ jsx("span", {
|
|
30
|
+
children: "Dummy text"
|
|
31
|
+
}),
|
|
32
|
+
" ",
|
|
33
|
+
title
|
|
34
|
+
]
|
|
35
|
+
})
|
|
36
|
+
}),
|
|
37
|
+
/* @__PURE__ */ jsx("div", {
|
|
38
|
+
class: "content",
|
|
39
|
+
children: content
|
|
40
|
+
}),
|
|
41
|
+
/* @__PURE__ */ jsx(Slot, {})
|
|
42
|
+
]
|
|
43
|
+
}),
|
|
44
|
+
/* @__PURE__ */ jsx("div", {
|
|
45
|
+
class: "hero-2up__right-area",
|
|
46
|
+
children: /* @__PURE__ */ jsx(Slot, {
|
|
47
|
+
name: "media"
|
|
48
|
+
})
|
|
49
|
+
})
|
|
50
|
+
]
|
|
51
|
+
})
|
|
52
|
+
})
|
|
53
|
+
]
|
|
54
|
+
})
|
|
18
55
|
});
|
|
19
56
|
});
|
|
20
57
|
export {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
const styles = ".hero {\r\n font-family: 'Roboto Condensed', sans-serif;\r\n background-color: #f5f5f7;\r\n text-align: center;\r\n padding: 3.5rem 1.25rem;\r\n}\r\n\r\n.hero h1 {\r\n font-size: calc(1rem * 3);\r\n margin-bottom: 1.25rem;\r\n color: #333;\r\n}\r\n\r\n.hero p {\r\n font-size: calc(1rem * 1);\r\n font-weight: 400;\r\n margin-bottom: 1.25rem;\r\n color: #333;\r\n}\r\n\r\n@media (min-width: 481px) {\r\n .hero {\r\n padding: 6.25rem 1.25rem;\r\n }\r\n\r\n .hero h1 {\r\n font-size: calc(1rem * 3.5);\r\n }\r\n\r\n .hero p {\r\n font-size: calc(1rem * 1.125);\r\n margin-bottom: 1.875rem;\r\n }\r\n}\r\n";
|
|
2
|
+
const styles = "/* .hero {\r\n font-family: 'Roboto Condensed', sans-serif;\r\n background-color: #f5f5f7;\r\n text-align: center;\r\n padding: 3.5rem 1.25rem;\r\n}\r\n\r\n.hero h1 {\r\n font-size: calc(1rem * 3);\r\n margin-bottom: 1.25rem;\r\n color: #333;\r\n}\r\n\r\n.hero p {\r\n font-size: calc(1rem * 1);\r\n font-weight: 400;\r\n margin-bottom: 1.25rem;\r\n color: #333;\r\n}\r\n\r\n@media (min-width: 481px) {\r\n .hero {\r\n padding: 6.25rem 1.25rem;\r\n }\r\n\r\n .hero h1 {\r\n font-size: calc(1rem * 3.5);\r\n }\r\n\r\n .hero p {\r\n font-size: calc(1rem * 1.125);\r\n margin-bottom: 1.875rem;\r\n }\r\n} */\r\n\r\nh1 {\r\n margin: 0;\r\n}\r\n\r\n.hero {\r\n /* font-family: 'Roboto Condensed', sans-serif; */\r\n /* background-color: #f5f5f7;\r\n text-align: center;\r\n padding: 3.5rem 1.25rem; */\r\n margin: 0 1.75rem;\r\n -webkit-font-smoothing: antialiased;\r\n text-rendering: optimizeLegibility;\r\n}\r\n.hero-grid {\r\n display: grid;\r\n grid-column-gap: 1.75rem;\r\n grid-template-columns: repeat(4, minmax(0.313rem, 1fr));\r\n}\r\n\r\n.hero-grid .hero-grid__col--span-4-sm {\r\n display: block;\r\n grid-column-end: span 4;\r\n}\r\n\r\n.ion-hero-2up {\r\n align-items: center;\r\n display: flex;\r\n flex-direction: column;\r\n gap: 1.875rem;\r\n justify-content: space-between;\r\n position: relative;\r\n text-align: center;\r\n}\r\n\r\n.hero-2up__left-area {\r\n flex: 1.5;\r\n max-width: 100%;\r\n}\r\n\r\n.hero-2up__right-area {\r\n flex: 1;\r\n max-width: 28.375rem;\r\n width: 100%;\r\n}\r\n\r\n.headline-1,\r\n.content {\r\n font-family: 'Roboto Condensed', sans-serif;\r\n}\r\n\r\n.headline-1 {\r\n font-size: 2.25rem;\r\n line-height: 1.2222222222;\r\n font-weight: 400;\r\n letter-spacing: -0.25px;\r\n margin-bottom: 1rem;\r\n overflow-wrap: anywhere;\r\n color: #333;\r\n}\r\n\r\n.title {\r\n font-weight: 700;\r\n}\r\n\r\n.content {\r\n font-size: 1.125rem;\r\n line-height: 1.5555555556;\r\n font-weight: 400;\r\n letter-spacing: normal;\r\n}\r\n\r\n/* .hero h1 {\r\n font-size: calc(1rem * 3);\r\n\r\n color: #333;\r\n} */\r\n\r\n/* @media (min-width: 481px) {\r\n .hero {\r\n padding: 6.25rem 1.25rem;\r\n }\r\n\r\n .hero h1 {\r\n font-size: calc(1rem * 3.5);\r\n }\r\n\r\n .hero p {\r\n font-size: calc(1rem * 1.125);\r\n margin-bottom: 1.875rem;\r\n }\r\n} */\r\n\r\n@media (min-width: 600px) {\r\n .hero-2up__right-area {\r\n min-width: 19.375rem;\r\n }\r\n\r\n .headline-1 {\r\n font-size: 3rem;\r\n line-height: 1.1666666667;\r\n font-weight: 400;\r\n letter-spacing: -0.5px;\r\n }\r\n\r\n .hero {\r\n margin: 0 2.5rem;\r\n }\r\n\r\n .hero-grid {\r\n grid-column-gap: 40px;\r\n grid-template-columns: repeat(12, minmax(0.313rem, 1fr));\r\n }\r\n\r\n .span-1-md {\r\n display: block;\r\n grid-column-end: span 1;\r\n }\r\n\r\n .span-10-md {\r\n display: block;\r\n grid-column-end: span 10;\r\n }\r\n\r\n .content {\r\n font-size: 1.125rem;\r\n line-height: 1.5555555556;\r\n font-weight: 400;\r\n letter-spacing: normal;\r\n }\r\n}\r\n\r\n@media (min-width: 1024px) {\r\n .headline-1 {\r\n font-size: 3.75rem;\r\n line-height: 1.2;\r\n font-weight: 400;\r\n letter-spacing: -0.5px;\r\n }\r\n\r\n .hero {\r\n margin: 0 4.5rem;\r\n }\r\n\r\n .hero-grid {\r\n grid-column-gap: 3rem;\r\n }\r\n\r\n .ion-hero-2up {\r\n flex-direction: row;\r\n text-align: start;\r\n }\r\n\r\n .content {\r\n font-size: 1.125rem;\r\n line-height: 1.5555555556;\r\n font-weight: 400;\r\n letter-spacing: normal;\r\n }\r\n}\r\n\r\n@media (min-width: 1440px) {\r\n .hero-2up__left-area {\r\n max-width: 35.438rem;\r\n }\r\n\r\n .ion-hero-2up {\r\n gap: 3.125rem;\r\n }\r\n\r\n .headline-1 {\r\n font-size: 3.75rem;\r\n line-height: 1.2;\r\n font-weight: 400;\r\n letter-spacing: -0.5px;\r\n }\r\n\r\n .content {\r\n font-size: 1.125rem;\r\n line-height: 1.5555555556;\r\n font-weight: 400;\r\n letter-spacing: normal;\r\n }\r\n}\r\n";
|
|
3
3
|
module.exports = styles;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const styles = ".hero {\r\n font-family: 'Roboto Condensed', sans-serif;\r\n background-color: #f5f5f7;\r\n text-align: center;\r\n padding: 3.5rem 1.25rem;\r\n}\r\n\r\n.hero h1 {\r\n font-size: calc(1rem * 3);\r\n margin-bottom: 1.25rem;\r\n color: #333;\r\n}\r\n\r\n.hero p {\r\n font-size: calc(1rem * 1);\r\n font-weight: 400;\r\n margin-bottom: 1.25rem;\r\n color: #333;\r\n}\r\n\r\n@media (min-width: 481px) {\r\n .hero {\r\n padding: 6.25rem 1.25rem;\r\n }\r\n\r\n .hero h1 {\r\n font-size: calc(1rem * 3.5);\r\n }\r\n\r\n .hero p {\r\n font-size: calc(1rem * 1.125);\r\n margin-bottom: 1.875rem;\r\n }\r\n}\r\n";
|
|
1
|
+
const styles = "/* .hero {\r\n font-family: 'Roboto Condensed', sans-serif;\r\n background-color: #f5f5f7;\r\n text-align: center;\r\n padding: 3.5rem 1.25rem;\r\n}\r\n\r\n.hero h1 {\r\n font-size: calc(1rem * 3);\r\n margin-bottom: 1.25rem;\r\n color: #333;\r\n}\r\n\r\n.hero p {\r\n font-size: calc(1rem * 1);\r\n font-weight: 400;\r\n margin-bottom: 1.25rem;\r\n color: #333;\r\n}\r\n\r\n@media (min-width: 481px) {\r\n .hero {\r\n padding: 6.25rem 1.25rem;\r\n }\r\n\r\n .hero h1 {\r\n font-size: calc(1rem * 3.5);\r\n }\r\n\r\n .hero p {\r\n font-size: calc(1rem * 1.125);\r\n margin-bottom: 1.875rem;\r\n }\r\n} */\r\n\r\nh1 {\r\n margin: 0;\r\n}\r\n\r\n.hero {\r\n /* font-family: 'Roboto Condensed', sans-serif; */\r\n /* background-color: #f5f5f7;\r\n text-align: center;\r\n padding: 3.5rem 1.25rem; */\r\n margin: 0 1.75rem;\r\n -webkit-font-smoothing: antialiased;\r\n text-rendering: optimizeLegibility;\r\n}\r\n.hero-grid {\r\n display: grid;\r\n grid-column-gap: 1.75rem;\r\n grid-template-columns: repeat(4, minmax(0.313rem, 1fr));\r\n}\r\n\r\n.hero-grid .hero-grid__col--span-4-sm {\r\n display: block;\r\n grid-column-end: span 4;\r\n}\r\n\r\n.ion-hero-2up {\r\n align-items: center;\r\n display: flex;\r\n flex-direction: column;\r\n gap: 1.875rem;\r\n justify-content: space-between;\r\n position: relative;\r\n text-align: center;\r\n}\r\n\r\n.hero-2up__left-area {\r\n flex: 1.5;\r\n max-width: 100%;\r\n}\r\n\r\n.hero-2up__right-area {\r\n flex: 1;\r\n max-width: 28.375rem;\r\n width: 100%;\r\n}\r\n\r\n.headline-1,\r\n.content {\r\n font-family: 'Roboto Condensed', sans-serif;\r\n}\r\n\r\n.headline-1 {\r\n font-size: 2.25rem;\r\n line-height: 1.2222222222;\r\n font-weight: 400;\r\n letter-spacing: -0.25px;\r\n margin-bottom: 1rem;\r\n overflow-wrap: anywhere;\r\n color: #333;\r\n}\r\n\r\n.title {\r\n font-weight: 700;\r\n}\r\n\r\n.content {\r\n font-size: 1.125rem;\r\n line-height: 1.5555555556;\r\n font-weight: 400;\r\n letter-spacing: normal;\r\n}\r\n\r\n/* .hero h1 {\r\n font-size: calc(1rem * 3);\r\n\r\n color: #333;\r\n} */\r\n\r\n/* @media (min-width: 481px) {\r\n .hero {\r\n padding: 6.25rem 1.25rem;\r\n }\r\n\r\n .hero h1 {\r\n font-size: calc(1rem * 3.5);\r\n }\r\n\r\n .hero p {\r\n font-size: calc(1rem * 1.125);\r\n margin-bottom: 1.875rem;\r\n }\r\n} */\r\n\r\n@media (min-width: 600px) {\r\n .hero-2up__right-area {\r\n min-width: 19.375rem;\r\n }\r\n\r\n .headline-1 {\r\n font-size: 3rem;\r\n line-height: 1.1666666667;\r\n font-weight: 400;\r\n letter-spacing: -0.5px;\r\n }\r\n\r\n .hero {\r\n margin: 0 2.5rem;\r\n }\r\n\r\n .hero-grid {\r\n grid-column-gap: 40px;\r\n grid-template-columns: repeat(12, minmax(0.313rem, 1fr));\r\n }\r\n\r\n .span-1-md {\r\n display: block;\r\n grid-column-end: span 1;\r\n }\r\n\r\n .span-10-md {\r\n display: block;\r\n grid-column-end: span 10;\r\n }\r\n\r\n .content {\r\n font-size: 1.125rem;\r\n line-height: 1.5555555556;\r\n font-weight: 400;\r\n letter-spacing: normal;\r\n }\r\n}\r\n\r\n@media (min-width: 1024px) {\r\n .headline-1 {\r\n font-size: 3.75rem;\r\n line-height: 1.2;\r\n font-weight: 400;\r\n letter-spacing: -0.5px;\r\n }\r\n\r\n .hero {\r\n margin: 0 4.5rem;\r\n }\r\n\r\n .hero-grid {\r\n grid-column-gap: 3rem;\r\n }\r\n\r\n .ion-hero-2up {\r\n flex-direction: row;\r\n text-align: start;\r\n }\r\n\r\n .content {\r\n font-size: 1.125rem;\r\n line-height: 1.5555555556;\r\n font-weight: 400;\r\n letter-spacing: normal;\r\n }\r\n}\r\n\r\n@media (min-width: 1440px) {\r\n .hero-2up__left-area {\r\n max-width: 35.438rem;\r\n }\r\n\r\n .ion-hero-2up {\r\n gap: 3.125rem;\r\n }\r\n\r\n .headline-1 {\r\n font-size: 3.75rem;\r\n line-height: 1.2;\r\n font-weight: 400;\r\n letter-spacing: -0.5px;\r\n }\r\n\r\n .content {\r\n font-size: 1.125rem;\r\n line-height: 1.5555555556;\r\n font-weight: 400;\r\n letter-spacing: normal;\r\n }\r\n}\r\n";
|
|
2
2
|
export {
|
|
3
3
|
styles as default
|
|
4
4
|
};
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
4
|
const qwik = require("@builder.io/qwik");
|
|
5
5
|
const styles = require("./styles.css.qwik.cjs");
|
|
6
|
-
require("@fontsource/roboto-condensed/500.css");
|
|
6
|
+
require("@fontsource/roboto-condensed/latin-500.css");
|
|
7
7
|
const displayLocalImage = qwik.$((file, imageUrl) => {
|
|
8
8
|
const allowedExtensions = [
|
|
9
9
|
".jpg",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from "@builder.io/qwik/jsx-runtime";
|
|
2
2
|
import { $, noSerialize, component$, useStylesScoped$, useSignal } from "@builder.io/qwik";
|
|
3
3
|
import styles from "./styles.css.qwik.mjs";
|
|
4
|
-
import "@fontsource/roboto-condensed/500.css";
|
|
4
|
+
import "@fontsource/roboto-condensed/latin-500.css";
|
|
5
5
|
const displayLocalImage = $((file, imageUrl) => {
|
|
6
6
|
const allowedExtensions = [
|
|
7
7
|
".jpg",
|
|
@@ -5,7 +5,7 @@ const qwik = require("@builder.io/qwik");
|
|
|
5
5
|
const styles = require("./styles.css.qwik.cjs");
|
|
6
6
|
const button = require("../button/button.qwik.cjs");
|
|
7
7
|
const closeIcon = require("../icons/closeIcon.qwik.cjs");
|
|
8
|
-
require("@fontsource/roboto-condensed");
|
|
8
|
+
require("@fontsource/roboto-condensed/latin-400.css");
|
|
9
9
|
const Modal = qwik.component$(({ title, open, primaryButtonLabel, secondaryButtonLabel, primaryAction, secondaryAction, closeButtonVisible = true, isLoading, primaryButtonDisabled, type = "default", light = false }) => {
|
|
10
10
|
qwik.useStylesScoped$(styles);
|
|
11
11
|
const isDisabled = typeof primaryButtonDisabled === "object" ? primaryButtonDisabled.value : primaryButtonDisabled ?? false;
|
|
@@ -3,7 +3,7 @@ import { component$, useStylesScoped$, Slot } from "@builder.io/qwik";
|
|
|
3
3
|
import styles from "./styles.css.qwik.mjs";
|
|
4
4
|
import { Button } from "../button/button.qwik.mjs";
|
|
5
5
|
import { CloseIcon } from "../icons/closeIcon.qwik.mjs";
|
|
6
|
-
import "@fontsource/roboto-condensed";
|
|
6
|
+
import "@fontsource/roboto-condensed/latin-400.css";
|
|
7
7
|
const Modal = component$(({ title, open, primaryButtonLabel, secondaryButtonLabel, primaryAction, secondaryAction, closeButtonVisible = true, isLoading, primaryButtonDisabled, type = "default", light = false }) => {
|
|
8
8
|
useStylesScoped$(styles);
|
|
9
9
|
const isDisabled = typeof primaryButtonDisabled === "object" ? primaryButtonDisabled.value : primaryButtonDisabled ?? false;
|
|
@@ -5,7 +5,7 @@ const qwik = require("@builder.io/qwik");
|
|
|
5
5
|
const qwikCity = require("@builder.io/qwik-city");
|
|
6
6
|
const styles = require("./styles.css.qwik.cjs");
|
|
7
7
|
const button = require("../button/button.qwik.cjs");
|
|
8
|
-
require("@fontsource/roboto-condensed/500.css");
|
|
8
|
+
require("@fontsource/roboto-condensed/latin-500.css");
|
|
9
9
|
const NavigationMenu = qwik.component$(({ ariaLabel, logoComponent, listItems, actions, locale }) => {
|
|
10
10
|
const location = qwikCity.useLocation();
|
|
11
11
|
const isOpen = qwik.useSignal(false);
|
|
@@ -3,7 +3,7 @@ import { component$, useSignal, useStyles$ } from "@builder.io/qwik";
|
|
|
3
3
|
import { useLocation, Link } from "@builder.io/qwik-city";
|
|
4
4
|
import styles from "./styles.css.qwik.mjs";
|
|
5
5
|
import { Button } from "../button/button.qwik.mjs";
|
|
6
|
-
import "@fontsource/roboto-condensed/500.css";
|
|
6
|
+
import "@fontsource/roboto-condensed/latin-500.css";
|
|
7
7
|
const NavigationMenu = component$(({ ariaLabel, logoComponent, listItems, actions, locale }) => {
|
|
8
8
|
const location = useLocation();
|
|
9
9
|
const isOpen = useSignal(false);
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
4
|
const qwik = require("@builder.io/qwik");
|
|
5
|
-
require("@fontsource/roboto-condensed/500.css");
|
|
5
|
+
require("@fontsource/roboto-condensed/latin-500.css");
|
|
6
6
|
const styles = require("./styles.css.qwik.cjs");
|
|
7
7
|
const OnboardingSteps = qwik.component$(({ steps }) => {
|
|
8
8
|
qwik.useStylesScoped$(styles);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
|
|
2
2
|
import { component$, useStylesScoped$ } from "@builder.io/qwik";
|
|
3
|
-
import "@fontsource/roboto-condensed/500.css";
|
|
3
|
+
import "@fontsource/roboto-condensed/latin-500.css";
|
|
4
4
|
import styles from "./styles.css.qwik.mjs";
|
|
5
5
|
const OnboardingSteps = component$(({ steps }) => {
|
|
6
6
|
useStylesScoped$(styles);
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
4
|
const qwik = require("@builder.io/qwik");
|
|
5
|
-
require("@fontsource/roboto-condensed/500.css");
|
|
5
|
+
require("@fontsource/roboto-condensed/latin-500.css");
|
|
6
6
|
const styles = require("./styles.css.qwik.cjs");
|
|
7
7
|
const Select = qwik.component$(({ id, label, options, selected, prefix }) => {
|
|
8
8
|
qwik.useStylesScoped$(styles);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "@builder.io/qwik/jsx-runtime";
|
|
2
2
|
import { component$, useStylesScoped$, $ } from "@builder.io/qwik";
|
|
3
|
-
import "@fontsource/roboto-condensed/500.css";
|
|
3
|
+
import "@fontsource/roboto-condensed/latin-500.css";
|
|
4
4
|
import styles from "./styles.css.qwik.mjs";
|
|
5
5
|
const Select = component$(({ id, label, options, selected, prefix }) => {
|
|
6
6
|
useStylesScoped$(styles);
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const jsxRuntime = require("@builder.io/qwik/jsx-runtime");
|
|
4
4
|
const qwik = require("@builder.io/qwik");
|
|
5
5
|
const styles = require("./styles.css.qwik.cjs");
|
|
6
|
-
require("@fontsource/roboto-condensed/500.css");
|
|
6
|
+
require("@fontsource/roboto-condensed/latin-500.css");
|
|
7
7
|
const TextArea = qwik.component$(({ id, title, content, required = false, placeholder, bgLight, maxLength, showCounter = false }) => {
|
|
8
8
|
qwik.useStylesScoped$(styles);
|
|
9
9
|
const currentLength = content?.value?.length ?? 0;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx } from "@builder.io/qwik/jsx-runtime";
|
|
2
2
|
import { component$, useStylesScoped$ } from "@builder.io/qwik";
|
|
3
3
|
import styles from "./styles.css.qwik.mjs";
|
|
4
|
-
import "@fontsource/roboto-condensed/500.css";
|
|
4
|
+
import "@fontsource/roboto-condensed/latin-500.css";
|
|
5
5
|
const TextArea = component$(({ id, title, content, required = false, placeholder, bgLight, maxLength, showCounter = false }) => {
|
|
6
6
|
useStylesScoped$(styles);
|
|
7
7
|
const currentLength = content?.value?.length ?? 0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Component, JSXOutput, QRL, Signal } from '@builder.io/qwik';
|
|
2
|
-
import '@fontsource/roboto-condensed/500.css';
|
|
2
|
+
import '@fontsource/roboto-condensed/latin-500.css';
|
|
3
3
|
export type ButtonVariant = 'primary' | 'secondary' | 'danger' | 'icon' | 'tertiary' | 'tab';
|
|
4
4
|
export type ButtonType = 'button' | 'submit' | 'reset';
|
|
5
5
|
export type ButtonSize = 'sm' | 'md' | 'lg';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Component, JSXOutput, QRL, Signal } from '@builder.io/qwik';
|
|
2
|
-
import '@fontsource/roboto-condensed/500.css';
|
|
2
|
+
import '@fontsource/roboto-condensed/latin-500.css';
|
|
3
3
|
export type InputType = 'text' | 'email' | 'password' | 'number' | 'tel' | 'url' | 'search' | 'hidden' | 'checkbox' | 'radio' | 'file';
|
|
4
4
|
export interface InputProps {
|
|
5
5
|
id: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Component, type QRL, JSXOutput } from '@builder.io/qwik';
|
|
2
2
|
import { ButtonVariant } from '../button/button';
|
|
3
|
-
import '@fontsource/roboto-condensed/500.css';
|
|
3
|
+
import '@fontsource/roboto-condensed/latin-500.css';
|
|
4
4
|
export interface NavItem {
|
|
5
5
|
label: string;
|
|
6
6
|
href: string;
|