@react5/ui 1.0.26 → 1.0.28
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/LICENSE +21 -21
- package/README.md +2 -2
- package/package.json +38 -38
- package/packages/app/README.md +50 -50
- package/packages/app/eslint.config.js +28 -28
- package/packages/app/index.html +13 -13
- package/packages/app/jest.config.js +12 -12
- package/packages/app/package.json +36 -36
- package/packages/app/src/App.css +5 -5
- package/packages/app/src/App.tsx +35 -35
- package/packages/app/src/i18n/config.ts +21 -21
- package/packages/app/src/i18n/en/translation.json +4 -4
- package/packages/app/src/i18n/fr/translation.json +4 -4
- package/packages/app/src/i18n/index.ts +3 -3
- package/packages/app/src/main.tsx +16 -16
- package/packages/app/src/styles/1-reset.scss +72 -72
- package/packages/app/src/styles/2-colors.scss +11 -11
- package/packages/app/src/vite-env.d.ts +1 -1
- package/packages/app/tsconfig.app.json +26 -26
- package/packages/app/tsconfig.json +7 -7
- package/packages/app/tsconfig.node.json +24 -24
- package/packages/app/vite.config.ts +7 -7
- package/packages/lib/.babelrc +9 -9
- package/packages/lib/.storybook/main.js +50 -50
- package/packages/lib/.storybook/preview.js +13 -13
- package/packages/lib/declaration.d.ts +9 -9
- package/packages/lib/dist/esm/index.esm.css +0 -2
- package/packages/lib/dist/esm/index.esm.js +1 -1
- package/packages/lib/dist/esm/index.esm.js.map +1 -1
- package/packages/lib/dist/esm/index.esm.scss +1401 -1403
- package/packages/lib/dist/index.css +0 -2
- package/packages/lib/dist/index.js +1 -1
- package/packages/lib/dist/index.js.map +1 -1
- package/packages/lib/dist/index.scss +1401 -1403
- package/packages/lib/jest.config.js +19 -19
- package/packages/lib/package.json +100 -102
- package/packages/lib/plop/component/index.js +43 -43
- package/packages/lib/plop/index.js +3 -3
- package/packages/lib/plop/templates/component/component.hbs +19 -19
- package/packages/lib/plop/templates/component/index.hbs +1 -1
- package/packages/lib/plop/templates/component/stories.hbs +17 -17
- package/packages/lib/plop/templates/component/style.hbs +1 -1
- package/packages/lib/plop/templates/component/test.hbs +11 -11
- package/packages/lib/plopfile.js +1 -1
- package/packages/lib/rollup.config.mjs +64 -64
- package/packages/lib/src/components/Accordion/Accordion.scss +67 -67
- package/packages/lib/src/components/Accordion/Accordion.tsx +36 -36
- package/packages/lib/src/components/Button/Button.scss +60 -62
- package/packages/lib/src/components/Button/Button.stories.tsx +26 -26
- package/packages/lib/src/components/Button/Button.tsx +40 -40
- package/packages/lib/src/components/Button/index.tsx +1 -1
- package/packages/lib/src/components/ButtonsGroup/ButtonsGroup.scss +3 -3
- package/packages/lib/src/components/ButtonsGroup/ButtonsGroup.stories.tsx +17 -17
- package/packages/lib/src/components/ButtonsGroup/ButtonsGroup.test.tsx +11 -11
- package/packages/lib/src/components/ButtonsGroup/ButtonsGroup.tsx +17 -17
- package/packages/lib/src/components/ButtonsGroup/index.tsx +1 -1
- package/packages/lib/src/components/CheckBox/CheckBox.scss +63 -63
- package/packages/lib/src/components/CheckBox/CheckBox.stories.tsx +22 -22
- package/packages/lib/src/components/CheckBox/CheckBox.tsx +42 -42
- package/packages/lib/src/components/CheckBox/index.tsx +1 -1
- package/packages/lib/src/components/DialogPrompt/DialogPrompt.scss +6 -6
- package/packages/lib/src/components/DialogPrompt/DialogPrompt.stories.tsx +17 -17
- package/packages/lib/src/components/DialogPrompt/DialogPrompt.test.tsx +11 -11
- package/packages/lib/src/components/DialogPrompt/DialogPrompt.tsx +41 -41
- package/packages/lib/src/components/DialogPrompt/index.tsx +1 -1
- package/packages/lib/src/components/Divider/Divider.scss +22 -22
- package/packages/lib/src/components/Divider/Divider.tsx +20 -20
- package/packages/lib/src/components/DropDown/DropDown.scss +70 -70
- package/packages/lib/src/components/DropDown/DropDown.stories.tsx +45 -45
- package/packages/lib/src/components/DropDown/DropDown.tsx +61 -61
- package/packages/lib/src/components/DropDown/index.tsx +1 -1
- package/packages/lib/src/components/Form/Form.scss +3 -3
- package/packages/lib/src/components/Form/Form.stories.tsx +20 -20
- package/packages/lib/src/components/Form/Form.tsx +25 -25
- package/packages/lib/src/components/FormButtons/FormButtons.scss +5 -5
- package/packages/lib/src/components/FormButtons/FormButtons.tsx +18 -18
- package/packages/lib/src/components/HeaderButtons/HeaderButtons.scss +6 -6
- package/packages/lib/src/components/HeaderButtons/HeaderButtons.stories.tsx +17 -17
- package/packages/lib/src/components/HeaderButtons/HeaderButtons.test.tsx +11 -11
- package/packages/lib/src/components/HeaderButtons/HeaderButtons.tsx +28 -28
- package/packages/lib/src/components/HeaderButtons/index.tsx +1 -1
- package/packages/lib/src/components/IconButton/IconButton.scss +64 -64
- package/packages/lib/src/components/IconButton/IconButton.tsx +44 -44
- package/packages/lib/src/components/MenuItem/MenuItem.scss +13 -13
- package/packages/lib/src/components/MenuItem/MenuItem.tsx +36 -36
- package/packages/lib/src/components/Modal/Modal.scss +71 -71
- package/packages/lib/src/components/Modal/Modal.tsx +60 -60
- package/packages/lib/src/components/Navbar/Navbar.scss +52 -52
- package/packages/lib/src/components/Navbar/Navbar.stories.tsx +25 -25
- package/packages/lib/src/components/Navbar/Navbar.tsx +38 -38
- package/packages/lib/src/components/NavbarLink/NavbarLink.scss +15 -15
- package/packages/lib/src/components/NavbarLink/NavbarLink.tsx +34 -34
- package/packages/lib/src/components/NavbarMenu/NavbarMenu.scss +156 -156
- package/packages/lib/src/components/NavbarMenu/NavbarMenu.stories.tsx +24 -24
- package/packages/lib/src/components/NavbarMenu/NavbarMenu.tsx +72 -72
- package/packages/lib/src/components/Panel/Panel.scss +29 -29
- package/packages/lib/src/components/Panel/Panel.stories.tsx +32 -32
- package/packages/lib/src/components/Panel/Panel.test.tsx +11 -11
- package/packages/lib/src/components/Panel/Panel.tsx +29 -29
- package/packages/lib/src/components/Panel/index.tsx +1 -1
- package/packages/lib/src/components/Paper/Paper.scss +5 -5
- package/packages/lib/src/components/Paper/Paper.stories.tsx +18 -18
- package/packages/lib/src/components/Paper/Paper.tsx +18 -18
- package/packages/lib/src/components/Paper/index.tsx +1 -1
- package/packages/lib/src/components/RangeSlider/RangeSlider.scss +83 -83
- package/packages/lib/src/components/RangeSlider/RangeSlider.stories.tsx +24 -24
- package/packages/lib/src/components/RangeSlider/RangeSlider.tsx +150 -150
- package/packages/lib/src/components/ResponsiveBar/ResponsiveBar.scss +72 -72
- package/packages/lib/src/components/ResponsiveBar/ResponsiveBar.tsx +38 -38
- package/packages/lib/src/components/ScrollView/ScrollView.scss +20 -20
- package/packages/lib/src/components/ScrollView/ScrollView.stories.tsx +17 -17
- package/packages/lib/src/components/ScrollView/ScrollView.test.tsx +11 -11
- package/packages/lib/src/components/ScrollView/ScrollView.tsx +19 -19
- package/packages/lib/src/components/ScrollView/index.tsx +1 -1
- package/packages/lib/src/components/Section/Section.scss +17 -17
- package/packages/lib/src/components/Section/Section.tsx +26 -26
- package/packages/lib/src/components/SelectField/SelectField.scss +42 -42
- package/packages/lib/src/components/SelectField/SelectField.stories.tsx +14 -14
- package/packages/lib/src/components/SelectField/SelectField.tsx +54 -54
- package/packages/lib/src/components/SelectField/index.tsx +1 -1
- package/packages/lib/src/components/Spacer/Spacer.scss +2 -2
- package/packages/lib/src/components/Spacer/Spacer.tsx +6 -6
- package/packages/lib/src/components/StackPanel/StackPanel.scss +8 -8
- package/packages/lib/src/components/StackPanel/StackPanel.stories.tsx +17 -17
- package/packages/lib/src/components/StackPanel/StackPanel.test.tsx +11 -11
- package/packages/lib/src/components/StackPanel/StackPanel.tsx +31 -31
- package/packages/lib/src/components/StackPanel/index.tsx +1 -1
- package/packages/lib/src/components/Submenu/Submenu.scss +55 -55
- package/packages/lib/src/components/Submenu/Submenu.stories.tsx +45 -45
- package/packages/lib/src/components/Submenu/Submenu.tsx +59 -59
- package/packages/lib/src/components/Submenu/index.tsx +1 -1
- package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.scss +75 -75
- package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.stories.tsx +17 -17
- package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.test.tsx +11 -11
- package/packages/lib/src/components/SuccessCongratulation/SuccessCongratulation.tsx +63 -63
- package/packages/lib/src/components/SuccessCongratulation/index.tsx +1 -1
- package/packages/lib/src/components/TextArea/TextArea.scss +41 -41
- package/packages/lib/src/components/TextArea/TextArea.stories.tsx +14 -14
- package/packages/lib/src/components/TextArea/TextArea.tsx +50 -50
- package/packages/lib/src/components/TextArea/index.tsx +1 -1
- package/packages/lib/src/components/TextField/TextField.scss +56 -56
- package/packages/lib/src/components/TextField/TextField.stories.tsx +14 -14
- package/packages/lib/src/components/TextField/TextField.tsx +89 -89
- package/packages/lib/src/components/TextField/index.tsx +1 -1
- package/packages/lib/src/components/TitleEdit/TitleEdit.scss +17 -17
- package/packages/lib/src/components/TitleEdit/TitleEdit.tsx +69 -69
- package/packages/lib/src/components/Toast/Toast.scss +32 -32
- package/packages/lib/src/components/Toast/Toast.tsx +29 -29
- package/packages/lib/src/components/ToggleButton/ToggleButton.scss +47 -47
- package/packages/lib/src/components/ToggleButton/ToggleButton.stories.tsx +22 -22
- package/packages/lib/src/components/ToggleButton/ToggleButton.tsx +41 -41
- package/packages/lib/src/components/ToggleButton/index.tsx +1 -1
- package/packages/lib/src/components/Toolbar/Toolbar.scss +16 -16
- package/packages/lib/src/components/Toolbar/Toolbar.stories.tsx +17 -17
- package/packages/lib/src/components/Toolbar/Toolbar.test.tsx +11 -11
- package/packages/lib/src/components/Toolbar/Toolbar.tsx +20 -20
- package/packages/lib/src/components/Toolbar/index.tsx +1 -1
- package/packages/lib/src/components/Typography/Typography.scss +51 -51
- package/packages/lib/src/components/Typography/Typography.stories.tsx +18 -18
- package/packages/lib/src/components/Typography/Typography.tsx +19 -19
- package/packages/lib/src/components/index.tsx +34 -34
- package/packages/lib/src/hooks/index.tsx +3 -3
- package/packages/lib/src/hooks/use-click-outside.tsx +19 -19
- package/packages/lib/src/hooks/use-form.tsx +107 -107
- package/packages/lib/src/hooks/use-keys-enteresc.tsx +25 -25
- package/packages/lib/src/hooks/use-set-startup-focus.tsx +8 -8
- package/packages/lib/src/i18n/config.ts +8 -8
- package/packages/lib/src/i18n/en/translation.json +11 -11
- package/packages/lib/src/i18n/fr/translation.json +11 -11
- package/packages/lib/src/i18n/index.ts +11 -11
- package/packages/lib/src/index.tsx +7 -7
- package/packages/lib/src/stories/Intrduction.mdx +171 -171
- package/packages/lib/src/stories/assets/github.svg +3 -3
- package/packages/lib/src/styles/1-color-vars.scss +51 -51
- package/packages/lib/src/styles/2-font-variables.scss +2 -2
- package/packages/lib/src/styles/variables.scss +1 -1
- package/packages/lib/src/test/i18n.ts +17 -17
- package/packages/lib/src/utils/bem.ts +4 -4
- package/packages/lib/src/utils/formatError.ts +5 -5
- package/packages/lib/src/utils/index.ts +1 -1
- package/packages/lib/src/utils/interfaces.ts +5 -5
- package/packages/lib/tsconfig.json +26 -25
- package/packages/lib/vite.config.js +18 -18
- package/packages/ui-test/package-lock.json +97 -97
- package/packages/ui-test/package.json +19 -19
- package/packages/ui-test/playwright.config.ts +80 -80
- package/packages/ui-test/tests/example.spec.ts +18 -18
- package/packages/ui-test/tests-examples/demo-todo-app.spec.ts +437 -437
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
.r5ui-checkbox {
|
|
2
|
-
display: flex;
|
|
3
|
-
align-items: center;
|
|
4
|
-
position: relative;
|
|
5
|
-
margin: .5em 1em .5em .5em;
|
|
6
|
-
//padding-left: 2em;
|
|
7
|
-
cursor: pointer;
|
|
8
|
-
user-select: none;
|
|
9
|
-
|
|
10
|
-
&__label {
|
|
11
|
-
color: $page_text_color;
|
|
12
|
-
padding-left: 10px;
|
|
13
|
-
}
|
|
14
|
-
&__input {
|
|
15
|
-
opacity: 0;
|
|
16
|
-
//visibility: hidden;
|
|
17
|
-
position: absolute;
|
|
18
|
-
color: $control_text_color;
|
|
19
|
-
background-color: $control_bg_color;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&__checkmark {
|
|
23
|
-
//position: relative;
|
|
24
|
-
//top: 0;
|
|
25
|
-
//left: 0;
|
|
26
|
-
display: inline-block;
|
|
27
|
-
height: 20px;
|
|
28
|
-
width: 20px;
|
|
29
|
-
background-color: transparent;
|
|
30
|
-
border: 1px solid $primary_border_color;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
&:hover &__checkmark {
|
|
34
|
-
background-color: $primary_bg_color_highlight;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
&__input:checked ~ &__checkmark {
|
|
38
|
-
background-color: $primary_bg_color;
|
|
39
|
-
}
|
|
40
|
-
&__input:focus ~ &__checkmark {
|
|
41
|
-
//background-color: $primary_bg_color;
|
|
42
|
-
border-width: 2px;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
&__checkmark::after {
|
|
46
|
-
content: "";
|
|
47
|
-
position: absolute;
|
|
48
|
-
display: none;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
&__input:checked ~ &__checkmark::after {
|
|
52
|
-
display: block;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
&__checkmark::after {
|
|
56
|
-
top: 4px;
|
|
57
|
-
left: 7px;
|
|
58
|
-
width: 7px;
|
|
59
|
-
height: 12px;
|
|
60
|
-
border: solid $primary_text_color;
|
|
61
|
-
border-width: 0 3px 3px 0;
|
|
62
|
-
transform: rotate(45deg);
|
|
63
|
-
}
|
|
1
|
+
.r5ui-checkbox {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
position: relative;
|
|
5
|
+
margin: .5em 1em .5em .5em;
|
|
6
|
+
//padding-left: 2em;
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
user-select: none;
|
|
9
|
+
|
|
10
|
+
&__label {
|
|
11
|
+
color: $page_text_color;
|
|
12
|
+
padding-left: 10px;
|
|
13
|
+
}
|
|
14
|
+
&__input {
|
|
15
|
+
opacity: 0;
|
|
16
|
+
//visibility: hidden;
|
|
17
|
+
position: absolute;
|
|
18
|
+
color: $control_text_color;
|
|
19
|
+
background-color: $control_bg_color;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&__checkmark {
|
|
23
|
+
//position: relative;
|
|
24
|
+
//top: 0;
|
|
25
|
+
//left: 0;
|
|
26
|
+
display: inline-block;
|
|
27
|
+
height: 20px;
|
|
28
|
+
width: 20px;
|
|
29
|
+
background-color: transparent;
|
|
30
|
+
border: 1px solid $primary_border_color;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:hover &__checkmark {
|
|
34
|
+
background-color: $primary_bg_color_highlight;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&__input:checked ~ &__checkmark {
|
|
38
|
+
background-color: $primary_bg_color;
|
|
39
|
+
}
|
|
40
|
+
&__input:focus ~ &__checkmark {
|
|
41
|
+
//background-color: $primary_bg_color;
|
|
42
|
+
border-width: 2px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&__checkmark::after {
|
|
46
|
+
content: "";
|
|
47
|
+
position: absolute;
|
|
48
|
+
display: none;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&__input:checked ~ &__checkmark::after {
|
|
52
|
+
display: block;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&__checkmark::after {
|
|
56
|
+
top: 4px;
|
|
57
|
+
left: 7px;
|
|
58
|
+
width: 7px;
|
|
59
|
+
height: 12px;
|
|
60
|
+
border: solid $primary_text_color;
|
|
61
|
+
border-width: 0 3px 3px 0;
|
|
62
|
+
transform: rotate(45deg);
|
|
63
|
+
}
|
|
64
64
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { Fragment } from 'react';
|
|
2
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
3
|
-
import { CheckBox } from './CheckBox';
|
|
4
|
-
|
|
5
|
-
const meta: Meta<typeof CheckBox> = {
|
|
6
|
-
title: 'Example/CheckBox',
|
|
7
|
-
component: CheckBox,
|
|
8
|
-
} as Meta;
|
|
9
|
-
export default meta;
|
|
10
|
-
|
|
11
|
-
type Story = StoryObj<typeof CheckBox>;
|
|
12
|
-
|
|
13
|
-
export const SampleCheckBox: Story = {
|
|
14
|
-
render: () => (
|
|
15
|
-
<Fragment>
|
|
16
|
-
<CheckBox checked={true} onChange={() => {}} label="Test" name="Checked CB" />
|
|
17
|
-
<br />
|
|
18
|
-
<br />
|
|
19
|
-
<CheckBox checked={false} onChange={() => {}} label="Test" name="Unchecked CB" />
|
|
20
|
-
</Fragment>
|
|
21
|
-
),
|
|
22
|
-
};
|
|
1
|
+
import { Fragment } from 'react';
|
|
2
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
3
|
+
import { CheckBox } from './CheckBox';
|
|
4
|
+
|
|
5
|
+
const meta: Meta<typeof CheckBox> = {
|
|
6
|
+
title: 'Example/CheckBox',
|
|
7
|
+
component: CheckBox,
|
|
8
|
+
} as Meta;
|
|
9
|
+
export default meta;
|
|
10
|
+
|
|
11
|
+
type Story = StoryObj<typeof CheckBox>;
|
|
12
|
+
|
|
13
|
+
export const SampleCheckBox: Story = {
|
|
14
|
+
render: () => (
|
|
15
|
+
<Fragment>
|
|
16
|
+
<CheckBox checked={true} onChange={() => {}} label="Test" name="Checked CB" />
|
|
17
|
+
<br />
|
|
18
|
+
<br />
|
|
19
|
+
<CheckBox checked={false} onChange={() => {}} label="Test" name="Unchecked CB" />
|
|
20
|
+
</Fragment>
|
|
21
|
+
),
|
|
22
|
+
};
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
import { ChangeEventHandler, FC, Fragment, forwardRef } from "react";
|
|
2
|
-
import { formatError } from "../../utils";
|
|
3
|
-
import "./CheckBox.scss";
|
|
4
|
-
import clsx from "clsx";
|
|
5
|
-
import { bem } from '../../utils/bem';
|
|
6
|
-
|
|
7
|
-
interface ICheckBoxProps {
|
|
8
|
-
label?: string;
|
|
9
|
-
name?: string;
|
|
10
|
-
error?: string;
|
|
11
|
-
validationError?: (name?: string) => string | undefined;
|
|
12
|
-
onChange?: ChangeEventHandler<HTMLInputElement>;
|
|
13
|
-
autoFocus?: boolean;
|
|
14
|
-
className?: string;
|
|
15
|
-
readonly?: boolean;
|
|
16
|
-
checked?: boolean;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
const b = bem("checkbox");
|
|
20
|
-
export const CheckBox : FC<ICheckBoxProps> = forwardRef(({checked, onChange,
|
|
21
|
-
name, className, autoFocus = false, readonly = false, label, error }, ref: any) => {
|
|
22
|
-
|
|
23
|
-
return (<Fragment>
|
|
24
|
-
<label className={clsx(b(), className)}>
|
|
25
|
-
<input
|
|
26
|
-
id={name}
|
|
27
|
-
name={name}
|
|
28
|
-
className={b("input")}
|
|
29
|
-
readOnly={readonly}
|
|
30
|
-
type="checkbox"
|
|
31
|
-
checked={checked}
|
|
32
|
-
onChange={onChange}
|
|
33
|
-
ref={ref}
|
|
34
|
-
autoFocus={autoFocus}
|
|
35
|
-
autoComplete="on"
|
|
36
|
-
/>
|
|
37
|
-
<span className={b("checkmark")}></span>
|
|
38
|
-
{label && <span className={b("label")}>{label}</span>}
|
|
39
|
-
</label>
|
|
40
|
-
{error && <div>{formatError(error, label)}</div>}
|
|
41
|
-
</Fragment>)
|
|
42
|
-
});
|
|
1
|
+
import { ChangeEventHandler, FC, Fragment, forwardRef } from "react";
|
|
2
|
+
import { formatError } from "../../utils";
|
|
3
|
+
import "./CheckBox.scss";
|
|
4
|
+
import clsx from "clsx";
|
|
5
|
+
import { bem } from '../../utils/bem';
|
|
6
|
+
|
|
7
|
+
interface ICheckBoxProps {
|
|
8
|
+
label?: string;
|
|
9
|
+
name?: string;
|
|
10
|
+
error?: string;
|
|
11
|
+
validationError?: (name?: string) => string | undefined;
|
|
12
|
+
onChange?: ChangeEventHandler<HTMLInputElement>;
|
|
13
|
+
autoFocus?: boolean;
|
|
14
|
+
className?: string;
|
|
15
|
+
readonly?: boolean;
|
|
16
|
+
checked?: boolean;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const b = bem("checkbox");
|
|
20
|
+
export const CheckBox : FC<ICheckBoxProps> = forwardRef(({checked, onChange,
|
|
21
|
+
name, className, autoFocus = false, readonly = false, label, error }, ref: any) => {
|
|
22
|
+
|
|
23
|
+
return (<Fragment>
|
|
24
|
+
<label className={clsx(b(), className)}>
|
|
25
|
+
<input
|
|
26
|
+
id={name}
|
|
27
|
+
name={name}
|
|
28
|
+
className={b("input")}
|
|
29
|
+
readOnly={readonly}
|
|
30
|
+
type="checkbox"
|
|
31
|
+
checked={checked}
|
|
32
|
+
onChange={onChange}
|
|
33
|
+
ref={ref}
|
|
34
|
+
autoFocus={autoFocus}
|
|
35
|
+
autoComplete="on"
|
|
36
|
+
/>
|
|
37
|
+
<span className={b("checkmark")}></span>
|
|
38
|
+
{label && <span className={b("label")}>{label}</span>}
|
|
39
|
+
</label>
|
|
40
|
+
{error && <div>{formatError(error, label)}</div>}
|
|
41
|
+
</Fragment>)
|
|
42
|
+
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./CheckBox";
|
|
1
|
+
export * from "./CheckBox";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
.r5ui-dialog-prompt {
|
|
2
|
-
&__body {
|
|
3
|
-
flex-direction: column;
|
|
4
|
-
z-index: 1;
|
|
5
|
-
padding-bottom: 1.5rem;
|
|
6
|
-
}
|
|
1
|
+
.r5ui-dialog-prompt {
|
|
2
|
+
&__body {
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
z-index: 1;
|
|
5
|
+
padding-bottom: 1.5rem;
|
|
6
|
+
}
|
|
7
7
|
}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { DialogPrompt } from './DialogPrompt';
|
|
3
|
-
|
|
4
|
-
const meta: Meta<typeof DialogPrompt> = {
|
|
5
|
-
title: 'Example/DialogPrompt',
|
|
6
|
-
component: DialogPrompt,
|
|
7
|
-
argTypes: {
|
|
8
|
-
backgroundColor: { control: 'color' },
|
|
9
|
-
},
|
|
10
|
-
} as Meta;
|
|
11
|
-
export default meta;
|
|
12
|
-
|
|
13
|
-
type Story = StoryObj<typeof DialogPrompt>;
|
|
14
|
-
|
|
15
|
-
export const TextDialogPrompt: Story = {
|
|
16
|
-
render: () => <DialogPrompt>Test</DialogPrompt>,
|
|
17
|
-
};
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { DialogPrompt } from './DialogPrompt';
|
|
3
|
+
|
|
4
|
+
const meta: Meta<typeof DialogPrompt> = {
|
|
5
|
+
title: 'Example/DialogPrompt',
|
|
6
|
+
component: DialogPrompt,
|
|
7
|
+
argTypes: {
|
|
8
|
+
backgroundColor: { control: 'color' },
|
|
9
|
+
},
|
|
10
|
+
} as Meta;
|
|
11
|
+
export default meta;
|
|
12
|
+
|
|
13
|
+
type Story = StoryObj<typeof DialogPrompt>;
|
|
14
|
+
|
|
15
|
+
export const TextDialogPrompt: Story = {
|
|
16
|
+
render: () => <DialogPrompt>Test</DialogPrompt>,
|
|
17
|
+
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { render, screen, fireEvent } from '@testing-library/react';
|
|
3
|
-
import '@testing-library/jest-dom';
|
|
4
|
-
import { DialogPrompt } from './DialogPrompt';
|
|
5
|
-
|
|
6
|
-
describe('DialogPrompt Component', () => {
|
|
7
|
-
test('renders the button with the correct label', () => {
|
|
8
|
-
render(<DialogPrompt />);
|
|
9
|
-
const div = screen.getByRole('DialogPrompt', { name: /click me/i });
|
|
10
|
-
expect(div).toBeInTheDocument();
|
|
11
|
-
});
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { render, screen, fireEvent } from '@testing-library/react';
|
|
3
|
+
import '@testing-library/jest-dom';
|
|
4
|
+
import { DialogPrompt } from './DialogPrompt';
|
|
5
|
+
|
|
6
|
+
describe('DialogPrompt Component', () => {
|
|
7
|
+
test('renders the button with the correct label', () => {
|
|
8
|
+
render(<DialogPrompt />);
|
|
9
|
+
const div = screen.getByRole('DialogPrompt', { name: /click me/i });
|
|
10
|
+
expect(div).toBeInTheDocument();
|
|
11
|
+
});
|
|
12
12
|
});
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import './DialogPrompt.scss'
|
|
3
|
-
import clsx from 'clsx';
|
|
4
|
-
import { bem } from '../../utils/bem';
|
|
5
|
-
import { Modal } from '../Modal';
|
|
6
|
-
import { FormButtons } from '../FormButtons';
|
|
7
|
-
import { Button } from '../Button';
|
|
8
|
-
import { Typography } from '../Typography';
|
|
9
|
-
|
|
10
|
-
interface DialogPromptProps {
|
|
11
|
-
onOk?: () => void;
|
|
12
|
-
onCancel?: () => void;
|
|
13
|
-
className?: string;
|
|
14
|
-
children?: ReactNode;
|
|
15
|
-
prompt?: string;
|
|
16
|
-
confirmText?: string;
|
|
17
|
-
cancelText?: string;
|
|
18
|
-
variant?: 'small' | 'medium' | 'large';
|
|
19
|
-
}
|
|
20
|
-
const b = bem("dialog-prompt");
|
|
21
|
-
export const DialogPrompt = ({children, variant = "small", onOk, onCancel, className, prompt, confirmText, cancelText}: DialogPromptProps) => {
|
|
22
|
-
|
|
23
|
-
return (
|
|
24
|
-
<Modal variant={variant} className={clsx(b(), className)} onClose={onCancel}>
|
|
25
|
-
<Modal.Header>
|
|
26
|
-
</Modal.Header>
|
|
27
|
-
<Modal.Body className={b("body")}>
|
|
28
|
-
{prompt && <Typography variant='h2' align='center'>{prompt}</Typography>}
|
|
29
|
-
{children}
|
|
30
|
-
</Modal.Body>
|
|
31
|
-
<Modal.Footer>
|
|
32
|
-
<FormButtons>
|
|
33
|
-
<Button type="submit" onClick={onOk}>{confirmText}</Button>
|
|
34
|
-
<Button type="button" variant='secondary' onClick={onCancel}>
|
|
35
|
-
{cancelText}
|
|
36
|
-
</Button>
|
|
37
|
-
</FormButtons>
|
|
38
|
-
</Modal.Footer>
|
|
39
|
-
</Modal>
|
|
40
|
-
)
|
|
41
|
-
}
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import './DialogPrompt.scss'
|
|
3
|
+
import clsx from 'clsx';
|
|
4
|
+
import { bem } from '../../utils/bem';
|
|
5
|
+
import { Modal } from '../Modal';
|
|
6
|
+
import { FormButtons } from '../FormButtons';
|
|
7
|
+
import { Button } from '../Button';
|
|
8
|
+
import { Typography } from '../Typography';
|
|
9
|
+
|
|
10
|
+
interface DialogPromptProps {
|
|
11
|
+
onOk?: () => void;
|
|
12
|
+
onCancel?: () => void;
|
|
13
|
+
className?: string;
|
|
14
|
+
children?: ReactNode;
|
|
15
|
+
prompt?: string;
|
|
16
|
+
confirmText?: string;
|
|
17
|
+
cancelText?: string;
|
|
18
|
+
variant?: 'small' | 'medium' | 'large';
|
|
19
|
+
}
|
|
20
|
+
const b = bem("dialog-prompt");
|
|
21
|
+
export const DialogPrompt = ({children, variant = "small", onOk, onCancel, className, prompt, confirmText, cancelText}: DialogPromptProps) => {
|
|
22
|
+
|
|
23
|
+
return (
|
|
24
|
+
<Modal variant={variant} className={clsx(b(), className)} onClose={onCancel}>
|
|
25
|
+
<Modal.Header>
|
|
26
|
+
</Modal.Header>
|
|
27
|
+
<Modal.Body className={b("body")}>
|
|
28
|
+
{prompt && <Typography variant='h2' align='center'>{prompt}</Typography>}
|
|
29
|
+
{children}
|
|
30
|
+
</Modal.Body>
|
|
31
|
+
<Modal.Footer>
|
|
32
|
+
<FormButtons>
|
|
33
|
+
<Button type="submit" onClick={onOk}>{confirmText}</Button>
|
|
34
|
+
<Button type="button" variant='secondary' onClick={onCancel}>
|
|
35
|
+
{cancelText}
|
|
36
|
+
</Button>
|
|
37
|
+
</FormButtons>
|
|
38
|
+
</Modal.Footer>
|
|
39
|
+
</Modal>
|
|
40
|
+
)
|
|
41
|
+
}
|
|
42
42
|
export default DialogPrompt
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./DialogPrompt";
|
|
1
|
+
export * from "./DialogPrompt";
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
.r5ui-divider {
|
|
2
|
-
padding: .5em;
|
|
3
|
-
text-align: center;
|
|
4
|
-
margin: 20px 0;
|
|
5
|
-
position: relative;
|
|
6
|
-
|
|
7
|
-
&:before {
|
|
8
|
-
content: "";
|
|
9
|
-
display: block;
|
|
10
|
-
border-top: $border_size solid $primary_border_color;
|
|
11
|
-
width: 100%;
|
|
12
|
-
position: absolute;
|
|
13
|
-
top: 50%;
|
|
14
|
-
z-index: 1;
|
|
15
|
-
}
|
|
16
|
-
&__label {
|
|
17
|
-
background-color: $page_bg_color;
|
|
18
|
-
color: $page_text_color;
|
|
19
|
-
padding: 0 10px;
|
|
20
|
-
position: relative;
|
|
21
|
-
z-index: 2;
|
|
22
|
-
}
|
|
1
|
+
.r5ui-divider {
|
|
2
|
+
padding: .5em;
|
|
3
|
+
text-align: center;
|
|
4
|
+
margin: 20px 0;
|
|
5
|
+
position: relative;
|
|
6
|
+
|
|
7
|
+
&:before {
|
|
8
|
+
content: "";
|
|
9
|
+
display: block;
|
|
10
|
+
border-top: $border_size solid $primary_border_color;
|
|
11
|
+
width: 100%;
|
|
12
|
+
position: absolute;
|
|
13
|
+
top: 50%;
|
|
14
|
+
z-index: 1;
|
|
15
|
+
}
|
|
16
|
+
&__label {
|
|
17
|
+
background-color: $page_bg_color;
|
|
18
|
+
color: $page_text_color;
|
|
19
|
+
padding: 0 10px;
|
|
20
|
+
position: relative;
|
|
21
|
+
z-index: 2;
|
|
22
|
+
}
|
|
23
23
|
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import clsx from "clsx";
|
|
2
|
-
import "./Divider.scss";
|
|
3
|
-
import type { ReactNode } from "react";
|
|
4
|
-
import { bem } from '../../utils/bem';
|
|
5
|
-
|
|
6
|
-
export interface IDividerProps {
|
|
7
|
-
className?: string;
|
|
8
|
-
children: ReactNode;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
const b = bem("divider");
|
|
12
|
-
export const Divider = ({children, className}: IDividerProps) => {
|
|
13
|
-
return (<div className={clsx(b(), className)}>
|
|
14
|
-
<span className={b("label")}>
|
|
15
|
-
{children}
|
|
16
|
-
</span>
|
|
17
|
-
</div>)
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export default Divider
|
|
1
|
+
import clsx from "clsx";
|
|
2
|
+
import "./Divider.scss";
|
|
3
|
+
import type { ReactNode } from "react";
|
|
4
|
+
import { bem } from '../../utils/bem';
|
|
5
|
+
|
|
6
|
+
export interface IDividerProps {
|
|
7
|
+
className?: string;
|
|
8
|
+
children: ReactNode;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const b = bem("divider");
|
|
12
|
+
export const Divider = ({children, className}: IDividerProps) => {
|
|
13
|
+
return (<div className={clsx(b(), className)}>
|
|
14
|
+
<span className={b("label")}>
|
|
15
|
+
{children}
|
|
16
|
+
</span>
|
|
17
|
+
</div>)
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default Divider
|
|
@@ -1,71 +1,71 @@
|
|
|
1
|
-
.r5ui-dropdown {
|
|
2
|
-
position: relative;
|
|
3
|
-
display: inline-block;
|
|
4
|
-
|
|
5
|
-
&__button--left {
|
|
6
|
-
margin: 0;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
&__indicator-primary {
|
|
10
|
-
border: solid $primary_text_color;
|
|
11
|
-
}
|
|
12
|
-
&__indicator-secondary {
|
|
13
|
-
border: solid $secondary_text_color;
|
|
14
|
-
}
|
|
15
|
-
&__indicator-link {
|
|
16
|
-
border: solid $secondary_text_color;
|
|
17
|
-
}
|
|
18
|
-
&__indicator {
|
|
19
|
-
margin-left: 1em;
|
|
20
|
-
//border: solid $primary_text_color;
|
|
21
|
-
border-width: 0 2px 2px 0;
|
|
22
|
-
display: inline-block;
|
|
23
|
-
padding: 3px;
|
|
24
|
-
transform: rotate(45deg);
|
|
25
|
-
transition: transform 0.3s ease;
|
|
26
|
-
|
|
27
|
-
&--open {
|
|
28
|
-
transform: rotate(-135deg);
|
|
29
|
-
}
|
|
30
|
-
&--left {
|
|
31
|
-
transform: rotate(-45deg);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
&__list {
|
|
36
|
-
position: absolute;
|
|
37
|
-
background-color: $secondary_bg_color;
|
|
38
|
-
min-width: 160px;
|
|
39
|
-
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
40
|
-
z-index: 1;
|
|
41
|
-
padding: 0;
|
|
42
|
-
margin: 0;
|
|
43
|
-
border-radius: $border_radius;
|
|
44
|
-
list-style-type: none;
|
|
45
|
-
right: 0;
|
|
46
|
-
|
|
47
|
-
&--down {
|
|
48
|
-
top: 100%;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
&--up {
|
|
52
|
-
bottom: 100%;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
&--left {
|
|
56
|
-
right: 100%;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
&__item {
|
|
61
|
-
color: $secondary_text_color;
|
|
62
|
-
padding: 12px 16px;
|
|
63
|
-
text-decoration: none;
|
|
64
|
-
display: block;
|
|
65
|
-
cursor: pointer;
|
|
66
|
-
|
|
67
|
-
&:hover {
|
|
68
|
-
background-color: $secondary_bg_color_highlight;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
1
|
+
.r5ui-dropdown {
|
|
2
|
+
position: relative;
|
|
3
|
+
display: inline-block;
|
|
4
|
+
|
|
5
|
+
&__button--left {
|
|
6
|
+
margin: 0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
&__indicator-primary {
|
|
10
|
+
border: solid $primary_text_color;
|
|
11
|
+
}
|
|
12
|
+
&__indicator-secondary {
|
|
13
|
+
border: solid $secondary_text_color;
|
|
14
|
+
}
|
|
15
|
+
&__indicator-link {
|
|
16
|
+
border: solid $secondary_text_color;
|
|
17
|
+
}
|
|
18
|
+
&__indicator {
|
|
19
|
+
margin-left: 1em;
|
|
20
|
+
//border: solid $primary_text_color;
|
|
21
|
+
border-width: 0 2px 2px 0;
|
|
22
|
+
display: inline-block;
|
|
23
|
+
padding: 3px;
|
|
24
|
+
transform: rotate(45deg);
|
|
25
|
+
transition: transform 0.3s ease;
|
|
26
|
+
|
|
27
|
+
&--open {
|
|
28
|
+
transform: rotate(-135deg);
|
|
29
|
+
}
|
|
30
|
+
&--left {
|
|
31
|
+
transform: rotate(-45deg);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&__list {
|
|
36
|
+
position: absolute;
|
|
37
|
+
background-color: $secondary_bg_color;
|
|
38
|
+
min-width: 160px;
|
|
39
|
+
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
40
|
+
z-index: 1;
|
|
41
|
+
padding: 0;
|
|
42
|
+
margin: 0;
|
|
43
|
+
border-radius: $border_radius;
|
|
44
|
+
list-style-type: none;
|
|
45
|
+
right: 0;
|
|
46
|
+
|
|
47
|
+
&--down {
|
|
48
|
+
top: 100%;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&--up {
|
|
52
|
+
bottom: 100%;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&--left {
|
|
56
|
+
right: 100%;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
&__item {
|
|
61
|
+
color: $secondary_text_color;
|
|
62
|
+
padding: 12px 16px;
|
|
63
|
+
text-decoration: none;
|
|
64
|
+
display: block;
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
|
|
67
|
+
&:hover {
|
|
68
|
+
background-color: $secondary_bg_color_highlight;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
71
|
}
|