├── .babelrc.json ├── .github └── workflows │ ├── chromatic.yml │ ├── npm-publish.yml │ ├── prerelease.yml │ ├── publish-storybook.yml │ └── test.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .storybook ├── logo.png ├── main.ts ├── manager-head.html ├── manager.js ├── preview-head.html ├── preview.scss ├── preview.tsx └── theme.js ├── .stylelintrc.json ├── CHANGELOG.md ├── ICON_REQUEST.md ├── LICENSE ├── README.md ├── package.json ├── plop └── icon │ ├── icon-metadata.txt │ └── index.js ├── plopfile.js ├── scripts ├── __tests__ │ ├── __snapshots__ │ │ └── validate-icons-colors.jest.js.snap │ └── validate-icons-colors.jest.js ├── autobump_major.js ├── autobump_minor.js ├── autobump_patch.js ├── bump-version.js ├── changelog.js ├── copy-public-folder.sh ├── generate-meta.js ├── githooks │ ├── install.sh │ └── pre-push.sh ├── icons │ ├── utils.js │ └── validate-icons-colors.js ├── metadata-util.js ├── prerelease.js └── validate-meta.js ├── src ├── Icons │ ├── API.svg │ ├── Academy.svg │ ├── Activity.svg │ ├── Add.svg │ ├── AddNewDoc.svg │ ├── AddSmall.svg │ ├── AddToTeam.svg │ ├── AddUpdate.svg │ ├── Alert.svg │ ├── Announcement.svg │ ├── Apps.svg │ ├── Archive.svg │ ├── Attach.svg │ ├── Basic.svg │ ├── Battery.svg │ ├── BlockQuote.svg │ ├── Board.svg │ ├── BoardPrivate.svg │ ├── BoardShareable.svg │ ├── BoardTemplate.svg │ ├── Bold.svg │ ├── Bolt.svg │ ├── Bookmark.svg │ ├── Broadcast.svg │ ├── Broom.svg │ ├── Bug.svg │ ├── Bullet.svg │ ├── Bullets.svg │ ├── Bulllet.svg │ ├── Calendar.svg │ ├── Chart.svg │ ├── Check.svg │ ├── CheckList.svg │ ├── Checkbox.svg │ ├── Clear.svg │ ├── Close.svg │ ├── CloseRound.svg │ ├── CloseSmall.svg │ ├── Code.svg │ ├── Collapse.svg │ ├── CollapseRound.svg │ ├── Column.svg │ ├── Comment.svg │ ├── Completed.svg │ ├── Connect.svg │ ├── ConnectedDoc.svg │ ├── ContentDirectory.svg │ ├── ConvertToItem.svg │ ├── ConvertToSubitem.svg │ ├── Counter.svg │ ├── Country.svg │ ├── CreditCard.svg │ ├── Custom.svg │ ├── Cut.svg │ ├── Dashboard.svg │ ├── DashboardPrivate.svg │ ├── Deactivate.svg │ ├── Delete.svg │ ├── Dependency.svg │ ├── Description.svg │ ├── DisabledUser.svg │ ├── Divider.svg │ ├── Doc.svg │ ├── DocPrivate.svg │ ├── DocShareable.svg │ ├── DocTemplate.svg │ ├── DoubleCheck.svg │ ├── Download.svg │ ├── Drag.svg │ ├── Dropdown.svg │ ├── DropdownChevronDown.svg │ ├── DropdownChevronLeft.svg │ ├── DropdownChevronRight.svg │ ├── DropdownChevronUp.svg │ ├── DueDate.svg │ ├── Duplicate.svg │ ├── Edit.svg │ ├── Education.svg │ ├── Email.svg │ ├── Embed.svg │ ├── Emoji.svg │ ├── Enter.svg │ ├── Erase.svg │ ├── Event.svg │ ├── Expand.svg │ ├── ExternalPage.svg │ ├── Favorite.svg │ ├── Featured.svg │ ├── Feedback.svg │ ├── File.svg │ ├── Filter.svg │ ├── Folder.svg │ ├── Form.svg │ ├── Formula.svg │ ├── Forum.svg │ ├── Fullscreen.svg │ ├── FullscreenClose.svg │ ├── Gallery.svg │ ├── Gantt.svg │ ├── Gif.svg │ ├── Globe.svg │ ├── Graph.svg │ ├── Group.svg │ ├── Guest.svg │ ├── Health.svg │ ├── Help.svg │ ├── Hide.svg │ ├── Highlight.svg │ ├── HighlightColorBucket.svg │ ├── Home.svg │ ├── IPRestrictions.svg │ ├── Idea.svg │ ├── Image.svg │ ├── Inbox.svg │ ├── Info.svg │ ├── Integrations.svg │ ├── Invite.svg │ ├── Italic.svg │ ├── Item.svg │ ├── ItemDefaultValues.svg │ ├── ItemHeightTriple.svg │ ├── Keyboard.svg │ ├── Labs.svg │ ├── Launch.svg │ ├── Layout.svg │ ├── LearnMore.svg │ ├── Lines.svg │ ├── Link.svg │ ├── Location.svg │ ├── Locked.svg │ ├── LogIn.svg │ ├── LogOut.svg │ ├── LongText.svg │ ├── Mention.svg │ ├── Menu.svg │ ├── Microphone.svg │ ├── Minimize.svg │ ├── Mirror.svg │ ├── Mobile.svg │ ├── MondayDoc.svg │ ├── MondayLogoOutline.svg │ ├── Moon.svg │ ├── MoreActions.svg │ ├── MoreBelow.svg │ ├── MoreBelowFilled.svg │ ├── MoveArrowDown.svg │ ├── MoveArrowLeft.svg │ ├── MoveArrowLeftDouble.svg │ ├── MoveArrowRight.svg │ ├── MoveArrowUp.svg │ ├── Mute.svg │ ├── MyWeek.svg │ ├── NavigationChevronDown.svg │ ├── NavigationChevronLeft.svg │ ├── NavigationChevronRight.svg │ ├── NavigationChevronUp.svg │ ├── NavigationDoubleChevronLeft.svg │ ├── NewTab.svg │ ├── Night.svg │ ├── NoColor.svg │ ├── Note.svg │ ├── Notifications.svg │ ├── NotificationsMuted.svg │ ├── Numbers.svg │ ├── Offline.svg │ ├── Open.svg │ ├── Page.svg │ ├── Paste.svg │ ├── Pause.svg │ ├── Person.svg │ ├── PersonRound.svg │ ├── Pin.svg │ ├── Placeholder.svg │ ├── Play.svg │ ├── Print.svg │ ├── PushNotification.svg │ ├── Quote.svg │ ├── Radio.svg │ ├── Recurring.svg │ ├── RecycleBin.svg │ ├── Redo.svg │ ├── Remove.svg │ ├── Replay.svg │ ├── Retry.svg │ ├── Robot.svg │ ├── Rotate.svg │ ├── Search.svg │ ├── Security.svg │ ├── Send.svg │ ├── Settings.svg │ ├── SettingsKnobs.svg │ ├── Share.svg │ ├── ShortText.svg │ ├── Show.svg │ ├── Shredder.svg │ ├── Sort.svg │ ├── SortAscending.svg │ ├── SortDescending.svg │ ├── Sound.svg │ ├── Status.svg │ ├── StrikethroughS.svg │ ├── StrikethroughT.svg │ ├── Subitems.svg │ ├── Sun.svg │ ├── Switch.svg │ ├── Switcher.svg │ ├── Table.svg │ ├── Tags.svg │ ├── Team.svg │ ├── Text.svg │ ├── TextBig.svg │ ├── TextColorIndicator.svg │ ├── TextCopy.svg │ ├── TextHuge.svg │ ├── TextMedium.svg │ ├── TextSmall.svg │ ├── Textcolor.svg │ ├── ThumbsUp.svg │ ├── Time.svg │ ├── Timeline.svg │ ├── Translation.svg │ ├── TurnInto.svg │ ├── Underline.svg │ ├── Undo.svg │ ├── Unlocked.svg │ ├── Update.svg │ ├── Upgrade.svg │ ├── Upload.svg │ ├── UserDomain.svg │ ├── UserStatus.svg │ ├── Versioning.svg │ ├── Video.svg │ ├── Wand.svg │ ├── Warning.svg │ ├── WhatsNew.svg │ ├── Widgets.svg │ ├── Work.svg │ ├── Workflow.svg │ ├── Workspace.svg │ └── iconsMetaData.js ├── Themes │ ├── _basic-theme.scss │ ├── _black-theme.scss │ ├── _dark-theme.scss │ ├── _hacker-theme.scss │ ├── basic │ │ ├── _basic-theme-legacy-settings.scss │ │ ├── _basic-theme-settings.scss │ │ └── _content-colors.scss │ ├── black │ │ ├── _black-theme-content-colors.scss │ │ ├── _black-theme-legacy-settings.scss │ │ └── _black-theme-settings.scss │ ├── dark │ │ ├── _dark-theme-content-colors.scss │ │ ├── _dark-theme-legacy-settings.scss │ │ └── _dark-theme-settings.scss │ └── hacker │ │ ├── _hacker-theme-content-colors.scss │ │ ├── _hacker-theme-legacy-settings.scss │ │ └── _hacker-theme-settings.scss ├── _common.scss ├── _config.scss ├── _core.scss ├── _functions.scss ├── _internal-mixins.scss ├── _mixins.scss ├── _themes.scss ├── config │ ├── maps │ │ ├── _config-basic-theme-maps.scss │ │ ├── _config-black-theme-maps.scss │ │ ├── _config-core-maps.scss │ │ ├── _config-dark-theme-maps.scss │ │ ├── _config-hacker-theme-maps.scss │ │ ├── core │ │ │ ├── _core-borders.scss │ │ │ ├── _core-common-map.scss │ │ │ ├── _core-fonts-map-deprecated.scss │ │ │ ├── _core-motion-map.scss │ │ │ ├── _core-radius-map.scss │ │ │ ├── _core-shadows-map.scss │ │ │ ├── _core-spacing-map.scss │ │ │ ├── _core-typography-map-deprecated.scss │ │ │ └── _core-typography-map.scss │ │ └── themes │ │ │ ├── basic │ │ │ ├── keys │ │ │ │ ├── _keys.scss │ │ │ │ └── legacy │ │ │ │ │ └── _legacy-keys.scss │ │ │ └── palette │ │ │ │ ├── _palette.scss │ │ │ │ └── legacy │ │ │ │ └── _legacy-pallete.scss │ │ │ ├── black │ │ │ └── keys │ │ │ │ ├── _black-theme-keys.scss │ │ │ │ └── legacy │ │ │ │ └── _black-theme-legacy-keys.scss │ │ │ ├── dark │ │ │ └── keys │ │ │ │ ├── _dark-theme-keys.scss │ │ │ │ └── legacy │ │ │ │ └── _dark-theme-legacy-keys.scss │ │ │ └── hacker │ │ │ ├── keys │ │ │ ├── _hacker-theme-keys.scss │ │ │ └── legacy │ │ │ │ └── _hacker-theme-legacy-keys.scss │ │ │ └── palette │ │ │ └── legacy │ │ │ └── _hacker-theme-legacy-palette.scss │ └── tokens │ │ ├── _config-basic-theme-tokens.scss │ │ ├── _config-black-theme-tokens.scss │ │ ├── _config-core-tokens.scss │ │ ├── _config-dark-theme-tokens.scss │ │ ├── _config-hacker-theme-tokens.scss │ │ ├── core │ │ ├── _core-border.scss │ │ ├── _core-common.scss │ │ ├── _core-fonts-deprecated.scss │ │ ├── _core-motion.scss │ │ ├── _core-opacity.scss │ │ ├── _core-radius.scss │ │ ├── _core-shadows.scss │ │ ├── _core-spacing.scss │ │ ├── _core-typography-deprecated.scss │ │ └── _core-typography.scss │ │ └── themes │ │ ├── basic │ │ ├── keys │ │ │ ├── _keys.scss │ │ │ └── legacy │ │ │ │ └── _legacy-keys.scss │ │ └── palette │ │ │ ├── _palette.scss │ │ │ └── legacy │ │ │ └── _legacy-pallete.scss │ │ ├── black │ │ ├── keys │ │ │ ├── _black-theme-keys.scss │ │ │ └── legacy │ │ │ │ └── _black-theme-legacy-keys.scss │ │ └── palette │ │ │ └── _black-theme-palette.scss │ │ ├── dark │ │ ├── keys │ │ │ ├── _dark-theme-keys.scss │ │ │ └── legacy │ │ │ │ └── _dark-theme-legacy-keys.scss │ │ └── palette │ │ │ └── _dark-theme-palette.scss │ │ └── hacker │ │ ├── keys │ │ ├── _hacker-theme-keys.scss │ │ └── legacy │ │ │ └── hacker-theme-legacy-keys.scss │ │ └── palette │ │ ├── _hacker-theme-palette.scss │ │ └── legacy │ │ └── _hacker-theme-legacy-palette.scss ├── core │ └── _core-settings.scss ├── files │ └── colors.json ├── functions │ ├── _camelize.scss │ ├── _capitalize.scss │ ├── _contain.scss │ ├── _extract-rgb.scss │ └── _map-collect.scss ├── index.scss ├── internal-mixins │ ├── _generate-custom-properties.scss │ └── _utilities.scss ├── loaders │ └── monday.svg ├── mixins │ ├── _common.scss │ ├── _states.scss │ └── _typography.scss └── utilities │ └── _utilities-maps.scss ├── storybook ├── components │ ├── component-name │ │ ├── README.md │ │ ├── assets │ │ │ ├── component-background.png │ │ │ └── foundation-background.png │ │ ├── component-name-decorator.jsx │ │ └── component-name-decorator.scss │ ├── index.js │ └── related-components │ │ ├── README.md │ │ ├── component-description-map.js │ │ ├── descriptions │ │ ├── colors-description │ │ │ ├── colors-description.jsx │ │ │ └── colors-description.scss │ │ └── spacing-description │ │ │ ├── spacing-description.jsx │ │ │ └── spacing-description.module.scss │ │ └── related-components-decorator.jsx └── stand-alone-documentation │ ├── changelog │ └── Changelog.stories.mdx │ ├── colors │ ├── assets │ │ ├── cardColorsExample.png │ │ ├── index.js │ │ └── menuColorsExample.png │ ├── background-colors │ │ └── background-colors.jsx │ ├── border-colors │ │ └── border-colors.jsx │ ├── colors-description │ │ └── colors-description.jsx │ ├── colors.stories.mdx │ ├── colors.stories.module.scss │ ├── content-color-cell │ │ ├── content-color-cell.jsx │ │ └── content-color-cell.module.scss │ ├── content-color-row │ │ └── content-color-row.jsx │ ├── content-colors │ │ ├── content-colors.jsx │ │ └── content-colors.module.scss │ ├── semantic-colors │ │ └── semantic-colors.jsx │ ├── text-colors │ │ └── text-colors.jsx │ └── utils │ │ ├── colors-utils.ts │ │ └── colors-vars-map.ts │ ├── spacing │ ├── assets │ │ ├── index.js │ │ ├── menuExample.png │ │ ├── tipseenExample.png │ │ └── toolbarExample.png │ ├── spacing-sizes │ │ ├── spacing-component │ │ │ ├── spacing-component.jsx │ │ │ └── spacing-component.scss │ │ ├── spacing-sizes.jsx │ │ └── spacing-sizes.scss │ ├── spacing.stories.mdx │ └── spacing.stories.scss │ └── welcome │ ├── assets │ ├── BackgroundPattern1.png │ ├── BackgroundPattern2.png │ ├── BackgroundPattern3.png │ ├── BackgroundPattern4.png │ ├── BackgroundPattern5.png │ ├── Hadas.png │ ├── Meirav.png │ ├── Orr.png │ ├── Sergey.png │ ├── WelcomePageCover.png │ ├── Yael.png │ └── index.js │ ├── contributor │ ├── contributor.jsx │ └── contributor.scss │ ├── contributors │ ├── contributors.jsx │ └── contributors.scss │ ├── helper-components │ └── Icons │ │ ├── Email.tsx │ │ ├── IconContainer.scss │ │ └── IconContainer.tsx │ ├── intro │ ├── intro.jsx │ └── intro.module.scss │ ├── other-contributors-list │ ├── contributors.module.scss │ ├── contributors.tsx │ ├── other-contributors-list.jsx │ └── other-contributors-list.module.scss │ ├── welcome-header │ ├── welcome-header.jsx │ └── welcome-header.module.scss │ └── welcome.stories.mdx ├── stylelint-config ├── index.js └── rules │ └── use-defined-css-var-when-available │ ├── __tests__ │ ├── fixtures │ │ ├── contains-values-with-multiple-replacements.scss │ │ └── contains-values-with-single-replacement.scss │ ├── index.test.js │ └── props-to-allowed-vars.test.js │ ├── index.js │ ├── parse-monday-css.js │ └── props-to-allowed-vars.js ├── tsconfig.json └── types └── styles.d.ts /.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.babelrc.json -------------------------------------------------------------------------------- /.github/workflows/chromatic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.github/workflows/chromatic.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/publish-storybook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.github/workflows/publish-storybook.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.storybook/logo.png -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/manager-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.storybook/manager-head.html -------------------------------------------------------------------------------- /.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.storybook/manager.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.storybook/preview.scss -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.storybook/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.storybook/theme.js -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ICON_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/ICON_REQUEST.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/package.json -------------------------------------------------------------------------------- /plop/icon/icon-metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/plop/icon/icon-metadata.txt -------------------------------------------------------------------------------- /plop/icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/plop/icon/index.js -------------------------------------------------------------------------------- /plopfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/plopfile.js -------------------------------------------------------------------------------- /scripts/__tests__/__snapshots__/validate-icons-colors.jest.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/__tests__/__snapshots__/validate-icons-colors.jest.js.snap -------------------------------------------------------------------------------- /scripts/__tests__/validate-icons-colors.jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/__tests__/validate-icons-colors.jest.js -------------------------------------------------------------------------------- /scripts/autobump_major.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/autobump_major.js -------------------------------------------------------------------------------- /scripts/autobump_minor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/autobump_minor.js -------------------------------------------------------------------------------- /scripts/autobump_patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/autobump_patch.js -------------------------------------------------------------------------------- /scripts/bump-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/bump-version.js -------------------------------------------------------------------------------- /scripts/changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/changelog.js -------------------------------------------------------------------------------- /scripts/copy-public-folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/copy-public-folder.sh -------------------------------------------------------------------------------- /scripts/generate-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/generate-meta.js -------------------------------------------------------------------------------- /scripts/githooks/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/githooks/install.sh -------------------------------------------------------------------------------- /scripts/githooks/pre-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/githooks/pre-push.sh -------------------------------------------------------------------------------- /scripts/icons/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/icons/utils.js -------------------------------------------------------------------------------- /scripts/icons/validate-icons-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/icons/validate-icons-colors.js -------------------------------------------------------------------------------- /scripts/metadata-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/metadata-util.js -------------------------------------------------------------------------------- /scripts/prerelease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/prerelease.js -------------------------------------------------------------------------------- /scripts/validate-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/scripts/validate-meta.js -------------------------------------------------------------------------------- /src/Icons/API.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/API.svg -------------------------------------------------------------------------------- /src/Icons/Academy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Academy.svg -------------------------------------------------------------------------------- /src/Icons/Activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Activity.svg -------------------------------------------------------------------------------- /src/Icons/Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Add.svg -------------------------------------------------------------------------------- /src/Icons/AddNewDoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/AddNewDoc.svg -------------------------------------------------------------------------------- /src/Icons/AddSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/AddSmall.svg -------------------------------------------------------------------------------- /src/Icons/AddToTeam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/AddToTeam.svg -------------------------------------------------------------------------------- /src/Icons/AddUpdate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/AddUpdate.svg -------------------------------------------------------------------------------- /src/Icons/Alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Alert.svg -------------------------------------------------------------------------------- /src/Icons/Announcement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Announcement.svg -------------------------------------------------------------------------------- /src/Icons/Apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Apps.svg -------------------------------------------------------------------------------- /src/Icons/Archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Archive.svg -------------------------------------------------------------------------------- /src/Icons/Attach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Attach.svg -------------------------------------------------------------------------------- /src/Icons/Basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Basic.svg -------------------------------------------------------------------------------- /src/Icons/Battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Battery.svg -------------------------------------------------------------------------------- /src/Icons/BlockQuote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/BlockQuote.svg -------------------------------------------------------------------------------- /src/Icons/Board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Board.svg -------------------------------------------------------------------------------- /src/Icons/BoardPrivate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/BoardPrivate.svg -------------------------------------------------------------------------------- /src/Icons/BoardShareable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/BoardShareable.svg -------------------------------------------------------------------------------- /src/Icons/BoardTemplate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/BoardTemplate.svg -------------------------------------------------------------------------------- /src/Icons/Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Bold.svg -------------------------------------------------------------------------------- /src/Icons/Bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Bolt.svg -------------------------------------------------------------------------------- /src/Icons/Bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Bookmark.svg -------------------------------------------------------------------------------- /src/Icons/Broadcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Broadcast.svg -------------------------------------------------------------------------------- /src/Icons/Broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Broom.svg -------------------------------------------------------------------------------- /src/Icons/Bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Bug.svg -------------------------------------------------------------------------------- /src/Icons/Bullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Bullet.svg -------------------------------------------------------------------------------- /src/Icons/Bullets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Bullets.svg -------------------------------------------------------------------------------- /src/Icons/Bulllet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Bulllet.svg -------------------------------------------------------------------------------- /src/Icons/Calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Calendar.svg -------------------------------------------------------------------------------- /src/Icons/Chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Chart.svg -------------------------------------------------------------------------------- /src/Icons/Check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Check.svg -------------------------------------------------------------------------------- /src/Icons/CheckList.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/CheckList.svg -------------------------------------------------------------------------------- /src/Icons/Checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Checkbox.svg -------------------------------------------------------------------------------- /src/Icons/Clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Clear.svg -------------------------------------------------------------------------------- /src/Icons/Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Close.svg -------------------------------------------------------------------------------- /src/Icons/CloseRound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/CloseRound.svg -------------------------------------------------------------------------------- /src/Icons/CloseSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/CloseSmall.svg -------------------------------------------------------------------------------- /src/Icons/Code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Code.svg -------------------------------------------------------------------------------- /src/Icons/Collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Collapse.svg -------------------------------------------------------------------------------- /src/Icons/CollapseRound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/CollapseRound.svg -------------------------------------------------------------------------------- /src/Icons/Column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Column.svg -------------------------------------------------------------------------------- /src/Icons/Comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Comment.svg -------------------------------------------------------------------------------- /src/Icons/Completed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Completed.svg -------------------------------------------------------------------------------- /src/Icons/Connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Connect.svg -------------------------------------------------------------------------------- /src/Icons/ConnectedDoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/ConnectedDoc.svg -------------------------------------------------------------------------------- /src/Icons/ContentDirectory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/ContentDirectory.svg -------------------------------------------------------------------------------- /src/Icons/ConvertToItem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/ConvertToItem.svg -------------------------------------------------------------------------------- /src/Icons/ConvertToSubitem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/ConvertToSubitem.svg -------------------------------------------------------------------------------- /src/Icons/Counter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Counter.svg -------------------------------------------------------------------------------- /src/Icons/Country.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Country.svg -------------------------------------------------------------------------------- /src/Icons/CreditCard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/CreditCard.svg -------------------------------------------------------------------------------- /src/Icons/Custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Custom.svg -------------------------------------------------------------------------------- /src/Icons/Cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Cut.svg -------------------------------------------------------------------------------- /src/Icons/Dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Dashboard.svg -------------------------------------------------------------------------------- /src/Icons/DashboardPrivate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DashboardPrivate.svg -------------------------------------------------------------------------------- /src/Icons/Deactivate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Deactivate.svg -------------------------------------------------------------------------------- /src/Icons/Delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Delete.svg -------------------------------------------------------------------------------- /src/Icons/Dependency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Dependency.svg -------------------------------------------------------------------------------- /src/Icons/Description.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Description.svg -------------------------------------------------------------------------------- /src/Icons/DisabledUser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DisabledUser.svg -------------------------------------------------------------------------------- /src/Icons/Divider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Divider.svg -------------------------------------------------------------------------------- /src/Icons/Doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Doc.svg -------------------------------------------------------------------------------- /src/Icons/DocPrivate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DocPrivate.svg -------------------------------------------------------------------------------- /src/Icons/DocShareable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DocShareable.svg -------------------------------------------------------------------------------- /src/Icons/DocTemplate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DocTemplate.svg -------------------------------------------------------------------------------- /src/Icons/DoubleCheck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DoubleCheck.svg -------------------------------------------------------------------------------- /src/Icons/Download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Download.svg -------------------------------------------------------------------------------- /src/Icons/Drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Drag.svg -------------------------------------------------------------------------------- /src/Icons/Dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Dropdown.svg -------------------------------------------------------------------------------- /src/Icons/DropdownChevronDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DropdownChevronDown.svg -------------------------------------------------------------------------------- /src/Icons/DropdownChevronLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DropdownChevronLeft.svg -------------------------------------------------------------------------------- /src/Icons/DropdownChevronRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DropdownChevronRight.svg -------------------------------------------------------------------------------- /src/Icons/DropdownChevronUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DropdownChevronUp.svg -------------------------------------------------------------------------------- /src/Icons/DueDate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/DueDate.svg -------------------------------------------------------------------------------- /src/Icons/Duplicate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Duplicate.svg -------------------------------------------------------------------------------- /src/Icons/Edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Edit.svg -------------------------------------------------------------------------------- /src/Icons/Education.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Education.svg -------------------------------------------------------------------------------- /src/Icons/Email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Email.svg -------------------------------------------------------------------------------- /src/Icons/Embed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Embed.svg -------------------------------------------------------------------------------- /src/Icons/Emoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Emoji.svg -------------------------------------------------------------------------------- /src/Icons/Enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Enter.svg -------------------------------------------------------------------------------- /src/Icons/Erase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Erase.svg -------------------------------------------------------------------------------- /src/Icons/Event.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Event.svg -------------------------------------------------------------------------------- /src/Icons/Expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Expand.svg -------------------------------------------------------------------------------- /src/Icons/ExternalPage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/ExternalPage.svg -------------------------------------------------------------------------------- /src/Icons/Favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Favorite.svg -------------------------------------------------------------------------------- /src/Icons/Featured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Featured.svg -------------------------------------------------------------------------------- /src/Icons/Feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Feedback.svg -------------------------------------------------------------------------------- /src/Icons/File.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/File.svg -------------------------------------------------------------------------------- /src/Icons/Filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Filter.svg -------------------------------------------------------------------------------- /src/Icons/Folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Folder.svg -------------------------------------------------------------------------------- /src/Icons/Form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Form.svg -------------------------------------------------------------------------------- /src/Icons/Formula.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Formula.svg -------------------------------------------------------------------------------- /src/Icons/Forum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Forum.svg -------------------------------------------------------------------------------- /src/Icons/Fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Fullscreen.svg -------------------------------------------------------------------------------- /src/Icons/FullscreenClose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/FullscreenClose.svg -------------------------------------------------------------------------------- /src/Icons/Gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Gallery.svg -------------------------------------------------------------------------------- /src/Icons/Gantt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Gantt.svg -------------------------------------------------------------------------------- /src/Icons/Gif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Gif.svg -------------------------------------------------------------------------------- /src/Icons/Globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Globe.svg -------------------------------------------------------------------------------- /src/Icons/Graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Graph.svg -------------------------------------------------------------------------------- /src/Icons/Group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Group.svg -------------------------------------------------------------------------------- /src/Icons/Guest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Guest.svg -------------------------------------------------------------------------------- /src/Icons/Health.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Health.svg -------------------------------------------------------------------------------- /src/Icons/Help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Help.svg -------------------------------------------------------------------------------- /src/Icons/Hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Hide.svg -------------------------------------------------------------------------------- /src/Icons/Highlight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Highlight.svg -------------------------------------------------------------------------------- /src/Icons/HighlightColorBucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/HighlightColorBucket.svg -------------------------------------------------------------------------------- /src/Icons/Home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Home.svg -------------------------------------------------------------------------------- /src/Icons/IPRestrictions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/IPRestrictions.svg -------------------------------------------------------------------------------- /src/Icons/Idea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Idea.svg -------------------------------------------------------------------------------- /src/Icons/Image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Image.svg -------------------------------------------------------------------------------- /src/Icons/Inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Inbox.svg -------------------------------------------------------------------------------- /src/Icons/Info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Info.svg -------------------------------------------------------------------------------- /src/Icons/Integrations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Integrations.svg -------------------------------------------------------------------------------- /src/Icons/Invite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Invite.svg -------------------------------------------------------------------------------- /src/Icons/Italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Italic.svg -------------------------------------------------------------------------------- /src/Icons/Item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Item.svg -------------------------------------------------------------------------------- /src/Icons/ItemDefaultValues.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/ItemDefaultValues.svg -------------------------------------------------------------------------------- /src/Icons/ItemHeightTriple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/ItemHeightTriple.svg -------------------------------------------------------------------------------- /src/Icons/Keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Keyboard.svg -------------------------------------------------------------------------------- /src/Icons/Labs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Labs.svg -------------------------------------------------------------------------------- /src/Icons/Launch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Launch.svg -------------------------------------------------------------------------------- /src/Icons/Layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Layout.svg -------------------------------------------------------------------------------- /src/Icons/LearnMore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/LearnMore.svg -------------------------------------------------------------------------------- /src/Icons/Lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Lines.svg -------------------------------------------------------------------------------- /src/Icons/Link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Link.svg -------------------------------------------------------------------------------- /src/Icons/Location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Location.svg -------------------------------------------------------------------------------- /src/Icons/Locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Locked.svg -------------------------------------------------------------------------------- /src/Icons/LogIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/LogIn.svg -------------------------------------------------------------------------------- /src/Icons/LogOut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/LogOut.svg -------------------------------------------------------------------------------- /src/Icons/LongText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/LongText.svg -------------------------------------------------------------------------------- /src/Icons/Mention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Mention.svg -------------------------------------------------------------------------------- /src/Icons/Menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Menu.svg -------------------------------------------------------------------------------- /src/Icons/Microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Microphone.svg -------------------------------------------------------------------------------- /src/Icons/Minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Minimize.svg -------------------------------------------------------------------------------- /src/Icons/Mirror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Mirror.svg -------------------------------------------------------------------------------- /src/Icons/Mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Mobile.svg -------------------------------------------------------------------------------- /src/Icons/MondayDoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MondayDoc.svg -------------------------------------------------------------------------------- /src/Icons/MondayLogoOutline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MondayLogoOutline.svg -------------------------------------------------------------------------------- /src/Icons/Moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Moon.svg -------------------------------------------------------------------------------- /src/Icons/MoreActions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MoreActions.svg -------------------------------------------------------------------------------- /src/Icons/MoreBelow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MoreBelow.svg -------------------------------------------------------------------------------- /src/Icons/MoreBelowFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MoreBelowFilled.svg -------------------------------------------------------------------------------- /src/Icons/MoveArrowDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MoveArrowDown.svg -------------------------------------------------------------------------------- /src/Icons/MoveArrowLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MoveArrowLeft.svg -------------------------------------------------------------------------------- /src/Icons/MoveArrowLeftDouble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MoveArrowLeftDouble.svg -------------------------------------------------------------------------------- /src/Icons/MoveArrowRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MoveArrowRight.svg -------------------------------------------------------------------------------- /src/Icons/MoveArrowUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MoveArrowUp.svg -------------------------------------------------------------------------------- /src/Icons/Mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Mute.svg -------------------------------------------------------------------------------- /src/Icons/MyWeek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/MyWeek.svg -------------------------------------------------------------------------------- /src/Icons/NavigationChevronDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/NavigationChevronDown.svg -------------------------------------------------------------------------------- /src/Icons/NavigationChevronLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/NavigationChevronLeft.svg -------------------------------------------------------------------------------- /src/Icons/NavigationChevronRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/NavigationChevronRight.svg -------------------------------------------------------------------------------- /src/Icons/NavigationChevronUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/NavigationChevronUp.svg -------------------------------------------------------------------------------- /src/Icons/NavigationDoubleChevronLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/NavigationDoubleChevronLeft.svg -------------------------------------------------------------------------------- /src/Icons/NewTab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/NewTab.svg -------------------------------------------------------------------------------- /src/Icons/Night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Night.svg -------------------------------------------------------------------------------- /src/Icons/NoColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/NoColor.svg -------------------------------------------------------------------------------- /src/Icons/Note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Note.svg -------------------------------------------------------------------------------- /src/Icons/Notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Notifications.svg -------------------------------------------------------------------------------- /src/Icons/NotificationsMuted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/NotificationsMuted.svg -------------------------------------------------------------------------------- /src/Icons/Numbers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Numbers.svg -------------------------------------------------------------------------------- /src/Icons/Offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Offline.svg -------------------------------------------------------------------------------- /src/Icons/Open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Open.svg -------------------------------------------------------------------------------- /src/Icons/Page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Page.svg -------------------------------------------------------------------------------- /src/Icons/Paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Paste.svg -------------------------------------------------------------------------------- /src/Icons/Pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Pause.svg -------------------------------------------------------------------------------- /src/Icons/Person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Person.svg -------------------------------------------------------------------------------- /src/Icons/PersonRound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/PersonRound.svg -------------------------------------------------------------------------------- /src/Icons/Pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Pin.svg -------------------------------------------------------------------------------- /src/Icons/Placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Placeholder.svg -------------------------------------------------------------------------------- /src/Icons/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Play.svg -------------------------------------------------------------------------------- /src/Icons/Print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Print.svg -------------------------------------------------------------------------------- /src/Icons/PushNotification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/PushNotification.svg -------------------------------------------------------------------------------- /src/Icons/Quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Quote.svg -------------------------------------------------------------------------------- /src/Icons/Radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Radio.svg -------------------------------------------------------------------------------- /src/Icons/Recurring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Recurring.svg -------------------------------------------------------------------------------- /src/Icons/RecycleBin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/RecycleBin.svg -------------------------------------------------------------------------------- /src/Icons/Redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Redo.svg -------------------------------------------------------------------------------- /src/Icons/Remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Remove.svg -------------------------------------------------------------------------------- /src/Icons/Replay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Replay.svg -------------------------------------------------------------------------------- /src/Icons/Retry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Retry.svg -------------------------------------------------------------------------------- /src/Icons/Robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Robot.svg -------------------------------------------------------------------------------- /src/Icons/Rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Rotate.svg -------------------------------------------------------------------------------- /src/Icons/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Search.svg -------------------------------------------------------------------------------- /src/Icons/Security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Security.svg -------------------------------------------------------------------------------- /src/Icons/Send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Send.svg -------------------------------------------------------------------------------- /src/Icons/Settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Settings.svg -------------------------------------------------------------------------------- /src/Icons/SettingsKnobs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/SettingsKnobs.svg -------------------------------------------------------------------------------- /src/Icons/Share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Share.svg -------------------------------------------------------------------------------- /src/Icons/ShortText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/ShortText.svg -------------------------------------------------------------------------------- /src/Icons/Show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Show.svg -------------------------------------------------------------------------------- /src/Icons/Shredder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Shredder.svg -------------------------------------------------------------------------------- /src/Icons/Sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Sort.svg -------------------------------------------------------------------------------- /src/Icons/SortAscending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/SortAscending.svg -------------------------------------------------------------------------------- /src/Icons/SortDescending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/SortDescending.svg -------------------------------------------------------------------------------- /src/Icons/Sound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Sound.svg -------------------------------------------------------------------------------- /src/Icons/Status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Status.svg -------------------------------------------------------------------------------- /src/Icons/StrikethroughS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/StrikethroughS.svg -------------------------------------------------------------------------------- /src/Icons/StrikethroughT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/StrikethroughT.svg -------------------------------------------------------------------------------- /src/Icons/Subitems.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Subitems.svg -------------------------------------------------------------------------------- /src/Icons/Sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Sun.svg -------------------------------------------------------------------------------- /src/Icons/Switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Switch.svg -------------------------------------------------------------------------------- /src/Icons/Switcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Switcher.svg -------------------------------------------------------------------------------- /src/Icons/Table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Table.svg -------------------------------------------------------------------------------- /src/Icons/Tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Tags.svg -------------------------------------------------------------------------------- /src/Icons/Team.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Team.svg -------------------------------------------------------------------------------- /src/Icons/Text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Text.svg -------------------------------------------------------------------------------- /src/Icons/TextBig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/TextBig.svg -------------------------------------------------------------------------------- /src/Icons/TextColorIndicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/TextColorIndicator.svg -------------------------------------------------------------------------------- /src/Icons/TextCopy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/TextCopy.svg -------------------------------------------------------------------------------- /src/Icons/TextHuge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/TextHuge.svg -------------------------------------------------------------------------------- /src/Icons/TextMedium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/TextMedium.svg -------------------------------------------------------------------------------- /src/Icons/TextSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/TextSmall.svg -------------------------------------------------------------------------------- /src/Icons/Textcolor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Textcolor.svg -------------------------------------------------------------------------------- /src/Icons/ThumbsUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/ThumbsUp.svg -------------------------------------------------------------------------------- /src/Icons/Time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Time.svg -------------------------------------------------------------------------------- /src/Icons/Timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Timeline.svg -------------------------------------------------------------------------------- /src/Icons/Translation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Translation.svg -------------------------------------------------------------------------------- /src/Icons/TurnInto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/TurnInto.svg -------------------------------------------------------------------------------- /src/Icons/Underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Underline.svg -------------------------------------------------------------------------------- /src/Icons/Undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Undo.svg -------------------------------------------------------------------------------- /src/Icons/Unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Unlocked.svg -------------------------------------------------------------------------------- /src/Icons/Update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Update.svg -------------------------------------------------------------------------------- /src/Icons/Upgrade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Upgrade.svg -------------------------------------------------------------------------------- /src/Icons/Upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Upload.svg -------------------------------------------------------------------------------- /src/Icons/UserDomain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/UserDomain.svg -------------------------------------------------------------------------------- /src/Icons/UserStatus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/UserStatus.svg -------------------------------------------------------------------------------- /src/Icons/Versioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Versioning.svg -------------------------------------------------------------------------------- /src/Icons/Video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Video.svg -------------------------------------------------------------------------------- /src/Icons/Wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Wand.svg -------------------------------------------------------------------------------- /src/Icons/Warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Warning.svg -------------------------------------------------------------------------------- /src/Icons/WhatsNew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/WhatsNew.svg -------------------------------------------------------------------------------- /src/Icons/Widgets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Widgets.svg -------------------------------------------------------------------------------- /src/Icons/Work.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Work.svg -------------------------------------------------------------------------------- /src/Icons/Workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Workflow.svg -------------------------------------------------------------------------------- /src/Icons/Workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/Workspace.svg -------------------------------------------------------------------------------- /src/Icons/iconsMetaData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Icons/iconsMetaData.js -------------------------------------------------------------------------------- /src/Themes/_basic-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/_basic-theme.scss -------------------------------------------------------------------------------- /src/Themes/_black-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/_black-theme.scss -------------------------------------------------------------------------------- /src/Themes/_dark-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/_dark-theme.scss -------------------------------------------------------------------------------- /src/Themes/_hacker-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/_hacker-theme.scss -------------------------------------------------------------------------------- /src/Themes/basic/_basic-theme-legacy-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/basic/_basic-theme-legacy-settings.scss -------------------------------------------------------------------------------- /src/Themes/basic/_basic-theme-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/basic/_basic-theme-settings.scss -------------------------------------------------------------------------------- /src/Themes/basic/_content-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/basic/_content-colors.scss -------------------------------------------------------------------------------- /src/Themes/black/_black-theme-content-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/black/_black-theme-content-colors.scss -------------------------------------------------------------------------------- /src/Themes/black/_black-theme-legacy-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/black/_black-theme-legacy-settings.scss -------------------------------------------------------------------------------- /src/Themes/black/_black-theme-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/black/_black-theme-settings.scss -------------------------------------------------------------------------------- /src/Themes/dark/_dark-theme-content-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/dark/_dark-theme-content-colors.scss -------------------------------------------------------------------------------- /src/Themes/dark/_dark-theme-legacy-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/dark/_dark-theme-legacy-settings.scss -------------------------------------------------------------------------------- /src/Themes/dark/_dark-theme-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/dark/_dark-theme-settings.scss -------------------------------------------------------------------------------- /src/Themes/hacker/_hacker-theme-content-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/hacker/_hacker-theme-content-colors.scss -------------------------------------------------------------------------------- /src/Themes/hacker/_hacker-theme-legacy-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/hacker/_hacker-theme-legacy-settings.scss -------------------------------------------------------------------------------- /src/Themes/hacker/_hacker-theme-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/Themes/hacker/_hacker-theme-settings.scss -------------------------------------------------------------------------------- /src/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/_common.scss -------------------------------------------------------------------------------- /src/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/_config.scss -------------------------------------------------------------------------------- /src/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/_core.scss -------------------------------------------------------------------------------- /src/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/_functions.scss -------------------------------------------------------------------------------- /src/_internal-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/_internal-mixins.scss -------------------------------------------------------------------------------- /src/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/_mixins.scss -------------------------------------------------------------------------------- /src/_themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/_themes.scss -------------------------------------------------------------------------------- /src/config/maps/_config-basic-theme-maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/_config-basic-theme-maps.scss -------------------------------------------------------------------------------- /src/config/maps/_config-black-theme-maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/_config-black-theme-maps.scss -------------------------------------------------------------------------------- /src/config/maps/_config-core-maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/_config-core-maps.scss -------------------------------------------------------------------------------- /src/config/maps/_config-dark-theme-maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/_config-dark-theme-maps.scss -------------------------------------------------------------------------------- /src/config/maps/_config-hacker-theme-maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/_config-hacker-theme-maps.scss -------------------------------------------------------------------------------- /src/config/maps/core/_core-borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/core/_core-borders.scss -------------------------------------------------------------------------------- /src/config/maps/core/_core-common-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/core/_core-common-map.scss -------------------------------------------------------------------------------- /src/config/maps/core/_core-fonts-map-deprecated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/core/_core-fonts-map-deprecated.scss -------------------------------------------------------------------------------- /src/config/maps/core/_core-motion-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/core/_core-motion-map.scss -------------------------------------------------------------------------------- /src/config/maps/core/_core-radius-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/core/_core-radius-map.scss -------------------------------------------------------------------------------- /src/config/maps/core/_core-shadows-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/core/_core-shadows-map.scss -------------------------------------------------------------------------------- /src/config/maps/core/_core-spacing-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/core/_core-spacing-map.scss -------------------------------------------------------------------------------- /src/config/maps/core/_core-typography-map-deprecated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/core/_core-typography-map-deprecated.scss -------------------------------------------------------------------------------- /src/config/maps/core/_core-typography-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/core/_core-typography-map.scss -------------------------------------------------------------------------------- /src/config/maps/themes/basic/keys/_keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/basic/keys/_keys.scss -------------------------------------------------------------------------------- /src/config/maps/themes/basic/keys/legacy/_legacy-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/basic/keys/legacy/_legacy-keys.scss -------------------------------------------------------------------------------- /src/config/maps/themes/basic/palette/_palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/basic/palette/_palette.scss -------------------------------------------------------------------------------- /src/config/maps/themes/basic/palette/legacy/_legacy-pallete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/basic/palette/legacy/_legacy-pallete.scss -------------------------------------------------------------------------------- /src/config/maps/themes/black/keys/_black-theme-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/black/keys/_black-theme-keys.scss -------------------------------------------------------------------------------- /src/config/maps/themes/black/keys/legacy/_black-theme-legacy-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/black/keys/legacy/_black-theme-legacy-keys.scss -------------------------------------------------------------------------------- /src/config/maps/themes/dark/keys/_dark-theme-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/dark/keys/_dark-theme-keys.scss -------------------------------------------------------------------------------- /src/config/maps/themes/dark/keys/legacy/_dark-theme-legacy-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/dark/keys/legacy/_dark-theme-legacy-keys.scss -------------------------------------------------------------------------------- /src/config/maps/themes/hacker/keys/_hacker-theme-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/hacker/keys/_hacker-theme-keys.scss -------------------------------------------------------------------------------- /src/config/maps/themes/hacker/keys/legacy/_hacker-theme-legacy-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/hacker/keys/legacy/_hacker-theme-legacy-keys.scss -------------------------------------------------------------------------------- /src/config/maps/themes/hacker/palette/legacy/_hacker-theme-legacy-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/maps/themes/hacker/palette/legacy/_hacker-theme-legacy-palette.scss -------------------------------------------------------------------------------- /src/config/tokens/_config-basic-theme-tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/_config-basic-theme-tokens.scss -------------------------------------------------------------------------------- /src/config/tokens/_config-black-theme-tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/_config-black-theme-tokens.scss -------------------------------------------------------------------------------- /src/config/tokens/_config-core-tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/_config-core-tokens.scss -------------------------------------------------------------------------------- /src/config/tokens/_config-dark-theme-tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/_config-dark-theme-tokens.scss -------------------------------------------------------------------------------- /src/config/tokens/_config-hacker-theme-tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/_config-hacker-theme-tokens.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-border.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-common.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-fonts-deprecated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-fonts-deprecated.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-motion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-motion.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-opacity.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-radius.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-shadows.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-spacing.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-typography-deprecated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-typography-deprecated.scss -------------------------------------------------------------------------------- /src/config/tokens/core/_core-typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/core/_core-typography.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/basic/keys/_keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/basic/keys/_keys.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/basic/keys/legacy/_legacy-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/basic/keys/legacy/_legacy-keys.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/basic/palette/_palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/basic/palette/_palette.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/basic/palette/legacy/_legacy-pallete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/basic/palette/legacy/_legacy-pallete.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/black/keys/_black-theme-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/black/keys/_black-theme-keys.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/black/keys/legacy/_black-theme-legacy-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/black/keys/legacy/_black-theme-legacy-keys.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/black/palette/_black-theme-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/black/palette/_black-theme-palette.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/dark/keys/_dark-theme-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/dark/keys/_dark-theme-keys.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/dark/keys/legacy/_dark-theme-legacy-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/dark/keys/legacy/_dark-theme-legacy-keys.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/dark/palette/_dark-theme-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/dark/palette/_dark-theme-palette.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/hacker/keys/_hacker-theme-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/hacker/keys/_hacker-theme-keys.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/hacker/keys/legacy/hacker-theme-legacy-keys.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/hacker/keys/legacy/hacker-theme-legacy-keys.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/hacker/palette/_hacker-theme-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/hacker/palette/_hacker-theme-palette.scss -------------------------------------------------------------------------------- /src/config/tokens/themes/hacker/palette/legacy/_hacker-theme-legacy-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/config/tokens/themes/hacker/palette/legacy/_hacker-theme-legacy-palette.scss -------------------------------------------------------------------------------- /src/core/_core-settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/core/_core-settings.scss -------------------------------------------------------------------------------- /src/files/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/files/colors.json -------------------------------------------------------------------------------- /src/functions/_camelize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/functions/_camelize.scss -------------------------------------------------------------------------------- /src/functions/_capitalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/functions/_capitalize.scss -------------------------------------------------------------------------------- /src/functions/_contain.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/functions/_contain.scss -------------------------------------------------------------------------------- /src/functions/_extract-rgb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/functions/_extract-rgb.scss -------------------------------------------------------------------------------- /src/functions/_map-collect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/functions/_map-collect.scss -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/internal-mixins/_generate-custom-properties.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/internal-mixins/_generate-custom-properties.scss -------------------------------------------------------------------------------- /src/internal-mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/internal-mixins/_utilities.scss -------------------------------------------------------------------------------- /src/loaders/monday.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mixins/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/mixins/_common.scss -------------------------------------------------------------------------------- /src/mixins/_states.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/mixins/_states.scss -------------------------------------------------------------------------------- /src/mixins/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/mixins/_typography.scss -------------------------------------------------------------------------------- /src/utilities/_utilities-maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/src/utilities/_utilities-maps.scss -------------------------------------------------------------------------------- /storybook/components/component-name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/component-name/README.md -------------------------------------------------------------------------------- /storybook/components/component-name/assets/component-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/component-name/assets/component-background.png -------------------------------------------------------------------------------- /storybook/components/component-name/assets/foundation-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/component-name/assets/foundation-background.png -------------------------------------------------------------------------------- /storybook/components/component-name/component-name-decorator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/component-name/component-name-decorator.jsx -------------------------------------------------------------------------------- /storybook/components/component-name/component-name-decorator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/component-name/component-name-decorator.scss -------------------------------------------------------------------------------- /storybook/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/index.js -------------------------------------------------------------------------------- /storybook/components/related-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/related-components/README.md -------------------------------------------------------------------------------- /storybook/components/related-components/component-description-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/related-components/component-description-map.js -------------------------------------------------------------------------------- /storybook/components/related-components/descriptions/colors-description/colors-description.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/related-components/descriptions/colors-description/colors-description.jsx -------------------------------------------------------------------------------- /storybook/components/related-components/descriptions/colors-description/colors-description.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/related-components/descriptions/colors-description/colors-description.scss -------------------------------------------------------------------------------- /storybook/components/related-components/descriptions/spacing-description/spacing-description.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/related-components/descriptions/spacing-description/spacing-description.jsx -------------------------------------------------------------------------------- /storybook/components/related-components/descriptions/spacing-description/spacing-description.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/related-components/descriptions/spacing-description/spacing-description.module.scss -------------------------------------------------------------------------------- /storybook/components/related-components/related-components-decorator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/components/related-components/related-components-decorator.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/changelog/Changelog.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/changelog/Changelog.stories.mdx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/assets/cardColorsExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/assets/cardColorsExample.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/assets/index.js -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/assets/menuColorsExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/assets/menuColorsExample.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/background-colors/background-colors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/background-colors/background-colors.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/border-colors/border-colors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/border-colors/border-colors.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/colors-description/colors-description.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/colors-description/colors-description.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/colors.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/colors.stories.mdx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/colors.stories.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/colors.stories.module.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/content-color-cell/content-color-cell.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/content-color-cell/content-color-cell.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/content-color-cell/content-color-cell.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/content-color-cell/content-color-cell.module.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/content-color-row/content-color-row.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/content-color-row/content-color-row.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/content-colors/content-colors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/content-colors/content-colors.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/content-colors/content-colors.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/content-colors/content-colors.module.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/semantic-colors/semantic-colors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/semantic-colors/semantic-colors.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/text-colors/text-colors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/text-colors/text-colors.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/utils/colors-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/utils/colors-utils.ts -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/colors/utils/colors-vars-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/colors/utils/colors-vars-map.ts -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/assets/index.js -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/assets/menuExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/assets/menuExample.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/assets/tipseenExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/assets/tipseenExample.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/assets/toolbarExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/assets/toolbarExample.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/spacing-sizes/spacing-component/spacing-component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/spacing-sizes/spacing-component/spacing-component.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/spacing-sizes/spacing-component/spacing-component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/spacing-sizes/spacing-component/spacing-component.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/spacing-sizes/spacing-sizes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/spacing-sizes/spacing-sizes.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/spacing-sizes/spacing-sizes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/spacing-sizes/spacing-sizes.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/spacing.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/spacing.stories.mdx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/spacing/spacing.stories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/spacing/spacing.stories.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/BackgroundPattern1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/BackgroundPattern1.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/BackgroundPattern2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/BackgroundPattern2.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/BackgroundPattern3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/BackgroundPattern3.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/BackgroundPattern4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/BackgroundPattern4.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/BackgroundPattern5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/BackgroundPattern5.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/Hadas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/Hadas.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/Meirav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/Meirav.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/Orr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/Orr.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/Sergey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/Sergey.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/WelcomePageCover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/WelcomePageCover.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/Yael.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/Yael.png -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/assets/index.js -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/contributor/contributor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/contributor/contributor.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/contributor/contributor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/contributor/contributor.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/contributors/contributors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/contributors/contributors.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/contributors/contributors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/contributors/contributors.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/helper-components/Icons/Email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/helper-components/Icons/Email.tsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/helper-components/Icons/IconContainer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/helper-components/Icons/IconContainer.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/helper-components/Icons/IconContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/helper-components/Icons/IconContainer.tsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/intro/intro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/intro/intro.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/intro/intro.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/intro/intro.module.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/other-contributors-list/contributors.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/other-contributors-list/contributors.module.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/other-contributors-list/contributors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/other-contributors-list/contributors.tsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/other-contributors-list/other-contributors-list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/other-contributors-list/other-contributors-list.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/other-contributors-list/other-contributors-list.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/other-contributors-list/other-contributors-list.module.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/welcome-header/welcome-header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/welcome-header/welcome-header.jsx -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/welcome-header/welcome-header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/welcome-header/welcome-header.module.scss -------------------------------------------------------------------------------- /storybook/stand-alone-documentation/welcome/welcome.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/storybook/stand-alone-documentation/welcome/welcome.stories.mdx -------------------------------------------------------------------------------- /stylelint-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/stylelint-config/index.js -------------------------------------------------------------------------------- /stylelint-config/rules/use-defined-css-var-when-available/__tests__/fixtures/contains-values-with-multiple-replacements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/stylelint-config/rules/use-defined-css-var-when-available/__tests__/fixtures/contains-values-with-multiple-replacements.scss -------------------------------------------------------------------------------- /stylelint-config/rules/use-defined-css-var-when-available/__tests__/fixtures/contains-values-with-single-replacement.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/stylelint-config/rules/use-defined-css-var-when-available/__tests__/fixtures/contains-values-with-single-replacement.scss -------------------------------------------------------------------------------- /stylelint-config/rules/use-defined-css-var-when-available/__tests__/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/stylelint-config/rules/use-defined-css-var-when-available/__tests__/index.test.js -------------------------------------------------------------------------------- /stylelint-config/rules/use-defined-css-var-when-available/__tests__/props-to-allowed-vars.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/stylelint-config/rules/use-defined-css-var-when-available/__tests__/props-to-allowed-vars.test.js -------------------------------------------------------------------------------- /stylelint-config/rules/use-defined-css-var-when-available/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/stylelint-config/rules/use-defined-css-var-when-available/index.js -------------------------------------------------------------------------------- /stylelint-config/rules/use-defined-css-var-when-available/parse-monday-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/stylelint-config/rules/use-defined-css-var-when-available/parse-monday-css.js -------------------------------------------------------------------------------- /stylelint-config/rules/use-defined-css-var-when-available/props-to-allowed-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/stylelint-config/rules/use-defined-css-var-when-available/props-to-allowed-vars.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mondaycom/monday-ui-style/HEAD/types/styles.d.ts --------------------------------------------------------------------------------