blixify-ui-web 0.1.26 → 0.1.27

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 (45) hide show
  1. package/lib/components/design/banner/index.d.ts +10 -0
  2. package/lib/components/design/banner/index.d.ts.map +1 -0
  3. package/lib/components/design/banner/index.js +58 -0
  4. package/lib/components/design/banner/index.js.map +1 -0
  5. package/lib/components/design/blogSection/index.d.ts +33 -0
  6. package/lib/components/design/blogSection/index.d.ts.map +1 -0
  7. package/lib/components/design/blogSection/index.js +88 -0
  8. package/lib/components/design/blogSection/index.js.map +1 -0
  9. package/lib/components/design/faq/index.d.ts +15 -0
  10. package/lib/components/design/faq/index.d.ts.map +1 -0
  11. package/lib/components/design/faq/index.js +72 -0
  12. package/lib/components/design/faq/index.js.map +1 -0
  13. package/lib/components/design/footerSection/index.d.ts +24 -0
  14. package/lib/components/design/footerSection/index.d.ts.map +1 -0
  15. package/lib/components/design/footerSection/index.js +85 -0
  16. package/lib/components/design/footerSection/index.js.map +1 -0
  17. package/lib/components/design/heroSection/index.d.ts +15 -0
  18. package/lib/components/design/heroSection/index.d.ts.map +1 -0
  19. package/lib/components/design/heroSection/index.js +90 -0
  20. package/lib/components/design/heroSection/index.js.map +1 -0
  21. package/lib/components/design/iconList/index.d.ts +17 -0
  22. package/lib/components/design/iconList/index.d.ts.map +1 -0
  23. package/lib/components/design/iconList/index.js +74 -0
  24. package/lib/components/design/iconList/index.js.map +1 -0
  25. package/lib/components/design/leftContent/index.d.ts +16 -0
  26. package/lib/components/design/leftContent/index.d.ts.map +1 -0
  27. package/lib/components/design/leftContent/index.js +92 -0
  28. package/lib/components/design/leftContent/index.js.map +1 -0
  29. package/lib/components/design/logoCloud/index.d.ts +17 -0
  30. package/lib/components/design/logoCloud/index.d.ts.map +1 -0
  31. package/lib/components/design/logoCloud/index.js +68 -0
  32. package/lib/components/design/logoCloud/index.js.map +1 -0
  33. package/lib/components/design/rightContent/index.d.ts +16 -0
  34. package/lib/components/design/rightContent/index.d.ts.map +1 -0
  35. package/lib/components/design/rightContent/index.js +92 -0
  36. package/lib/components/design/rightContent/index.js.map +1 -0
  37. package/lib/components/design/sectionList/index.d.ts +15 -0
  38. package/lib/components/design/sectionList/index.d.ts.map +1 -0
  39. package/lib/components/design/sectionList/index.js +67 -0
  40. package/lib/components/design/sectionList/index.js.map +1 -0
  41. package/lib/components/index.d.ts +10 -0
  42. package/lib/components/index.d.ts.map +1 -1
  43. package/lib/components/index.js +22 -1
  44. package/lib/components/index.js.map +1 -1
  45. package/package.json +1 -1
