odaptos_design_system 2.0.342 → 2.0.344
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/index.cjs +136 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +298 -280
- package/dist/index.d.ts +298 -280
- package/dist/index.js +136 -12
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -258,12 +258,105 @@ var Title_modules_default = {
|
|
|
258
258
|
};
|
|
259
259
|
style_inject_es_default(css_248z$82);
|
|
260
260
|
|
|
261
|
+
//#endregion
|
|
262
|
+
//#region src/Atoms/Typography/renderInlineMarkdown.tsx
|
|
263
|
+
/**
|
|
264
|
+
* Minimal inline markdown renderer for typography components.
|
|
265
|
+
* Supports: **bold**, *italic*, __underline__ (or <u>underline</u>), `code`, line breaks, and simple lists.
|
|
266
|
+
*/
|
|
267
|
+
const renderInlineMarkdown = (rawText) => {
|
|
268
|
+
if (!rawText) return rawText;
|
|
269
|
+
const renderCode = (text) => {
|
|
270
|
+
return text.split(/`([^`]+)`/g).map((part, index) => {
|
|
271
|
+
if (!(index % 2 === 1)) return part;
|
|
272
|
+
return /* @__PURE__ */ React.createElement("code", { key: `code-${index}` }, part);
|
|
273
|
+
});
|
|
274
|
+
};
|
|
275
|
+
const renderStrongAndEm = (nodes) => {
|
|
276
|
+
const renderHtmlUnderline = (text) => {
|
|
277
|
+
return text.split(/<u>(.*?)<\/u>/g).map((part, index) => {
|
|
278
|
+
if (!(index % 2 === 1)) return part;
|
|
279
|
+
return /* @__PURE__ */ React.createElement("u", { key: `u-html-${index}` }, part);
|
|
280
|
+
});
|
|
281
|
+
};
|
|
282
|
+
const renderUnderline = (text) => {
|
|
283
|
+
return text.split(/__([^_]+)__/g).map((part, index) => {
|
|
284
|
+
if (!(index % 2 === 1)) return part;
|
|
285
|
+
return /* @__PURE__ */ React.createElement("u", { key: `u-${index}` }, part);
|
|
286
|
+
});
|
|
287
|
+
};
|
|
288
|
+
const renderStrong = (text) => {
|
|
289
|
+
return text.split(/\*\*([^*]+)\*\*/g).map((part, index) => {
|
|
290
|
+
if (!(index % 2 === 1)) return part;
|
|
291
|
+
return /* @__PURE__ */ React.createElement("strong", { key: `strong-${index}` }, part);
|
|
292
|
+
});
|
|
293
|
+
};
|
|
294
|
+
const renderEm = (text) => {
|
|
295
|
+
return text.split(/\*([^*]+)\*/g).map((part, index) => {
|
|
296
|
+
if (!(index % 2 === 1)) return part;
|
|
297
|
+
return /* @__PURE__ */ React.createElement("em", { key: `em-${index}` }, part);
|
|
298
|
+
});
|
|
299
|
+
};
|
|
300
|
+
return nodes.flatMap((node) => {
|
|
301
|
+
if (typeof node !== "string") return [node];
|
|
302
|
+
return renderHtmlUnderline(node).flatMap((htmlUnderlineNode) => {
|
|
303
|
+
if (typeof htmlUnderlineNode !== "string") return [htmlUnderlineNode];
|
|
304
|
+
return renderUnderline(htmlUnderlineNode);
|
|
305
|
+
}).flatMap((underlineNode) => {
|
|
306
|
+
if (typeof underlineNode !== "string") return [underlineNode];
|
|
307
|
+
return renderStrong(underlineNode);
|
|
308
|
+
}).flatMap((strongNode) => {
|
|
309
|
+
if (typeof strongNode !== "string") return [strongNode];
|
|
310
|
+
return renderEm(strongNode);
|
|
311
|
+
});
|
|
312
|
+
});
|
|
313
|
+
};
|
|
314
|
+
const renderInline = (text) => {
|
|
315
|
+
const codeNodes = renderCode(text);
|
|
316
|
+
return renderStrongAndEm(codeNodes);
|
|
317
|
+
};
|
|
318
|
+
const lines = rawText.split("\n");
|
|
319
|
+
const blocks = [];
|
|
320
|
+
let i = 0;
|
|
321
|
+
while (i < lines.length) {
|
|
322
|
+
const line = lines[i] ?? "";
|
|
323
|
+
const unorderedMatch = line.match(/^\s*[-*]\s+(.*)$/);
|
|
324
|
+
const orderedMatch = line.match(/^\s*(\d+)\.\s+(.*)$/);
|
|
325
|
+
if (unorderedMatch) {
|
|
326
|
+
const items = [];
|
|
327
|
+
while (i < lines.length) {
|
|
328
|
+
const match = (lines[i] ?? "").match(/^\s*[-*]\s+(.*)$/);
|
|
329
|
+
if (!match) break;
|
|
330
|
+
items.push(match[1]);
|
|
331
|
+
i += 1;
|
|
332
|
+
}
|
|
333
|
+
blocks.push(/* @__PURE__ */ React.createElement("ul", { key: `ul-${blocks.length}` }, items.map((item, index) => /* @__PURE__ */ React.createElement("li", { key: `ul-li-${index}` }, renderInline(item)))));
|
|
334
|
+
continue;
|
|
335
|
+
}
|
|
336
|
+
if (orderedMatch) {
|
|
337
|
+
const items = [];
|
|
338
|
+
while (i < lines.length) {
|
|
339
|
+
const match = (lines[i] ?? "").match(/^\s*\d+\.\s+(.*)$/);
|
|
340
|
+
if (!match) break;
|
|
341
|
+
items.push(match[1]);
|
|
342
|
+
i += 1;
|
|
343
|
+
}
|
|
344
|
+
blocks.push(/* @__PURE__ */ React.createElement("ol", { key: `ol-${blocks.length}` }, items.map((item, index) => /* @__PURE__ */ React.createElement("li", { key: `ol-li-${index}` }, renderInline(item)))));
|
|
345
|
+
continue;
|
|
346
|
+
}
|
|
347
|
+
blocks.push(/* @__PURE__ */ React.createElement(React.Fragment, { key: `p-${blocks.length}` }, renderInline(line)));
|
|
348
|
+
if (i < lines.length - 1) blocks.push(/* @__PURE__ */ React.createElement("br", { key: `br-${blocks.length}` }));
|
|
349
|
+
i += 1;
|
|
350
|
+
}
|
|
351
|
+
return blocks;
|
|
352
|
+
};
|
|
353
|
+
|
|
261
354
|
//#endregion
|
|
262
355
|
//#region src/Atoms/Typography/Title.tsx
|
|
263
356
|
/** This text should only be used to display titles
|
|
264
357
|
* Figma link: https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=52-357&mode=dev
|
|
265
358
|
*/
|
|
266
|
-
const Title = ({ id, text, color = "#26292E", size = "base", weight = "semi-bold", italic = false, className, type = "h2", required,...props$1 }) => {
|
|
359
|
+
const Title = ({ id, text, color = "#26292E", size = "base", weight = "semi-bold", italic = false, className, type = "h2", required, isMarkdown = false,...props$1 }) => {
|
|
267
360
|
const getTextSize = () => {
|
|
268
361
|
if (size === "xs") return Title_modules_default.title_xs;
|
|
269
362
|
else if (size === "sm") return Title_modules_default.title_sm;
|
|
@@ -281,49 +374,50 @@ const Title = ({ id, text, color = "#26292E", size = "base", weight = "semi-bold
|
|
|
281
374
|
else if (weight === "regular") return Title_modules_default.title_regular;
|
|
282
375
|
else return Title_modules_default.title_regular;
|
|
283
376
|
};
|
|
377
|
+
const content = isMarkdown ? renderInlineMarkdown(text) : text;
|
|
284
378
|
switch (type) {
|
|
285
379
|
case "h1": return /* @__PURE__ */ React.createElement("h1", {
|
|
286
380
|
...props$1,
|
|
287
381
|
id,
|
|
288
382
|
style: { color },
|
|
289
383
|
className: clsx(Title_modules_default.title, italic && Title_modules_default.title_italic, getTextWeight(), className, getTextSize(), required && Title_modules_default.title_required)
|
|
290
|
-
},
|
|
384
|
+
}, content);
|
|
291
385
|
case "h2": return /* @__PURE__ */ React.createElement("h2", {
|
|
292
386
|
...props$1,
|
|
293
387
|
id,
|
|
294
388
|
style: { color },
|
|
295
389
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
296
|
-
},
|
|
390
|
+
}, content);
|
|
297
391
|
case "h3": return /* @__PURE__ */ React.createElement("h3", {
|
|
298
392
|
...props$1,
|
|
299
393
|
id,
|
|
300
394
|
style: { color },
|
|
301
395
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
302
|
-
},
|
|
396
|
+
}, content);
|
|
303
397
|
case "h4": return /* @__PURE__ */ React.createElement("h4", {
|
|
304
398
|
...props$1,
|
|
305
399
|
id,
|
|
306
400
|
style: { color },
|
|
307
401
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
308
|
-
},
|
|
402
|
+
}, content);
|
|
309
403
|
case "h5": return /* @__PURE__ */ React.createElement("h5", {
|
|
310
404
|
...props$1,
|
|
311
405
|
id,
|
|
312
406
|
style: { color },
|
|
313
407
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
314
|
-
},
|
|
408
|
+
}, content);
|
|
315
409
|
case "h6": return /* @__PURE__ */ React.createElement("h6", {
|
|
316
410
|
...props$1,
|
|
317
411
|
id,
|
|
318
412
|
style: { color },
|
|
319
413
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
320
|
-
},
|
|
414
|
+
}, content);
|
|
321
415
|
default: return /* @__PURE__ */ React.createElement("h2", {
|
|
322
416
|
...props$1,
|
|
323
417
|
id,
|
|
324
418
|
style: { color },
|
|
325
419
|
className: `${Title_modules_default.title} ${italic ? Title_modules_default.title_italic : Title_modules_default.title_normal} ${getTextWeight()} ${className ?? ""} ${getTextSize()} ${required && Title_modules_default.title_required}`
|
|
326
|
-
},
|
|
420
|
+
}, content);
|
|
327
421
|
}
|
|
328
422
|
};
|
|
329
423
|
|
|
@@ -355,7 +449,7 @@ style_inject_es_default(css_248z$81);
|
|
|
355
449
|
/** This text should be use to display basic text
|
|
356
450
|
* Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=52-751&mode=dev
|
|
357
451
|
*/
|
|
358
|
-
const Text = ({ text, color = "#26292E", size = "base", weight = "regular", italic = false, textDecoration, className, required, id,...props$1 }) => {
|
|
452
|
+
const Text = ({ text, color = "#26292E", size = "base", weight = "regular", italic = false, textDecoration, className, required, id, isMarkdown = false,...props$1 }) => {
|
|
359
453
|
const getTextSize = () => {
|
|
360
454
|
if (size === "xs") return Text_modules_default.text_xs;
|
|
361
455
|
else if (size === "sm") return Text_modules_default.text_sm;
|
|
@@ -378,12 +472,13 @@ const Text = ({ text, color = "#26292E", size = "base", weight = "regular", ital
|
|
|
378
472
|
else if (textDecoration === "line-through") return Text_modules_default.text_line_through;
|
|
379
473
|
else return "";
|
|
380
474
|
};
|
|
475
|
+
const content = isMarkdown ? renderInlineMarkdown(text) : text;
|
|
381
476
|
return /* @__PURE__ */ React.createElement("p", {
|
|
382
477
|
...props$1,
|
|
383
478
|
id,
|
|
384
479
|
style: { color },
|
|
385
480
|
className: clsx(Text_modules_default.text, italic && Text_modules_default.text_italic, getTextWeight(), getTextDecoration(), className, required && Text_modules_default.text_required, getTextSize())
|
|
386
|
-
},
|
|
481
|
+
}, content);
|
|
387
482
|
};
|
|
388
483
|
|
|
389
484
|
//#endregion
|
|
@@ -11049,6 +11144,35 @@ function LanguageIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
|
11049
11144
|
})))));
|
|
11050
11145
|
}
|
|
11051
11146
|
|
|
11147
|
+
//#endregion
|
|
11148
|
+
//#region src/DesignTokens/Icons/Miscellaneous/ColorSample.tsx
|
|
11149
|
+
function ColorSample({ stroke, strokeWidth, fill = "#26292E", size = "base",...rest }) {
|
|
11150
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, {
|
|
11151
|
+
strokeWidth: strokeWidth ?? .1,
|
|
11152
|
+
stroke: stroke ? stroke : "currentColor",
|
|
11153
|
+
sx: {
|
|
11154
|
+
height: getIconSize(size),
|
|
11155
|
+
width: getIconSize(size)
|
|
11156
|
+
},
|
|
11157
|
+
...rest
|
|
11158
|
+
}, /* @__PURE__ */ React.createElement("svg", {
|
|
11159
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11160
|
+
width: "20",
|
|
11161
|
+
height: "20",
|
|
11162
|
+
viewBox: "0 0 20 20",
|
|
11163
|
+
fill: "none"
|
|
11164
|
+
}, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#clip0_18537_9750)" }, /* @__PURE__ */ React.createElement("path", {
|
|
11165
|
+
fillRule: "evenodd",
|
|
11166
|
+
clipRule: "evenodd",
|
|
11167
|
+
d: "M2.35175 0.00428385C1.85467 0.0528672 1.43783 0.260201 1.10308 0.625617C0.867583 0.8827 0.689833 1.26637 0.6415 1.62195C0.609083 1.85987 0.609083 18.14 0.6415 18.378C0.732417 19.0465 1.21008 19.6485 1.83175 19.8779C2.16575 20.001 2.06808 19.9959 4.21508 20.0043C5.48142 20.0093 6.278 20.0039 6.42025 19.9897C6.96092 19.9353 7.4645 19.6526 7.76075 19.2374C7.84083 19.1253 8.81883 18.2829 13.257 14.504C16.2264 11.9757 18.7124 9.85237 18.7814 9.78562C18.9334 9.63837 19.1021 9.39928 19.1888 9.20795C19.459 8.6122 19.3767 7.8507 18.986 7.33137C18.8119 7.10003 16.366 4.3992 16.258 4.31903C15.9413 4.0842 15.4874 4.21187 15.3237 4.5817C15.2589 4.7282 15.2643 4.93787 15.3367 5.0857C15.3772 5.16828 15.7572 5.60453 16.6829 6.63078C17.6034 7.6512 17.9897 8.09445 18.0318 8.17845C18.1476 8.4097 18.0935 8.70512 17.9018 8.8887C17.8518 8.93653 15.8658 10.6314 13.4884 12.655C11.111 14.6787 9.104 16.3884 9.02825 16.4543C8.89092 16.5739 8.89075 16.5739 8.92275 16.4991C8.94042 16.4579 10.2144 13.6308 11.7539 10.2166C13.2934 6.80253 14.5784 3.92628 14.6095 3.82495C14.6596 3.66145 14.6658 3.60428 14.6658 3.31578C14.6658 3.02387 14.6598 2.97095 14.6067 2.79578C14.4377 2.23862 14.0532 1.80703 13.5209 1.5767C12.7659 1.24995 9.971 0.112784 9.89267 0.100367C9.32483 0.0106172 8.95158 0.694201 9.33225 1.12662C9.38067 1.1817 9.45575 1.24462 9.499 1.26637C9.54217 1.28812 10.3744 1.6352 11.3483 2.03753C13.2642 2.82903 13.2421 2.81812 13.3532 3.03112C13.4018 3.12437 13.4114 3.1707 13.4119 3.31578L13.4126 3.48912L10.7801 9.32412L8.14758 15.1591L8.13608 8.39245C8.12558 2.20637 8.1215 1.61345 8.08892 1.48162C7.88733 0.667367 7.24825 0.0967839 6.44283 0.0119505C6.25983 -0.00729948 2.542 -0.0142995 2.35175 0.00428385ZM2.38083 1.26887C2.18067 1.3092 2.0235 1.43528 1.93575 1.62578L1.88592 1.73412L1.88 3.57037L1.87417 5.40662H4.37792H6.88167L6.8755 3.57037C6.86933 1.7557 6.86875 1.73295 6.82358 1.63553C6.75692 1.49137 6.65517 1.38637 6.51567 1.31787L6.39258 1.25745L4.43175 1.25403C3.35325 1.2522 2.43042 1.25887 2.38083 1.26887ZM1.87508 8.7432V10.8233H4.37767H6.88033L6.87475 8.7487L6.86925 6.67412L4.37217 6.66862L1.87508 6.66312V8.7432ZM1.88025 15.1728L1.88592 18.2658L1.93708 18.379C2.00017 18.5184 2.13525 18.6465 2.27717 18.7011C2.37975 18.7407 2.46917 18.7424 4.38842 18.7424H6.39258L6.51242 18.6836C6.6565 18.6129 6.72525 18.5433 6.80742 18.385L6.86925 18.2658V15.1783V12.0908L4.37192 12.0853L1.8745 12.0798L1.88025 15.1728ZM4.05142 15.6654C3.89508 15.7147 3.78442 15.7832 3.66008 15.9075C3.2015 16.3661 3.33817 17.1371 3.9275 17.4163C4.06625 17.4819 4.08792 17.4858 4.32342 17.4858C4.54933 17.4858 4.58433 17.4803 4.69842 17.4269C5.30117 17.1445 5.44525 16.3708 4.98142 15.9069C4.79217 15.7177 4.58208 15.6321 4.31458 15.6354C4.21817 15.6366 4.09975 15.65 4.05142 15.6654Z",
|
|
11168
|
+
fill
|
|
11169
|
+
})), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "clip0_18537_9750" }, /* @__PURE__ */ React.createElement("rect", {
|
|
11170
|
+
width: "20",
|
|
11171
|
+
height: "20",
|
|
11172
|
+
fill: "white"
|
|
11173
|
+
})))));
|
|
11174
|
+
}
|
|
11175
|
+
|
|
11052
11176
|
//#endregion
|
|
11053
11177
|
//#region src/DesignTokens/Icons/Miscellaneous/ArrowsIcon.tsx
|
|
11054
11178
|
function ArrowsIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
@@ -16971,7 +17095,7 @@ const Switch = ({ id, label, labelWeight = "bold", rightLabel, checked, disabled
|
|
|
16971
17095
|
|
|
16972
17096
|
//#endregion
|
|
16973
17097
|
//#region src/Atoms/Tag/Tag.modules.scss
|
|
16974
|
-
var css_248z$66 = ".Tag-modules_tag__sYiD6{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;padding:0 .375rem;width:-moz-fit-content;width:fit-content}.Tag-modules_tag__sYiD6 p{padding:0!important;white-space:nowrap}.Tag-modules_tag_ellipsis__-WHk-{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;padding:0 .375rem;width:-moz-fit-content;width:fit-content}.Tag-modules_tag_ellipsis__-WHk- p{max-width:95%;overflow:hidden;padding:0!important;text-overflow:ellipsis;white-space:nowrap!important;width:100%}.Tag-modules_tag_idle__ym-G7{background:var(--color-neutral-dark-shades-600,#717376)}.Tag-modules_tag_idle__ym-G7 svg{fill:#fff!important;stroke:#fff!important}.Tag-modules_tag_info__Q6-WL{background:var(--color-primary-100,#e5f1ff)}.Tag-modules_tag_info__Q6-WL svg{fill:#004799!important;stroke:#004799!important}.Tag-modules_tag_violet__CgNel{background:var(--Color-Extended-Purple-100,#e9d3fd)}.Tag-modules_tag_violet__CgNel svg{fill:#5c1994!important;stroke:#5c1994!important}.Tag-modules_tag_light__RqIr6{background:var(--Color-Neutral-Clear-Shades-150,#eee)}.Tag-modules_tag_light__RqIr6 svg{fill:#32353a!important;stroke:#32353a!important}.Tag-modules_tag_success__yANfh{background:var(--color-extended-green-100,#e8f5ea)}.Tag-modules_tag_success__yANfh svg{fill:#3c743d!important;stroke:#3c743d!important}.Tag-modules_tag_warning__C-O5t{background:var(--color-extended-yellow-100,#fff3d6)}.Tag-modules_tag_warning__C-O5t svg{fill:#6e4f00!important;stroke:#6e4f00!important}.Tag-modules_tag_critical__v79so{background:var(--color-extended-red-100,#fddbdb)}.Tag-modules_tag_critical__v79so svg{fill:#98312e!important;stroke:#98312e!important}.Tag-modules_tag_sm__KQwsr{height:1.25rem}.Tag-modules_tag_sm__KQwsr svg{height:.75rem;width:.75rem}.Tag-modules_tag_base__omYEM{height:1.75rem}.Tag-modules_tag_base__omYEM svg{height:1rem;width:1rem}.Tag-modules_tag_lg__E0lbY{height:2.25rem}.Tag-modules_tag_lg__E0lbY svg{height:1.5rem;width:1.5rem}.Tag-modules_canBeRemoved__ei-3U svg{cursor:pointer}";
|
|
17098
|
+
var css_248z$66 = ".Tag-modules_tag__sYiD6{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;padding:0 .375rem;width:-moz-fit-content;width:fit-content}.Tag-modules_tag__sYiD6 p{padding:0!important;white-space:nowrap}.Tag-modules_tag_ellipsis__-WHk-{align-items:center;border-radius:.25rem;display:flex;gap:.25rem;padding:0 .375rem;width:-moz-fit-content;width:fit-content}.Tag-modules_tag_ellipsis__-WHk- p{max-width:95%;overflow:hidden;padding:0!important;text-overflow:ellipsis;white-space:nowrap!important;width:100%}.Tag-modules_tag_idle__ym-G7{background:var(--color-neutral-dark-shades-600,#717376)}.Tag-modules_tag_idle__ym-G7 svg{fill:#fff!important;stroke:#fff!important}.Tag-modules_tag_info__Q6-WL{background:var(--color-primary-100,#e5f1ff)}.Tag-modules_tag_info__Q6-WL svg{fill:#004799!important;stroke:#004799!important}.Tag-modules_tag_violet__CgNel{background:var(--Color-Extended-Purple-100,#e9d3fd)}.Tag-modules_tag_violet__CgNel svg{fill:#5c1994!important;stroke:#5c1994!important}.Tag-modules_tag_light__RqIr6{background:var(--Color-Neutral-Clear-Shades-150,#eee)}.Tag-modules_tag_light__RqIr6 svg{fill:#32353a!important;stroke:#32353a!important}.Tag-modules_tag_success__yANfh{background:var(--color-extended-green-100,#e8f5ea)}.Tag-modules_tag_success__yANfh svg{fill:#3c743d!important;stroke:#3c743d!important}.Tag-modules_tag_warning__C-O5t{background:var(--color-extended-yellow-100,#fff3d6)}.Tag-modules_tag_warning__C-O5t svg{fill:#6e4f00!important;stroke:#6e4f00!important}.Tag-modules_tag_critical__v79so{background:var(--color-extended-red-100,#fddbdb)}.Tag-modules_tag_critical__v79so svg{fill:#98312e!important;stroke:#98312e!important}.Tag-modules_tag_sm__KQwsr{height:1.25rem}.Tag-modules_tag_sm__KQwsr svg{height:.75rem;width:.75rem}.Tag-modules_tag_base__omYEM{height:1.75rem}.Tag-modules_tag_base__omYEM svg{height:1rem;width:1rem}.Tag-modules_tag_lg__E0lbY{height:2.25rem;padding:.25rem .75rem!important}.Tag-modules_tag_lg__E0lbY svg{height:1.5rem;width:1.5rem}.Tag-modules_canBeRemoved__ei-3U svg{cursor:pointer}";
|
|
16975
17099
|
var Tag_modules_default = {
|
|
16976
17100
|
"tag": "Tag-modules_tag__sYiD6",
|
|
16977
17101
|
"tag_ellipsis": "Tag-modules_tag_ellipsis__-WHk-",
|
|
@@ -77764,5 +77888,5 @@ const TimePicker = ({ className, label, topLabel, topLabelWeight, topLabelSize,
|
|
|
77764
77888
|
};
|
|
77765
77889
|
|
|
77766
77890
|
//#endregion
|
|
77767
|
-
export { AI_UserTest, Accordion, AccountIcon, AccountIconMksite, AddCircledIcon, AddIcon, AddSeatIcon, AddTagIcon, AddUsersIcon, AgendaIcon, AlamBellIdleIcon, AlarmBellStatusIcon, AlertCircledIcon, AndroidIcon, AngryIntervieweeFemale, AnonymizeIcon, AppStoreBadge, AppWindowPieIcon, ArchiveIcon, ArrowDoubleLineDownIcon, ArrowDoubleLineLeftIcon, ArrowDoubleLineRightIcon, ArrowDoubleLineUpIcon, ArrowFilledDownIcon, ArrowFilledLeftIcon, ArrowFilledRightIcon, ArrowFilledUpIcon, ArrowLineDowIcon as ArrowLineDownIcon, ArrowLineLeftIcon, ArrowLineRightIcon, ArrowLineUpIcon, ArrowPointerDown, ArrowPointerDownLeft, ArrowPointerDownRight, ArrowPointerLeft, ArrowPointerRight, ArrowPointerUp, ArrowPointerUpLeft, ArrowPointerUpRight, ArrowsIcon, Avatar, Badge, Banner, BigEmojisAnimation, BillPdfIcon, BillingIcon, BinIcon, BinocularIcon, Blog, BookFlipPageIcon, Box, BrainIcon, BrainIconGradiant, BulbIcon, Button, CalendarIcon, CameraIcon, Caption, Card, CardButton, ChatBubbleIcon, ChatIcon, ChatInput, ChatMessage, Checkbox, CheckedCircled, CheckedIcon, CheckedIconThin, CheckoutIcon, CircledIconButton, ClipIcon, ClockIcon, CloseIcon, CloudUpload, Cluster, CogIcon, ColorPicker, ConfusedInterviewee, ConfusedIntervieweeFemale, ContentPenWriteIcon, ControlsBar, ConversationIdleIcon, ConversationStatusIcon, CopyPasteIcon, CreditCardIcon, CutClipIcon, DashedArrow, DataProtectionDisclaimer, DatePicker, DateTimePicker, DisketteIcon, DownloadIcon, DragDropIcon, EarthIcon, EditIcon, EditTextIcon, EmotionsHeatMap, EndRecording, ExpandIcon, FaceCenterIcon, FaceRecognitionIcon, Faq, FeaturesTable, FileInput, FileUploadIcon, FilesIcon, FillRecordIcon, FilledTaskIcon, FilterIcon, FlashIcon, FlyingDudeAnimation, FolderIcon, FormQuestions, GoogleIcon, GoogleIcon$1 as GroupIcon, HangUpIcon, HappyMen, HappyRobotAnimation, HardDriveIcon, HeartIcon, HeartIconFilled, HelpIcon, HelpIconAlt, HistoryIcon, IconButton, InfoCircledIcon, IntegratedUsabilityScore, KeyIcon as InteractionKeyIcon, InterviewButton, InterviewTranscript, InterviewTranscriptGreen, IosIcon, KeyIcon$1 as KeyIcon, LanguageIcon, LaptopIcon, LaughingIntervieweeMale, LayoutIcon, LayoutLeftIcon, LayoutRightIcon, Link, LinkIcon, LinkedInIcon, ListToDoIcon, LockIcon, LogoBeta, LogoBlack, LogoBlue, LogoNormal, LogoSlider, LogoSmall, LogoSquare, LogoText, LogoWhite, LogoutIcon, MailIcon, MarkUpBar, MeetingIcon, MenShowingSomething, MenuHorizontalIcon, MenuVerticalIcon, MessagesBubbleSquareQuestionIcon, MetaAnalyse, MetaAnalyse2, MetaAnalyseIcon, MicrophoneIcon, MicrophonePodcastIcon, MinusCircledIcon, MinusIcon, MksiteButton, MobileIcon, Modal, ModeratedIcon, MoveBackIcon, MoveInIcon, MultiSelect, MultiSelectWithCategories, MultiSelectWithoutFilter, MultipleUsersIcon, MuteIcon, NavigationCircledIcon, NbOfUsersIcon, NeutralBackgroudIcon, NewLoaderAnimation, NoCameraIcon, NoMicrophoneIcon, Non_Moderated, NotifAlertIcon, NotificationIcon, NumberField, NumbersCode, OdaAccountPro, OdaFeatures, OdaWaiting, OfficeDrawerIcon, OneColumnIcon, OtherTab, PaintingPaletteIcon, Partner1 as Partner1SVG, Partner2 as Partner2SVG, Partner3 as Partner3SVG, Partner4 as Partner4SVG, Partner5 as Partner5SVG, Partner6 as Partner6SVG, Partner7 as Partner7SVG, Partner8 as Partner8SVG, Partner9 as Partner9SVG, PasswordField, PauseIcon, PdfReport, PencilWriteIcon, PlayFillIcon, PlayIcon, PlayStoreBadge, PointingMan, PopoverBeta, PreviousIcon, PricingCard, PricingCheckedIcon, ProjectSvg as ProjectHoverSvg, ProjectSvg$1 as ProjectSvg, QuestionButton, QuestionCircledIcon, QuoteIcon, Radio, RatingScale, RecordIcon, RecordingAnimation, RecordingIcon, RecordingWhiteAnimation, RefreshIcon, RefusedIcon, RemoveCircledIcon, ReportIcon, RespondentLogo, RessourcesAnimation, RobotAnimation, RobotIcon, RoleIcon, SadInterviewee, Scenario, ScheduleTasks, ScreenShareIcon, Search, SearchCircledIcon, SearchIcon, SearchRemoveIcon, SeatIcon, SelfProtocolManager, SendEmailIcon, SendIcon, Sentiment, SettingsCircledIcon, SettingsSliderIcon, ShareIcon, SingleSelect, SingleSelectWithCategories, SingleSelectWithoutFilter, Slider, SmartBrainIcon, SortingIcon, SortingIconZA, SoundInputAnimation, SquareText, StarFilledIcon, StarIcon, StarRating, StopRecordingIcon as StopRecordIcon, Success, SurprisedInterviewee, SusExplanation, Switch, Table, TableCell, TableFooter, TableHeader, TableRows, Tabs, TabsUnderline, Tag, TagAddIcon, TagEditIcon, TagIcon, TagRemoveIcon, Task, TaskIcon, TeamIcon, TestDetailsIcon, TestIcon, TestimonialAnimation, Text, TextForButton, TextForDropDownItem, TextInput, TextWithLink, Textarea, Thematic, ThreeColumnIcon, TimeInterval, TimePicker, Title, Toast, ToggleTab, Tooltip, TvFlatScreenIcon, TvIcon, TwoColumnIcon, UnLockIcon, UndoIcon, UnhappyIntervieweeMale, UnlockedIcon, UnmoderatedIcon, UsabilityBrowser, UserFlows, UserIndicator, UserPanel, UxGuide, VideoFlag, VideoFlag2, VideoFlagGreen, ViewIcon, ViewOffIcon, VoiceIcon, VolumeIcon, WaitingMen, WalletIcon, WarningIcon, WelcomeMessage, changeColorLuminance, colors, getColor, getIconSize, getReadableTextColor };
|
|
77891
|
+
export { AI_UserTest, Accordion, AccountIcon, AccountIconMksite, AddCircledIcon, AddIcon, AddSeatIcon, AddTagIcon, AddUsersIcon, AgendaIcon, AlamBellIdleIcon, AlarmBellStatusIcon, AlertCircledIcon, AndroidIcon, AngryIntervieweeFemale, AnonymizeIcon, AppStoreBadge, AppWindowPieIcon, ArchiveIcon, ArrowDoubleLineDownIcon, ArrowDoubleLineLeftIcon, ArrowDoubleLineRightIcon, ArrowDoubleLineUpIcon, ArrowFilledDownIcon, ArrowFilledLeftIcon, ArrowFilledRightIcon, ArrowFilledUpIcon, ArrowLineDowIcon as ArrowLineDownIcon, ArrowLineLeftIcon, ArrowLineRightIcon, ArrowLineUpIcon, ArrowPointerDown, ArrowPointerDownLeft, ArrowPointerDownRight, ArrowPointerLeft, ArrowPointerRight, ArrowPointerUp, ArrowPointerUpLeft, ArrowPointerUpRight, ArrowsIcon, Avatar, Badge, Banner, BigEmojisAnimation, BillPdfIcon, BillingIcon, BinIcon, BinocularIcon, Blog, BookFlipPageIcon, Box, BrainIcon, BrainIconGradiant, BulbIcon, Button, CalendarIcon, CameraIcon, Caption, Card, CardButton, ChatBubbleIcon, ChatIcon, ChatInput, ChatMessage, Checkbox, CheckedCircled, CheckedIcon, CheckedIconThin, CheckoutIcon, CircledIconButton, ClipIcon, ClockIcon, CloseIcon, CloudUpload, Cluster, CogIcon, ColorPicker, ColorSample, ConfusedInterviewee, ConfusedIntervieweeFemale, ContentPenWriteIcon, ControlsBar, ConversationIdleIcon, ConversationStatusIcon, CopyPasteIcon, CreditCardIcon, CutClipIcon, DashedArrow, DataProtectionDisclaimer, DatePicker, DateTimePicker, DisketteIcon, DownloadIcon, DragDropIcon, EarthIcon, EditIcon, EditTextIcon, EmotionsHeatMap, EndRecording, ExpandIcon, FaceCenterIcon, FaceRecognitionIcon, Faq, FeaturesTable, FileInput, FileUploadIcon, FilesIcon, FillRecordIcon, FilledTaskIcon, FilterIcon, FlashIcon, FlyingDudeAnimation, FolderIcon, FormQuestions, GoogleIcon, GoogleIcon$1 as GroupIcon, HangUpIcon, HappyMen, HappyRobotAnimation, HardDriveIcon, HeartIcon, HeartIconFilled, HelpIcon, HelpIconAlt, HistoryIcon, IconButton, InfoCircledIcon, IntegratedUsabilityScore, KeyIcon as InteractionKeyIcon, InterviewButton, InterviewTranscript, InterviewTranscriptGreen, IosIcon, KeyIcon$1 as KeyIcon, LanguageIcon, LaptopIcon, LaughingIntervieweeMale, LayoutIcon, LayoutLeftIcon, LayoutRightIcon, Link, LinkIcon, LinkedInIcon, ListToDoIcon, LockIcon, LogoBeta, LogoBlack, LogoBlue, LogoNormal, LogoSlider, LogoSmall, LogoSquare, LogoText, LogoWhite, LogoutIcon, MailIcon, MarkUpBar, MeetingIcon, MenShowingSomething, MenuHorizontalIcon, MenuVerticalIcon, MessagesBubbleSquareQuestionIcon, MetaAnalyse, MetaAnalyse2, MetaAnalyseIcon, MicrophoneIcon, MicrophonePodcastIcon, MinusCircledIcon, MinusIcon, MksiteButton, MobileIcon, Modal, ModeratedIcon, MoveBackIcon, MoveInIcon, MultiSelect, MultiSelectWithCategories, MultiSelectWithoutFilter, MultipleUsersIcon, MuteIcon, NavigationCircledIcon, NbOfUsersIcon, NeutralBackgroudIcon, NewLoaderAnimation, NoCameraIcon, NoMicrophoneIcon, Non_Moderated, NotifAlertIcon, NotificationIcon, NumberField, NumbersCode, OdaAccountPro, OdaFeatures, OdaWaiting, OfficeDrawerIcon, OneColumnIcon, OtherTab, PaintingPaletteIcon, Partner1 as Partner1SVG, Partner2 as Partner2SVG, Partner3 as Partner3SVG, Partner4 as Partner4SVG, Partner5 as Partner5SVG, Partner6 as Partner6SVG, Partner7 as Partner7SVG, Partner8 as Partner8SVG, Partner9 as Partner9SVG, PasswordField, PauseIcon, PdfReport, PencilWriteIcon, PlayFillIcon, PlayIcon, PlayStoreBadge, PointingMan, PopoverBeta, PreviousIcon, PricingCard, PricingCheckedIcon, ProjectSvg as ProjectHoverSvg, ProjectSvg$1 as ProjectSvg, QuestionButton, QuestionCircledIcon, QuoteIcon, Radio, RatingScale, RecordIcon, RecordingAnimation, RecordingIcon, RecordingWhiteAnimation, RefreshIcon, RefusedIcon, RemoveCircledIcon, ReportIcon, RespondentLogo, RessourcesAnimation, RobotAnimation, RobotIcon, RoleIcon, SadInterviewee, Scenario, ScheduleTasks, ScreenShareIcon, Search, SearchCircledIcon, SearchIcon, SearchRemoveIcon, SeatIcon, SelfProtocolManager, SendEmailIcon, SendIcon, Sentiment, SettingsCircledIcon, SettingsSliderIcon, ShareIcon, SingleSelect, SingleSelectWithCategories, SingleSelectWithoutFilter, Slider, SmartBrainIcon, SortingIcon, SortingIconZA, SoundInputAnimation, SquareText, StarFilledIcon, StarIcon, StarRating, StopRecordingIcon as StopRecordIcon, Success, SurprisedInterviewee, SusExplanation, Switch, Table, TableCell, TableFooter, TableHeader, TableRows, Tabs, TabsUnderline, Tag, TagAddIcon, TagEditIcon, TagIcon, TagRemoveIcon, Task, TaskIcon, TeamIcon, TestDetailsIcon, TestIcon, TestimonialAnimation, Text, TextForButton, TextForDropDownItem, TextInput, TextWithLink, Textarea, Thematic, ThreeColumnIcon, TimeInterval, TimePicker, Title, Toast, ToggleTab, Tooltip, TvFlatScreenIcon, TvIcon, TwoColumnIcon, UnLockIcon, UndoIcon, UnhappyIntervieweeMale, UnlockedIcon, UnmoderatedIcon, UsabilityBrowser, UserFlows, UserIndicator, UserPanel, UxGuide, VideoFlag, VideoFlag2, VideoFlagGreen, ViewIcon, ViewOffIcon, VoiceIcon, VolumeIcon, WaitingMen, WalletIcon, WarningIcon, WelcomeMessage, changeColorLuminance, colors, getColor, getIconSize, getReadableTextColor };
|
|
77768
77892
|
//# sourceMappingURL=index.js.map
|