@innovaccer/design-system 2.7.0 → 2.9.0-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/chromatic.yml +3 -1
- package/.github/workflows/docs_pull_request.yml +20 -0
- package/.github/workflows/main.yml +1 -1
- package/.github/workflows/manual.yml +1 -1
- package/.github/workflows/pull_request.yml +1 -1
- package/.github/workflows/test.yml +1 -1
- package/CHANGELOG.md +68 -0
- package/README.md +6 -0
- package/core/components/atoms/_chip/__tests__/__snapshots__/_chip.test.tsx.snap +8 -8
- package/core/components/atoms/_chip/index.tsx +1 -1
- package/core/components/atoms/avatar/__tests__/__snapshots__/Avatar.test.tsx.snap +20 -0
- package/core/components/atoms/avatarGroup/AvatarCount.tsx +29 -0
- package/core/components/atoms/avatarGroup/AvatarGroup.tsx +16 -62
- package/core/components/atoms/avatarGroup/AvatarPopperBody.tsx +37 -0
- package/core/components/atoms/avatarGroup/Avatars.tsx +23 -0
- package/core/components/atoms/avatarGroup/__stories__/index.story.tsx +41 -0
- package/core/components/atoms/avatarGroup/__tests__/AvatarGroup.test.tsx +1 -1
- package/core/components/atoms/avatarGroup/__tests__/__snapshots__/AvatarGroup.test.tsx.snap +8 -4
- package/core/components/atoms/button/Button.tsx +1 -2
- package/core/components/atoms/checkbox/__stories__/Group.story.tsx +1 -1
- package/core/components/atoms/checkbox/__stories__/Nested.story.tsx +2 -0
- package/core/components/atoms/chip/__tests__/__snapshots__/Chip.test.tsx.snap +11 -11
- package/core/components/atoms/chipGroup/__tests__/__snapshots__/chipGroup.test.tsx.snap +4 -4
- package/core/components/atoms/dropdown/DropdownButton.tsx +1 -1
- package/core/components/atoms/dropdown/DropdownList.tsx +56 -29
- package/core/components/atoms/dropdown/__tests__/__snapshots__/Dropdown.test.tsx.snap +29 -2
- package/core/components/atoms/popperWrapper/PopperWrapper.tsx +104 -12
- package/core/components/atoms/toast/__stories__/WithDescription.story.tsx +3 -1
- package/core/components/css-utilities/designTokens/Data.tsx +18 -0
- package/core/components/css-utilities/designTokens/Transitions.story.tsx +37 -0
- package/core/components/molecules/chipInput/__tests__/__snapshots__/ChipInput.test.tsx.snap +4 -4
- package/core/components/molecules/dialog/__tests__/__snapshots__/Dialog.test.tsx.snap +260 -195
- package/core/components/molecules/editableChipInput/__tests__/__snapshots__/EditableChipInput.test.tsx.snap +4 -4
- package/core/components/molecules/editableDropdown/__tests__/__snapshots__/EditableDropdown.test.tsx.snap +1 -0
- package/core/components/molecules/fullscreenModal/FullscreenModal.tsx +13 -12
- package/core/components/molecules/fullscreenModal/__tests__/Fullscreen.test.tsx +2 -5
- package/core/components/molecules/fullscreenModal/__tests__/__snapshots__/Fullscreen.test.tsx.snap +126 -96
- package/core/components/molecules/modal/Modal.tsx +11 -9
- package/core/components/molecules/modal/__tests__/__snapshots__/Modal.test.tsx.snap +240 -180
- package/core/components/molecules/popover/Popover.tsx +9 -0
- package/core/components/molecules/popover/__tests__/__snapshots__/Popover.test.tsx.snap +16 -8
- package/core/components/molecules/sidesheet/Sidesheet.tsx +23 -22
- package/core/components/molecules/sidesheet/__tests__/__snapshots__/Sidesheet.test.tsx.snap +40 -30
- package/core/components/molecules/tooltip/Tooltip.tsx +20 -1
- package/core/components/molecules/tooltip/__tests__/__snapshots__/Tooltip.test.tsx.snap +8 -0
- package/core/components/organisms/calendar/__tests__/__snapshots__/Calendar.test.tsx.snap +8 -8
- package/core/components/organisms/datePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap +14 -13
- package/core/components/organisms/dateRangePicker/__tests__/__snapshots__/DateRangePicker.test.tsx.snap +42 -30
- package/core/components/organisms/grid/GridBody.tsx +1 -2
- package/core/components/organisms/table/Table.tsx +0 -1
- package/core/components/organisms/table/__stories__/NestedTableWithNestedCard.story.tsx +2 -2
- package/core/components/organisms/table/__tests__/__snapshots__/Table.test.tsx.snap +1544 -0
- package/core/components/organisms/verticalNav/MenuItem.tsx +6 -2
- package/core/components/organisms/verticalNav/VerticalNav.tsx +8 -2
- package/core/components/organisms/verticalNav/__stories__/CustomItemsRenderer.story.tsx +238 -0
- package/core/utils/__tests__/__snapshots__/TS.test.tsx.snap +168 -3
- package/css/dist/index.css +300 -62
- package/css/dist/index.css.map +1 -1
- package/css/src/components/ProgressBar.css +1 -1
- package/css/src/components/avatarGroup.css +0 -9
- package/css/src/components/button.css +4 -4
- package/css/src/components/chip.css +4 -0
- package/css/src/components/dropdown.css +5 -9
- package/css/src/components/dropdownButton.css +2 -0
- package/css/src/components/fullscreenModal.css +0 -5
- package/css/src/components/grid.css +0 -11
- package/css/src/components/overlay.css +0 -11
- package/css/src/components/popover.css +12 -0
- package/css/src/components/slider.css +1 -0
- package/css/src/components/tabs.css +1 -1
- package/css/src/components/textarea.css +0 -11
- package/css/src/components/tooltip.css +115 -0
- package/css/src/components/verticalNav.css +2 -0
- package/css/src/core/animation.css +8 -0
- package/css/src/core/utilities.css +11 -0
- package/css/src/utils/utility.css +4 -0
- package/css/src/variables/index.css +19 -0
- package/dist/core/components/atoms/avatarGroup/AvatarCount.d.ts +2 -0
- package/dist/core/components/atoms/avatarGroup/AvatarGroup.d.ts +2 -2
- package/dist/core/components/atoms/avatarGroup/AvatarPopperBody.d.ts +2 -0
- package/dist/core/components/atoms/avatarGroup/Avatars.d.ts +2 -0
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +61 -54
- package/dist/core/components/css-utilities/designTokens/Data.d.ts +8 -0
- package/dist/core/components/css-utilities/designTokens/Transitions.story.d.ts +12 -0
- package/dist/core/components/molecules/popover/Popover.d.ts +4 -0
- package/dist/core/components/molecules/sidesheet/Sidesheet.d.ts +1 -0
- package/dist/core/components/organisms/verticalNav/MenuItem.d.ts +1 -0
- package/dist/core/components/organisms/verticalNav/VerticalNav.d.ts +2 -0
- package/dist/index.esm.js +278 -142
- package/dist/index.js +282 -149
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.br +0 -0
- package/dist/index.umd.js.gz +0 -0
- package/docs/.eslintrc.json +1 -0
- package/docs/.unotes/templates/title_date.hbs +4 -0
- package/docs/.unotes/unotes_meta.json +302 -0
- package/docs/LICENSE +21 -0
- package/docs/README.md +31 -0
- package/docs/gatsby-browser.js +6 -0
- package/docs/gatsby-config.js +171 -0
- package/docs/gatsby-node.js +75 -0
- package/docs/index.js +1 -0
- package/docs/package.json +54 -0
- package/docs/src/components/Colors/Colors.css +19 -0
- package/docs/src/components/Colors/Colors.js +82 -0
- package/docs/src/components/Container/ComponentsContainer.js +75 -0
- package/docs/src/components/Container/Container.js +114 -0
- package/docs/src/components/Container/index.js +3 -0
- package/docs/src/components/Footer/Footer.css +7 -0
- package/docs/src/components/Footer/Footer.js +40 -0
- package/docs/src/components/Header/Header.css +32 -0
- package/docs/src/components/Header/Header.js +60 -0
- package/docs/src/components/Header/index.js +3 -0
- package/docs/src/components/LastModifiedDate/LastModifiedDate.js +24 -0
- package/docs/src/components/LastModifiedDate/index.js +3 -0
- package/docs/src/components/Layout.js +291 -0
- package/docs/src/components/LeftNav/LeftNav.js +101 -0
- package/docs/src/components/LeftNav/index.js +3 -0
- package/docs/src/components/Logos/Logos.css +29 -0
- package/docs/src/components/Logos/Logos.js +64 -0
- package/docs/src/components/Meta.js +101 -0
- package/docs/src/components/PropsTable/ArgJsDoc.tsx +102 -0
- package/docs/src/components/PropsTable/ArgRow.tsx +142 -0
- package/docs/src/components/PropsTable/ArgValue.tsx +182 -0
- package/docs/src/components/PropsTable/EmptyBlock.tsx +22 -0
- package/docs/src/components/PropsTable/SectionRow.tsx +126 -0
- package/docs/src/components/PropsTable/Shared.tsx +53 -0
- package/docs/src/components/PropsTable/Table.tsx +463 -0
- package/docs/src/components/PropsTable/card.css +7 -0
- package/docs/src/components/PropsTable/generateImports.tsx +20 -0
- package/docs/src/components/PropsTable/index.js +248 -0
- package/docs/src/components/PropsTable/prism.css +146 -0
- package/docs/src/components/PropsTable/sandbox.tsx +81 -0
- package/docs/src/components/PropsTable/theme.js +53 -0
- package/docs/src/components/PropsTable/types.tsx +44 -0
- package/docs/src/components/Rules/DONTs.js +13 -0
- package/docs/src/components/Rules/DOs.js +13 -0
- package/docs/src/components/Rules/IconWrapper.js +18 -0
- package/docs/src/components/Rules/InlineMessage.js +11 -0
- package/docs/src/components/Rules/Rules.css +17 -0
- package/docs/src/components/Rules/Rules.js +39 -0
- package/docs/src/components/TableOfContent/TableOfContent.css +37 -0
- package/docs/src/components/TableOfContent/TableOfContent.js +126 -0
- package/docs/src/components/css/global.css +15 -0
- package/docs/src/components/css/prism.css +38 -0
- package/docs/src/components/css/style.css +97 -0
- package/docs/src/components/templates/Default.js +24 -0
- package/docs/src/components/templates/Homepage.js +13 -0
- package/docs/src/data/components/images/Avatars.png +0 -0
- package/docs/src/data/components/images/Datepicker.png +0 -0
- package/docs/src/data/components/images/EditableChipInput.png +0 -0
- package/docs/src/data/components/images/Modal.png +0 -0
- package/docs/src/data/components/images/Sidesheet.png +0 -0
- package/docs/src/data/components/images/Table.png +0 -0
- package/docs/src/data/components/index.js +285 -0
- package/docs/src/data/footer-items.yaml +16 -0
- package/docs/src/data/header-items.yaml +20 -0
- package/docs/src/data/home-menu.yaml +23 -0
- package/docs/src/data/home-resources.yaml +14 -0
- package/docs/src/data/nav/components.yaml +45 -0
- package/docs/src/data/nav/content.yaml +25 -0
- package/docs/src/data/nav/default.yaml +11 -0
- package/docs/src/data/nav/foundations.yaml +22 -0
- package/docs/src/data/nav/guide-items.yaml +6 -0
- package/docs/src/data/nav/introduction.yaml +11 -0
- package/docs/src/data/storybook.json +345189 -0
- package/docs/src/pages/404.js +31 -0
- package/docs/src/pages/components/avatar/code.mdx +14 -0
- package/docs/src/pages/components/avatar/images/avatar-1.png +0 -0
- package/docs/src/pages/components/avatar/images/avatar-2.png +0 -0
- package/docs/src/pages/components/avatar/images/avatar-3.png +0 -0
- package/docs/src/pages/components/avatar/images/avatar-4.png +0 -0
- package/docs/src/pages/components/avatar/images/avatar-5.png +0 -0
- package/docs/src/pages/components/avatar/usage.mdx +53 -0
- package/docs/src/pages/components/badges/code.mdx +15 -0
- package/docs/src/pages/components/badges/images/badges-1.png +0 -0
- package/docs/src/pages/components/badges/images/badges-2.png +0 -0
- package/docs/src/pages/components/badges/usage.mdx +43 -0
- package/docs/src/pages/components/breadcrumbs/code.mdx +15 -0
- package/docs/src/pages/components/breadcrumbs/usage.mdx +30 -0
- package/docs/src/pages/components/button/code.mdx +18 -0
- package/docs/src/pages/components/button/content.mdx +652 -0
- package/docs/src/pages/components/button/images/buttons-1.png +0 -0
- package/docs/src/pages/components/button/images/buttons-2.png +0 -0
- package/docs/src/pages/components/button/usage.mdx +100 -0
- package/docs/src/pages/components/calendar/code.mdx +15 -0
- package/docs/src/pages/components/calendar/usage.mdx +9 -0
- package/docs/src/pages/components/card/code.mdx +15 -0
- package/docs/src/pages/components/card/usage.mdx +54 -0
- package/docs/src/pages/components/checkbox/code.mdx +16 -0
- package/docs/src/pages/components/checkbox/usage.mdx +49 -0
- package/docs/src/pages/components/chips/code.mdx +15 -0
- package/docs/src/pages/components/chips/usage.mdx +34 -0
- package/docs/src/pages/components/datePicker/code.mdx +7 -0
- package/docs/src/pages/components/datePicker/images/datePicker-1.png +0 -0
- package/docs/src/pages/components/datePicker/images/datePicker-2.png +0 -0
- package/docs/src/pages/components/datePicker/images/datePicker-3.png +0 -0
- package/docs/src/pages/components/datePicker/images/datePicker-4.png +0 -0
- package/docs/src/pages/components/datePicker/images/datePicker-5.png +0 -0
- package/docs/src/pages/components/datePicker/usage.mdx +58 -0
- package/docs/src/pages/components/index.mdx +7 -0
- package/docs/src/pages/components/message/code.mdx +16 -0
- package/docs/src/pages/components/message/usage.mdx +26 -0
- package/docs/src/pages/components/overview/index.mdx +6 -0
- package/docs/src/pages/components/overview/tabs/Overview.js +72 -0
- package/docs/src/pages/components/overview/tabs/all-components.mdx +10 -0
- package/docs/src/pages/components/overview/tabs/overview.css +30 -0
- package/docs/src/pages/components/overview/tabs/status.mdx +22 -0
- package/docs/src/pages/components/radio/code.mdx +17 -0
- package/docs/src/pages/components/radio/usage.mdx +126 -0
- package/docs/src/pages/components/sidesheet/code.mdx +8 -0
- package/docs/src/pages/components/sidesheet/interactions.mdx +8 -0
- package/docs/src/pages/components/sidesheet/usage.mdx +25 -0
- package/docs/src/pages/components/slider/code.mdx +15 -0
- package/docs/src/pages/components/slider/usage.mdx +49 -0
- package/docs/src/pages/components/statushint/code.mdx +15 -0
- package/docs/src/pages/components/statushint/usage.mdx +19 -0
- package/docs/src/pages/components/steppers/code.mdx +16 -0
- package/docs/src/pages/components/steppers/images/stepper-1.gif +0 -0
- package/docs/src/pages/components/steppers/images/stepper-2.png +0 -0
- package/docs/src/pages/components/steppers/images/stepper-3.png +0 -0
- package/docs/src/pages/components/steppers/images/stepper-4.png +0 -0
- package/docs/src/pages/components/steppers/images/stepper-5.png +0 -0
- package/docs/src/pages/components/steppers/images/stepper-6.png +0 -0
- package/docs/src/pages/components/steppers/interactions.mdx +28 -0
- package/docs/src/pages/components/steppers/usage.mdx +201 -0
- package/docs/src/pages/components/switch/code.mdx +16 -0
- package/docs/src/pages/components/switch/images/switch-1.gif +0 -0
- package/docs/src/pages/components/switch/images/switch-2.gif +0 -0
- package/docs/src/pages/components/switch/images/switch-3.png +0 -0
- package/docs/src/pages/components/switch/interactions.mdx +392 -0
- package/docs/src/pages/components/switch/usage.mdx +114 -0
- package/docs/src/pages/components/table/code.mdx +14 -0
- package/docs/src/pages/components/table/images/table-1.png +0 -0
- package/docs/src/pages/components/table/images/table-10.png +0 -0
- package/docs/src/pages/components/table/images/table-11.gif +0 -0
- package/docs/src/pages/components/table/images/table-12.png +0 -0
- package/docs/src/pages/components/table/images/table-13.png +0 -0
- package/docs/src/pages/components/table/images/table-14.png +0 -0
- package/docs/src/pages/components/table/images/table-15.png +0 -0
- package/docs/src/pages/components/table/images/table-16.png +0 -0
- package/docs/src/pages/components/table/images/table-17.png +0 -0
- package/docs/src/pages/components/table/images/table-18.png +0 -0
- package/docs/src/pages/components/table/images/table-19.png +0 -0
- package/docs/src/pages/components/table/images/table-2.png +0 -0
- package/docs/src/pages/components/table/images/table-20.png +0 -0
- package/docs/src/pages/components/table/images/table-21.png +0 -0
- package/docs/src/pages/components/table/images/table-22.png +0 -0
- package/docs/src/pages/components/table/images/table-23.png +0 -0
- package/docs/src/pages/components/table/images/table-24.png +0 -0
- package/docs/src/pages/components/table/images/table-25.png +0 -0
- package/docs/src/pages/components/table/images/table-26.png +0 -0
- package/docs/src/pages/components/table/images/table-27.png +0 -0
- package/docs/src/pages/components/table/images/table-28.png +0 -0
- package/docs/src/pages/components/table/images/table-29.png +0 -0
- package/docs/src/pages/components/table/images/table-3.png +0 -0
- package/docs/src/pages/components/table/images/table-30.png +0 -0
- package/docs/src/pages/components/table/images/table-4.png +0 -0
- package/docs/src/pages/components/table/images/table-5.png +0 -0
- package/docs/src/pages/components/table/images/table-6.png +0 -0
- package/docs/src/pages/components/table/images/table-7.png +0 -0
- package/docs/src/pages/components/table/images/table-8.png +0 -0
- package/docs/src/pages/components/table/images/table-9.png +0 -0
- package/docs/src/pages/components/table/interactions.mdx +97 -0
- package/docs/src/pages/components/table/usage.mdx +364 -0
- package/docs/src/pages/components/tabs/code.mdx +15 -0
- package/docs/src/pages/components/tabs/images/tabs-1.png +0 -0
- package/docs/src/pages/components/tabs/images/tabs-2.png +0 -0
- package/docs/src/pages/components/tabs/images/tabs-3.png +0 -0
- package/docs/src/pages/components/tabs/images/tabs-4.png +0 -0
- package/docs/src/pages/components/tabs/images/tabs-5.png +0 -0
- package/docs/src/pages/components/tabs/images/tabs-6.png +0 -0
- package/docs/src/pages/components/tabs/images/tabs-7.png +0 -0
- package/docs/src/pages/components/tabs/interactions.mdx +487 -0
- package/docs/src/pages/components/tabs/usage.mdx +164 -0
- package/docs/src/pages/components/toast/code.mdx +15 -0
- package/docs/src/pages/components/toast/images/toast-1.png +0 -0
- package/docs/src/pages/components/toast/images/toast-2.gif +0 -0
- package/docs/src/pages/components/toast/images/toast-3.gif +0 -0
- package/docs/src/pages/components/toast/images/toast-4.png +0 -0
- package/docs/src/pages/components/toast/images/toast-5.gif +0 -0
- package/docs/src/pages/components/toast/images/toast-6.gif +0 -0
- package/docs/src/pages/components/toast/interactions.mdx +218 -0
- package/docs/src/pages/components/toast/usage.mdx +156 -0
- package/docs/src/pages/components/tooltip/code.mdx +16 -0
- package/docs/src/pages/components/tooltip/images/Tooltip-1.png +0 -0
- package/docs/src/pages/components/tooltip/images/tooltip-2.gif +0 -0
- package/docs/src/pages/components/tooltip/images/tooltip-3.gif +0 -0
- package/docs/src/pages/components/tooltip/interactions.mdx +219 -0
- package/docs/src/pages/components/tooltip/usage.mdx +80 -0
- package/docs/src/pages/content/button-guidelines/index.mdx +7 -0
- package/docs/src/pages/content/button-guidelines/tabs/button-glossary.mdx +144 -0
- package/docs/src/pages/content/button-guidelines/tabs/confusing-buttons.mdx +184 -0
- package/docs/src/pages/content/email-guidelines.mdx +107 -0
- package/docs/src/pages/content/empty-states.mdx +8 -0
- package/docs/src/pages/content/error-messages.mdx +165 -0
- package/docs/src/pages/content/house-rules/tabs/basics.mdx +236 -0
- package/docs/src/pages/content/house-rules/tabs/date,-time-&-numbers.mdx +462 -0
- package/docs/src/pages/content/house-rules/tabs/grammer.mdx +744 -0
- package/docs/src/pages/content/house-rules/tabs/punctuations.mdx +666 -0
- package/docs/src/pages/content/placeholder-text.mdx +58 -0
- package/docs/src/pages/content/rules.mdx +136 -0
- package/docs/src/pages/content/voice-and-tone-guidelines/index.mdx +7 -0
- package/docs/src/pages/content/voice-and-tone-guidelines/tabs/usage.mdx +309 -0
- package/docs/src/pages/content/voice-and-tone-guidelines/tabs/voice-and-tone.mdx +38 -0
- package/docs/src/pages/contributions.mdx +16 -0
- package/docs/src/pages/foundations/colors.mdx +149 -0
- package/docs/src/pages/foundations/interactions.mdx +192 -0
- package/docs/src/pages/foundations/layout/images/baseline-grid.png +0 -0
- package/docs/src/pages/foundations/layout/images/grid-column.jpeg +0 -0
- package/docs/src/pages/foundations/layout/images/grid-layout.jpeg +0 -0
- package/docs/src/pages/foundations/layout/images/grid-margin.jpeg +0 -0
- package/docs/src/pages/foundations/layout/images/spacing.png +0 -0
- package/docs/src/pages/foundations/layout/images/typography.png +0 -0
- package/docs/src/pages/foundations/layout/index.mdx +151 -0
- package/docs/src/pages/foundations/logos.mdx +88 -0
- package/docs/src/pages/foundations/principles.mdx +60 -0
- package/docs/src/pages/foundations/response-time.mdx +124 -0
- package/docs/src/pages/foundations/typography.mdx +8 -0
- package/docs/src/pages/getting-started/index.mdx +9 -0
- package/docs/src/pages/guides/MDX.mdx +17 -0
- package/docs/src/pages/home/HomeBanner.png +0 -0
- package/docs/src/pages/home/homepage.css +23 -0
- package/docs/src/pages/index.js +241 -0
- package/docs/src/pages/introduction/get-started/designers.mdx +89 -0
- package/docs/src/pages/introduction/get-started/developers.mdx +128 -0
- package/docs/src/pages/introduction/what's-new.mdx +801 -0
- package/docs/src/pages/mobile/components/avatar/code.mdx +12 -0
- package/docs/src/pages/mobile/components/avatar/usage.mdx +20 -0
- package/docs/src/pages/mobile/components/badges/code.mdx +16 -0
- package/docs/src/pages/mobile/components/badges/usage.mdx +23 -0
- package/docs/src/pages/mobile/components/breadcrumbs/code.mdx +16 -0
- package/docs/src/pages/mobile/components/breadcrumbs/usage.mdx +34 -0
- package/docs/src/pages/mobile/components/button/code.mdx +12 -0
- package/docs/src/pages/mobile/components/button/content.mdx +1 -0
- package/docs/src/pages/mobile/components/button/usage.mdx +55 -0
- package/docs/src/pages/mobile/components/card/code.mdx +16 -0
- package/docs/src/pages/mobile/components/card/usage.mdx +23 -0
- package/docs/src/pages/mobile/components/checkbox/code.mdx +16 -0
- package/docs/src/pages/mobile/components/checkbox/usage.mdx +49 -0
- package/docs/src/pages/mobile/components/index.mdx +7 -0
- package/docs/src/pages/mobile/components/message/code.mdx +16 -0
- package/docs/src/pages/mobile/components/message/usage.mdx +26 -0
- package/docs/src/pages/mobile/components/overview/index.mdx +8 -0
- package/docs/src/pages/mobile/components/overview/tabs/all-components.mdx +8 -0
- package/docs/src/pages/mobile/components/overview/tabs/status.mdx +115 -0
- package/docs/src/pages/mobile/foundations/colors.mdx +149 -0
- package/docs/src/pages/mobile/foundations/interactions.mdx +192 -0
- package/docs/src/pages/mobile/foundations/layout/images/baseline-grid.png +0 -0
- package/docs/src/pages/mobile/foundations/layout/images/grid-column.jpeg +0 -0
- package/docs/src/pages/mobile/foundations/layout/images/grid-layout.jpeg +0 -0
- package/docs/src/pages/mobile/foundations/layout/images/grid-margin.jpeg +0 -0
- package/docs/src/pages/mobile/foundations/layout/images/spacing.png +0 -0
- package/docs/src/pages/mobile/foundations/layout/images/typography.png +0 -0
- package/docs/src/pages/mobile/foundations/layout/index.mdx +151 -0
- package/docs/src/pages/mobile/foundations/logos.mdx +88 -0
- package/docs/src/pages/mobile/foundations/principles.mdx +47 -0
- package/docs/src/pages/mobile/foundations/response-time.mdx +124 -0
- package/docs/src/pages/mobile/foundations/typography.mdx +8 -0
- package/docs/src/pages/patterns/index.mdx +7 -0
- package/docs/src/pages/resources/index.mdx +7 -0
- package/docs/src/util/FooterItems.js +21 -0
- package/docs/src/util/Frontmatter.js +35 -0
- package/docs/src/util/HeaderItems.js +21 -0
- package/docs/src/util/Helpers.js +7 -0
- package/docs/src/util/HomeMenu.js +24 -0
- package/docs/src/util/HomeResources.js +23 -0
- package/docs/src/util/InPageNavItems.js +36 -0
- package/docs/src/util/Logos.js +19 -0
- package/docs/src/util/MdsChangelog.js +55 -0
- package/docs/src/util/MediumBlogs.js +27 -0
- package/docs/src/util/NavItems.js +82 -0
- package/docs/src/util/StorybookData.js +24 -0
- package/docs/src/util/constants.js +7 -0
- package/docs/src/util/context/NavContext.js +54 -0
- package/docs/src/util/hooks/index.js +1 -0
- package/docs/src/util/hooks/useMetadata.js +21 -0
- package/docs/src/util/index.js +4 -0
- package/docs/static/icons/4691539_codesandbox_icon.svg +1 -0
- package/docs/static/icons/card-image.png +0 -0
- package/docs/static/icons/favicon_io/android-chrome-192x192.png +0 -0
- package/docs/static/icons/favicon_io/android-chrome-512x512.png +0 -0
- package/docs/static/icons/favicon_io/apple-touch-icon.png +0 -0
- package/docs/static/icons/favicon_io/favicon-16x16.png +0 -0
- package/docs/static/icons/favicon_io/favicon-32x32.png +0 -0
- package/docs/static/icons/favicon_io/favicon.ico +0 -0
- package/docs/static/images/P360.png +0 -0
- package/docs/static/images/dap.png +0 -0
- package/docs/static/images/default.png +0 -0
- package/docs/static/images/designtoken.png +0 -0
- package/docs/static/images/figma.png +0 -0
- package/docs/static/images/headerLogo.png +0 -0
- package/docs/static/images/inacademy.png +0 -0
- package/docs/static/images/inapi.png +0 -0
- package/docs/static/images/incare.png +0 -0
- package/docs/static/images/inconnect.png +0 -0
- package/docs/static/images/indata.png +0 -0
- package/docs/static/images/ingraph.png +0 -0
- package/docs/static/images/innote.png +0 -0
- package/docs/static/images/inoffice.png +0 -0
- package/docs/static/images/inreport.png +0 -0
- package/docs/static/images/storybook.png +0 -0
- package/docs/static/images/withoutType.png +0 -0
- package/docs/tools/build.sh +6 -0
- package/docs/tools/changelog.sh +1 -0
- package/docs/tools/changeloghead.md +14 -0
- package/docs/tools/develop.sh +5 -0
- package/docs/tools/extract.js +52 -0
- package/docs/tools/update-mds.sh +3 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/tsconfig.type.json +2 -1
- package/docs/AppTutorial.md +0 -474
- package/docs/images/BasicLayout.png +0 -0
- package/docs/images/Breadcrumb.png +0 -0
- package/docs/images/Covid-App.png +0 -0
- package/docs/images/DrilledLayout.png +0 -0
- package/docs/images/DrilledPage.png +0 -0
- package/docs/images/Footer.png +0 -0
- package/docs/images/Graph1.png +0 -0
- package/docs/images/Graph2.png +0 -0
- package/docs/images/Header.png +0 -0
- package/docs/images/Map.png +0 -0
- package/docs/images/StaticComponent.png +0 -0
- package/docs/images/Summary.png +0 -0
- package/docs/images/Table.png +0 -0
package/css/dist/index.css
CHANGED
|
@@ -253,6 +253,25 @@
|
|
|
253
253
|
|
|
254
254
|
/* Transparancy (Opacity) */
|
|
255
255
|
--transparent-58: 0.58;
|
|
256
|
+
|
|
257
|
+
/* Transition curve timing function */
|
|
258
|
+
/* Use standard-easing when an element is visible from the beginning to the end of a motion. Ex-Expanding cards. */
|
|
259
|
+
--standard-productive-curve: cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
260
|
+
--standard-expressive-curve: cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
261
|
+
/* Use entrance-easing when an element quickly appears and slows down to a stop. Ex-when adding elements to the view, such as a modal appearing. */
|
|
262
|
+
--entrance-productive-curve: cubic-bezier(0, 0, 0.38, 0.9);
|
|
263
|
+
--entrance-expressive-curve: cubic-bezier(0, 0, 0.3, 1);
|
|
264
|
+
/* Use exit-easing when removing elements from view, such as closing a modal or toaster. */
|
|
265
|
+
--exit-productive-curve: cubic-bezier(0.2, 0, 1, 0.9);
|
|
266
|
+
--exit-expressive-curve: cubic-bezier(0.4, 0.14, 1, 1);
|
|
267
|
+
|
|
268
|
+
/* Transition duration */
|
|
269
|
+
--duration--fast-01: 80ms;
|
|
270
|
+
--duration--fast-02: 120ms;
|
|
271
|
+
--duration--moderate-01: 160ms;
|
|
272
|
+
--duration--moderate-02: 240ms;
|
|
273
|
+
--duration--slow-01: 400ms;
|
|
274
|
+
--duration--slow-02: 720ms;
|
|
256
275
|
}
|
|
257
276
|
|
|
258
277
|
/* fallback */
|
|
@@ -415,6 +434,14 @@
|
|
|
415
434
|
animation: fadeOut 120ms cubic-bezier(0.4, 0.14, 0.3, 1);
|
|
416
435
|
}
|
|
417
436
|
|
|
437
|
+
.opacity-0 {
|
|
438
|
+
opacity: 0;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.opacity-1 {
|
|
442
|
+
opacity: 1;
|
|
443
|
+
}
|
|
444
|
+
|
|
418
445
|
.ss {
|
|
419
446
|
background: red;
|
|
420
447
|
}
|
|
@@ -641,6 +668,17 @@ body {
|
|
|
641
668
|
animation-timing-function: cubic-bezier(0.4, 0.14, 1, 1);
|
|
642
669
|
}
|
|
643
670
|
|
|
671
|
+
::-webkit-scrollbar {
|
|
672
|
+
width: var(--spacing-2);
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
::-webkit-scrollbar-thumb {
|
|
676
|
+
border: var(--spacing-s) solid rgba(0, 0, 0, 0);
|
|
677
|
+
background-clip: padding-box;
|
|
678
|
+
border-radius: var(--spacing);
|
|
679
|
+
background-color: var(--secondary);
|
|
680
|
+
}
|
|
681
|
+
|
|
644
682
|
.Legend {
|
|
645
683
|
display: flex;
|
|
646
684
|
flex-direction: row;
|
|
@@ -658,7 +696,7 @@ body {
|
|
|
658
696
|
.ProgressBar {
|
|
659
697
|
width: 100%;
|
|
660
698
|
border-radius: var(--spacing-m);
|
|
661
|
-
background: var(--secondary-
|
|
699
|
+
background: var(--secondary-lighter);
|
|
662
700
|
}
|
|
663
701
|
|
|
664
702
|
.ProgressBar-indicator {
|
|
@@ -779,15 +817,6 @@ body {
|
|
|
779
817
|
overflow-y: auto;
|
|
780
818
|
}
|
|
781
819
|
|
|
782
|
-
.AvatarGroup-TextWrapper::-webkit-scrollbar {
|
|
783
|
-
width: var(--spacing);
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
.AvatarGroup-TextWrapper::-webkit-scrollbar-thumb {
|
|
787
|
-
background: var(--secondary);
|
|
788
|
-
border-radius: var(--spacing-m);
|
|
789
|
-
}
|
|
790
|
-
|
|
791
820
|
@-webkit-keyframes backdrop-open {
|
|
792
821
|
from {
|
|
793
822
|
opacity: 0;
|
|
@@ -1022,12 +1051,12 @@ body {
|
|
|
1022
1051
|
line-height: var(--font-height-s);
|
|
1023
1052
|
color: var(--text-white);
|
|
1024
1053
|
|
|
1025
|
-
transition:
|
|
1026
|
-
box-shadow 0.15s ease-in-out;
|
|
1054
|
+
transition: var(--duration--fast-01) var(--standard-productive-curve);
|
|
1027
1055
|
}
|
|
1028
1056
|
|
|
1029
1057
|
.Button:disabled {
|
|
1030
1058
|
cursor: not-allowed;
|
|
1059
|
+
pointer-events: none;
|
|
1031
1060
|
}
|
|
1032
1061
|
|
|
1033
1062
|
.Button:focus {
|
|
@@ -1112,7 +1141,7 @@ body {
|
|
|
1112
1141
|
}
|
|
1113
1142
|
|
|
1114
1143
|
.Button--basic:hover {
|
|
1115
|
-
|
|
1144
|
+
box-shadow: var(--shadow-s);
|
|
1116
1145
|
}
|
|
1117
1146
|
|
|
1118
1147
|
.Button--basic:active {
|
|
@@ -1199,7 +1228,7 @@ body {
|
|
|
1199
1228
|
|
|
1200
1229
|
.Button--transparent:focus {
|
|
1201
1230
|
background: rgba(229, 229, 229, 0.2);
|
|
1202
|
-
|
|
1231
|
+
box-shadow: var(--shadow-spread) var(--secondary-shadow);
|
|
1203
1232
|
}
|
|
1204
1233
|
|
|
1205
1234
|
.Button--transparent:active {
|
|
@@ -1752,6 +1781,10 @@ body {
|
|
|
1752
1781
|
cursor: default;
|
|
1753
1782
|
height: var(--spacing-xl);
|
|
1754
1783
|
}
|
|
1784
|
+
.Chip-wrapper {
|
|
1785
|
+
display: inline-flex;
|
|
1786
|
+
align-items: center;
|
|
1787
|
+
}
|
|
1755
1788
|
|
|
1756
1789
|
.Chip-icon--left {
|
|
1757
1790
|
padding-right: var(--spacing-m);
|
|
@@ -2097,6 +2130,13 @@ body {
|
|
|
2097
2130
|
box-sizing: border-box;
|
|
2098
2131
|
}
|
|
2099
2132
|
|
|
2133
|
+
.Dropdown-items {
|
|
2134
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
|
|
2135
|
+
animation-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
|
|
2136
|
+
-webkit-animation-fill-mode: forwards;
|
|
2137
|
+
animation-fill-mode: forwards;
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2100
2140
|
.Option {
|
|
2101
2141
|
display: flex;
|
|
2102
2142
|
}
|
|
@@ -2176,15 +2216,6 @@ body {
|
|
|
2176
2216
|
line-height: var(--font-height);
|
|
2177
2217
|
}
|
|
2178
2218
|
|
|
2179
|
-
.Dropdown-wrapper::-webkit-scrollbar {
|
|
2180
|
-
width: var(--spacing);
|
|
2181
|
-
}
|
|
2182
|
-
|
|
2183
|
-
.Dropdown-wrapper::-webkit-scrollbar-thumb {
|
|
2184
|
-
background: var(--secondary);
|
|
2185
|
-
border-radius: var(--spacing-m);
|
|
2186
|
-
}
|
|
2187
|
-
|
|
2188
2219
|
.DropdownButton {
|
|
2189
2220
|
width: 100%;
|
|
2190
2221
|
justify-content: space-between;
|
|
@@ -2248,6 +2279,10 @@ body {
|
|
|
2248
2279
|
.DropdownButton--open {
|
|
2249
2280
|
background-color: var(--secondary-dark) !important;
|
|
2250
2281
|
color: var(--text) !important;
|
|
2282
|
+
-webkit-animation-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
|
|
2283
|
+
animation-timing-function: cubic-bezier(0, 0, 0.38, 0.9);
|
|
2284
|
+
-webkit-animation-duration: 120ms;
|
|
2285
|
+
animation-duration: 120ms;
|
|
2251
2286
|
}
|
|
2252
2287
|
|
|
2253
2288
|
.DropdownButton:disabled {
|
|
@@ -2685,11 +2720,6 @@ body {
|
|
|
2685
2720
|
overflow: auto;
|
|
2686
2721
|
display: flex;
|
|
2687
2722
|
flex-direction: column;
|
|
2688
|
-
visibility: hidden;
|
|
2689
|
-
}
|
|
2690
|
-
|
|
2691
|
-
.FullscreenModal--open {
|
|
2692
|
-
visibility: visible;
|
|
2693
2723
|
}
|
|
2694
2724
|
|
|
2695
2725
|
.FullscreenModal-animation--open {
|
|
@@ -2842,17 +2872,6 @@ body {
|
|
|
2842
2872
|
overflow-y: overlay;
|
|
2843
2873
|
}
|
|
2844
2874
|
|
|
2845
|
-
.Grid-body::-webkit-scrollbar {
|
|
2846
|
-
background: var(--white);
|
|
2847
|
-
height: var(--spacing-l);
|
|
2848
|
-
width: var(--spacing-l);
|
|
2849
|
-
}
|
|
2850
|
-
|
|
2851
|
-
.Grid-body::-webkit-scrollbar-thumb {
|
|
2852
|
-
background: var(--secondary);
|
|
2853
|
-
border-radius: var(--spacing);
|
|
2854
|
-
}
|
|
2855
|
-
|
|
2856
2875
|
.Grid-rowWrapper {
|
|
2857
2876
|
display: inline-flex;
|
|
2858
2877
|
flex-direction: column;
|
|
@@ -4227,17 +4246,6 @@ body {
|
|
|
4227
4246
|
padding-right: var(--spacing-xl);
|
|
4228
4247
|
}
|
|
4229
4248
|
|
|
4230
|
-
.OverlayBody::-webkit-scrollbar {
|
|
4231
|
-
width: var(--spacing-2);
|
|
4232
|
-
}
|
|
4233
|
-
|
|
4234
|
-
.OverlayBody::-webkit-scrollbar-thumb {
|
|
4235
|
-
border: var(--spacing-m) solid rgba(0, 0, 0, 0);
|
|
4236
|
-
background-clip: padding-box;
|
|
4237
|
-
border-radius: var(--spacing);
|
|
4238
|
-
background-color: var(--secondary);
|
|
4239
|
-
}
|
|
4240
|
-
|
|
4241
4249
|
.PageHeader-wrapper {
|
|
4242
4250
|
padding: var(--spacing) var(--spacing-2);
|
|
4243
4251
|
}
|
|
@@ -4566,6 +4574,30 @@ body {
|
|
|
4566
4574
|
pointer-events: none;
|
|
4567
4575
|
}
|
|
4568
4576
|
|
|
4577
|
+
@-webkit-keyframes popper-fade-in {
|
|
4578
|
+
0% {
|
|
4579
|
+
opacity: 0;
|
|
4580
|
+
}
|
|
4581
|
+
80% {
|
|
4582
|
+
opacity: 0.2;
|
|
4583
|
+
}
|
|
4584
|
+
100% {
|
|
4585
|
+
opacity: 1;
|
|
4586
|
+
}
|
|
4587
|
+
}
|
|
4588
|
+
|
|
4589
|
+
@keyframes popper-fade-in {
|
|
4590
|
+
0% {
|
|
4591
|
+
opacity: 0;
|
|
4592
|
+
}
|
|
4593
|
+
80% {
|
|
4594
|
+
opacity: 0.2;
|
|
4595
|
+
}
|
|
4596
|
+
100% {
|
|
4597
|
+
opacity: 1;
|
|
4598
|
+
}
|
|
4599
|
+
}
|
|
4600
|
+
|
|
4569
4601
|
.Ring {
|
|
4570
4602
|
transform: rotate(-90deg);
|
|
4571
4603
|
}
|
|
@@ -4975,6 +5007,7 @@ body {
|
|
|
4975
5007
|
.Slider-handle--disabled {
|
|
4976
5008
|
pointer-events: none;
|
|
4977
5009
|
background-color: var(--secondary-light);
|
|
5010
|
+
box-shadow: none;
|
|
4978
5011
|
}
|
|
4979
5012
|
|
|
4980
5013
|
@-webkit-keyframes rotate {
|
|
@@ -5330,7 +5363,7 @@ body {
|
|
|
5330
5363
|
outline: none;
|
|
5331
5364
|
border-radius: 4px;
|
|
5332
5365
|
/* Using box shadow instead of border as border shifts the div down which cuts the Icon & Text of label. */
|
|
5333
|
-
box-shadow: rgba(0, 112, 221, 0.
|
|
5366
|
+
box-shadow: rgba(0, 112, 221, 0.16) 0px 0px 0px calc(var(--spacing-xs) + var(--spacing-s)) inset;
|
|
5334
5367
|
}
|
|
5335
5368
|
|
|
5336
5369
|
.Tab:active:focus {
|
|
@@ -5438,17 +5471,6 @@ body {
|
|
|
5438
5471
|
resize: auto;
|
|
5439
5472
|
}
|
|
5440
5473
|
|
|
5441
|
-
.Textarea::-webkit-scrollbar {
|
|
5442
|
-
width: var(--spacing-2);
|
|
5443
|
-
}
|
|
5444
|
-
|
|
5445
|
-
.Textarea::-webkit-scrollbar-thumb {
|
|
5446
|
-
border: var(--spacing-m) solid rgba(0, 0, 0, 0);
|
|
5447
|
-
background-clip: padding-box;
|
|
5448
|
-
border-radius: var(--spacing);
|
|
5449
|
-
background-color: var(--secondary);
|
|
5450
|
-
}
|
|
5451
|
-
|
|
5452
5474
|
/* toast */
|
|
5453
5475
|
|
|
5454
5476
|
.Toast {
|
|
@@ -5636,6 +5658,216 @@ body {
|
|
|
5636
5658
|
hyphens: auto;
|
|
5637
5659
|
}
|
|
5638
5660
|
|
|
5661
|
+
@-webkit-keyframes tooltip-open-top {
|
|
5662
|
+
from {
|
|
5663
|
+
top: 0px;
|
|
5664
|
+
opacity: 0.5;
|
|
5665
|
+
}
|
|
5666
|
+
to {
|
|
5667
|
+
top: -8px;
|
|
5668
|
+
opacity: 1;
|
|
5669
|
+
}
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
@keyframes tooltip-open-top {
|
|
5673
|
+
from {
|
|
5674
|
+
top: 0px;
|
|
5675
|
+
opacity: 0.5;
|
|
5676
|
+
}
|
|
5677
|
+
to {
|
|
5678
|
+
top: -8px;
|
|
5679
|
+
opacity: 1;
|
|
5680
|
+
}
|
|
5681
|
+
}
|
|
5682
|
+
@-webkit-keyframes tooltip-close-top {
|
|
5683
|
+
from {
|
|
5684
|
+
top: -8px;
|
|
5685
|
+
opacity: 0.5;
|
|
5686
|
+
}
|
|
5687
|
+
to {
|
|
5688
|
+
top: 0px;
|
|
5689
|
+
opacity: 0;
|
|
5690
|
+
}
|
|
5691
|
+
}
|
|
5692
|
+
@keyframes tooltip-close-top {
|
|
5693
|
+
from {
|
|
5694
|
+
top: -8px;
|
|
5695
|
+
opacity: 0.5;
|
|
5696
|
+
}
|
|
5697
|
+
to {
|
|
5698
|
+
top: 0px;
|
|
5699
|
+
opacity: 0;
|
|
5700
|
+
}
|
|
5701
|
+
}
|
|
5702
|
+
|
|
5703
|
+
.Tooltip-animation-open-top {
|
|
5704
|
+
-webkit-animation: tooltip-open-top 120ms cubic-bezier(0, 0, 0.3, 1);
|
|
5705
|
+
animation: tooltip-open-top 120ms cubic-bezier(0, 0, 0.3, 1);
|
|
5706
|
+
-webkit-animation-fill-mode: forwards;
|
|
5707
|
+
animation-fill-mode: forwards;
|
|
5708
|
+
}
|
|
5709
|
+
.Tooltip-animation-close-top {
|
|
5710
|
+
-webkit-animation: tooltip-close-top 120ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
5711
|
+
animation: tooltip-close-top 120ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
5712
|
+
}
|
|
5713
|
+
@-webkit-keyframes tooltip-open-bottom {
|
|
5714
|
+
from {
|
|
5715
|
+
top: 0px;
|
|
5716
|
+
opacity: 0.5;
|
|
5717
|
+
}
|
|
5718
|
+
to {
|
|
5719
|
+
top: 8px;
|
|
5720
|
+
opacity: 1;
|
|
5721
|
+
}
|
|
5722
|
+
}
|
|
5723
|
+
@keyframes tooltip-open-bottom {
|
|
5724
|
+
from {
|
|
5725
|
+
top: 0px;
|
|
5726
|
+
opacity: 0.5;
|
|
5727
|
+
}
|
|
5728
|
+
to {
|
|
5729
|
+
top: 8px;
|
|
5730
|
+
opacity: 1;
|
|
5731
|
+
}
|
|
5732
|
+
}
|
|
5733
|
+
@-webkit-keyframes tooltip-close-bottom {
|
|
5734
|
+
from {
|
|
5735
|
+
top: 8px;
|
|
5736
|
+
opacity: 0.5;
|
|
5737
|
+
}
|
|
5738
|
+
to {
|
|
5739
|
+
top: 0px;
|
|
5740
|
+
opacity: 0;
|
|
5741
|
+
}
|
|
5742
|
+
}
|
|
5743
|
+
@keyframes tooltip-close-bottom {
|
|
5744
|
+
from {
|
|
5745
|
+
top: 8px;
|
|
5746
|
+
opacity: 0.5;
|
|
5747
|
+
}
|
|
5748
|
+
to {
|
|
5749
|
+
top: 0px;
|
|
5750
|
+
opacity: 0;
|
|
5751
|
+
}
|
|
5752
|
+
}
|
|
5753
|
+
|
|
5754
|
+
.Tooltip-animation-open-bottom {
|
|
5755
|
+
-webkit-animation: tooltip-open-bottom 120ms cubic-bezier(0, 0, 0.3, 1);
|
|
5756
|
+
animation: tooltip-open-bottom 120ms cubic-bezier(0, 0, 0.3, 1);
|
|
5757
|
+
-webkit-animation-fill-mode: forwards;
|
|
5758
|
+
animation-fill-mode: forwards;
|
|
5759
|
+
}
|
|
5760
|
+
.Tooltip-animation-close-bottom {
|
|
5761
|
+
-webkit-animation: tooltip-close-bottom 120ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
5762
|
+
animation: tooltip-close-bottom 120ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
5763
|
+
}
|
|
5764
|
+
|
|
5765
|
+
@-webkit-keyframes tooltip-open-left {
|
|
5766
|
+
from {
|
|
5767
|
+
left: 0px;
|
|
5768
|
+
opacity: 0.5;
|
|
5769
|
+
}
|
|
5770
|
+
to {
|
|
5771
|
+
left: -8px;
|
|
5772
|
+
opacity: 1;
|
|
5773
|
+
}
|
|
5774
|
+
}
|
|
5775
|
+
|
|
5776
|
+
@keyframes tooltip-open-left {
|
|
5777
|
+
from {
|
|
5778
|
+
left: 0px;
|
|
5779
|
+
opacity: 0.5;
|
|
5780
|
+
}
|
|
5781
|
+
to {
|
|
5782
|
+
left: -8px;
|
|
5783
|
+
opacity: 1;
|
|
5784
|
+
}
|
|
5785
|
+
}
|
|
5786
|
+
@-webkit-keyframes tooltip-close-left {
|
|
5787
|
+
from {
|
|
5788
|
+
left: -8px;
|
|
5789
|
+
opacity: 0.5;
|
|
5790
|
+
}
|
|
5791
|
+
to {
|
|
5792
|
+
left: 0px;
|
|
5793
|
+
opacity: 0;
|
|
5794
|
+
}
|
|
5795
|
+
}
|
|
5796
|
+
@keyframes tooltip-close-left {
|
|
5797
|
+
from {
|
|
5798
|
+
left: -8px;
|
|
5799
|
+
opacity: 0.5;
|
|
5800
|
+
}
|
|
5801
|
+
to {
|
|
5802
|
+
left: 0px;
|
|
5803
|
+
opacity: 0;
|
|
5804
|
+
}
|
|
5805
|
+
}
|
|
5806
|
+
|
|
5807
|
+
.Tooltip-animation-open-left {
|
|
5808
|
+
-webkit-animation: tooltip-open-left 120ms cubic-bezier(0, 0, 0.3, 1);
|
|
5809
|
+
animation: tooltip-open-left 120ms cubic-bezier(0, 0, 0.3, 1);
|
|
5810
|
+
-webkit-animation-fill-mode: forwards;
|
|
5811
|
+
animation-fill-mode: forwards;
|
|
5812
|
+
}
|
|
5813
|
+
.Tooltip-animation-close-left {
|
|
5814
|
+
-webkit-animation: tooltip-close-left 120ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
5815
|
+
animation: tooltip-close-left 120ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
5816
|
+
}
|
|
5817
|
+
|
|
5818
|
+
@-webkit-keyframes tooltip-open-right {
|
|
5819
|
+
from {
|
|
5820
|
+
left: 0px;
|
|
5821
|
+
opacity: 0.5;
|
|
5822
|
+
}
|
|
5823
|
+
to {
|
|
5824
|
+
left: 8px;
|
|
5825
|
+
opacity: 1;
|
|
5826
|
+
}
|
|
5827
|
+
}
|
|
5828
|
+
|
|
5829
|
+
@keyframes tooltip-open-right {
|
|
5830
|
+
from {
|
|
5831
|
+
left: 0px;
|
|
5832
|
+
opacity: 0.5;
|
|
5833
|
+
}
|
|
5834
|
+
to {
|
|
5835
|
+
left: 8px;
|
|
5836
|
+
opacity: 1;
|
|
5837
|
+
}
|
|
5838
|
+
}
|
|
5839
|
+
@-webkit-keyframes tooltip-close-right {
|
|
5840
|
+
from {
|
|
5841
|
+
left: 8px;
|
|
5842
|
+
opacity: 0.5;
|
|
5843
|
+
}
|
|
5844
|
+
to {
|
|
5845
|
+
left: 0px;
|
|
5846
|
+
opacity: 0;
|
|
5847
|
+
}
|
|
5848
|
+
}
|
|
5849
|
+
@keyframes tooltip-close-right {
|
|
5850
|
+
from {
|
|
5851
|
+
left: 8px;
|
|
5852
|
+
opacity: 0.5;
|
|
5853
|
+
}
|
|
5854
|
+
to {
|
|
5855
|
+
left: 0px;
|
|
5856
|
+
opacity: 0;
|
|
5857
|
+
}
|
|
5858
|
+
}
|
|
5859
|
+
|
|
5860
|
+
.Tooltip-animation-open-right {
|
|
5861
|
+
-webkit-animation: tooltip-open-right 120ms cubic-bezier(0, 0, 0.3, 1);
|
|
5862
|
+
animation: tooltip-open-right 120ms cubic-bezier(0, 0, 0.3, 1);
|
|
5863
|
+
-webkit-animation-fill-mode: forwards;
|
|
5864
|
+
animation-fill-mode: forwards;
|
|
5865
|
+
}
|
|
5866
|
+
.Tooltip-animation-close-right {
|
|
5867
|
+
-webkit-animation: tooltip-close-right 120ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
5868
|
+
animation: tooltip-close-right 120ms cubic-bezier(0.4, 0.14, 1, 1);
|
|
5869
|
+
}
|
|
5870
|
+
|
|
5639
5871
|
.VerificationCodeInput-Input {
|
|
5640
5872
|
display: inline-flex;
|
|
5641
5873
|
width: 40px;
|
|
@@ -5717,11 +5949,13 @@ body {
|
|
|
5717
5949
|
|
|
5718
5950
|
.MenuItem:hover {
|
|
5719
5951
|
background-color: var(--secondary-light);
|
|
5952
|
+
box-shadow: var(--shadow-s);
|
|
5720
5953
|
}
|
|
5721
5954
|
|
|
5722
5955
|
.MenuItem--active,
|
|
5723
5956
|
.MenuItem--active:hover {
|
|
5724
5957
|
background: var(--primary-lightest);
|
|
5958
|
+
box-shadow: none;
|
|
5725
5959
|
}
|
|
5726
5960
|
|
|
5727
5961
|
.MenuItem--rounded {
|
|
@@ -7505,4 +7739,8 @@ body {
|
|
|
7505
7739
|
cursor: pointer;
|
|
7506
7740
|
}
|
|
7507
7741
|
|
|
7742
|
+
.white-space-nowrap {
|
|
7743
|
+
white-space: nowrap;
|
|
7744
|
+
}
|
|
7745
|
+
|
|
7508
7746
|
/*# sourceMappingURL=index.css.map */
|