blixify-ui-web 0.1.26 → 0.1.28
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/design/banner/index.d.ts +10 -0
- package/lib/components/design/banner/index.d.ts.map +1 -0
- package/lib/components/design/banner/index.js +58 -0
- package/lib/components/design/banner/index.js.map +1 -0
- package/lib/components/design/blogSection/index.d.ts +33 -0
- package/lib/components/design/blogSection/index.d.ts.map +1 -0
- package/lib/components/design/blogSection/index.js +88 -0
- package/lib/components/design/blogSection/index.js.map +1 -0
- package/lib/components/design/faq/index.d.ts +15 -0
- package/lib/components/design/faq/index.d.ts.map +1 -0
- package/lib/components/design/faq/index.js +72 -0
- package/lib/components/design/faq/index.js.map +1 -0
- package/lib/components/design/footerSection/index.d.ts +24 -0
- package/lib/components/design/footerSection/index.d.ts.map +1 -0
- package/lib/components/design/footerSection/index.js +85 -0
- package/lib/components/design/footerSection/index.js.map +1 -0
- package/lib/components/design/heroSection/index.d.ts +15 -0
- package/lib/components/design/heroSection/index.d.ts.map +1 -0
- package/lib/components/design/heroSection/index.js +90 -0
- package/lib/components/design/heroSection/index.js.map +1 -0
- package/lib/components/design/iconList/index.d.ts +17 -0
- package/lib/components/design/iconList/index.d.ts.map +1 -0
- package/lib/components/design/iconList/index.js +74 -0
- package/lib/components/design/iconList/index.js.map +1 -0
- package/lib/components/design/leftContent/index.d.ts +16 -0
- package/lib/components/design/leftContent/index.d.ts.map +1 -0
- package/lib/components/design/leftContent/index.js +92 -0
- package/lib/components/design/leftContent/index.js.map +1 -0
- package/lib/components/design/logoCloud/index.d.ts +17 -0
- package/lib/components/design/logoCloud/index.d.ts.map +1 -0
- package/lib/components/design/logoCloud/index.js +68 -0
- package/lib/components/design/logoCloud/index.js.map +1 -0
- package/lib/components/design/rightContent/index.d.ts +16 -0
- package/lib/components/design/rightContent/index.d.ts.map +1 -0
- package/lib/components/design/rightContent/index.js +92 -0
- package/lib/components/design/rightContent/index.js.map +1 -0
- package/lib/components/design/sectionList/index.d.ts +15 -0
- package/lib/components/design/sectionList/index.d.ts.map +1 -0
- package/lib/components/design/sectionList/index.js +67 -0
- package/lib/components/design/sectionList/index.js.map +1 -0
- package/lib/components/index.d.ts +10 -4
- package/lib/components/index.d.ts.map +1 -1
- package/lib/components/index.js +25 -9
- package/lib/components/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -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"}
|
|
@@ -6,14 +6,20 @@ export { Toggle } from "./action/toggle";
|
|
|
6
6
|
export { BareSignIn } from "./auth/bareSignIn";
|
|
7
7
|
export { SignInTemplate } from "./auth/signIn";
|
|
8
8
|
export { SignUpTemplate } from "./auth/signUp";
|
|
9
|
-
export { BarChart } from "./chart/barChart";
|
|
10
|
-
export { Card } from "./chart/card";
|
|
11
|
-
export { LineChart } from "./chart/lineChart";
|
|
12
|
-
export { PieChart } from "./chart/pieChart";
|
|
13
9
|
export { DataTemplate } from "./data/dataTemplate";
|
|
14
10
|
export { Database, ReadQuery, ReadQueryType } from "./data/readQuery";
|
|
15
11
|
export { ReadQueryHoc } from "./data/readQueryHoc";
|
|
16
12
|
export { WriteQuery } from "./data/writeQuery";
|
|
13
|
+
export { Banner } from "./design/banner";
|
|
14
|
+
export { BlogSection } from "./design/blogSection";
|
|
15
|
+
export { FAQContent } from "./design/faq";
|
|
16
|
+
export { FooterSection } from "./design/footerSection";
|
|
17
|
+
export { HeroSection } from "./design/heroSection";
|
|
18
|
+
export { IconList } from "./design/iconList";
|
|
19
|
+
export { LeftContent } from "./design/leftContent";
|
|
20
|
+
export { LogoCloud } from "./design/logoCloud";
|
|
21
|
+
export { RightContent } from "./design/rightContent";
|
|
22
|
+
export { SectionList } from "./design/sectionList";
|
|
17
23
|
export { DetailList, DetailListClass } from "./display/detailList";
|
|
18
24
|
export { Feed, Feeds } from "./display/feeds";
|
|
19
25
|
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;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
|
package/lib/components/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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.
|
|
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.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.SignUpTemplate = exports.SignInTemplate = exports.BareSignIn = exports.Toggle = exports.TextButton = exports.IconButton = exports.ButtonGroup = exports.Button = void 0;
|
|
4
4
|
var button_1 = require("./action/button");
|
|
5
5
|
Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return button_1.Button; } });
|
|
6
6
|
var buttonGroup_1 = require("./action/buttonGroup");
|
|
@@ -17,14 +17,10 @@ var signIn_1 = require("./auth/signIn");
|
|
|
17
17
|
Object.defineProperty(exports, "SignInTemplate", { enumerable: true, get: function () { return signIn_1.SignInTemplate; } });
|
|
18
18
|
var signUp_1 = require("./auth/signUp");
|
|
19
19
|
Object.defineProperty(exports, "SignUpTemplate", { enumerable: true, get: function () { return signUp_1.SignUpTemplate; } });
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
var lineChart_1 = require("./chart/lineChart");
|
|
25
|
-
Object.defineProperty(exports, "LineChart", { enumerable: true, get: function () { return lineChart_1.LineChart; } });
|
|
26
|
-
var pieChart_1 = require("./chart/pieChart");
|
|
27
|
-
Object.defineProperty(exports, "PieChart", { enumerable: true, get: function () { return pieChart_1.PieChart; } });
|
|
20
|
+
// export { BarChart } from "./chart/barChart";
|
|
21
|
+
// export { Card } from "./chart/card";
|
|
22
|
+
// export { LineChart } from "./chart/lineChart";
|
|
23
|
+
// export { PieChart } from "./chart/pieChart";
|
|
28
24
|
var dataTemplate_1 = require("./data/dataTemplate");
|
|
29
25
|
Object.defineProperty(exports, "DataTemplate", { enumerable: true, get: function () { return dataTemplate_1.DataTemplate; } });
|
|
30
26
|
var readQuery_1 = require("./data/readQuery");
|
|
@@ -33,6 +29,26 @@ var readQueryHoc_1 = require("./data/readQueryHoc");
|
|
|
33
29
|
Object.defineProperty(exports, "ReadQueryHoc", { enumerable: true, get: function () { return readQueryHoc_1.ReadQueryHoc; } });
|
|
34
30
|
var writeQuery_1 = require("./data/writeQuery");
|
|
35
31
|
Object.defineProperty(exports, "WriteQuery", { enumerable: true, get: function () { return writeQuery_1.WriteQuery; } });
|
|
32
|
+
var banner_1 = require("./design/banner");
|
|
33
|
+
Object.defineProperty(exports, "Banner", { enumerable: true, get: function () { return banner_1.Banner; } });
|
|
34
|
+
var blogSection_1 = require("./design/blogSection");
|
|
35
|
+
Object.defineProperty(exports, "BlogSection", { enumerable: true, get: function () { return blogSection_1.BlogSection; } });
|
|
36
|
+
var faq_1 = require("./design/faq");
|
|
37
|
+
Object.defineProperty(exports, "FAQContent", { enumerable: true, get: function () { return faq_1.FAQContent; } });
|
|
38
|
+
var footerSection_1 = require("./design/footerSection");
|
|
39
|
+
Object.defineProperty(exports, "FooterSection", { enumerable: true, get: function () { return footerSection_1.FooterSection; } });
|
|
40
|
+
var heroSection_1 = require("./design/heroSection");
|
|
41
|
+
Object.defineProperty(exports, "HeroSection", { enumerable: true, get: function () { return heroSection_1.HeroSection; } });
|
|
42
|
+
var iconList_1 = require("./design/iconList");
|
|
43
|
+
Object.defineProperty(exports, "IconList", { enumerable: true, get: function () { return iconList_1.IconList; } });
|
|
44
|
+
var leftContent_1 = require("./design/leftContent");
|
|
45
|
+
Object.defineProperty(exports, "LeftContent", { enumerable: true, get: function () { return leftContent_1.LeftContent; } });
|
|
46
|
+
var logoCloud_1 = require("./design/logoCloud");
|
|
47
|
+
Object.defineProperty(exports, "LogoCloud", { enumerable: true, get: function () { return logoCloud_1.LogoCloud; } });
|
|
48
|
+
var rightContent_1 = require("./design/rightContent");
|
|
49
|
+
Object.defineProperty(exports, "RightContent", { enumerable: true, get: function () { return rightContent_1.RightContent; } });
|
|
50
|
+
var sectionList_1 = require("./design/sectionList");
|
|
51
|
+
Object.defineProperty(exports, "SectionList", { enumerable: true, get: function () { return sectionList_1.SectionList; } });
|
|
36
52
|
var detailList_1 = require("./display/detailList");
|
|
37
53
|
Object.defineProperty(exports, "DetailList", { enumerable: true, get: function () { return detailList_1.DetailList; } });
|
|
38
54
|
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,
|
|
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,+CAA+C;AAC/C,uCAAuC;AACvC,iDAAiD;AACjD,+CAA+C;AAC/C,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"}
|