@@ -0,0 +1,10 @@
1
+ import { Component, ReactElement } from "react";
2
+ import "../../../index.css";
3
+ interface Props {
4
+ content: string | ReactElement;
5
+ }
6
+ export declare class Banner extends Component<Props> {
7
+ render(): JSX.Element;
8
+ }
9
+ export {};
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/banner/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AACvD,OAAO,oBAAoB,CAAC;AAE5B,UAAU,KAAK;IACb,OAAO,EAAE,MAAM,GAAG,YAAY,CAAC;CAChC;AAED,qBAAa,MAAO,SAAQ,SAAS,CAAC,KAAK,CAAC;IAC1C,MAAM;CAaP"}
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.Banner = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var Banner = /** @class */ (function (_super) {
45
+ __extends(Banner, _super);
46
+ function Banner() {
47
+ return _super !== null && _super.apply(this, arguments) || this;
48
+ }
49
+ Banner.prototype.render = function () {
50
+ return (react_1.default.createElement("div", { className: "relative bg-primary-600 w-full z-50" },
51
+ react_1.default.createElement("div", { className: "max-w-7xl mx-auto py-3 px-3 sm:px-6 lg:px-8" },
52
+ react_1.default.createElement("div", { className: "pr-16 sm:text-center sm:px-16" },
53
+ react_1.default.createElement("p", { className: "text-xs sm:text-sm text-white" }, this.props.content)))));
54
+ };
55
+ return Banner;
56
+ }(react_1.Component));
57
+ exports.Banner = Banner;
58
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/banner/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAAuD;AACvD,8BAA4B;AAM5B;IAA4B,0BAAgB;IAA5C;;IAcA,CAAC;IAbC,uBAAM,GAAN;QACE,OAAO,CACL,uCAAK,SAAS,EAAC,qCAAqC;YAClD,uCAAK,SAAS,EAAC,6CAA6C;gBAC1D,uCAAK,SAAS,EAAC,+BAA+B;oBAC5C,qCAAG,SAAS,EAAC,+BAA+B,IACzC,IAAI,CAAC,KAAK,CAAC,OAAO,CACjB,CACA,CACF,CACF,CACP,CAAC;IACJ,CAAC;IACH,aAAC;AAAD,CAAC,AAdD,CAA4B,iBAAS,GAcpC;AAdY,wBAAM"}
@@ -0,0 +1,33 @@
1
+ import { Component } from "react";
2
+ import "../../../index.css";
3
+ import { LinkProps } from "../../structure/link";
4
+ interface CategoryData {
5
+ name: string;
6
+ href: string;
7
+ }
8
+ interface AuthorData {
9
+ name: string;
10
+ href: string;
11
+ imageUrl: string;
12
+ }
13
+ interface PostData {
14
+ title: string;
15
+ href?: string;
16
+ category?: CategoryData;
17
+ description: string;
18
+ date?: string;
19
+ dateTime?: string;
20
+ imageUrl: string;
21
+ readingTime?: string;
22
+ author?: AuthorData;
23
+ }
24
+ interface Props extends LinkProps {
25
+ postList: PostData[];
26
+ title: string;
27
+ description: string;
28
+ }
29
+ export declare class BlogSection extends Component<Props> {
30
+ render(): JSX.Element;
31
+ }
32
+ export {};
33
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/blogSection/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,EAAQ,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEvD,UAAU,YAAY;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AAED,UAAU,UAAU;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,UAAU,QAAQ;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,YAAY,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,CAAC,EAAE,UAAU,CAAC;CACrB;AAED,UAAU,KAAM,SAAQ,SAAS;IAC/B,QAAQ,EAAE,QAAQ,EAAE,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,qBAAa,WAAY,SAAQ,SAAS,CAAC,KAAK,CAAC;IAC/C,MAAM;CAyFP"}
@@ -0,0 +1,88 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.BlogSection = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var link_1 = require("../../structure/link");
45
+ var BlogSection = /** @class */ (function (_super) {
46
+ __extends(BlogSection, _super);
47
+ function BlogSection() {
48
+ return _super !== null && _super.apply(this, arguments) || this;
49
+ }
50
+ BlogSection.prototype.render = function () {
51
+ var _this = this;
52
+ var _a;
53
+ return (react_1.default.createElement("div", { className: "relative bg-gray-50" },
54
+ react_1.default.createElement("div", { className: "absolute inset-0" },
55
+ react_1.default.createElement("div", { className: "h-1/3 bg-white sm:h-2/3" })),
56
+ react_1.default.createElement("div", { className: "relative mx-auto max-w-7xl" },
57
+ react_1.default.createElement("div", { className: "mx-auto grid max-w-lg gap-5 md:max-w-none md:grid-cols-2 lg:grid-cols-3" }, (_a = this.props.postList) === null || _a === void 0 ? void 0 : _a.map(function (post) {
58
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
59
+ return (react_1.default.createElement("div", { key: post.title, className: "flex flex-col overflow-hidden rounded-lg shadow-lg" },
60
+ react_1.default.createElement("div", { className: "flex-shrink-0" },
61
+ react_1.default.createElement("img", { className: "h-48 w-full object-cover", src: post.imageUrl, alt: "" })),
62
+ react_1.default.createElement("div", { className: "flex flex-1 flex-col justify-between bg-white p-6" },
63
+ react_1.default.createElement("div", { className: "flex-1" },
64
+ react_1.default.createElement("p", { className: "text-sm font-medium text-indigo-600" },
65
+ react_1.default.createElement(link_1.Link, { href: (_b = (_a = post.category) === null || _a === void 0 ? void 0 : _a.href) !== null && _b !== void 0 ? _b : "", linkType: _this.props.linkType, custom: _this.props.custom, className: "hover:underline" }, (_c = post.category) === null || _c === void 0 ? void 0 : _c.name)),
66
+ react_1.default.createElement(link_1.Link, { href: (_d = post.href) !== null && _d !== void 0 ? _d : "", linkType: _this.props.linkType, custom: _this.props.custom, className: "mt-2 block" },
67
+ react_1.default.createElement("p", { className: "text-xl font-semibold text-gray-900" }, post.title),
68
+ react_1.default.createElement("p", { className: "mt-3 text-base text-gray-500" }, post.description))),
69
+ post.author && (react_1.default.createElement("div", { className: "mt-6 flex items-center" },
70
+ react_1.default.createElement("div", { className: "flex-shrink-0" },
71
+ react_1.default.createElement(link_1.Link, { href: (_e = post.author) === null || _e === void 0 ? void 0 : _e.href, linkType: _this.props.linkType, custom: _this.props.custom },
72
+ react_1.default.createElement("span", { className: "sr-only" }, (_f = post.author) === null || _f === void 0 ? void 0 : _f.name),
73
+ react_1.default.createElement("img", { className: "h-10 w-10 rounded-full", src: (_g = post.author) === null || _g === void 0 ? void 0 : _g.imageUrl, alt: "" }))),
74
+ react_1.default.createElement("div", { className: "ml-3" },
75
+ react_1.default.createElement("p", { className: "text-sm font-medium text-gray-900" },
76
+ react_1.default.createElement(link_1.Link, { href: (_h = post.author) === null || _h === void 0 ? void 0 : _h.href, className: "hover:underline", linkType: _this.props.linkType, custom: _this.props.custom }, (_j = post.author) === null || _j === void 0 ? void 0 : _j.name)),
77
+ react_1.default.createElement("div", { className: "flex space-x-1 text-sm text-gray-500" },
78
+ react_1.default.createElement("time", { dateTime: post.dateTime }, post.date),
79
+ react_1.default.createElement("span", { "aria-hidden": "true" }, "\u00B7"),
80
+ react_1.default.createElement("span", null,
81
+ post.readingTime,
82
+ " read"))))))));
83
+ })))));
84
+ };
85
+ return BlogSection;
86
+ }(react_1.Component));
87
+ exports.BlogSection = BlogSection;
88
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/blogSection/index.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ import { Component } from "react";
2
+ import "../../../index.css";
3
+ interface FaqData {
4
+ question: string;
5
+ answer: string;
6
+ }
7
+ interface Props {
8
+ faqList: FaqData[];
9
+ }
10
+ export declare class FAQContent extends Component<Props> {
11
+ renderFAQs: () => any;
12
+ render(): JSX.Element;
13
+ }
14
+ export {};
15
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/faq/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,oBAAoB,CAAC;AAE5B,UAAU,OAAO;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,UAAU,KAAK;IACb,OAAO,EAAE,OAAO,EAAE,CAAC;CACpB;AAED,qBAAa,UAAW,SAAQ,SAAS,CAAC,KAAK,CAAC;IAC9C,UAAU,YAyBR;IAEF,MAAM;CAOP"}
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.FAQContent = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var FAQContent = /** @class */ (function (_super) {
45
+ __extends(FAQContent, _super);
46
+ function FAQContent() {
47
+ var _this = _super !== null && _super.apply(this, arguments) || this;
48
+ _this.renderFAQs = function () {
49
+ var faqView = [];
50
+ _this.props.faqList.map(function (eachFAQ, index) {
51
+ var containerClassName = "w-full";
52
+ if (index < _this.props.faqList.length - 1) {
53
+ containerClassName += " border-gray-200 border-b-2";
54
+ }
55
+ faqView.push(react_1.default.createElement("dl", { className: containerClassName, key: index },
56
+ react_1.default.createElement("div", { className: "pt-6 pb-8 md:grid md:grid-cols-12 md:gap-8" },
57
+ react_1.default.createElement("dt", { className: "text-base font-medium text-gray-900 md:col-span-5" }, eachFAQ.question),
58
+ react_1.default.createElement("dd", { className: "mt-2 md:mt-0 md:col-span-7" },
59
+ react_1.default.createElement("p", { className: "text-base text-gray-500" }, eachFAQ.answer)))));
60
+ return null;
61
+ });
62
+ return faqView;
63
+ };
64
+ return _this;
65
+ }
66
+ FAQContent.prototype.render = function () {
67
+ return (react_1.default.createElement("div", { className: "max-w-7xl mx-auto align-middle min-w-full overflow-x-auto shadow overflow-hidden bg-white px-4 py-3 flex flex-col items-center justify-between border-t border-gray-200 sm:px-6 sm:rounded-lg" }, this.renderFAQs()));
68
+ };
69
+ return FAQContent;
70
+ }(react_1.Component));
71
+ exports.FAQContent = FAQContent;
72
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/faq/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAAyC;AACzC,8BAA4B;AAW5B;IAAgC,8BAAgB;IAAhD;QAAA,qEAmCC;QAlCC,gBAAU,GAAG;YACX,IAAM,OAAO,GAAQ,EAAE,CAAC;YAExB,KAAI,CAAC,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,UAAC,OAAO,EAAE,KAAK;gBACpC,IAAI,kBAAkB,GAAG,QAAQ,CAAC;gBAClC,IAAI,KAAK,GAAG,KAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE;oBACzC,kBAAkB,IAAI,6BAA6B,CAAC;iBACrD;gBAED,OAAO,CAAC,IAAI,CACV,sCAAI,SAAS,EAAE,kBAAkB,EAAE,GAAG,EAAE,KAAK;oBAC3C,uCAAK,SAAS,EAAC,4CAA4C;wBACzD,sCAAI,SAAS,EAAC,mDAAmD,IAC9D,OAAO,CAAC,QAAQ,CACd;wBACL,sCAAI,SAAS,EAAC,4BAA4B;4BACxC,qCAAG,SAAS,EAAC,yBAAyB,IAAE,OAAO,CAAC,MAAM,CAAK,CACxD,CACD,CACH,CACN,CAAC;gBACF,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;YAEH,OAAO,OAAO,CAAC;QACjB,CAAC,CAAC;;IASJ,CAAC;IAPC,2BAAM,GAAN;QACE,OAAO,CACL,uCAAK,SAAS,EAAC,+LAA+L,IAC3M,IAAI,CAAC,UAAU,EAAE,CACd,CACP,CAAC;IACJ,CAAC;IACH,iBAAC;AAAD,CAAC,AAnCD,CAAgC,iBAAS,GAmCxC;AAnCY,gCAAU"}
@@ -0,0 +1,24 @@
1
+ import { Component, ReactElement } from "react";
2
+ import "../../../index.css";
3
+ import { LinkProps } from "../../structure/link";
4
+ interface FooterSubList {
5
+ name: string;
6
+ link: string;
7
+ }
8
+ interface FooterList {
9
+ title: string;
10
+ subList: FooterSubList[];
11
+ }
12
+ interface Props extends LinkProps {
13
+ caption: string;
14
+ footerList: FooterList[];
15
+ logoCloud?: ReactElement;
16
+ }
17
+ export declare class FooterSection extends Component<Props> {
18
+ renderChildData: (data: any) => any;
19
+ renderFooterData: () => any;
20
+ renderLink: (nav: any, title: any) => JSX.Element;
21
+ render(): JSX.Element;
22
+ }
23
+ export {};
24
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/footerSection/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AACvD,OAAO,oBAAoB,CAAC;AAC5B,OAAO,EAAQ,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEvD,UAAU,aAAa;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AAED,UAAU,UAAU;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,aAAa,EAAE,CAAC;CAC1B;AAED,UAAU,KAAM,SAAQ,SAAS;IAC/B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,UAAU,EAAE,CAAC;IACzB,SAAS,CAAC,EAAE,YAAY,CAAC;CAC1B;AAED,qBAAa,aAAc,SAAQ,SAAS,CAAC,KAAK,CAAC;IACjD,eAAe,qBAOb;IAEF,gBAAgB,YAgBd;IAEF,UAAU,QAAS,GAAG,SAAS,GAAG,iBAahC;IAEF,MAAM;CAuBP"}
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.FooterSection = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var link_1 = require("../../structure/link");
45
+ var FooterSection = /** @class */ (function (_super) {
46
+ __extends(FooterSection, _super);
47
+ function FooterSection() {
48
+ var _this = _super !== null && _super.apply(this, arguments) || this;
49
+ _this.renderChildData = function (data) {
50
+ var childView = [];
51
+ data === null || data === void 0 ? void 0 : data.map(function (child) {
52
+ childView.push(react_1.default.createElement("li", null, _this.renderLink(child.link, child.name)));
53
+ return null;
54
+ });
55
+ return childView;
56
+ };
57
+ _this.renderFooterData = function () {
58
+ var listView = [];
59
+ _this.props.footerList.map(function (data) {
60
+ listView.push(react_1.default.createElement("div", { className: "mt-12 md:mt-0" },
61
+ react_1.default.createElement("h3", { className: "text-sm font-semibold tracking-wider uppercase" }, data.title),
62
+ react_1.default.createElement("ul", { className: "mt-4 space-y-4" }, _this.renderChildData(data.subList))));
63
+ return null;
64
+ });
65
+ return listView;
66
+ };
67
+ _this.renderLink = function (nav, title) {
68
+ return (react_1.default.createElement(link_1.Link, { href: nav, linkType: _this.props.linkType, custom: _this.props.custom, className: "hover:underline" },
69
+ react_1.default.createElement("p", { className: "cursor-pointer text-base underline text-gray-500 hover:text-primary-600" }, title)));
70
+ };
71
+ return _this;
72
+ }
73
+ FooterSection.prototype.render = function () {
74
+ return (react_1.default.createElement("footer", { className: "w-full bg-white border-t" },
75
+ react_1.default.createElement("div", { className: "max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8" },
76
+ react_1.default.createElement("div", { className: "xl:grid xl:grid-cols-3 xl:gap-8" },
77
+ react_1.default.createElement("div", { className: "grid grid-cols-1 md:grid-cols-3 gap-0 md:gap-8 xl:col-span-2" }, this.renderFooterData()),
78
+ this.props.logoCloud && (react_1.default.createElement("div", { className: "mt-12 space-y-4 xl:col-span-1 xl:mt-0" }, this.props.logoCloud))),
79
+ react_1.default.createElement("div", { className: "mt-12 border-t border-gray-200 pt-8" },
80
+ react_1.default.createElement("p", { className: "text-base text-gray-400 xl:text-center" }, this.props.caption)))));
81
+ };
82
+ return FooterSection;
83
+ }(react_1.Component));
84
+ exports.FooterSection = FooterSection;
85
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/footerSection/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAAuD;AACvD,8BAA4B;AAC5B,6CAAuD;AAkBvD;IAAmC,iCAAgB;IAAnD;QAAA,qEAkEC;QAjEC,qBAAe,GAAG,UAAC,IAAI;YACrB,IAAI,SAAS,GAAQ,EAAE,CAAC;YACxB,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,GAAG,CAAC,UAAC,KAAK;gBACd,SAAS,CAAC,IAAI,CAAC,0CAAK,KAAI,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,CAAM,CAAC,CAAC;gBACnE,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;YACH,OAAO,SAAS,CAAC;QACnB,CAAC,CAAC;QAEF,sBAAgB,GAAG;YACjB,IAAI,QAAQ,GAAQ,EAAE,CAAC;YACvB,KAAI,CAAC,KAAK,CAAC,UAAU,CAAC,GAAG,CAAC,UAAC,IAAI;gBAC7B,QAAQ,CAAC,IAAI,CACX,uCAAK,SAAS,EAAC,eAAe;oBAC5B,sCAAI,SAAS,EAAC,gDAAgD,IAC3D,IAAI,CAAC,KAAK,CACR;oBACL,sCAAI,SAAS,EAAC,gBAAgB,IAC3B,KAAI,CAAC,eAAe,CAAC,IAAI,CAAC,OAAO,CAAC,CAChC,CACD,CACP,CAAC;gBACF,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;YACH,OAAO,QAAQ,CAAC;QAClB,CAAC,CAAC;QAEF,gBAAU,GAAG,UAAC,GAAQ,EAAE,KAAU;YAChC,OAAO,CACL,8BAAC,WAAI,IACH,IAAI,EAAE,GAAG,EACT,QAAQ,EAAE,KAAI,CAAC,KAAK,CAAC,QAAQ,EAC7B,MAAM,EAAE,KAAI,CAAC,KAAK,CAAC,MAAM,EACzB,SAAS,EAAC,iBAAiB;gBAE3B,qCAAG,SAAS,EAAC,yEAAyE,IACnF,KAAK,CACJ,CACC,CACR,CAAC;QACJ,CAAC,CAAC;;IAyBJ,CAAC;IAvBC,8BAAM,GAAN;QACE,OAAO,CACL,0CAAQ,SAAS,EAAC,0BAA0B;YAC1C,uCAAK,SAAS,EAAC,uDAAuD;gBACpE,uCAAK,SAAS,EAAC,iCAAiC;oBAC9C,uCAAK,SAAS,EAAC,8DAA8D,IAC1E,IAAI,CAAC,gBAAgB,EAAE,CACpB;oBACL,IAAI,CAAC,KAAK,CAAC,SAAS,IAAI,CACvB,uCAAK,SAAS,EAAC,uCAAuC,IACnD,IAAI,CAAC,KAAK,CAAC,SAAS,CACjB,CACP,CACG;gBACN,uCAAK,SAAS,EAAC,qCAAqC;oBAClD,qCAAG,SAAS,EAAC,wCAAwC,IAClD,IAAI,CAAC,KAAK,CAAC,OAAO,CACjB,CACA,CACF,CACC,CACV,CAAC;IACJ,CAAC;IACH,oBAAC;AAAD,CAAC,AAlED,CAAmC,iBAAS,GAkE3C;AAlEY,sCAAa"}
@@ -0,0 +1,15 @@
1
+ import { Component, ReactElement } from "react";
2
+ import "../../../index.css";
3
+ interface Props {
4
+ size: string;
5
+ title: string;
6
+ content: string;
7
+ image?: any;
8
+ callToAction?: ReactElement;
9
+ className?: string;
10
+ }
11
+ export declare class HeroSection extends Component<Props> {
12
+ render(): JSX.Element;
13
+ }
14
+ export {};
15
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/heroSection/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AACvD,OAAO,oBAAoB,CAAC;AAE5B,UAAU,KAAK;IACb,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,qBAAa,WAAY,SAAQ,SAAS,CAAC,KAAK,CAAC;IAC/C,MAAM;CAuFP"}
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.HeroSection = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var HeroSection = /** @class */ (function (_super) {
45
+ __extends(HeroSection, _super);
46
+ function HeroSection() {
47
+ return _super !== null && _super.apply(this, arguments) || this;
48
+ }
49
+ HeroSection.prototype.render = function () {
50
+ var contentClassName = "";
51
+ var titleClassName = "";
52
+ if (this.props.size === "small") {
53
+ contentClassName =
54
+ "mt-4 text-base leading-7 text-gray-500 whitespace-pre-line";
55
+ titleClassName =
56
+ "text-3xl text-gray-900 font-extrabold tracking-tight sm:text-4xl";
57
+ }
58
+ else {
59
+ contentClassName = "mt-6 text-xl text-gray-500 text-justify";
60
+ titleClassName =
61
+ "text-4xl font-extrabold text-gray-900 tracking-tight sm:text-5xl";
62
+ }
63
+ var defaultClassName = "overflow-hidden lg:relative lg:py-48";
64
+ if (this.props.className) {
65
+ defaultClassName += " ".concat(this.props.className);
66
+ }
67
+ return (react_1.default.createElement("div", { className: defaultClassName },
68
+ react_1.default.createElement("div", { className: "mx-auto max-w-md sm:max-w-3xl lg:max-w-7xl lg:grid lg:grid-cols-2 lg:gap-24" },
69
+ react_1.default.createElement("div", null,
70
+ react_1.default.createElement("div", null,
71
+ react_1.default.createElement("div", { className: "mt-6 lg:mt-0 sm:max-w-xl" },
72
+ react_1.default.createElement("h1", { className: titleClassName }, this.props.title),
73
+ react_1.default.createElement("p", { className: contentClassName }, this.props.content)),
74
+ this.props.callToAction && (react_1.default.createElement("div", { className: "mt-4 sm:max-w-lg sm:w-full sm:flex" }, this.props.callToAction))))),
75
+ react_1.default.createElement("div", { className: "sm:mx-auto sm:max-w-3xl sm:px-6" },
76
+ react_1.default.createElement("div", { className: "py-12 sm:relative sm:mt-12 sm:py-16 lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2" },
77
+ react_1.default.createElement("div", { className: "hidden sm:block" },
78
+ react_1.default.createElement("div", { className: "absolute inset-y-0 left-1/2 w-screen bg-gray-50 rounded-l-3xl lg:left-80 lg:right-0 lg:w-full" }),
79
+ react_1.default.createElement("svg", { className: "absolute top-8 right-1/2 -mr-3 lg:m-0 lg:left-0", width: "404", height: "392", fill: "none", viewBox: "0 0 404 392" },
80
+ react_1.default.createElement("defs", null,
81
+ react_1.default.createElement("pattern", { id: "837c3e70-6c3a-44e6-8854-cc48c737b659", x: "0", y: "0", width: "20", height: "20", patternUnits: "userSpaceOnUse" },
82
+ react_1.default.createElement("rect", { x: "0", y: "0", width: "4", height: "4", className: "text-gray-200", fill: "currentColor" }))),
83
+ react_1.default.createElement("rect", { width: "404", height: "392", fill: "url(#837c3e70-6c3a-44e6-8854-cc48c737b659)" }))),
84
+ react_1.default.createElement("div", { className: "relative -mr-40 sm:mx-auto sm:max-w-3xl lg:max-w-none lg:h-full lg:pl-12" },
85
+ react_1.default.createElement("img", { className: "w-full rounded-md lg:h-full lg:w-auto lg:max-w-screen-sm object-cover", src: this.props.image, alt: "" }))))));
86
+ };
87
+ return HeroSection;
88
+ }(react_1.Component));
89
+ exports.HeroSection = HeroSection;
90
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/heroSection/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAAuD;AACvD,8BAA4B;AAW5B;IAAiC,+BAAgB;IAAjD;;IAwFA,CAAC;IAvFC,4BAAM,GAAN;QACE,IAAI,gBAAgB,GAAG,EAAE,CAAC;QAC1B,IAAI,cAAc,GAAG,EAAE,CAAC;QAExB,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,KAAK,OAAO,EAAE;YAC/B,gBAAgB;gBACd,4DAA4D,CAAC;YAC/D,cAAc;gBACZ,kEAAkE,CAAC;SACtE;aAAM;YACL,gBAAgB,GAAG,yCAAyC,CAAC;YAC7D,cAAc;gBACZ,kEAAkE,CAAC;SACtE;QAED,IAAI,gBAAgB,GAAG,sCAAsC,CAAC;QAC9D,IAAI,IAAI,CAAC,KAAK,CAAC,SAAS,EAAE;YACxB,gBAAgB,IAAI,WAAI,IAAI,CAAC,KAAK,CAAC,SAAS,CAAE,CAAC;SAChD;QAED,OAAO,CACL,uCAAK,SAAS,EAAE,gBAAgB;YAC9B,uCAAK,SAAS,EAAC,6EAA6E;gBAC1F;oBACE;wBACE,uCAAK,SAAS,EAAC,0BAA0B;4BACvC,sCAAI,SAAS,EAAE,cAAc,IAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAM;4BACtD,qCAAG,SAAS,EAAE,gBAAgB,IAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAK,CACpD;wBAEL,IAAI,CAAC,KAAK,CAAC,YAAY,IAAI,CAC1B,uCAAK,SAAS,EAAC,oCAAoC,IAChD,IAAI,CAAC,KAAK,CAAC,YAAY,CACpB,CACP,CACG,CACF,CACF;YACN,uCAAK,SAAS,EAAC,iCAAiC;gBAC9C,uCAAK,SAAS,EAAC,kFAAkF;oBAC/F,uCAAK,SAAS,EAAC,iBAAiB;wBAC9B,uCAAK,SAAS,EAAC,+FAA+F,GAAO;wBACrH,uCACE,SAAS,EAAC,iDAAiD,EAC3D,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,IAAI,EAAC,MAAM,EACX,OAAO,EAAC,aAAa;4BAErB;gCACE,2CACE,EAAE,EAAC,sCAAsC,EACzC,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,YAAY,EAAC,gBAAgB;oCAE7B,wCACE,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,GAAG,EACT,MAAM,EAAC,GAAG,EACV,SAAS,EAAC,eAAe,EACzB,IAAI,EAAC,cAAc,GACnB,CACM,CACL;4BACP,wCACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,IAAI,EAAC,4CAA4C,GACjD,CACE,CACF;oBACN,uCAAK,SAAS,EAAC,0EAA0E;wBACvF,uCACE,SAAS,EAAC,uEAAuE,EACjF,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,EACrB,GAAG,EAAC,EAAE,GACN,CACE,CACF,CACF,CACF,CACP,CAAC;IACJ,CAAC;IACH,kBAAC;AAAD,CAAC,AAxFD,CAAiC,iBAAS,GAwFzC;AAxFY,kCAAW"}
@@ -0,0 +1,17 @@
1
+ import { Component, ReactElement } from "react";
2
+ import "../../../index.css";
3
+ interface IconData {
4
+ name: string;
5
+ content: string;
6
+ icon: ReactElement;
7
+ }
8
+ interface Props {
9
+ iconList: IconData[];
10
+ className?: string;
11
+ }
12
+ export declare class IconList extends Component<Props> {
13
+ renderSectionContent: () => any;
14
+ render(): JSX.Element;
15
+ }
16
+ export {};
17
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/iconList/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AACvD,OAAO,oBAAoB,CAAC;AAE5B,UAAU,QAAQ;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,YAAY,CAAC;CACpB;AAED,UAAU,KAAK;IACb,QAAQ,EAAE,QAAQ,EAAE,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,qBAAa,QAAS,SAAQ,SAAS,CAAC,KAAK,CAAC;IAC5C,oBAAoB,YAsBlB;IAEF,MAAM;CAQP"}
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.IconList = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var IconList = /** @class */ (function (_super) {
45
+ __extends(IconList, _super);
46
+ function IconList() {
47
+ var _this = _super !== null && _super.apply(this, arguments) || this;
48
+ _this.renderSectionContent = function () {
49
+ var _a;
50
+ var iconListView = [];
51
+ (_a = _this.props.iconList) === null || _a === void 0 ? void 0 : _a.map(function (item, index) {
52
+ iconListView.push(react_1.default.createElement("div", { key: index, className: "relative" },
53
+ react_1.default.createElement("dt", null,
54
+ react_1.default.createElement("div", { className: "absolute flex items-center justify-center h-12 w-12 rounded-md bg-primary-600 text-white" },
55
+ react_1.default.createElement("div", { className: "flex-shrink-0" }, item.icon)),
56
+ react_1.default.createElement("p", { className: "ml-16 text-lg leading-6 font-medium text-gray-900" }, item.name)),
57
+ react_1.default.createElement("dd", { className: "mt-2 ml-16 text-base text-gray-500 text-justify" }, item.content)));
58
+ return null;
59
+ });
60
+ return iconListView;
61
+ };
62
+ return _this;
63
+ }
64
+ IconList.prototype.render = function () {
65
+ var defaultClassName = "space-y-10";
66
+ if (this.props.className) {
67
+ defaultClassName += " ".concat(this.props.className);
68
+ }
69
+ return react_1.default.createElement("dl", { className: defaultClassName }, this.renderSectionContent());
70
+ };
71
+ return IconList;
72
+ }(react_1.Component));
73
+ exports.IconList = IconList;
74
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/iconList/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAAuD;AACvD,8BAA4B;AAa5B;IAA8B,4BAAgB;IAA9C;QAAA,qEAiCC;QAhCC,0BAAoB,GAAG;;YACrB,IAAI,YAAY,GAAQ,EAAE,CAAC;YAC3B,MAAA,KAAI,CAAC,KAAK,CAAC,QAAQ,0CAAE,GAAG,CAAC,UAAC,IAAI,EAAE,KAAa;gBAC3C,YAAY,CAAC,IAAI,CACf,uCAAK,GAAG,EAAE,KAAK,EAAE,SAAS,EAAC,UAAU;oBACnC;wBACE,uCAAK,SAAS,EAAC,0FAA0F;4BACvG,uCAAK,SAAS,EAAC,eAAe,IAAE,IAAI,CAAC,IAAI,CAAO,CAC5C;wBACN,qCAAG,SAAS,EAAC,mDAAmD,IAC7D,IAAI,CAAC,IAAI,CACR,CACD;oBACL,sCAAI,SAAS,EAAC,iDAAiD,IAC5D,IAAI,CAAC,OAAO,CACV,CACD,CACP,CAAC;gBACF,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;YAEH,OAAO,YAAY,CAAC;QACtB,CAAC,CAAC;;IAUJ,CAAC;IARC,yBAAM,GAAN;QACE,IAAI,gBAAgB,GAAG,YAAY,CAAC;QACpC,IAAI,IAAI,CAAC,KAAK,CAAC,SAAS,EAAE;YACxB,gBAAgB,IAAI,WAAI,IAAI,CAAC,KAAK,CAAC,SAAS,CAAE,CAAC;SAChD;QAED,OAAO,sCAAI,SAAS,EAAE,gBAAgB,IAAG,IAAI,CAAC,oBAAoB,EAAE,CAAM,CAAC;IAC7E,CAAC;IACH,eAAC;AAAD,CAAC,AAjCD,CAA8B,iBAAS,GAiCtC;AAjCY,4BAAQ"}
@@ -0,0 +1,16 @@
1
+ import { Component, ReactElement } from "react";
2
+ import "../../../index.css";
3
+ interface Props {
4
+ image: string;
5
+ title: string;
6
+ contentList?: string[];
7
+ imgContain?: boolean;
8
+ callToAction?: ReactElement;
9
+ className?: string;
10
+ }
11
+ export declare class LeftContent extends Component<Props> {
12
+ renderContent: () => any;
13
+ render(): JSX.Element;
14
+ }
15
+ export {};
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/leftContent/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AACvD,OAAO,oBAAoB,CAAC;AAE5B,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,qBAAa,WAAY,SAAQ,SAAS,CAAC,KAAK,CAAC;IAC/C,aAAa,YAeX;IAEF,MAAM;CA8EP"}
@@ -0,0 +1,92 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.LeftContent = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var LeftContent = /** @class */ (function (_super) {
45
+ __extends(LeftContent, _super);
46
+ function LeftContent() {
47
+ var _this = _super !== null && _super.apply(this, arguments) || this;
48
+ _this.renderContent = function () {
49
+ var _a;
50
+ var contentView;
51
+ var contentListView = [];
52
+ if (_this.props.contentList) {
53
+ (_a = _this.props.contentList) === null || _a === void 0 ? void 0 : _a.map(function (data, index) {
54
+ contentListView.push(react_1.default.createElement("p", { key: index, className: "text-base leading-7 text-justify" }, data));
55
+ return null;
56
+ });
57
+ contentView = contentListView;
58
+ }
59
+ return contentView;
60
+ };
61
+ return _this;
62
+ }
63
+ LeftContent.prototype.render = function () {
64
+ var defaultClassName = "relative lg:mx-auto lg:max-w-7xl lg:px-8 lg:grid lg:grid-cols-2 lg:gap-24 lg:items-start";
65
+ if (this.props.className) {
66
+ defaultClassName += " ".concat(this.props.className);
67
+ }
68
+ return (react_1.default.createElement("div", { className: defaultClassName },
69
+ react_1.default.createElement("div", { className: "relative mx-auto max-w-md sm:max-w-3xl" },
70
+ react_1.default.createElement("div", { className: "pt-8 sm:pt-16 lg:pt-20" },
71
+ react_1.default.createElement("h2", { className: "text-3xl text-gray-900 font-extrabold tracking-tight sm:text-4xl" }, this.props.title),
72
+ react_1.default.createElement("div", { className: "mt-6 text-gray-500 space-y-6" },
73
+ this.renderContent(),
74
+ this.props.callToAction))),
75
+ react_1.default.createElement("div", { className: "relative mt-8 sm:mt-0 sm:py-16 lg:py-0" },
76
+ react_1.default.createElement("div", { className: "hidden sm:block" },
77
+ react_1.default.createElement("div", { className: "absolute inset-y-0 left-1/2 w-screen bg-gray-50 rounded-l-3xl lg:left-80 lg:right-0 lg:w-full" }),
78
+ react_1.default.createElement("svg", { className: "absolute top-8 right-1/2 -mr-3 lg:m-0 lg:left-0", width: "404", height: "392", fill: "none", viewBox: "0 0 404 392" },
79
+ react_1.default.createElement("defs", null,
80
+ react_1.default.createElement("pattern", { id: "837c3e70-6c3a-44e6-8854-cc48c737b659", x: "0", y: "0", width: "20", height: "20", patternUnits: "userSpaceOnUse" },
81
+ react_1.default.createElement("rect", { x: "0", y: "0", width: "4", height: "4", className: "text-gray-200", fill: "currentColor" }))),
82
+ react_1.default.createElement("rect", { width: "404", height: "392", fill: "url(#837c3e70-6c3a-44e6-8854-cc48c737b659)" }))),
83
+ react_1.default.createElement("div", { className: "relative mx-auto max-w-md sm:max-w-3xl lg:max-w-none lg:py-20" },
84
+ react_1.default.createElement("div", { className: "relative pt-64 pb-10 rounded-2xl ".concat(this.props.imgContain ? "" : "shadow-xl", " overflow-hidden") },
85
+ react_1.default.createElement("img", { className: "absolute inset-0 h-full w-full ".concat(this.props.imgContain ? "object-contain" : "object-cover"), src: this.props.image, alt: "" }),
86
+ react_1.default.createElement("div", { className: "relative px-8" },
87
+ react_1.default.createElement("blockquote", { className: "pt-20" })))))));
88
+ };
89
+ return LeftContent;
90
+ }(react_1.Component));
91
+ exports.LeftContent = LeftContent;
92
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/leftContent/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAAuD;AACvD,8BAA4B;AAW5B;IAAiC,+BAAgB;IAAjD;QAAA,qEAgGC;QA/FC,mBAAa,GAAG;;YACd,IAAI,WAAgB,CAAC;YACrB,IAAI,eAAe,GAAQ,EAAE,CAAC;YAC9B,IAAI,KAAI,CAAC,KAAK,CAAC,WAAW,EAAE;gBAC1B,MAAA,KAAI,CAAC,KAAK,CAAC,WAAW,0CAAE,GAAG,CAAC,UAAC,IAAY,EAAE,KAAa;oBACtD,eAAe,CAAC,IAAI,CAClB,qCAAG,GAAG,EAAE,KAAK,EAAE,SAAS,EAAC,kCAAkC,IACxD,IAAI,CACH,CACL,CAAC;oBACF,OAAO,IAAI,CAAC;gBACd,CAAC,CAAC,CAAC;gBACH,WAAW,GAAG,eAAe,CAAC;aAC/B;YACD,OAAO,WAAW,CAAC;QACrB,CAAC,CAAC;;IAgFJ,CAAC;IA9EC,4BAAM,GAAN;QACE,IAAI,gBAAgB,GAClB,0FAA0F,CAAC;QAC7F,IAAI,IAAI,CAAC,KAAK,CAAC,SAAS,EAAE;YACxB,gBAAgB,IAAI,WAAI,IAAI,CAAC,KAAK,CAAC,SAAS,CAAE,CAAC;SAChD;QAED,OAAO,CACL,uCAAK,SAAS,EAAE,gBAAgB;YAC9B,uCAAK,SAAS,EAAC,wCAAwC;gBACrD,uCAAK,SAAS,EAAC,wBAAwB;oBACrC,sCAAI,SAAS,EAAC,kEAAkE,IAC7E,IAAI,CAAC,KAAK,CAAC,KAAK,CACd;oBACL,uCAAK,SAAS,EAAC,8BAA8B;wBAC1C,IAAI,CAAC,aAAa,EAAE;wBACpB,IAAI,CAAC,KAAK,CAAC,YAAY,CACpB,CACF,CACF;YACN,uCAAK,SAAS,EAAC,wCAAwC;gBACrD,uCAAK,SAAS,EAAC,iBAAiB;oBAC9B,uCAAK,SAAS,EAAC,+FAA+F,GAAO;oBACrH,uCACE,SAAS,EAAC,iDAAiD,EAC3D,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,IAAI,EAAC,MAAM,EACX,OAAO,EAAC,aAAa;wBAErB;4BACE,2CACE,EAAE,EAAC,sCAAsC,EACzC,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,YAAY,EAAC,gBAAgB;gCAE7B,wCACE,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,GAAG,EACT,MAAM,EAAC,GAAG,EACV,SAAS,EAAC,eAAe,EACzB,IAAI,EAAC,cAAc,GACnB,CACM,CACL;wBACP,wCACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,IAAI,EAAC,4CAA4C,GACjD,CACE,CACF;gBACN,uCAAK,SAAS,EAAC,+DAA+D;oBAC5E,uCACE,SAAS,EAAE,2CACT,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,qBACxB;wBAElB,uCACE,SAAS,EAAE,yCACT,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,cAAc,CACzD,EACF,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,EACrB,GAAG,EAAC,EAAE,GACN;wBACF,uCAAK,SAAS,EAAC,eAAe;4BAC5B,8CAAY,SAAS,EAAC,OAAO,GAAc,CACvC,CACF,CACF,CACF,CACF,CACP,CAAC;IACJ,CAAC;IACH,kBAAC;AAAD,CAAC,AAhGD,CAAiC,iBAAS,GAgGzC;AAhGY,kCAAW"}
@@ -0,0 +1,17 @@
1
+ import { Component } from "react";
2
+ import "../../../index.css";
3
+ import { LinkProps } from "../../structure/link";
4
+ interface LogoData {
5
+ src: string;
6
+ alt: string;
7
+ href: string;
8
+ }
9
+ interface Props extends LinkProps {
10
+ logoList: LogoData[];
11
+ }
12
+ export declare class LogoCloud extends Component<Props> {
13
+ renderLogoList: () => any;
14
+ render(): JSX.Element;
15
+ }
16
+ export {};
17
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/logoCloud/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,oBAAoB,CAAC;AAC5B,OAAO,EAAQ,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEvD,UAAU,QAAQ;IAChB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;CACd;AAED,UAAU,KAAM,SAAQ,SAAS;IAC/B,QAAQ,EAAE,QAAQ,EAAE,CAAC;CACtB;AAED,qBAAa,SAAU,SAAQ,SAAS,CAAC,KAAK,CAAC;IAC7C,cAAc,YAkBZ;IAEF,MAAM;CASP"}
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.LogoCloud = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var link_1 = require("../../structure/link");
45
+ var LogoCloud = /** @class */ (function (_super) {
46
+ __extends(LogoCloud, _super);
47
+ function LogoCloud() {
48
+ var _this = _super !== null && _super.apply(this, arguments) || this;
49
+ _this.renderLogoList = function () {
50
+ var logoListView = [];
51
+ _this.props.logoList.map(function (eachLogo, index) {
52
+ logoListView.push(react_1.default.createElement(link_1.Link, { key: index, href: eachLogo.href, linkType: _this.props.linkType, custom: _this.props.custom },
53
+ react_1.default.createElement("div", { className: "col-span-1 flex justify-center md:col-span-2 lg:col-span-1" },
54
+ react_1.default.createElement("img", { className: "h-12", src: eachLogo.src, alt: eachLogo.alt }))));
55
+ return null;
56
+ });
57
+ return logoListView;
58
+ };
59
+ return _this;
60
+ }
61
+ LogoCloud.prototype.render = function () {
62
+ return (react_1.default.createElement("div", { className: "mx-auto max-w-7xl" },
63
+ react_1.default.createElement("div", { className: "grid grid-cols-2 gap-8 md:grid-cols-5" }, this.renderLogoList())));
64
+ };
65
+ return LogoCloud;
66
+ }(react_1.Component));
67
+ exports.LogoCloud = LogoCloud;
68
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/logoCloud/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAAyC;AACzC,8BAA4B;AAC5B,6CAAuD;AAYvD;IAA+B,6BAAgB;IAA/C;QAAA,qEA8BC;QA7BC,oBAAc,GAAG;YACf,IAAI,YAAY,GAAQ,EAAE,CAAC;YAC3B,KAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,UAAC,QAAkB,EAAE,KAAa;gBACxD,YAAY,CAAC,IAAI,CACf,8BAAC,WAAI,IACH,GAAG,EAAE,KAAK,EACV,IAAI,EAAE,QAAQ,CAAC,IAAI,EACnB,QAAQ,EAAE,KAAI,CAAC,KAAK,CAAC,QAAQ,EAC7B,MAAM,EAAE,KAAI,CAAC,KAAK,CAAC,MAAM;oBAEzB,uCAAK,SAAS,EAAC,4DAA4D;wBACzE,uCAAK,SAAS,EAAC,MAAM,EAAC,GAAG,EAAE,QAAQ,CAAC,GAAG,EAAE,GAAG,EAAE,QAAQ,CAAC,GAAG,GAAI,CAC1D,CACD,CACR,CAAC;gBACF,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;YACH,OAAO,YAAY,CAAC;QACtB,CAAC,CAAC;;IAWJ,CAAC;IATC,0BAAM,GAAN;QACE,OAAO,CACL,uCAAK,SAAS,EAAC,mBAAmB;YAChC,uCAAK,SAAS,EAAC,uCAAuC,IACnD,IAAI,CAAC,cAAc,EAAE,CAClB,CACF,CACP,CAAC;IACJ,CAAC;IACH,gBAAC;AAAD,CAAC,AA9BD,CAA+B,iBAAS,GA8BvC;AA9BY,8BAAS"}
@@ -0,0 +1,16 @@
1
+ import { Component, ReactElement } from "react";
2
+ import "../../../index.css";
3
+ interface Props {
4
+ image: string;
5
+ title: string;
6
+ contentList?: string[];
7
+ imgContain?: boolean;
8
+ callToAction?: ReactElement;
9
+ className?: string;
10
+ }
11
+ export declare class RightContent extends Component<Props> {
12
+ renderContent: () => any;
13
+ render(): JSX.Element;
14
+ }
15
+ export {};
16
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/rightContent/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AACvD,OAAO,oBAAoB,CAAC;AAE5B,UAAU,KAAK;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,qBAAa,YAAa,SAAQ,SAAS,CAAC,KAAK,CAAC;IAChD,aAAa,YAeX;IAEF,MAAM;CAkFP"}
@@ -0,0 +1,92 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.RightContent = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var RightContent = /** @class */ (function (_super) {
45
+ __extends(RightContent, _super);
46
+ function RightContent() {
47
+ var _this = _super !== null && _super.apply(this, arguments) || this;
48
+ _this.renderContent = function () {
49
+ var _a;
50
+ var contentView;
51
+ var contentListView = [];
52
+ if (_this.props.contentList) {
53
+ (_a = _this.props.contentList) === null || _a === void 0 ? void 0 : _a.map(function (data, index) {
54
+ contentListView.push(react_1.default.createElement("p", { key: index, className: "text-base leading-7 text-justify" }, data));
55
+ return null;
56
+ });
57
+ contentView = contentListView;
58
+ }
59
+ return contentView;
60
+ };
61
+ return _this;
62
+ }
63
+ RightContent.prototype.render = function () {
64
+ var defaultClassName = "relative lg:mx-auto lg:max-w-7xl lg:px-8 lg:grid lg:grid-cols-2 lg:gap-24 lg:items-start";
65
+ if (this.props.className) {
66
+ defaultClassName += " ".concat(this.props.className);
67
+ }
68
+ return (react_1.default.createElement("div", { className: defaultClassName },
69
+ react_1.default.createElement("div", { className: "relative sm:py-16 lg:py-0" },
70
+ react_1.default.createElement("div", { "aria-hidden": "true", className: "hidden sm:block lg:absolute lg:inset-y-0 lg:right-0 lg:w-screen" },
71
+ react_1.default.createElement("div", { className: "absolute inset-y-0 right-1/2 w-full bg-gray-50 rounded-r-3xl lg:right-72" }),
72
+ react_1.default.createElement("svg", { className: "absolute top-8 left-1/2 -ml-3 lg:-right-8 lg:left-auto lg:top-12", width: "404", height: "392", fill: "none", viewBox: "0 0 404 392" },
73
+ react_1.default.createElement("defs", null,
74
+ react_1.default.createElement("pattern", { id: "02f20b47-fd69-4224-a62a-4c9de5c763f7", x: "0", y: "0", width: "20", height: "20", patternUnits: "userSpaceOnUse" },
75
+ react_1.default.createElement("rect", { x: "0", y: "0", width: "4", height: "4", className: "text-gray-200", fill: "currentColor" }))),
76
+ react_1.default.createElement("rect", { width: "404", height: "392", fill: "url(#02f20b47-fd69-4224-a62a-4c9de5c763f7)" }))),
77
+ react_1.default.createElement("div", { className: "relative mx-auto max-w-md sm:max-w-3xl lg:max-w-none lg:py-20" },
78
+ react_1.default.createElement("div", { className: "relative pt-64 pb-10 rounded-2xl ".concat(this.props.imgContain ? "" : "shadow-xl", " overflow-hidden") },
79
+ react_1.default.createElement("img", { className: "absolute inset-0 h-full w-full ".concat(this.props.imgContain ? "object-contain" : "object-cover"), src: this.props.image, alt: "" }),
80
+ react_1.default.createElement("div", { className: "relative px-8" },
81
+ react_1.default.createElement("blockquote", { className: "pt-20" }))))),
82
+ react_1.default.createElement("div", { className: "relative mx-auto max-w-md sm:max-w-3xl" },
83
+ react_1.default.createElement("div", { className: "pt-8 sm:pt-16 lg:pt-20" },
84
+ react_1.default.createElement("h2", { className: "text-3xl text-gray-900 font-extrabold tracking-tight sm:text-4xl" }, this.props.title),
85
+ react_1.default.createElement("div", { className: "mt-6 text-gray-500 space-y-6" },
86
+ this.renderContent(),
87
+ this.props.callToAction)))));
88
+ };
89
+ return RightContent;
90
+ }(react_1.Component));
91
+ exports.RightContent = RightContent;
92
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/rightContent/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAAuD;AACvD,8BAA4B;AAW5B;IAAkC,gCAAgB;IAAlD;QAAA,qEAoGC;QAnGC,mBAAa,GAAG;;YACd,IAAI,WAAgB,CAAC;YACrB,IAAI,eAAe,GAAQ,EAAE,CAAC;YAC9B,IAAI,KAAI,CAAC,KAAK,CAAC,WAAW,EAAE;gBAC1B,MAAA,KAAI,CAAC,KAAK,CAAC,WAAW,0CAAE,GAAG,CAAC,UAAC,IAAY,EAAE,KAAa;oBACtD,eAAe,CAAC,IAAI,CAClB,qCAAG,GAAG,EAAE,KAAK,EAAE,SAAS,EAAC,kCAAkC,IACxD,IAAI,CACH,CACL,CAAC;oBACF,OAAO,IAAI,CAAC;gBACd,CAAC,CAAC,CAAC;gBACH,WAAW,GAAG,eAAe,CAAC;aAC/B;YACD,OAAO,WAAW,CAAC;QACrB,CAAC,CAAC;;IAoFJ,CAAC;IAlFC,6BAAM,GAAN;QACE,IAAI,gBAAgB,GAClB,0FAA0F,CAAC;QAC7F,IAAI,IAAI,CAAC,KAAK,CAAC,SAAS,EAAE;YACxB,gBAAgB,IAAI,WAAI,IAAI,CAAC,KAAK,CAAC,SAAS,CAAE,CAAC;SAChD;QAED,OAAO,CACL,uCAAK,SAAS,EAAE,gBAAgB;YAC9B,uCAAK,SAAS,EAAC,2BAA2B;gBACxC,sDACc,MAAM,EAClB,SAAS,EAAC,iEAAiE;oBAE3E,uCAAK,SAAS,EAAC,0EAA0E,GAAO;oBAChG,uCACE,SAAS,EAAC,kEAAkE,EAC5E,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,IAAI,EAAC,MAAM,EACX,OAAO,EAAC,aAAa;wBAErB;4BACE,2CACE,EAAE,EAAC,sCAAsC,EACzC,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,YAAY,EAAC,gBAAgB;gCAE7B,wCACE,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,GAAG,EACT,MAAM,EAAC,GAAG,EACV,SAAS,EAAC,eAAe,EACzB,IAAI,EAAC,cAAc,GACnB,CACM,CACL;wBACP,wCACE,KAAK,EAAC,KAAK,EACX,MAAM,EAAC,KAAK,EACZ,IAAI,EAAC,4CAA4C,GACjD,CACE,CACF;gBACN,uCAAK,SAAS,EAAC,+DAA+D;oBAC5E,uCACE,SAAS,EAAE,2CACT,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,qBACxB;wBAElB,uCACE,SAAS,EAAE,yCACT,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,cAAc,CACzD,EACF,GAAG,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,EACrB,GAAG,EAAC,EAAE,GACN;wBACF,uCAAK,SAAS,EAAC,eAAe;4BAC5B,8CAAY,SAAS,EAAC,OAAO,GAAc,CACvC,CACF,CACF,CACF;YAEN,uCAAK,SAAS,EAAC,wCAAwC;gBACrD,uCAAK,SAAS,EAAC,wBAAwB;oBACrC,sCAAI,SAAS,EAAC,kEAAkE,IAC7E,IAAI,CAAC,KAAK,CAAC,KAAK,CACd;oBACL,uCAAK,SAAS,EAAC,8BAA8B;wBAC1C,IAAI,CAAC,aAAa,EAAE;wBACpB,IAAI,CAAC,KAAK,CAAC,YAAY,CACpB,CACF,CACF,CACF,CACP,CAAC;IACJ,CAAC;IACH,mBAAC;AAAD,CAAC,AApGD,CAAkC,iBAAS,GAoG1C;AApGY,oCAAY"}
@@ -0,0 +1,15 @@
1
+ import { Component } from "react";
2
+ import "../../../index.css";
3
+ interface SectionData {
4
+ title: string;
5
+ content: string;
6
+ }
7
+ interface Props {
8
+ sectionContent: SectionData[];
9
+ }
10
+ export declare class SectionList extends Component<Props> {
11
+ renderSectionContent: () => any;
12
+ render(): JSX.Element;
13
+ }
14
+ export {};
15
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/design/sectionList/index.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACzC,OAAO,oBAAoB,CAAC;AAE5B,UAAU,WAAW;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,UAAU,KAAK;IACb,cAAc,EAAE,WAAW,EAAE,CAAC;CAC/B;AAED,qBAAa,WAAY,SAAQ,SAAS,CAAC,KAAK,CAAC;IAC/C,oBAAoB,YAiBlB;IAEF,MAAM;CAOP"}
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
18
+ if (k2 === undefined) k2 = k;
19
+ var desc = Object.getOwnPropertyDescriptor(m, k);
20
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
21
+ desc = { enumerable: true, get: function() { return m[k]; } };
22
+ }
23
+ Object.defineProperty(o, k2, desc);
24
+ }) : (function(o, m, k, k2) {
25
+ if (k2 === undefined) k2 = k;
26
+ o[k2] = m[k];
27
+ }));
28
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
29
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
30
+ }) : function(o, v) {
31
+ o["default"] = v;
32
+ });
33
+ var __importStar = (this && this.__importStar) || function (mod) {
34
+ if (mod && mod.__esModule) return mod;
35
+ var result = {};
36
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
37
+ __setModuleDefault(result, mod);
38
+ return result;
39
+ };
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.SectionList = void 0;
42
+ var react_1 = __importStar(require("react"));
43
+ require("../../../index.css");
44
+ var SectionList = /** @class */ (function (_super) {
45
+ __extends(SectionList, _super);
46
+ function SectionList() {
47
+ var _this = _super !== null && _super.apply(this, arguments) || this;
48
+ _this.renderSectionContent = function () {
49
+ var _a;
50
+ var sectionView = [];
51
+ (_a = _this.props.sectionContent) === null || _a === void 0 ? void 0 : _a.map(function (eachContent, index) {
52
+ sectionView.push(react_1.default.createElement("div", { className: "border-t-2 border-gray-100 pt-6", key: index },
53
+ react_1.default.createElement("dt", { className: "text-base font-medium text-gray-500" }, eachContent.title),
54
+ react_1.default.createElement("dd", { className: "text-xl font-extrabold tracking-tight text-gray-900 whitespace-nowrap overflow-ellipsis overflow-hidden" }, eachContent.content)));
55
+ return null;
56
+ });
57
+ return sectionView;
58
+ };
59
+ return _this;
60
+ }
61
+ SectionList.prototype.render = function () {
62
+ return (react_1.default.createElement("dl", { className: "grid grid-cols-2 gap-x-4 gap-y-8" }, this.renderSectionContent()));
63
+ };
64
+ return SectionList;
65
+ }(react_1.Component));
66
+ exports.SectionList = SectionList;
67
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/components/design/sectionList/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAAyC;AACzC,8BAA4B;AAW5B;IAAiC,+BAAgB;IAAjD;QAAA,qEA2BC;QA1BC,0BAAoB,GAAG;;YACrB,IAAI,WAAW,GAAQ,EAAE,CAAC;YAC1B,MAAA,KAAI,CAAC,KAAK,CAAC,cAAc,0CAAE,GAAG,CAAC,UAAC,WAAW,EAAE,KAAa;gBACxD,WAAW,CAAC,IAAI,CACd,uCAAK,SAAS,EAAC,iCAAiC,EAAC,GAAG,EAAE,KAAK;oBACzD,sCAAI,SAAS,EAAC,qCAAqC,IAChD,WAAW,CAAC,KAAK,CACf;oBACL,sCAAI,SAAS,EAAC,yGAAyG,IACpH,WAAW,CAAC,OAAO,CACjB,CACD,CACP,CAAC;gBACF,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;YAEH,OAAO,WAAW,CAAC;QACrB,CAAC,CAAC;;IASJ,CAAC;IAPC,4BAAM,GAAN;QACE,OAAO,CACL,sCAAI,SAAS,EAAC,kCAAkC,IAC7C,IAAI,CAAC,oBAAoB,EAAE,CACzB,CACN,CAAC;IACJ,CAAC;IACH,kBAAC;AAAD,CAAC,AA3BD,CAAiC,iBAAS,GA2BzC;AA3BY,kCAAW"}
@@ -14,6 +14,16 @@ export { DataTemplate } from "./data/dataTemplate";
14
14
  export { Database, ReadQuery, ReadQueryType } from "./data/readQuery";
