uikit-react-public 0.11.20 → 0.14.21
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/dist/components/Badge/Badge.d.ts +6 -0
- package/dist/components/Badge/Badge.stories.d.ts +15 -0
- package/dist/components/Badge/index.d.ts +2 -0
- package/dist/components/Button/Button.d.ts +2 -1
- package/dist/components/Calendar/Calendar.d.ts +3 -0
- package/dist/components/Calendar/Calendar.stories.d.ts +42 -0
- package/dist/components/Calendar/Calendar.types.d.ts +18 -0
- package/dist/components/Calendar/index.d.ts +2 -0
- package/dist/components/Calendar/subcomponents/AcademicWeeks.d.ts +7 -0
- package/dist/components/Calendar/subcomponents/ColumnHeading.d.ts +7 -0
- package/dist/components/Calendar/subcomponents/Controls.d.ts +6 -0
- package/dist/components/{Datepicker/subcomponents/Day → Calendar/subcomponents}/Day.d.ts +3 -3
- package/dist/components/{Datepicker → Calendar}/subcomponents/EventDot.d.ts +2 -2
- package/dist/components/Calendar/subcomponents/Grid.d.ts +11 -0
- package/dist/components/Calendar/subcomponents/index.d.ts +7 -0
- package/dist/components/{Datepicker → Calendar}/utils/getAcademicWeekNumbers/getAcademicWeekNumbers.d.ts +1 -1
- package/dist/components/Calendar/utils/index.d.ts +4 -0
- package/dist/components/Calendar/utils/normaliseMonth/normaliseMonth.d.ts +9 -0
- package/dist/components/Calendar/utils/parseDateFromString/parseDateFromString.d.ts +9 -0
- package/dist/components/Calendar/utils/parseDateFromString/parseDateFromString.test.d.ts +1 -0
- package/dist/components/CookieNotice/CookieNotice.d.ts +16 -0
- package/dist/components/CookieNotice/index.d.ts +2 -0
- package/dist/components/Datepicker/Datepicker.d.ts +3 -16
- package/dist/components/Datepicker/Datepicker.stories.d.ts +9 -3
- package/dist/components/Datepicker/Datepicker.types.d.ts +23 -7
- package/dist/components/Datepicker/index.d.ts +1 -2
- package/dist/components/Datepicker/subcomponents/CustomDatepicker.d.ts +17 -0
- package/dist/components/Datepicker/subcomponents/DatepickerInput.d.ts +10 -0
- package/dist/components/Datepicker/subcomponents/NativeDatepicker.d.ts +6 -0
- package/dist/components/Datepicker/subcomponents/Panel.d.ts +6 -0
- package/dist/components/Datepicker/subcomponents/VisibleField.d.ts +12 -0
- package/dist/components/Datepicker/subcomponents/index.d.ts +5 -7
- package/dist/components/Datepicker/utils/dateToLocaleISOString/dateToLocaleISOString.d.ts +17 -0
- package/dist/components/Datepicker/utils/dateToLocaleISOString/dateToLocaleISOString.test.d.ts +1 -0
- package/dist/components/Datepicker/utils/index.d.ts +2 -3
- package/dist/components/Datepicker/utils/parseInputValue/parseInputValue.d.ts +11 -0
- package/dist/components/Datepicker/utils/parseInputValue/parseInputValue.test.d.ts +1 -0
- package/dist/components/Dialog/BaseDialog.d.ts +7 -2
- package/dist/components/FileInput/FileInput.d.ts +8 -0
- package/dist/components/FileInput/FileInput.stories.d.ts +16 -0
- package/dist/components/FileInput/__tests__/FileInput.test.d.ts +1 -0
- package/dist/components/FileInput/index.d.ts +2 -0
- package/dist/components/Footer/Footer.d.ts +1 -1
- package/dist/components/Header/Header.d.ts +4 -1
- package/dist/components/Heading/Heading.d.ts +1 -1
- package/dist/components/Link/BaseLink.d.ts +10 -0
- package/dist/components/Link/Link.d.ts +5 -10
- package/dist/components/Link/Link.stories.d.ts +1 -1
- package/dist/components/Link/index.d.ts +1 -1
- package/dist/components/Menu/Menu.d.ts +2 -1
- package/dist/components/Menu/MenuContent.d.ts +2 -1
- package/dist/components/Menu/MenuItem.d.ts +2 -0
- package/dist/components/Menu/MenuSection.d.ts +1 -1
- package/dist/components/Search/Search.d.ts +16 -0
- package/dist/components/Search/Search.stories.d.ts +34 -0
- package/dist/components/Search/__tests__/Search.test.d.ts +1 -0
- package/dist/components/Search/index.d.ts +2 -0
- package/dist/components/Select/Select.d.ts +1 -1
- package/dist/components/Select/Select.stories.d.ts +3 -7
- package/dist/components/Select/Select.types.d.ts +19 -14
- package/dist/components/Select/subcomponents/CustomOption.d.ts +1 -1
- package/dist/components/Select/subcomponents/CustomSelect.d.ts +1 -2
- package/dist/components/Select/subcomponents/Panel.d.ts +1 -1
- package/dist/components/Select/subcomponents/VisibleField.d.ts +4 -4
- package/dist/components/StandaloneLink/StandaloneLink.d.ts +12 -0
- package/dist/components/StandaloneLink/StandaloneLink.stories.d.ts +13 -0
- package/dist/components/StandaloneLink/__tests__/StandaloneLink.test.d.ts +1 -0
- package/dist/components/StandaloneLink/index.d.ts +2 -0
- package/dist/components/Table/Table.d.ts +10 -8
- package/dist/components/Table/Table.stories.d.ts +21 -0
- package/dist/components/Table/Table.types.d.ts +11 -0
- package/dist/components/Table/__tests__/Table.test.d.ts +1 -0
- package/dist/components/Table/index.d.ts +2 -1
- package/dist/components/Table/subcomponents/Body.d.ts +4 -0
- package/dist/components/Table/subcomponents/Cell/Cell.d.ts +12 -0
- package/dist/components/Table/subcomponents/Cell/Cell.stories.d.ts +313 -0
- package/dist/components/Table/subcomponents/Cell/CellContent.d.ts +10 -0
- package/dist/components/Table/subcomponents/Cell/__tests__/Cell.test.d.ts +1 -0
- package/dist/components/Table/subcomponents/Head.d.ts +4 -0
- package/dist/components/Table/subcomponents/HeadCell/HeadCell.d.ts +13 -0
- package/dist/components/Table/subcomponents/HeadCell/HeadCell.stories.d.ts +312 -0
- package/dist/components/Table/subcomponents/HeadCell/HeadCellContent.d.ts +10 -0
- package/dist/components/Table/subcomponents/HeadCell/__tests__/HeadCell.test.d.ts +1 -0
- package/dist/components/Table/subcomponents/Row.d.ts +5 -0
- package/dist/components/Table/subcomponents/SortIcon.d.ts +7 -0
- package/dist/components/Table/subcomponents/index.d.ts +10 -0
- package/dist/components/Tabs/Tab.d.ts +1 -1
- package/dist/components/Tabs/TabContext.d.ts +1 -0
- package/dist/components/Tabs/Tabs.d.ts +3 -1
- package/dist/components/Tabs/Tabs.stories.d.ts +3 -0
- package/dist/components/Timepicker/Timepicker.d.ts +10 -0
- package/dist/components/Timepicker/Timepicker.stories.d.ts +7 -0
- package/dist/components/Timepicker/__tests__/Timepicker.test.d.ts +1 -0
- package/dist/components/Timepicker/index.d.ts +2 -0
- package/dist/components/Timepicker/utils/convertDateToTimeString.d.ts +2 -0
- package/dist/components/Timepicker/utils/convertDateToTimeString.test.d.ts +1 -0
- package/dist/components/Timepicker/utils/index.d.ts +1 -0
- package/dist/components/WeekPicker/WeekPicker.d.ts +3 -0
- package/dist/components/WeekPicker/index.d.ts +1 -0
- package/dist/components/WeekPicker/subcomponents/CustomDatepicker.d.ts +17 -0
- package/dist/components/WeekPicker/subcomponents/DatepickerInput.d.ts +13 -0
- package/dist/components/WeekPicker/subcomponents/VisibleField.d.ts +15 -0
- package/dist/components/WeekPicker/subcomponents/index.d.ts +3 -0
- package/dist/components/index.d.ts +13 -0
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/useFocusTrap.d.ts +9 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6006 -4599
- package/dist/theme/defaultTheme.d.ts +7 -0
- package/dist/theme/useTheme.d.ts +14 -0
- package/dist/utils/__tests__/capitalise.test.d.ts +1 -0
- package/dist/utils/capitalise.d.ts +2 -0
- package/lib/components/Alert/Alert.tsx +7 -1
- package/lib/components/Alert/__tests__/__snapshots__/Alert.test.tsx.snap +4 -0
- package/lib/components/Badge/Badge.stories.tsx +19 -0
- package/lib/components/Badge/Badge.tsx +48 -0
- package/lib/components/Badge/index.ts +2 -0
- package/lib/components/Breadcrumbs/__tests__/__snapshots__/Breadcrumbs.test.tsx.snap +4 -4
- package/lib/components/Button/Button.tsx +5 -2
- package/lib/components/Calendar/Calendar.stories.tsx +209 -0
- package/lib/components/Calendar/Calendar.tsx +121 -0
- package/lib/components/Calendar/Calendar.types.ts +21 -0
- package/lib/components/Calendar/__tests__/Calendar.test.tsx +71 -0
- package/lib/components/Calendar/__tests__/__snapshots__/Calendar.test.tsx.snap +1218 -0
- package/lib/components/Calendar/index.ts +6 -0
- package/lib/components/{Datepicker → Calendar}/subcomponents/AcademicWeek.tsx +1 -1
- package/lib/components/{Datepicker → Calendar}/subcomponents/AcademicWeeks.tsx +9 -7
- package/lib/components/Calendar/subcomponents/ColumnHeading.tsx +40 -0
- package/lib/components/{Datepicker/subcomponents/MonthSelector/MonthSelector.tsx → Calendar/subcomponents/Controls.tsx} +17 -17
- package/lib/components/{Datepicker/subcomponents/Day → Calendar/subcomponents}/Day.stories.tsx +8 -8
- package/lib/components/{Datepicker/subcomponents/Day → Calendar/subcomponents}/Day.tsx +28 -16
- package/lib/components/{Datepicker → Calendar}/subcomponents/EventDot.tsx +3 -3
- package/lib/components/Calendar/subcomponents/Grid.tsx +116 -0
- package/lib/components/Calendar/subcomponents/index.ts +7 -0
- package/lib/components/{Datepicker → Calendar}/utils/getAcademicWeekNumbers/getAcademicWeekNumbers.test.ts +1 -1
- package/lib/components/{Datepicker → Calendar}/utils/getAcademicWeekNumbers/getAcademicWeekNumbers.ts +1 -1
- package/lib/components/{Datepicker → Calendar}/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.test.ts +29 -65
- package/lib/components/{Datepicker → Calendar}/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.ts +11 -43
- package/lib/components/Calendar/utils/index.ts +4 -0
- package/lib/components/Calendar/utils/normaliseMonth/normaliseMonth.test.ts +40 -0
- package/lib/components/Calendar/utils/normaliseMonth/normaliseMonth.ts +16 -0
- package/lib/components/Calendar/utils/parseDateFromString/parseDateFromString.test.ts +15 -0
- package/lib/components/Calendar/utils/parseDateFromString/parseDateFromString.ts +19 -0
- package/lib/components/CookieNotice/CookieNotice.tsx +114 -0
- package/lib/components/CookieNotice/index.ts +2 -0
- package/lib/components/Datepicker/Datepicker.stories.tsx +128 -64
- package/lib/components/Datepicker/Datepicker.tsx +34 -114
- package/lib/components/Datepicker/Datepicker.types.ts +38 -9
- package/lib/components/Datepicker/__tests__/Datepicker.test.tsx +53 -112
- package/lib/components/Datepicker/__tests__/__snapshots__/Datepicker.test.tsx.snap +92 -747
- package/lib/components/Datepicker/index.ts +1 -2
- package/lib/components/Datepicker/subcomponents/CustomDatepicker.tsx +209 -0
- package/lib/components/Datepicker/subcomponents/DatepickerInput.tsx +74 -0
- package/lib/components/Datepicker/subcomponents/NativeDatepicker.tsx +70 -0
- package/lib/components/Datepicker/subcomponents/Panel.tsx +32 -0
- package/lib/components/Datepicker/subcomponents/VisibleField.tsx +104 -0
- package/lib/components/Datepicker/subcomponents/index.ts +5 -7
- package/lib/components/Datepicker/utils/dateToLocaleISOString/dateToLocaleISOString.test.ts +32 -0
- package/lib/components/Datepicker/utils/dateToLocaleISOString/dateToLocaleISOString.ts +23 -0
- package/lib/components/Datepicker/utils/index.ts +2 -3
- package/lib/components/Datepicker/utils/parseInputValue/parseInputValue.test.ts +110 -0
- package/lib/components/Datepicker/utils/parseInputValue/parseInputValue.ts +57 -0
- package/lib/components/Dialog/BaseDialog.tsx +44 -4
- package/lib/components/Field/__tests__/Field.test.tsx +148 -148
- package/lib/components/FileInput/FileInput.stories.tsx +70 -0
- package/lib/components/FileInput/FileInput.tsx +68 -0
- package/lib/components/FileInput/__tests__/FileInput.test.tsx +99 -0
- package/lib/components/FileInput/__tests__/__snapshots__/FileInput.test.tsx.snap +91 -0
- package/lib/components/FileInput/index.ts +2 -0
- package/lib/components/Footer/Footer.tsx +3 -3
- package/lib/components/Footer/__tests__/__snapshots__/Footer.test.tsx.snap +31 -31
- package/lib/components/Header/Header.tsx +19 -2
- package/lib/components/Header/__tests__/__snapshots__/Header.test.tsx.snap +4 -4
- package/lib/components/Heading/Documentation.mdx +1 -1
- package/lib/components/Heading/Heading.tsx +1 -1
- package/lib/components/Heading/__tests__/Heading.test.tsx +7 -19
- package/lib/components/Heading/__tests__/__snapshots__/Heading.test.tsx.snap +7 -7
- package/lib/components/Label/Label.tsx +0 -2
- package/lib/components/Label/__tests__/__snapshots__/Label.test.tsx.snap +7 -7
- package/lib/components/Link/BaseLink.tsx +84 -0
- package/lib/components/Link/Link.tsx +72 -32
- package/lib/components/Link/__tests__/__snapshots__/link.test.tsx.snap +3 -3
- package/lib/components/Link/__tests__/link.test.tsx +6 -13
- package/lib/components/Link/index.ts +1 -1
- package/lib/components/Menu/Menu.context.tsx +3 -1
- package/lib/components/Menu/Menu.tsx +5 -2
- package/lib/components/Menu/MenuContent.tsx +9 -6
- package/lib/components/Menu/MenuItem.tsx +20 -3
- package/lib/components/Menu/MenuSection.tsx +4 -3
- package/lib/components/Pagination/PaginationControls.tsx +1 -3
- package/lib/components/Search/Search.stories.tsx +41 -0
- package/lib/components/Search/Search.tsx +167 -0
- package/lib/components/Search/__tests__/Search.test.tsx +94 -0
- package/lib/components/Search/__tests__/__snapshots__/Search.test.tsx.snap +179 -0
- package/lib/components/Search/index.ts +2 -0
- package/lib/components/Select/Select.stories.tsx +8 -35
- package/lib/components/Select/Select.tsx +2 -2
- package/lib/components/Select/Select.types.ts +20 -15
- package/lib/components/Select/__tests__/__snapshots__/Select.test.tsx.snap +3 -3
- package/lib/components/Select/subcomponents/CustomOption.tsx +22 -9
- package/lib/components/Select/subcomponents/CustomSelect.tsx +31 -20
- package/lib/components/Select/subcomponents/Panel.tsx +4 -5
- package/lib/components/Select/subcomponents/VisibleField.tsx +26 -22
- package/lib/components/StandaloneLink/StandaloneLink.stories.tsx +32 -0
- package/lib/components/StandaloneLink/StandaloneLink.tsx +183 -0
- package/lib/components/StandaloneLink/__tests__/StandaloneLink.test.tsx +57 -0
- package/lib/components/StandaloneLink/__tests__/__snapshots__/StandaloneLink.test.tsx.snap +19 -0
- package/lib/components/StandaloneLink/index.ts +2 -0
- package/lib/components/Table/Table.stories.tsx +337 -0
- package/lib/components/Table/Table.tsx +42 -67
- package/lib/components/Table/Table.types.ts +14 -0
- package/lib/components/Table/__tests__/Table.test.tsx +121 -0
- package/lib/components/Table/__tests__/__snapshots__/Table.test.tsx.snap +210 -0
- package/lib/components/Table/index.ts +8 -1
- package/lib/components/Table/subcomponents/Body.tsx +18 -0
- package/lib/components/Table/subcomponents/Cell/Cell.stories.tsx +151 -0
- package/lib/components/Table/subcomponents/Cell/Cell.tsx +72 -0
- package/lib/components/Table/subcomponents/Cell/CellContent.tsx +91 -0
- package/lib/components/Table/subcomponents/Cell/__tests__/Cell.test.tsx +115 -0
- package/lib/components/Table/subcomponents/Cell/__tests__/__snapshots__/Cell.test.tsx.snap +107 -0
- package/lib/components/Table/subcomponents/Head.tsx +34 -0
- package/lib/components/Table/subcomponents/HeadCell/HeadCell.stories.tsx +85 -0
- package/lib/components/Table/subcomponents/HeadCell/HeadCell.tsx +99 -0
- package/lib/components/Table/subcomponents/HeadCell/HeadCellContent.tsx +61 -0
- package/lib/components/Table/subcomponents/HeadCell/__tests__/HeadCell.test.tsx +137 -0
- package/lib/components/Table/subcomponents/HeadCell/__tests__/__snapshots__/HeadCell.test.tsx.snap +110 -0
- package/lib/components/Table/subcomponents/Row.tsx +49 -0
- package/lib/components/Table/subcomponents/SortIcon.tsx +63 -0
- package/lib/components/Table/subcomponents/index.ts +14 -0
- package/lib/components/Tabs/Tab.tsx +3 -3
- package/lib/components/Tabs/TabContext.tsx +1 -0
- package/lib/components/Tabs/Tabs.stories.tsx +9 -3
- package/lib/components/Tabs/Tabs.tsx +10 -32
- package/lib/components/Tabs/__tests__/Tabs.test.tsx +10 -4
- package/lib/components/Tabs/__tests__/__snapshots__/Tabs.test.tsx.snap +32 -32
- package/lib/components/Timepicker/Timepicker.stories.tsx +43 -0
- package/lib/components/Timepicker/Timepicker.tsx +96 -0
- package/lib/components/Timepicker/__tests__/Timepicker.test.tsx +55 -0
- package/lib/components/Timepicker/__tests__/__snapshots__/Timepicker.test.tsx.snap +19 -0
- package/lib/components/Timepicker/index.tsx +2 -0
- package/lib/components/Timepicker/utils/convertDateToTimeString.test.ts +54 -0
- package/lib/components/Timepicker/utils/convertDateToTimeString.ts +10 -0
- package/lib/components/Timepicker/utils/index.ts +1 -0
- package/lib/components/WeekPicker/WeekPicker.tsx +26 -0
- package/lib/components/WeekPicker/index.ts +1 -0
- package/lib/components/WeekPicker/subcomponents/CustomDatepicker.tsx +298 -0
- package/lib/components/WeekPicker/subcomponents/DatepickerInput.tsx +111 -0
- package/lib/components/WeekPicker/subcomponents/VisibleField.tsx +126 -0
- package/lib/components/WeekPicker/subcomponents/index.ts +3 -0
- package/lib/components/index.ts +20 -0
- package/lib/hooks/index.ts +2 -0
- package/lib/hooks/useFocusTrap.ts +123 -0
- package/lib/index.ts +1 -0
- package/lib/theme/defaultTheme.ts +7 -0
- package/lib/utils/__tests__/capitalise.test.ts +40 -0
- package/lib/utils/capitalise.ts +4 -0
- package/package.json +2 -2
- package/dist/components/Datepicker/subcomponents/AcademicWeeks.d.ts +0 -7
- package/dist/components/Datepicker/subcomponents/CalendarGrid/CalendarGrid.d.ts +0 -8
- package/dist/components/Datepicker/subcomponents/CalendarGrid/index.d.ts +0 -1
- package/dist/components/Datepicker/subcomponents/CalendarMenu/CalendarMenu.d.ts +0 -12
- package/dist/components/Datepicker/subcomponents/CalendarMenu/index.d.ts +0 -1
- package/dist/components/Datepicker/subcomponents/ColumnHeadings/ColumnHeadings.d.ts +0 -2
- package/dist/components/Datepicker/subcomponents/ColumnHeadings/index.d.ts +0 -1
- package/dist/components/Datepicker/subcomponents/DateField/DateField.d.ts +0 -7
- package/dist/components/Datepicker/subcomponents/DateField/index.d.ts +0 -1
- package/dist/components/Datepicker/subcomponents/Day/index.d.ts +0 -1
- package/dist/components/Datepicker/subcomponents/MonthSelector/MonthSelector.d.ts +0 -6
- package/dist/components/Datepicker/subcomponents/MonthSelector/index.d.ts +0 -1
- package/dist/components/Datepicker/subcomponents/Native/Native.d.ts +0 -9
- package/dist/components/Datepicker/subcomponents/Native/index.d.ts +0 -1
- package/dist/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.d.ts +0 -20
- package/lib/components/Datepicker/subcomponents/CalendarGrid/CalendarGrid.tsx +0 -54
- package/lib/components/Datepicker/subcomponents/CalendarGrid/index.ts +0 -1
- package/lib/components/Datepicker/subcomponents/CalendarMenu/CalendarMenu.tsx +0 -90
- package/lib/components/Datepicker/subcomponents/CalendarMenu/index.ts +0 -1
- package/lib/components/Datepicker/subcomponents/ColumnHeadings/ColumnHeadings.tsx +0 -35
- package/lib/components/Datepicker/subcomponents/ColumnHeadings/index.ts +0 -1
- package/lib/components/Datepicker/subcomponents/DateField/DateField.tsx +0 -155
- package/lib/components/Datepicker/subcomponents/DateField/__tests__/DateField.test.tsx +0 -191
- package/lib/components/Datepicker/subcomponents/DateField/index.ts +0 -1
- package/lib/components/Datepicker/subcomponents/Day/index.ts +0 -1
- package/lib/components/Datepicker/subcomponents/MonthSelector/index.ts +0 -1
- package/lib/components/Datepicker/subcomponents/Native/Native.tsx +0 -59
- package/lib/components/Datepicker/subcomponents/Native/index.ts +0 -1
- package/lib/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.test.ts +0 -41
- package/lib/components/Datepicker/utils/parseDateForDateField/parseDateForDateField.ts +0 -48
- package/lib/components/Field/__tests__/__snapshots__/Field.test.tsx.snap +0 -300
- /package/dist/components/{Datepicker/subcomponents/DateField/__tests__/DateField.test.d.ts → Calendar/__tests__/Calendar.test.d.ts} +0 -0
- /package/dist/components/{Datepicker → Calendar}/subcomponents/AcademicWeek.d.ts +0 -0
- /package/dist/components/{Datepicker/subcomponents/Day → Calendar/subcomponents}/Day.stories.d.ts +0 -0
- /package/dist/components/{Datepicker → Calendar}/utils/getAcademicWeekNumbers/getAcademicWeekNumbers.test.d.ts +0 -0
- /package/dist/components/{Datepicker → Calendar}/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.d.ts +0 -0
- /package/dist/components/{Datepicker → Calendar}/utils/getDatesForCalendarGrid/getDatesForCalendarGrid.test.d.ts +0 -0
- /package/dist/components/{Datepicker/utils/parseDateForDateField/parseDateForDateField.test.d.ts → Calendar/utils/normaliseMonth/normaliseMonth.test.d.ts} +0 -0
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import { HTMLAttributes, useState } from 'react';
|
|
2
|
+
import { css, cx } from '@emotion/css';
|
|
3
|
+
import { Input, Icon, IconButton, InputProps, IconButtonProps } from '../..';
|
|
4
|
+
import useTheme from '../../theme/useTheme';
|
|
5
|
+
import marginsStyle, { MarginProps } from '../common/marginsStyle';
|
|
6
|
+
|
|
7
|
+
export interface SearchBaseProps extends HTMLAttributes<HTMLDivElement> {
|
|
8
|
+
onSearch?: (searchTerms: string) => void;
|
|
9
|
+
placeholder?: string;
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
inputProps?: InputProps;
|
|
12
|
+
clearButtonProps?: IconButtonProps;
|
|
13
|
+
submitButtonProps?: IconButtonProps;
|
|
14
|
+
testId?: string;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export type SearchProps = SearchBaseProps & MarginProps;
|
|
18
|
+
|
|
19
|
+
export const NAME = 'ucl-uikit-search';
|
|
20
|
+
|
|
21
|
+
const Search = ({
|
|
22
|
+
placeholder = '',
|
|
23
|
+
testId = NAME,
|
|
24
|
+
onSearch,
|
|
25
|
+
disabled = false,
|
|
26
|
+
m,
|
|
27
|
+
mv,
|
|
28
|
+
mh,
|
|
29
|
+
mt,
|
|
30
|
+
mb,
|
|
31
|
+
ml,
|
|
32
|
+
mr,
|
|
33
|
+
noMargins,
|
|
34
|
+
inputProps,
|
|
35
|
+
clearButtonProps,
|
|
36
|
+
submitButtonProps,
|
|
37
|
+
className,
|
|
38
|
+
...props
|
|
39
|
+
}: SearchProps) => {
|
|
40
|
+
const [searchTerms, setSearchTerms] = useState<string>('');
|
|
41
|
+
const [theme] = useTheme();
|
|
42
|
+
|
|
43
|
+
const handleSearchTermsChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
44
|
+
setSearchTerms(e.target.value);
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
const handleClearButtonClick = () => {
|
|
48
|
+
setSearchTerms('');
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
const handleSearchButtonClick = () => {
|
|
52
|
+
if (onSearch) {
|
|
53
|
+
onSearch(searchTerms);
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const baseStyle = css`
|
|
58
|
+
position: relative;
|
|
59
|
+
height: 48px;
|
|
60
|
+
`;
|
|
61
|
+
|
|
62
|
+
const style = cx(
|
|
63
|
+
NAME,
|
|
64
|
+
baseStyle,
|
|
65
|
+
marginsStyle(
|
|
66
|
+
{
|
|
67
|
+
m,
|
|
68
|
+
mv,
|
|
69
|
+
mh,
|
|
70
|
+
mt,
|
|
71
|
+
mb,
|
|
72
|
+
ml,
|
|
73
|
+
mr,
|
|
74
|
+
noMargins,
|
|
75
|
+
},
|
|
76
|
+
theme
|
|
77
|
+
),
|
|
78
|
+
className
|
|
79
|
+
);
|
|
80
|
+
|
|
81
|
+
const inputStyle = css`
|
|
82
|
+
width: 100%;
|
|
83
|
+
box-sizing: border-box;
|
|
84
|
+
padding-right: 96px;
|
|
85
|
+
`;
|
|
86
|
+
|
|
87
|
+
const buttonsStyle = css`
|
|
88
|
+
position: absolute;
|
|
89
|
+
right: 1px;
|
|
90
|
+
top: 1px;
|
|
91
|
+
bottom: 1px;
|
|
92
|
+
display: flex;
|
|
93
|
+
justify-content: flex-end;
|
|
94
|
+
align-items: center;
|
|
95
|
+
`;
|
|
96
|
+
|
|
97
|
+
const cancelButtonBaseStyle = css`
|
|
98
|
+
margin-left: ${theme.margin.m12};
|
|
99
|
+
margin-right: ${theme.margin.m12};
|
|
100
|
+
`;
|
|
101
|
+
|
|
102
|
+
const cancelIconButtonInactiveStyle = css`
|
|
103
|
+
color: ${theme.color.neutral.grey20};
|
|
104
|
+
`;
|
|
105
|
+
|
|
106
|
+
const cancelButtonStyle = cx(
|
|
107
|
+
cancelButtonBaseStyle,
|
|
108
|
+
searchTerms.length === 0 && cancelIconButtonInactiveStyle
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
const dividerStyle = css`
|
|
112
|
+
width: 1px;
|
|
113
|
+
height: 38px;
|
|
114
|
+
background-color: ${theme.color.neutral.grey20};
|
|
115
|
+
`;
|
|
116
|
+
|
|
117
|
+
const submitButtonStyle = css`
|
|
118
|
+
width: 48px;
|
|
119
|
+
height: 100%;
|
|
120
|
+
`;
|
|
121
|
+
|
|
122
|
+
return (
|
|
123
|
+
<div
|
|
124
|
+
className={style}
|
|
125
|
+
{...props}
|
|
126
|
+
>
|
|
127
|
+
<Input
|
|
128
|
+
inputClassName={inputStyle}
|
|
129
|
+
placeholder={placeholder}
|
|
130
|
+
type='text'
|
|
131
|
+
onChange={handleSearchTermsChange}
|
|
132
|
+
value={searchTerms}
|
|
133
|
+
disabled={disabled}
|
|
134
|
+
data-testid={testId}
|
|
135
|
+
{...inputProps}
|
|
136
|
+
/>
|
|
137
|
+
|
|
138
|
+
<div className={buttonsStyle}>
|
|
139
|
+
<IconButton
|
|
140
|
+
disabled={disabled}
|
|
141
|
+
className={cancelButtonStyle}
|
|
142
|
+
onClick={handleClearButtonClick}
|
|
143
|
+
aria-label='Clear search'
|
|
144
|
+
data-testid={`${testId}-clear-search-btn`}
|
|
145
|
+
{...clearButtonProps}
|
|
146
|
+
>
|
|
147
|
+
<Icon.X />
|
|
148
|
+
</IconButton>
|
|
149
|
+
|
|
150
|
+
<div className={dividerStyle} />
|
|
151
|
+
|
|
152
|
+
<IconButton
|
|
153
|
+
className={submitButtonStyle}
|
|
154
|
+
disabled={disabled}
|
|
155
|
+
onClick={handleSearchButtonClick}
|
|
156
|
+
aria-label='Search'
|
|
157
|
+
data-testid={`${testId}-search-btn`}
|
|
158
|
+
{...submitButtonProps}
|
|
159
|
+
>
|
|
160
|
+
<Icon.Search />
|
|
161
|
+
</IconButton>
|
|
162
|
+
</div>
|
|
163
|
+
</div>
|
|
164
|
+
);
|
|
165
|
+
};
|
|
166
|
+
|
|
167
|
+
export default Search;
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { describe, expect, test } from 'vitest';
|
|
2
|
+
import { render, screen } from '@testing-library/react';
|
|
3
|
+
import userEvent from '@testing-library/user-event';
|
|
4
|
+
import { vi } from 'vitest';
|
|
5
|
+
import { ThemeContextProvider } from '../../../theme/useTheme';
|
|
6
|
+
import Search from '../Search';
|
|
7
|
+
|
|
8
|
+
describe('Search', () => {
|
|
9
|
+
// Snapshot tests
|
|
10
|
+
|
|
11
|
+
test('snapshot: no props', () => {
|
|
12
|
+
const renderResult = render(
|
|
13
|
+
<ThemeContextProvider>
|
|
14
|
+
<Search />
|
|
15
|
+
</ThemeContextProvider>
|
|
16
|
+
);
|
|
17
|
+
expect(renderResult.container.firstChild).toMatchSnapshot();
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
test('snapshot: testId prop', () => {
|
|
21
|
+
const renderResult = render(
|
|
22
|
+
<ThemeContextProvider>
|
|
23
|
+
<Search testId='test123' />
|
|
24
|
+
</ThemeContextProvider>
|
|
25
|
+
);
|
|
26
|
+
expect(renderResult.container.firstChild).toMatchSnapshot();
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
// Interaction tests
|
|
30
|
+
|
|
31
|
+
test('test ID: default', () => {
|
|
32
|
+
render(
|
|
33
|
+
<ThemeContextProvider>
|
|
34
|
+
<Search />
|
|
35
|
+
</ThemeContextProvider>
|
|
36
|
+
);
|
|
37
|
+
const search = screen.getByTestId('ucl-uikit-search');
|
|
38
|
+
expect(search).toBeInTheDocument();
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
test('test ID: custom', () => {
|
|
42
|
+
render(
|
|
43
|
+
<ThemeContextProvider>
|
|
44
|
+
<Search testId='custom-test-id' />
|
|
45
|
+
</ThemeContextProvider>
|
|
46
|
+
);
|
|
47
|
+
const search = screen.getByTestId('custom-test-id');
|
|
48
|
+
expect(search).toBeInTheDocument();
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
test('allows user to type in search input', async () => {
|
|
52
|
+
const user = userEvent.setup();
|
|
53
|
+
|
|
54
|
+
render(
|
|
55
|
+
<ThemeContextProvider>
|
|
56
|
+
<Search />
|
|
57
|
+
</ThemeContextProvider>
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
const input = screen.getByRole('textbox');
|
|
61
|
+
|
|
62
|
+
await user.type(input, 'hello world');
|
|
63
|
+
expect(input).toHaveValue('hello world');
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
test('allows user to click on search button', async () => {
|
|
67
|
+
const user = userEvent.setup();
|
|
68
|
+
render(
|
|
69
|
+
<ThemeContextProvider>
|
|
70
|
+
<Search />
|
|
71
|
+
</ThemeContextProvider>
|
|
72
|
+
);
|
|
73
|
+
|
|
74
|
+
const input = screen.getByTestId('ucl-uikit-search-search-btn');
|
|
75
|
+
await user.click(input);
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
test('calls onSearch when seatch button is clicked', async () => {
|
|
79
|
+
const user = userEvent.setup();
|
|
80
|
+
const mockOnSearch = vi.fn();
|
|
81
|
+
|
|
82
|
+
render(
|
|
83
|
+
<ThemeContextProvider>
|
|
84
|
+
<Search onSearch={mockOnSearch} />
|
|
85
|
+
</ThemeContextProvider>
|
|
86
|
+
);
|
|
87
|
+
const input = screen.getByRole('textbox');
|
|
88
|
+
await user.type(input, 'test search');
|
|
89
|
+
const searchButton = screen.getByTestId('ucl-uikit-search-search-btn');
|
|
90
|
+
await user.click(searchButton);
|
|
91
|
+
|
|
92
|
+
expect(mockOnSearch).toHaveBeenCalledWith('test search');
|
|
93
|
+
});
|
|
94
|
+
});
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
2
|
+
|
|
3
|
+
exports[`Search > snapshot: no props 1`] = `
|
|
4
|
+
<div
|
|
5
|
+
class="ucl-uikit-search css-176lya2"
|
|
6
|
+
>
|
|
7
|
+
<span
|
|
8
|
+
class="ucl-uikit-input css-1bpb1dw"
|
|
9
|
+
>
|
|
10
|
+
<input
|
|
11
|
+
class="ucl-uikit-input__input css-181a0dk"
|
|
12
|
+
data-testid="ucl-uikit-search"
|
|
13
|
+
id=""
|
|
14
|
+
placeholder=""
|
|
15
|
+
type="text"
|
|
16
|
+
value=""
|
|
17
|
+
/>
|
|
18
|
+
</span>
|
|
19
|
+
<div
|
|
20
|
+
class="css-1mxrgm7"
|
|
21
|
+
>
|
|
22
|
+
<button
|
|
23
|
+
aria-label="Clear search"
|
|
24
|
+
class="ucl-uikit-icon-button css-1317vpi"
|
|
25
|
+
data-testid="ucl-uikit-search-clear-search-btn"
|
|
26
|
+
>
|
|
27
|
+
<svg
|
|
28
|
+
class="ucl-uikit-icon css-148hpxb"
|
|
29
|
+
data-testid="ucl-uikit-icon"
|
|
30
|
+
fill="none"
|
|
31
|
+
height="24"
|
|
32
|
+
stroke="currentColor"
|
|
33
|
+
stroke-linecap="round"
|
|
34
|
+
stroke-linejoin="round"
|
|
35
|
+
stroke-width="2"
|
|
36
|
+
viewBox="0 0 24 24"
|
|
37
|
+
width="24"
|
|
38
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
39
|
+
>
|
|
40
|
+
<line
|
|
41
|
+
x1="18"
|
|
42
|
+
x2="6"
|
|
43
|
+
y1="6"
|
|
44
|
+
y2="18"
|
|
45
|
+
/>
|
|
46
|
+
<line
|
|
47
|
+
x1="6"
|
|
48
|
+
x2="18"
|
|
49
|
+
y1="6"
|
|
50
|
+
y2="18"
|
|
51
|
+
/>
|
|
52
|
+
</svg>
|
|
53
|
+
</button>
|
|
54
|
+
<div
|
|
55
|
+
class="css-5jwcn5"
|
|
56
|
+
/>
|
|
57
|
+
<button
|
|
58
|
+
aria-label="Search"
|
|
59
|
+
class="ucl-uikit-icon-button css-1soyhl2"
|
|
60
|
+
data-testid="ucl-uikit-search-search-btn"
|
|
61
|
+
>
|
|
62
|
+
<svg
|
|
63
|
+
class="ucl-uikit-icon css-148hpxb"
|
|
64
|
+
data-testid="ucl-uikit-icon"
|
|
65
|
+
fill="none"
|
|
66
|
+
height="24"
|
|
67
|
+
stroke="currentColor"
|
|
68
|
+
stroke-linecap="round"
|
|
69
|
+
stroke-linejoin="round"
|
|
70
|
+
stroke-width="2"
|
|
71
|
+
viewBox="0 0 24 24"
|
|
72
|
+
width="24"
|
|
73
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
74
|
+
>
|
|
75
|
+
<circle
|
|
76
|
+
cx="11"
|
|
77
|
+
cy="11"
|
|
78
|
+
r="8"
|
|
79
|
+
/>
|
|
80
|
+
<line
|
|
81
|
+
x1="21"
|
|
82
|
+
x2="16.65"
|
|
83
|
+
y1="21"
|
|
84
|
+
y2="16.65"
|
|
85
|
+
/>
|
|
86
|
+
</svg>
|
|
87
|
+
</button>
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
`;
|
|
91
|
+
|
|
92
|
+
exports[`Search > snapshot: testId prop 1`] = `
|
|
93
|
+
<div
|
|
94
|
+
class="ucl-uikit-search css-176lya2"
|
|
95
|
+
>
|
|
96
|
+
<span
|
|
97
|
+
class="ucl-uikit-input css-1bpb1dw"
|
|
98
|
+
>
|
|
99
|
+
<input
|
|
100
|
+
class="ucl-uikit-input__input css-181a0dk"
|
|
101
|
+
data-testid="test123"
|
|
102
|
+
id=""
|
|
103
|
+
placeholder=""
|
|
104
|
+
type="text"
|
|
105
|
+
value=""
|
|
106
|
+
/>
|
|
107
|
+
</span>
|
|
108
|
+
<div
|
|
109
|
+
class="css-1mxrgm7"
|
|
110
|
+
>
|
|
111
|
+
<button
|
|
112
|
+
aria-label="Clear search"
|
|
113
|
+
class="ucl-uikit-icon-button css-1317vpi"
|
|
114
|
+
data-testid="test123-clear-search-btn"
|
|
115
|
+
>
|
|
116
|
+
<svg
|
|
117
|
+
class="ucl-uikit-icon css-148hpxb"
|
|
118
|
+
data-testid="ucl-uikit-icon"
|
|
119
|
+
fill="none"
|
|
120
|
+
height="24"
|
|
121
|
+
stroke="currentColor"
|
|
122
|
+
stroke-linecap="round"
|
|
123
|
+
stroke-linejoin="round"
|
|
124
|
+
stroke-width="2"
|
|
125
|
+
viewBox="0 0 24 24"
|
|
126
|
+
width="24"
|
|
127
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
128
|
+
>
|
|
129
|
+
<line
|
|
130
|
+
x1="18"
|
|
131
|
+
x2="6"
|
|
132
|
+
y1="6"
|
|
133
|
+
y2="18"
|
|
134
|
+
/>
|
|
135
|
+
<line
|
|
136
|
+
x1="6"
|
|
137
|
+
x2="18"
|
|
138
|
+
y1="6"
|
|
139
|
+
y2="18"
|
|
140
|
+
/>
|
|
141
|
+
</svg>
|
|
142
|
+
</button>
|
|
143
|
+
<div
|
|
144
|
+
class="css-5jwcn5"
|
|
145
|
+
/>
|
|
146
|
+
<button
|
|
147
|
+
aria-label="Search"
|
|
148
|
+
class="ucl-uikit-icon-button css-1soyhl2"
|
|
149
|
+
data-testid="test123-search-btn"
|
|
150
|
+
>
|
|
151
|
+
<svg
|
|
152
|
+
class="ucl-uikit-icon css-148hpxb"
|
|
153
|
+
data-testid="ucl-uikit-icon"
|
|
154
|
+
fill="none"
|
|
155
|
+
height="24"
|
|
156
|
+
stroke="currentColor"
|
|
157
|
+
stroke-linecap="round"
|
|
158
|
+
stroke-linejoin="round"
|
|
159
|
+
stroke-width="2"
|
|
160
|
+
viewBox="0 0 24 24"
|
|
161
|
+
width="24"
|
|
162
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
163
|
+
>
|
|
164
|
+
<circle
|
|
165
|
+
cx="11"
|
|
166
|
+
cy="11"
|
|
167
|
+
r="8"
|
|
168
|
+
/>
|
|
169
|
+
<line
|
|
170
|
+
x1="21"
|
|
171
|
+
x2="16.65"
|
|
172
|
+
y1="21"
|
|
173
|
+
y2="16.65"
|
|
174
|
+
/>
|
|
175
|
+
</svg>
|
|
176
|
+
</button>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
`;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
2
|
import { useArgs } from '@storybook/preview-api';
|
|
3
3
|
import Select from './Select';
|
|
4
|
-
import { Icon } from '../';
|
|
5
4
|
|
|
6
5
|
const meta = {
|
|
7
6
|
title: 'Components/Ready to use/Select',
|
|
@@ -20,8 +19,8 @@ const meta = {
|
|
|
20
19
|
testId: {
|
|
21
20
|
control: { type: 'text' },
|
|
22
21
|
},
|
|
23
|
-
|
|
24
|
-
control: { type: '
|
|
22
|
+
lineBreak: {
|
|
23
|
+
control: { type: 'boolean' },
|
|
25
24
|
},
|
|
26
25
|
},
|
|
27
26
|
args: {
|
|
@@ -41,7 +40,7 @@ type Story = StoryObj<typeof meta>;
|
|
|
41
40
|
export const Default: Story = {
|
|
42
41
|
render: () => {
|
|
43
42
|
const [args, updateArgs] = useArgs();
|
|
44
|
-
const onValueChange = (value: string) => {
|
|
43
|
+
const onValueChange = (value: string | number) => {
|
|
45
44
|
updateArgs({ value });
|
|
46
45
|
};
|
|
47
46
|
return (
|
|
@@ -61,7 +60,7 @@ export const Native: Story = {
|
|
|
61
60
|
},
|
|
62
61
|
render: () => {
|
|
63
62
|
const [args, updateArgs] = useArgs();
|
|
64
|
-
const onValueChange = (value: string) => {
|
|
63
|
+
const onValueChange = (value: string | number) => {
|
|
65
64
|
updateArgs({ value });
|
|
66
65
|
};
|
|
67
66
|
return (
|
|
@@ -75,39 +74,13 @@ export const Native: Story = {
|
|
|
75
74
|
},
|
|
76
75
|
};
|
|
77
76
|
|
|
78
|
-
export const OptionsWithIcons: Story = {
|
|
79
|
-
name: 'Options with icons',
|
|
80
|
-
args: {
|
|
81
|
-
options: [
|
|
82
|
-
{ label: 'Option 1', value: '1', icon: <Icon.Printer /> },
|
|
83
|
-
{ label: 'Option 2', value: '2', icon: <Icon.User /> },
|
|
84
|
-
{ label: 'Option 3', value: '3', icon: <Icon.Info /> },
|
|
85
|
-
],
|
|
86
|
-
},
|
|
87
|
-
render: () => {
|
|
88
|
-
const [args, updateArgs] = useArgs();
|
|
89
|
-
const onValueChange = (value: string) => {
|
|
90
|
-
updateArgs({ value });
|
|
91
|
-
};
|
|
92
|
-
|
|
93
|
-
return (
|
|
94
|
-
<Select
|
|
95
|
-
{...args}
|
|
96
|
-
options={args.options}
|
|
97
|
-
value={args.value}
|
|
98
|
-
onValueChange={onValueChange}
|
|
99
|
-
/>
|
|
100
|
-
);
|
|
101
|
-
},
|
|
102
|
-
};
|
|
103
|
-
|
|
104
77
|
export const Disabled: Story = {
|
|
105
78
|
args: {
|
|
106
79
|
disabled: true,
|
|
107
80
|
},
|
|
108
81
|
render: () => {
|
|
109
82
|
const [args, updateArgs] = useArgs();
|
|
110
|
-
const onValueChange = (value: string) => {
|
|
83
|
+
const onValueChange = (value: string | number) => {
|
|
111
84
|
updateArgs({ value });
|
|
112
85
|
};
|
|
113
86
|
|
|
@@ -126,7 +99,7 @@ export const WithPlaceholder: Story = {
|
|
|
126
99
|
args: { placeholder: 'Please select an option' },
|
|
127
100
|
render: () => {
|
|
128
101
|
const [args, updateArgs] = useArgs();
|
|
129
|
-
const onValueChange = (value: string) => {
|
|
102
|
+
const onValueChange = (value: string | number) => {
|
|
130
103
|
updateArgs({ value });
|
|
131
104
|
};
|
|
132
105
|
|
|
@@ -152,7 +125,7 @@ export const SingleLongOption: Story = {
|
|
|
152
125
|
},
|
|
153
126
|
render: () => {
|
|
154
127
|
const [args, updateArgs] = useArgs();
|
|
155
|
-
const onValueChange = (value: string) => {
|
|
128
|
+
const onValueChange = (value: string | number) => {
|
|
156
129
|
updateArgs({ value });
|
|
157
130
|
};
|
|
158
131
|
|
|
@@ -190,7 +163,7 @@ export const ManyOptions: Story = {
|
|
|
190
163
|
},
|
|
191
164
|
render: () => {
|
|
192
165
|
const [args, updateArgs] = useArgs();
|
|
193
|
-
const onValueChange = (value: string) => {
|
|
166
|
+
const onValueChange = (value: string | number) => {
|
|
194
167
|
updateArgs({ value });
|
|
195
168
|
};
|
|
196
169
|
return (
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NativeSelect, CustomSelect } from './subcomponents';
|
|
2
2
|
import { SelectProps } from './Select.types';
|
|
3
3
|
|
|
4
|
-
const Select = (props: SelectProps) => {
|
|
4
|
+
const Select = <T extends string | number = string>(props: SelectProps<T>) => {
|
|
5
5
|
if (props.native) {
|
|
6
6
|
const { onChange, value, ...rest } = props;
|
|
7
7
|
return (
|
|
@@ -14,7 +14,7 @@ const Select = (props: SelectProps) => {
|
|
|
14
14
|
} else {
|
|
15
15
|
const { onValueChange, ...rest } = props;
|
|
16
16
|
return (
|
|
17
|
-
<CustomSelect
|
|
17
|
+
<CustomSelect<T>
|
|
18
18
|
onValueChange={onValueChange}
|
|
19
19
|
{...rest}
|
|
20
20
|
/>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Maps to a native <option> element in <NativeSelect>
|
|
4
4
|
* or a <CustomOption> in <CustomSelect>
|
|
5
5
|
*/
|
|
6
|
-
export type OptionData = {
|
|
6
|
+
export type OptionData<T> = {
|
|
7
7
|
/**
|
|
8
8
|
* Display text shown to the user
|
|
9
9
|
*/
|
|
@@ -12,23 +12,25 @@ export type OptionData = {
|
|
|
12
12
|
* Data-friendly value that is returned when the option is selected
|
|
13
13
|
* We assume this will be submitted to a server or used in some other way
|
|
14
14
|
*/
|
|
15
|
-
value:
|
|
15
|
+
value: T;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
18
|
-
* Only used by <CustomOption>
|
|
19
|
-
* Takes in an actual <Icon> component
|
|
17
|
+
* Apply additional props to a select option component.
|
|
20
18
|
*/
|
|
19
|
+
optionProps?: Record<string, unknown>;
|
|
20
|
+
/**
|
|
21
|
+
Deprecated
|
|
22
|
+
*/
|
|
21
23
|
icon?: React.ReactNode;
|
|
22
24
|
};
|
|
23
25
|
|
|
24
26
|
/**
|
|
25
27
|
* Top level props that <Select> accepts when implemented
|
|
26
28
|
*/
|
|
27
|
-
interface BaseSelectProps {
|
|
29
|
+
interface BaseSelectProps<T = string> {
|
|
28
30
|
/**
|
|
29
31
|
* An array of option data, to be rendered either natively or custom
|
|
30
32
|
*/
|
|
31
|
-
options: OptionData[];
|
|
33
|
+
options: OptionData<T>[];
|
|
32
34
|
/**
|
|
33
35
|
* Placeholder text shown when no option is selected
|
|
34
36
|
* Displayed in visible field of custom implementation
|
|
@@ -70,15 +72,17 @@ interface BaseSelectProps {
|
|
|
70
72
|
* Internal props for the custom implementation, with <div> as root element
|
|
71
73
|
* onChange already exists on <div>. We override it.
|
|
72
74
|
*/
|
|
73
|
-
export type CustomSelectProps = Omit<
|
|
75
|
+
export type CustomSelectProps<T> = Omit<
|
|
74
76
|
React.HTMLAttributes<HTMLDivElement>,
|
|
75
77
|
'onChange'
|
|
76
78
|
> &
|
|
77
|
-
BaseSelectProps & {
|
|
79
|
+
BaseSelectProps<T> & {
|
|
78
80
|
native?: false;
|
|
79
|
-
value?:
|
|
81
|
+
value?: T;
|
|
80
82
|
disabled?: boolean;
|
|
81
|
-
|
|
83
|
+
lineBreak?: boolean;
|
|
84
|
+
panelClassName?: string;
|
|
85
|
+
onValueChange?: (value: T, ev: React.UIEvent) => void;
|
|
82
86
|
ref?: React.RefObject<HTMLDivElement | null>;
|
|
83
87
|
};
|
|
84
88
|
|
|
@@ -92,16 +96,17 @@ export type NativeSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> &
|
|
|
92
96
|
ref?: React.RefObject<HTMLSelectElement | null>;
|
|
93
97
|
};
|
|
94
98
|
|
|
95
|
-
export type SelectProps = NativeSelectProps | CustomSelectProps
|
|
99
|
+
export type SelectProps<T> = NativeSelectProps | CustomSelectProps<T>;
|
|
96
100
|
|
|
97
101
|
/**
|
|
98
102
|
* Each option as displayed in the Panel of <CustomSelect>
|
|
99
103
|
* Roughly equivalent to a custom version of <option>
|
|
100
104
|
*/
|
|
101
|
-
export interface CustomOptionProps
|
|
105
|
+
export interface CustomOptionProps<T>
|
|
102
106
|
extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onSelect'> {
|
|
103
|
-
value:
|
|
107
|
+
value: T;
|
|
104
108
|
testId?: string;
|
|
105
109
|
isSelected?: boolean;
|
|
106
|
-
onSelect: (event: React.MouseEvent, value:
|
|
110
|
+
onSelect: (event: React.MouseEvent, value: T) => void;
|
|
111
|
+
lineBreak?: boolean;
|
|
107
112
|
}
|
|
@@ -4,7 +4,7 @@ exports[`Select > Snapshot: default 1`] = `
|
|
|
4
4
|
<div
|
|
5
5
|
aria-expanded="false"
|
|
6
6
|
aria-haspopup="listbox"
|
|
7
|
-
class="ucl-uikit-select css-
|
|
7
|
+
class="ucl-uikit-select css-1g9yg1n"
|
|
8
8
|
data-testid="ucl-uikit-select"
|
|
9
9
|
role="combobox"
|
|
10
10
|
tabindex="0"
|
|
@@ -14,10 +14,10 @@ exports[`Select > Snapshot: default 1`] = `
|
|
|
14
14
|
data-testid="ucl-uikit-select__visible-field"
|
|
15
15
|
>
|
|
16
16
|
<span
|
|
17
|
-
class="css-
|
|
17
|
+
class="css-16t5nns"
|
|
18
18
|
/>
|
|
19
19
|
<svg
|
|
20
|
-
class="ucl-uikit-icon css-
|
|
20
|
+
class="ucl-uikit-icon css-hseitk"
|
|
21
21
|
data-testid="ucl-uikit-icon"
|
|
22
22
|
fill="none"
|
|
23
23
|
height="24"
|