@consumidor-positivo/aurora 0.0.185 → 0.0.187
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/Alert/index.es.js +1 -1
- package/dist/components/Calendar/index.es.js +2 -2
- package/dist/components/CalendarHeader/index.es.js +2 -2
- package/dist/components/Card/index.es.js +17 -64
- package/dist/components/Card/index.es.js.map +1 -1
- package/dist/components/Card/styles.css +1 -1
- package/dist/components/Checkbox/index.es.js +1 -1
- package/dist/components/Datepicker/index.es.js +3 -3
- package/dist/components/Drawer/styles.css +1 -1
- package/dist/components/Image/index.es.js +1 -1
- package/dist/components/Label/index.es.js +1 -1
- package/dist/components/Modal/styles.css +1 -1
- package/dist/components/PortalHolder/index.es.js +1 -1
- package/dist/components/Pure/index.es.js +37 -0
- package/dist/components/Pure/index.es.js.map +1 -0
- package/dist/components/Pure/styles.css +1 -0
- package/dist/components/Segment/index.es.js +1 -1
- package/dist/components/SelectField/index.es.js +1 -1
- package/dist/components/Switch/Card/index.d.ts +3 -0
- package/dist/components/Switch/Card/types.d.ts +10 -0
- package/dist/components/Switch/Pure/index.d.ts +3 -0
- package/dist/components/Switch/Pure/types.d.ts +8 -0
- package/dist/components/Tag/index.es.js +1 -1
- package/dist/components/main/styles.css +1 -1
- package/dist/{index-DcE5oHTB.js → index-C1N6rwrZ.js} +3 -3
- package/dist/{index-DcE5oHTB.js.map → index-C1N6rwrZ.js.map} +1 -1
- package/dist/{index-ChXllGFe.js → index-C8AM9yBn.js} +2 -2
- package/dist/{index-ChXllGFe.js.map → index-C8AM9yBn.js.map} +1 -1
- package/dist/{index-wo9iM9yw.js → index-CL0DrUGQ.js} +2 -2
- package/dist/{index-wo9iM9yw.js.map → index-CL0DrUGQ.js.map} +1 -1
- package/dist/main.d.ts +2 -0
- package/dist/main.es.js +126 -55
- package/dist/main.es.js.map +1 -1
- package/dist/{tokens-D1vxtHgK.js → tokens-D_iASp38.js} +52 -52
- package/dist/{tokens-D1vxtHgK.js.map → tokens-D_iASp38.js.map} +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ import { IconChevronLeft } from "./components/icons/IconChevronLeft/index.es.js"
|
|
|
6
6
|
import { IconX } from "./components/icons/IconX/index.es.js";
|
|
7
7
|
import { useState, useRef, useEffect } from "react";
|
|
8
8
|
import { a as above } from "./screen-DfYo7XQ_.js";
|
|
9
|
-
import { B as BREAKPOINT_MD } from "./tokens-
|
|
9
|
+
import { B as BREAKPOINT_MD } from "./tokens-D_iASp38.js";
|
|
10
10
|
import './components/index/styles3.css';function useOutsideClick({
|
|
11
11
|
rootEl,
|
|
12
12
|
breakpoint,
|
|
@@ -138,4 +138,4 @@ export {
|
|
|
138
138
|
Segment as S,
|
|
139
139
|
useOutsideClick as u
|
|
140
140
|
};
|
|
141
|
-
//# sourceMappingURL=index-
|
|
141
|
+
//# sourceMappingURL=index-CL0DrUGQ.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-CL0DrUGQ.js","sources":["../lib/core/hooks/useOutsideClick.ts","../lib/components/form/Datepicker/Segment/hook.ts","../lib/components/form/Datepicker/Segment/index.tsx"],"sourcesContent":["import { useState } from 'react'\nimport { above } from '../utils/screen'\n\ntype UseOutsideClickProps = {\n rootEl: React.RefObject<HTMLDivElement>\n breakpoint?: string\n onLoseFocusCB: () => void\n}\n\nexport function useOutsideClick({\n rootEl,\n breakpoint,\n onLoseFocusCB,\n}: UseOutsideClickProps) {\n const [setupListener, setSetupListener] = useState(false)\n\n function listenOutsideClick() {\n if (breakpoint && !above(breakpoint)) return\n document.addEventListener('mousedown', handleLoseFocus)\n setSetupListener(true)\n }\n\n function clearOutsideClickListenner() {\n if (setupListener) {\n document.removeEventListener('mousedown', handleLoseFocus)\n setSetupListener(false)\n }\n }\n\n function handleLoseFocus(ev: MouseEvent | FocusEvent) {\n if (!rootEl.current) return\n\n const clickedOutside = !rootEl.current.contains(ev.target as Node)\n\n if (clickedOutside) {\n onLoseFocusCB()\n clearOutsideClickListenner()\n }\n }\n\n return {\n listenOutsideClick,\n }\n}\n","import { useEffect, useRef, useState } from 'react'\nimport { BREAKPOINT_MD } from '@core/tokens'\nimport { useOutsideClick } from '@core/hooks/useOutsideClick'\n\nimport { SegmentItem } from '../types'\n\ntype UseSegmentProps = {\n options: SegmentItem[]\n currentValue: string | number\n onSelect: (option: SegmentItem) => void\n}\n\nexport function useSegment({\n options,\n currentValue,\n onSelect,\n}: UseSegmentProps) {\n const [isListOpen, setIsListOpen] = useState(false)\n const rootEl = useRef<HTMLDivElement>(null)\n const selectedItem = useRef<HTMLLIElement>(null)\n const currentItem = options.find((item) => item.value === currentValue)\n const { listenOutsideClick } = useOutsideClick({\n rootEl,\n breakpoint: BREAKPOINT_MD,\n onLoseFocusCB: closeList,\n })\n\n useEffect(() => {\n if (selectedItem.current && isListOpen) {\n selectedItem.current.scrollIntoView({ block: 'center', inline: 'center' })\n }\n }, [isListOpen])\n\n function openList() {\n setIsListOpen(true)\n listenOutsideClick()\n }\n\n function closeList() {\n setIsListOpen(false)\n }\n\n function handleSelectItem(option: SegmentItem) {\n onSelect(option)\n setIsListOpen(false)\n }\n\n return {\n openList,\n closeList,\n isListOpen,\n rootEl,\n currentItem,\n handleSelectItem,\n selectedItem,\n }\n}\n","import classNames from 'classnames'\nimport { IconChevronDown, IconChevronLeft, IconX } from '@components/icons'\n\nimport { useSegment } from './hook'\nimport { SegmentItem } from '../types'\nimport './styles.scss'\n\ntype SegmentProps = {\n mobileTitle: string\n options: SegmentItem[]\n onSelect: (option: SegmentItem) => void\n currentValue: string | number\n minValue?: Date\n maxValue?: Date\n}\n\nexport const Segment = ({\n currentValue,\n options,\n mobileTitle,\n onSelect,\n}: SegmentProps) => {\n const {\n rootEl,\n isListOpen,\n openList,\n closeList,\n currentItem,\n handleSelectItem,\n selectedItem,\n } = useSegment({\n options,\n currentValue,\n onSelect,\n })\n\n return (\n <div\n ref={rootEl}\n tabIndex={0}\n className={classNames('au-datepicker__segment', {\n 'au-datepicker__segment--open': isListOpen,\n })}>\n <div className=\"au-datepicker__segment-input\" onClick={openList}>\n {currentItem?.label}\n <IconChevronDown />\n </div>\n <div className=\"au-datepicker__segment-list-holder\">\n <div className=\"au-datepicker__segment-list-header\">\n <div onClick={closeList}>\n <IconChevronLeft />\n </div>\n <h4 className=\"au-datepicker__segment-title\">{mobileTitle}</h4>\n <div onClick={closeList}>\n <IconX />\n </div>\n </div>\n <ul className=\"au-datepicker__segment-list\">\n {options.map((option, idx) => {\n const isSelectedItem = option.value === currentValue\n return (\n <li\n key={`au-datepicker-segment-li-${option.value}-${idx}`}\n onClick={() => handleSelectItem(option)}\n ref={isSelectedItem ? selectedItem : null}\n className={classNames('au-datepicker__segment-list-item', {\n 'au-datepicker__segment-list-item--active': isSelectedItem,\n })}>\n {option.label}\n </li>\n )\n })}\n </ul>\n </div>\n </div>\n )\n}\n"],"names":[],"mappings":"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"}
|
package/dist/main.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
export { Button } from './components/Button';
|
|
3
|
+
export { PureSwitch } from './components/Switch/Pure';
|
|
4
|
+
export { CardSwitch } from './components/Switch/Card';
|
|
3
5
|
export { Conditional } from './components/misc/Conditional';
|
|
4
6
|
export { Drawer } from './components/Drawer';
|
|
5
7
|
export { Header } from './components/Header';
|
package/dist/main.es.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { Button } from "./components/Button/index.es.js";
|
|
2
|
+
import { PureSwitch } from "./components/Pure/index.es.js";
|
|
3
|
+
import { CardSwitch } from "./components/Card/index.es.js";
|
|
2
4
|
import { Conditional } from "./components/Conditional/index.es.js";
|
|
3
5
|
import { Drawer } from "./components/Drawer/index.es.js";
|
|
4
6
|
import { Header } from "./components/Header/index.es.js";
|
|
@@ -18,7 +20,10 @@ import { TextAreaField } from "./components/TextareaField/index.es.js";
|
|
|
18
20
|
import { Checkbox } from "./components/Checkbox/index.es.js";
|
|
19
21
|
import { Radio } from "./components/Radio/index.es.js";
|
|
20
22
|
import { Alert } from "./components/Alert/index.es.js";
|
|
21
|
-
import {
|
|
23
|
+
import { CardContainer } from "./components/Container/index.es.js";
|
|
24
|
+
import { CardEmphasis } from "./components/Emphasis/index.es.js";
|
|
25
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
26
|
+
import { c as classNames } from "./index-CweZ_OcN.js";
|
|
22
27
|
import { Tabs } from "./components/Tabs/index.es.js";
|
|
23
28
|
import { Skeleton } from "./components/Skeleton/index.es.js";
|
|
24
29
|
import { Spinner } from "./components/Spinner/index.es.js";
|
|
@@ -348,8 +353,72 @@ import { IconZapOff } from "./components/icons/IconZapOff/index.es.js";
|
|
|
348
353
|
import { IconZoomIn } from "./components/icons/IconZoomIn/index.es.js";
|
|
349
354
|
import { IconZoomOut } from "./components/icons/IconZoomOut/index.es.js";
|
|
350
355
|
import { IconSocialGoogle } from "./components/icons/IconSocialGoogle/index.es.js";
|
|
351
|
-
import {
|
|
352
|
-
import './components/main/styles.css';
|
|
356
|
+
import { k as k2, j as j2, l as l2, i as i2, a as a2, B, ai, aj, ah, x, w, v, u, t, s, r, K, J, I, H, g as g2, G, F, E, D, A, z, y, W, V, U, T, S, b as b2, R, a6, a5, a4, a3, a2 as a22, f as f2, a1, h as h2, q, p as p2, o as o2, c as c2, n as n2, m as m2, d as d2, Q, P, O, N, M, C, L as L2, a0, $, _, Z, Y, e as e2, X, ak, av, aA, aB, aC, aD, aE, aF, aG, aH, aI, aJ, au, aw, ay, az, ax, al, am, an, ao, ap, aq, ar, as, at, a7, a8, a9, aa, ab, ac, ad, ae, af, ag } from "./tokens-D_iASp38.js";
|
|
357
|
+
import './components/main/styles.css';const CardImage = ({ src, alt, width, height }) => {
|
|
358
|
+
const imageSize = {
|
|
359
|
+
width: `${width}px`,
|
|
360
|
+
height: `${height}px`
|
|
361
|
+
};
|
|
362
|
+
return /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx("img", { style: imageSize, src, alt }) });
|
|
363
|
+
};
|
|
364
|
+
const CardRoot = ({
|
|
365
|
+
border = true,
|
|
366
|
+
color = "primary",
|
|
367
|
+
width,
|
|
368
|
+
height,
|
|
369
|
+
maxWidth,
|
|
370
|
+
maxHeight,
|
|
371
|
+
hoverShadow,
|
|
372
|
+
paddingLess,
|
|
373
|
+
children
|
|
374
|
+
}) => {
|
|
375
|
+
const rootClasses = classNames("au-card__root", {
|
|
376
|
+
"au-card__root--border-none": !border,
|
|
377
|
+
"au-card__root--color-secondary": color === "secondary",
|
|
378
|
+
"au-card__root--with-hover-shadow": !!hoverShadow,
|
|
379
|
+
"au-card__root--paddingless": !!paddingLess
|
|
380
|
+
});
|
|
381
|
+
const rootSize = {
|
|
382
|
+
width: `${width}px`,
|
|
383
|
+
height: `${height}px`,
|
|
384
|
+
maxWidth: `${maxWidth}px`,
|
|
385
|
+
maxHeight: `${maxHeight}px`
|
|
386
|
+
};
|
|
387
|
+
return /* @__PURE__ */ jsx(
|
|
388
|
+
"div",
|
|
389
|
+
{
|
|
390
|
+
style: rootSize,
|
|
391
|
+
className: rootClasses,
|
|
392
|
+
children
|
|
393
|
+
}
|
|
394
|
+
);
|
|
395
|
+
};
|
|
396
|
+
const CardTag = ({
|
|
397
|
+
color = "primary",
|
|
398
|
+
icon,
|
|
399
|
+
children
|
|
400
|
+
}) => {
|
|
401
|
+
const tagClasses = classNames("au-card__tag", {
|
|
402
|
+
"au-card__tag--primary": color === "primary",
|
|
403
|
+
"au-card__tag--secondary": color === "secondary"
|
|
404
|
+
});
|
|
405
|
+
return /* @__PURE__ */ jsxs("div", { className: tagClasses, children: [
|
|
406
|
+
/* @__PURE__ */ jsx("span", { children: icon }),
|
|
407
|
+
/* @__PURE__ */ jsx("span", { children })
|
|
408
|
+
] });
|
|
409
|
+
};
|
|
410
|
+
const components = {
|
|
411
|
+
Root: CardRoot,
|
|
412
|
+
Container: CardContainer,
|
|
413
|
+
Emphasis: CardEmphasis,
|
|
414
|
+
Image: CardImage,
|
|
415
|
+
Tag: CardTag
|
|
416
|
+
};
|
|
417
|
+
Object.keys(components).forEach((key) => {
|
|
418
|
+
const component = components[key];
|
|
419
|
+
component.displayName = `Card.${key}`;
|
|
420
|
+
});
|
|
421
|
+
function useDrawer(props) {
|
|
353
422
|
const [drawerOpen, setDrawerOpen] = useState(props);
|
|
354
423
|
function handleOpenDrawer(name) {
|
|
355
424
|
setDrawerOpen((prev) => {
|
|
@@ -366,73 +435,74 @@ import './components/main/styles.css';function useDrawer(props) {
|
|
|
366
435
|
}
|
|
367
436
|
export {
|
|
368
437
|
Alert,
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
438
|
+
k2 as BORDER_RADIUS_BIG,
|
|
439
|
+
j2 as BORDER_RADIUS_MEDIUM,
|
|
440
|
+
l2 as BORDER_RADIUS_PILL,
|
|
441
|
+
i2 as BORDER_RADIUS_SMALL,
|
|
373
442
|
a2 as BREAKPOINT_LG,
|
|
374
443
|
B as BREAKPOINT_MD,
|
|
375
444
|
ai as BREAKPOINT_SM,
|
|
376
445
|
aj as BREAKPOINT_XLG,
|
|
377
446
|
ah as BREAKPOINT_XSM,
|
|
378
447
|
Button,
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
448
|
+
x as COLOR_BRAND_BLUE_00,
|
|
449
|
+
w as COLOR_BRAND_BLUE_10,
|
|
450
|
+
v as COLOR_BRAND_BLUE_20,
|
|
451
|
+
u as COLOR_BRAND_BLUE_30,
|
|
452
|
+
t as COLOR_BRAND_BLUE_40,
|
|
453
|
+
s as COLOR_BRAND_BLUE_50,
|
|
454
|
+
r as COLOR_BRAND_BLUE_60,
|
|
455
|
+
K as COLOR_BRAND_CYAN_10,
|
|
456
|
+
J as COLOR_BRAND_CYAN_20,
|
|
457
|
+
I as COLOR_BRAND_CYAN_30,
|
|
458
|
+
H as COLOR_BRAND_CYAN_40,
|
|
459
|
+
g2 as COLOR_BRAND_CYAN_50,
|
|
460
|
+
G as COLOR_BRAND_CYAN_60,
|
|
461
|
+
F as COLOR_BRAND_EMERALD_10,
|
|
462
|
+
E as COLOR_BRAND_EMERALD_20,
|
|
463
|
+
D as COLOR_BRAND_EMERALD_30,
|
|
464
|
+
A as COLOR_BRAND_EMERALD_40,
|
|
465
|
+
z as COLOR_BRAND_EMERALD_50,
|
|
466
|
+
y as COLOR_BRAND_EMERALD_60,
|
|
467
|
+
W as COLOR_ERROR_00,
|
|
468
|
+
V as COLOR_ERROR_10,
|
|
469
|
+
U as COLOR_ERROR_20,
|
|
470
|
+
T as COLOR_ERROR_30,
|
|
471
|
+
S as COLOR_ERROR_40,
|
|
403
472
|
b2 as COLOR_ERROR_50,
|
|
404
|
-
|
|
473
|
+
R as COLOR_ERROR_60,
|
|
405
474
|
a6 as COLOR_INFO_00,
|
|
406
475
|
a5 as COLOR_INFO_10,
|
|
407
476
|
a4 as COLOR_INFO_20,
|
|
408
477
|
a3 as COLOR_INFO_30,
|
|
409
478
|
a22 as COLOR_INFO_40,
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
479
|
+
f2 as COLOR_INFO_50,
|
|
480
|
+
a1 as COLOR_INFO_60,
|
|
481
|
+
h2 as COLOR_NEUTRAL_00,
|
|
482
|
+
q as COLOR_NEUTRAL_10,
|
|
483
|
+
p2 as COLOR_NEUTRAL_20,
|
|
484
|
+
o2 as COLOR_NEUTRAL_30,
|
|
416
485
|
c2 as COLOR_NEUTRAL_40,
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
486
|
+
n2 as COLOR_NEUTRAL_50,
|
|
487
|
+
m2 as COLOR_NEUTRAL_60,
|
|
488
|
+
d2 as COLOR_NEUTRAL_70,
|
|
489
|
+
Q as COLOR_SUCCESS_00,
|
|
490
|
+
P as COLOR_SUCCESS_10,
|
|
491
|
+
O as COLOR_SUCCESS_20,
|
|
492
|
+
N as COLOR_SUCCESS_30,
|
|
493
|
+
M as COLOR_SUCCESS_40,
|
|
425
494
|
C as COLOR_SUCCESS_50,
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
495
|
+
L2 as COLOR_SUCCESS_60,
|
|
496
|
+
a0 as COLOR_WARNING_00,
|
|
497
|
+
$ as COLOR_WARNING_10,
|
|
498
|
+
_ as COLOR_WARNING_20,
|
|
499
|
+
Z as COLOR_WARNING_30,
|
|
500
|
+
Y as COLOR_WARNING_40,
|
|
501
|
+
e2 as COLOR_WARNING_50,
|
|
502
|
+
X as COLOR_WARNING_60,
|
|
434
503
|
ak as CONTAINER_SIZE,
|
|
435
|
-
Card,
|
|
504
|
+
components as Card,
|
|
505
|
+
CardSwitch,
|
|
436
506
|
Checkbox,
|
|
437
507
|
Conditional,
|
|
438
508
|
DatepickerField,
|
|
@@ -806,6 +876,7 @@ export {
|
|
|
806
876
|
PasswordField,
|
|
807
877
|
ProfileNav,
|
|
808
878
|
ProgressBar,
|
|
879
|
+
PureSwitch,
|
|
809
880
|
Radio,
|
|
810
881
|
aq as SHADOW_01,
|
|
811
882
|
ar as SHADOW_02,
|
package/dist/main.es.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.es.js","sources":["../lib/components/Drawer/hooks.ts"],"sourcesContent":["import { useState } from 'react'\n\ntype UseDrawerProps = Record<string, boolean>\n\nexport function useDrawer(props: UseDrawerProps) {\n const [drawerOpen, setDrawerOpen] = useState<UseDrawerProps>(props)\n\n function handleOpenDrawer(name: string) {\n setDrawerOpen((prev) => {\n return {\n ...prev,\n [name]: !prev[name],\n }\n })\n }\n\n return {\n handleOpenDrawer,\n drawerOpen,\n }\n}\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"main.es.js","sources":["../lib/components/Card/Image/index.tsx","../lib/components/Card/Root/index.tsx","../lib/components/Card/Tag/index.tsx","../lib/components/Card/index.tsx","../lib/components/Drawer/hooks.ts"],"sourcesContent":["import { CSSProperties } from 'react'\n\nexport type CardImageProps = {\n src: string\n alt?: string\n width?: number\n height?: number\n}\nexport const CardImage = ({ src, alt, width, height }: CardImageProps) => {\n const imageSize: CSSProperties = {\n width: `${width}px`,\n height: `${height}px`,\n }\n\n return (\n <div>\n <img style={imageSize} src={src} alt={alt} />\n </div>\n )\n}\n","import classNames from 'classnames'\nimport { CSSProperties, ReactNode } from 'react'\n\nexport type CardRootProps = {\n border?: boolean\n color?: 'primary' | 'secondary'\n width?: number\n height?: number\n maxWidth?: number\n maxHeight?: number\n paddingLess?: boolean;\n hoverShadow?: boolean\n children: ReactNode\n}\nexport const CardRoot = ({\n border = true,\n color = 'primary',\n width,\n height,\n maxWidth,\n maxHeight,\n hoverShadow,\n paddingLess,\n children,\n}: CardRootProps) => {\n const rootClasses = classNames('au-card__root', {\n 'au-card__root--border-none': !border,\n 'au-card__root--color-secondary': color === 'secondary',\n 'au-card__root--with-hover-shadow': !!hoverShadow,\n 'au-card__root--paddingless': !!paddingLess\n })\n const rootSize: CSSProperties = {\n width: `${width}px`,\n height: `${height}px`,\n maxWidth: `${maxWidth}px`,\n maxHeight: `${maxHeight}px`\n }\n\n return (\n <div\n style={rootSize}\n className={rootClasses}>\n {children}\n </div>\n )\n}\n","import classNames from 'classnames'\nimport { ReactNode } from 'react'\n\nexport type CardTagProps = {\n color?: 'primary' | 'secondary'\n icon?: ReactNode\n children: ReactNode\n}\nexport const CardTag = ({\n color = 'primary',\n icon,\n children,\n}: CardTagProps) => {\n const tagClasses = classNames('au-card__tag', {\n 'au-card__tag--primary': color === 'primary',\n 'au-card__tag--secondary': color === 'secondary',\n })\n return (\n <div className={tagClasses}>\n <span>{icon}</span>\n <span>{children}</span>\n </div>\n )\n}\n","import { CardContainer, CardContainerProps } from './Container'\nimport { CardEmphasis, CardEmphasisProps } from './Emphasis'\nimport { CardImage, CardImageProps } from './Image'\nimport { CardRoot, CardRootProps } from './Root'\nimport { CardTag, CardTagProps } from './Tag'\nimport './styles.scss'\n\ntype Components = {\n Root: React.FC<CardRootProps>\n Container: React.FC<CardContainerProps>\n Emphasis: React.FC<CardEmphasisProps>\n Image: React.FC<CardImageProps>\n Tag: React.FC<CardTagProps>\n}\n\nconst components: Components = {\n Root: CardRoot,\n Container: CardContainer,\n Emphasis: CardEmphasis,\n Image: CardImage,\n Tag: CardTag,\n}\n\nObject.keys(components).forEach((key) => {\n const component = components[key as keyof Components]\n component.displayName = `Card.${key}`\n})\n\nexport { components as Card }\n","import { useState } from 'react'\n\ntype UseDrawerProps = Record<string, boolean>\n\nexport function useDrawer(props: UseDrawerProps) {\n const [drawerOpen, setDrawerOpen] = useState<UseDrawerProps>(props)\n\n function handleOpenDrawer(name: string) {\n setDrawerOpen((prev) => {\n return {\n ...prev,\n [name]: !prev[name],\n }\n })\n }\n\n return {\n handleOpenDrawer,\n drawerOpen,\n }\n}\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQO,MAAM,YAAY,CAAC,EAAE,KAAK,KAAK,OAAO,aAA6B;AACxE,QAAM,YAA2B;AAAA,IAC/B,OAAO,GAAG,KAAK;AAAA,IACf,QAAQ,GAAG,MAAM;AAAA,EAAA;AAIjB,SAAA,oBAAC,SACC,UAAC,oBAAA,OAAA,EAAI,OAAO,WAAW,KAAU,IAAU,CAAA,EAC7C,CAAA;AAEJ;ACLO,MAAM,WAAW,CAAC;AAAA,EACvB,SAAS;AAAA,EACT,QAAQ;AAAA,EACR;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF,MAAqB;AACb,QAAA,cAAc,WAAW,iBAAiB;AAAA,IAC9C,8BAA8B,CAAC;AAAA,IAC/B,kCAAkC,UAAU;AAAA,IAC5C,oCAAoC,CAAC,CAAC;AAAA,IACtC,8BAA8B,CAAC,CAAC;AAAA,EAAA,CACjC;AACD,QAAM,WAA0B;AAAA,IAC9B,OAAO,GAAG,KAAK;AAAA,IACf,QAAQ,GAAG,MAAM;AAAA,IACjB,UAAU,GAAG,QAAQ;AAAA,IACrB,WAAW,GAAG,SAAS;AAAA,EAAA;AAIvB,SAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,OAAO;AAAA,MACP,WAAW;AAAA,MACV;AAAA,IAAA;AAAA,EAAA;AAGP;ACrCO,MAAM,UAAU,CAAC;AAAA,EACtB,QAAQ;AAAA,EACR;AAAA,EACA;AACF,MAAoB;AACZ,QAAA,aAAa,WAAW,gBAAgB;AAAA,IAC5C,yBAAyB,UAAU;AAAA,IACnC,2BAA2B,UAAU;AAAA,EAAA,CACtC;AAEC,SAAA,qBAAC,OAAI,EAAA,WAAW,YACd,UAAA;AAAA,IAAA,oBAAC,UAAM,UAAK,KAAA,CAAA;AAAA,IACZ,oBAAC,UAAM,UAAS;AAAA,EAClB,EAAA,CAAA;AAEJ;ACRA,MAAM,aAAyB;AAAA,EAC7B,MAAM;AAAA,EACN,WAAW;AAAA,EACX,UAAU;AAAA,EACV,OAAO;AAAA,EACP,KAAK;AACP;AAEA,OAAO,KAAK,UAAU,EAAE,QAAQ,CAAC,QAAQ;AACjC,QAAA,YAAY,WAAW,GAAuB;AAC1C,YAAA,cAAc,QAAQ,GAAG;AACrC,CAAC;ACtBM,SAAS,UAAU,OAAuB;AAC/C,QAAM,CAAC,YAAY,aAAa,IAAI,SAAyB,KAAK;AAElE,WAAS,iBAAiB,MAAc;AACtC,kBAAc,CAAC,SAAS;AACf,aAAA;AAAA,QACL,GAAG;AAAA,QACH,CAAC,IAAI,GAAG,CAAC,KAAK,IAAI;AAAA,MAAA;AAAA,IACpB,CACD;AAAA,EACH;AAEO,SAAA;AAAA,IACL;AAAA,IACA;AAAA,EAAA;AAEJ;"}
|
|
@@ -99,37 +99,37 @@ const FONT_SIZE_P2 = "16px";
|
|
|
99
99
|
const FONT_SIZE_P3 = "14px";
|
|
100
100
|
const FONT_SIZE_P4 = "12px";
|
|
101
101
|
export {
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
COLOR_WARNING_10 as $,
|
|
103
|
+
COLOR_BRAND_EMERALD_40 as A,
|
|
104
104
|
BREAKPOINT_MD as B,
|
|
105
105
|
COLOR_SUCCESS_50 as C,
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
106
|
+
COLOR_BRAND_EMERALD_30 as D,
|
|
107
|
+
COLOR_BRAND_EMERALD_20 as E,
|
|
108
|
+
COLOR_BRAND_EMERALD_10 as F,
|
|
109
|
+
COLOR_BRAND_CYAN_60 as G,
|
|
110
|
+
COLOR_BRAND_CYAN_40 as H,
|
|
111
|
+
COLOR_BRAND_CYAN_30 as I,
|
|
112
|
+
COLOR_BRAND_CYAN_20 as J,
|
|
113
|
+
COLOR_BRAND_CYAN_10 as K,
|
|
114
|
+
COLOR_SUCCESS_60 as L,
|
|
115
|
+
COLOR_SUCCESS_40 as M,
|
|
116
|
+
COLOR_SUCCESS_30 as N,
|
|
117
|
+
COLOR_SUCCESS_20 as O,
|
|
118
|
+
COLOR_SUCCESS_10 as P,
|
|
119
|
+
COLOR_SUCCESS_00 as Q,
|
|
120
|
+
COLOR_ERROR_60 as R,
|
|
121
|
+
COLOR_ERROR_40 as S,
|
|
122
|
+
COLOR_ERROR_30 as T,
|
|
123
|
+
COLOR_ERROR_20 as U,
|
|
124
|
+
COLOR_ERROR_10 as V,
|
|
125
|
+
COLOR_ERROR_00 as W,
|
|
126
|
+
COLOR_WARNING_60 as X,
|
|
127
|
+
COLOR_WARNING_40 as Y,
|
|
128
|
+
COLOR_WARNING_30 as Z,
|
|
129
|
+
COLOR_WARNING_20 as _,
|
|
130
130
|
BREAKPOINT_LG as a,
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
COLOR_WARNING_00 as a0,
|
|
132
|
+
COLOR_INFO_60 as a1,
|
|
133
133
|
COLOR_INFO_40 as a2,
|
|
134
134
|
COLOR_INFO_30 as a3,
|
|
135
135
|
COLOR_INFO_20 as a4,
|
|
@@ -176,28 +176,28 @@ export {
|
|
|
176
176
|
FONT_WEIGHT_REGULAR as az,
|
|
177
177
|
COLOR_ERROR_50 as b,
|
|
178
178
|
COLOR_NEUTRAL_40 as c,
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
179
|
+
COLOR_NEUTRAL_70 as d,
|
|
180
|
+
COLOR_WARNING_50 as e,
|
|
181
|
+
COLOR_INFO_50 as f,
|
|
182
|
+
COLOR_BRAND_CYAN_50 as g,
|
|
183
|
+
COLOR_NEUTRAL_00 as h,
|
|
184
|
+
BORDER_RADIUS_SMALL as i,
|
|
185
|
+
BORDER_RADIUS_MEDIUM as j,
|
|
186
|
+
BORDER_RADIUS_BIG as k,
|
|
187
|
+
BORDER_RADIUS_PILL as l,
|
|
188
|
+
COLOR_NEUTRAL_60 as m,
|
|
189
|
+
COLOR_NEUTRAL_50 as n,
|
|
190
|
+
COLOR_NEUTRAL_30 as o,
|
|
191
|
+
COLOR_NEUTRAL_20 as p,
|
|
192
|
+
COLOR_NEUTRAL_10 as q,
|
|
193
|
+
COLOR_BRAND_BLUE_60 as r,
|
|
194
|
+
COLOR_BRAND_BLUE_50 as s,
|
|
195
|
+
COLOR_BRAND_BLUE_40 as t,
|
|
196
|
+
COLOR_BRAND_BLUE_30 as u,
|
|
197
|
+
COLOR_BRAND_BLUE_20 as v,
|
|
198
|
+
COLOR_BRAND_BLUE_10 as w,
|
|
199
|
+
COLOR_BRAND_BLUE_00 as x,
|
|
200
|
+
COLOR_BRAND_EMERALD_60 as y,
|
|
201
|
+
COLOR_BRAND_EMERALD_50 as z
|
|
202
202
|
};
|
|
203
|
-
//# sourceMappingURL=tokens-
|
|
203
|
+
//# sourceMappingURL=tokens-D_iASp38.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tokens-
|
|
1
|
+
{"version":3,"file":"tokens-D_iASp38.js","sources":["../lib/core/tokens/.cache/tokens.ts"],"sourcesContent":["export const BORDER_RADIUS_SMALL = \"4px\";\nexport const BORDER_RADIUS_MEDIUM = \"8px\";\nexport const BORDER_RADIUS_BIG = \"16px\";\nexport const BORDER_RADIUS_PILL = \"999px\";\nexport const COLOR_NEUTRAL_70 = \"#16181d\";\nexport const COLOR_NEUTRAL_60 = \"#313131\";\nexport const COLOR_NEUTRAL_50 = \"#454a54\";\nexport const COLOR_NEUTRAL_40 = \"#5e6573\";\nexport const COLOR_NEUTRAL_30 = \"#c4c9d4\";\nexport const COLOR_NEUTRAL_20 = \"#e2e4e9\";\nexport const COLOR_NEUTRAL_10 = \"#f6f7fa\";\nexport const COLOR_NEUTRAL_00 = \"#ffffff\";\nexport const COLOR_BRAND_BLUE_60 = \"#18256c\";\nexport const COLOR_BRAND_BLUE_50 = \"#1737a4\";\nexport const COLOR_BRAND_BLUE_40 = \"#0048db\";\nexport const COLOR_BRAND_BLUE_30 = \"#9abcff\";\nexport const COLOR_BRAND_BLUE_20 = \"#dce8ff\";\nexport const COLOR_BRAND_BLUE_10 = \"#fafbff\";\nexport const COLOR_BRAND_BLUE_00 = \"#F2F5FC\";\nexport const COLOR_BRAND_EMERALD_60 = \"#013220\";\nexport const COLOR_BRAND_EMERALD_50 = \"#026441\";\nexport const COLOR_BRAND_EMERALD_40 = \"#04d98c\";\nexport const COLOR_BRAND_EMERALD_30 = \"#95f0cf\";\nexport const COLOR_BRAND_EMERALD_20 = \"#ccf2e4\";\nexport const COLOR_BRAND_EMERALD_10 = \"#edfef7\";\nexport const COLOR_BRAND_CYAN_60 = \"#004155\";\nexport const COLOR_BRAND_CYAN_50 = \"#005c77\";\nexport const COLOR_BRAND_CYAN_40 = \"#02bedf\";\nexport const COLOR_BRAND_CYAN_30 = \"#3edcff\";\nexport const COLOR_BRAND_CYAN_20 = \"#ccf3ff\";\nexport const COLOR_BRAND_CYAN_10 = \"#f1fcff\";\nexport const COLOR_SUCCESS_60 = \"#08331a\";\nexport const COLOR_SUCCESS_50 = \"#10593b\";\nexport const COLOR_SUCCESS_40 = \"#138040\";\nexport const COLOR_SUCCESS_30 = \"#66cc90\";\nexport const COLOR_SUCCESS_20 = \"#a1e5bd\";\nexport const COLOR_SUCCESS_10 = \"#e5fff0\";\nexport const COLOR_SUCCESS_00 = \"#f0fcf5\";\nexport const COLOR_ERROR_60 = \"#731111\";\nexport const COLOR_ERROR_50 = \"#991717\";\nexport const COLOR_ERROR_40 = \"#e52222\";\nexport const COLOR_ERROR_30 = \"#ff8080\";\nexport const COLOR_ERROR_20 = \"#ffbfbf\";\nexport const COLOR_ERROR_10 = \"#ffe5e5\";\nexport const COLOR_ERROR_00 = \"#f5eff0\";\nexport const COLOR_WARNING_60 = \"#803500\";\nexport const COLOR_WARNING_50 = \"#a64a08\";\nexport const COLOR_WARNING_40 = \"#fa822c\";\nexport const COLOR_WARNING_30 = \"#ffc59c\";\nexport const COLOR_WARNING_20 = \"#ffdabf\";\nexport const COLOR_WARNING_10 = \"#fff0e6\";\nexport const COLOR_WARNING_00 = \"#fcf4f0\";\nexport const COLOR_INFO_60 = \"#46008c\";\nexport const COLOR_INFO_50 = \"#510cb2\";\nexport const COLOR_INFO_40 = \"#6728e5\";\nexport const COLOR_INFO_30 = \"#bd9cff\";\nexport const COLOR_INFO_20 = \"#d4bfff\";\nexport const COLOR_INFO_10 = \"#eee6ff\";\nexport const COLOR_INFO_00 = \"#f3f0fc\";\nexport const SPACING_050 = \"4px\";\nexport const SPACING_100 = \"8px\";\nexport const SPACING_200 = \"16px\";\nexport const SPACING_300 = \"24px\";\nexport const SPACING_400 = \"32px\";\nexport const SPACING_500 = \"40px\";\nexport const SPACING_600 = \"48px\";\nexport const SPACING_700 = \"56px\";\nexport const SPACING_800 = \"64px\";\nexport const SPACING_900 = \"72px\";\nexport const BREAKPOINT_XSM = \"0px\";\nexport const BREAKPOINT_SM = \"320px\";\nexport const BREAKPOINT_MD = \"600px\";\nexport const BREAKPOINT_LG = \"1024px\";\nexport const BREAKPOINT_XLG = \"1920px\";\nexport const CONTAINER_SIZE = \"1232px\";\nexport const OPACITY_00 = \"0.05\";\nexport const OPACITY_10 = \"0.2\";\nexport const OPACITY_20 = \"0.4\";\nexport const OPACITY_30 = \"0.6\";\nexport const OPACITY_40 = \"0.8\";\nexport const SHADOW_01 = \"0px 2px 8px 0px rgba(169, 177, 197, 0.08), 0px 4px 4px 0px rgba(0, 72, 219, 0.04)\";\nexport const SHADOW_02 = \"0px 8px 24px 0px rgba(118, 134, 173, 0.08), 0px 4px 4px 0px rgba(0, 72, 219, 0.04)\";\nexport const SHADOW_03 = \"0px 16px 40px 0px rgba(118, 134, 173, 0.08), 0px 8px 8px 0px rgba(0, 72, 219, 0.04)\";\nexport const SHADOW_04 = \"0px 24px 56px 0px rgba(118, 134, 173, 0.08), 0px 12px 12px 0px rgba(0, 72, 219, 0.04)\";\nexport const FONT_TITLE = \"'Lexend Deca', sans-serif\";\nexport const FONT_BODY = \"'Source Sans 3', sans-serif\";\nexport const FONT_WEIGHT_BOLD = \"700\";\nexport const FONT_WEIGHT_SEMIBOLD = \"600\";\nexport const FONT_WEIGHT_MEDIUM = \"500\";\nexport const FONT_WEIGHT_REGULAR = \"400\";\nexport const FONT_SIZE_H1 = \"56px\";\nexport const FONT_SIZE_H2 = \"48px\";\nexport const FONT_SIZE_H3 = \"40px\";\nexport const FONT_SIZE_H4 = \"32px\";\nexport const FONT_SIZE_H5 = \"28px\";\nexport const FONT_SIZE_H6 = \"24px\";\nexport const FONT_SIZE_P1 = \"20px\";\nexport const FONT_SIZE_P2 = \"16px\";\nexport const FONT_SIZE_P3 = \"14px\";\nexport const FONT_SIZE_P4 = \"12px\";"],"names":[],"mappings":"AAAO,MAAM,sBAAsB;AAC5B,MAAM,uBAAuB;AAC7B,MAAM,oBAAoB;AAC1B,MAAM,qBAAqB;AAC3B,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,yBAAyB;AAC/B,MAAM,yBAAyB;AAC/B,MAAM,yBAAyB;AAC/B,MAAM,yBAAyB;AAC/B,MAAM,yBAAyB;AAC/B,MAAM,yBAAyB;AAC/B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,sBAAsB;AAC5B,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,iBAAiB;AACvB,MAAM,iBAAiB;AACvB,MAAM,iBAAiB;AACvB,MAAM,iBAAiB;AACvB,MAAM,iBAAiB;AACvB,MAAM,iBAAiB;AACvB,MAAM,iBAAiB;AACvB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,mBAAmB;AACzB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,cAAc;AACpB,MAAM,cAAc;AACpB,MAAM,cAAc;AACpB,MAAM,cAAc;AACpB,MAAM,cAAc;AACpB,MAAM,cAAc;AACpB,MAAM,cAAc;AACpB,MAAM,cAAc;AACpB,MAAM,cAAc;AACpB,MAAM,cAAc;AACpB,MAAM,iBAAiB;AACvB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,iBAAiB;AACvB,MAAM,iBAAiB;AACvB,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,YAAY;AAClB,MAAM,YAAY;AAClB,MAAM,YAAY;AAClB,MAAM,YAAY;AAClB,MAAM,aAAa;AACnB,MAAM,YAAY;AAClB,MAAM,mBAAmB;AACzB,MAAM,uBAAuB;AAC7B,MAAM,qBAAqB;AAC3B,MAAM,sBAAsB;AAC5B,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;"}
|