15
15
  export { ReadQueryHoc } from "./data/readQueryHoc";
16
16
  export { WriteQuery } from "./data/writeQuery";
17
+ export { Banner } from "./design/banner";
18
+ export { BlogSection } from "./design/blogSection";
19
+ export { FAQContent } from "./design/faq";
20
+ export { FooterSection } from "./design/footerSection";
21
+ export { HeroSection } from "./design/heroSection";
22
+ export { IconList } from "./design/iconList";
23
+ export { LeftContent } from "./design/leftContent";
24
+ export { LogoCloud } from "./design/logoCloud";
25
+ export { RightContent } from "./design/rightContent";
26
+ export { SectionList } from "./design/sectionList";
17
27
  export { DetailList, DetailListClass } from "./display/detailList";
18
28
  export { Feed, Feeds } from "./display/feeds";
19
29
  export { Grid, GridClass } from "./display/grid";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACnE,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAC5C,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACtE,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACnE,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACjD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC/C,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACzC,OAAO,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAC5C,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AACxC,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC"}
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Text = exports.Link = exports.Container = exports.Column = exports.Tabs = exports.LeftNav = exports.Header = exports.Breadcrumb = exports.Bars = exports.UploadInput = exports.TextInput = exports.TextArea = exports.Select = exports.Form = exports.InputDatePicker = exports.Address = exports.Table = exports.Stepper = exports.Notification = exports.Modal = exports.Loading = exports.List = exports.Grid = exports.Feeds = exports.DetailList = exports.WriteQuery = exports.ReadQueryHoc = exports.ReadQuery = exports.DataTemplate = exports.PieChart = exports.LineChart = exports.Card = exports.BarChart = exports.SignUpTemplate = exports.SignInTemplate = exports.BareSignIn = exports.Toggle = exports.TextButton = exports.IconButton = exports.ButtonGroup = exports.Button = void 0;
3
+ exports.Link = exports.Container = exports.Column = exports.Tabs = exports.LeftNav = exports.Header = exports.Breadcrumb = exports.Bars = exports.UploadInput = exports.TextInput = exports.TextArea = exports.Select = exports.Form = exports.InputDatePicker = exports.Address = exports.Table = exports.Stepper = exports.Notification = exports.Modal = exports.Loading = exports.List = exports.Grid = exports.Feeds = exports.DetailList = exports.SectionList = exports.RightContent = exports.LogoCloud = exports.LeftContent = exports.IconList = exports.HeroSection = exports.FooterSection = exports.FAQContent = exports.BlogSection = exports.Banner = exports.WriteQuery = exports.ReadQueryHoc = exports.ReadQuery = exports.DataTemplate = exports.PieChart = exports.LineChart = exports.Card = exports.BarChart = exports.SignUpTemplate = exports.SignInTemplate = exports.BareSignIn = exports.Toggle = exports.TextButton = exports.IconButton = exports.ButtonGroup = exports.Button = void 0;
4
+ exports.Text = void 0;
4
5
  var button_1 = require("./action/button");
