oolib 2.51.0 → 2.52.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/HomeCover/index.js +1 -2
- package/dist/components/HomeCover/styled.d.ts +0 -1
- package/dist/components/HomeCover/styled.js +8 -3
- package/dist/components/TextInputs/index.js +2 -2
- package/dist/icons/custom/index.d.ts +32 -0
- package/dist/icons/custom/index.js +183 -1
- package/dist/icons/index.d.ts +94 -6
- package/dist/icons/index.js +47 -3
- package/dist/index.d.ts +2 -0
- package/dist/index.js +5 -2
- package/dist/themes/mixins/index.js +1 -0
- package/package.json +1 -1
|
@@ -118,8 +118,7 @@ var HomeCover = function (_a) {
|
|
|
118
118
|
paddingBottom: i + 1 !== (0, toArray_1.toArray)(desc).length ? "1rem" : 0,
|
|
119
119
|
} }, d)); }),
|
|
120
120
|
customComp && customComp,
|
|
121
|
-
CTALink && (react_1.default.createElement(Buttons_1.ButtonPrimary, { className: "HomeCover__cta", icon: "CaretRight", onClick: function () {
|
|
122
|
-
// trackEventGA("Publishing Flow",`Clicked Publish CTA Button On Listing Page`,`${title}`)
|
|
121
|
+
CTALink && (react_1.default.createElement(Buttons_1.ButtonPrimary, { className: "HomeCover__cta", icon: "CaretRight", style: { position: "absolute", bottom: 0, right: 0, borderRadius: 0 }, onClick: function () {
|
|
123
122
|
history.push(CTALink);
|
|
124
123
|
} })))),
|
|
125
124
|
react_1.default.createElement(styled_1.StyledHomeCoverImgWrapper, { breakPoint: "none" },
|
|
@@ -27,7 +27,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
27
27
|
return result;
|
|
28
28
|
};
|
|
29
29
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
|
-
exports.
|
|
30
|
+
exports.StyledHomeCoverDescContents = exports.StyledHomeCoverDesc = exports.StyledHomeCoverTitle = exports.StyledHomeCoverImgWrapper = exports.StyledHomeCoverImg = exports.StyledHomeCover = void 0;
|
|
31
31
|
var styled_components_1 = __importStar(require("styled-components"));
|
|
32
32
|
var mixins_1 = require("../../themes/mixins");
|
|
33
33
|
var themes_1 = require("../../themes");
|
|
@@ -56,5 +56,10 @@ exports.StyledHomeCoverTitle = styled_components_1.default.div(templateObject_6
|
|
|
56
56
|
}, white, (0, mixins_1.mediaQuery)("sm"), (0, mixins_1.mediaQuery)("lg"));
|
|
57
57
|
exports.StyledHomeCoverDesc = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n position: absolute;\n bottom: 0;\n width: 100%;\n z-index: 100; \n\n padding: 2rem;\n\n ", " {\n left: 50%;\n right: unset;\n }\n\n ", " {\n padding: 0;\n right: 6rem;\n width: 40rem;\n }\n"], ["\n position: absolute;\n bottom: 0;\n width: 100%;\n z-index: 100; \n\n padding: 2rem;\n\n ", " {\n left: 50%;\n right: unset;\n }\n\n ", " {\n padding: 0;\n right: 6rem;\n width: 40rem;\n }\n"])), (0, mixins_1.mediaQuery)("md"), (0, mixins_1.mediaQuery)("sm"));
|
|
58
58
|
exports.StyledHomeCoverDescContents = styled_components_1.default.div(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n padding: 5rem;\n background-color: ", ";\n position: relative;\n"], ["\n padding: 5rem;\n background-color: ", ";\n position: relative;\n"])), greyColor3);
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8;
|
|
60
|
+
// export const StyledHomeCoverCta = styled.div`
|
|
61
|
+
// position: absolute;
|
|
62
|
+
// bottom: 0;
|
|
63
|
+
// right: 0;
|
|
64
|
+
// border-radius: 0;
|
|
65
|
+
// `;
|
|
@@ -107,8 +107,8 @@ var TextInput = function (props) {
|
|
|
107
107
|
}, [_validationStatus]);
|
|
108
108
|
var composition = icon && !eyeIcon ? "icon+text" : "textOnly";
|
|
109
109
|
var size = S ? "S" : "M";
|
|
110
|
-
var actionBtnEnabaled = !!value && (type !== "url" ? true : validationStatus.type === "success");
|
|
111
|
-
var clearBtnEnabled = !!value && (type !== "url" ? true : validationStatus.type === "success");
|
|
110
|
+
var actionBtnEnabaled = !!value && (type !== "url" ? true : (validationStatus === null || validationStatus === void 0 ? void 0 : validationStatus.type) === "success");
|
|
111
|
+
var clearBtnEnabled = !!value && (type !== "url" ? true : (validationStatus === null || validationStatus === void 0 ? void 0 : validationStatus.type) === "success");
|
|
112
112
|
var handleValidate = function (e, onBlur) { return __awaiter(void 0, void 0, void 0, function () {
|
|
113
113
|
var value, res;
|
|
114
114
|
return __generator(this, function (_a) {
|
|
@@ -20,3 +20,35 @@ export function IndiaFlag(props: any): any;
|
|
|
20
20
|
export function NigeriaFlag(props: any): any;
|
|
21
21
|
export function KenyaFlag(props: any): any;
|
|
22
22
|
export function ModalBulbIcon(): any;
|
|
23
|
+
export function Location14(props: any): any;
|
|
24
|
+
export function Person14(props: any): any;
|
|
25
|
+
export function Index(): any;
|
|
26
|
+
export function Download__nofill(props: any): any;
|
|
27
|
+
export function Download(props: any): any;
|
|
28
|
+
export function UploadSM(props: any): any;
|
|
29
|
+
export function AddXS(props: any): any;
|
|
30
|
+
export function EditSM(props: any): any;
|
|
31
|
+
export function Facebook_solid_SM(props: any): any;
|
|
32
|
+
export function Linkedin_solid_SM(props: any): any;
|
|
33
|
+
export function Twitter_solid_SM(props: any): any;
|
|
34
|
+
export function Instagram_solid_SM(props: any): any;
|
|
35
|
+
export function Youtube_solid_SM(props: any): any;
|
|
36
|
+
export function Mail_solid_SM(props: any): any;
|
|
37
|
+
export function Phone_solid_SM(props: any): any;
|
|
38
|
+
export function Website_solid_SM(props: any): any;
|
|
39
|
+
export function KebabMenu(props: any): any;
|
|
40
|
+
export function UploadImage(props: any): any;
|
|
41
|
+
export function Close_S(props: any): any;
|
|
42
|
+
export function SettingsSM(props: any): any;
|
|
43
|
+
export function BoldBtn(props: any): any;
|
|
44
|
+
export function ItalicBtn(props: any): any;
|
|
45
|
+
export function UnderlineBtn(props: any): any;
|
|
46
|
+
export function LinkIcon(props: any): any;
|
|
47
|
+
export function RichFormatToolBlockquote(props: any): any;
|
|
48
|
+
export function RichFormatToolH2(props: any): any;
|
|
49
|
+
export function RichFormatToolUnorderedList(props: any): any;
|
|
50
|
+
export function RichFormatToolOrderedList(props: any): any;
|
|
51
|
+
export function PDFIcon(props: any): any;
|
|
52
|
+
export function Attachment2(props: any): any;
|
|
53
|
+
export function VideoEmbedIcon(props: any): any;
|
|
54
|
+
export function AudioEmbedIcon(props: any): any;
|
|
@@ -14,7 +14,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
14
14
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.ModalBulbIcon = exports.KenyaFlag = exports.NigeriaFlag = exports.IndiaFlag = exports.BadgeVetted = exports.BadgeMod = exports.BadgeSuperAdmin = exports.BadgeAdmin = exports.OkeGoogleIcon = exports.LetterH = exports.LanguageIcon = exports.MultipleImages = exports.IndexIcon = void 0;
|
|
17
|
+
exports.AudioEmbedIcon = exports.VideoEmbedIcon = exports.Attachment2 = exports.PDFIcon = exports.RichFormatToolOrderedList = exports.RichFormatToolUnorderedList = exports.RichFormatToolH2 = exports.RichFormatToolBlockquote = exports.LinkIcon = exports.UnderlineBtn = exports.ItalicBtn = exports.BoldBtn = exports.SettingsSM = exports.Close_S = exports.UploadImage = exports.KebabMenu = exports.Website_solid_SM = exports.Phone_solid_SM = exports.Mail_solid_SM = exports.Youtube_solid_SM = exports.Instagram_solid_SM = exports.Twitter_solid_SM = exports.Linkedin_solid_SM = exports.Facebook_solid_SM = exports.EditSM = exports.AddXS = exports.UploadSM = exports.Download = exports.Download__nofill = exports.Index = exports.Person14 = exports.Location14 = exports.ModalBulbIcon = exports.KenyaFlag = exports.NigeriaFlag = exports.IndiaFlag = exports.BadgeVetted = exports.BadgeMod = exports.BadgeSuperAdmin = exports.BadgeAdmin = exports.OkeGoogleIcon = exports.LetterH = exports.LanguageIcon = exports.MultipleImages = exports.IndexIcon = void 0;
|
|
18
18
|
var react_1 = __importDefault(require("react"));
|
|
19
19
|
var themes_1 = require("../../themes");
|
|
20
20
|
var comps_1 = require("../../utils/comps");
|
|
@@ -162,3 +162,185 @@ exports.ModalBulbIcon = ModalBulbIcon;
|
|
|
162
162
|
// />
|
|
163
163
|
// </svg>
|
|
164
164
|
// )
|
|
165
|
+
var Location14 = function (props) {
|
|
166
|
+
return (react_1.default.createElement("svg", __assign({ width: 14, height: 14, viewBox: "0 0 14 14", fill: "none" }, props),
|
|
167
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.702 12.275c1.336-1.36 4.218-4.535 4.218-6.582 0-2.665-2.186-4.826-4.882-4.826-2.697 0-4.883 2.16-4.883 4.826 0 2.047 2.882 5.221 4.218 6.582.369.376.96.376 1.33 0zM6.922 7.7a2 2 0 100-4 2 2 0 000 4z", fill: primaryColor100 }),
|
|
168
|
+
react_1.default.createElement("path", { d: "M7.702 12.275l.357.35-.357-.35zm-1.33 0l.358-.35-.357.35zm5.048-6.582c0 .404-.145.908-.422 1.484-.273.57-.657 1.175-1.09 1.77-.867 1.191-1.902 2.305-2.563 2.978l.714.7c.675-.688 1.749-1.841 2.657-3.09.455-.623.875-1.282 1.184-1.925.306-.637.52-1.298.52-1.917h-1zM7.038 1.367c2.426 0 4.382 1.942 4.382 4.326h1c0-2.947-2.415-5.326-5.382-5.326v1zM2.655 5.693c0-2.384 1.956-4.326 4.383-4.326v-1c-2.968 0-5.383 2.379-5.383 5.326h1zm4.075 6.232c-.66-.673-1.696-1.787-2.563-2.978-.433-.595-.817-1.2-1.09-1.77-.277-.576-.422-1.08-.422-1.484h-1c0 .619.215 1.28.52 1.917.309.643.73 1.302 1.184 1.926.908 1.248 1.982 2.401 2.657 3.09l.714-.701zm.615 0a.425.425 0 01-.615 0l-.714.7a1.424 1.424 0 002.043 0l-.714-.7zM8.421 5.7a1.5 1.5 0 01-1.5 1.5v1a2.5 2.5 0 002.5-2.5h-1zm-1.5-1.5a1.5 1.5 0 011.5 1.5h1a2.5 2.5 0 00-2.5-2.5v1zm-1.5 1.5a1.5 1.5 0 011.5-1.5v-1a2.5 2.5 0 00-2.5 2.5h1zm1.5 1.5a1.5 1.5 0 01-1.5-1.5h-1a2.5 2.5 0 002.5 2.5v-1z", fill: "none" })));
|
|
169
|
+
};
|
|
170
|
+
exports.Location14 = Location14;
|
|
171
|
+
var Person14 = function (props) {
|
|
172
|
+
return (react_1.default.createElement("svg", __assign({ width: 14, height: 14, viewBox: "0 0 14 14", fill: "none" }, props),
|
|
173
|
+
react_1.default.createElement("circle", { cx: 7.24, cy: 3.912, r: 2.245, stroke: props.stroke || "#9CA3A6", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
174
|
+
react_1.default.createElement("path", { d: "M12.73 12.834a5.49 5.49 0 00-10.98 0", stroke: props.stroke || "#9CA3A6", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
175
|
+
};
|
|
176
|
+
exports.Person14 = Person14;
|
|
177
|
+
var Index = function () {
|
|
178
|
+
return (react_1.default.createElement("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
179
|
+
react_1.default.createElement("path", { d: "M6 7H18", stroke: "black", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" }),
|
|
180
|
+
react_1.default.createElement("path", { d: "M6 12H18", stroke: "black", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" }),
|
|
181
|
+
react_1.default.createElement("path", { d: "M6 17L12 17", stroke: "black", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })));
|
|
182
|
+
};
|
|
183
|
+
exports.Index = Index;
|
|
184
|
+
var Download__nofill = function (props) {
|
|
185
|
+
return (react_1.default.createElement("svg", __assign({ width: 20, height: 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
186
|
+
react_1.default.createElement("path", { stroke: props.stroke || white, strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", d: "M10 14V3M4.5 10l4.793 4.793a1 1 0 001.414 0L15.5 10M6 17h8" })));
|
|
187
|
+
};
|
|
188
|
+
exports.Download__nofill = Download__nofill;
|
|
189
|
+
var Download = function (props) {
|
|
190
|
+
return (react_1.default.createElement("svg", __assign({ width: 42, height: 42, viewBox: "0 0 42 42", fill: "none" }, props),
|
|
191
|
+
react_1.default.createElement("circle", { cx: 21, cy: 21, r: 21, fill: white }),
|
|
192
|
+
react_1.default.createElement("path", { d: "M17.052 20.053L21 24l4-4", stroke: primaryColor100, strokeLinecap: "round" }),
|
|
193
|
+
react_1.default.createElement("path", { stroke: primaryColor100, strokeLinecap: "round", strokeLinejoin: "round", d: "M20.982 23.502v-9.857M27.285 22.144v5.714H14.714v-5.714" })));
|
|
194
|
+
};
|
|
195
|
+
exports.Download = Download;
|
|
196
|
+
var UploadSM = function (props) {
|
|
197
|
+
return (react_1.default.createElement("svg", __assign({ width: 21, height: 21, viewBox: "0 0 21 21", fill: "none" }, props),
|
|
198
|
+
react_1.default.createElement("path", { stroke: props.stroke || white, strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", d: "M10.816 4.96v11M16.316 8.96l-4.793-4.793a1 1 0 00-1.414 0L5.316 8.96M14.816 17.96h-8" })));
|
|
199
|
+
};
|
|
200
|
+
exports.UploadSM = UploadSM;
|
|
201
|
+
var AddXS = function (props) {
|
|
202
|
+
return (react_1.default.createElement("svg", { width: 15, height: 15, viewBox: "0 0 15 15", fill: "none" },
|
|
203
|
+
react_1.default.createElement("path", { stroke: props.stroke || primaryColor100, strokeWidth: 2, strokeLinecap: "round", d: "M7.767 1.346v13M1.306 7.884h13" })));
|
|
204
|
+
};
|
|
205
|
+
exports.AddXS = AddXS;
|
|
206
|
+
var EditSM = function (props) {
|
|
207
|
+
return (react_1.default.createElement("svg", __assign({ width: 42, height: 42, viewBox: "0 0 42 42", fill: "none" }, props),
|
|
208
|
+
react_1.default.createElement("path", { d: "M13.394 24.542L24.3 13.291a3.142 3.142 0 114.478 4.408L17.563 28.915h-4.169v-4.373z", stroke: props.stroke || primaryColor100, strokeLinecap: "round" }),
|
|
209
|
+
react_1.default.createElement("path", { stroke: props.stroke || primaryColor100, d: "M23.144 15.124l4.478 4.479" })));
|
|
210
|
+
};
|
|
211
|
+
exports.EditSM = EditSM;
|
|
212
|
+
var Facebook_solid_SM = function (props) {
|
|
213
|
+
return (react_1.default.createElement("svg", __assign({ width: 20, height: 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
214
|
+
react_1.default.createElement("path", { d: "M6.27 10.816h1.644v6.769c0 .133.109.242.242.242h2.788a.242.242 0 00.242-.242v-6.737h1.89a.242.242 0 00.24-.214l.288-2.492a.242.242 0 00-.24-.27h-2.178V6.31c0-.471.254-.71.754-.71h1.423a.242.242 0 00.242-.242V3.071a.242.242 0 00-.242-.242h-1.961a1.92 1.92 0 00-.09-.002c-.34 0-1.524.067-2.458.927-1.036.953-.892 2.093-.858 2.291v1.827H6.27a.242.242 0 00-.242.242v2.46c0 .134.109.242.242.242z", fill: props.fill || primaryColor100 })));
|
|
215
|
+
};
|
|
216
|
+
exports.Facebook_solid_SM = Facebook_solid_SM;
|
|
217
|
+
var Linkedin_solid_SM = function (props) {
|
|
218
|
+
return (react_1.default.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", fill: "none" },
|
|
219
|
+
react_1.default.createElement("path", { d: "M5.953 7.411H2.62v10h3.333v-10zM14.984 7.528c-.037-.01-.073-.022-.112-.032a2.443 2.443 0 00-.143-.026 3.412 3.412 0 00-.632-.059c-2.055 0-3.358 1.38-3.787 1.912V7.411H6.786v10h3.524v-5.454s2.663-3.424 3.787-.91v6.364h3.522v-6.748c0-1.511-1.121-2.77-2.635-3.135zM4.286 6.577a1.667 1.667 0 100-3.334 1.667 1.667 0 000 3.334z", fill: props.fill || primaryColor100 })));
|
|
220
|
+
};
|
|
221
|
+
exports.Linkedin_solid_SM = Linkedin_solid_SM;
|
|
222
|
+
var Twitter_solid_SM = function (props) {
|
|
223
|
+
return (react_1.default.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", fill: "none" },
|
|
224
|
+
react_1.default.createElement("path", { d: "M17.494 8.029a6.777 6.777 0 01-1.757.445c.632-.349 1.115-.897 1.341-1.557-.589.325-1.24.554-1.934.682a3.18 3.18 0 00-2.228-.891c-1.688 0-3.047 1.265-3.047 2.816 0 .223.02.438.07.642-2.535-.114-4.78-1.236-6.286-2.945a2.67 2.67 0 00-.418 1.423c0 .975.544 1.84 1.355 2.34-.49-.008-.97-.14-1.378-.347v.031c0 1.368 1.057 2.505 2.443 2.767a3.282 3.282 0 01-.8.092c-.195 0-.392-.01-.577-.048.396 1.115 1.517 1.935 2.85 1.962a6.46 6.46 0 01-3.781 1.2c-.25 0-.49-.01-.73-.038a9.113 9.113 0 004.679 1.263c5.612 0 8.68-4.291 8.68-8.011a6.64 6.64 0 00-.01-.364 5.849 5.849 0 001.528-1.462z", fill: props.fill || primaryColor100 })));
|
|
225
|
+
};
|
|
226
|
+
exports.Twitter_solid_SM = Twitter_solid_SM;
|
|
227
|
+
var Instagram_solid_SM = function (props) {
|
|
228
|
+
return (react_1.default.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", fill: "none" },
|
|
229
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.694 7.358A3.453 3.453 0 016.09 3.962c1.188-.02 2.496-.036 3.566-.036 1.07 0 2.377.016 3.565.036a3.453 3.453 0 013.398 3.396c.02 1.188.037 2.496.037 3.567 0 1.06-.017 2.355-.037 3.535a3.476 3.476 0 01-3.43 3.411l-3.533.055-3.534-.055a3.476 3.476 0 01-3.43-3.41c-.02-1.18-.036-2.476-.036-3.537 0-1.07.016-2.378.037-3.566zm11.622-.496a.91.91 0 11-1.818 0 .91.91 0 011.818 0zm-2.11 4.064a2.55 2.55 0 11-5.1 0 2.55 2.55 0 015.1 0zm1.2 0a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0z", fill: props.fill || primaryColor100 })));
|
|
230
|
+
};
|
|
231
|
+
exports.Instagram_solid_SM = Instagram_solid_SM;
|
|
232
|
+
var Youtube_solid_SM = function (props) {
|
|
233
|
+
return (react_1.default.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", fill: "none" },
|
|
234
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.093 6.17a3.307 3.307 0 00-3.082 2.984c-.101 1.079-.188 2.29-.188 3.273 0 .977.086 2.182.186 3.258.153 1.628 1.47 2.88 3.102 2.989 1.832.122 4.244.253 6.212.253 1.66 0 3.66-.116 5.246-.232a3.3 3.3 0 003.064-2.978c.102-1.084.19-2.303.19-3.29 0-.982-.087-2.194-.188-3.273a3.307 3.307 0 00-3.083-2.984c-1.709-.12-3.913-.243-5.73-.243-1.815 0-4.02.123-5.729.243zm8.755 6.257l-5-3v6l5-3z", fill: props.fill || primaryColor100 })));
|
|
235
|
+
};
|
|
236
|
+
exports.Youtube_solid_SM = Youtube_solid_SM;
|
|
237
|
+
var Mail_solid_SM = function (props) {
|
|
238
|
+
return (react_1.default.createElement("svg", __assign({ width: 20, height: 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
239
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.88 4.616l7.303 6.226a1.75 1.75 0 002.27 0l7.303-6.227c.04.124.062.255.062.388v9.515c0 .33-.131.646-.366.879a1.254 1.254 0 01-.884.364h-14.5c-.33 0-.649-.131-.883-.364a1.238 1.238 0 01-.367-.879V5.003c0-.133.022-.263.063-.387zm.67-.743c.162-.073.338-.112.519-.112h14.499c.18 0 .356.038.517.111l-7.28 6.21-.358.167a.743.743 0 01-.615-.168L2.55 3.873zm7.897 6.376l-1.264.593 1.264-.593zm.357-.168l-.357.168a.75.75 0 00.357-.168z", fill: primaryColor100 })));
|
|
240
|
+
};
|
|
241
|
+
exports.Mail_solid_SM = Mail_solid_SM;
|
|
242
|
+
var Phone_solid_SM = function (props) {
|
|
243
|
+
return (react_1.default.createElement("svg", __assign({ width: 20, height: 20, viewBox: "0 0 20 20", fill: "none" }, props),
|
|
244
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.282 12.9c3.266 3.82 6.707 4.744 10.326 2.775a1.224 1.224 0 00.624-.892 1.2 1.2 0 00-.347-1.029l-1.582-1.56a1.238 1.238 0 00-1.67-.064l-1.55 1.307c-2.044-.435-3.813-2.173-5.307-5.212.552-.555 1-1.005 1.35-1.347A1.206 1.206 0 008.13 5.16l-.002-.002-1.97-1.943a1.233 1.233 0 00-.97-.352 1.243 1.243 0 00-.9.502c-1.887 2.595-1.224 5.772 1.994 9.535z", fill: primaryColor100 })));
|
|
245
|
+
};
|
|
246
|
+
exports.Phone_solid_SM = Phone_solid_SM;
|
|
247
|
+
var Website_solid_SM = function (props) {
|
|
248
|
+
return (react_1.default.createElement("svg", { width: 20, height: 20, viewBox: "0 0 20 20", fill: "none" },
|
|
249
|
+
react_1.default.createElement("path", { d: "M11.672 18.17a16.002 16.002 0 001.771-4.77h4.235a8 8 0 01-6.006 4.77zM9.48 17.488a.94.94 0 001.654 0 15.201 15.201 0 001.492-4.089H7.989a15.2 15.2 0 001.491 4.089zM8.945 18.17a8 8 0 01-6.007-4.77h4.236a16 16 0 001.77 4.77zM13.58 7.976c.224 1.533.224 3.09 0 4.623h4.386a8.002 8.002 0 000-4.623H13.58zM12.771 12.599a15.202 15.202 0 000-4.623H7.844a15.2 15.2 0 000 4.623h4.927zM7.035 12.599a16 16 0 010-4.623H2.65a8 8 0 000 4.623h4.386zM11.672 2.403a16.002 16.002 0 011.771 4.772h4.235a8 8 0 00-6.006-4.772zM9.48 3.086A15.2 15.2 0 007.99 7.174h4.637a15.202 15.202 0 00-1.492-4.088.94.94 0 00-1.654 0zM2.938 7.175h4.236a16 16 0 011.77-4.772 8 8 0 00-6.006 4.772z", fill: props.fill || primaryColor100 })));
|
|
250
|
+
};
|
|
251
|
+
exports.Website_solid_SM = Website_solid_SM;
|
|
252
|
+
var KebabMenu = function (props) {
|
|
253
|
+
return (react_1.default.createElement("svg", { width: 11, height: 24, viewBox: "0 0 11 24" },
|
|
254
|
+
react_1.default.createElement("path", { d: "M5.581 7.16a1.505 1.505 0 100-3.01 1.505 1.505 0 000 3.01zM5.581 13.525a1.505 1.505 0 100-3.01 1.505 1.505 0 000 3.01zM5.581 19.89a1.505 1.505 0 100-3.01 1.505 1.505 0 000 3.01z", fill: props.fill || primaryColor100 })));
|
|
255
|
+
};
|
|
256
|
+
exports.KebabMenu = KebabMenu;
|
|
257
|
+
var UploadImage = function (props) {
|
|
258
|
+
return (react_1.default.createElement("svg", { width: props.size || 20, height: props.size || 20, viewBox: "0 0 20 20", fill: "none" },
|
|
259
|
+
react_1.default.createElement("rect", { x: 1, y: 1, width: 18, height: 18, rx: 2, stroke: props.stroke || primaryColor100 }),
|
|
260
|
+
react_1.default.createElement("path", { d: "M1.06 13.352L6.041 7.47a1 1 0 011.466-.065l2.521 2.492 2.207 2.18M10 9.041l1.346-1.581a1 1 0 011.459-.07l6.136 5.962", stroke: props.stroke || primaryColor100, strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
261
|
+
react_1.default.createElement("path", { d: "M9.499 5.473a1.118 1.118 0 100-2.236 1.118 1.118 0 000 2.236z", fill: props.stroke || primaryColor100 })));
|
|
262
|
+
};
|
|
263
|
+
exports.UploadImage = UploadImage;
|
|
264
|
+
var Close_S = function (props) {
|
|
265
|
+
return (react_1.default.createElement("svg", __assign({ width: 13, height: 13, viewBox: "0 0 13 13", fill: "none" }, props),
|
|
266
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.693 1.785a.75.75 0 010 1.06L2.56 10.978a.75.75 0 11-1.06-1.06l8.131-8.132a.75.75 0 011.06 0z", fill: props.fill || black }),
|
|
267
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.5 1.785a.75.75 0 011.061 0l8.132 8.132a.75.75 0 11-1.06 1.06L1.5 2.847a.75.75 0 010-1.06z", fill: props.fill || black })));
|
|
268
|
+
};
|
|
269
|
+
exports.Close_S = Close_S;
|
|
270
|
+
var SettingsSM = function (props) {
|
|
271
|
+
return (react_1.default.createElement("svg", { width: 19, height: 20, viewBox: "0 0 19 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
|
272
|
+
react_1.default.createElement("path", { d: "M4.691 2.11L7.554.925a.044.044 0 01.028-.001.037.037 0 01.02.015l.982 1.474.223.334H10.193l.223-.334.982-1.474a.038.038 0 01.02-.015.044.044 0 01.028 0l2.87 1.2h0l.007.002.003.003a.032.032 0 01.006.008l.002.004v.002l-.346 1.75-.078.393.283.283.41.41.283.283.393-.078 1.75-.346h.002c.002 0 .004 0 .008.003.01.005.017.013.021.022l1.187 2.863c.004.011.003.02.001.027a.037.037 0 01-.015.02l-.001.001-1.473.982-.334.223V10.364l.334.223 1.473.981s0 0 0 0c.01.007.014.014.016.021a.043.043 0 010 .028l-1.2 2.87h0l-.003.007s0 .002-.002.003a.034.034 0 01-.01.008h-.004l-1.75-.347-.393-.077-.283.283-.41.41-.283.283.078.393.346 1.75h0v.002a.053.053 0 01-.025.029l-2.851 1.182a.115.115 0 01-.035.006.05.05 0 01-.01 0s0 0 0 0l-.002-.001s0 0 0 0l-.003-.002a.076.076 0 01-.01-.013l-.982-1.473-.223-.334H8.807l-.223.334-.981 1.473h-.001a.037.037 0 01-.02.016.044.044 0 01-.028 0l-2.87-1.2h0l-.007-.003s-.002 0-.003-.002a.032.032 0 01-.008-.012V17.2l.346-1.75.078-.393-.283-.283-.41-.41-.283-.283-.393.077-1.75.347h0-.002a.053.053 0 01-.029-.025L.753 11.617a.044.044 0 01-.001-.028.038.038 0 01.015-.02l1.474-.982.334-.223V8.978l-.334-.223-1.474-.982a.037.037 0 01-.015-.02.043.043 0 010-.028l1.2-2.87h0l.003-.007.002-.004a.03.03 0 01.012-.007h.002l1.75.346.393.078.283-.283.41-.41.283-.283-.077-.393-.347-1.75h0v-.003s0-.003.003-.007a.053.053 0 01.022-.021zm12.343 12.396h0zm-12.369 2.7h0z", stroke: props.stroke || primaryColor100, strokeWidth: 1.3 }),
|
|
273
|
+
react_1.default.createElement("circle", { cx: 9.5, cy: 9.671, r: 3.12, stroke: props.stroke || primaryColor100, strokeWidth: 1.3 })));
|
|
274
|
+
};
|
|
275
|
+
exports.SettingsSM = SettingsSM;
|
|
276
|
+
var BoldBtn = function (props) {
|
|
277
|
+
return (react_1.default.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
278
|
+
react_1.default.createElement("path", { d: "M8.443 17.611V7.49h3.493c.663 0 1.228.063 1.694.19.472.125.857.305 1.155.538.304.233.525.516.665.847.14.331.21.705.21 1.12 0 .238-.035.467-.105.686-.07.215-.18.418-.329.61a2.385 2.385 0 01-.56.51 3.315 3.315 0 01-.805.392c1.39.313 2.086 1.064 2.086 2.254 0 .43-.081.826-.245 1.19a2.658 2.658 0 01-.714.945 3.448 3.448 0 01-1.155.616c-.457.15-.98.224-1.568.224H8.443zm1.883-4.438v2.968h1.911c.35 0 .642-.042.875-.126.238-.084.427-.196.567-.336.145-.14.248-.303.308-.49a1.79 1.79 0 00.098-.595c0-.22-.035-.415-.105-.588a1.08 1.08 0 00-.329-.448 1.508 1.508 0 00-.574-.287 3.178 3.178 0 00-.847-.098h-1.904zm0-1.302h1.505c.64 0 1.125-.117 1.456-.35.332-.233.497-.604.497-1.113 0-.527-.15-.903-.448-1.127-.298-.224-.765-.336-1.4-.336h-1.61v2.926z", fill: "#fff" })));
|
|
279
|
+
};
|
|
280
|
+
exports.BoldBtn = BoldBtn;
|
|
281
|
+
var ItalicBtn = function (props) {
|
|
282
|
+
return (react_1.default.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
283
|
+
react_1.default.createElement("path", { d: "M12.193 17.37h-1.827L11.605 7.25h1.827l-1.24 10.122z", fill: "#fff" })));
|
|
284
|
+
};
|
|
285
|
+
exports.ItalicBtn = ItalicBtn;
|
|
286
|
+
var UnderlineBtn = function (props) {
|
|
287
|
+
return (react_1.default.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
288
|
+
react_1.default.createElement("path", { d: "M11.806 16.092c.364 0 .688-.06.973-.182.29-.121.532-.292.728-.51.2-.22.352-.486.455-.799.107-.313.16-.663.16-1.05V7.49h1.884v6.062c0 .602-.098 1.16-.294 1.673-.191.509-.47.95-.833 1.323a3.882 3.882 0 01-1.323.868c-.518.205-1.101.308-1.75.308s-1.232-.103-1.75-.308c-.518-.21-.96-.5-1.323-.868a3.912 3.912 0 01-.833-1.323 4.753 4.753 0 01-.287-1.673V7.49h1.883v6.055c0 .387.051.737.154 1.05.107.313.259.581.455.805.196.22.436.39.72.511.29.121.617.182.98.182zM6.71 19.011h10.192v1.12H6.71v-1.12z", fill: "#fff" })));
|
|
289
|
+
};
|
|
290
|
+
exports.UnderlineBtn = UnderlineBtn;
|
|
291
|
+
var LinkIcon = function (props) {
|
|
292
|
+
return (react_1.default.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "#fff" }, props),
|
|
293
|
+
react_1.default.createElement("path", { d: "M12.519 16.377L9.597 19.3a3.099 3.099 0 01-4.382 0v0a3.099 3.099 0 010-4.382l2.922-2.922M11.51 8.623L14.43 5.7a3.099 3.099 0 014.383 0v0a3.099 3.099 0 010 4.382l-2.922 2.922M9.206 15.165l5.529-5.431", stroke: props.stroke || "#fff", fill: "#fff", strokeLinecap: "round" })));
|
|
294
|
+
};
|
|
295
|
+
exports.LinkIcon = LinkIcon;
|
|
296
|
+
var RichFormatToolBlockquote = function (props) {
|
|
297
|
+
return (react_1.default.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
298
|
+
react_1.default.createElement("path", { d: "M5 13.773c0-1.413.256-2.247 1.09-3.6.86-1.38 2.546-2.734 3.772-3.364l.391.758c-1.055.75-1.737 1.337-2.486 2.775a4.207 4.207 0 00-.4 1.09c.162-.034.34-.051.52-.051 1.549 0 2.8 1.26 2.8 2.81 0 1.549-1.251 2.809-2.8 2.809a2.797 2.797 0 01-2.7-2.06A3.49 3.49 0 015 13.773zM12.313 13.773c0-1.413.255-2.247 1.09-3.6.86-1.38 2.545-2.734 3.771-3.364l.392.758c-1.056.75-1.737 1.337-2.486 2.775a4.205 4.205 0 00-.4 1.09c.161-.034.34-.051.519-.051 1.55 0 2.801 1.26 2.801 2.81C18 15.74 16.748 17 15.199 17a2.797 2.797 0 01-2.7-2.06 3.49 3.49 0 01-.186-1.167z", fill: "#fff" })));
|
|
299
|
+
};
|
|
300
|
+
exports.RichFormatToolBlockquote = RichFormatToolBlockquote;
|
|
301
|
+
var RichFormatToolH2 = function (props) {
|
|
302
|
+
return (react_1.default.createElement("svg", __assign({ width: 20, height: 20, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props),
|
|
303
|
+
react_1.default.createElement("path", { d: "M7 5.625v8.75M3 5h7.75M15.291 7.983v5.012M13 7.625h4.44", stroke: "#fff", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
304
|
+
};
|
|
305
|
+
exports.RichFormatToolH2 = RichFormatToolH2;
|
|
306
|
+
var RichFormatToolUnorderedList = function (props) {
|
|
307
|
+
return (react_1.default.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
308
|
+
react_1.default.createElement("path", { d: "M4.57 7.142A1.57 1.57 0 104.57 4a1.57 1.57 0 000 3.142zM4.57 14.013a1.57 1.57 0 100-3.142 1.57 1.57 0 000 3.142zM4.57 20.296a1.57 1.57 0 100-3.142 1.57 1.57 0 000 3.142z", fill: "#fff" }),
|
|
309
|
+
react_1.default.createElement("path", { d: "M8.861 5.57h12.574M8.861 12.442h12.574M8.861 18.725h12.574", stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
310
|
+
};
|
|
311
|
+
exports.RichFormatToolUnorderedList = RichFormatToolUnorderedList;
|
|
312
|
+
var RichFormatToolOrderedList = function (props) {
|
|
313
|
+
return (react_1.default.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
314
|
+
react_1.default.createElement("g", { clipPath: "url(#prefix__clip0__".concat(id, ")") },
|
|
315
|
+
react_1.default.createElement("path", { d: "M9.217 12.356H21.79M9.217 5.785H21.79M9.217 18.927H21.79", stroke: "#fff", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
316
|
+
react_1.default.createElement("path", { d: "M4.302 7h-.906V4.522c0-.104.002-.24.006-.408.008-.168.014-.316.018-.444a5.47 5.47 0 01-.312.294l-.492.396-.438-.546 1.38-1.098h.744V7zM5.058 14H2.064v-.63l1.074-1.086c.216-.224.39-.41.522-.558.132-.152.228-.288.288-.408a.897.897 0 00.09-.396c0-.172-.048-.3-.144-.384a.54.54 0 00-.378-.126c-.164 0-.324.038-.48.114a2.59 2.59 0 00-.492.324l-.492-.582c.124-.108.254-.208.39-.3.14-.092.3-.166.48-.222.184-.06.404-.09.66-.09.28 0 .52.052.72.156a1.102 1.102 0 01.636 1.002c0 .236-.048.452-.144.648-.092.196-.228.39-.408.582-.176.192-.39.404-.642.636l-.552.516v.042h1.866V14zM4.89 17.676c0 .296-.09.532-.27.708a1.366 1.366 0 01-.654.36v.018c.344.04.604.144.78.312.18.168.27.394.27.678 0 .248-.062.472-.186.672-.12.196-.308.352-.564.468-.252.112-.578.168-.978.168-.464 0-.876-.078-1.236-.234v-.768a2.685 2.685 0 001.14.282c.324 0 .55-.056.678-.168.132-.112.198-.27.198-.474 0-.12-.03-.22-.09-.3-.06-.084-.166-.146-.318-.186a2.295 2.295 0 00-.624-.066h-.324v-.696h.33c.264 0 .464-.024.6-.072.14-.052.234-.12.282-.204a.578.578 0 00.078-.3.445.445 0 00-.144-.354c-.092-.088-.248-.132-.468-.132-.204 0-.382.036-.534.108a2.934 2.934 0 00-.378.204l-.42-.624c.168-.12.364-.22.588-.3.228-.08.498-.12.81-.12.44 0 .788.09 1.044.27.26.176.39.426.39.75z", fill: "#fff" })),
|
|
317
|
+
react_1.default.createElement("defs", null,
|
|
318
|
+
react_1.default.createElement("clipPath", { id: "prefix__clip0__".concat(id) },
|
|
319
|
+
react_1.default.createElement("path", { fill: "#fff", d: "M0 0h24v24H0z" })))));
|
|
320
|
+
};
|
|
321
|
+
exports.RichFormatToolOrderedList = RichFormatToolOrderedList;
|
|
322
|
+
var PDFIcon = function (props) {
|
|
323
|
+
return (react_1.default.createElement("svg", __assign({ width: 25, height: 25, viewBox: "0 0 25 25", fill: "none" }, props),
|
|
324
|
+
react_1.default.createElement("path", { d: "M8.32 14.378c.557 0 .96.116 1.213.348.256.232.384.552.384.96 0 .244-.052.474-.156.69-.104.212-.28.384-.528.516-.244.128-.576.192-.996.192H7.81v1.578h-.768v-4.284H8.32zm-.047.636H7.81v1.434h.348c.312 0 .552-.056.72-.168.172-.116.258-.304.258-.564 0-.236-.07-.412-.21-.528-.14-.116-.358-.174-.654-.174zm5.989 1.464c0 .724-.202 1.27-.606 1.638-.404.364-.968.546-1.692.546h-1.206v-4.284h1.332c.44 0 .822.08 1.146.24.328.16.58.396.756.708.18.308.27.692.27 1.152zm-.804.024c0-.512-.118-.888-.354-1.128-.232-.24-.57-.36-1.014-.36h-.564v3.006h.462c.98 0 1.47-.506 1.47-1.518zm2.474 2.16h-.756v-4.284h2.43v.642h-1.674v1.26h1.56v.642h-1.56v1.74z", fill: "#fff" }),
|
|
325
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M13.122 3.709H6.248a1 1 0 00-1 1v16a1 1 0 001 1h12a1 1 0 001-1V9.543h-4.626a1.5 1.5 0 01-1.5-1.5V3.709zm7.126 5.334v11.666a2 2 0 01-2 2h-12a2 2 0 01-2-2v-16a2 2 0 012-2h7.374l6.626 6.334zm-1.97-.5L14.121 4.57v3.473a.5.5 0 00.5.5h3.655z", fill: "#fff" })));
|
|
326
|
+
};
|
|
327
|
+
exports.PDFIcon = PDFIcon;
|
|
328
|
+
var Attachment2 = function (props) {
|
|
329
|
+
return (react_1.default.createElement("svg", __assign({ width: 25, height: 27, viewBox: "0 0 25 27", fill: "none" }, props),
|
|
330
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.264 26.023a2.51 2.51 0 01-2.504-2.53v-8.016c0-.924.688-1.648 1.596-1.648.909 0 1.596.724 1.596 1.648v7.368a.3.3 0 01-.299.299.3.3 0 01-.298-.3v-7.367c0-.57-.392-1.05-.999-1.05s-.998.48-.998 1.05v8.016c0 1.052.847 1.933 1.906 1.933a1.909 1.909 0 001.907-1.933v-8.172c0-1.545-1.263-2.84-2.815-2.84-1.55 0-2.814 1.268-2.814 2.84v7.524a.3.3 0 01-.299.299.3.3 0 01-.299-.3v-7.523c0-1.904 1.512-3.438 3.412-3.438s3.412 1.534 3.412 3.438v8.147c0 1.413-1.125 2.555-2.504 2.555z", fill: "#fff" }),
|
|
331
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.672 23.493a2.597 2.597 0 002.592 2.618c1.43 0 2.592-1.184 2.592-2.644V15.32c0-1.952-1.55-3.526-3.5-3.526-1.949 0-3.5 1.574-3.5 3.526v7.523c0 .213.175.387.387.387a.388.388 0 00.387-.387v-7.523c0-1.525 1.226-2.752 2.726-2.752 1.502 0 2.727 1.254 2.727 2.752v8.172a1.82 1.82 0 01-1.819 1.844c-1.009 0-1.818-.84-1.818-1.844v-8.016c0-.53.36-.963.91-.963s.91.434.91.963v7.367a.388.388 0 00.774 0v-7.368c0-.97-.724-1.735-1.684-1.735s-1.684.766-1.684 1.736v8.016zm.088 0a2.51 2.51 0 002.504 2.53c1.38 0 2.504-1.142 2.504-2.555V15.32c0-1.904-1.512-3.438-3.412-3.438s-3.412 1.534-3.412 3.438v7.524a.3.3 0 00.3.299.3.3 0 00.298-.3v-7.523c0-1.572 1.265-2.84 2.814-2.84 1.552 0 2.815 1.295 2.815 2.84v8.172c0 1.08-.849 1.933-1.907 1.933-1.06 0-1.906-.881-1.906-1.933v-8.016c0-.57.391-1.05.998-1.05s.999.48.999 1.05v7.368a.3.3 0 00.298.299.3.3 0 00.3-.3v-7.367c0-.924-.688-1.648-1.597-1.648-.908 0-1.596.724-1.596 1.648v8.016z", fill: "#fff" }),
|
|
332
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.248 4.197h6.874v4.334a1.5 1.5 0 001.5 1.5h4.626v11.166a1 1 0 01-1 1h-2.473v1h2.473a2 2 0 002-2V9.531l-6.626-6.334H6.248a2 2 0 00-2 2v16a2 2 0 002 2h.787v-1h-.787a1 1 0 01-1-1v-16a1 1 0 011-1zm7.874.862l4.155 3.972h-3.655a.5.5 0 01-.5-.5V5.059z", fill: "#fff" })));
|
|
333
|
+
};
|
|
334
|
+
exports.Attachment2 = Attachment2;
|
|
335
|
+
var VideoEmbedIcon = function (props) {
|
|
336
|
+
return (react_1.default.createElement("svg", __assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props),
|
|
337
|
+
react_1.default.createElement("rect", { x: 3.685, y: 3.076, width: 17, height: 17, rx: 1.5, stroke: "#fff" }),
|
|
338
|
+
react_1.default.createElement("path", { d: "M10.185 9.5v5.08a.5.5 0 00.8.4l3.627-2.709a.5.5 0 00-.026-.82l-3.628-2.37a.5.5 0 00-.773.42z", fill: "#fff" })));
|
|
339
|
+
};
|
|
340
|
+
exports.VideoEmbedIcon = VideoEmbedIcon;
|
|
341
|
+
var AudioEmbedIcon = function (props) {
|
|
342
|
+
return (react_1.default.createElement("svg", __assign({ width: 21, height: 20, viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, props),
|
|
343
|
+
react_1.default.createElement("path", { d: "M5.536 7.318l.018-.012.016-.013 6.533-5.214c.033-.024.09-.034.15-.006a.117.117 0 01.05.038c.004.006.008.015.007.035v15.868a.083.083 0 01-.016.051.157.157 0 01-.064.05c-.068.03-.126.018-.158-.005L5.54 12.896l-.017-.013-.018-.012a1.156 1.156 0 00-.646-.207H1.115a.137.137 0 01-.032-.003.229.229 0 01-.02-.111V7.639c0-.065.02-.098.028-.107a.026.026 0 01.003-.004h.001l.004-.002a.075.075 0 01.016 0h3.744c.271 0 .52-.103.677-.208z", stroke: white }),
|
|
344
|
+
react_1.default.createElement("path", { d: "M17.609 5.406a6.625 6.625 0 011.953 4.689 6.626 6.626 0 01-1.953 4.688M15.319 6.5a4.99 4.99 0 011.485 3.595c0 1.367-.547 2.617-1.485 3.594", stroke: white, strokeLinecap: "round", strokeLinejoin: "round" })));
|
|
345
|
+
};
|
|
346
|
+
exports.AudioEmbedIcon = AudioEmbedIcon;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export namespace icons {
|
|
|
43
43
|
export { ArrowsOut };
|
|
44
44
|
export { MapPin };
|
|
45
45
|
export { ArrowDown };
|
|
46
|
+
export { ArrowsDownUp };
|
|
46
47
|
export { ArrowUp };
|
|
47
48
|
export { GearSix };
|
|
48
49
|
export { Wrench };
|
|
@@ -87,6 +88,20 @@ export namespace icons {
|
|
|
87
88
|
export { LinkSimple };
|
|
88
89
|
export { Laptop };
|
|
89
90
|
export { Info };
|
|
91
|
+
export { DotsSixVertical };
|
|
92
|
+
export { Bell };
|
|
93
|
+
export { UserSwitch };
|
|
94
|
+
export { PlusMinus };
|
|
95
|
+
export { SelectionAll };
|
|
96
|
+
export { Activity };
|
|
97
|
+
export { Browsers };
|
|
98
|
+
export { Cube };
|
|
99
|
+
export { Table };
|
|
100
|
+
export { UserList };
|
|
101
|
+
export { Binoculars };
|
|
102
|
+
export { LightbulbFilament };
|
|
103
|
+
export { Keyboard };
|
|
104
|
+
export { TextAa };
|
|
90
105
|
export { OkeGoogleIcon };
|
|
91
106
|
export { LetterH };
|
|
92
107
|
export { IndexIcon };
|
|
@@ -99,10 +114,39 @@ export namespace icons {
|
|
|
99
114
|
export { KenyaFlag };
|
|
100
115
|
export { NigeriaFlag };
|
|
101
116
|
export { MultipleImages };
|
|
102
|
-
export { LightbulbFilament };
|
|
103
117
|
export { ModalBulbIcon };
|
|
104
|
-
export {
|
|
105
|
-
export {
|
|
118
|
+
export { Location14 };
|
|
119
|
+
export { Person14 };
|
|
120
|
+
export { Index };
|
|
121
|
+
export { Download__nofill };
|
|
122
|
+
export { Download };
|
|
123
|
+
export { UploadSM };
|
|
124
|
+
export { AddXS };
|
|
125
|
+
export { EditSM };
|
|
126
|
+
export { Facebook_solid_SM };
|
|
127
|
+
export { Linkedin_solid_SM };
|
|
128
|
+
export { Twitter_solid_SM };
|
|
129
|
+
export { Instagram_solid_SM };
|
|
130
|
+
export { Youtube_solid_SM };
|
|
131
|
+
export { Mail_solid_SM };
|
|
132
|
+
export { Phone_solid_SM };
|
|
133
|
+
export { Website_solid_SM };
|
|
134
|
+
export { KebabMenu };
|
|
135
|
+
export { UploadImage };
|
|
136
|
+
export { Close_S };
|
|
137
|
+
export { Settings_SM };
|
|
138
|
+
export { BoldBtn };
|
|
139
|
+
export { ItalicBtn };
|
|
140
|
+
export { UnderlineBtn };
|
|
141
|
+
export { LinkIcon };
|
|
142
|
+
export { RichFormatToolBlockquote };
|
|
143
|
+
export { RichFormatToolH2 };
|
|
144
|
+
export { RichFormatToolUnorderedList };
|
|
145
|
+
export { RichFormatToolOrderedList };
|
|
146
|
+
export { PDFIcon };
|
|
147
|
+
export { Attachment2 };
|
|
148
|
+
export { VideoEmbedIcon };
|
|
149
|
+
export { AudioEmbedIcon };
|
|
106
150
|
}
|
|
107
151
|
import { PencilSimple } from "phosphor-react";
|
|
108
152
|
import { PencilLine } from "phosphor-react";
|
|
@@ -148,6 +192,7 @@ import { ArrowsIn } from "phosphor-react";
|
|
|
148
192
|
import { ArrowsOut } from "phosphor-react";
|
|
149
193
|
import { MapPin } from "phosphor-react";
|
|
150
194
|
import { ArrowDown } from "phosphor-react";
|
|
195
|
+
import { ArrowsDownUp } from "phosphor-react";
|
|
151
196
|
import { ArrowUp } from "phosphor-react";
|
|
152
197
|
import { GearSix } from "phosphor-react";
|
|
153
198
|
import { Wrench } from "phosphor-react";
|
|
@@ -192,6 +237,20 @@ import { FolderSimpleStar } from "phosphor-react";
|
|
|
192
237
|
import { LinkSimple } from "phosphor-react";
|
|
193
238
|
import { Laptop } from "phosphor-react";
|
|
194
239
|
import { Info } from "phosphor-react";
|
|
240
|
+
import { DotsSixVertical } from "phosphor-react";
|
|
241
|
+
import { Bell } from "phosphor-react";
|
|
242
|
+
import { UserSwitch } from "phosphor-react";
|
|
243
|
+
import { PlusMinus } from "phosphor-react";
|
|
244
|
+
import { SelectionAll } from "phosphor-react";
|
|
245
|
+
import { Activity } from "phosphor-react";
|
|
246
|
+
import { Browsers } from "phosphor-react";
|
|
247
|
+
import { Cube } from "phosphor-react";
|
|
248
|
+
import { Table } from "phosphor-react";
|
|
249
|
+
import { UserList } from "phosphor-react";
|
|
250
|
+
import { Binoculars } from "phosphor-react";
|
|
251
|
+
import { LightbulbFilament } from "phosphor-react";
|
|
252
|
+
import { Keyboard } from "phosphor-react";
|
|
253
|
+
import { TextAa } from "phosphor-react";
|
|
195
254
|
import { OkeGoogleIcon } from "./custom";
|
|
196
255
|
import { LetterH } from "./custom";
|
|
197
256
|
import { IndexIcon } from "./custom";
|
|
@@ -204,7 +263,36 @@ import { IndiaFlag } from "./custom";
|
|
|
204
263
|
import { KenyaFlag } from "./custom";
|
|
205
264
|
import { NigeriaFlag } from "./custom";
|
|
206
265
|
import { MultipleImages } from "./custom";
|
|
207
|
-
import { LightbulbFilament } from "phosphor-react";
|
|
208
266
|
import { ModalBulbIcon } from "./custom";
|
|
209
|
-
import {
|
|
210
|
-
import {
|
|
267
|
+
import { Location14 } from "./custom";
|
|
268
|
+
import { Person14 } from "./custom";
|
|
269
|
+
import { Index } from "./custom";
|
|
270
|
+
import { Download__nofill } from "./custom";
|
|
271
|
+
import { Download } from "./custom";
|
|
272
|
+
import { UploadSM } from "./custom";
|
|
273
|
+
import { AddXS } from "./custom";
|
|
274
|
+
import { EditSM } from "./custom";
|
|
275
|
+
import { Facebook_solid_SM } from "./custom";
|
|
276
|
+
import { Linkedin_solid_SM } from "./custom";
|
|
277
|
+
import { Twitter_solid_SM } from "./custom";
|
|
278
|
+
import { Instagram_solid_SM } from "./custom";
|
|
279
|
+
import { Youtube_solid_SM } from "./custom";
|
|
280
|
+
import { Mail_solid_SM } from "./custom";
|
|
281
|
+
import { Phone_solid_SM } from "./custom";
|
|
282
|
+
import { Website_solid_SM } from "./custom";
|
|
283
|
+
import { KebabMenu } from "./custom";
|
|
284
|
+
import { UploadImage } from "./custom";
|
|
285
|
+
import { Close_S } from "./custom";
|
|
286
|
+
import { SettingsSM as Settings_SM } from "./custom";
|
|
287
|
+
import { BoldBtn } from "./custom";
|
|
288
|
+
import { ItalicBtn } from "./custom";
|
|
289
|
+
import { UnderlineBtn } from "./custom";
|
|
290
|
+
import { LinkIcon } from "./custom";
|
|
291
|
+
import { RichFormatToolBlockquote } from "./custom";
|
|
292
|
+
import { RichFormatToolH2 } from "./custom";
|
|
293
|
+
import { RichFormatToolUnorderedList } from "./custom";
|
|
294
|
+
import { RichFormatToolOrderedList } from "./custom";
|
|
295
|
+
import { PDFIcon } from "./custom";
|
|
296
|
+
import { Attachment2 } from "./custom";
|
|
297
|
+
import { VideoEmbedIcon } from "./custom";
|
|
298
|
+
import { AudioEmbedIcon } from "./custom";
|
package/dist/icons/index.js
CHANGED
|
@@ -48,6 +48,7 @@ exports.icons = {
|
|
|
48
48
|
ArrowsOut: phosphor_react_1.ArrowsOut,
|
|
49
49
|
MapPin: phosphor_react_1.MapPin,
|
|
50
50
|
ArrowDown: phosphor_react_1.ArrowDown,
|
|
51
|
+
ArrowsDownUp: phosphor_react_1.ArrowsDownUp,
|
|
51
52
|
ArrowUp: phosphor_react_1.ArrowUp,
|
|
52
53
|
GearSix: phosphor_react_1.GearSix,
|
|
53
54
|
Wrench: phosphor_react_1.Wrench,
|
|
@@ -92,6 +93,20 @@ exports.icons = {
|
|
|
92
93
|
LinkSimple: phosphor_react_1.LinkSimple,
|
|
93
94
|
Laptop: phosphor_react_1.Laptop,
|
|
94
95
|
Info: phosphor_react_1.Info,
|
|
96
|
+
DotsSixVertical: phosphor_react_1.DotsSixVertical,
|
|
97
|
+
Bell: phosphor_react_1.Bell,
|
|
98
|
+
UserSwitch: phosphor_react_1.UserSwitch,
|
|
99
|
+
PlusMinus: phosphor_react_1.PlusMinus,
|
|
100
|
+
SelectionAll: phosphor_react_1.SelectionAll,
|
|
101
|
+
Activity: phosphor_react_1.Activity,
|
|
102
|
+
Browsers: phosphor_react_1.Browsers,
|
|
103
|
+
Cube: phosphor_react_1.Cube,
|
|
104
|
+
Table: phosphor_react_1.Table,
|
|
105
|
+
UserList: phosphor_react_1.UserList,
|
|
106
|
+
Binoculars: phosphor_react_1.Binoculars,
|
|
107
|
+
LightbulbFilament: phosphor_react_1.LightbulbFilament,
|
|
108
|
+
Keyboard: phosphor_react_1.Keyboard,
|
|
109
|
+
TextAa: phosphor_react_1.TextAa,
|
|
95
110
|
//custom
|
|
96
111
|
OkeGoogleIcon: custom_1.OkeGoogleIcon,
|
|
97
112
|
LetterH: custom_1.LetterH,
|
|
@@ -105,8 +120,37 @@ exports.icons = {
|
|
|
105
120
|
KenyaFlag: custom_1.KenyaFlag,
|
|
106
121
|
NigeriaFlag: custom_1.NigeriaFlag,
|
|
107
122
|
MultipleImages: custom_1.MultipleImages,
|
|
108
|
-
LightbulbFilament: phosphor_react_1.LightbulbFilament,
|
|
109
123
|
ModalBulbIcon: custom_1.ModalBulbIcon,
|
|
110
|
-
|
|
111
|
-
|
|
124
|
+
Location14: custom_1.Location14,
|
|
125
|
+
Person14: custom_1.Person14,
|
|
126
|
+
Index: custom_1.Index,
|
|
127
|
+
Download__nofill: custom_1.Download__nofill,
|
|
128
|
+
Download: custom_1.Download,
|
|
129
|
+
UploadSM: custom_1.UploadSM,
|
|
130
|
+
AddXS: custom_1.AddXS,
|
|
131
|
+
EditSM: custom_1.EditSM,
|
|
132
|
+
Facebook_solid_SM: custom_1.Facebook_solid_SM,
|
|
133
|
+
Linkedin_solid_SM: custom_1.Linkedin_solid_SM,
|
|
134
|
+
Twitter_solid_SM: custom_1.Twitter_solid_SM,
|
|
135
|
+
Instagram_solid_SM: custom_1.Instagram_solid_SM,
|
|
136
|
+
Youtube_solid_SM: custom_1.Youtube_solid_SM,
|
|
137
|
+
Mail_solid_SM: custom_1.Mail_solid_SM,
|
|
138
|
+
Phone_solid_SM: custom_1.Phone_solid_SM,
|
|
139
|
+
Website_solid_SM: custom_1.Website_solid_SM,
|
|
140
|
+
KebabMenu: custom_1.KebabMenu,
|
|
141
|
+
UploadImage: custom_1.UploadImage,
|
|
142
|
+
Close_S: custom_1.Close_S,
|
|
143
|
+
Settings_SM: custom_1.SettingsSM,
|
|
144
|
+
BoldBtn: custom_1.BoldBtn,
|
|
145
|
+
ItalicBtn: custom_1.ItalicBtn,
|
|
146
|
+
UnderlineBtn: custom_1.UnderlineBtn,
|
|
147
|
+
LinkIcon: custom_1.LinkIcon,
|
|
148
|
+
RichFormatToolBlockquote: custom_1.RichFormatToolBlockquote,
|
|
149
|
+
RichFormatToolH2: custom_1.RichFormatToolH2,
|
|
150
|
+
RichFormatToolUnorderedList: custom_1.RichFormatToolUnorderedList,
|
|
151
|
+
RichFormatToolOrderedList: custom_1.RichFormatToolOrderedList,
|
|
152
|
+
PDFIcon: custom_1.PDFIcon,
|
|
153
|
+
Attachment2: custom_1.Attachment2,
|
|
154
|
+
VideoEmbedIcon: custom_1.VideoEmbedIcon,
|
|
155
|
+
AudioEmbedIcon: custom_1.AudioEmbedIcon
|
|
112
156
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -33,5 +33,7 @@ export { ModalSmall } from "./components/Modals/ModalSmall";
|
|
|
33
33
|
export { EmptyStates } from "./components/EmptyStates";
|
|
34
34
|
export { HomeCover } from "./components/HomeCover";
|
|
35
35
|
export { PageScrollIndicator } from "./components/PageScrollIndicator";
|
|
36
|
+
export { default as DatePicker } from "./components/DatePicker";
|
|
37
|
+
export { default as DateRangePicker } from "./components/DateRangePicker";
|
|
36
38
|
export { HintsProvider } from "./components/Hints/contextApi";
|
|
37
39
|
export { LoaderCircle, ProgressBar, LoaderCircle as Loader, LoaderOverlay } from "./components/LoadersAndProgress";
|
package/dist/index.js
CHANGED
|
@@ -13,6 +13,9 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
13
13
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
17
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
|
+
};
|
|
16
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
20
|
exports.HintsProvider = exports.DateRangePicker = exports.DatePicker = exports.PageScrollIndicator = exports.HomeCover = exports.EmptyStates = exports.ModalSmall = exports.ModalLarge = exports.ModalConfirm = exports.SkeletonLoader = exports.Divider = exports.PercentCompletedPie = exports.Accordion = exports.ActionMenu = exports.Tooltip = exports.OKELink = exports.UserRoleBadge = exports.Section = exports.LoaderOverlay = exports.Loader = exports.ProgressBar = exports.LoaderCircle = exports.icons = exports.colors = exports.GlobalStyles = void 0;
|
|
18
21
|
//css and styling related ( styled-components )
|
|
@@ -77,9 +80,9 @@ Object.defineProperty(exports, "HomeCover", { enumerable: true, get: function ()
|
|
|
77
80
|
var PageScrollIndicator_1 = require("./components/PageScrollIndicator");
|
|
78
81
|
Object.defineProperty(exports, "PageScrollIndicator", { enumerable: true, get: function () { return PageScrollIndicator_1.PageScrollIndicator; } });
|
|
79
82
|
var DatePicker_1 = require("./components/DatePicker");
|
|
80
|
-
Object.defineProperty(exports, "DatePicker", { enumerable: true, get: function () { return DatePicker_1.
|
|
83
|
+
Object.defineProperty(exports, "DatePicker", { enumerable: true, get: function () { return __importDefault(DatePicker_1).default; } });
|
|
81
84
|
var DateRangePicker_1 = require("./components/DateRangePicker");
|
|
82
|
-
Object.defineProperty(exports, "DateRangePicker", { enumerable: true, get: function () { return DateRangePicker_1.
|
|
85
|
+
Object.defineProperty(exports, "DateRangePicker", { enumerable: true, get: function () { return __importDefault(DateRangePicker_1).default; } });
|
|
83
86
|
//// context
|
|
84
87
|
var contextApi_1 = require("./components/Hints/contextApi");
|
|
85
88
|
Object.defineProperty(exports, "HintsProvider", { enumerable: true, get: function () { return contextApi_1.HintsProvider; } });
|