@uva-glass/component-library 3.36.0 → 3.37.0
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/assets/ControlsButton.css +1 -1
- package/dist/components/Accordion/Accordion.test.js +3 -3
- package/dist/components/AccordionCard/AccordionCard.test.js +3 -3
- package/dist/components/ActionList/ActionList.test.js +3 -3
- package/dist/components/AppStatusBar/AppStatusBar.test.js +2 -2
- package/dist/components/Attention/Attention.test.js +2 -2
- package/dist/components/Backdrop/Backdrop.test.js +2 -2
- package/dist/components/Buttons/Button.test.js +2 -2
- package/dist/components/Buttons/LinkButton.test.js +2 -2
- package/dist/components/Buttons/MenuButton.test.js +2 -2
- package/dist/components/Card/Card.test.js +2 -2
- package/dist/components/Checkbox/Checkbox.test.js +3 -3
- package/dist/components/CheckboxButtonBar/CheckboxButtonBar.test.js +2 -2
- package/dist/components/ControlsButton/ControlsButton.d.ts +8 -2
- package/dist/components/ControlsButton/ControlsButton.js +40 -33
- package/dist/components/ControlsButton/ControlsButton.js.map +1 -1
- package/dist/components/ControlsButton/ControlsButton.stories.d.ts +2 -0
- package/dist/components/ControlsButton/ControlsButton.stories.js +32 -9
- package/dist/components/ControlsButton/ControlsButton.stories.js.map +1 -1
- package/dist/components/FeedbackBar/FeedbackBar.test.js +2 -2
- package/dist/components/Icon/Icon.stories.js +25 -19
- package/dist/components/Icon/Icon.stories.js.map +1 -1
- package/dist/components/Icon/icons/index.d.ts +12 -0
- package/dist/components/Icon/icons/index.js +189 -179
- package/dist/components/Icon/icons/index.js.map +1 -1
- package/dist/components/Label/Label.test.js +2 -2
- package/dist/components/MultiSelectBox/MultiSelectBox.test.js +2 -2
- package/dist/components/Notification/Notification.test.js +2 -2
- package/dist/components/RadioGroup/Radiogroup.test.js +2 -2
- package/dist/components/RadioTabSelector/RadioTabSelector.d.ts +3 -1
- package/dist/components/RadioTabSelector/RadioTabSelector.js +13 -12
- package/dist/components/RadioTabSelector/RadioTabSelector.js.map +1 -1
- package/dist/components/RadioTabSelector/RadioTabSelector.stories.d.ts +1 -0
- package/dist/components/RadioTabSelector/RadioTabSelector.stories.js +23 -7
- package/dist/components/RadioTabSelector/RadioTabSelector.stories.js.map +1 -1
- package/dist/components/SelectListbox/SelectListBox.stories.d.ts +9 -3
- package/dist/components/SelectListbox/SelectListBox.stories.js +126 -48
- package/dist/components/SelectListbox/SelectListBox.stories.js.map +1 -1
- package/dist/components/SelectListbox/SelectProvider.js +25 -23
- package/dist/components/SelectListbox/SelectProvider.js.map +1 -1
- package/dist/components/StatusBadge/StatusBadge.test.js +2 -2
- package/dist/components/TextArea/TextArea.test.js +2 -2
- package/dist/components/VarIndicator/VarIndicator.test.js +3 -3
- package/dist/{index-DzN3R4wD.js → index-C5wAoUNf.js} +2382 -3427
- package/dist/index-C5wAoUNf.js.map +1 -0
- package/dist/{index-DDN7R-oN.js → index-DBXreWnr.js} +2 -2
- package/dist/{index-DDN7R-oN.js.map → index-DBXreWnr.js.map} +1 -1
- package/dist/{react.esm-DMlPLy-4.js → react.esm-QfxS8egK.js} +2 -2
- package/dist/{react.esm-DMlPLy-4.js.map → react.esm-QfxS8egK.js.map} +1 -1
- package/dist/setupTests.js +1 -1
- package/package.json +2 -2
- package/dist/index-DzN3R4wD.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
._controls-
|
|
1
|
+
._controls-input_1ebvn_1{aspect-ratio:unset;cursor:pointer;height:0;opacity:0;position:absolute;width:0}._controls-input_1ebvn_1:focus-visible+label{outline:.125rem dotted var(--new-color-navy-600);outline-offset:.125rem}._controls-input_1ebvn_1:checked+label{background-color:var(--new-color-grey-200);border:1px solid var(--new-color-grey-700);font-weight:var(--semibold)}._controls-input_1ebvn_1:disabled+label,._controls-input_1ebvn_1:disabled:hover+label{background-color:var(--new-color-grey-400);color:var(--new-color-grey-700);cursor:not-allowed}._controls-input_1ebvn_1:hover+label{background-color:var(--new-color-grey-300)}._controls-button_1ebvn_32{align-items:center;background-color:var(--new-color-uva-white);border:1px solid transparent;border-radius:.25rem;box-sizing:border-box;cursor:pointer;display:inline-flex;font-size:var(--font-size-default);height:2.25rem;justify-content:center;min-width:2.25rem;padding:.5rem;position:relative;-webkit-user-select:none;user-select:none;white-space:nowrap}._controls-button--squared_1ebvn_50{width:2.25rem}._controls-button_1ebvn_32:after{content:"";min-height:2.625rem;min-width:2.625rem;position:absolute;width:100%}._controls-button--with-prefix_1ebvn_62{height:auto;padding:.125rem .5rem;width:auto}._controls-button--with-icon_1ebvn_68{gap:.5rem}._controls-button__wrapper_1ebvn_72{align-items:center;display:flex;flex-direction:column}._controls-button__prefix_1ebvn_78{color:var(--new-color-grey-700);font-size:var(--font-size-text-non-essential)}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as n, s as a } from "../../react.esm-
|
|
4
|
-
import { u as e } from "../../index-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as n, s as a } from "../../react.esm-QfxS8egK.js";
|
|
4
|
+
import { u as e } from "../../index-DBXreWnr.js";
|
|
5
5
|
import { Accordion as i } from "./Accordion.js";
|
|
6
6
|
describe("Accordion", () => {
|
|
7
7
|
it("should render", () => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as n } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as c, s as e, f as s, w as d } from "../../react.esm-
|
|
4
|
-
import { u as r } from "../../index-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as c, s as e, f as s, w as d } from "../../react.esm-QfxS8egK.js";
|
|
4
|
+
import { u as r } from "../../index-DBXreWnr.js";
|
|
5
5
|
import { AccordionCard as a } from "./AccordionCard.js";
|
|
6
6
|
describe("AccordionCard", () => {
|
|
7
7
|
it("should render", () => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as i } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as n, s as t, w as a } from "../../react.esm-
|
|
4
|
-
import { u as l } from "../../index-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as n, s as t, w as a } from "../../react.esm-QfxS8egK.js";
|
|
4
|
+
import { u as l } from "../../index-DBXreWnr.js";
|
|
5
5
|
import { ActionList as o } from "./ActionList.js";
|
|
6
6
|
const T = jest.fn(), c = [
|
|
7
7
|
/* @__PURE__ */ i("button", { type: "button", onClick: T, children: "Test Action 1" }, "1"),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r, s as t } from "../../react.esm-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r, s as t } from "../../react.esm-QfxS8egK.js";
|
|
4
4
|
import { AppStatusBar as s } from "./AppStatusBar.js";
|
|
5
5
|
describe("AppStatusBar", () => {
|
|
6
6
|
it("should render", () => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as t, s as r } from "../../react.esm-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as t, s as r } from "../../react.esm-QfxS8egK.js";
|
|
4
4
|
import { Attention as n } from "./Attention.js";
|
|
5
5
|
describe("Attention", () => {
|
|
6
6
|
it("should render (variant primary)", () => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as e, s as o } from "../../react.esm-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as e, s as o } from "../../react.esm-QfxS8egK.js";
|
|
4
4
|
import { Backdrop as t } from "./Backdrop.js";
|
|
5
5
|
describe("Backdrop", () => {
|
|
6
6
|
it("should render", () => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as n, s as t, f as c } from "../../react.esm-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as n, s as t, f as c } from "../../react.esm-QfxS8egK.js";
|
|
4
4
|
import { Button as o } from "./Button.js";
|
|
5
5
|
const s = jest.fn();
|
|
6
6
|
describe("Button", () => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as s, jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as n, s as t, f as c } from "../../react.esm-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as n, s as t, f as c } from "../../react.esm-QfxS8egK.js";
|
|
4
4
|
import { BrowserRouter as u, Routes as a, Route as d } from "react-router";
|
|
5
5
|
import { LinkButton as o } from "./LinkButton.js";
|
|
6
6
|
const r = ({ children: i }) => /* @__PURE__ */ s(u, { children: [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as u, s as e, f as c } from "../../react.esm-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as u, s as e, f as c } from "../../react.esm-QfxS8egK.js";
|
|
4
4
|
import { createRef as s } from "react";
|
|
5
5
|
import { MenuButton as r } from "./MenuButton.js";
|
|
6
6
|
const n = jest.fn();
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r, s as d } from "../../react.esm-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r, s as d } from "../../react.esm-QfxS8egK.js";
|
|
4
4
|
import { Card as o } from "./Card.js";
|
|
5
5
|
describe("Card", () => {
|
|
6
6
|
it("should render", () => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as o, s as t } from "../../react.esm-
|
|
4
|
-
import { u as s } from "../../index-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as o, s as t } from "../../react.esm-QfxS8egK.js";
|
|
4
|
+
import { u as s } from "../../index-DBXreWnr.js";
|
|
5
5
|
import { Checkbox as r } from "./Checkbox.js";
|
|
6
6
|
describe("Checkbox", () => {
|
|
7
7
|
it("should render", () => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as c, s as t } from "../../react.esm-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as c, s as t } from "../../react.esm-QfxS8egK.js";
|
|
4
4
|
import { CheckboxButtonBar as a } from "./CheckboxButtonBar.js";
|
|
5
5
|
const n = jest.fn(), d = [
|
|
6
6
|
{
|
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
import { ChangeEvent } from 'react';
|
|
2
|
+
import { IconProps } from 'components/Icon';
|
|
2
3
|
export interface ControlsButtonProps {
|
|
3
4
|
/** to set type/behaviour of input radio or checkbox */
|
|
4
5
|
type?: 'radio' | 'checkbox';
|
|
6
|
+
/** button label */
|
|
5
7
|
label: string;
|
|
8
|
+
/** button value */
|
|
6
9
|
value: string;
|
|
10
|
+
/** set if icon is needed in font of lable */
|
|
11
|
+
iconName?: IconProps['name'];
|
|
12
|
+
/** set if prefix is needed above of lable */
|
|
7
13
|
prefix?: string;
|
|
8
14
|
/** set if used as radiogroup */
|
|
9
15
|
name?: string;
|
|
10
|
-
/** `true` to set squared button; otherwise, `false`. The default is `false`. */
|
|
16
|
+
/** `true` to set squared button; otherwise, `false`. The default is `false`. Note: hides icon */
|
|
11
17
|
forceSquared?: boolean;
|
|
12
18
|
/** to set default status */
|
|
13
19
|
checked?: boolean;
|
|
@@ -16,4 +22,4 @@ export interface ControlsButtonProps {
|
|
|
16
22
|
/** The callback function that is invoked when the radio button changes value. */
|
|
17
23
|
onSetValue: (event: ChangeEvent<HTMLInputElement>) => void;
|
|
18
24
|
}
|
|
19
|
-
export declare const ControlsButton: ({ type, label, value, prefix, name, forceSquared, checked, disabled, onSetValue, }: ControlsButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
export declare const ControlsButton: ({ type, label, value, iconName, prefix, name, forceSquared, checked, disabled, onSetValue, }: ControlsButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,56 +1,63 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as s, Fragment as m, jsx as c } from "react/jsx-runtime";
|
|
2
2
|
import { useId as d } from "react";
|
|
3
|
-
import { c as
|
|
3
|
+
import { c as f } from "../../clsx-OuTLNxxd.js";
|
|
4
|
+
import { Icon as x } from "../Icon/Icon.js";
|
|
4
5
|
import '../../assets/ControlsButton.css';const t = {
|
|
5
|
-
"controls-
|
|
6
|
-
"controls-button
|
|
7
|
-
"controls-
|
|
8
|
-
"controls-button--with-prefix": "_controls-button--with-
|
|
9
|
-
"controls-
|
|
10
|
-
"controls-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
"controls-input": "_controls-input_1ebvn_1",
|
|
7
|
+
"controls-button": "_controls-button_1ebvn_32",
|
|
8
|
+
"controls-button--squared": "_controls-button--squared_1ebvn_50",
|
|
9
|
+
"controls-button--with-prefix": "_controls-button--with-prefix_1ebvn_62",
|
|
10
|
+
"controls-button--with-icon": "_controls-button--with-icon_1ebvn_68",
|
|
11
|
+
"controls-button__wrapper": "_controls-button__wrapper_1ebvn_72",
|
|
12
|
+
"controls-button__prefix": "_controls-button__prefix_1ebvn_78"
|
|
13
|
+
}, q = ({
|
|
14
|
+
type: l = "checkbox",
|
|
13
15
|
label: o,
|
|
14
|
-
value:
|
|
16
|
+
value: i,
|
|
17
|
+
iconName: n,
|
|
15
18
|
prefix: r,
|
|
16
|
-
name:
|
|
17
|
-
forceSquared:
|
|
18
|
-
checked:
|
|
19
|
+
name: e,
|
|
20
|
+
forceSquared: u = !1,
|
|
21
|
+
checked: b,
|
|
19
22
|
disabled: p,
|
|
20
23
|
onSetValue: a
|
|
21
24
|
}) => {
|
|
22
|
-
const
|
|
23
|
-
return /* @__PURE__ */
|
|
24
|
-
/* @__PURE__ */
|
|
25
|
+
const _ = d();
|
|
26
|
+
return /* @__PURE__ */ s(m, { children: [
|
|
27
|
+
/* @__PURE__ */ c(
|
|
25
28
|
"input",
|
|
26
29
|
{
|
|
27
|
-
type:
|
|
28
|
-
id: `${
|
|
29
|
-
name:
|
|
30
|
+
type: l,
|
|
31
|
+
id: `${_}${o.replace(/\s+/g, "_")}`,
|
|
32
|
+
name: e || o.replace(/\s+/g, "_"),
|
|
30
33
|
disabled: p,
|
|
31
|
-
value:
|
|
32
|
-
checked:
|
|
33
|
-
onChange: (
|
|
34
|
+
value: i,
|
|
35
|
+
checked: b,
|
|
36
|
+
onChange: (h) => a(h),
|
|
34
37
|
className: t["controls-input"]
|
|
35
38
|
}
|
|
36
39
|
),
|
|
37
|
-
/* @__PURE__ */
|
|
40
|
+
/* @__PURE__ */ s(
|
|
38
41
|
"label",
|
|
39
42
|
{
|
|
40
|
-
htmlFor: `${
|
|
41
|
-
className:
|
|
42
|
-
|
|
43
|
-
r && t["controls-button--with-prefix"]
|
|
43
|
+
htmlFor: `${_}${o.replace(/\s+/g, "_")}`,
|
|
44
|
+
className: f(t["controls-button"], [
|
|
45
|
+
u && t["controls-button--squared"],
|
|
46
|
+
r && t["controls-button--with-prefix"],
|
|
47
|
+
n && t["controls-button--with-icon"]
|
|
44
48
|
]),
|
|
45
|
-
children:
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
+
children: [
|
|
50
|
+
n && /* @__PURE__ */ c(x, { name: n, size: 20 }),
|
|
51
|
+
/* @__PURE__ */ s("div", { className: t["controls-button__wrapper"], children: [
|
|
52
|
+
r && /* @__PURE__ */ c("div", { className: t["controls-button__prefix"], children: r }),
|
|
53
|
+
o
|
|
54
|
+
] })
|
|
55
|
+
]
|
|
49
56
|
}
|
|
50
57
|
)
|
|
51
58
|
] });
|
|
52
59
|
};
|
|
53
60
|
export {
|
|
54
|
-
|
|
61
|
+
q as ControlsButton
|
|
55
62
|
};
|
|
56
63
|
//# sourceMappingURL=ControlsButton.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ControlsButton.js","sources":["../../../src/components/ControlsButton/ControlsButton.tsx"],"sourcesContent":["import { useId } from 'react';\r\nimport { clsx } from 'clsx';\r\n\r\nimport type { ChangeEvent } from 'react';\r\n\r\nimport styles from './ControlsButton.module.css';\r\n\r\nexport interface ControlsButtonProps {\r\n /** to set type/behaviour of input radio or checkbox */\r\n type?: 'radio' | 'checkbox';\r\n label: string;\r\n value: string;\r\n prefix?: string;\r\n /** set if used as radiogroup */\r\n name?: string;\r\n /** `true` to set squared button; otherwise, `false`. The default is `false`. */\r\n forceSquared?: boolean;\r\n /** to set default status */\r\n checked?: boolean;\r\n /** `true` to disable the button; otherwise, `false`. The default is `false`. */\r\n disabled?: boolean;\r\n /** The callback function that is invoked when the radio button changes value. */\r\n onSetValue: (event: ChangeEvent<HTMLInputElement>) => void;\r\n}\r\n\r\nexport const ControlsButton = ({\r\n type = 'checkbox',\r\n label,\r\n value,\r\n prefix,\r\n name,\r\n forceSquared = false,\r\n checked,\r\n disabled,\r\n onSetValue,\r\n}: ControlsButtonProps) => {\r\n const idPrefix = useId();\r\n\r\n return (\r\n <>\r\n <input\r\n type={type}\r\n id={`${idPrefix}${label.replace(/\\s+/g, '_')}`}\r\n name={name ? name : label.replace(/\\s+/g, '_')}\r\n disabled={disabled}\r\n value={value}\r\n checked={checked}\r\n onChange={(event) => onSetValue(event)}\r\n className={styles['controls-input']}\r\n />\r\n <label\r\n htmlFor={`${idPrefix}${label.replace(/\\s+/g, '_')}`}\r\n className={clsx(styles['controls-button'], [\r\n forceSquared && styles['controls-button--squared'],\r\n prefix && styles['controls-button--with-prefix'],\r\n ])}\r\n >\r\n <div className={styles['controls-button__wrapper']}>\r\n {prefix && <div className={styles['controls-button__prefix']}>{prefix}</div>}\r\n {label}\r\n </div>\r\n </label>\r\n </>\r\n );\r\n};\r\n"],"names":["ControlsButton","type","label","value","prefix","name","forceSquared","checked","disabled","onSetValue","idPrefix","useId","jsxs","Fragment","jsx","event","styles","clsx"],"mappings":"
|
|
1
|
+
{"version":3,"file":"ControlsButton.js","sources":["../../../src/components/ControlsButton/ControlsButton.tsx"],"sourcesContent":["import { useId } from 'react';\r\nimport { clsx } from 'clsx';\r\n\r\nimport type { ChangeEvent } from 'react';\r\nimport type { IconProps } from 'components/Icon';\r\n\r\nimport styles from './ControlsButton.module.css';\r\n\r\nimport { Icon } from 'components/Icon';\r\n\r\nexport interface ControlsButtonProps {\r\n /** to set type/behaviour of input radio or checkbox */\r\n type?: 'radio' | 'checkbox';\r\n /** button label */\r\n label: string;\r\n /** button value */\r\n value: string;\r\n /** set if icon is needed in font of lable */\r\n iconName?: IconProps['name'];\r\n /** set if prefix is needed above of lable */\r\n prefix?: string;\r\n /** set if used as radiogroup */\r\n name?: string;\r\n /** `true` to set squared button; otherwise, `false`. The default is `false`. Note: hides icon */\r\n forceSquared?: boolean;\r\n /** to set default status */\r\n checked?: boolean;\r\n /** `true` to disable the button; otherwise, `false`. The default is `false`. */\r\n disabled?: boolean;\r\n /** The callback function that is invoked when the radio button changes value. */\r\n onSetValue: (event: ChangeEvent<HTMLInputElement>) => void;\r\n}\r\n\r\nexport const ControlsButton = ({\r\n type = 'checkbox',\r\n label,\r\n value,\r\n iconName,\r\n prefix,\r\n name,\r\n forceSquared = false,\r\n checked,\r\n disabled,\r\n onSetValue,\r\n}: ControlsButtonProps) => {\r\n const idPrefix = useId();\r\n\r\n return (\r\n <>\r\n <input\r\n type={type}\r\n id={`${idPrefix}${label.replace(/\\s+/g, '_')}`}\r\n name={name ? name : label.replace(/\\s+/g, '_')}\r\n disabled={disabled}\r\n value={value}\r\n checked={checked}\r\n onChange={(event) => onSetValue(event)}\r\n className={styles['controls-input']}\r\n />\r\n <label\r\n htmlFor={`${idPrefix}${label.replace(/\\s+/g, '_')}`}\r\n className={clsx(styles['controls-button'], [\r\n forceSquared && styles['controls-button--squared'],\r\n prefix && styles['controls-button--with-prefix'],\r\n iconName && styles['controls-button--with-icon'],\r\n ])}\r\n >\r\n {iconName && <Icon name={iconName} size={20} />}\r\n <div className={styles['controls-button__wrapper']}>\r\n {prefix && <div className={styles['controls-button__prefix']}>{prefix}</div>}\r\n {label}\r\n </div>\r\n </label>\r\n </>\r\n );\r\n};\r\n"],"names":["ControlsButton","type","label","value","iconName","prefix","name","forceSquared","checked","disabled","onSetValue","idPrefix","useId","jsxs","Fragment","jsx","event","styles","clsx","Icon"],"mappings":";;;;;;;;;;;;GAiCaA,IAAiB,CAAC;AAAA,EAC7B,MAAAC,IAAO;AAAA,EACP,OAAAC;AAAA,EACA,OAAAC;AAAA,EACA,UAAAC;AAAA,EACA,QAAAC;AAAA,EACA,MAAAC;AAAA,EACA,cAAAC,IAAe;AAAA,EACf,SAAAC;AAAA,EACA,UAAAC;AAAA,EACA,YAAAC;AACF,MAA2B;AACzB,QAAMC,IAAWC,EAAA;AAEjB,SACE,gBAAAC,EAAAC,GAAA,EACE,UAAA;AAAA,IAAA,gBAAAC;AAAA,MAAC;AAAA,MAAA;AAAA,QACC,MAAAd;AAAA,QACA,IAAI,GAAGU,CAAQ,GAAGT,EAAM,QAAQ,QAAQ,GAAG,CAAC;AAAA,QAC5C,MAAMI,KAAcJ,EAAM,QAAQ,QAAQ,GAAG;AAAA,QAC7C,UAAAO;AAAA,QACA,OAAAN;AAAA,QACA,SAAAK;AAAA,QACA,UAAU,CAACQ,MAAUN,EAAWM,CAAK;AAAA,QACrC,WAAWC,EAAO,gBAAgB;AAAA,MAAA;AAAA,IAAA;AAAA,IAEpC,gBAAAJ;AAAA,MAAC;AAAA,MAAA;AAAA,QACC,SAAS,GAAGF,CAAQ,GAAGT,EAAM,QAAQ,QAAQ,GAAG,CAAC;AAAA,QACjD,WAAWgB,EAAKD,EAAO,iBAAiB,GAAG;AAAA,UACzCV,KAAgBU,EAAO,0BAA0B;AAAA,UACjDZ,KAAUY,EAAO,8BAA8B;AAAA,UAC/Cb,KAAYa,EAAO,4BAA4B;AAAA,QAAA,CAChD;AAAA,QAEA,UAAA;AAAA,UAAAb,KAAY,gBAAAW,EAACI,GAAA,EAAK,MAAMf,GAAU,MAAM,IAAI;AAAA,UAC7C,gBAAAS,EAAC,OAAA,EAAI,WAAWI,EAAO,0BAA0B,GAC9C,UAAA;AAAA,YAAAZ,uBAAW,OAAA,EAAI,WAAWY,EAAO,yBAAyB,GAAI,UAAAZ,GAAO;AAAA,YACrEH;AAAA,UAAA,EAAA,CACH;AAAA,QAAA;AAAA,MAAA;AAAA,IAAA;AAAA,EACF,GACF;AAEJ;"}
|
|
@@ -3,3 +3,5 @@ import { ControlsButtonProps } from './ControlsButton';
|
|
|
3
3
|
declare const _default: Meta<ControlsButtonProps>;
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const ControlsButtonExample: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ControlsButtonProps>;
|
|
6
|
+
export declare const WithPrefix: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ControlsButtonProps>;
|
|
7
|
+
export declare const WithIcon: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ControlsButtonProps>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { l } from "../../index-DFu0GqDc.js";
|
|
1
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { l as e } from "../../index-DFu0GqDc.js";
|
|
3
3
|
import { ControlsButton as o } from "./ControlsButton.js";
|
|
4
|
-
|
|
4
|
+
import { Icons as a } from "../Icon/icons/index.js";
|
|
5
|
+
const r = Object.keys(a), c = "<ControlsButton type={radio or checkbox} label={} value={} prefix={} forceSquared={}isChecked={} variant={} disabled={} notValid={} onSetValue={} key={} />", f = {
|
|
5
6
|
title: "Atoms/ControlsButton",
|
|
6
7
|
component: o,
|
|
7
8
|
argTypes: {
|
|
@@ -11,6 +12,10 @@ const r = "<ControlsButton type={radio or checkbox} label={} value={} prefix={}
|
|
|
11
12
|
value: {
|
|
12
13
|
control: "string"
|
|
13
14
|
},
|
|
15
|
+
iconName: {
|
|
16
|
+
control: { type: "select" },
|
|
17
|
+
options: r
|
|
18
|
+
},
|
|
14
19
|
forceSquared: {
|
|
15
20
|
control: "boolean"
|
|
16
21
|
},
|
|
@@ -28,18 +33,36 @@ const r = "<ControlsButton type={radio or checkbox} label={} value={} prefix={}
|
|
|
28
33
|
},
|
|
29
34
|
parameters: {
|
|
30
35
|
inspectComponent: o,
|
|
31
|
-
codeString:
|
|
36
|
+
codeString: c
|
|
32
37
|
}
|
|
33
|
-
},
|
|
34
|
-
|
|
38
|
+
}, t = (n) => /* @__PURE__ */ l(o, { ...n }), s = t.bind({});
|
|
39
|
+
s.args = {
|
|
35
40
|
type: "checkbox",
|
|
36
41
|
label: "1.2",
|
|
37
42
|
value: "1.2",
|
|
38
43
|
forceSquared: !0,
|
|
39
|
-
onSetValue:
|
|
44
|
+
onSetValue: e()
|
|
45
|
+
};
|
|
46
|
+
const i = t.bind({});
|
|
47
|
+
i.args = {
|
|
48
|
+
type: "checkbox",
|
|
49
|
+
label: "1.3",
|
|
50
|
+
value: "1.3",
|
|
51
|
+
prefix: "13",
|
|
52
|
+
onSetValue: e()
|
|
53
|
+
};
|
|
54
|
+
const b = t.bind({});
|
|
55
|
+
b.args = {
|
|
56
|
+
type: "checkbox",
|
|
57
|
+
label: "2.1",
|
|
58
|
+
value: "2.1",
|
|
59
|
+
iconName: "AcademicCap",
|
|
60
|
+
onSetValue: e()
|
|
40
61
|
};
|
|
41
62
|
export {
|
|
42
|
-
|
|
43
|
-
|
|
63
|
+
s as ControlsButtonExample,
|
|
64
|
+
b as WithIcon,
|
|
65
|
+
i as WithPrefix,
|
|
66
|
+
f as default
|
|
44
67
|
};
|
|
45
68
|
//# sourceMappingURL=ControlsButton.stories.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ControlsButton.stories.js","sources":["../../../src/components/ControlsButton/ControlsButton.stories.tsx"],"sourcesContent":["import { fn } from 'storybook/test';\r\n\r\nimport type { Meta, StoryFn } from '@storybook/react';\r\nimport type { ControlsButtonProps } from './ControlsButton';\r\n\r\nimport { ControlsButton } from './ControlsButton';\r\n\r\nconst codeString =\r\n '<ControlsButton type={radio or checkbox} label={} value={} prefix={} forceSquared={}isChecked={} variant={} disabled={} notValid={} onSetValue={} key={} />';\r\n\r\n// eslint-disable-next-line import/no-default-export\r\nexport default {\r\n title: 'Atoms/ControlsButton',\r\n component: ControlsButton,\r\n argTypes: {\r\n label: {\r\n control: 'text',\r\n },\r\n value: {\r\n control: 'string',\r\n },\r\n forceSquared: {\r\n control: 'boolean',\r\n },\r\n isChecked: {\r\n control: 'boolean',\r\n },\r\n disabled: {\r\n control: 'boolean',\r\n },\r\n onSetValue: {\r\n table: {\r\n disable: true,\r\n },\r\n },\r\n },\r\n parameters: {\r\n inspectComponent: ControlsButton,\r\n codeString: codeString,\r\n },\r\n} as Meta<ControlsButtonProps>;\r\n\r\nconst Template: StoryFn<ControlsButtonProps> = (args) => <ControlsButton {...args} />;\r\n\r\nexport const ControlsButtonExample = Template.bind({});\r\nControlsButtonExample.args = {\r\n type: 'checkbox',\r\n label: '1.2',\r\n value: '1.2',\r\n forceSquared: true,\r\n onSetValue: fn(),\r\n};\r\n"],"names":["codeString","ControlsButton_stories","ControlsButton","Template","args","jsx","ControlsButtonExample","fn"],"mappings":"
|
|
1
|
+
{"version":3,"file":"ControlsButton.stories.js","sources":["../../../src/components/ControlsButton/ControlsButton.stories.tsx"],"sourcesContent":["import { fn } from 'storybook/test';\r\n\r\nimport type { Meta, StoryFn } from '@storybook/react';\r\nimport type { ControlsButtonProps } from './ControlsButton';\r\n\r\nimport { ControlsButton } from './ControlsButton';\r\n\r\nimport { Icons } from 'components/Icon/icons';\r\n\r\nconst iconNames = Object.keys(Icons) as (keyof typeof Icons)[];\r\n\r\nconst codeString =\r\n '<ControlsButton type={radio or checkbox} label={} value={} prefix={} forceSquared={}isChecked={} variant={} disabled={} notValid={} onSetValue={} key={} />';\r\n\r\n// eslint-disable-next-line import/no-default-export\r\nexport default {\r\n title: 'Atoms/ControlsButton',\r\n component: ControlsButton,\r\n argTypes: {\r\n label: {\r\n control: 'text',\r\n },\r\n value: {\r\n control: 'string',\r\n },\r\n iconName: {\r\n control: { type: 'select' },\r\n options: iconNames,\r\n },\r\n forceSquared: {\r\n control: 'boolean',\r\n },\r\n isChecked: {\r\n control: 'boolean',\r\n },\r\n disabled: {\r\n control: 'boolean',\r\n },\r\n onSetValue: {\r\n table: {\r\n disable: true,\r\n },\r\n },\r\n },\r\n parameters: {\r\n inspectComponent: ControlsButton,\r\n codeString: codeString,\r\n },\r\n} as Meta<ControlsButtonProps>;\r\n\r\nconst Template: StoryFn<ControlsButtonProps> = (args) => <ControlsButton {...args} />;\r\n\r\nexport const ControlsButtonExample = Template.bind({});\r\nControlsButtonExample.args = {\r\n type: 'checkbox',\r\n label: '1.2',\r\n value: '1.2',\r\n forceSquared: true,\r\n onSetValue: fn(),\r\n};\r\n\r\nexport const WithPrefix = Template.bind({});\r\nWithPrefix.args = {\r\n type: 'checkbox',\r\n label: '1.3',\r\n value: '1.3',\r\n prefix: '13',\r\n onSetValue: fn(),\r\n};\r\n\r\nexport const WithIcon = Template.bind({});\r\nWithIcon.args = {\r\n type: 'checkbox',\r\n label: '2.1',\r\n value: '2.1',\r\n iconName: 'AcademicCap',\r\n onSetValue: fn(),\r\n};\r\n"],"names":["iconNames","Icons","codeString","ControlsButton_stories","ControlsButton","Template","args","jsx","ControlsButtonExample","fn","WithPrefix","WithIcon"],"mappings":";;;;AASA,MAAMA,IAAY,OAAO,KAAKC,CAAK,GAE7BC,IACJ,+JAGFC,IAAe;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AAAA,EACX,UAAU;AAAA,IACR,OAAO;AAAA,MACL,SAAS;AAAA,IAAA;AAAA,IAEX,OAAO;AAAA,MACL,SAAS;AAAA,IAAA;AAAA,IAEX,UAAU;AAAA,MACR,SAAS,EAAE,MAAM,SAAA;AAAA,MACjB,SAASJ;AAAA,IAAA;AAAA,IAEX,cAAc;AAAA,MACZ,SAAS;AAAA,IAAA;AAAA,IAEX,WAAW;AAAA,MACT,SAAS;AAAA,IAAA;AAAA,IAEX,UAAU;AAAA,MACR,SAAS;AAAA,IAAA;AAAA,IAEX,YAAY;AAAA,MACV,OAAO;AAAA,QACL,SAAS;AAAA,MAAA;AAAA,IACX;AAAA,EACF;AAAA,EAEF,YAAY;AAAA,IACV,kBAAkBI;AAAA,IAClB,YAAAF;AAAA,EAAA;AAEJ,GAEMG,IAAyC,CAACC,MAAS,gBAAAC,EAACH,GAAA,EAAgB,GAAGE,GAAM,GAEtEE,IAAwBH,EAAS,KAAK,CAAA,CAAE;AACrDG,EAAsB,OAAO;AAAA,EAC3B,MAAM;AAAA,EACN,OAAO;AAAA,EACP,OAAO;AAAA,EACP,cAAc;AAAA,EACd,YAAYC,EAAA;AACd;AAEO,MAAMC,IAAaL,EAAS,KAAK,CAAA,CAAE;AAC1CK,EAAW,OAAO;AAAA,EAChB,MAAM;AAAA,EACN,OAAO;AAAA,EACP,OAAO;AAAA,EACP,QAAQ;AAAA,EACR,YAAYD,EAAA;AACd;AAEO,MAAME,IAAWN,EAAS,KAAK,CAAA,CAAE;AACxCM,EAAS,OAAO;AAAA,EACd,MAAM;AAAA,EACN,OAAO;AAAA,EACP,OAAO;AAAA,EACP,UAAU;AAAA,EACV,YAAYF,EAAA;AACd;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import "../../index-
|
|
3
|
-
import { r as s, s as e, f as r } from "../../react.esm-
|
|
2
|
+
import "../../index-C5wAoUNf.js";
|
|
3
|
+
import { r as s, s as e, f as r } from "../../react.esm-QfxS8egK.js";
|
|
4
4
|
import { FeedbackBar as c } from "./FeedbackBar.js";
|
|
5
5
|
describe("FeedbackBar", () => {
|
|
6
6
|
it("should render with children text", () => {
|
|
@@ -1,24 +1,30 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { Icon as
|
|
3
|
-
import { Icons as
|
|
4
|
-
import { ClipboardButton as
|
|
5
|
-
import '../../assets/Icon.css';const s = "_icon__wrapper_106v1_1", p = "_icon__item_106v1_13",
|
|
1
|
+
import { jsx as o, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
import { Icon as n } from "./Icon.js";
|
|
3
|
+
import { Icons as c } from "./icons/index.js";
|
|
4
|
+
import { ClipboardButton as r } from "../../storyComponents/ClipboardButton/ClipboardButton.js";
|
|
5
|
+
import '../../assets/Icon.css';const s = "_icon__wrapper_106v1_1", p = "_icon__item_106v1_13", i = {
|
|
6
6
|
icon__wrapper: s,
|
|
7
7
|
icon__item: p
|
|
8
|
-
}, a = "<Icon name={iconName} size={size} />", w = {
|
|
8
|
+
}, a = Object.keys(c), m = "<Icon name={iconName} size={size} />", w = {
|
|
9
9
|
title: "Atoms/Icon",
|
|
10
|
-
component:
|
|
10
|
+
component: n,
|
|
11
|
+
argTypes: {
|
|
12
|
+
name: {
|
|
13
|
+
control: { type: "select" },
|
|
14
|
+
options: a
|
|
15
|
+
}
|
|
16
|
+
},
|
|
11
17
|
parameters: {
|
|
12
|
-
inspectComponent:
|
|
13
|
-
codeString:
|
|
18
|
+
inspectComponent: n,
|
|
19
|
+
codeString: m
|
|
14
20
|
}
|
|
15
|
-
},
|
|
16
|
-
|
|
21
|
+
}, _ = (e) => /* @__PURE__ */ o(n, { ...e }), l = _.bind({});
|
|
22
|
+
l.args = {
|
|
17
23
|
name: "ArrowDownOnSquare",
|
|
18
24
|
size: 32,
|
|
19
25
|
title: "Optional Icon title"
|
|
20
26
|
};
|
|
21
|
-
const x = () => /* @__PURE__ */
|
|
27
|
+
const x = () => /* @__PURE__ */ o(
|
|
22
28
|
"div",
|
|
23
29
|
{
|
|
24
30
|
style: {
|
|
@@ -28,17 +34,17 @@ const x = () => /* @__PURE__ */ e(
|
|
|
28
34
|
padding: "1rem",
|
|
29
35
|
maxWidth: "1024px"
|
|
30
36
|
},
|
|
31
|
-
children: Object.keys(
|
|
32
|
-
/* @__PURE__ */
|
|
33
|
-
/* @__PURE__ */
|
|
34
|
-
/* @__PURE__ */
|
|
35
|
-
/* @__PURE__ */
|
|
37
|
+
children: Object.keys(c).map((e) => /* @__PURE__ */ t("div", { className: i.icon__wrapper, children: [
|
|
38
|
+
/* @__PURE__ */ o(n, { name: e, size: 48 }),
|
|
39
|
+
/* @__PURE__ */ t("div", { className: i.icon__item, children: [
|
|
40
|
+
/* @__PURE__ */ o("span", { children: e }),
|
|
41
|
+
/* @__PURE__ */ o(r, { text: `<Icon icon={${e}} />` })
|
|
36
42
|
] })
|
|
37
|
-
] },
|
|
43
|
+
] }, e))
|
|
38
44
|
}
|
|
39
45
|
);
|
|
40
46
|
export {
|
|
41
|
-
|
|
47
|
+
l as IconExample,
|
|
42
48
|
x as IconOverview,
|
|
43
49
|
w as default
|
|
44
50
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.stories.js","sources":["../../../src/components/Icon/Icon.stories.tsx"],"sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\nimport type { IconProps } from './Icon';\n\nimport { Icon } from './Icon';\nimport { Icons } from './icons';\nimport styles from './story.module.css';\n\nimport { ClipboardButton } from 'storyComponents/ClipboardButton/';\n\nconst codeString = '<Icon name={iconName} size={size} />';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Atoms/Icon',\n component: Icon,\n parameters: {\n inspectComponent: Icon,\n codeString: codeString,\n },\n} as Meta<IconProps>;\n\nconst Template: StoryFn<IconProps> = (args) => <Icon {...args} />;\n\nexport const IconExample = Template.bind({});\nIconExample.args = {\n name: 'ArrowDownOnSquare',\n size: 32,\n title: 'Optional Icon title',\n};\n\nexport const IconOverview = () => {\n return (\n <div\n style={{\n display: 'grid',\n gridTemplateColumns: 'repeat(4, 1fr)',\n gridGap: '1rem',\n padding: '1rem',\n maxWidth: '1024px',\n }}\n >\n {Object.keys(Icons).map((name) => (\n <div key={name} className={styles.icon__wrapper}>\n <Icon name={name as keyof typeof Icons} size={48} />\n <div className={styles.icon__item}>\n <span>{name}</span>\n <ClipboardButton text={`<Icon icon={${name}} />`} />\n </div>\n </div>\n ))}\n </div>\n );\n};\n"],"names":["codeString","Icon_stories","Icon","Template","args","jsx","IconExample","IconOverview","
|
|
1
|
+
{"version":3,"file":"Icon.stories.js","sources":["../../../src/components/Icon/Icon.stories.tsx"],"sourcesContent":["import type { Meta, StoryFn } from '@storybook/react';\nimport type { IconProps } from './Icon';\n\nimport { Icon } from './Icon';\nimport { Icons } from './icons';\nimport styles from './story.module.css';\n\nimport { ClipboardButton } from 'storyComponents/ClipboardButton/';\n\nconst iconNames = Object.keys(Icons) as (keyof typeof Icons)[];\n\nconst codeString = '<Icon name={iconName} size={size} />';\n\n// eslint-disable-next-line import/no-default-export\nexport default {\n title: 'Atoms/Icon',\n component: Icon,\n argTypes: {\n name: {\n control: { type: 'select' },\n options: iconNames,\n },\n },\n parameters: {\n inspectComponent: Icon,\n codeString: codeString,\n },\n} as Meta<IconProps>;\n\nconst Template: StoryFn<IconProps> = (args) => <Icon {...args} />;\n\nexport const IconExample = Template.bind({});\nIconExample.args = {\n name: 'ArrowDownOnSquare',\n size: 32,\n title: 'Optional Icon title',\n};\n\nexport const IconOverview = () => {\n return (\n <div\n style={{\n display: 'grid',\n gridTemplateColumns: 'repeat(4, 1fr)',\n gridGap: '1rem',\n padding: '1rem',\n maxWidth: '1024px',\n }}\n >\n {Object.keys(Icons).map((name) => (\n <div key={name} className={styles.icon__wrapper}>\n <Icon name={name as keyof typeof Icons} size={48} />\n <div className={styles.icon__item}>\n <span>{name}</span>\n <ClipboardButton text={`<Icon icon={${name}} />`} />\n </div>\n </div>\n ))}\n </div>\n );\n};\n"],"names":["iconNames","Icons","codeString","Icon_stories","Icon","Template","args","jsx","IconExample","IconOverview","name","jsxs","styles","ClipboardButton"],"mappings":";;;;;;;GASMA,IAAY,OAAO,KAAKC,CAAK,GAE7BC,IAAa,wCAGnBC,IAAe;AAAA,EACb,OAAO;AAAA,EACP,WAAWC;AAAA,EACX,UAAU;AAAA,IACR,MAAM;AAAA,MACJ,SAAS,EAAE,MAAM,SAAA;AAAA,MACjB,SAASJ;AAAA,IAAA;AAAA,EACX;AAAA,EAEF,YAAY;AAAA,IACV,kBAAkBI;AAAA,IAClB,YAAAF;AAAA,EAAA;AAEJ,GAEMG,IAA+B,CAACC,MAAS,gBAAAC,EAACH,GAAA,EAAM,GAAGE,GAAM,GAElDE,IAAcH,EAAS,KAAK,CAAA,CAAE;AAC3CG,EAAY,OAAO;AAAA,EACjB,MAAM;AAAA,EACN,MAAM;AAAA,EACN,OAAO;AACT;AAEO,MAAMC,IAAe,MAExB,gBAAAF;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAO;AAAA,MACL,SAAS;AAAA,MACT,qBAAqB;AAAA,MACrB,SAAS;AAAA,MACT,SAAS;AAAA,MACT,UAAU;AAAA,IAAA;AAAA,IAGX,UAAA,OAAO,KAAKN,CAAK,EAAE,IAAI,CAACS,MACvB,gBAAAC,EAAC,OAAA,EAAe,WAAWC,EAAO,eAChC,UAAA;AAAA,MAAA,gBAAAL,EAACH,GAAA,EAAK,MAAAM,GAAkC,MAAM,GAAA,CAAI;AAAA,MAClD,gBAAAC,EAAC,OAAA,EAAI,WAAWC,EAAO,YACrB,UAAA;AAAA,QAAA,gBAAAL,EAAC,UAAM,UAAAG,EAAA,CAAK;AAAA,QACZ,gBAAAH,EAACM,GAAA,EAAgB,MAAM,eAAeH,CAAI,OAAA,CAAQ;AAAA,MAAA,EAAA,CACpD;AAAA,IAAA,EAAA,GALQA,CAMV,CACD;AAAA,EAAA;AAAA;"}
|
|
@@ -119,6 +119,12 @@ export declare const Icons: {
|
|
|
119
119
|
desc?: string;
|
|
120
120
|
descId?: string;
|
|
121
121
|
}>;
|
|
122
|
+
CalendarCheck: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
123
|
+
title?: string;
|
|
124
|
+
titleId?: string;
|
|
125
|
+
desc?: string;
|
|
126
|
+
descId?: string;
|
|
127
|
+
}>;
|
|
122
128
|
CalendarEdit: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
123
129
|
title?: string;
|
|
124
130
|
titleId?: string;
|
|
@@ -647,6 +653,12 @@ export declare const Icons: {
|
|
|
647
653
|
desc?: string;
|
|
648
654
|
descId?: string;
|
|
649
655
|
}>;
|
|
656
|
+
Wreath: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
657
|
+
title?: string;
|
|
658
|
+
titleId?: string;
|
|
659
|
+
desc?: string;
|
|
660
|
+
descId?: string;
|
|
661
|
+
}>;
|
|
650
662
|
Zero: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
651
663
|
title?: string;
|
|
652
664
|
titleId?: string;
|