-
Notifications
You must be signed in to change notification settings - Fork 315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LeanyLabs #3: Attention box, Alert banner, Toast #355
LeanyLabs #3: Attention box, Alert banner, Toast #355
Conversation
* story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com>
docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button
* story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com>
* fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com>
* stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com>
docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast
There are 4 types of alert banners: primary, negative, positive, and inverted. | ||
<Canvas> | ||
<Story name="Types"> | ||
<div className="monday-storybook-alert-banner_column-wrapper monday-storybook-alert-banner_container"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do you need here 2 classes? monday-storybook-alert-banner_column-wrapper sounds not related to the variants types?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"_column-wrapper" is related to the layout of children inside the container, "_big-container" is responsible for the width of items. We heavily use the different sizes "_big-container" and "_medium-container", and in two places we use containers for AlertBanner, and they have the class "_column-wrapper"
<Canvas> | ||
<Story name="Alert Banner with button"> | ||
<AlertBanner className="monday-storybook-alert-banner_container"> | ||
<AlertBannerText text="ALorem ipsum dolor sit amet" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not needed A (change to "Lorem ipsum dolor sit amet)
src/components/AttentionBox/__stories__/attentionBox.stories.mdx
Outdated
Show resolved
Hide resolved
src/components/AttentionBox/__stories__/attentionBox.stories.mdx
Outdated
Show resolved
Hide resolved
src/components/AttentionBox/__stories__/attentionBox.stories.mdx
Outdated
Show resolved
Hide resolved
<span className="monday-style-attention-box_title">Cross-Account Copier</span> | ||
<span className="monday-style-attention-box_text" >Copy boards and dashboards to another account</span> | ||
<AttentionBox | ||
text={<span className="monday-style-attention-box_inline-wrapper"><Icon icon={Info} iconSize="18" />First, move the content you want to copy into folder. Only main boards and dashboards can be copied.<Link href="#" size={Link.sizes.SMALL} withoutSpacing>Learn more.</Link></span>} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The attention box text should contain only string type text (not an element).
For inline appearance please use attention box compact prop.
If the reason for the span wrapper is a difference between the design of attention box in figma and the default attention box appearance, please talk with me about it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for inline appearance please use the compact prop
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also modify the icon of the attention box by using the icon and iconType props.If it's does not look the same as in the design please talk with me :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without 'span' with class inside it does not look like in design, the 'icon' is not center.
src/components/AttentionBox/__stories__/attentionBox.stories.mdx
Outdated
Show resolved
Hide resolved
src/components/AttentionBox/__stories__/attentionBox.stories.mdx
Outdated
Show resolved
Hide resolved
src/components/AttentionBox/__stories__/attentionBox.stories.mdx
Outdated
Show resolved
Hide resolved
src/components/AttentionBox/__stories__/attentionBox.stories.mdx
Outdated
Show resolved
Hide resolved
src/components/AttentionBox/__tests__/attentionBox-snapshot-tests.jest.js
Show resolved
Hide resolved
src/components/AttentionBox/__tests__/attentionBox-tests.jest.js
Outdated
Show resolved
Hide resolved
src/components/AttentionBox/__tests__/attentionBox-tests.jest.js
Outdated
Show resolved
Hide resolved
### Default with button | ||
<Canvas> | ||
<Story name="Default with button"> | ||
<Toast open className="monday-storybook-toast_wrapper" actions={[{ type: Toast.actionTypes.BUTTON, content: "Button" }]}>General message toast</Toast> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please create the action array by using useMemo.
for doing this you will need to write the child of the story as anonymous function. you can see a reference for similar implementation in the button story mdx under the story: "success state."
src/storybook/components/related-components/descriptions/alert-banner-description.jsx
Outdated
Show resolved
Hide resolved
src/storybook/components/related-components/descriptions/attention-box-description.jsx
Outdated
Show resolved
Hide resolved
src/storybook/components/related-components/descriptions/toast-description.jsx
Outdated
Show resolved
Hide resolved
* fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com>
* stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com>
const toggleToast = () => setToastOpen(toastOpen => !toastOpen); | ||
return ( | ||
<> | ||
<Button onClick={() => toggleToast()}>Default with button</Button> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure we want to display the toast with button or like before without button. let's talk about it in our meeting.
* first template for first story with the new format (button) * wip * wip: component rules * feat: storybook helper new component (component rule) * chore: new storybook components: header & component rules & usage guideline * chore: new storybook components: related-components & usage guideline * chore: new storybook tips support title, changes in button storybook page * chore: update desgin review notes, add anchor list item design chane * chore: add icons loading success and on color button stories * add support on general footer * i hate webpack.... * add stories * fix table of contents * support component descriptions and start working on components stories * add component story * add story controls * check * storybook stories wrapper and anchor list item margin fix * chore: paragraph component and stories style margin fix * chore: undo paragraph change * change tabs order * change tabs order * chore: change names of storybook helpers title for more declerative names * chore: readme files for component name, section name and tip * chore: readme files for related components, usage guidelines, tip and anchor * chore: readme for title and related component * update plop according to new story changes * update plop according to new story changes * update tests readme & tests plop * fix bug on plop * fix readme * naming fixs * plop: fix mock examples * sos * support mdx file structure * fix imports in storybook components * support display all stories inside the mdx file * update from master * remove component name attention box dependency * fix table of contents * fix table of contents * update new component plop * update new component plop * update new component plop * create plops for tests and stories for exist component * fix according to code review notes for component rules * undo not needed changes * remove not needed file * add links support to stories (#334) * add links support to stories * undo not needed changes * Leany labs/storybook 1 (#1) (#329) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests Co-authored-by: Kandio16 <kandio1604@gmail.com> * Chromatic (storybook 6.4) (#326) * feat: chromatic * feat: temp * feat: small fixes * wip: Buttun Sizes * hooks: story * i hate this * hooks stories and adjustments * PR comments * small adjustments * feat: Icon Button Stories * test: something * tests! * lint: fix * lint: fix #2 * feat: 6.4 version * fix spacing in links (#338) * Storybook/hadas/welcome (#337) * start working on welcome page * wip * wip * welcome page * pictuers fix * pictuers fix & banner fix * fix * fix * fix * fix * fix * add contributors list with githubs * add contributors list with github links to welcome page * fix linter ! * update from master * Fix fonts and spacing according to rotem notes (#343) * fix fonts and spacing according to rotem notes * fix style error * fix style error * fix: AlertBanner in MDX * LeanyLabs: storybooks & tests (Label, Checkbox, Radio button) (#342) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link Co-authored-by: Kandio16 <kandio1604@gmail.com> * LeanyLabs #3: Attention box, Alert banner, Toast (#355) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/fix-demo-comments * refactor: remove line before closing bracket Co-authored-by: Kandio16 <kandio1604@gmail.com> * use callback fix * merge with master * feat: fix chromatic deploy * Storybook/hadasfa/design fix (#362) * design fix: font weight * design fix: related components cells width * try fix errors with eslint and storybook jest * try fix errors with eslint and storybook jest * fix usage guidelines multiline support * fix usage guidelines multiline support * LeanyLabs/storybook#4 (#359) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/init * stories/add-btn-group-scss * sotries/counter-add-styles * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * stories/btn-group-add-links * stories/counter-styles * stories/litle-fix * stories/add-RC * stories/add-icon * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * stories/add-counter-tests * stories/split-button-tests * stories/buttonGroup-tests-init * stories/add-tests * fix: split button * fix: split button call * stories/split-btn * stories/fix * ffix * stories/split-button-styles * stories/add-counter-animation * stories/split-btn-padding * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: add lines * stories/fix-demo-comments * refactor: remove line before closing bracket * stories/fix-comments * stories/split-button-fix * fix: styling; chips; toast * stories-change-value Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix counter * fix typ * Leany labs/storybook 5 (#372) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * stories/init * styles * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/init * stories/add-args * stories/tooltip-init * stories/fix-demo-comments * refactor: remove line before closing bracket * remove * stories/link-init * stories/search-init * stories/text-field-init * stories/link-rc * stories/add-link-tests * stories/search-tests-init * stories/test-init * stories/add-text-field-snapshot-tests * stories/input-tests * stories/add-RC * stories/links * stories/delete-fiels * stories/fix * tests-fix * add-test-aria-label * fix-combobox-RC * fix-link * stories/fix-styles * fix: some styling * fix: styling * fix: remove stale text in variants for Links * fix: placeholders * mend * Leany labs/storybook 5a (#11) * stories/fix-comments * stories/minor-fix Co-authored-by: Kandio16 <kandio1604@gmail.com> Co-authored-by: Kandio16 <kandio1604@gmail.com> * Test/orr/migrate karma to jest (#379) * feat: move to jest * Butotn tests * Link Tests * Link Tests * test: FormattedNumber * test: Loader * test: small changes * ifnra: update test * remove: karma sinon and mocha * remove: karma sinon and mocha * test: update coverage * fix: testing * fix: testing * fix: lint * fix: lint and stylelint * fix: storyshoots tests * uupdate node-sass * remove errors * fix accordion item type check * Storybook/hadas/typography (#383) * add typography story * remove old typography story * fix frame border * fix code review notes * expose colors-utils (#385) * expose colors-utils * pr fix * undo delete accordion type check Co-authored-by: Ofer Shapira <ofersh@monday.com> * Storybook/hadas/menu reorder (#393) * change menu order 1 * change menu order 2 * change menu order 3 * change names after talking with evigeny * Leany labs/storybook 6 (#380) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/fix-demo-comments * refactor: remove line before closing bracket * stories/steps-init * stories/tipseen-init * steps/tests-init * stories/tooltip-init * stories/tipseen-styles-init * stories/styles-tooltip * stories/tooltip-tests-init * stories/steps-clear * stories/steps-fix * stories/tipseen-styles * stories/tooltip * stories/tooltip-styles * RC-Links * fix-steps * fix-styles-steps * tipseen-snapshot-tests * fix-after-chromatic-review * remove-class * tipseen-clear * fix * tooltip-tests * fix: rename files * fix: line gaps * fix-coments * fix-comments * tipseen-fix-children Co-authored-by: Kandio16 <kandio1604@gmail.com> * Change new stories positions and rename variables in the steps stories page * fix tests of tooltip * remove accordion type check * add class name support * Storybook/hadas/spacing page (#392) * spacing page wip * spacing story - add spacing sizes component * spacing story - remove old spacing story * add temp assets until receiving good assets * fix spacing assets * fix spacing assets * fix spacing in spacing component * code review notes * Storybook/hadas/shadow (#394) * add shadow story * change names after talking with evigeny * add assets and shadow example design * add use cases examples for shadow * remove not needed import * not real * add asset to shadow example (card) * code review notes * Feat/orr/stories rest (#395) * ColorPicker * Clickable * DialogContentContainer.jsx * Editable Header * Loader * PR: review * Change SASS loader package (#398) * css import issues * fix some importing issue * node 12 * fix: double style elements * fix build * fix tests * Storybook/hadas/colors function page (#397) * add basic implementation of the colors page * add content colors and typography-description * colors foundation assets * fix hover error * add dependency array * Leany labs/storybook 7 (#396) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/fix-demo-comments * refactor: remove line before closing bracket * accordian-init * tab-init * tabs-init * test-version * remove-border * fix * fix-tab * tabs-fix * tabs-fix-bg-color * accordion-styles * prog-bar-init * progressBar-styles * accordion-fix * accordion-remove * accardion-rc * proggressBar-RC * refactoring * rename-tabs * tabs-RC * accordion-tests-init * progressBar-styles * fix-to-uppercase * tabs-snapshot * progressBar-snapshot-tests * progressBar-tests * fix-coments * add-RC * fix-rc * accordion-styles * fix: tabs overview * accordin-tests * tab-tests * tabList-tests * tabPanel-tests * tabPanels-tests * tabsContext-tests * tabs-column-styles * fix-coments * fix: some text * fix: empty lines * fix-coments * fix: identations * fix: identations Co-authored-by: Kandio16 <kandio1604@gmail.com> * Storybook/hadas/template (#399) * update template according to new branding part 1 * template update according to new brand * code review fix * design review changes * change menu order for new components * WIP: Coming soon & fix tests errors (css and js) (#400) * coming soon foundation pages * fix imports * fix tests * fix css and js tests error * fix css and js tests error * fix css and js tests error * fix css and js tests error * fix css and js tests error * fix css and js tests error * fix css and js tests error * Storybook/hadas/controls infra (#402) * fix some prop types and start of controls infra implementation * undo * clean up and some styles * fix style * LeanyLabs/storybook 8 (#403) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/fix-demo-comments * refactor: remove line before closing bracket * skeleton-init * breadcrumbs-styles * wizard-init * remove-RC * wizard-styles * add-RC * skeleton-useCase * skeleton-tests-clear * wizard-tests-init * fix * fix-href * fix-href * wizard-tests * breadcrumbs-tests * fix-href * fix-coments * fix: minor changes * fix: minor * fix: replace formating * fix: replace formating * fix Co-authored-by: Kandio16 <kandio1604@gmail.com> * Add `useAfterFirstRender` story (#406) * menu & shadow description and more (#405) * wip * wip * wip * Fix typos and add related components * code review notes * fix snapshot tests * design review notes * WIP: divider, list and more (#409) * divider and popover links and list stories fixes * last fixes in list * text with high lights * add nick to contributors, and fix colors page * fix controls * fix * Add `useDebounceEvent` stories (#410) * Heading and spacing description (#408) * wip heading component * heading story * wip * wip * heading component * create description for the spacing * spacing description and fix controls * spacing description and fix controls * spacing description and fix controls * Move existing hooks stories next to them (#407) * Storybook/hadas/final tweeks (#411) * fix errors * fix errors * fix import ordr * Stories/orr/icons responsivelist virtualized list (#412) * icon * ResponsiveList * ResponsiveList * VirtualizedList * Menu Button * Menu Button * MenuButton and Virtualized * remove * navigtion fix * small fix * fix some stuff * lint * Add `useKeyEvent` story (#413) Co-authored-by: Orr Gottlieb <orr@monday.com> Co-authored-by: Ivan Harasymchuk <ivan7790@gmail.com> Co-authored-by: Kandio16 <kandio1604@gmail.com> Co-authored-by: Orr Gottlieb <60314759+orrgottlieb@users.noreply.github.com> Co-authored-by: Ofer Shapira <ofersh@monday.com> Co-authored-by: Sahar Brodbeker <saharonb@gmail.com>
* first template for first story with the new format (button) * wip * wip: component rules * feat: storybook helper new component (component rule) * chore: new storybook components: header & component rules & usage guideline * chore: new storybook components: related-components & usage guideline * chore: new storybook tips support title, changes in button storybook page * chore: update desgin review notes, add anchor list item design chane * chore: add icons loading success and on color button stories * add support on general footer * i hate webpack.... * add stories * fix table of contents * support component descriptions and start working on components stories * add component story * add story controls * check * storybook stories wrapper and anchor list item margin fix * chore: paragraph component and stories style margin fix * chore: undo paragraph change * change tabs order * change tabs order * chore: change names of storybook helpers title for more declerative names * chore: readme files for component name, section name and tip * chore: readme files for related components, usage guidelines, tip and anchor * chore: readme for title and related component * update plop according to new story changes * update plop according to new story changes * update tests readme & tests plop * fix bug on plop * fix readme * naming fixs * plop: fix mock examples * sos * support mdx file structure * fix imports in storybook components * support display all stories inside the mdx file * update from master * remove component name attention box dependency * fix table of contents * fix table of contents * update new component plop * update new component plop * update new component plop * create plops for tests and stories for exist component * fix according to code review notes for component rules * undo not needed changes * remove not needed file * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * add links support to stories (#334) * add links support to stories * undo not needed changes * Leany labs/storybook 1 (#1) (#329) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests Co-authored-by: Kandio16 <kandio1604@gmail.com> * Chromatic (storybook 6.4) (#326) * feat: chromatic * feat: temp * feat: small fixes * wip: Buttun Sizes * hooks: story * i hate this * hooks stories and adjustments * PR comments * small adjustments * feat: Icon Button Stories * test: something * tests! * lint: fix * lint: fix #2 * feat: 6.4 version * fix spacing in links (#338) * Storybook/hadas/welcome (#337) * start working on welcome page * wip * wip * welcome page * pictuers fix * pictuers fix & banner fix * fix * fix * fix * fix * fix * add contributors list with githubs * add contributors list with github links to welcome page * fix linter ! * update from master * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Fix fonts and spacing according to rotem notes (#343) * fix fonts and spacing according to rotem notes * fix style error * fix style error * fix: AlertBanner in MDX * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * LeanyLabs: storybooks & tests (Label, Checkbox, Radio button) (#342) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/fix-demo-comments * refactor: remove line before closing bracket * LeanyLabs #3: Attention box, Alert banner, Toast (#355) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/fix-demo-comments * refactor: remove line before closing bracket Co-authored-by: Kandio16 <kandio1604@gmail.com> * use callback fix * merge with master * feat: fix chromatic deploy * Storybook/hadasfa/design fix (#362) * design fix: font weight * design fix: related components cells width * try fix errors with eslint and storybook jest * try fix errors with eslint and storybook jest * fix usage guidelines multiline support * fix usage guidelines multiline support * LeanyLabs/storybook#4 (#359) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/init * stories/add-btn-group-scss * sotries/counter-add-styles * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * stories/btn-group-add-links * stories/counter-styles * stories/litle-fix * stories/add-RC * stories/add-icon * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * stories/add-counter-tests * stories/split-button-tests * stories/buttonGroup-tests-init * stories/add-tests * fix: split button * fix: split button call * stories/split-btn * stories/fix * ffix * stories/split-button-styles * stories/add-counter-animation * stories/split-btn-padding * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: add lines * stories/fix-demo-comments * refactor: remove line before closing bracket * stories/fix-comments * stories/split-button-fix * fix: styling; chips; toast * stories-change-value Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix counter * fix typ * Leany labs/storybook 5 (#372) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * stories/init * styles * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/init * stories/add-args * stories/tooltip-init * stories/fix-demo-comments * refactor: remove line before closing bracket * remove * stories/link-init * stories/search-init * stories/text-field-init * stories/link-rc * stories/add-link-tests * stories/search-tests-init * stories/test-init * stories/add-text-field-snapshot-tests * stories/input-tests * stories/add-RC * stories/links * stories/delete-fiels * stories/fix * tests-fix * add-test-aria-label * fix-combobox-RC * fix-link * stories/fix-styles * fix: some styling * fix: styling * fix: remove stale text in variants for Links * fix: placeholders * mend * Leany labs/storybook 5a (#11) * stories/fix-comments * stories/minor-fix Co-authored-by: Kandio16 <kandio1604@gmail.com> Co-authored-by: Kandio16 <kandio1604@gmail.com> * Test/orr/migrate karma to jest (#379) * feat: move to jest * Butotn tests * Link Tests * Link Tests * test: FormattedNumber * test: Loader * test: small changes * ifnra: update test * remove: karma sinon and mocha * remove: karma sinon and mocha * test: update coverage * fix: testing * fix: testing * fix: lint * fix: lint and stylelint * fix: storyshoots tests * uupdate node-sass * remove errors * fix accordion item type check * Storybook/hadas/typography (#383) * add typography story * remove old typography story * fix frame border * fix code review notes * expose colors-utils (#385) * expose colors-utils * pr fix * undo delete accordion type check Co-authored-by: Ofer Shapira <ofersh@monday.com> * Storybook/hadas/menu reorder (#393) * change menu order 1 * change menu order 2 * change menu order 3 * change names after talking with evigeny * Leany labs/storybook 6 (#380) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/fix-demo-comments * refactor: remove line before closing bracket * stories/steps-init * stories/tipseen-init * steps/tests-init * stories/tooltip-init * stories/tipseen-styles-init * stories/styles-tooltip * stories/tooltip-tests-init * stories/steps-clear * stories/steps-fix * stories/tipseen-styles * stories/tooltip * stories/tooltip-styles * RC-Links * fix-steps * fix-styles-steps * tipseen-snapshot-tests * fix-after-chromatic-review * remove-class * tipseen-clear * fix * tooltip-tests * fix: rename files * fix: line gaps * fix-coments * fix-comments * tipseen-fix-children Co-authored-by: Kandio16 <kandio1604@gmail.com> * Change new stories positions and rename variables in the steps stories page * fix tests of tooltip * remove accordion type check * add class name support * Storybook/hadas/spacing page (#392) * spacing page wip * spacing story - add spacing sizes component * spacing story - remove old spacing story * add temp assets until receiving good assets * fix spacing assets * fix spacing assets * fix spacing in spacing component * code review notes * Storybook/hadas/shadow (#394) * add shadow story * change names after talking with evigeny * add assets and shadow example design * add use cases examples for shadow * remove not needed import * not real * add asset to shadow example (card) * code review notes * Feat/orr/stories rest (#395) * ColorPicker * Clickable * DialogContentContainer.jsx * Editable Header * Loader * PR: review * Change SASS loader package (#398) * css import issues * fix some importing issue * node 12 * fix: double style elements * fix build * fix tests * Storybook/hadas/colors function page (#397) * add basic implementation of the colors page * add content colors and typography-description * colors foundation assets * fix hover error * add dependency array * Leany labs/storybook 7 (#396) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 <kandio1604@gmail.com> * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 <kandio1604@gmail.com> * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 <kandio1604@gmail.com> * stories/fix-demo-comments * refactor: remove line before closing bracket * accordian-init * tab-init * tabs-init * test-version * remove-border * fix * fix-tab * tabs-fix * tabs-fix-bg-color * accordion-styles * prog-bar-init * progressBar-styles * accordion-fix * accordion-remove * accardion-rc * proggressBar-RC * refactoring * rename-tabs * tabs-RC * accordion-tests-init * progressBar-styles * fix-to-uppercase * tabs-snapshot * progressBar-snapshot-tests * progressBar-tests * fix-coments * add-RC * fix-rc * accordion-styles * fix: tabs overview * accordin-tests * tab-tests * tabList-tests * tabPanel-tests * tabPanels-tests * tabsContext-tests * tabs-column-styles * fix-coments * fix: some text * fix: empty lines * fix-coments * fix: identations * fix: identations Co-authored-by: Kandio16 <kandio1604@gmail.com> * Storybook/hadas/template (#399) * update template according to new branding part 1 * template update according to new brand * code review fix * design review changes * change menu order for new components * WIP: Coming soon & fix tests errors (css and js) (#400) * coming soon foundation pages * fix imports * fix tests * fix css and js tests error * fix css and js tests error * fix css and js tests error * fix css and js tests error * fix css and js tests error * fix css and js tests error * fix css and js tests error * Storybook/hadas/controls infra (#402) * fix some prop types and start of controls infra implementation * undo * dropdown-init * combobox-init * styles * tests-init * styles * combobox-snap * small-fix * tests * fix-comments * fix: small adjacments * dropdown-tests * add-line * remove Co-authored-by: Hadas Farhi <hadasfa@monday.com> Co-authored-by: Orr Gottlieb <orr@monday.com> Co-authored-by: Kandio16 <kandio1604@gmail.com> Co-authored-by: Orr Gottlieb <60314759+orrgottlieb@users.noreply.github.com> Co-authored-by: Ofer Shapira <ofersh@monday.com>
docs: create new storybooks for Attention box, Alert banner, Toast
tests: change style and expand tests for Attention box, Alert banner, Toast