@innovaccer/design-system 2.5.0 → 2.7.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/.eslintrc.json +54 -0
- package/.github/workflows/chromatic.yml +5 -0
- package/.github/workflows/main.yml +2 -2
- package/.github/workflows/pull_request.yml +2 -2
- package/.github/workflows/test.yml +1 -1
- package/.husky/commit-msg +4 -0
- package/.prettierrc +2 -2
- package/.storybook/main.js +4 -0
- package/.vscode/settings.json +11 -0
- package/CHANGELOG.md +78 -0
- package/CONTRIBUTING.md +180 -98
- package/commitlint.config.js +1 -0
- package/core/accessibility/utils/index.ts +5 -0
- package/core/accessibility/utils/isEnterKey.ts +5 -0
- package/core/accessibility/utils/isSpaceKey.ts +5 -0
- package/core/accessibility/utils/useAccessibilityProps.ts +33 -0
- package/core/common.type.tsx +22 -0
- package/core/components/atoms/_chip/__tests__/__snapshots__/_chip.test.tsx.snap +17 -9
- package/core/components/atoms/_chip/index.tsx +19 -3
- package/core/components/atoms/avatar/Avatar.tsx +4 -14
- package/core/components/atoms/avatar/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/avatar/__tests__/Avatar.test.tsx +14 -9
- package/core/components/atoms/avatarGroup/AvatarGroup.tsx +3 -5
- package/core/components/atoms/badge/Badge.tsx +2 -12
- package/core/components/atoms/badge/__tests__/Badge.test.tsx +22 -7
- package/core/components/atoms/badge/_stories_/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/badge/_stories_/variants/Subtle.story.tsx +3 -2
- package/core/components/atoms/button/Button.tsx +10 -7
- package/core/components/atoms/button/__stories__/Alert.story.tsx +8 -1
- package/core/components/atoms/button/__stories__/Cancel.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/IconButtonGroup.story.tsx +12 -3
- package/core/components/atoms/button/__stories__/IconButtonSecondary.story.tsx +6 -1
- package/core/components/atoms/button/__stories__/IconLeftSecondary.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/IconRightSecondary.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/IconTransparent.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/LabelButtonGroup.story.tsx +14 -3
- package/core/components/atoms/button/__stories__/LargeIconExpanded.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/LoadingPrimary.story.tsx +4 -1
- package/core/components/atoms/button/__stories__/Primary.story.tsx +5 -2
- package/core/components/atoms/button/__stories__/SplitButton.story.tsx +6 -1
- package/core/components/atoms/button/__stories__/Transparent.story.tsx +8 -1
- package/core/components/atoms/button/__stories__/index.story.tsx +12 -2
- package/core/components/atoms/button/__stories__/variants/Appearance.story.tsx +6 -2
- package/core/components/atoms/button/__stories__/variants/Expanded.story.tsx +6 -2
- package/core/components/atoms/button/__stories__/variants/Size.story.tsx +4 -0
- package/core/components/atoms/button/__stories__/variants/icon/Icon.story.tsx +15 -0
- package/core/components/atoms/button/__stories__/variants/icon/IconLeft.story.tsx +6 -2
- package/core/components/atoms/button/__stories__/variants/icon/IconRight.story.tsx +6 -2
- package/core/components/atoms/button/__stories__/variants/state/Alert.story.tsx +7 -17
- package/core/components/atoms/button/__stories__/variants/state/Basic.story.tsx +9 -17
- package/core/components/atoms/button/__stories__/variants/state/Primary.story.tsx +7 -17
- package/core/components/atoms/button/__stories__/variants/state/Transparent.story.tsx +13 -17
- package/core/components/atoms/button/__tests__/Button.test.tsx +1 -1
- package/core/components/atoms/button/__tests__/__snapshots__/Button.test.tsx.snap +0 -137
- package/core/components/atoms/card/__stories__/empty.story.tsx +1 -1
- package/core/components/atoms/card/__stories__/nested.story.tsx +1 -1
- package/core/components/atoms/card/__stories__/scroll.story.tsx +1 -1
- package/core/components/atoms/checkbox/Checkbox.tsx +8 -9
- package/core/components/atoms/checkbox/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/chip/Chip.tsx +3 -2
- package/core/components/atoms/chip/__stories__/variants/Selection.story.tsx +17 -0
- package/core/components/atoms/chip/__stories__/variants/Type.story.tsx +2 -2
- package/core/components/atoms/chip/__tests__/Chip.test.tsx +7 -0
- package/core/components/atoms/chipGroup/__tests__/__snapshots__/chipGroup.test.tsx.snap +11 -5
- package/core/components/atoms/chipGroup/__tests__/chipGroup.test.tsx +2 -2
- package/core/components/atoms/chipGroup/_stories_/index.story.tsx +2 -2
- package/core/components/atoms/collapsible/__tests__/__snapshots__/Collapsible.test.tsx.snap +8 -0
- package/core/components/atoms/divider/Divider.tsx +44 -0
- package/core/components/atoms/divider/__stories__/BasicDividerInCard.story.tsx +74 -0
- package/core/components/atoms/divider/__stories__/HeaderDividerInCard.story.tsx +35 -0
- package/core/components/atoms/divider/__stories__/IndentedDivider.story.tsx +49 -0
- package/core/components/atoms/divider/__stories__/Vertical.story.tsx +51 -0
- package/core/components/atoms/divider/__stories__/index.story.tsx +91 -0
- package/core/components/atoms/divider/__stories__/variants/HorizontalDivider.story.tsx +27 -0
- package/core/components/atoms/divider/__tests__/Divider.test.tsx +50 -0
- package/core/components/atoms/divider/__tests__/__snapshots__/Divider.test.tsx.snap +53 -0
- package/core/components/atoms/divider/index.tsx +2 -0
- package/core/components/atoms/dropdown/Dropdown.tsx +18 -17
- package/core/components/atoms/dropdown/DropdownButton.tsx +2 -2
- package/core/components/atoms/dropdown/DropdownList.tsx +18 -7
- package/core/components/atoms/dropdown/Loading.tsx +1 -1
- package/core/components/atoms/dropdown/__stories__/CustomSearchPlaceholder.story.tsx +45 -0
- package/core/components/atoms/dropdown/__stories__/_common_/types.tsx +3 -0
- package/core/components/atoms/dropdown/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/dropdown/__stories__/variants/controlledDropdown/MultiSelect.story.tsx +28 -18
- package/core/components/atoms/dropdown/__tests__/Dropdown.test.tsx +12 -1
- package/core/components/atoms/dropdown/__tests__/Loading.test.tsx +0 -1
- package/core/components/atoms/dropdown/option/DefaultOption.tsx +3 -0
- package/core/components/atoms/dropdown/option/IconOption.tsx +3 -0
- package/core/components/atoms/dropdown/option/IconWithMetaOption.tsx +3 -0
- package/core/components/atoms/dropdown/option/MetaOption.tsx +3 -0
- package/core/components/atoms/dropdown/option/index.tsx +1 -1
- package/core/components/atoms/editable/Editable.tsx +3 -0
- package/core/components/atoms/heading/Heading.tsx +4 -4
- package/core/components/atoms/heading/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/heading/__tests__/Heading.test.tsx +4 -3
- package/core/components/atoms/icon/Icon.tsx +16 -5
- package/core/components/atoms/icon/__stories__/variants/Image.story.tsx +6 -1
- package/core/components/atoms/icon/__tests__/__snapshots__/Icon.test.tsx.snap +74 -0
- package/core/components/atoms/input/Input.tsx +17 -7
- package/core/components/atoms/input/__stories__/BasicInput.story.tsx +2 -1
- package/core/components/atoms/input/__stories__/InputWithCaption.story.tsx +91 -9
- package/core/components/atoms/input/__stories__/InputWithLabel.story.tsx +11 -3
- package/core/components/atoms/input/__stories__/LabelPosition.story.tsx +46 -4
- package/core/components/atoms/input/__stories__/RequiredVsOptional.story.tsx +12 -8
- package/core/components/atoms/input/__stories__/variants/controlledInput.story.tsx +46 -0
- package/core/components/atoms/input/__stories__/variants/types/BasicInput.story.tsx +2 -2
- package/core/components/atoms/input/__stories__/variants/types/IconLeft.story.tsx +2 -10
- package/core/components/atoms/input/__stories__/variants/types/WithLabel.story.tsx +1 -9
- package/core/components/atoms/input/__tests__/__snapshots__/Input.test.tsx.snap +19 -0
- package/core/components/atoms/label/Label.tsx +1 -1
- package/core/components/atoms/legend/Legend.tsx +5 -2
- package/core/components/atoms/legend/__stories__/variants/labelAppearance.story.tsx +2 -2
- package/core/components/atoms/link/Link.tsx +4 -4
- package/core/components/atoms/message/Message.tsx +12 -12
- package/core/components/atoms/message/__stories__/index.story.tsx +1 -1
- package/core/components/atoms/message/__stories__/variants/Appearance.story.tsx +1 -1
- package/core/components/atoms/message/__stories__/variants/AppearanceTitle.story.tsx +1 -1
- package/core/components/atoms/message/__tests__/Message.test.tsx +1 -6
- package/core/components/atoms/message/__tests__/__snapshots__/Message.test.tsx.snap +0 -45
- package/core/components/atoms/metaList/__tests__/MetaList.test.tsx +2 -2
- package/core/components/atoms/metricInput/MetricInput.tsx +17 -7
- package/core/components/atoms/metricInput/__stories__/DefaultMetric.story.tsx +8 -2
- package/core/components/atoms/metricInput/__stories__/WithPrefix.story.tsx +6 -2
- package/core/components/atoms/metricInput/__stories__/index.story.tsx +1 -0
- package/core/components/atoms/metricInput/__stories__/variants/Controlled.story.tsx +2 -0
- package/core/components/atoms/metricInput/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/metricInput/__stories__/withSuffix.story.tsx +6 -2
- package/core/components/atoms/metricInput/__tests__/__snapshots__/MetricInput.test.tsx.snap +20 -4
- package/core/components/atoms/multiSlider/Handle.tsx +3 -0
- package/core/components/atoms/multiSlider/SliderUtils.tsx +1 -4
- package/core/components/atoms/multiSlider/index.tsx +9 -4
- package/core/components/atoms/outsideClick/OutsideClick.tsx +1 -2
- package/core/components/atoms/paragraph/Paragraph.tsx +2 -2
- package/core/components/atoms/paragraph/__stories__/variants/Appearance.story.tsx +2 -2
- package/core/components/atoms/paragraph/__tests__/Paragraph.test.tsx +2 -2
- package/core/components/atoms/pills/Pills.tsx +2 -12
- package/core/components/atoms/pills/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/pills/__stories__/variants/Subtle.story.tsx +3 -2
- package/core/components/atoms/pills/__tests__/Pills.test.tsx +3 -2
- package/core/components/atoms/placeholderImage/PlaceholderImage.tsx +2 -2
- package/core/components/atoms/placeholderImage/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/placeholderParagraph/PlaceholderParagraph.tsx +2 -2
- package/core/components/atoms/placeholderParagraph/__stories__/variants/Size.story.tsx +2 -2
- package/core/components/atoms/popperWrapper/PopperWrapper.tsx +2 -6
- package/core/components/atoms/progressRing/ProgressRing.tsx +2 -2
- package/core/components/atoms/progressRing/__stories__/variants/Size.story.tsx +1 -1
- package/core/components/atoms/radio/Radio.tsx +4 -5
- package/core/components/atoms/rangeSlider/RangeSlider.tsx +1 -2
- package/core/components/atoms/rangeSlider/__stories__/index.story.tsx +1 -2
- package/core/components/atoms/rangeSlider/__stories__/variants/Controlled.story.tsx +1 -2
- package/core/components/atoms/rangeSlider/__stories__/variants/CustomLabels.story.tsx +1 -2
- package/core/components/atoms/spinner/Spinner.tsx +4 -4
- package/core/components/atoms/spinner/__stories__/variants/Appearance.story.tsx +2 -2
- package/core/components/atoms/spinner/__stories__/variants/Size.story.tsx +1 -1
- package/core/components/atoms/statusHint/StatusHint.tsx +5 -3
- package/core/components/atoms/statusHint/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/statusHint/__tests__/StatusHint.test.tsx +3 -2
- package/core/components/atoms/subheading/Subheading.tsx +2 -2
- package/core/components/atoms/subheading/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/subheading/__tests__/Subheading.test.tsx +3 -2
- package/core/components/atoms/switchInput/Switch.tsx +14 -9
- package/core/components/atoms/switchInput/__stories__/DefaultSwitch.story.tsx +4 -1
- package/core/components/atoms/switchInput/__stories__/OffState.story.tsx +4 -1
- package/core/components/atoms/switchInput/__stories__/index.story.tsx +26 -3
- package/core/components/atoms/switchInput/__stories__/variants/Size.story.tsx +10 -1
- package/core/components/atoms/switchInput/__stories__/variants/State.story.tsx +9 -2
- package/core/components/atoms/text/Text.tsx +4 -4
- package/core/components/atoms/text/__stories__/variants/Appearance.story.tsx +2 -2
- package/core/components/atoms/text/__tests__/Text.test.tsx +2 -3
- package/core/components/atoms/textarea/__stories__/TextareaWithCaption.story.tsx +9 -3
- package/core/components/atoms/textarea/__stories__/defaultTextarea.story.tsx +10 -2
- package/core/components/atoms/textarea/__stories__/index.story.tsx +1 -0
- package/core/components/atoms/textarea/__stories__/variants/Disable.story.tsx +1 -0
- package/core/components/atoms/toast/ActionButton.tsx +2 -2
- package/core/components/atoms/toast/Toast.tsx +11 -6
- package/core/components/atoms/toast/__stories__/index.story.tsx +2 -6
- package/core/components/atoms/toast/__stories__/variants/Appearance.story.tsx +3 -2
- package/core/components/atoms/toast/__stories__/variants/ToastMessage.story.tsx +3 -2
- package/core/components/atoms/toast/__stories__/variants/ToastWithAction.story.tsx +3 -2
- package/core/components/atoms/toast/__tests__/Toast.test.tsx +1 -1
- package/core/components/atoms/toast/__tests__/__snapshots__/Toast.test.tsx.snap +24 -125
- package/core/components/css-utilities/Schema.tsx +1 -1
- package/core/components/css-utilities/Spacing/Schema.tsx +1 -1
- package/core/components/molecules/chatMessage/Box.tsx +3 -0
- package/core/components/molecules/chipInput/ChipInput.tsx +3 -0
- package/core/components/molecules/chipInput/__tests__/__snapshots__/ChipInput.test.tsx.snap +14 -2
- package/core/components/molecules/dropzone/Dropzone.tsx +6 -3
- package/core/components/molecules/dropzone/DropzoneBase.tsx +22 -38
- package/core/components/molecules/dropzone/FileSelectorUtils.tsx +1 -1
- package/core/components/molecules/dropzone/__stories__/index.story.tsx +151 -41
- package/core/components/molecules/dropzone/__tests__/Dropzone.test.tsx +2 -2
- package/core/components/molecules/dropzone/utils.tsx +6 -4
- package/core/components/molecules/editableChipInput/EditableChipInput.tsx +9 -5
- package/core/components/molecules/editableChipInput/__stories__/Uncontrolled.story.tsx +1 -1
- package/core/components/molecules/editableChipInput/__tests__/__snapshots__/EditableChipInput.test.tsx.snap +12 -4
- package/core/components/molecules/editableDropdown/EditableDropdown.tsx +2 -2
- package/core/components/molecules/editableInput/EditableInput.tsx +13 -4
- package/core/components/molecules/emptyState/EmptyState.tsx +9 -5
- package/core/components/molecules/emptyState/__stories__/pageNotLoadedWithSVG.story.tsx +26 -26
- package/core/components/molecules/fileList/FileListItem.tsx +3 -2
- package/core/components/molecules/fileUploader/FileUploaderItem.tsx +3 -2
- package/core/components/molecules/fileUploader/FileUploaderStatus.tsx +1 -1
- package/core/components/molecules/fileUploader/__stories__/_common_/types.tsx +3 -0
- package/core/components/molecules/fileUploader/__stories__/index.story.tsx +3 -222
- package/core/components/molecules/fullscreenModal/FullscreenModal.tsx +5 -7
- package/core/components/molecules/inputMask/InputMask.tsx +212 -146
- package/core/components/molecules/inputMask/__stories__/index.story.tsx +24 -0
- package/core/components/molecules/inputMask/__tests__/__snapshots__/InputMask.test.tsx.snap +1 -0
- package/core/components/molecules/modal/Modal.tsx +4 -6
- package/core/components/molecules/modal/__stories__/Confirmation.story.tsx +1 -1
- package/core/components/molecules/pagination/__tests__/__snapshots__/Pagination.test.tsx.snap +5 -1
- package/core/components/molecules/placeholder/Placeholder.tsx +2 -2
- package/core/components/molecules/popover/Popover.tsx +2 -9
- package/core/components/molecules/sidesheet/Sidesheet.tsx +5 -7
- package/core/components/molecules/sidesheet/__stories__/variants/CustomHeader.story.tsx +172 -0
- package/core/components/molecules/stepper/Step.tsx +2 -0
- package/core/components/molecules/tabs/Tabs.tsx +2 -0
- package/core/components/molecules/tabs/TabsWrapper.tsx +2 -0
- package/core/components/molecules/tabs/__stories__/CustomLabels.story.tsx +1 -1
- package/core/components/molecules/tooltip/Tooltip.tsx +4 -4
- package/core/components/molecules/verificationCodeInput/VerificationCodeInput.tsx +8 -4
- package/core/components/molecules/verificationCodeInput/__stories__/index.story.tsx +3 -1
- package/core/components/molecules/verificationCodeInput/__tests__/__snapshots__/VerificationCodeInput.test.tsx.snap +1 -0
- package/core/components/organisms/calendar/Calendar.tsx +130 -8
- package/core/components/organisms/calendar/__stories__/variants/firstDayOfWeek.story.tsx +2 -2
- package/core/components/organisms/calendar/__tests__/Calendar.test.tsx +27 -0
- package/core/components/organisms/calendar/utility.ts +3 -3
- package/core/components/organisms/choiceList/ChoiceList.tsx +12 -12
- package/core/components/organisms/datePicker/DatePicker.tsx +31 -16
- package/core/components/organisms/datePicker/Trigger.tsx +1 -5
- package/core/components/organisms/datePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap +4518 -4479
- package/core/components/organisms/dateRangePicker/DateRangePicker.tsx +9 -10
- package/core/components/organisms/dateRangePicker/SingleInputTrigger.tsx +0 -1
- package/core/components/organisms/dateRangePicker/Trigger.tsx +2 -2
- package/core/components/organisms/dateRangePicker/__stories__/variants/monthsInView.story.tsx +2 -2
- package/core/components/organisms/dateRangePicker/__tests__/__snapshots__/DateRangePicker.test.tsx.snap +112 -40
- package/core/components/organisms/grid/Cell.tsx +23 -19
- package/core/components/organisms/grid/Grid.tsx +3 -4
- package/core/components/organisms/grid/GridBody.tsx +0 -1
- package/core/components/organisms/grid/GridContext.ts +1 -1
- package/core/components/organisms/grid/GridRow.tsx +4 -0
- package/core/components/organisms/grid/__stories__/_common_/editableSchema.tsx +1 -3
- package/core/components/organisms/grid/__stories__/_common_/fetchData.ts +3 -3
- package/core/components/organisms/grid/__stories__/_common_/loaderSchema.ts +0 -2
- package/core/components/organisms/grid/__stories__/_common_/schema.tsx +1 -3
- package/core/components/organisms/grid/__stories__/_common_/simpleLoaderSchema.ts +0 -2
- package/core/components/organisms/grid/__stories__/_common_/statusSchema.ts +0 -2
- package/core/components/organisms/horizontalNav/HorizontalNav.tsx +2 -0
- package/core/components/organisms/inlineMessage/InlineMessage.tsx +5 -7
- package/core/components/organisms/inlineMessage/__tests__/InlineMessage.test.tsx +3 -2
- package/core/components/organisms/inlineMessage/__tests__/__snapshots__/InlineMessage.test.tsx.snap +30 -40
- package/core/components/organisms/list/__stories__/_common_/types.tsx +3 -0
- package/core/components/organisms/list/__stories__/index.story.tsx +0 -16
- package/core/components/organisms/navigation/VerticalNavigation.tsx +4 -0
- package/core/components/organisms/table/Table.tsx +3 -2
- package/core/components/organisms/table/__stories__/CompressedTable.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/DataTable.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/NestedTableWithNestedCard.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/PinnedColumn.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/ResourceTable.story.tsx +4 -3
- package/core/components/organisms/table/__stories__/Selection.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/StandardTable.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/TableAsDescriptionList.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/TableAsOptionList.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/TightStory.story.tsx +1 -1
- package/core/components/organisms/table/__stories__/_common_/types.tsx +3 -0
- package/core/components/organisms/table/__stories__/syncTable.story.tsx +14 -6
- package/core/components/organisms/table/__stories__/variants/showHead.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/showMenu.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/size.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/type.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/withCheckbox.story.tsx +2 -2
- package/core/components/organisms/table/__stories__/variants/withHeader.story.tsx +0 -2
- package/core/components/organisms/table/__stories__/variants/withPagination.story.tsx +2 -2
- package/core/components/organisms/timePicker/TimePicker.tsx +4 -8
- package/core/components/organisms/timePicker/__tests__/__snapshots__/TimePicker.test.tsx.snap +14 -2
- package/core/components/organisms/verticalNav/MenuItem.tsx +2 -0
- package/core/components/organisms/verticalNav/__stories__/schema.tsx +0 -2
- package/core/components/organisms/verticalNav/__tests__/VerticalNav.test.tsx +1 -2
- package/core/components/patterns/datePicker/datePickerWithPresets.story.tsx +126 -0
- package/core/components/patterns/dateRangePicker/withCustomPopover.story.tsx +8 -8
- package/core/components/patterns/forms/CreatePassword.story.tsx +1 -1
- package/core/components/patterns/forms/VerificationCodeInput.story.tsx +2 -2
- package/core/components/patterns/table/Table with Header/tableWithHeader.story.jsx +7 -7
- package/core/global.d.ts +9 -0
- package/core/index.tsx +2 -1
- package/core/index.type.tsx +1 -0
- package/core/utils/Keys.ts +4 -0
- package/core/utils/__tests__/__snapshots__/TS.test.tsx.snap +562 -541
- package/core/utils/docPage/generateImports.tsx +2 -3
- package/core/utils/docPage/index.tsx +52 -37
- package/core/utils/docPage/sandbox.tsx +14 -7
- package/core/utils/overlayHelper.ts +7 -3
- package/core/utils/testHelper.ts +2 -2
- package/core/utils/types.tsx +1 -1
- package/core/utils/validators.ts +37 -34
- package/css/dist/index.css +1550 -1415
- package/css/dist/index.css.map +1 -1
- package/css/src/components/Legend.css +7 -7
- package/css/src/components/ProgressBar.css +1 -1
- package/css/src/components/avatarGroup.css +1 -1
- package/css/src/components/backdrop.css +12 -6
- package/css/src/components/badge.css +52 -52
- package/css/src/components/button.css +95 -94
- package/css/src/components/calendar.css +137 -126
- package/css/src/components/card.css +0 -1
- package/css/src/components/cardSubdued.css +3 -5
- package/css/src/components/chat.css +1 -1
- package/css/src/components/checkbox.css +71 -70
- package/css/src/components/chip.css +20 -17
- package/css/src/components/chipGroup.css +5 -5
- package/css/src/components/chipInput.css +1 -1
- package/css/src/components/choiceList.css +4 -4
- package/css/src/components/dateRangePicker.css +13 -13
- package/css/src/components/divider.css +20 -0
- package/css/src/components/dropdown.css +61 -61
- package/css/src/components/dropdownButton.css +36 -36
- package/css/src/components/dropzone.css +16 -20
- package/css/src/components/editableChipInput.css +10 -9
- package/css/src/components/editableDropdown.css +1 -1
- package/css/src/components/editableInput.css +1 -1
- package/css/src/components/emptyState.css +15 -15
- package/css/src/components/fileList.css +44 -45
- package/css/src/components/fullscreenModal.css +4 -3
- package/css/src/components/grid.css +217 -199
- package/css/src/components/horizontalNav.css +0 -1
- package/css/src/components/icon.css +1 -7
- package/css/src/components/inlineMessage.css +2 -1
- package/css/src/components/input.css +62 -62
- package/css/src/components/link.css +1 -1
- package/css/src/components/list.css +10 -10
- package/css/src/components/message.css +64 -70
- package/css/src/components/metaList.css +26 -26
- package/css/src/components/metricInput.css +3 -4
- package/css/src/components/modal.css +1 -1
- package/css/src/components/navigation.css +3 -3
- package/css/src/components/pageHeader.css +1 -2
- package/css/src/components/pagination.css +36 -36
- package/css/src/components/pills.css +19 -19
- package/css/src/components/placeholder.css +10 -5
- package/css/src/components/popover.css +2 -2
- package/css/src/components/progressRing.css +1 -1
- package/css/src/components/radio.css +74 -74
- package/css/src/components/slider.css +5 -5
- package/css/src/components/statusHints.css +15 -15
- package/css/src/components/switch.css +66 -41
- package/css/src/components/table.css +15 -15
- package/css/src/components/tabs.css +53 -53
- package/css/src/components/textarea.css +1 -1
- package/css/src/components/toast.css +51 -56
- package/css/src/components/verificationCodeInput.css +5 -6
- package/css/src/components/verticalNav.css +1 -2
- package/css/src/core/base.css +3 -0
- package/css/src/core/typography.css +1 -1
- package/css/src/core/utilities.css +1 -1
- package/css/src/tokens/index.css +63 -63
- package/css/src/utils/align.css +1 -1
- package/css/src/utils/background.css +1 -1
- package/css/src/utils/cursor.css +1 -1
- package/css/src/utils/display.css +1 -1
- package/css/src/utils/flex.css +1 -1
- package/css/src/utils/grid.css +1 -1
- package/css/src/utils/overflow.css +1 -1
- package/css/src/utils/position.css +1 -1
- package/css/src/utils/spacing.css +1 -1
- package/css/src/utils/utility.css +13 -13
- package/css/src/variables/index.css +6 -3
- package/dist/core/accessibility/utils/index.d.ts +4 -0
- package/dist/core/accessibility/utils/isEnterKey.d.ts +3 -0
- package/dist/core/accessibility/utils/isSpaceKey.d.ts +3 -0
- package/dist/core/accessibility/utils/useAccessibilityProps.d.ts +18 -0
- package/dist/core/common.type.d.ts +12 -0
- package/dist/core/components/atoms/avatar/Avatar.d.ts +4 -4
- package/dist/core/components/atoms/avatarGroup/AvatarGroup.d.ts +2 -3
- package/dist/core/components/atoms/badge/Badge.d.ts +2 -2
- package/dist/core/components/atoms/button/Button.d.ts +6 -6
- package/dist/core/components/atoms/checkbox/Checkbox.d.ts +3 -3
- package/dist/core/components/atoms/chip/Chip.d.ts +2 -2
- package/dist/core/components/atoms/divider/Divider.d.ts +15 -0
- package/dist/core/components/atoms/divider/index.d.ts +2 -0
- package/dist/core/components/atoms/dropdown/Dropdown.d.ts +18 -17
- package/dist/core/components/atoms/dropdown/DropdownButton.d.ts +2 -2
- package/dist/core/components/atoms/dropdown/DropdownList.d.ts +4 -3
- package/dist/core/components/atoms/dropdown/option/index.d.ts +1 -1
- package/dist/core/components/atoms/heading/Heading.d.ts +4 -4
- package/dist/core/components/atoms/icon/Icon.d.ts +5 -3
- package/dist/core/components/atoms/input/Input.d.ts +4 -4
- package/dist/core/components/atoms/legend/Legend.d.ts +2 -2
- package/dist/core/components/atoms/link/Link.d.ts +4 -4
- package/dist/core/components/atoms/message/Message.d.ts +2 -2
- package/dist/core/components/atoms/metricInput/MetricInput.d.ts +3 -3
- package/dist/core/components/atoms/multiSlider/SliderUtils.d.ts +1 -1
- package/dist/core/components/atoms/multiSlider/index.d.ts +3 -3
- package/dist/core/components/atoms/paragraph/Paragraph.d.ts +2 -2
- package/dist/core/components/atoms/pills/Pills.d.ts +2 -2
- package/dist/core/components/atoms/placeholderImage/PlaceholderImage.d.ts +2 -2
- package/dist/core/components/atoms/placeholderParagraph/PlaceholderParagraph.d.ts +2 -2
- package/dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts +51 -51
- package/dist/core/components/atoms/progressRing/ProgressRing.d.ts +2 -2
- package/dist/core/components/atoms/radio/Radio.d.ts +4 -4
- package/dist/core/components/atoms/rangeSlider/RangeSlider.d.ts +1 -1
- package/dist/core/components/atoms/spinner/Spinner.d.ts +4 -4
- package/dist/core/components/atoms/statusHint/StatusHint.d.ts +2 -2
- package/dist/core/components/atoms/subheading/Subheading.d.ts +2 -2
- package/dist/core/components/atoms/switchInput/Switch.d.ts +7 -6
- package/dist/core/components/atoms/text/Text.d.ts +4 -4
- package/dist/core/components/atoms/toast/ActionButton.d.ts +2 -2
- package/dist/core/components/atoms/toast/Toast.d.ts +2 -2
- package/dist/core/components/molecules/dropzone/Dropzone.d.ts +3 -3
- package/dist/core/components/molecules/dropzone/DropzoneBase.d.ts +1 -1
- package/dist/core/components/molecules/dropzone/utils.d.ts +5 -3
- package/dist/core/components/molecules/emptyState/EmptyState.d.ts +4 -4
- package/dist/core/components/molecules/fileList/FileListItem.d.ts +1 -1
- package/dist/core/components/molecules/fileUploader/FileUploaderItem.d.ts +1 -1
- package/dist/core/components/molecules/fileUploader/FileUploaderStatus.d.ts +1 -1
- package/dist/core/components/molecules/fullscreenModal/FullscreenModal.d.ts +4 -7
- package/dist/core/components/molecules/inputMask/InputMask.d.ts +10 -2
- package/dist/core/components/molecules/modal/Modal.d.ts +3 -6
- package/dist/core/components/molecules/placeholder/Placeholder.d.ts +2 -2
- package/dist/core/components/molecules/popover/Popover.d.ts +0 -1
- package/dist/core/components/molecules/sidesheet/Sidesheet.d.ts +3 -6
- package/dist/core/components/molecules/tooltip/Tooltip.d.ts +3 -3
- package/dist/core/components/organisms/calendar/Calendar.d.ts +31 -0
- package/dist/core/components/organisms/choiceList/ChoiceList.d.ts +5 -6
- package/dist/core/components/organisms/datePicker/DatePicker.d.ts +2 -0
- package/dist/core/components/organisms/dateRangePicker/DateRangePicker.d.ts +24 -0
- package/dist/core/components/organisms/grid/Cell.d.ts +1 -1
- package/dist/core/components/organisms/grid/Grid.d.ts +3 -3
- package/dist/core/components/organisms/grid/GridContext.d.ts +1 -1
- package/dist/core/components/organisms/inlineMessage/InlineMessage.d.ts +2 -2
- package/dist/core/components/organisms/table/Table.d.ts +2 -2
- package/dist/core/components/patterns/datePicker/datePickerWithPresets.story.d.ts +15 -0
- package/dist/core/components/patterns/dateRangePicker/withCustomPopover.story.d.ts +5 -1
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.type.d.ts +1 -0
- package/dist/core/utils/docPage/generateImports.d.ts +1 -1
- package/dist/core/utils/overlayHelper.d.ts +1 -1
- package/dist/core/utils/types.d.ts +1 -1
- package/dist/index.esm.js +1039 -729
- package/dist/index.js +532 -371
- 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/dts.config.js +11 -2
- package/package.json +32 -27
- package/tsconfig.json +3 -16
- package/tsconfig.type.json +2 -1
- package/types/index.d.ts +2217 -0
- package/types/{innovaccer-design-system/tsconfig.json → tsconfig.json} +1 -1
- package/types/{innovaccer-design-system/tslint.json → tslint.json} +0 -0
- package/types/types-tests.tsx +936 -0
- package/.husky/prepare-commit-msg +0 -6
- package/core/components/atoms/button/__stories__/variants/state/Success.story.tsx +0 -99
- package/core/components/atoms/message/__stories__/default.story.tsx +0 -16
- package/core/components/atoms/toast/__stories__/DefaultToast.story.tsx +0 -16
- package/core/components/molecules/dropzone/__stories__/variants/DropzoneWithFileList.story.tsx +0 -176
- package/core/components/molecules/fileUploader/__stories__/variants/FileUploaderList.story.tsx +0 -80
- package/tslint.json +0 -30
- package/types/innovaccer-design-system/index.d.ts +0 -39
- package/types/innovaccer-design-system/innovaccer-design-system-tests.ts +0 -0
|
@@ -38970,11 +38970,11 @@ exports[`DateRangePicker component
|
|
|
38970
38970
|
class="Calendar-valueRow"
|
|
38971
38971
|
>
|
|
38972
38972
|
<div
|
|
38973
|
-
class="Calendar-value Calendar-monthValue Calendar-monthValue--large
|
|
38973
|
+
class="Calendar-value Calendar-monthValue Calendar-monthValue--large"
|
|
38974
38974
|
data-test="DesignSystem-Calendar--monthValue"
|
|
38975
38975
|
>
|
|
38976
38976
|
<span
|
|
38977
|
-
class="Text Text--
|
|
38977
|
+
class="Text Text--default Text--regular"
|
|
38978
38978
|
data-test="DesignSystem-Text"
|
|
38979
38979
|
>
|
|
38980
38980
|
Oct
|
|
@@ -38992,11 +38992,11 @@ exports[`DateRangePicker component
|
|
|
38992
38992
|
</span>
|
|
38993
38993
|
</div>
|
|
38994
38994
|
<div
|
|
38995
|
-
class="Calendar-value Calendar-monthValue Calendar-monthValue--large"
|
|
38995
|
+
class="Calendar-value Calendar-monthValue Calendar-monthValue--large Calendar-value--currDateMonthYear"
|
|
38996
38996
|
data-test="DesignSystem-Calendar--monthValue"
|
|
38997
38997
|
>
|
|
38998
38998
|
<span
|
|
38999
|
-
class="Text Text--
|
|
38999
|
+
class="Text Text--link Text--regular"
|
|
39000
39000
|
data-test="DesignSystem-Text"
|
|
39001
39001
|
>
|
|
39002
39002
|
Dec
|
|
@@ -39269,6 +39269,7 @@ exports[`DateRangePicker component
|
|
|
39269
39269
|
<div
|
|
39270
39270
|
class="Input Input--regular"
|
|
39271
39271
|
data-test="DesignSystem-InputWrapper"
|
|
39272
|
+
role="presentation"
|
|
39272
39273
|
style="min-width: 256px;"
|
|
39273
39274
|
>
|
|
39274
39275
|
<div
|
|
@@ -39292,11 +39293,13 @@ exports[`DateRangePicker component
|
|
|
39292
39293
|
/>
|
|
39293
39294
|
<div
|
|
39294
39295
|
class="Input-icon Input-icon--right"
|
|
39295
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
39296
39296
|
>
|
|
39297
39297
|
<i
|
|
39298
39298
|
class="material-icons material-icons-round Icon"
|
|
39299
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
39300
|
+
role="button"
|
|
39299
39301
|
style="font-size: 16px; width: 16px;"
|
|
39302
|
+
tabindex="0"
|
|
39300
39303
|
>
|
|
39301
39304
|
close_round
|
|
39302
39305
|
</i>
|
|
@@ -39335,6 +39338,7 @@ exports[`DateRangePicker component
|
|
|
39335
39338
|
<div
|
|
39336
39339
|
class="Input Input--regular"
|
|
39337
39340
|
data-test="DesignSystem-InputWrapper"
|
|
39341
|
+
role="presentation"
|
|
39338
39342
|
style="min-width: 256px;"
|
|
39339
39343
|
>
|
|
39340
39344
|
<div
|
|
@@ -39358,11 +39362,13 @@ exports[`DateRangePicker component
|
|
|
39358
39362
|
/>
|
|
39359
39363
|
<div
|
|
39360
39364
|
class="Input-icon Input-icon--right"
|
|
39361
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
39362
39365
|
>
|
|
39363
39366
|
<i
|
|
39364
39367
|
class="material-icons material-icons-round Icon"
|
|
39368
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
39369
|
+
role="button"
|
|
39365
39370
|
style="font-size: 16px; width: 16px;"
|
|
39371
|
+
tabindex="0"
|
|
39366
39372
|
>
|
|
39367
39373
|
close_round
|
|
39368
39374
|
</i>
|
|
@@ -39419,6 +39425,7 @@ exports[`DateRangePicker component
|
|
|
39419
39425
|
<div
|
|
39420
39426
|
class="Input Input--regular"
|
|
39421
39427
|
data-test="DesignSystem-InputWrapper"
|
|
39428
|
+
role="presentation"
|
|
39422
39429
|
style="min-width: 256px;"
|
|
39423
39430
|
>
|
|
39424
39431
|
<div
|
|
@@ -39442,11 +39449,13 @@ exports[`DateRangePicker component
|
|
|
39442
39449
|
/>
|
|
39443
39450
|
<div
|
|
39444
39451
|
class="Input-icon Input-icon--right"
|
|
39445
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
39446
39452
|
>
|
|
39447
39453
|
<i
|
|
39448
39454
|
class="material-icons material-icons-round Icon"
|
|
39455
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
39456
|
+
role="button"
|
|
39449
39457
|
style="font-size: 16px; width: 16px;"
|
|
39458
|
+
tabindex="0"
|
|
39450
39459
|
>
|
|
39451
39460
|
close_round
|
|
39452
39461
|
</i>
|
|
@@ -39485,6 +39494,7 @@ exports[`DateRangePicker component
|
|
|
39485
39494
|
<div
|
|
39486
39495
|
class="Input Input--regular"
|
|
39487
39496
|
data-test="DesignSystem-InputWrapper"
|
|
39497
|
+
role="presentation"
|
|
39488
39498
|
style="min-width: 256px;"
|
|
39489
39499
|
>
|
|
39490
39500
|
<div
|
|
@@ -39508,11 +39518,13 @@ exports[`DateRangePicker component
|
|
|
39508
39518
|
/>
|
|
39509
39519
|
<div
|
|
39510
39520
|
class="Input-icon Input-icon--right"
|
|
39511
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
39512
39521
|
>
|
|
39513
39522
|
<i
|
|
39514
39523
|
class="material-icons material-icons-round Icon"
|
|
39524
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
39525
|
+
role="button"
|
|
39515
39526
|
style="font-size: 16px; width: 16px;"
|
|
39527
|
+
tabindex="0"
|
|
39516
39528
|
>
|
|
39517
39529
|
close_round
|
|
39518
39530
|
</i>
|
|
@@ -39569,6 +39581,7 @@ exports[`DateRangePicker component
|
|
|
39569
39581
|
<div
|
|
39570
39582
|
class="Input Input--regular"
|
|
39571
39583
|
data-test="DesignSystem-InputWrapper"
|
|
39584
|
+
role="presentation"
|
|
39572
39585
|
style="min-width: 256px;"
|
|
39573
39586
|
>
|
|
39574
39587
|
<div
|
|
@@ -39592,11 +39605,13 @@ exports[`DateRangePicker component
|
|
|
39592
39605
|
/>
|
|
39593
39606
|
<div
|
|
39594
39607
|
class="Input-icon Input-icon--right"
|
|
39595
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
39596
39608
|
>
|
|
39597
39609
|
<i
|
|
39598
39610
|
class="material-icons material-icons-round Icon"
|
|
39611
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
39612
|
+
role="button"
|
|
39599
39613
|
style="font-size: 16px; width: 16px;"
|
|
39614
|
+
tabindex="0"
|
|
39600
39615
|
>
|
|
39601
39616
|
close_round
|
|
39602
39617
|
</i>
|
|
@@ -39635,6 +39650,7 @@ exports[`DateRangePicker component
|
|
|
39635
39650
|
<div
|
|
39636
39651
|
class="Input Input--regular"
|
|
39637
39652
|
data-test="DesignSystem-InputWrapper"
|
|
39653
|
+
role="presentation"
|
|
39638
39654
|
style="min-width: 256px;"
|
|
39639
39655
|
>
|
|
39640
39656
|
<div
|
|
@@ -39658,11 +39674,13 @@ exports[`DateRangePicker component
|
|
|
39658
39674
|
/>
|
|
39659
39675
|
<div
|
|
39660
39676
|
class="Input-icon Input-icon--right"
|
|
39661
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
39662
39677
|
>
|
|
39663
39678
|
<i
|
|
39664
39679
|
class="material-icons material-icons-round Icon"
|
|
39680
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
39681
|
+
role="button"
|
|
39665
39682
|
style="font-size: 16px; width: 16px;"
|
|
39683
|
+
tabindex="0"
|
|
39666
39684
|
>
|
|
39667
39685
|
close_round
|
|
39668
39686
|
</i>
|
|
@@ -40511,11 +40529,11 @@ exports[`DateRangePicker component
|
|
|
40511
40529
|
class="Calendar-valueRow"
|
|
40512
40530
|
>
|
|
40513
40531
|
<div
|
|
40514
|
-
class="Calendar-value Calendar-monthValue Calendar-monthValue--small
|
|
40532
|
+
class="Calendar-value Calendar-monthValue Calendar-monthValue--small"
|
|
40515
40533
|
data-test="DesignSystem-Calendar--monthValue"
|
|
40516
40534
|
>
|
|
40517
40535
|
<span
|
|
40518
|
-
class="Text Text--
|
|
40536
|
+
class="Text Text--default Text--small"
|
|
40519
40537
|
data-test="DesignSystem-Text"
|
|
40520
40538
|
>
|
|
40521
40539
|
Oct
|
|
@@ -40533,11 +40551,11 @@ exports[`DateRangePicker component
|
|
|
40533
40551
|
</span>
|
|
40534
40552
|
</div>
|
|
40535
40553
|
<div
|
|
40536
|
-
class="Calendar-value Calendar-monthValue Calendar-monthValue--small"
|
|
40554
|
+
class="Calendar-value Calendar-monthValue Calendar-monthValue--small Calendar-value--currDateMonthYear"
|
|
40537
40555
|
data-test="DesignSystem-Calendar--monthValue"
|
|
40538
40556
|
>
|
|
40539
40557
|
<span
|
|
40540
|
-
class="Text Text--
|
|
40558
|
+
class="Text Text--link Text--small"
|
|
40541
40559
|
data-test="DesignSystem-Text"
|
|
40542
40560
|
>
|
|
40543
40561
|
Dec
|
|
@@ -40810,6 +40828,7 @@ exports[`DateRangePicker component
|
|
|
40810
40828
|
<div
|
|
40811
40829
|
class="Input Input--regular"
|
|
40812
40830
|
data-test="DesignSystem-InputWrapper"
|
|
40831
|
+
role="presentation"
|
|
40813
40832
|
style="min-width: 256px;"
|
|
40814
40833
|
>
|
|
40815
40834
|
<div
|
|
@@ -40833,11 +40852,13 @@ exports[`DateRangePicker component
|
|
|
40833
40852
|
/>
|
|
40834
40853
|
<div
|
|
40835
40854
|
class="Input-icon Input-icon--right"
|
|
40836
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
40837
40855
|
>
|
|
40838
40856
|
<i
|
|
40839
40857
|
class="material-icons material-icons-round Icon"
|
|
40858
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
40859
|
+
role="button"
|
|
40840
40860
|
style="font-size: 16px; width: 16px;"
|
|
40861
|
+
tabindex="0"
|
|
40841
40862
|
>
|
|
40842
40863
|
close_round
|
|
40843
40864
|
</i>
|
|
@@ -40876,6 +40897,7 @@ exports[`DateRangePicker component
|
|
|
40876
40897
|
<div
|
|
40877
40898
|
class="Input Input--regular"
|
|
40878
40899
|
data-test="DesignSystem-InputWrapper"
|
|
40900
|
+
role="presentation"
|
|
40879
40901
|
style="min-width: 256px;"
|
|
40880
40902
|
>
|
|
40881
40903
|
<div
|
|
@@ -40899,11 +40921,13 @@ exports[`DateRangePicker component
|
|
|
40899
40921
|
/>
|
|
40900
40922
|
<div
|
|
40901
40923
|
class="Input-icon Input-icon--right"
|
|
40902
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
40903
40924
|
>
|
|
40904
40925
|
<i
|
|
40905
40926
|
class="material-icons material-icons-round Icon"
|
|
40927
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
40928
|
+
role="button"
|
|
40906
40929
|
style="font-size: 16px; width: 16px;"
|
|
40930
|
+
tabindex="0"
|
|
40907
40931
|
>
|
|
40908
40932
|
close_round
|
|
40909
40933
|
</i>
|
|
@@ -40960,6 +40984,7 @@ exports[`DateRangePicker component
|
|
|
40960
40984
|
<div
|
|
40961
40985
|
class="Input Input--regular"
|
|
40962
40986
|
data-test="DesignSystem-InputWrapper"
|
|
40987
|
+
role="presentation"
|
|
40963
40988
|
style="min-width: 256px;"
|
|
40964
40989
|
>
|
|
40965
40990
|
<div
|
|
@@ -40983,11 +41008,13 @@ exports[`DateRangePicker component
|
|
|
40983
41008
|
/>
|
|
40984
41009
|
<div
|
|
40985
41010
|
class="Input-icon Input-icon--right"
|
|
40986
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
40987
41011
|
>
|
|
40988
41012
|
<i
|
|
40989
41013
|
class="material-icons material-icons-round Icon"
|
|
41014
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
41015
|
+
role="button"
|
|
40990
41016
|
style="font-size: 16px; width: 16px;"
|
|
41017
|
+
tabindex="0"
|
|
40991
41018
|
>
|
|
40992
41019
|
close_round
|
|
40993
41020
|
</i>
|
|
@@ -41026,6 +41053,7 @@ exports[`DateRangePicker component
|
|
|
41026
41053
|
<div
|
|
41027
41054
|
class="Input Input--regular"
|
|
41028
41055
|
data-test="DesignSystem-InputWrapper"
|
|
41056
|
+
role="presentation"
|
|
41029
41057
|
style="min-width: 256px;"
|
|
41030
41058
|
>
|
|
41031
41059
|
<div
|
|
@@ -41049,11 +41077,13 @@ exports[`DateRangePicker component
|
|
|
41049
41077
|
/>
|
|
41050
41078
|
<div
|
|
41051
41079
|
class="Input-icon Input-icon--right"
|
|
41052
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
41053
41080
|
>
|
|
41054
41081
|
<i
|
|
41055
41082
|
class="material-icons material-icons-round Icon"
|
|
41083
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
41084
|
+
role="button"
|
|
41056
41085
|
style="font-size: 16px; width: 16px;"
|
|
41086
|
+
tabindex="0"
|
|
41057
41087
|
>
|
|
41058
41088
|
close_round
|
|
41059
41089
|
</i>
|
|
@@ -41110,6 +41140,7 @@ exports[`DateRangePicker component
|
|
|
41110
41140
|
<div
|
|
41111
41141
|
class="Input Input--regular"
|
|
41112
41142
|
data-test="DesignSystem-InputWrapper"
|
|
41143
|
+
role="presentation"
|
|
41113
41144
|
style="min-width: 256px;"
|
|
41114
41145
|
>
|
|
41115
41146
|
<div
|
|
@@ -41133,11 +41164,13 @@ exports[`DateRangePicker component
|
|
|
41133
41164
|
/>
|
|
41134
41165
|
<div
|
|
41135
41166
|
class="Input-icon Input-icon--right"
|
|
41136
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
41137
41167
|
>
|
|
41138
41168
|
<i
|
|
41139
41169
|
class="material-icons material-icons-round Icon"
|
|
41170
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
41171
|
+
role="button"
|
|
41140
41172
|
style="font-size: 16px; width: 16px;"
|
|
41173
|
+
tabindex="0"
|
|
41141
41174
|
>
|
|
41142
41175
|
close_round
|
|
41143
41176
|
</i>
|
|
@@ -41176,6 +41209,7 @@ exports[`DateRangePicker component
|
|
|
41176
41209
|
<div
|
|
41177
41210
|
class="Input Input--regular"
|
|
41178
41211
|
data-test="DesignSystem-InputWrapper"
|
|
41212
|
+
role="presentation"
|
|
41179
41213
|
style="min-width: 256px;"
|
|
41180
41214
|
>
|
|
41181
41215
|
<div
|
|
@@ -41199,11 +41233,13 @@ exports[`DateRangePicker component
|
|
|
41199
41233
|
/>
|
|
41200
41234
|
<div
|
|
41201
41235
|
class="Input-icon Input-icon--right"
|
|
41202
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
41203
41236
|
>
|
|
41204
41237
|
<i
|
|
41205
41238
|
class="material-icons material-icons-round Icon"
|
|
41239
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
41240
|
+
role="button"
|
|
41206
41241
|
style="font-size: 16px; width: 16px;"
|
|
41242
|
+
tabindex="0"
|
|
41207
41243
|
>
|
|
41208
41244
|
close_round
|
|
41209
41245
|
</i>
|
|
@@ -42052,11 +42088,11 @@ exports[`DateRangePicker component
|
|
|
42052
42088
|
class="Calendar-valueRow"
|
|
42053
42089
|
>
|
|
42054
42090
|
<div
|
|
42055
|
-
class="Calendar-value Calendar-monthValue Calendar-monthValue--large
|
|
42091
|
+
class="Calendar-value Calendar-monthValue Calendar-monthValue--large"
|
|
42056
42092
|
data-test="DesignSystem-Calendar--monthValue"
|
|
42057
42093
|
>
|
|
42058
42094
|
<span
|
|
42059
|
-
class="Text Text--
|
|
42095
|
+
class="Text Text--default Text--regular"
|
|
42060
42096
|
data-test="DesignSystem-Text"
|
|
42061
42097
|
>
|
|
42062
42098
|
Oct
|
|
@@ -42074,11 +42110,11 @@ exports[`DateRangePicker component
|
|
|
42074
42110
|
</span>
|
|
42075
42111
|
</div>
|
|
42076
42112
|
<div
|
|
42077
|
-
class="Calendar-value Calendar-monthValue Calendar-monthValue--large"
|
|
42113
|
+
class="Calendar-value Calendar-monthValue Calendar-monthValue--large Calendar-value--currDateMonthYear"
|
|
42078
42114
|
data-test="DesignSystem-Calendar--monthValue"
|
|
42079
42115
|
>
|
|
42080
42116
|
<span
|
|
42081
|
-
class="Text Text--
|
|
42117
|
+
class="Text Text--link Text--regular"
|
|
42082
42118
|
data-test="DesignSystem-Text"
|
|
42083
42119
|
>
|
|
42084
42120
|
Dec
|
|
@@ -42351,6 +42387,7 @@ exports[`DateRangePicker component
|
|
|
42351
42387
|
<div
|
|
42352
42388
|
class="Input Input--regular"
|
|
42353
42389
|
data-test="DesignSystem-InputWrapper"
|
|
42390
|
+
role="presentation"
|
|
42354
42391
|
style="min-width: 256px;"
|
|
42355
42392
|
>
|
|
42356
42393
|
<div
|
|
@@ -42374,11 +42411,13 @@ exports[`DateRangePicker component
|
|
|
42374
42411
|
/>
|
|
42375
42412
|
<div
|
|
42376
42413
|
class="Input-icon Input-icon--right"
|
|
42377
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
42378
42414
|
>
|
|
42379
42415
|
<i
|
|
42380
42416
|
class="material-icons material-icons-round Icon"
|
|
42417
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
42418
|
+
role="button"
|
|
42381
42419
|
style="font-size: 16px; width: 16px;"
|
|
42420
|
+
tabindex="0"
|
|
42382
42421
|
>
|
|
42383
42422
|
close_round
|
|
42384
42423
|
</i>
|
|
@@ -42417,6 +42456,7 @@ exports[`DateRangePicker component
|
|
|
42417
42456
|
<div
|
|
42418
42457
|
class="Input Input--regular"
|
|
42419
42458
|
data-test="DesignSystem-InputWrapper"
|
|
42459
|
+
role="presentation"
|
|
42420
42460
|
style="min-width: 256px;"
|
|
42421
42461
|
>
|
|
42422
42462
|
<div
|
|
@@ -42440,11 +42480,13 @@ exports[`DateRangePicker component
|
|
|
42440
42480
|
/>
|
|
42441
42481
|
<div
|
|
42442
42482
|
class="Input-icon Input-icon--right"
|
|
42443
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
42444
42483
|
>
|
|
42445
42484
|
<i
|
|
42446
42485
|
class="material-icons material-icons-round Icon"
|
|
42486
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
42487
|
+
role="button"
|
|
42447
42488
|
style="font-size: 16px; width: 16px;"
|
|
42489
|
+
tabindex="0"
|
|
42448
42490
|
>
|
|
42449
42491
|
close_round
|
|
42450
42492
|
</i>
|
|
@@ -43508,6 +43550,7 @@ exports[`DateRangePicker component
|
|
|
43508
43550
|
<div
|
|
43509
43551
|
class="Input Input--regular"
|
|
43510
43552
|
data-test="DesignSystem-InputWrapper"
|
|
43553
|
+
role="presentation"
|
|
43511
43554
|
style="min-width: 256px;"
|
|
43512
43555
|
>
|
|
43513
43556
|
<div
|
|
@@ -43531,11 +43574,13 @@ exports[`DateRangePicker component
|
|
|
43531
43574
|
/>
|
|
43532
43575
|
<div
|
|
43533
43576
|
class="Input-icon Input-icon--right"
|
|
43534
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
43535
43577
|
>
|
|
43536
43578
|
<i
|
|
43537
43579
|
class="material-icons material-icons-round Icon"
|
|
43580
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
43581
|
+
role="button"
|
|
43538
43582
|
style="font-size: 16px; width: 16px;"
|
|
43583
|
+
tabindex="0"
|
|
43539
43584
|
>
|
|
43540
43585
|
close_round
|
|
43541
43586
|
</i>
|
|
@@ -43574,6 +43619,7 @@ exports[`DateRangePicker component
|
|
|
43574
43619
|
<div
|
|
43575
43620
|
class="Input Input--regular"
|
|
43576
43621
|
data-test="DesignSystem-InputWrapper"
|
|
43622
|
+
role="presentation"
|
|
43577
43623
|
style="min-width: 256px;"
|
|
43578
43624
|
>
|
|
43579
43625
|
<div
|
|
@@ -43597,11 +43643,13 @@ exports[`DateRangePicker component
|
|
|
43597
43643
|
/>
|
|
43598
43644
|
<div
|
|
43599
43645
|
class="Input-icon Input-icon--right"
|
|
43600
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
43601
43646
|
>
|
|
43602
43647
|
<i
|
|
43603
43648
|
class="material-icons material-icons-round Icon"
|
|
43649
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
43650
|
+
role="button"
|
|
43604
43651
|
style="font-size: 16px; width: 16px;"
|
|
43652
|
+
tabindex="0"
|
|
43605
43653
|
>
|
|
43606
43654
|
close_round
|
|
43607
43655
|
</i>
|
|
@@ -44665,6 +44713,7 @@ exports[`DateRangePicker component
|
|
|
44665
44713
|
<div
|
|
44666
44714
|
class="Input Input--regular"
|
|
44667
44715
|
data-test="DesignSystem-InputWrapper"
|
|
44716
|
+
role="presentation"
|
|
44668
44717
|
style="min-width: 256px;"
|
|
44669
44718
|
>
|
|
44670
44719
|
<div
|
|
@@ -44688,11 +44737,13 @@ exports[`DateRangePicker component
|
|
|
44688
44737
|
/>
|
|
44689
44738
|
<div
|
|
44690
44739
|
class="Input-icon Input-icon--right"
|
|
44691
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
44692
44740
|
>
|
|
44693
44741
|
<i
|
|
44694
44742
|
class="material-icons material-icons-round Icon"
|
|
44743
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
44744
|
+
role="button"
|
|
44695
44745
|
style="font-size: 16px; width: 16px;"
|
|
44746
|
+
tabindex="0"
|
|
44696
44747
|
>
|
|
44697
44748
|
close_round
|
|
44698
44749
|
</i>
|
|
@@ -44731,6 +44782,7 @@ exports[`DateRangePicker component
|
|
|
44731
44782
|
<div
|
|
44732
44783
|
class="Input Input--regular"
|
|
44733
44784
|
data-test="DesignSystem-InputWrapper"
|
|
44785
|
+
role="presentation"
|
|
44734
44786
|
style="min-width: 256px;"
|
|
44735
44787
|
>
|
|
44736
44788
|
<div
|
|
@@ -44754,11 +44806,13 @@ exports[`DateRangePicker component
|
|
|
44754
44806
|
/>
|
|
44755
44807
|
<div
|
|
44756
44808
|
class="Input-icon Input-icon--right"
|
|
44757
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
44758
44809
|
>
|
|
44759
44810
|
<i
|
|
44760
44811
|
class="material-icons material-icons-round Icon"
|
|
44812
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
44813
|
+
role="button"
|
|
44761
44814
|
style="font-size: 16px; width: 16px;"
|
|
44815
|
+
tabindex="0"
|
|
44762
44816
|
>
|
|
44763
44817
|
close_round
|
|
44764
44818
|
</i>
|
|
@@ -46614,11 +46668,11 @@ exports[`DateRangePicker component
|
|
|
46614
46668
|
class="Calendar-valueRow"
|
|
46615
46669
|
>
|
|
46616
46670
|
<div
|
|
46617
|
-
class="Calendar-value Calendar-monthValue Calendar-monthValue--small
|
|
46671
|
+
class="Calendar-value Calendar-monthValue Calendar-monthValue--small"
|
|
46618
46672
|
data-test="DesignSystem-Calendar--monthValue"
|
|
46619
46673
|
>
|
|
46620
46674
|
<span
|
|
46621
|
-
class="Text Text--
|
|
46675
|
+
class="Text Text--default Text--small"
|
|
46622
46676
|
data-test="DesignSystem-Text"
|
|
46623
46677
|
>
|
|
46624
46678
|
Oct
|
|
@@ -46636,11 +46690,11 @@ exports[`DateRangePicker component
|
|
|
46636
46690
|
</span>
|
|
46637
46691
|
</div>
|
|
46638
46692
|
<div
|
|
46639
|
-
class="Calendar-value Calendar-monthValue Calendar-monthValue--small"
|
|
46693
|
+
class="Calendar-value Calendar-monthValue Calendar-monthValue--small Calendar-value--currDateMonthYear"
|
|
46640
46694
|
data-test="DesignSystem-Calendar--monthValue"
|
|
46641
46695
|
>
|
|
46642
46696
|
<span
|
|
46643
|
-
class="Text Text--
|
|
46697
|
+
class="Text Text--link Text--small"
|
|
46644
46698
|
data-test="DesignSystem-Text"
|
|
46645
46699
|
>
|
|
46646
46700
|
Dec
|
|
@@ -46913,6 +46967,7 @@ exports[`DateRangePicker component
|
|
|
46913
46967
|
<div
|
|
46914
46968
|
class="Input Input--regular"
|
|
46915
46969
|
data-test="DesignSystem-InputWrapper"
|
|
46970
|
+
role="presentation"
|
|
46916
46971
|
style="min-width: 256px;"
|
|
46917
46972
|
>
|
|
46918
46973
|
<div
|
|
@@ -46936,11 +46991,13 @@ exports[`DateRangePicker component
|
|
|
46936
46991
|
/>
|
|
46937
46992
|
<div
|
|
46938
46993
|
class="Input-icon Input-icon--right"
|
|
46939
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
46940
46994
|
>
|
|
46941
46995
|
<i
|
|
46942
46996
|
class="material-icons material-icons-round Icon"
|
|
46997
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
46998
|
+
role="button"
|
|
46943
46999
|
style="font-size: 16px; width: 16px;"
|
|
47000
|
+
tabindex="0"
|
|
46944
47001
|
>
|
|
46945
47002
|
close_round
|
|
46946
47003
|
</i>
|
|
@@ -46979,6 +47036,7 @@ exports[`DateRangePicker component
|
|
|
46979
47036
|
<div
|
|
46980
47037
|
class="Input Input--regular"
|
|
46981
47038
|
data-test="DesignSystem-InputWrapper"
|
|
47039
|
+
role="presentation"
|
|
46982
47040
|
style="min-width: 256px;"
|
|
46983
47041
|
>
|
|
46984
47042
|
<div
|
|
@@ -47002,11 +47060,13 @@ exports[`DateRangePicker component
|
|
|
47002
47060
|
/>
|
|
47003
47061
|
<div
|
|
47004
47062
|
class="Input-icon Input-icon--right"
|
|
47005
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
47006
47063
|
>
|
|
47007
47064
|
<i
|
|
47008
47065
|
class="material-icons material-icons-round Icon"
|
|
47066
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
47067
|
+
role="button"
|
|
47009
47068
|
style="font-size: 16px; width: 16px;"
|
|
47069
|
+
tabindex="0"
|
|
47010
47070
|
>
|
|
47011
47071
|
close_round
|
|
47012
47072
|
</i>
|
|
@@ -48070,6 +48130,7 @@ exports[`DateRangePicker component
|
|
|
48070
48130
|
<div
|
|
48071
48131
|
class="Input Input--regular"
|
|
48072
48132
|
data-test="DesignSystem-InputWrapper"
|
|
48133
|
+
role="presentation"
|
|
48073
48134
|
style="min-width: 256px;"
|
|
48074
48135
|
>
|
|
48075
48136
|
<div
|
|
@@ -48093,11 +48154,13 @@ exports[`DateRangePicker component
|
|
|
48093
48154
|
/>
|
|
48094
48155
|
<div
|
|
48095
48156
|
class="Input-icon Input-icon--right"
|
|
48096
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
48097
48157
|
>
|
|
48098
48158
|
<i
|
|
48099
48159
|
class="material-icons material-icons-round Icon"
|
|
48160
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
48161
|
+
role="button"
|
|
48100
48162
|
style="font-size: 16px; width: 16px;"
|
|
48163
|
+
tabindex="0"
|
|
48101
48164
|
>
|
|
48102
48165
|
close_round
|
|
48103
48166
|
</i>
|
|
@@ -48136,6 +48199,7 @@ exports[`DateRangePicker component
|
|
|
48136
48199
|
<div
|
|
48137
48200
|
class="Input Input--regular"
|
|
48138
48201
|
data-test="DesignSystem-InputWrapper"
|
|
48202
|
+
role="presentation"
|
|
48139
48203
|
style="min-width: 256px;"
|
|
48140
48204
|
>
|
|
48141
48205
|
<div
|
|
@@ -48159,11 +48223,13 @@ exports[`DateRangePicker component
|
|
|
48159
48223
|
/>
|
|
48160
48224
|
<div
|
|
48161
48225
|
class="Input-icon Input-icon--right"
|
|
48162
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
48163
48226
|
>
|
|
48164
48227
|
<i
|
|
48165
48228
|
class="material-icons material-icons-round Icon"
|
|
48229
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
48230
|
+
role="button"
|
|
48166
48231
|
style="font-size: 16px; width: 16px;"
|
|
48232
|
+
tabindex="0"
|
|
48167
48233
|
>
|
|
48168
48234
|
close_round
|
|
48169
48235
|
</i>
|
|
@@ -49227,6 +49293,7 @@ exports[`DateRangePicker component
|
|
|
49227
49293
|
<div
|
|
49228
49294
|
class="Input Input--regular"
|
|
49229
49295
|
data-test="DesignSystem-InputWrapper"
|
|
49296
|
+
role="presentation"
|
|
49230
49297
|
style="min-width: 256px;"
|
|
49231
49298
|
>
|
|
49232
49299
|
<div
|
|
@@ -49250,11 +49317,13 @@ exports[`DateRangePicker component
|
|
|
49250
49317
|
/>
|
|
49251
49318
|
<div
|
|
49252
49319
|
class="Input-icon Input-icon--right"
|
|
49253
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
49254
49320
|
>
|
|
49255
49321
|
<i
|
|
49256
49322
|
class="material-icons material-icons-round Icon"
|
|
49323
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
49324
|
+
role="button"
|
|
49257
49325
|
style="font-size: 16px; width: 16px;"
|
|
49326
|
+
tabindex="0"
|
|
49258
49327
|
>
|
|
49259
49328
|
close_round
|
|
49260
49329
|
</i>
|
|
@@ -49293,6 +49362,7 @@ exports[`DateRangePicker component
|
|
|
49293
49362
|
<div
|
|
49294
49363
|
class="Input Input--regular"
|
|
49295
49364
|
data-test="DesignSystem-InputWrapper"
|
|
49365
|
+
role="presentation"
|
|
49296
49366
|
style="min-width: 256px;"
|
|
49297
49367
|
>
|
|
49298
49368
|
<div
|
|
@@ -49316,11 +49386,13 @@ exports[`DateRangePicker component
|
|
|
49316
49386
|
/>
|
|
49317
49387
|
<div
|
|
49318
49388
|
class="Input-icon Input-icon--right"
|
|
49319
|
-
data-test="DesignSystem-Input--closeIcon"
|
|
49320
49389
|
>
|
|
49321
49390
|
<i
|
|
49322
49391
|
class="material-icons material-icons-round Icon"
|
|
49392
|
+
data-test="DesignSystem-Input--closeIcon"
|
|
49393
|
+
role="button"
|
|
49323
49394
|
style="font-size: 16px; width: 16px;"
|
|
49395
|
+
tabindex="0"
|
|
49324
49396
|
>
|
|
49325
49397
|
close_round
|
|
49326
49398
|
</i>
|