5
6
  Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return button_1.Button; } });
6
7
  var buttonGroup_1 = require("./action/buttonGroup");
@@ -33,6 +34,26 @@ var readQueryHoc_1 = require("./data/readQueryHoc");
33
34
  Object.defineProperty(exports, "ReadQueryHoc", { enumerable: true, get: function () { return readQueryHoc_1.ReadQueryHoc; } });
34
35
  var writeQuery_1 = require("./data/writeQuery");
35
36
  Object.defineProperty(exports, "WriteQuery", { enumerable: true, get: function () { return writeQuery_1.WriteQuery; } });
37
+ var banner_1 = require("./design/banner");
38
+ Object.defineProperty(exports, "Banner", { enumerable: true, get: function () { return banner_1.Banner; } });
39
+ var blogSection_1 = require("./design/blogSection");
40
+ Object.defineProperty(exports, "BlogSection", { enumerable: true, get: function () { return blogSection_1.BlogSection; } });
41
+ var faq_1 = require("./design/faq");
42
+ Object.defineProperty(exports, "FAQContent", { enumerable: true, get: function () { return faq_1.FAQContent; } });
43
+ var footerSection_1 = require("./design/footerSection");
44
+ Object.defineProperty(exports, "FooterSection", { enumerable: true, get: function () { return footerSection_1.FooterSection; } });
45
+ var heroSection_1 = require("./design/heroSection");
46
+ Object.defineProperty(exports, "HeroSection", { enumerable: true, get: function () { return heroSection_1.HeroSection; } });
47
+ var iconList_1 = require("./design/iconList");
48
+ Object.defineProperty(exports, "IconList", { enumerable: true, get: function () { return iconList_1.IconList; } });
49
+ var leftContent_1 = require("./design/leftContent");
50
+ Object.defineProperty(exports, "LeftContent", { enumerable: true, get: function () { return leftContent_1.LeftContent; } });
51
+ var logoCloud_1 = require("./design/logoCloud");
52
+ Object.defineProperty(exports, "LogoCloud", { enumerable: true, get: function () { return logoCloud_1.LogoCloud; } });
53
+ var rightContent_1 = require("./design/rightContent");
54
+ Object.defineProperty(exports, "RightContent", { enumerable: true, get: function () { return rightContent_1.RightContent; } });
55
+ var sectionList_1 = require("./design/sectionList");
56
+ Object.defineProperty(exports, "SectionList", { enumerable: true, get: function () { return sectionList_1.SectionList; } });
36
57
  var detailList_1 = require("./display/detailList");
