@veritone-ce/design-system 2.0.4 → 2.0.6
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/esm-next/Button/index.js +3 -0
- package/dist/esm-next/Button/styles.module.scss.js +1 -1
- package/dist/esm-next/Icon/internal.js +3 -1
- package/dist/esm-next/IconButton/index.js +1 -0
- package/dist/esm-next/Pagination/index.js +50 -0
- package/dist/esm-next/Pagination/styles.module.scss.js +3 -0
- package/dist/esm-next/Select/controlled.js +3 -1
- package/dist/esm-next/TablePagination/index.js +71 -0
- package/dist/esm-next/TablePagination/styles.module.scss.js +3 -0
- package/dist/esm-next/Tooltip/index.js +7 -3
- package/dist/esm-next/index.js +2 -0
- package/dist/esm-next/styles.css +5 -3
- package/dist/types/src-next/Button/index.d.ts +2 -0
- package/dist/types/src-next/IconButton/index.d.ts +1 -0
- package/dist/types/src-next/Pagination/index.d.ts +7 -0
- package/dist/types/src-next/Select/controlled.d.ts +1 -1
- package/dist/types/src-next/Select/types.d.ts +4 -2
- package/dist/types/src-next/TablePagination/index.d.ts +12 -0
- package/dist/types/src-next/Tooltip/index.d.ts +2 -1
- package/dist/types/src-next/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ const Button = forwardRef(
|
|
|
16
16
|
disabled = false,
|
|
17
17
|
loading = false,
|
|
18
18
|
destructive = false,
|
|
19
|
+
active = false,
|
|
19
20
|
...props
|
|
20
21
|
}, ref) => {
|
|
21
22
|
const variantCn = modules_efc4e723[variant];
|
|
@@ -23,8 +24,10 @@ const Button = forwardRef(
|
|
|
23
24
|
"button",
|
|
24
25
|
{
|
|
25
26
|
ref,
|
|
27
|
+
type: props.type,
|
|
26
28
|
"data-size": size,
|
|
27
29
|
"data-loading": loading,
|
|
30
|
+
"data-active": active,
|
|
28
31
|
disabled: loading || disabled,
|
|
29
32
|
"data-destructive": destructive,
|
|
30
33
|
onClick: props.onClick,
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var modules_efc4e723 = {"button":"
|
|
1
|
+
var modules_efc4e723 = {"button":"vt_ce_Button_button__6f31f5c5","primary":"vt_ce_Button_primary__6f31f5c5","secondary":"vt_ce_Button_secondary__6f31f5c5","tertiary":"vt_ce_Button_tertiary__6f31f5c5","inner-container":"vt_ce_Button_innerContainer__6f31f5c5","loading-container":"vt_ce_Button_loadingContainer__6f31f5c5","button-icon":"vt_ce_Button_buttonIcon__6f31f5c5"};
|
|
2
2
|
|
|
3
3
|
export { modules_efc4e723 as default };
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
import { jsx } from 'react/jsx-runtime';
|
|
3
3
|
import { createIconComponent } from './factory.js';
|
|
4
|
-
import { Close } from '@mui/icons-material';
|
|
4
|
+
import { NavigateNext, NavigateBefore, Close } from '@mui/icons-material';
|
|
5
5
|
import { adaptMuiSvgIcon, adaptSvgIcon } from './wrappers.js';
|
|
6
6
|
|
|
7
7
|
const DSIcon = createIconComponent({
|
|
8
8
|
iconMap: {
|
|
9
|
+
navigateNext: adaptMuiSvgIcon(NavigateNext),
|
|
10
|
+
navigateBefore: adaptMuiSvgIcon(NavigateBefore),
|
|
9
11
|
close: adaptMuiSvgIcon(Close),
|
|
10
12
|
success: adaptSvgIcon(
|
|
11
13
|
/* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx(
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
'use client';
|
|
3
|
+
import { jsx } from 'react/jsx-runtime';
|
|
4
|
+
import usePaginationUntyped from '@mui/material/usePagination';
|
|
5
|
+
import modules_efc4e723 from './styles.module.scss.js';
|
|
6
|
+
import Button from '../Button/index.js';
|
|
7
|
+
import IconButton from '../IconButton/index.js';
|
|
8
|
+
import { DSIcon } from '../Icon/internal.js';
|
|
9
|
+
|
|
10
|
+
const usePagination = usePaginationUntyped;
|
|
11
|
+
function Pagination(props) {
|
|
12
|
+
const { items } = usePagination({
|
|
13
|
+
count: props.numPages,
|
|
14
|
+
page: props.page,
|
|
15
|
+
onChange(e, pageNum) {
|
|
16
|
+
props.onChangePage(pageNum);
|
|
17
|
+
},
|
|
18
|
+
showFirstButton: false,
|
|
19
|
+
showLastButton: false
|
|
20
|
+
});
|
|
21
|
+
return /* @__PURE__ */ jsx("nav", { children: /* @__PURE__ */ jsx("ul", { className: modules_efc4e723["list"], children: items.map(({ page, type, selected, ...item }, index) => {
|
|
22
|
+
let children = null;
|
|
23
|
+
if (type === "start-ellipsis" || type === "end-ellipsis") {
|
|
24
|
+
children = /* @__PURE__ */ jsx("span", { className: modules_efc4e723["ellipsis"], children: "\u2026" });
|
|
25
|
+
} else if (type === "page") {
|
|
26
|
+
children = /* @__PURE__ */ jsx(
|
|
27
|
+
Button,
|
|
28
|
+
{
|
|
29
|
+
variant: "tertiary",
|
|
30
|
+
type: "button",
|
|
31
|
+
active: selected,
|
|
32
|
+
...item,
|
|
33
|
+
children: page
|
|
34
|
+
}
|
|
35
|
+
);
|
|
36
|
+
} else {
|
|
37
|
+
switch (type) {
|
|
38
|
+
case "next":
|
|
39
|
+
children = /* @__PURE__ */ jsx(IconButton, { type: "button", ...item, children: /* @__PURE__ */ jsx(DSIcon, { name: "navigateNext" }) });
|
|
40
|
+
break;
|
|
41
|
+
case "previous":
|
|
42
|
+
children = /* @__PURE__ */ jsx(IconButton, { type: "button", ...item, children: /* @__PURE__ */ jsx(DSIcon, { name: "navigateBefore" }) });
|
|
43
|
+
break;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
return /* @__PURE__ */ jsx("li", { children }, index);
|
|
47
|
+
}) }) });
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export { Pagination as default };
|
|
@@ -18,6 +18,7 @@ function ControlledSelect({
|
|
|
18
18
|
ref,
|
|
19
19
|
endIcon = /* @__PURE__ */ jsx(DefaultEndIcon, {}),
|
|
20
20
|
placeholder = "Select...",
|
|
21
|
+
clearable = true,
|
|
21
22
|
...props
|
|
22
23
|
}) {
|
|
23
24
|
const anchorId = useId();
|
|
@@ -60,6 +61,7 @@ function ControlledSelect({
|
|
|
60
61
|
{
|
|
61
62
|
ref,
|
|
62
63
|
type: "text",
|
|
64
|
+
size: props.size,
|
|
63
65
|
placeholder,
|
|
64
66
|
value: selectedOption?.label ?? props.inputValue,
|
|
65
67
|
disabled: props.disabled,
|
|
@@ -67,7 +69,7 @@ function ControlledSelect({
|
|
|
67
69
|
className: modules_efc4e723["inner-input"]
|
|
68
70
|
}
|
|
69
71
|
),
|
|
70
|
-
selectedOption && /* @__PURE__ */ jsx(
|
|
72
|
+
selectedOption && clearable && /* @__PURE__ */ jsx(
|
|
71
73
|
"span",
|
|
72
74
|
{
|
|
73
75
|
className: modules_efc4e723["select-icon"],
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
'use client';
|
|
3
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
4
|
+
import modules_efc4e723 from './styles.module.scss.js';
|
|
5
|
+
import IconButton from '../IconButton/index.js';
|
|
6
|
+
import { DSIcon } from '../Icon/internal.js';
|
|
7
|
+
import '../Select/controlled.js';
|
|
8
|
+
import Select from '../Select/uncontrolled.js';
|
|
9
|
+
import 'react';
|
|
10
|
+
|
|
11
|
+
function TablePagination({
|
|
12
|
+
page,
|
|
13
|
+
count,
|
|
14
|
+
rowsPerPage = 10,
|
|
15
|
+
rowsPerPageOptions = [10, 50, 100],
|
|
16
|
+
rowsPerPageLabel = "Rows per page:",
|
|
17
|
+
...props
|
|
18
|
+
}) {
|
|
19
|
+
const showPrev = page !== 1;
|
|
20
|
+
const showNext = page < count / rowsPerPage;
|
|
21
|
+
return /* @__PURE__ */ jsxs("nav", { className: modules_efc4e723["container"], children: [
|
|
22
|
+
/* @__PURE__ */ jsxs("span", { className: modules_efc4e723["rows-per-page"], children: [
|
|
23
|
+
/* @__PURE__ */ jsx("label", { className: modules_efc4e723["rows-per-page-label"], children: rowsPerPageLabel }),
|
|
24
|
+
/* @__PURE__ */ jsx(
|
|
25
|
+
Select,
|
|
26
|
+
{
|
|
27
|
+
defaultValue: rowsPerPage,
|
|
28
|
+
clearable: false,
|
|
29
|
+
size: rowsPerPageOptions.length > 0 ? getDigits(Math.max(...rowsPerPageOptions)) - 1 : 3,
|
|
30
|
+
options: rowsPerPageOptions.map((option) => ({
|
|
31
|
+
label: option.toLocaleString(),
|
|
32
|
+
value: option
|
|
33
|
+
})),
|
|
34
|
+
className: modules_efc4e723["rows-per-page-select"]
|
|
35
|
+
}
|
|
36
|
+
)
|
|
37
|
+
] }),
|
|
38
|
+
/* @__PURE__ */ jsxs("span", { className: modules_efc4e723["page-counts"], children: [
|
|
39
|
+
(page - 1) * rowsPerPage + 1,
|
|
40
|
+
"-",
|
|
41
|
+
page * rowsPerPage,
|
|
42
|
+
" of ",
|
|
43
|
+
count
|
|
44
|
+
] }),
|
|
45
|
+
/* @__PURE__ */ jsxs("ul", { className: modules_efc4e723["btn-list"], children: [
|
|
46
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
47
|
+
IconButton,
|
|
48
|
+
{
|
|
49
|
+
type: "button",
|
|
50
|
+
disabled: !showPrev,
|
|
51
|
+
onClick: () => props.onChangePage(page - 1),
|
|
52
|
+
children: /* @__PURE__ */ jsx(DSIcon, { name: "navigateBefore" })
|
|
53
|
+
}
|
|
54
|
+
) }),
|
|
55
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
56
|
+
IconButton,
|
|
57
|
+
{
|
|
58
|
+
type: "button",
|
|
59
|
+
disabled: !showNext,
|
|
60
|
+
onClick: () => props.onChangePage(page + 1),
|
|
61
|
+
children: /* @__PURE__ */ jsx(DSIcon, { name: "navigateNext" })
|
|
62
|
+
}
|
|
63
|
+
) })
|
|
64
|
+
] })
|
|
65
|
+
] });
|
|
66
|
+
}
|
|
67
|
+
const getDigits = (number) => {
|
|
68
|
+
return Math.max(Math.floor(Math.log10(Math.abs(number))), 0) + 1;
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export { TablePagination as default };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var modules_efc4e723 = {"container":"vt_ce_TablePagination_container__a0c528c3","rows-per-page":"vt_ce_TablePagination_rowsPerPage__a0c528c3","rows-per-page-label":"vt_ce_TablePagination_rowsPerPageLabel__a0c528c3","rows-per-page-select":"vt_ce_TablePagination_rowsPerPageSelect__a0c528c3","page-counts":"vt_ce_TablePagination_pageCounts__a0c528c3","btn-list":"vt_ce_TablePagination_btnList__a0c528c3","ellipsis":"vt_ce_TablePagination_ellipsis__a0c528c3"};
|
|
2
|
+
|
|
3
|
+
export { modules_efc4e723 as default };
|
|
@@ -8,7 +8,11 @@ import { defaultThemeCssVariableUsages } from '../styles/defaultTheme.js';
|
|
|
8
8
|
import '@mui/system';
|
|
9
9
|
import '../styles/styled.js';
|
|
10
10
|
|
|
11
|
-
function Tooltip({
|
|
11
|
+
function Tooltip({
|
|
12
|
+
placement = "bottom",
|
|
13
|
+
showArrow = true,
|
|
14
|
+
...props
|
|
15
|
+
}) {
|
|
12
16
|
const [_isOpen, setIsOpen] = React__default.useState(false);
|
|
13
17
|
const isOpen = props.isOpen ?? _isOpen;
|
|
14
18
|
const arrowRef = React__default.useRef(null);
|
|
@@ -21,7 +25,7 @@ function Tooltip({ placement = "bottom", ...props }) {
|
|
|
21
25
|
inline(),
|
|
22
26
|
flip(),
|
|
23
27
|
shift(),
|
|
24
|
-
arrow({
|
|
28
|
+
showArrow && arrow({
|
|
25
29
|
element: arrowRef
|
|
26
30
|
})
|
|
27
31
|
],
|
|
@@ -64,7 +68,7 @@ function Tooltip({ placement = "bottom", ...props }) {
|
|
|
64
68
|
...getFloatingProps(),
|
|
65
69
|
className: modules_efc4e723["tooltip-body"],
|
|
66
70
|
children: [
|
|
67
|
-
/* @__PURE__ */ jsx(
|
|
71
|
+
showArrow && /* @__PURE__ */ jsx(
|
|
68
72
|
FloatingArrow,
|
|
69
73
|
{
|
|
70
74
|
ref: arrowRef,
|
package/dist/esm-next/index.js
CHANGED
|
@@ -27,10 +27,12 @@ export { default as IconButton } from './IconButton/index.js';
|
|
|
27
27
|
export { default as Input } from './Input/index.js';
|
|
28
28
|
export { default as Menu, MenuItem } from './Menu/controlled.js';
|
|
29
29
|
export { createMenuComponent } from './Menu/factory.js';
|
|
30
|
+
export { default as Pagination } from './Pagination/index.js';
|
|
30
31
|
export { default as RadioButton } from './RadioButton/index.js';
|
|
31
32
|
export { default as ControlledSelect } from './Select/controlled.js';
|
|
32
33
|
export { default as Select } from './Select/uncontrolled.js';
|
|
33
34
|
export { createControlledSelectComponent, createSelectComponent } from './Select/factory.js';
|
|
35
|
+
export { default as TablePagination } from './TablePagination/index.js';
|
|
34
36
|
export { default as Textarea } from './Textarea/index.js';
|
|
35
37
|
export { default as Toast } from './Toast/index.js';
|
|
36
38
|
export { ToastProvider, useToast } from './Toast/hook.js';
|
package/dist/esm-next/styles.css
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
.vt_ce_Checkbox_checkbox__b74b16bc{align-items:center;color:var(--vt-ce-theme-palette-text-secondary,#5c6269);cursor:pointer;display:inline-flex}.vt_ce_Checkbox_checkbox__b74b16bc .vt_ce_Checkbox_checkboxSvgPath__b74b16bc{fill:var(--vt-ce-theme-palette-text-secondary,#5c6269)}.vt_ce_Checkbox_checkbox__b74b16bc:hover .vt_ce_Checkbox_checkboxSvgPath__b74b16bc{fill:var(--vt-ce-theme-palette-action-hover,#335b89)}.vt_ce_Checkbox_checkbox__b74b16bc[aria-checked=mixed] .vt_ce_Checkbox_checkboxSvgPath__b74b16bc,.vt_ce_Checkbox_checkbox__b74b16bc[aria-checked=true] .vt_ce_Checkbox_checkboxSvgPath__b74b16bc{fill:var(--vt-ce-theme-palette-action-primary,#1871e8)}.vt_ce_Checkbox_checkbox__b74b16bc[aria-checked=mixed]:hover .vt_ce_Checkbox_checkboxSvgPath__b74b16bc,.vt_ce_Checkbox_checkbox__b74b16bc[aria-checked=true]:hover .vt_ce_Checkbox_checkboxSvgPath__b74b16bc{fill:var(--vt-ce-theme-palette-action-hover,#335b89)}.vt_ce_Checkbox_checkbox__b74b16bc[aria-disabled=true] .vt_ce_Checkbox_checkboxSvgPath__b74b16bc,.vt_ce_Checkbox_checkbox__b74b16bc[aria-disabled=true]:hover .vt_ce_Checkbox_checkboxSvgPath__b74b16bc{fill:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Checkbox_passthroughLabelContainer__b74b16bc{cursor:pointer;display:inline-block;height:40px;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:40px}.vt_ce_Checkbox_invisibleCheckbox__b74b16bc{cursor:pointer;height:0;opacity:0;position:absolute;width:0}.vt_ce_Checkbox_visibleLabel__b74b16bc{font-family:var(--vt-ce-theme-typography-paragraph2-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph2-font-size,14px);font-style:var(--vt-ce-theme-typography-paragraph2-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph2-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph2-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph2-line-height,20px);margin-left:5px;text-transform:var(--vt-ce-theme-typography-paragraph2-text-transform,inherit)}.vt_ce_Checkbox_iconContainer__b74b16bc{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:1}
|
|
2
2
|
.vt_ce_Input_input__b1641fef{display:inline-flex;flex-direction:column;gap:3px}.vt_ce_Input_label__b1641fef{color:var(--vt-ce-theme-palette-text-secondary,#5c6269);font-family:var(--vt-ce-theme-typography-label-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-label-font-size,14px);font-style:var(--vt-ce-theme-typography-label-font-style,normal);font-weight:var(--vt-ce-theme-typography-label-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-label-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-label-line-height,17px);text-transform:var(--vt-ce-theme-typography-label-text-transform,inherit)}.vt_ce_Input_innerInputContainer__b1641fef{align-items:center;align-self:stretch;background:var(--vt-ce-theme-palette-background,#fff);border-radius:4px;color:var(--vt-ce-theme-palette-text-primary,#2a323c);display:flex;gap:10px;margin-bottom:1px;margin-top:1px;outline-color:var(--vt-ce-theme-palette-text-secondary,#5c6269);outline-style:solid;outline-width:1px;padding:0 8px}.vt_ce_Input_innerInputContainer__b1641fef:focus-within{outline-color:var(--vt-ce-theme-palette-action-hover,#335b89);outline-width:2px}.vt_ce_Input_innerInputContainer__b1641fef:hover{outline-color:var(--vt-ce-theme-palette-action-hover,#335b89);outline-width:2px}.vt_ce_Input_innerInputContainer__b1641fef[data-disabled=true]{background-color:var(--vt-ce-theme-palette-disabledBackground,#fafafa);color:var(--vt-ce-theme-palette-disabled,#7c848d);outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0)}.vt_ce_Input_innerInputContainer__b1641fef[data-disabled=true]:focus-within{outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);outline-width:1px}.vt_ce_Input_innerInputContainer__b1641fef[data-disabled=true]:hover{outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);outline-width:1px}.vt_ce_Input_innerInputContainer__b1641fef[data-error=true]{outline-color:var(--vt-ce-theme-palette-indicator-error,#eb0000)}.vt_ce_Input_innerInput__b1641fef{background:none;border:none;color:inherit;flex-grow:1;font-family:var(--vt-ce-theme-typography-paragraph2-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph2-font-size,14px);font-style:var(--vt-ce-theme-typography-paragraph2-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph2-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph2-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph2-line-height,20px);outline:none;padding:8px 0;text-transform:var(--vt-ce-theme-typography-paragraph2-text-transform,inherit)}.vt_ce_Input_innerInput__b1641fef::-moz-placeholder{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Input_innerInput__b1641fef::placeholder{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Input_inputIcon__b1641fef{align-items:center;display:inline-flex;flex-shrink:0;justify-content:center;padding:8px 0;--vt-ce-icon-size:18px}.vt_ce_Input_helpLabel__b1641fef{color:var(--vt-ce-theme-palette-text-secondary,#5c6269)}.vt_ce_Input_errorLabel__b1641fef,.vt_ce_Input_helpLabel__b1641fef{font-family:var(--vt-ce-theme-typography-paragraph3-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph3-font-size,12px);font-style:var(--vt-ce-theme-typography-paragraph3-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph3-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph3-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph3-line-height,18px);text-transform:var(--vt-ce-theme-typography-paragraph3-text-transform,inherit)}.vt_ce_Input_errorLabel__b1641fef{align-items:center;color:var(--vt-ce-theme-palette-indicator-error,#eb0000);display:flex;gap:3px}
|
|
3
|
+
.vt_ce_Pagination_list__50478999{align-items:center;display:flex;list-style:none;margin:0;padding:0}.vt_ce_Pagination_list__50478999 li{align-items:center;display:flex}.vt_ce_Pagination_ellipsis__50478999{color:var(--vt-ce-theme-palette-text-tertiary,#465364)}
|
|
3
4
|
.vt_ce_RadioButton_radio__2b107241{align-items:center;color:var(--vt-ce-theme-palette-text-secondary,#5c6269);cursor:pointer;display:flex}.vt_ce_RadioButton_radio__2b107241 .vt_ce_RadioButton_radioCircleOuter__2b107241{fill:none;stroke:var(--vt-ce-theme-palette-text-tertiary,#465364)}.vt_ce_RadioButton_radio__2b107241 .vt_ce_RadioButton_radioCircleInner__2b107241{fill:none}.vt_ce_RadioButton_radio__2b107241:hover .vt_ce_RadioButton_radioCircleOuter__2b107241{fill:none;stroke:var(--vt-ce-theme-palette-text-tertiary,#465364)}.vt_ce_RadioButton_radio__2b107241:hover .vt_ce_RadioButton_radioCircleInner__2b107241{fill:var(--vt-ce-theme-palette-action-hover,#335b89)}.vt_ce_RadioButton_radio__2b107241[aria-checked=true] .vt_ce_RadioButton_radioCircleInner__2b107241{fill:var(--vt-ce-theme-palette-action-primary,#1871e8)}.vt_ce_RadioButton_radio__2b107241[aria-checked=true]:hover .vt_ce_RadioButton_radioCircleInner__2b107241{fill:var(--vt-ce-theme-palette-action-hover,#335b89)}.vt_ce_RadioButton_radio__2b107241[aria-disabled=true]{color:var(--vt-ce-theme-palette-disabled,#7c848d);fill:none}.vt_ce_RadioButton_radio__2b107241[aria-disabled=true] .vt_ce_RadioButton_radioCircleOuter__2b107241{stroke:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_RadioButton_radio__2b107241[aria-disabled=true][aria-checked=true] .vt_ce_RadioButton_radioCircleInner__2b107241{fill:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_RadioButton_radio__2b107241[aria-disabled=true]:hover{fill:none}.vt_ce_RadioButton_radio__2b107241[aria-disabled=true]:hover .vt_ce_RadioButton_radioCircleOuter__2b107241{stroke:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_RadioButton_radio__2b107241[aria-disabled=true]:hover[aria-checked=true] .vt_ce_RadioButton_radioCircleInner__2b107241{fill:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_RadioButton_passthroughLabelContainer__2b107241{cursor:pointer;display:inline-block;height:40px;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:40px}.vt_ce_RadioButton_invisibleRadio__2b107241{cursor:pointer;height:0;opacity:0;position:absolute;width:0}.vt_ce_RadioButton_visibleLabel__2b107241{font-family:var(--vt-ce-theme-typography-paragraph1-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph1-font-size,16px);font-style:var(--vt-ce-theme-typography-paragraph1-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph1-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph1-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph1-line-height,24px);margin-left:5px;text-transform:var(--vt-ce-theme-typography-paragraph1-text-transform,inherit)}.vt_ce_RadioButton_iconContainer__2b107241{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:1}
|
|
5
|
+
.vt_ce_TablePagination_container__a0c528c3{align-items:center;display:flex;gap:25px}.vt_ce_TablePagination_rowsPerPage__a0c528c3{align-items:center;display:flex}.vt_ce_TablePagination_rowsPerPageLabel__a0c528c3{color:var(--vt-ce-theme-palette-text-secondary,#5c6269);font-family:var(--vt-ce-theme-typography-paragraph3-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph3-font-size,12px);font-style:var(--vt-ce-theme-typography-paragraph3-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph3-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph3-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph3-line-height,18px);margin-inline-end:8px;text-transform:var(--vt-ce-theme-typography-paragraph3-text-transform,inherit)}.vt_ce_TablePagination_rowsPerPageSelect__a0c528c3{flex-shrink:0}.vt_ce_TablePagination_pageCounts__a0c528c3{color:var(--vt-ce-theme-palette-text-primary,#2a323c);font-family:var(--vt-ce-theme-typography-paragraph3-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph3-font-size,12px);font-style:var(--vt-ce-theme-typography-paragraph3-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph3-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph3-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph3-line-height,18px);text-transform:var(--vt-ce-theme-typography-paragraph3-text-transform,inherit)}.vt_ce_TablePagination_btnList__a0c528c3{align-items:center;display:flex;flex-shrink:0;gap:8px;list-style:none;margin:0;padding:0}.vt_ce_TablePagination_btnList__a0c528c3 li{align-items:center;display:flex}.vt_ce_TablePagination_ellipsis__a0c528c3{color:var(--vt-ce-theme-palette-text-tertiary,#465364)}
|
|
4
6
|
.vt_ce_Textarea_textarea__8ff9396f{display:inline-flex;flex-direction:column;gap:3px}.vt_ce_Textarea_label__8ff9396f{color:var(--vt-ce-theme-palette-text-secondary,#5c6269);font-family:var(--vt-ce-theme-typography-label-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-label-font-size,14px);font-style:var(--vt-ce-theme-typography-label-font-style,normal);font-weight:var(--vt-ce-theme-typography-label-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-label-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-label-line-height,17px);text-transform:var(--vt-ce-theme-typography-label-text-transform,inherit)}.vt_ce_Textarea_innerTextareaContainer__8ff9396f{align-items:center;align-self:stretch;background:var(--vt-ce-theme-palette-background,#fff);border-radius:4px;color:var(--vt-ce-theme-palette-text-primary,#2a323c);display:flex;gap:10px;margin-bottom:1px;margin-top:1px;outline-color:unset;outline-style:solid;outline-width:1px;padding:8px}.vt_ce_Textarea_innerTextareaContainer__8ff9396f:focus-within{outline-color:unset;outline-width:2px}.vt_ce_Textarea_innerTextareaContainer__8ff9396f[data-disabled=true]{background-color:var(--vt-ce-theme-palette-disabledBackground,#fafafa);color:var(--vt-ce-theme-palette-disabled,#7c848d);outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0)}.vt_ce_Textarea_innerTextareaContainer__8ff9396f[data-disabled=true]:focus-within{outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);outline-width:1px}.vt_ce_Textarea_innerTextareaContainer__8ff9396f[data-disabled=true]:hover{outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);outline-width:1px}.vt_ce_Textarea_innerTextareaContainer__8ff9396f[data-error=true]{outline-color:var(--vt-ce-theme-palette-indicator-error,#eb0000)}.vt_ce_Textarea_innerTextarea__8ff9396f{background:none;border:none;color:inherit;flex-grow:1;font-family:var(--vt-ce-theme-typography-paragraph2-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph2-font-size,14px);font-style:var(--vt-ce-theme-typography-paragraph2-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph2-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph2-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph2-line-height,20px);outline:none;text-transform:var(--vt-ce-theme-typography-paragraph2-text-transform,inherit)}.vt_ce_Textarea_innerTextarea__8ff9396f::-moz-placeholder{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Textarea_innerTextarea__8ff9396f::placeholder{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Textarea_helpLabel__8ff9396f{color:var(--vt-ce-theme-palette-text-secondary,#5c6269)}.vt_ce_Textarea_errorLabel__8ff9396f,.vt_ce_Textarea_helpLabel__8ff9396f{font-family:var(--vt-ce-theme-typography-paragraph3-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph3-font-size,12px);font-style:var(--vt-ce-theme-typography-paragraph3-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph3-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph3-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph3-line-height,18px);text-transform:var(--vt-ce-theme-typography-paragraph3-text-transform,inherit)}.vt_ce_Textarea_errorLabel__8ff9396f{align-items:center;color:var(--vt-ce-theme-palette-indicator-error,#eb0000);display:flex;gap:3px}
|
|
5
7
|
.vt_ce_Alert_alert__014c1660{--alert-color:var(--vt-ce-theme-palette-indicator-success,#28ba3f);align-items:stretch;background-color:var(--vt-ce-theme-palette-background,#fff);border-color:var(--vt-ce-theme-palette-disabled,#7c848d);border-radius:4px;border-style:solid;border-width:1px;display:flex;width:415px}.vt_ce_Alert_alertStripe__014c1660{background-color:var(--alert-color);width:4px}.vt_ce_Alert_alertIcon__014c1660{align-items:center;color:var(--alert-color);display:flex;margin:10px;--vt-ce-icon-size:24px}.vt_ce_Alert_alertContent__014c1660{align-items:baseline;color:var(--vt-ce-theme-palette-text-primary,#2a323c);display:flex;flex-wrap:wrap;margin:14px 0}.vt_ce_Alert_alertLabel__014c1660{font-weight:var(--vt-ce-theme-typography-paragraph3-font-weight,400);font-weight:700}.vt_ce_Alert_alertLabel__014c1660,.vt_ce_Alert_alertText__014c1660{display:inline-block;font-family:var(--vt-ce-theme-typography-paragraph3-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph3-font-size,12px);font-style:var(--vt-ce-theme-typography-paragraph3-font-style,normal);letter-spacing:var(--vt-ce-theme-typography-paragraph3-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph3-line-height,18px);margin-right:2px;text-transform:var(--vt-ce-theme-typography-paragraph3-text-transform,inherit);white-space:pre}.vt_ce_Alert_alertText__014c1660{font-weight:var(--vt-ce-theme-typography-paragraph3-font-weight,400)}.vt_ce_Alert_spacer__014c1660{flex-grow:1}.vt_ce_Alert_alertAction__014c1660{flex-shrink:0}.vt_ce_Alert_alertClose__014c1660{align-items:center;color:var(--vt-ce-theme-palette-text-primary,#2a323c);display:flex;margin-right:10px}
|
|
6
8
|
/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */*,:after,:before{box-sizing:border-box}html{font-family:system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;line-height:1.15;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0}hr{color:inherit;height:0}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}
|
|
7
9
|
.vt_ce_CircularProgress_container__4c2cfc25{--circular-progress-color:var(--vt-ce-theme-palette-action-primary,#1871e8);align-items:baseline;color:var(--circular-progress-color);display:inline-flex;justify-content:center}.vt_ce_CircularProgress_container__4c2cfc25[data-fill-parent-height=true]{align-items:stretch;height:100%;width:100%}.vt_ce_CircularProgress_container__4c2cfc25[data-fill-parent-height=true] .vt_ce_CircularProgress_progressContainer__4c2cfc25{height:100%;width:100%}.vt_ce_CircularProgress_progressContainer__4c2cfc25{display:inline-block;height:var(--circular-progress-size);width:var(--circular-progress-size)}.vt_ce_CircularProgress_progressSvg__4c2cfc25{display:block;stroke:currentColor;animation:vt_ce_CircularProgress_circularRotateKeyframe__4c2cfc25 1.4s linear infinite;height:100%}.vt_ce_CircularProgress_progressCircle__4c2cfc25{stroke-dasharray:80px,200px;stroke-dashoffset:0;animation:vt_ce_CircularProgress_circularDashKeyframe__4c2cfc25 1.4s ease-in-out infinite}@keyframes vt_ce_CircularProgress_circularRotateKeyframe__4c2cfc25{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes vt_ce_CircularProgress_circularDashKeyframe__4c2cfc25{0%{stroke-dasharray:1px,200px;stroke-dashoffset:0}50%{stroke-dasharray:100px,200px;stroke-dashoffset:-15px}to{stroke-dasharray:100px,200px;stroke-dashoffset:-125px}}
|
|
8
|
-
.
|
|
10
|
+
.vt_ce_Button_button__6f31f5c5{align-items:center;border:1px solid transparent;border-radius:4px;cursor:pointer;display:inline-flex;gap:5px;justify-content:center;position:relative}.vt_ce_Button_button__6f31f5c5[data-size=large]{font-family:var(--vt-ce-theme-typography-button-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-button-font-size,14px);font-style:var(--vt-ce-theme-typography-button-font-style,normal);font-weight:var(--vt-ce-theme-typography-button-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-button-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-button-line-height,20px);min-height:36px;padding:7px 15px;text-transform:var(--vt-ce-theme-typography-button-text-transform,inherit)}.vt_ce_Button_button__6f31f5c5[data-size=small]{font-family:var(--vt-ce-theme-typography-buttonSmall-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-buttonSmall-font-size,12px);font-style:var(--vt-ce-theme-typography-buttonSmall-font-style,normal);font-weight:var(--vt-ce-theme-typography-buttonSmall-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-buttonSmall-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-buttonSmall-line-height,18px);min-height:26px;padding:3px 15px;text-transform:var(--vt-ce-theme-typography-buttonSmall-text-transform,inherit)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_primary__6f31f5c5{background-color:var(--vt-ce-theme-palette-action-primary,#1871e8);color:var(--vt-ce-theme-palette-action-on,#fff)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_primary__6f31f5c5:hover,.vt_ce_Button_button__6f31f5c5.vt_ce_Button_primary__6f31f5c5[data-active=true]{background-color:var(--vt-ce-theme-palette-action-hover,#335b89)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_primary__6f31f5c5:disabled{background-color:var(--vt-ce-theme-palette-disabledBackground,#fafafa);border-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_primary__6f31f5c5[data-destructive=true]{background-color:var(--vt-ce-theme-palette-action-destructive,#eb0000)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_primary__6f31f5c5[data-destructive=true]:hover,.vt_ce_Button_button__6f31f5c5.vt_ce_Button_primary__6f31f5c5[data-destructive=true][data-active=true]{background-color:var(--vt-ce-theme-palette-action-destructiveHover,#a63737)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_primary__6f31f5c5[data-loading=true]:disabled{color:var(--vt-ce-theme-palette-action-primary,#1871e8)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_secondary__6f31f5c5{background-color:var(--vt-ce-theme-palette-background,#fff);border-color:var(--vt-ce-theme-palette-text-secondary,#5c6269);color:var(--vt-ce-theme-palette-text-secondary,#5c6269)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_secondary__6f31f5c5:hover,.vt_ce_Button_button__6f31f5c5.vt_ce_Button_secondary__6f31f5c5[data-active=true]{background-color:var(--vt-ce-theme-palette-background,#fff);border-color:var(--vt-ce-theme-palette-action-hover,#335b89);color:var(--vt-ce-theme-palette-action-hover,#335b89)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_secondary__6f31f5c5:disabled{background-color:var(--vt-ce-theme-palette-disabledBackground,#fafafa);border-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_secondary__6f31f5c5[data-destructive=true]{background-color:var(--vt-ce-theme-palette-background,#fff);border-color:var(--vt-ce-theme-palette-action-destructive,#eb0000);color:var(--vt-ce-theme-palette-action-destructive,#eb0000)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_secondary__6f31f5c5[data-destructive=true]:hover,.vt_ce_Button_button__6f31f5c5.vt_ce_Button_secondary__6f31f5c5[data-destructive=true][data-active=true]{background-color:var(--vt-ce-theme-palette-background,#fff);border-color:var(--vt-ce-theme-palette-action-destructiveHover,#a63737);color:var(--vt-ce-theme-palette-action-destructiveHover,#a63737)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_secondary__6f31f5c5[data-loading=true]:disabled{color:var(--vt-ce-theme-palette-action-primary,#1871e8)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_tertiary__6f31f5c5{background-color:transparent;color:var(--vt-ce-theme-palette-text-tertiary,#465364)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_tertiary__6f31f5c5[data-active=true]{color:var(--vt-ce-theme-palette-action-primary,#1871e8)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_tertiary__6f31f5c5:hover{color:var(--vt-ce-theme-palette-action-hover,#335b89)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_tertiary__6f31f5c5:disabled{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_tertiary__6f31f5c5[data-destructive=true]{color:var(--vt-ce-theme-palette-action-destructive,#eb0000)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_tertiary__6f31f5c5[data-destructive=true]:hover,.vt_ce_Button_button__6f31f5c5.vt_ce_Button_tertiary__6f31f5c5[data-destructive=true][data-active=true]{color:var(--vt-ce-theme-palette-action-destructiveHover,#a63737)}.vt_ce_Button_button__6f31f5c5.vt_ce_Button_tertiary__6f31f5c5[data-loading=true]:disabled{color:var(--vt-ce-theme-palette-action-primary,#1871e8)}.vt_ce_Button_button__6f31f5c5[data-loading=true] .vt_ce_Button_innerContainer__6f31f5c5{visibility:hidden}.vt_ce_Button_loadingContainer__6f31f5c5{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.vt_ce_Button_innerContainer__6f31f5c5{align-items:center;display:inline-flex;gap:5px;justify-content:center;visibility:visible}.vt_ce_Button_buttonIcon__6f31f5c5{align-items:center;display:inline-flex;justify-content:center;--vt-ce-icon-size:18px}
|
|
9
11
|
.vt_ce_IconButton_button__cb009384{background-color:transparent;border-style:none;color:var(--vt-ce-theme-palette-text-tertiary,#465364);cursor:pointer;display:inline-block;font-size:0;padding:7px;position:relative}.vt_ce_IconButton_button__cb009384:hover{color:var(--vt-ce-theme-palette-action-hover,#335b89)}.vt_ce_IconButton_button__cb009384:disabled{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_IconButton_button__cb009384[data-destructive=true]{color:var(--vt-ce-theme-palette-action-destructive,#eb0000)}.vt_ce_IconButton_button__cb009384[data-destructive=true]:hover{color:var(--vt-ce-theme-palette-action-destructiveHover,#a63737)}.vt_ce_IconButton_button__cb009384[data-loading=true]:disabled{color:var(--vt-ce-theme-palette-action-primary,#1871e8)}.vt_ce_IconButton_button__cb009384[data-loading=true] .vt_ce_IconButton_innerIcon__cb009384{visibility:hidden}.vt_ce_IconButton_loadingContainer__cb009384{bottom:7px;left:7px;position:absolute;right:7px;top:7px}
|
|
10
12
|
.vt_ce_Tooltip_tooltipAnchor__86070564{display:inline}.vt_ce_Tooltip_tooltipBody__86070564{background-color:var(--vt-ce-theme-palette-background,#fff);border-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);border-radius:4px;border-style:solid;border-width:1px;color:var(--vt-ce-theme-palette-text-primary,#2a323c);font-family:var(--vt-ce-theme-typography-label-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-label-font-size,14px);font-style:var(--vt-ce-theme-typography-label-font-style,normal);font-weight:var(--vt-ce-theme-typography-label-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-label-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-label-line-height,17px);padding:4px 10px;text-transform:var(--vt-ce-theme-typography-label-text-transform,inherit)}
|
|
11
13
|
.vt_ce_Typography_tTitle__f1637072{font-family:var(--vt-ce-theme-typography-title-font-family,Dosis,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-title-font-size,18px);font-style:var(--vt-ce-theme-typography-title-font-style,normal);font-weight:var(--vt-ce-theme-typography-title-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-title-letter-spacing,.25px);line-height:var(--vt-ce-theme-typography-title-line-height,normal);text-transform:var(--vt-ce-theme-typography-title-text-transform,uppercase)}.vt_ce_Typography_tH1__f1637072{font-family:var(--vt-ce-theme-typography-h1-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-h1-font-size,24px);font-style:var(--vt-ce-theme-typography-h1-font-style,normal);font-weight:var(--vt-ce-theme-typography-h1-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-h1-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-h1-line-height,34px);text-transform:var(--vt-ce-theme-typography-h1-text-transform,inherit)}.vt_ce_Typography_tH2__f1637072{font-family:var(--vt-ce-theme-typography-h2-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-h2-font-size,20px);font-style:var(--vt-ce-theme-typography-h2-font-style,normal);font-weight:var(--vt-ce-theme-typography-h2-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-h2-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-h2-line-height,30px);text-transform:var(--vt-ce-theme-typography-h2-text-transform,inherit)}.vt_ce_Typography_tH3__f1637072{font-family:var(--vt-ce-theme-typography-h3-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-h3-font-size,18px);font-style:var(--vt-ce-theme-typography-h3-font-style,normal);font-weight:var(--vt-ce-theme-typography-h3-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-h3-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-h3-line-height,26px);text-transform:var(--vt-ce-theme-typography-h3-text-transform,inherit)}.vt_ce_Typography_tH4__f1637072{font-family:var(--vt-ce-theme-typography-h4-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-h4-font-size,16px);font-style:var(--vt-ce-theme-typography-h4-font-style,normal);font-weight:var(--vt-ce-theme-typography-h4-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-h4-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-h4-line-height,24px);text-transform:var(--vt-ce-theme-typography-h4-text-transform,inherit)}.vt_ce_Typography_tLabel__f1637072{font-family:var(--vt-ce-theme-typography-label-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-label-font-size,14px);font-style:var(--vt-ce-theme-typography-label-font-style,normal);font-weight:var(--vt-ce-theme-typography-label-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-label-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-label-line-height,17px);text-transform:var(--vt-ce-theme-typography-label-text-transform,inherit)}.vt_ce_Typography_tParagraph1__f1637072{font-family:var(--vt-ce-theme-typography-paragraph1-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph1-font-size,16px);font-style:var(--vt-ce-theme-typography-paragraph1-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph1-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph1-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph1-line-height,24px);text-transform:var(--vt-ce-theme-typography-paragraph1-text-transform,inherit)}.vt_ce_Typography_tParagraph2__f1637072{font-family:var(--vt-ce-theme-typography-paragraph2-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph2-font-size,14px);font-style:var(--vt-ce-theme-typography-paragraph2-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph2-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph2-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph2-line-height,20px);text-transform:var(--vt-ce-theme-typography-paragraph2-text-transform,inherit)}.vt_ce_Typography_tParagraph3__f1637072{font-family:var(--vt-ce-theme-typography-paragraph3-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph3-font-size,12px);font-style:var(--vt-ce-theme-typography-paragraph3-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph3-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph3-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph3-line-height,18px);text-transform:var(--vt-ce-theme-typography-paragraph3-text-transform,inherit)}.vt_ce_Typography_tButton__f1637072{font-family:var(--vt-ce-theme-typography-button-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-button-font-size,14px);font-style:var(--vt-ce-theme-typography-button-font-style,normal);font-weight:var(--vt-ce-theme-typography-button-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-button-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-button-line-height,20px);text-transform:var(--vt-ce-theme-typography-button-text-transform,inherit)}.vt_ce_Typography_tButtonSmall__f1637072{font-family:var(--vt-ce-theme-typography-buttonSmall-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-buttonSmall-font-size,12px);font-style:var(--vt-ce-theme-typography-buttonSmall-font-style,normal);font-weight:var(--vt-ce-theme-typography-buttonSmall-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-buttonSmall-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-buttonSmall-line-height,18px);text-transform:var(--vt-ce-theme-typography-buttonSmall-text-transform,inherit)}.vt_ce_Typography_cPrimary__f1637072{color:var(--vt-ce-theme-palette-text-primary,#2a323c)}.vt_ce_Typography_cSecondary__f1637072{color:var(--vt-ce-theme-palette-text-secondary,#5c6269)}.vt_ce_Typography_cTertiary__f1637072{color:var(--vt-ce-theme-palette-text-tertiary,#465364)}.vt_ce_Typography_cDisabled__f1637072{color:var(--vt-ce-theme-palette-disabled,#7c848d)}
|
|
12
14
|
.vt_ce_Dialog_dialogOverlay__b0e50c90{background:rgba(0,0,0,.54);display:grid;place-items:center}.vt_ce_Dialog_dialog__b0e50c90{background-color:var(--vt-ce-theme-palette-background,#fff);border-radius:4px;color:var(--vt-ce-theme-palette-text-primary,#2a323c);display:flex;flex-direction:column;margin:15px;max-height:calc(100% - 64px);max-width:calc(100% - 64px);padding:30px 0}.vt_ce_Dialog_dialog__b0e50c90:has(>.vt_ce_Dialog_dialogStart__b0e50c90:first-child){padding-block-start:0}.vt_ce_Dialog_dialog__b0e50c90:has(>.vt_ce_Dialog_dialogEnd__b0e50c90:last-child){padding-block-end:0}.vt_ce_Dialog_dialogStart__b0e50c90{display:block;flex:0 0 auto}.vt_ce_Dialog_dialogContent__b0e50c90{flex:1 1 auto;--webkit-overflow-scrolling:touch;overflow-y:auto;padding:0 30px}.vt_ce_Dialog_dialogEnd__b0e50c90{display:block;flex:0 0 auto}.vt_ce_Dialog_dialogTitle__b0e50c90{flex:0 0 auto;font-size:18px;line-height:24px;margin:30px 0 0;padding:0 30px}.vt_ce_Dialog_dialogTypography__b0e50c90{margin:15px 0}.vt_ce_Dialog_dialogActions__b0e50c90{align-items:center;display:flex;gap:10px;justify-content:flex-end;margin:15px 0 40px;padding:0 30px}
|
|
13
15
|
.vt_ce_Drawer_drawerOverlay__02bed79d{background:rgba(0,0,0,.54);display:grid;place-items:stretch end}.vt_ce_Drawer_drawer__02bed79d{background-color:var(--vt-ce-theme-palette-background,#fff);color:var(--vt-ce-theme-palette-text-primary,#2a323c);display:flex;flex-direction:column;max-width:calc(100% - 64px);padding:20px 0}.vt_ce_Drawer_drawer__02bed79d:has(>.vt_ce_Drawer_drawerStart__02bed79d:first-child){padding-block-start:0}.vt_ce_Drawer_drawer__02bed79d:has(>.vt_ce_Drawer_drawerEnd__02bed79d:last-child){padding-block-end:0}.vt_ce_Drawer_drawerStart__02bed79d{display:block;flex:0 0 auto}.vt_ce_Drawer_drawerContent__02bed79d{flex:1 1 auto;--webkit-overflow-scrolling:touch;overflow-y:auto;padding:0 20px}.vt_ce_Drawer_drawerEnd__02bed79d{display:block;flex:0 0 auto}.vt_ce_Drawer_drawerTitle__02bed79d{flex:0 0 auto;margin:20px 0 0;padding:0 20px}.vt_ce_Drawer_drawerTypography__02bed79d{margin:20px 0}.vt_ce_Drawer_drawerActions__02bed79d{align-items:center;display:flex;flex:0 0 auto;gap:10px;justify-content:flex-end;margin:20px 0;padding:0 20px}
|
|
16
|
+
.vt_ce_Menu_menu__5d29505b{border:1px solid var(--vt-ce-theme-palette-disabled,#7c848d);border-radius:0 0 4px 4px;display:block;outline:0;padding-bottom:5px;padding-top:5px}.vt_ce_Menu_menu__5d29505b,.vt_ce_Menu_option__5d29505b{background-color:var(--vt-ce-theme-palette-background,#fff)}.vt_ce_Menu_option__5d29505b{align-items:center;border:none;color:var(--vt-ce-theme-palette-text-primary,#2a323c);cursor:pointer;display:flex;font-family:var(--vt-ce-theme-typography-paragraph2-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph2-font-size,14px);font-style:var(--vt-ce-theme-typography-paragraph2-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph2-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph2-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph2-line-height,20px);padding:5px 10px;text-transform:var(--vt-ce-theme-typography-paragraph2-text-transform,inherit);width:100%}.vt_ce_Menu_option__5d29505b:focus{background-color:var(--vt-ce-theme-palette-rowHover,#eaf1fa);outline:none}.vt_ce_Menu_optionIcon__5d29505b{align-items:center;display:inline-flex;justify-content:center;margin-inline-end:10px;--vt-ce-icon-size:14px}.vt_ce_Menu_optionLabel__5d29505b{text-align:start}
|
|
14
17
|
.vt_ce_Icon_icon__5881e2e1{display:inline-block;height:var(--vt-ce-icon-size,18px);width:var(--vt-ce-icon-size,18px)}.vt_ce_Icon_icon__5881e2e1 svg{height:var(--vt-ce-icon-size,18px);vertical-align:baseline;width:var(--vt-ce-icon-size,18px)}.vt_ce_Icon_icon__5881e2e1[data-size=large],.vt_ce_Icon_icon__5881e2e1[data-size=large] svg{height:24px;width:24px}.vt_ce_Icon_icon__5881e2e1[data-size=medium],.vt_ce_Icon_icon__5881e2e1[data-size=medium] svg{height:18px;width:18px}.vt_ce_Icon_icon__5881e2e1[data-size=small],.vt_ce_Icon_icon__5881e2e1[data-size=small] svg{height:14px;width:14px}.vt_ce_Icon_icon__5881e2e1[data-size=inherit],.vt_ce_Icon_icon__5881e2e1[data-size=inherit] svg{font-size:1em;height:1em;width:1em}
|
|
15
|
-
.vt_ce_Select_select__269cb8d6{cursor:pointer;display:inline-flex;flex-direction:column;gap:3px}.vt_ce_Select_label__269cb8d6{color:var(--vt-ce-theme-palette-text-secondary,#5c6269);font-family:var(--vt-ce-theme-typography-label-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-label-font-size,14px);font-style:var(--vt-ce-theme-typography-label-font-style,normal);font-weight:var(--vt-ce-theme-typography-label-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-label-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-label-line-height,17px);text-transform:var(--vt-ce-theme-typography-label-text-transform,inherit)}.vt_ce_Select_innerInputContainer__269cb8d6{align-items:center;align-self:stretch;background:var(--vt-ce-theme-palette-background,#fff);border-radius:4px;color:var(--vt-ce-theme-palette-text-primary,#2a323c);display:flex;gap:10px;margin-bottom:1px;margin-top:1px;outline-color:var(--vt-ce-theme-palette-text-secondary,#5c6269);outline-style:solid;outline-width:1px;padding:0 8px}.vt_ce_Select_innerInputContainer__269cb8d6:focus-within{outline-color:var(--vt-ce-theme-palette-action-hover,#335b89);outline-width:2px}.vt_ce_Select_innerInputContainer__269cb8d6:hover{outline-color:var(--vt-ce-theme-palette-action-hover,#335b89);outline-width:2px}.vt_ce_Select_innerInputContainer__269cb8d6[data-disabled=true]{background-color:var(--vt-ce-theme-palette-disabledBackground,#fafafa);color:var(--vt-ce-theme-palette-disabled,#7c848d);outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0)}.vt_ce_Select_innerInputContainer__269cb8d6[data-disabled=true]:focus-within{outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);outline-width:1px}.vt_ce_Select_innerInputContainer__269cb8d6[data-disabled=true]:hover{outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);outline-width:1px}.vt_ce_Select_innerInputContainer__269cb8d6[data-error=true]{outline-color:var(--vt-ce-theme-palette-indicator-error,#eb0000)}.vt_ce_Select_innerInput__269cb8d6{background:none;border:none;color:inherit;flex-grow:1;font-family:var(--vt-ce-theme-typography-paragraph2-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph2-font-size,14px);font-style:var(--vt-ce-theme-typography-paragraph2-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph2-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph2-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph2-line-height,20px);outline:none;padding:8px 0;text-transform:var(--vt-ce-theme-typography-paragraph2-text-transform,inherit)}.vt_ce_Select_innerInput__269cb8d6::-moz-placeholder{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Select_innerInput__269cb8d6::placeholder{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Select_selectIcon__269cb8d6{align-items:center;display:inline-flex;flex-shrink:0;justify-content:center;padding:8px 0;--vt-ce-icon-size:18px}.vt_ce_Select_helpLabel__269cb8d6{color:var(--vt-ce-theme-palette-text-secondary,#5c6269)}.vt_ce_Select_errorLabel__269cb8d6,.vt_ce_Select_helpLabel__269cb8d6{font-family:var(--vt-ce-theme-typography-paragraph3-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph3-font-size,12px);font-style:var(--vt-ce-theme-typography-paragraph3-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph3-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph3-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph3-line-height,18px);text-transform:var(--vt-ce-theme-typography-paragraph3-text-transform,inherit)}.vt_ce_Select_errorLabel__269cb8d6{align-items:center;color:var(--vt-ce-theme-palette-indicator-error,#eb0000);display:flex;gap:3px}
|
|
16
|
-
.vt_ce_Menu_menu__5d29505b{border:1px solid var(--vt-ce-theme-palette-disabled,#7c848d);border-radius:0 0 4px 4px;display:block;outline:0;padding-bottom:5px;padding-top:5px}.vt_ce_Menu_menu__5d29505b,.vt_ce_Menu_option__5d29505b{background-color:var(--vt-ce-theme-palette-background,#fff)}.vt_ce_Menu_option__5d29505b{align-items:center;border:none;color:var(--vt-ce-theme-palette-text-primary,#2a323c);cursor:pointer;display:flex;font-family:var(--vt-ce-theme-typography-paragraph2-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph2-font-size,14px);font-style:var(--vt-ce-theme-typography-paragraph2-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph2-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph2-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph2-line-height,20px);padding:5px 10px;text-transform:var(--vt-ce-theme-typography-paragraph2-text-transform,inherit);width:100%}.vt_ce_Menu_option__5d29505b:focus{background-color:var(--vt-ce-theme-palette-rowHover,#eaf1fa);outline:none}.vt_ce_Menu_optionIcon__5d29505b{align-items:center;display:inline-flex;justify-content:center;margin-inline-end:10px;--vt-ce-icon-size:14px}.vt_ce_Menu_optionLabel__5d29505b{text-align:start}
|
|
18
|
+
.vt_ce_Select_select__269cb8d6{cursor:pointer;display:inline-flex;flex-direction:column;gap:3px}.vt_ce_Select_label__269cb8d6{color:var(--vt-ce-theme-palette-text-secondary,#5c6269);font-family:var(--vt-ce-theme-typography-label-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-label-font-size,14px);font-style:var(--vt-ce-theme-typography-label-font-style,normal);font-weight:var(--vt-ce-theme-typography-label-font-weight,600);letter-spacing:var(--vt-ce-theme-typography-label-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-label-line-height,17px);text-transform:var(--vt-ce-theme-typography-label-text-transform,inherit)}.vt_ce_Select_innerInputContainer__269cb8d6{align-items:center;align-self:stretch;background:var(--vt-ce-theme-palette-background,#fff);border-radius:4px;color:var(--vt-ce-theme-palette-text-primary,#2a323c);display:flex;gap:10px;margin-bottom:1px;margin-top:1px;outline-color:var(--vt-ce-theme-palette-text-secondary,#5c6269);outline-style:solid;outline-width:1px;padding:0 8px}.vt_ce_Select_innerInputContainer__269cb8d6:focus-within{outline-color:var(--vt-ce-theme-palette-action-hover,#335b89);outline-width:2px}.vt_ce_Select_innerInputContainer__269cb8d6:hover{outline-color:var(--vt-ce-theme-palette-action-hover,#335b89);outline-width:2px}.vt_ce_Select_innerInputContainer__269cb8d6[data-disabled=true]{background-color:var(--vt-ce-theme-palette-disabledBackground,#fafafa);color:var(--vt-ce-theme-palette-disabled,#7c848d);outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0)}.vt_ce_Select_innerInputContainer__269cb8d6[data-disabled=true]:focus-within{outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);outline-width:1px}.vt_ce_Select_innerInputContainer__269cb8d6[data-disabled=true]:hover{outline-color:var(--vt-ce-theme-palette-backgroundAlt,#e0e8f0);outline-width:1px}.vt_ce_Select_innerInputContainer__269cb8d6[data-error=true]{outline-color:var(--vt-ce-theme-palette-indicator-error,#eb0000)}.vt_ce_Select_innerInput__269cb8d6{background:none;border:none;color:inherit;flex-grow:1;font-family:var(--vt-ce-theme-typography-paragraph2-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph2-font-size,14px);font-style:var(--vt-ce-theme-typography-paragraph2-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph2-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph2-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph2-line-height,20px);outline:none;padding:8px 0;text-transform:var(--vt-ce-theme-typography-paragraph2-text-transform,inherit)}.vt_ce_Select_innerInput__269cb8d6::-moz-placeholder{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Select_innerInput__269cb8d6::placeholder{color:var(--vt-ce-theme-palette-disabled,#7c848d)}.vt_ce_Select_selectIcon__269cb8d6{align-items:center;display:inline-flex;flex-shrink:0;justify-content:center;padding:8px 0;--vt-ce-icon-size:18px}.vt_ce_Select_helpLabel__269cb8d6{color:var(--vt-ce-theme-palette-text-secondary,#5c6269)}.vt_ce_Select_errorLabel__269cb8d6,.vt_ce_Select_helpLabel__269cb8d6{font-family:var(--vt-ce-theme-typography-paragraph3-font-family,Nunito Sans,Helvetica,sans-serif);font-size:var(--vt-ce-theme-typography-paragraph3-font-size,12px);font-style:var(--vt-ce-theme-typography-paragraph3-font-style,normal);font-weight:var(--vt-ce-theme-typography-paragraph3-font-weight,400);letter-spacing:var(--vt-ce-theme-typography-paragraph3-letter-spacing,inherit);line-height:var(--vt-ce-theme-typography-paragraph3-line-height,18px);text-transform:var(--vt-ce-theme-typography-paragraph3-text-transform,inherit)}.vt_ce_Select_errorLabel__269cb8d6{align-items:center;color:var(--vt-ce-theme-palette-indicator-error,#eb0000);display:flex;gap:3px}
|
|
@@ -4,9 +4,11 @@ export type ButtonSize = 'large' | 'small';
|
|
|
4
4
|
export type ButtonProps = {
|
|
5
5
|
variant?: ButtonVariant;
|
|
6
6
|
size?: ButtonSize;
|
|
7
|
+
type?: React.ButtonHTMLAttributes<HTMLButtonElement>['type'];
|
|
7
8
|
disabled?: boolean;
|
|
8
9
|
loading?: boolean;
|
|
9
10
|
destructive?: boolean;
|
|
11
|
+
active?: boolean;
|
|
10
12
|
startIcon?: React.ReactNode;
|
|
11
13
|
endIcon?: React.ReactNode;
|
|
12
14
|
onClick?: MouseEventHandler<HTMLButtonElement>;
|
|
@@ -6,5 +6,5 @@ export type ControlledSelectProps<OptionValue> = CommonSelectProps<OptionValue>
|
|
|
6
6
|
onChange(event: React.SyntheticEvent<HTMLElement>, newValue: SelectValue<OptionValue>): void;
|
|
7
7
|
onInputChange(event: React.SyntheticEvent<HTMLElement>, newValue: string): void;
|
|
8
8
|
};
|
|
9
|
-
declare function ControlledSelect<OptionValue>({ ref, endIcon, placeholder, ...props }: ControlledSelectProps<OptionValue>): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function ControlledSelect<OptionValue>({ ref, endIcon, placeholder, clearable, ...props }: ControlledSelectProps<OptionValue>): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
export default ControlledSelect;
|
|
@@ -16,10 +16,12 @@ export type CommonSelectProps<OptionValue> = {
|
|
|
16
16
|
error?: React.ReactNode;
|
|
17
17
|
startIcon?: React.ReactNode;
|
|
18
18
|
endIcon?: React.ReactNode;
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
clearable?: boolean;
|
|
20
|
+
size?: number;
|
|
21
21
|
options: SelectOptions<OptionValue>;
|
|
22
22
|
filterOptions?: (options: SelectOptions<OptionValue>) => SelectOptions<OptionValue>;
|
|
23
|
+
portalEl?: PopoverPortalElProp;
|
|
24
|
+
dropdownStrategy?: PopoverStrategy;
|
|
23
25
|
'data-testid'?: string;
|
|
24
26
|
style?: React.CSSProperties;
|
|
25
27
|
className?: string;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export type TablePaginationProps = {
|
|
3
|
+
count: number;
|
|
4
|
+
page: number;
|
|
5
|
+
onChangePage(page: number): void;
|
|
6
|
+
rowsPerPage?: number;
|
|
7
|
+
onRowsPerPageChange?(rowsPerPage: number): void;
|
|
8
|
+
rowsPerPageOptions?: number[];
|
|
9
|
+
rowsPerPageLabel?: React.ReactNode;
|
|
10
|
+
className?: string;
|
|
11
|
+
};
|
|
12
|
+
export default function TablePagination({ page, count, rowsPerPage, rowsPerPageOptions, rowsPerPageLabel, ...props }: TablePaginationProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,9 +5,10 @@ export type TooltipProps = {
|
|
|
5
5
|
children?: React.ReactNode;
|
|
6
6
|
tooltip?: React.ReactNode;
|
|
7
7
|
placement?: PopoverPlacement;
|
|
8
|
+
showArrow?: boolean;
|
|
8
9
|
'data-testid'?: string;
|
|
9
10
|
style?: React.CSSProperties;
|
|
10
11
|
className?: string;
|
|
11
12
|
};
|
|
12
|
-
declare function Tooltip({ placement, ...props }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
declare function Tooltip({ placement, showArrow, ...props }: TooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
13
14
|
export default Tooltip;
|
|
@@ -23,10 +23,14 @@ export { default as Input } from './Input/index.js';
|
|
|
23
23
|
export * from './Input/index.js';
|
|
24
24
|
export { default as Menu } from './Menu/index.js';
|
|
25
25
|
export * from './Menu/index.js';
|
|
26
|
+
export { default as Pagination } from './Pagination/index.js';
|
|
27
|
+
export * from './Pagination/index.js';
|
|
26
28
|
export { default as RadioButton } from './RadioButton/index.js';
|
|
27
29
|
export * from './RadioButton/index.js';
|
|
28
30
|
export { default as Select } from './Select/index.js';
|
|
29
31
|
export * from './Select/index.js';
|
|
32
|
+
export { default as TablePagination } from './TablePagination/index.js';
|
|
33
|
+
export * from './TablePagination/index.js';
|
|
30
34
|
export { default as Textarea } from './Textarea/index.js';
|
|
31
35
|
export * from './Textarea/index.js';
|
|
32
36
|
export { default as Toast } from './Toast/index.js';
|