37
58
  Object.defineProperty(exports, "DetailList", { enumerable: true, get: function () { return detailList_1.DetailList; } });
38
59
  var feeds_1 = require("./display/feeds");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":";;;AAAA,0CAAyC;AAAhC,gGAAA,MAAM,OAAA;AACf,oDAAmD;AAA1C,0GAAA,WAAW,OAAA;AACpB,kDAAiD;AAAxC,wGAAA,UAAU,OAAA;AACnB,kDAAiD;AAAxC,wGAAA,UAAU,OAAA;AACnB,0CAAyC;AAAhC,gGAAA,MAAM,OAAA;AACf,gDAA+C;AAAtC,wGAAA,UAAU,OAAA;AACnB,wCAA+C;AAAtC,wGAAA,cAAc,OAAA;AACvB,wCAA+C;AAAtC,wGAAA,cAAc,OAAA;AACvB,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,qCAAoC;AAA3B,4FAAA,IAAI,OAAA;AACb,+CAA8C;AAArC,sGAAA,SAAS,OAAA;AAClB,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,oDAAmD;AAA1C,4GAAA,YAAY,OAAA;AACrB,8CAAsE;AAAnD,sGAAA,SAAS,OAAA;AAC5B,oDAAmD;AAA1C,4GAAA,YAAY,OAAA;AACrB,gDAA+C;AAAtC,wGAAA,UAAU,OAAA;AACnB,mDAAmE;AAA1D,wGAAA,UAAU,OAAA;AACnB,yCAA8C;AAA/B,8FAAA,KAAK,OAAA;AACpB,uCAAiD;AAAxC,4FAAA,IAAI,OAAA;AACb,uCAAiD;AAAxC,4FAAA,IAAI,OAAA;AACb,6CAA4C;AAAnC,kGAAA,OAAO,OAAA;AAChB,yCAAwC;AAA/B,8FAAA,KAAK,OAAA;AACd,uDAAsD;AAA7C,4GAAA,YAAY,OAAA;AACrB,6CAA4C;AAAnC,kGAAA,OAAO,OAAA;AAChB,yCAAqD;AAA5C,8FAAA,KAAK,OAAA;AACd,2CAAwD;AAA/C,kGAAA,OAAO,OAAA;AAChB,iDAAqD;AAA5C,6GAAA,eAAe,OAAA;AACxB,qCAAoC;AAA3B,4FAAA,IAAI,OAAA;AACb,yCAAgD;AAA/B,gGAAA,MAAM,OAAA;AACvB,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,+CAA8C;AAArC,sGAAA,SAAS,OAAA;AAClB,mDAAkD;AAAzC,0GAAA,WAAW,OAAA;AACpB,0CAAyC;AAAhC,4FAAA,IAAI,OAAA;AACb,sDAAqD;AAA5C,wGAAA,UAAU,OAAA;AACnB,8CAAyE;AAAhE,gGAAA,MAAM,OAAA;AACf,gDAA+C;AAAtC,kGAAA,OAAO,OAAA;AAChB,0CAAyC;AAAhC,4FAAA,IAAI,OAAA;AACb,6CAA4C;AAAnC,gGAAA,MAAM,OAAA;AACf,mDAAkD;AAAzC,sGAAA,SAAS,OAAA;AAClB,yCAAwC;AAA/B,4FAAA,IAAI,OAAA;AACb,yCAAwC;AAA/B,4FAAA,IAAI,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":";;;;AAAA,0CAAyC;AAAhC,gGAAA,MAAM,OAAA;AACf,oDAAmD;AAA1C,0GAAA,WAAW,OAAA;AACpB,kDAAiD;AAAxC,wGAAA,UAAU,OAAA;AACnB,kDAAiD;AAAxC,wGAAA,UAAU,OAAA;AACnB,0CAAyC;AAAhC,gGAAA,MAAM,OAAA;AACf,gDAA+C;AAAtC,wGAAA,UAAU,OAAA;AACnB,wCAA+C;AAAtC,wGAAA,cAAc,OAAA;AACvB,wCAA+C;AAAtC,wGAAA,cAAc,OAAA;AACvB,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,qCAAoC;AAA3B,4FAAA,IAAI,OAAA;AACb,+CAA8C;AAArC,sGAAA,SAAS,OAAA;AAClB,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,oDAAmD;AAA1C,4GAAA,YAAY,OAAA;AACrB,8CAAsE;AAAnD,sGAAA,SAAS,OAAA;AAC5B,oDAAmD;AAA1C,4GAAA,YAAY,OAAA;AACrB,gDAA+C;AAAtC,wGAAA,UAAU,OAAA;AACnB,0CAAyC;AAAhC,gGAAA,MAAM,OAAA;AACf,oDAAmD;AAA1C,0GAAA,WAAW,OAAA;AACpB,oCAA0C;AAAjC,iGAAA,UAAU,OAAA;AACnB,wDAAuD;AAA9C,8GAAA,aAAa,OAAA;AACtB,oDAAmD;AAA1C,0GAAA,WAAW,OAAA;AACpB,8CAA6C;AAApC,oGAAA,QAAQ,OAAA;AACjB,oDAAmD;AAA1C,0GAAA,WAAW,OAAA;AACpB,gDAA+C;AAAtC,sGAAA,SAAS,OAAA;AAClB,sDAAqD;AAA5C,4GAAA,YAAY,OAAA;AACrB,oDAAmD;AAA1C,0GAAA,WAAW,OAAA;AACpB,mDAAmE;AAA1D,wGAAA,UAAU,OAAA;AACnB,yCAA8C;AAA/B,8FAAA,KAAK,OAAA;AACpB,uCAAiD;AAAxC,4FAAA,IAAI,OAAA;AACb,uCAAiD;AAAxC,4FAAA,IAAI,OAAA;AACb,6CAA4C;AAAnC,kGAAA,OAAO,OAAA;AAChB,yCAAwC;AAA/B,8FAAA,KAAK,OAAA;AACd,uDAAsD;AAA7C,4GAAA,YAAY,OAAA;AACrB,6CAA4C;AAAnC,kGAAA,OAAO,OAAA;AAChB,yCAAqD;AAA5C,8FAAA,KAAK,OAAA;AACd,2CAAwD;AAA/C,kGAAA,OAAO,OAAA;AAChB,iDAAqD;AAA5C,6GAAA,eAAe,OAAA;AACxB,qCAAoC;AAA3B,4FAAA,IAAI,OAAA;AACb,yCAAgD;AAA/B,gGAAA,MAAM,OAAA;AACvB,6CAA4C;AAAnC,oGAAA,QAAQ,OAAA;AACjB,+CAA8C;AAArC,sGAAA,SAAS,OAAA;AAClB,mDAAkD;AAAzC,0GAAA,WAAW,OAAA;AACpB,0CAAyC;AAAhC,4FAAA,IAAI,OAAA;AACb,sDAAqD;AAA5C,wGAAA,UAAU,OAAA;AACnB,8CAAyE;AAAhE,gGAAA,MAAM,OAAA;AACf,gDAA+C;AAAtC,kGAAA,OAAO,OAAA;AAChB,0CAAyC;AAAhC,4FAAA,IAAI,OAAA;AACb,6CAA4C;AAAnC,gGAAA,MAAM,OAAA;AACf,mDAAkD;AAAzC,sGAAA,SAAS,OAAA;AAClB,yCAAwC;AAA/B,4FAAA,IAAI,OAAA;AACb,yCAAwC;AAA/B,4FAAA,IAAI,OAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blixify-ui-web",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "license": "MIT",
5
5
  "main": "lib/src/index.js",
6
6
  "private": false,