@max-ts/components 0.0.2 → 0.1.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/.storybook/main.ts +14 -14
- package/.turbo/turbo-build.log +13 -495
- package/.turbo/turbo-type$colon$check.log +1 -756
- package/CHANGELOG.md +6 -0
- package/dist/components/Autocomplete/styles.d.ts +1 -1
- package/dist/components/Button/Button.d.ts +4 -4
- package/dist/components/Button/useLogic/useLogic.d.ts +1 -1
- package/dist/components/ConfirmDialog/ConfirmDialog.d.ts +37 -0
- package/dist/components/ConfirmDialog/index.d.ts +1 -0
- package/dist/components/ConfirmDialog/styles.d.ts +9 -0
- package/dist/components/ConfirmDialog/useLogic/index.d.ts +1 -0
- package/dist/components/ConfirmDialog/useLogic/useLogic.d.ts +10 -0
- package/dist/components/DataGrid/Row/NestedChildren/styles.d.ts +1 -1
- package/dist/components/DataGrid/Row/styles.d.ts +1 -1
- package/dist/components/DropdownButton/DropdownButton.d.ts +9 -0
- package/dist/components/DropdownButton/index.d.ts +1 -0
- package/dist/components/Filename/Filename.d.ts +21 -0
- package/dist/components/Filename/index.d.ts +1 -0
- package/dist/components/Filename/styles.d.ts +17 -0
- package/dist/components/Filename/useLogic/index.d.ts +1 -0
- package/dist/components/Filename/useLogic/useLogic.d.ts +16 -0
- package/dist/components/Filename/useLogic/utils/findExtension/constants.d.ts +1 -0
- package/dist/components/Filename/useLogic/utils/findExtension/findExtension.d.ts +1 -0
- package/dist/components/Filename/useLogic/utils/findExtension/index.d.ts +1 -0
- package/dist/components/Filename/useLogic/utils/index.d.ts +1 -0
- package/dist/components/Filename/useLogic/utils/truncateString/constants.d.ts +1 -0
- package/dist/components/Filename/useLogic/utils/truncateString/index.d.ts +1 -0
- package/dist/components/Filename/useLogic/utils/truncateString/truncateString.d.ts +4 -0
- package/dist/components/FormLabel/FormLabel.d.ts +4 -0
- package/dist/components/FormLabel/index.d.ts +1 -0
- package/dist/components/FormLabel/styles.d.ts +1 -0
- package/dist/components/IconButton/IconButton.d.ts +2 -2
- package/dist/components/IconButton/styles.d.ts +2 -2
- package/dist/components/ListItemButton/ListItemButton.d.ts +2 -2
- package/dist/components/MenuItem/MenuItem.d.ts +1 -1
- package/dist/components/MenuList/types.d.ts +2 -2
- package/dist/components/NavMenu/Item/ItemButton/ItemButton.d.ts +1 -1
- package/dist/components/NavMenu/Item/ItemButton/styles.d.ts +1 -1
- package/dist/components/ProgressBar/ProgressBar.d.ts +12 -0
- package/dist/components/ProgressBar/index.d.ts +1 -0
- package/dist/components/Radio/Icon/Icon.d.ts +6 -0
- package/dist/components/Radio/Icon/index.d.ts +1 -0
- package/dist/components/Radio/Radio.d.ts +9 -0
- package/dist/components/Radio/constants.d.ts +8 -0
- package/dist/components/Radio/index.d.ts +1 -0
- package/dist/components/Radio/styles.d.ts +5 -0
- package/dist/components/RadioField/RadioField.d.ts +25 -0
- package/dist/components/RadioField/index.d.ts +1 -0
- package/dist/components/RadioField/styles.d.ts +2 -0
- package/dist/components/RadioGroup/RadioGroup.d.ts +30 -0
- package/dist/components/RadioGroup/RadioGroupContext/RadioGroupContext.d.ts +4 -0
- package/dist/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/RadioGroupContextProvider.d.ts +6 -0
- package/dist/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/index.d.ts +1 -0
- package/dist/components/RadioGroup/RadioGroupContext/index.d.ts +2 -0
- package/dist/components/RadioGroup/index.d.ts +2 -0
- package/dist/components/RadioGroupField/RadioGroupField.d.ts +8 -0
- package/dist/components/RadioGroupField/index.d.ts +1 -0
- package/dist/components/SearchField/styles.d.ts +1 -1
- package/dist/components/Select/styles.d.ts +2 -2
- package/dist/components/Skeleton/Skeleton.d.ts +14 -0
- package/dist/components/Skeleton/index.d.ts +1 -0
- package/dist/components/Skeleton/styles.d.ts +1 -0
- package/dist/components/Switch/Switch.d.ts +4 -0
- package/dist/components/Switch/index.d.ts +1 -0
- package/dist/components/Switch/styles.d.ts +1 -0
- package/dist/components/Tab/Tab.d.ts +7 -0
- package/dist/components/Tab/index.d.ts +1 -0
- package/dist/components/Tab/styles.d.ts +1 -0
- package/dist/components/Tabs/Tabs.d.ts +13 -0
- package/dist/components/Tabs/index.d.ts +1 -0
- package/dist/components/Tabs/styles.d.ts +2 -0
- package/dist/components/TextArea/TextArea.d.ts +3 -0
- package/dist/components/TextArea/index.d.ts +1 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useToggle/index.d.ts +1 -0
- package/dist/hooks/useToggle/useToggle.d.ts +43 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +150 -150
- package/package.json +1 -1
- package/rslib.config.ts +26 -26
- package/src/components/Accordion/Accordion.stories.tsx +2 -0
- package/src/components/ActionCell/ActionCell.stories.tsx +1 -0
- package/src/components/ActionCell/MainAction/MainAction.tsx +1 -0
- package/src/components/AsyncAutocomplete/AsyncAutocomplete.stories.tsx +1 -0
- package/src/components/Autocomplete/Autocomplete.stories.tsx +1 -0
- package/src/components/Badge/Badge.stories.tsx +1 -0
- package/src/components/BottomDrawer/BottomDrawer.stories.tsx +2 -1
- package/src/components/Button/Button.stories.tsx +2 -1
- package/src/components/Button/Button.tsx +9 -10
- package/src/components/Button/useLogic/useLogic.ts +2 -5
- package/src/components/Checkbox/Checkbox.stories.tsx +1 -3
- package/src/components/CheckboxField/CheckboxField.stories.tsx +1 -0
- package/src/components/Chevron/Chevron.stories.tsx +1 -0
- package/src/components/CircularProgress/CircularProgress.stories.tsx +1 -0
- package/src/components/Collapse/Collapse.stories.tsx +1 -0
- package/src/components/ConfirmAction/ConfirmAction.stories.tsx +1 -3
- package/src/components/ConfirmDialog/ConfirmDialog.stories.tsx +69 -0
- package/src/components/ConfirmDialog/ConfirmDialog.tsx +83 -0
- package/src/components/ConfirmDialog/index.ts +1 -0
- package/src/components/ConfirmDialog/styles.ts +8 -0
- package/src/components/ConfirmDialog/useLogic/index.ts +1 -0
- package/src/components/ConfirmDialog/useLogic/useLogic.ts +23 -0
- package/src/components/ContentState/ContentState.stories.tsx +1 -0
- package/src/components/CopyTypography/CopyTypography.stories.tsx +1 -2
- package/src/components/DataGrid/DataGrid.stories.tsx +1 -0
- package/src/components/DataGridActionCell/DataGridActionCell.stories.tsx +1 -0
- package/src/components/DataGridPagination/DataGridPagination.stories.tsx +1 -0
- package/src/components/Description/Description.stories.tsx +1 -0
- package/src/components/DescriptionList/DescriptionList.stories.tsx +1 -0
- package/src/components/Dialog/Dialog.stories.tsx +1 -0
- package/src/components/DialogActions/DialogActions.stories.tsx +1 -3
- package/src/components/DialogContent/DialogContent.stories.tsx +1 -3
- package/src/components/DialogContentText/DialogContentText.stories.tsx +1 -0
- package/src/components/DialogHeader/DialogHeader.stories.tsx +1 -0
- package/src/components/Divider/Divider.stories.tsx +1 -0
- package/src/components/DropdownButton/DropdownButton.stories.tsx +191 -0
- package/src/components/DropdownButton/DropdownButton.tsx +46 -0
- package/src/components/DropdownButton/index.ts +1 -0
- package/src/components/ErrorBoundary/ErrorBoundary.stories.tsx +1 -0
- package/src/components/Filename/Filename.stories.tsx +244 -0
- package/src/components/Filename/Filename.tsx +57 -0
- package/src/components/Filename/index.ts +1 -0
- package/src/components/Filename/styles.ts +18 -0
- package/src/components/Filename/useLogic/index.ts +1 -0
- package/src/components/Filename/useLogic/useLogic.ts +36 -0
- package/src/components/Filename/useLogic/utils/findExtension/constants.ts +16 -0
- package/src/components/Filename/useLogic/utils/findExtension/findExtension.ts +17 -0
- package/src/components/Filename/useLogic/utils/findExtension/index.ts +1 -0
- package/src/components/Filename/useLogic/utils/index.ts +1 -0
- package/src/components/Filename/useLogic/utils/truncateString/constants.ts +1 -0
- package/src/components/Filename/useLogic/utils/truncateString/index.ts +1 -0
- package/src/components/Filename/useLogic/utils/truncateString/truncateString.ts +24 -0
- package/src/components/FormLabel/FormLabel.tsx +11 -0
- package/src/components/FormLabel/index.ts +1 -0
- package/src/components/FormLabel/styles.ts +6 -0
- package/src/components/GuidTypography/GuidTypography.stories.tsx +1 -0
- package/src/components/IconButton/IconButton.stories.tsx +1 -1
- package/src/components/IconButton/IconButton.tsx +11 -16
- package/src/components/IconButton/styles.ts +24 -24
- package/src/components/IconDropdownButton/IconDropdownButton.stories.tsx +1 -0
- package/src/components/InternalErrorPlaceholder/InternalErrorPlaceholder.stories.tsx +1 -0
- package/src/components/Link/Link.stories.tsx +1 -0
- package/src/components/List/List.stories.tsx +1 -0
- package/src/components/ListItem/ListItem.stories.tsx +1 -0
- package/src/components/ListItemButton/ListItemButton.stories.tsx +1 -0
- package/src/components/ListItemButton/ListItemButton.tsx +3 -9
- package/src/components/ListItemIcon/ListItemIcon.stories.tsx +1 -0
- package/src/components/ListItemText/ListItemText.stories.tsx +1 -0
- package/src/components/ListSubheader/ListSubheader.stories.tsx +1 -0
- package/src/components/Menu/Menu.stories.tsx +1 -0
- package/src/components/MenuItem/MenuItem.stories.tsx +1 -0
- package/src/components/MenuItem/MenuItem.tsx +1 -2
- package/src/components/MenuList/MenuList.stories.tsx +1 -0
- package/src/components/MenuList/types.ts +3 -8
- package/src/components/NavMenu/Item/ItemButton/ItemButton.tsx +1 -2
- package/src/components/NavMenu/NavMenu.stories.tsx +1 -0
- package/src/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.stories.tsx +1 -0
- package/src/components/OverflowTypography/OverflowTypography.stories.tsx +1 -8
- package/src/components/Pagination/Pagination.stories.tsx +1 -0
- package/src/components/Placeholder/Placeholder.stories.tsx +1 -0
- package/src/components/Popover/Popover.stories.tsx +1 -0
- package/src/components/ProgressBar/ProgressBar.stories.tsx +31 -0
- package/src/components/ProgressBar/ProgressBar.tsx +26 -0
- package/src/components/ProgressBar/index.ts +1 -0
- package/src/components/Radio/Icon/Icon.tsx +37 -0
- package/src/components/Radio/Icon/index.ts +1 -0
- package/src/components/Radio/Radio.stories.tsx +32 -0
- package/src/components/Radio/Radio.tsx +24 -0
- package/src/components/Radio/constants.ts +9 -0
- package/src/components/Radio/index.ts +1 -0
- package/src/components/Radio/styles.ts +70 -0
- package/src/components/RadioField/RadioField.stories.tsx +74 -0
- package/src/components/RadioField/RadioField.tsx +55 -0
- package/src/components/RadioField/index.ts +1 -0
- package/src/components/RadioField/styles.ts +10 -0
- package/src/components/RadioGroup/RadioGroup.stories.tsx +60 -0
- package/src/components/RadioGroup/RadioGroup.tsx +79 -0
- package/src/components/RadioGroup/RadioGroupContext/RadioGroupContext.ts +9 -0
- package/src/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/RadioGroupContextProvider.tsx +18 -0
- package/src/components/RadioGroup/RadioGroupContext/RadioGroupContextProvider/index.ts +1 -0
- package/src/components/RadioGroup/RadioGroupContext/index.ts +3 -0
- package/src/components/RadioGroup/index.ts +3 -0
- package/src/components/RadioGroupField/RadioGroupField.tsx +17 -0
- package/src/components/RadioGroupField/index.ts +1 -0
- package/src/components/Select/Select.stories.tsx +0 -4
- package/src/components/Skeleton/Skeleton.stories.tsx +78 -0
- package/src/components/Skeleton/Skeleton.tsx +31 -0
- package/src/components/Skeleton/index.ts +1 -0
- package/src/components/Skeleton/styles.ts +16 -0
- package/src/components/Switch/Switch.stories.tsx +179 -0
- package/src/components/Switch/Switch.tsx +14 -0
- package/src/components/Switch/index.ts +1 -0
- package/src/components/Switch/styles.ts +14 -0
- package/src/components/Tab/Tab.stories.tsx +53 -0
- package/src/components/Tab/Tab.tsx +20 -0
- package/src/components/Tab/index.ts +1 -0
- package/src/components/Tab/styles.ts +22 -0
- package/src/components/Tabs/Tabs.stories.tsx +74 -0
- package/src/components/Tabs/Tabs.tsx +27 -0
- package/src/components/Tabs/index.ts +1 -0
- package/src/components/Tabs/styles.ts +20 -0
- package/src/components/Tag/Tag.stories.tsx +1 -1
- package/src/components/TagBadge/TagBadge.stories.tsx +1 -5
- package/src/components/TextArea/TextArea.stories.tsx +81 -0
- package/src/components/TextArea/TextArea.tsx +12 -0
- package/src/components/TextArea/index.ts +1 -0
- package/src/components/TextField/TextField.stories.tsx +1 -4
- package/src/components/Tooltip/Tooltip.stories.tsx +1 -4
- package/src/components/Typography/Typography.stories.tsx +2 -4
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useToggle/index.ts +1 -0
- package/src/hooks/useToggle/useToggle.ts +76 -0
- package/test.tsx +1 -0
- package/tsconfig.json +3 -2
|
@@ -1,760 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @max-ts/components@0.0.
|
|
3
|
+
> @max-ts/components@0.0.2 type:check /Users/maksim/Projects/PET/toolkit/packages/components
|
|
4
4
|
> tsc --noEmit
|
|
5
5
|
|
|
6
|
-
[96msrc/components/AsyncAutocomplete/AsyncAutocomplete.stories.tsx[0m:[93m26[0m:[93m10[0m - [91merror[0m[90m TS2304: [0mCannot find name 'getFakeUsers'.
|
|
7
|
-
|
|
8
|
-
[7m26[0m return getFakeUsers(search, { signal: abortSignal });
|
|
9
|
-
[7m [0m [91m ~~~~~~~~~~~~[0m
|
|
10
|
-
|
|
11
|
-
[96msrc/components/AsyncAutocomplete/useLogic/useLogic.ts[0m:[93m43[0m:[93m5[0m - [91merror[0m[90m TS2304: [0mCannot find name 'debounce'.
|
|
12
|
-
|
|
13
|
-
[7m43[0m debounce((search: string) => {
|
|
14
|
-
[7m [0m [91m ~~~~~~~~[0m
|
|
15
|
-
|
|
16
|
-
[96msrc/components/Autocomplete/Autocomplete.stories.tsx[0m:[93m8[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../styles' or its corresponding type declarations.
|
|
17
|
-
|
|
18
|
-
[7m8[0m import { styled } from '../styles';
|
|
19
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
20
|
-
|
|
21
|
-
[96msrc/components/Autocomplete/Autocomplete.tsx[0m:[93m196[0m:[93m16[0m - [91merror[0m[90m TS2554: [0mExpected 4 arguments, but got 3.
|
|
22
|
-
|
|
23
|
-
[7m196[0m return externalRenderOption(optionProps, option, optionState);
|
|
24
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~[0m
|
|
25
|
-
|
|
26
|
-
[96m../../node_modules/.pnpm/@mui+material@6.4.4_@emotion+react@11.14.0_@types+react@19.0.8_react@19.0.0__@emotion+styled@_7egkizikgut56d2yaxlxrjv3iy/node_modules/@mui/material/Autocomplete/Autocomplete.d.ts[0m:[93m333[0m:[93m5[0m
|
|
27
|
-
[7m333[0m ownerState: AutocompleteOwnerState<Value, Multiple, DisableClearable, FreeSolo, ChipComponent>,
|
|
28
|
-
[7m [0m [96m ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
29
|
-
An argument for 'ownerState' was not provided.
|
|
30
|
-
|
|
31
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m6[0m:[93m8[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/icons' or its corresponding type declarations.
|
|
32
|
-
|
|
33
|
-
[7m6[0m } from '@astral/icons';
|
|
34
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
35
|
-
|
|
36
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m9[0m:[93m26[0m - [91merror[0m[90m TS2307: [0mCannot find module 'mobx-react-lite' or its corresponding type declarations.
|
|
37
|
-
|
|
38
|
-
[7m9[0m import { observer } from 'mobx-react-lite';
|
|
39
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
40
|
-
|
|
41
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m13[0m:[93m8[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/features' or its corresponding type declarations.
|
|
42
|
-
|
|
43
|
-
[7m13[0m } from '@astral/features';
|
|
44
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~[0m
|
|
45
|
-
|
|
46
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m15[0m:[93m33[0m - [91merror[0m[90m TS2307: [0mCannot find module '../DashboardLayout' or its corresponding type declarations.
|
|
47
|
-
|
|
48
|
-
[7m15[0m import { DashboardLayout } from '../DashboardLayout';
|
|
49
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~[0m
|
|
50
|
-
|
|
51
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m16[0m:[93m33[0m - [91merror[0m[90m TS2307: [0mCannot find module '../ProductSwitcher' or its corresponding type declarations.
|
|
52
|
-
|
|
53
|
-
[7m16[0m import { ProductSwitcher } from '../ProductSwitcher';
|
|
54
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~[0m
|
|
55
|
-
|
|
56
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m17[0m:[93m35[0m - [91merror[0m[90m TS2307: [0mCannot find module '../ProductSwitcher/faker' or its corresponding type declarations.
|
|
57
|
-
|
|
58
|
-
[7m17[0m import { handleGetProducts } from '../ProductSwitcher/faker';
|
|
59
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
60
|
-
|
|
61
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m18[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../styles/styled' or its corresponding type declarations.
|
|
62
|
-
|
|
63
|
-
[7m18[0m import { styled } from '../styles/styled';
|
|
64
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~[0m
|
|
65
|
-
|
|
66
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m19[0m:[93m35[0m - [91merror[0m[90m TS2307: [0mCannot find module '../DashboardLayout/Sidebar' or its corresponding type declarations.
|
|
67
|
-
|
|
68
|
-
[7m19[0m import { type SidebarProps } from '../DashboardLayout/Sidebar';
|
|
69
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
70
|
-
|
|
71
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m21[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../Select' or its corresponding type declarations.
|
|
72
|
-
|
|
73
|
-
[7m21[0m import { Select } from '../Select';
|
|
74
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
75
|
-
|
|
76
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m22[0m:[93m28[0m - [91merror[0m[90m TS2307: [0mCannot find module '../PageLayout' or its corresponding type declarations.
|
|
77
|
-
|
|
78
|
-
[7m22[0m import { PageLayout } from '../PageLayout';
|
|
79
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
80
|
-
|
|
81
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m23[0m:[93m22[0m - [91merror[0m[90m TS2307: [0mCannot find module '../Grid' or its corresponding type declarations.
|
|
82
|
-
|
|
83
|
-
[7m23[0m import { Grid } from '../Grid';
|
|
84
|
-
[7m [0m [91m ~~~~~~~~~[0m
|
|
85
|
-
|
|
86
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m25[0m:[93m28[0m - [91merror[0m[90m TS2307: [0mCannot find module '../DatePicker' or its corresponding type declarations.
|
|
87
|
-
|
|
88
|
-
[7m25[0m import { DatePicker } from '../DatePicker';
|
|
89
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
90
|
-
|
|
91
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m26[0m:[93m26[0m - [91merror[0m[90m TS2307: [0mCannot find module '../TextArea' or its corresponding type declarations.
|
|
92
|
-
|
|
93
|
-
[7m26[0m import { TextArea } from '../TextArea';
|
|
94
|
-
[7m [0m [91m ~~~~~~~~~~~~~[0m
|
|
95
|
-
|
|
96
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m75[0m:[93m17[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
97
|
-
|
|
98
|
-
[7m75[0m padding: ${({ theme }) => theme.spacing(0, 4)};
|
|
99
|
-
[7m [0m [91m ~~~~~[0m
|
|
100
|
-
|
|
101
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m81[0m:[93m17[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
102
|
-
|
|
103
|
-
[7m81[0m padding: ${({ theme }) => theme.spacing(10)};
|
|
104
|
-
[7m [0m [91m ~~~~~[0m
|
|
105
|
-
|
|
106
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[0m:[93m82[0m:[93m13[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
107
|
-
|
|
108
|
-
[7m82[0m gap: ${({ theme }) => theme.spacing(3)};
|
|
109
|
-
[7m [0m [91m ~~~~~[0m
|
|
110
|
-
|
|
111
|
-
[96msrc/components/AutoSaveIndicator/AutoSaveIndicator.tsx[0m:[93m1[0m:[93m32[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/icons' or its corresponding type declarations.
|
|
112
|
-
|
|
113
|
-
[7m1[0m import { CrossOutlineSm } from '@astral/icons';
|
|
114
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
115
|
-
|
|
116
|
-
[96msrc/components/AutoSaveIndicator/DefaultState/DefaultState.tsx[0m:[93m1[0m:[93m32[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/icons' or its corresponding type declarations.
|
|
117
|
-
|
|
118
|
-
[7m1[0m import { AutosaveFillMd } from '@astral/icons';
|
|
119
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
120
|
-
|
|
121
|
-
[96msrc/components/AutoSaveIndicator/LoadingState/styles.ts[0m:[93m1[0m:[93m38[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/icons' or its corresponding type declarations.
|
|
122
|
-
|
|
123
|
-
[7m1[0m import { AutosaveLoaderFillMd } from '@astral/icons';
|
|
124
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
125
|
-
|
|
126
|
-
[96msrc/components/AutoSaveIndicator/LoadingState/styles.ts[0m:[93m3[0m:[93m27[0m - [91merror[0m[90m TS2307: [0mCannot find module '../../styles' or its corresponding type declarations.
|
|
127
|
-
|
|
128
|
-
[7m3[0m import { keyframes } from '../../styles';
|
|
129
|
-
[7m [0m [91m ~~~~~~~~~~~~~~[0m
|
|
130
|
-
|
|
131
|
-
[96msrc/components/AutoSaveIndicator/LoadingState/styles.ts[0m:[93m4[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../../styles/styled' or its corresponding type declarations.
|
|
132
|
-
|
|
133
|
-
[7m4[0m import { styled } from '../../styles/styled';
|
|
134
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~[0m
|
|
135
|
-
|
|
136
|
-
[96msrc/components/AutoSaveIndicator/LoadingState/styles.ts[0m:[93m21[0m:[93m23[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
137
|
-
|
|
138
|
-
[7m21[0m padding-right: ${({ theme }) => theme.spacing(2)};
|
|
139
|
-
[7m [0m [91m ~~~~~[0m
|
|
140
|
-
|
|
141
|
-
[96msrc/components/AutoSaveIndicator/styles.ts[0m:[93m1[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../styles' or its corresponding type declarations.
|
|
142
|
-
|
|
143
|
-
[7m1[0m import { styled } from '../styles';
|
|
144
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
145
|
-
|
|
146
|
-
[96msrc/components/AutoSaveIndicator/styles.ts[0m:[93m14[0m:[93m16[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
147
|
-
|
|
148
|
-
[7m14[0m margin: ${({ theme }) => theme.spacing(2)};
|
|
149
|
-
[7m [0m [91m ~~~~~[0m
|
|
150
|
-
|
|
151
|
-
[96msrc/components/AutoSaveIndicator/styles.ts[0m:[93m18[0m:[93m23[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
152
|
-
|
|
153
|
-
[7m18[0m padding-right: ${({ theme }) => theme.spacing(2)};
|
|
154
|
-
[7m [0m [91m ~~~~~[0m
|
|
155
|
-
|
|
156
|
-
[96msrc/components/AutoSaveIndicator/useLogic/useLogic.ts[0m:[93m3[0m:[93m33[0m - [91merror[0m[90m TS2307: [0mCannot find module '../../hooks' or its corresponding type declarations.
|
|
157
|
-
|
|
158
|
-
[7m3[0m import { useLocalStorage } from '../../hooks';
|
|
159
|
-
[7m [0m [91m ~~~~~~~~~~~~~[0m
|
|
160
|
-
|
|
161
|
-
[96msrc/components/BottomDrawer/ButtomDrawer.test.tsx[0m:[93m1[0m:[93m52[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/tests' or its corresponding type declarations.
|
|
162
|
-
|
|
163
|
-
[7m1[0m import { fireEvent, renderWithTheme, screen } from '@astral/tests';
|
|
164
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
165
|
-
|
|
166
|
-
[96msrc/components/CheckboxField/CheckboxField.test.tsx[0m:[93m1[0m:[93m53[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/tests' or its corresponding type declarations.
|
|
167
|
-
|
|
168
|
-
[7m1[0m import { renderWithTheme, screen, userEvents } from '@astral/tests';
|
|
169
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
170
|
-
|
|
171
|
-
[96msrc/components/CheckboxField/CheckboxField.test.tsx[0m:[93m9[0m:[93m48[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
172
|
-
|
|
173
|
-
[7m9[0m expect(screen.getByLabelText('My Checkbox')).toBeInTheDocument();
|
|
174
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
175
|
-
|
|
176
|
-
[96msrc/components/CheckboxField/CheckboxField.test.tsx[0m:[93m18[0m:[93m44[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeVisible' does not exist on type 'Assertion<any>'.
|
|
177
|
-
|
|
178
|
-
[7m18[0m expect(screen.getByText('helper text')).toBeVisible();
|
|
179
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
180
|
-
|
|
181
|
-
[96msrc/components/CheckboxField/CheckboxField.test.tsx[0m:[93m47[0m:[93m20[0m - [91merror[0m[90m TS2339: [0mProperty 'toHaveTextContent' does not exist on type 'Assertion<any>'.
|
|
182
|
-
|
|
183
|
-
[7m47[0m expect(tooltip).toHaveTextContent(/^helper text$/);
|
|
184
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
185
|
-
|
|
186
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m75[0m:[93m30[0m - [91merror[0m[90m TS2304: [0mCannot find name 'styled'.
|
|
187
|
-
|
|
188
|
-
[7m75[0m const BaseContentContainer = styled(Grid)`
|
|
189
|
-
[7m [0m [91m ~~~~~~[0m
|
|
190
|
-
|
|
191
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m75[0m:[93m37[0m - [91merror[0m[90m TS2304: [0mCannot find name 'Grid'.
|
|
192
|
-
|
|
193
|
-
[7m75[0m const BaseContentContainer = styled(Grid)`
|
|
194
|
-
[7m [0m [91m ~~~~[0m
|
|
195
|
-
|
|
196
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m88[0m:[93m4[0m - [91merror[0m[90m TS2304: [0mCannot find name 'Grid'.
|
|
197
|
-
|
|
198
|
-
[7m88[0m <Grid container spacing={2}>
|
|
199
|
-
[7m [0m [91m ~~~~[0m
|
|
200
|
-
|
|
201
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m92[0m:[93m5[0m - [91merror[0m[90m TS2304: [0mCannot find name 'Grid'.
|
|
202
|
-
|
|
203
|
-
[7m92[0m </Grid>
|
|
204
|
-
[7m [0m [91m ~~~~[0m
|
|
205
|
-
|
|
206
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m105[0m:[93m14[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
207
|
-
|
|
208
|
-
[7m105[0m imgSrc: errorIllustration,
|
|
209
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
210
|
-
|
|
211
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m156[0m:[93m26[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
212
|
-
|
|
213
|
-
[7m156[0m defaultErrorImgSrc: errorIllustration,
|
|
214
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
215
|
-
|
|
216
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m157[0m:[93m20[0m - [91merror[0m[90m TS2304: [0mCannot find name 'noDataIllustration'.
|
|
217
|
-
|
|
218
|
-
[7m157[0m noDataImgSrc: noDataIllustration,
|
|
219
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~[0m
|
|
220
|
-
|
|
221
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m158[0m:[93m34[0m - [91merror[0m[90m TS2304: [0mCannot find name 'outdatedReleaseIllustration'.
|
|
222
|
-
|
|
223
|
-
[7m158[0m outdatedReleaseErrorImgSrc: outdatedReleaseIllustration,
|
|
224
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
225
|
-
|
|
226
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m189[0m:[93m26[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
227
|
-
|
|
228
|
-
[7m189[0m defaultErrorImgSrc: errorIllustration,
|
|
229
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
230
|
-
|
|
231
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m190[0m:[93m20[0m - [91merror[0m[90m TS2304: [0mCannot find name 'noDataIllustration'.
|
|
232
|
-
|
|
233
|
-
[7m190[0m noDataImgSrc: noDataIllustration,
|
|
234
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~[0m
|
|
235
|
-
|
|
236
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m191[0m:[93m34[0m - [91merror[0m[90m TS2304: [0mCannot find name 'outdatedReleaseIllustration'.
|
|
237
|
-
|
|
238
|
-
[7m191[0m outdatedReleaseErrorImgSrc: outdatedReleaseIllustration,
|
|
239
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
240
|
-
|
|
241
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m198[0m:[93m15[0m - [91merror[0m[90m TS2304: [0mCannot find name 'techSupIllustration'.
|
|
242
|
-
|
|
243
|
-
[7m198[0m imgSrc: techSupIllustration,
|
|
244
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~[0m
|
|
245
|
-
|
|
246
|
-
[96msrc/components/ContentState/ContentState.stories.tsx[0m:[93m225[0m:[93m14[0m - [91merror[0m[90m TS2304: [0mCannot find name 'certificatesNotFound'.
|
|
247
|
-
|
|
248
|
-
[7m225[0m imgSrc: certificatesNotFound,
|
|
249
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~[0m
|
|
250
|
-
|
|
251
|
-
[96msrc/components/CopyTypography/CopyTypography.test.tsx[0m:[93m1[0m:[93m53[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/tests' or its corresponding type declarations.
|
|
252
|
-
|
|
253
|
-
[7m1[0m import { renderWithTheme, screen, userEvents } from '@astral/tests';
|
|
254
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
255
|
-
|
|
256
|
-
[96msrc/components/DataGrid/Cell/Cell.tsx[0m:[93m59[0m:[93m11[0m - [91merror[0m[90m TS2322: [0mType '{ children: unknown; }' is not assignable to type '{ children?: ReactNode; }'.
|
|
257
|
-
Types of property 'children' are incompatible.
|
|
258
|
-
Type 'unknown' is not assignable to type 'ReactNode'.
|
|
259
|
-
|
|
260
|
-
[7m59[0m <>{formattedValue}</>
|
|
261
|
-
[7m [0m [91m ~~[0m
|
|
262
|
-
|
|
263
|
-
[96msrc/components/DataGrid/DataGrid.stories.tsx[0m:[93m6[0m:[93m8[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/icons' or its corresponding type declarations.
|
|
264
|
-
|
|
265
|
-
[7m6[0m } from '@astral/icons';
|
|
266
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
267
|
-
|
|
268
|
-
[96msrc/components/DataGrid/DataGrid.stories.tsx[0m:[93m473[0m:[93m19[0m - [91merror[0m[90m TS7006: [0mParameter 'row' implicitly has an 'any' type.
|
|
269
|
-
|
|
270
|
-
[7m473[0m onClick: (row) => alert(`Delete: ${JSON.stringify(row)}`),
|
|
271
|
-
[7m [0m [91m ~~~[0m
|
|
272
|
-
|
|
273
|
-
[96msrc/components/DataGrid/DataGrid.stories.tsx[0m:[93m1842[0m:[93m29[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
274
|
-
|
|
275
|
-
[7m1842[0m defaultErrorImgSrc: errorIllustration,
|
|
276
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
277
|
-
|
|
278
|
-
[96msrc/components/DataGrid/DataGrid.stories.tsx[0m:[93m1869[0m:[93m29[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
279
|
-
|
|
280
|
-
[7m1869[0m defaultErrorImgSrc: errorIllustration,
|
|
281
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
282
|
-
|
|
283
|
-
[96msrc/components/DataGrid/DataGrid.tsx[0m:[93m270[0m:[93m6[0m - [91merror[0m[90m TS2322: [0mType '{ children: Element[]; inert: string | undefined; }' is not assignable to type 'HTMLAttributes<HTMLDivElement>'.
|
|
284
|
-
Types of property 'inert' are incompatible.
|
|
285
|
-
Type 'string | undefined' is not assignable to type 'boolean | undefined'.
|
|
286
|
-
Type 'string' is not assignable to type 'boolean | undefined'.
|
|
287
|
-
|
|
288
|
-
[7m270[0m <TableContainer {...{ inert: isDataGridDisabled ? '' : undefined }}>
|
|
289
|
-
[7m [0m [91m ~~~~~~~~~~~~~~[0m
|
|
290
|
-
|
|
291
|
-
[96msrc/components/DataGrid/HeadCell/HeadCell.tsx[0m:[93m1[0m:[93m58[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/icons' or its corresponding type declarations.
|
|
292
|
-
|
|
293
|
-
[7m1[0m import { SortDownFillSm, SortFillSm, SortUpFillSm } from '@astral/icons';
|
|
294
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
295
|
-
|
|
296
|
-
[96msrc/components/DataGrid/HeadCell/styles.ts[0m:[93m2[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../../styles' or its corresponding type declarations.
|
|
297
|
-
|
|
298
|
-
[7m2[0m import { styled } from '../../styles';
|
|
299
|
-
[7m [0m [91m ~~~~~~~~~~~~~~[0m
|
|
300
|
-
|
|
301
|
-
[96msrc/components/DataGrid/HeadCell/styles.ts[0m:[93m13[0m:[93m22[0m - [91merror[0m[90m TS7006: [0mParameter 'prop' implicitly has an 'any' type.
|
|
302
|
-
|
|
303
|
-
[7m13[0m shouldForwardProp: (prop) =>
|
|
304
|
-
[7m [0m [91m ~~~~[0m
|
|
305
|
-
|
|
306
|
-
[96msrc/components/DataGrid/HeadCell/styles.ts[0m:[93m16[0m:[93m16[0m - [91merror[0m[90m TS7031: [0mBinding element '$isSortable' implicitly has an 'any' type.
|
|
307
|
-
|
|
308
|
-
[7m16[0m cursor: ${({ $isSortable }) => ($isSortable ? 'pointer' : 'initial')};
|
|
309
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
310
|
-
|
|
311
|
-
[96msrc/components/DataGrid/HeadCell/styles.ts[0m:[93m21[0m:[93m25[0m - [91merror[0m[90m TS7031: [0mBinding element '$align' implicitly has an 'any' type.
|
|
312
|
-
|
|
313
|
-
[7m21[0m justify-content: ${({ $align }) => alignToJustifyContent($align)};
|
|
314
|
-
[7m [0m [91m ~~~~~~[0m
|
|
315
|
-
|
|
316
|
-
[96msrc/components/DataGrid/HeadCell/styles.ts[0m:[93m24[0m:[93m17[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
317
|
-
|
|
318
|
-
[7m24[0m padding: ${({ theme, $hasStartAdornment }) =>
|
|
319
|
-
[7m [0m [91m ~~~~~[0m
|
|
320
|
-
|
|
321
|
-
[96msrc/components/DataGrid/HeadCell/styles.ts[0m:[93m24[0m:[93m24[0m - [91merror[0m[90m TS7031: [0mBinding element '$hasStartAdornment' implicitly has an 'any' type.
|
|
322
|
-
|
|
323
|
-
[7m24[0m padding: ${({ theme, $hasStartAdornment }) =>
|
|
324
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~[0m
|
|
325
|
-
|
|
326
|
-
[96msrc/components/DataGrid/HeadCell/styles.ts[0m:[93m27[0m:[93m15[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
327
|
-
|
|
328
|
-
[7m27[0m color: ${({ theme }) => theme.palette.grey[700]};
|
|
329
|
-
[7m [0m [91m ~~~~~[0m
|
|
330
|
-
|
|
331
|
-
[96msrc/components/DataGrid/Loader/styles.ts[0m:[93m4[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../../styles' or its corresponding type declarations.
|
|
332
|
-
|
|
333
|
-
[7m4[0m import { styled } from '../../styles';
|
|
334
|
-
[7m [0m [91m ~~~~~~~~~~~~~~[0m
|
|
335
|
-
|
|
336
|
-
[96msrc/components/DataGrid/Loader/styles.ts[0m:[93m14[0m:[93m26[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
337
|
-
|
|
338
|
-
[7m14[0m background-color: ${({ theme }) => theme.palette.background.element};
|
|
339
|
-
[7m [0m [91m ~~~~~[0m
|
|
340
|
-
|
|
341
|
-
[96msrc/components/DataGridActionCell/DataGridActionCell.stories.tsx[0m:[93m2[0m:[93m60[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/icons' or its corresponding type declarations.
|
|
342
|
-
|
|
343
|
-
[7m2[0m import { BinOutlineMd, EditOutlineMd, SaveOutlineMd } from '@astral/icons';
|
|
344
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
345
|
-
|
|
346
|
-
[96msrc/components/DataGridActionCell/DataGridActionCell.stories.tsx[0m:[93m5[0m:[93m51[0m - [91merror[0m[90m TS2307: [0mCannot find module '../NewDataGrid' or its corresponding type declarations.
|
|
347
|
-
|
|
348
|
-
[7m5[0m import { type DataGridColumns, NewDataGrid } from '../NewDataGrid';
|
|
349
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~[0m
|
|
350
|
-
|
|
351
|
-
[96msrc/components/DataGridActionCell/DataGridActionCell.stories.tsx[0m:[93m167[0m:[93m20[0m - [91merror[0m[90m TS7006: [0mParameter 'row' implicitly has an 'any' type.
|
|
352
|
-
|
|
353
|
-
[7m167[0m renderCell: (row) => <FakeActionCell row={row} />,
|
|
354
|
-
[7m [0m [91m ~~~[0m
|
|
355
|
-
|
|
356
|
-
[96msrc/components/DataGridActionCell/styles.ts[0m:[93m1[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../styles' or its corresponding type declarations.
|
|
357
|
-
|
|
358
|
-
[7m1[0m import { styled } from '../styles';
|
|
359
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
360
|
-
|
|
361
|
-
[96msrc/components/DataGridActionCell/types.ts[0m:[93m109[0m:[93m6[0m - [91merror[0m[90m TS2707: [0mGeneric type 'IconButtonProps' requires between 1 and 2 type arguments.
|
|
362
|
-
|
|
363
|
-
[7m109[0m | (IconButtonProps & SingleAction<TAction>)
|
|
364
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
365
|
-
|
|
366
|
-
[96msrc/components/DataGridOld/DataGridOld.tsx[0m:[93m50[0m:[93m11[0m - [91merror[0m[90m TS2322: [0mType 'DataGridColumn<TRow>[]' is not assignable to type 'DataGridColumn<Record<string, unknown>>[]'.
|
|
367
|
-
Type 'DataGridColumn<TRow>' is not assignable to type 'DataGridColumn<Record<string, unknown>>'.
|
|
368
|
-
Type 'Record<string, unknown>' is not assignable to type 'TRow'.
|
|
369
|
-
'TRow' could be instantiated with an arbitrary type which could be unrelated to 'Record<string, unknown>'.
|
|
370
|
-
|
|
371
|
-
[7m50[0m <Head columns={columns} rowHeight={rowHeight} />
|
|
372
|
-
[7m [0m [91m ~~~~~~~[0m
|
|
373
|
-
|
|
374
|
-
[96msrc/components/DataGridOld/Head/Head.tsx[0m:[93m7[0m:[93m2[0m
|
|
375
|
-
[7m7[0m columns: DataGridColumn<TRow>[];
|
|
376
|
-
[7m [0m [96m ~~~~~~~[0m
|
|
377
|
-
The expected type comes from property 'columns' which is declared here on type 'IntrinsicAttributes & DataGridHeaderProps<Record<string, unknown>>'
|
|
378
|
-
|
|
379
|
-
[96msrc/components/DataGridPagination/DataGridPagination.stories.tsx[0m:[93m8[0m:[93m8[0m - [91merror[0m[90m TS2307: [0mCannot find module '../NewDataGrid' or its corresponding type declarations.
|
|
380
|
-
|
|
381
|
-
[7m8[0m } from '../NewDataGrid';
|
|
382
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~[0m
|
|
383
|
-
|
|
384
|
-
[96msrc/components/DataGridPagination/DataGridPagination.stories.tsx[0m:[93m9[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../styles' or its corresponding type declarations.
|
|
385
|
-
|
|
386
|
-
[7m9[0m import { styled } from '../styles';
|
|
387
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
388
|
-
|
|
389
|
-
[96msrc/components/DataGridPagination/DataGridPagination.stories.tsx[0m:[93m10[0m:[93m29[0m - [91merror[0m[90m TS2307: [0mCannot find module '../SearchField' or its corresponding type declarations.
|
|
390
|
-
|
|
391
|
-
[7m10[0m import { SearchField } from '../SearchField';
|
|
392
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~[0m
|
|
393
|
-
|
|
394
|
-
[96msrc/components/DataGridPagination/DataGridPagination.stories.tsx[0m:[93m92[0m:[93m18[0m - [91merror[0m[90m TS7031: [0mBinding element 'createDate' implicitly has an 'any' type.
|
|
395
|
-
|
|
396
|
-
[7m92[0m format: ({ createDate }) => new Date(createDate).toLocaleDateString(),
|
|
397
|
-
[7m [0m [91m ~~~~~~~~~~[0m
|
|
398
|
-
|
|
399
|
-
[96msrc/components/DataGridPagination/DataGridPagination.stories.tsx[0m:[93m143[0m:[93m20[0m - [91merror[0m[90m TS7006: [0mParameter 'event' implicitly has an 'any' type.
|
|
400
|
-
|
|
401
|
-
[7m143[0m onChange={(event) => setDocumentName(event.target.value)}
|
|
402
|
-
[7m [0m [91m ~~~~~[0m
|
|
403
|
-
|
|
404
|
-
[96msrc/components/DataGridPagination/DataGridPagination.test.tsx[0m:[93m2[0m:[93m41[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/tests' or its corresponding type declarations.
|
|
405
|
-
|
|
406
|
-
[7m2[0m import { renderWithTheme, screen } from '@astral/tests';
|
|
407
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
408
|
-
|
|
409
|
-
[96msrc/components/DataGridPagination/DataGridPagination.test.tsx[0m:[93m27[0m:[93m20[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
410
|
-
|
|
411
|
-
[7m27[0m expect(text).toBeInTheDocument();
|
|
412
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
413
|
-
|
|
414
|
-
[96msrc/components/DataGridPagination/DataGridPagination.test.tsx[0m:[93m36[0m:[93m23[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeEmptyDOMElement' does not exist on type 'Assertion<any>'.
|
|
415
|
-
|
|
416
|
-
[7m36[0m expect(container).toBeEmptyDOMElement();
|
|
417
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~[0m
|
|
418
|
-
|
|
419
|
-
[96msrc/components/DataGridPagination/DataGridPagination.test.tsx[0m:[93m50[0m:[93m40[0m - [91merror[0m[90m TS7006: [0mParameter 'button' implicitly has an 'any' type.
|
|
420
|
-
|
|
421
|
-
[7m50[0m const selectButton = buttons.find((button) => button.textContent === '10');
|
|
422
|
-
[7m [0m [91m ~~~~~~[0m
|
|
423
|
-
|
|
424
|
-
[96msrc/components/DataGridPagination/DataGridPagination.test.tsx[0m:[93m66[0m:[93m40[0m - [91merror[0m[90m TS7006: [0mParameter 'button' implicitly has an 'any' type.
|
|
425
|
-
|
|
426
|
-
[7m66[0m const selectButton = buttons.find((button) => button.textContent === '20');
|
|
427
|
-
[7m [0m [91m ~~~~~~[0m
|
|
428
|
-
|
|
429
|
-
[96msrc/components/DataGridPagination/DataGridPagination.test.tsx[0m:[93m68[0m:[93m26[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
430
|
-
|
|
431
|
-
[7m68[0m expect(selectButton).toBeInTheDocument();
|
|
432
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
433
|
-
|
|
434
|
-
[96msrc/components/DataGridPagination/DataGridPagination.test.tsx[0m:[93m86[0m:[93m40[0m - [91merror[0m[90m TS7006: [0mParameter 'button' implicitly has an 'any' type.
|
|
435
|
-
|
|
436
|
-
[7m86[0m const selectButton = buttons.find((button) => button.textContent === '15');
|
|
437
|
-
[7m [0m [91m ~~~~~~[0m
|
|
438
|
-
|
|
439
|
-
[96msrc/components/DataGridPagination/DataGridPagination.test.tsx[0m:[93m88[0m:[93m26[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
440
|
-
|
|
441
|
-
[7m88[0m expect(selectButton).toBeInTheDocument();
|
|
442
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
443
|
-
|
|
444
|
-
[96msrc/components/DataGridPagination/DataGridPagination.test.tsx[0m:[93m102[0m:[93m52[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeVisible' does not exist on type 'Assertion<any>'.
|
|
445
|
-
|
|
446
|
-
[7m102[0m expect(screen.getByText('1 — 8 из 8 записей')).toBeVisible();
|
|
447
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
448
|
-
|
|
449
|
-
[96msrc/components/DataGridPagination/DataGridPagination.tsx[0m:[93m4[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../Select' or its corresponding type declarations.
|
|
450
|
-
|
|
451
|
-
[7m4[0m import { Select } from '../Select';
|
|
452
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
453
|
-
|
|
454
|
-
[96msrc/components/DataGridPagination/faker.ts[0m:[93m7[0m:[93m8[0m - [91merror[0m[90m TS2307: [0mCannot find module '../NewDataGrid' or its corresponding type declarations.
|
|
455
|
-
|
|
456
|
-
[7m7[0m } from '../NewDataGrid';
|
|
457
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~[0m
|
|
458
|
-
|
|
459
|
-
[96msrc/components/DataGridPagination/styles.ts[0m:[93m3[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../styles' or its corresponding type declarations.
|
|
460
|
-
|
|
461
|
-
[7m3[0m import { styled } from '../styles';
|
|
462
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
463
|
-
|
|
464
|
-
[96msrc/components/DataGridPagination/styles.ts[0m:[93m12[0m:[93m21[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
465
|
-
|
|
466
|
-
[7m12[0m padding-top: ${({ theme }) => theme.spacing(4)};
|
|
467
|
-
[7m [0m [91m ~~~~~[0m
|
|
468
|
-
|
|
469
|
-
[96msrc/components/DataGridPagination/styles.ts[0m:[93m16[0m:[93m15[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
470
|
-
|
|
471
|
-
[7m16[0m color: ${({ theme }) => theme.palette.grey['700']};
|
|
472
|
-
[7m [0m [91m ~~~~~[0m
|
|
473
|
-
|
|
474
|
-
[96msrc/components/DataGridPagination/styles.ts[0m:[93m21[0m:[93m13[0m - [91merror[0m[90m TS7031: [0mBinding element 'theme' implicitly has an 'any' type.
|
|
475
|
-
|
|
476
|
-
[7m21[0m gap: ${({ theme }) => theme.spacing(3)};
|
|
477
|
-
[7m [0m [91m ~~~~~[0m
|
|
478
|
-
|
|
479
|
-
[96msrc/components/Description/Description.test.tsx[0m:[93m1[0m:[93m53[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/tests' or its corresponding type declarations.
|
|
480
|
-
|
|
481
|
-
[7m1[0m import { renderWithTheme, screen, userEvents } from '@astral/tests';
|
|
482
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
483
|
-
|
|
484
|
-
[96msrc/components/Description/Description.test.tsx[0m:[93m19[0m:[93m35[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
485
|
-
|
|
486
|
-
[7m19[0m expect(defaultSeparatorElement).toBeInTheDocument();
|
|
487
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
488
|
-
|
|
489
|
-
[96msrc/components/Description/Description.test.tsx[0m:[93m34[0m:[93m34[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
490
|
-
|
|
491
|
-
[7m34[0m expect(customSeparatorElement).toBeInTheDocument();
|
|
492
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
493
|
-
|
|
494
|
-
[96msrc/components/Description/Description.test.tsx[0m:[93m46[0m:[93m30[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
495
|
-
|
|
496
|
-
[7m46[0m expect(defaultEmptySymbol).toBeInTheDocument();
|
|
497
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
498
|
-
|
|
499
|
-
[96msrc/components/Description/Description.test.tsx[0m:[93m60[0m:[93m23[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
500
|
-
|
|
501
|
-
[7m60[0m expect(stubElement).toBeInTheDocument();
|
|
502
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
503
|
-
|
|
504
|
-
[96msrc/components/Description/Description.test.tsx[0m:[93m74[0m:[93m27[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
505
|
-
|
|
506
|
-
[7m74[0m expect(childrenElement).toBeInTheDocument();
|
|
507
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
508
|
-
|
|
509
|
-
[96msrc/components/Description/Description.test.tsx[0m:[93m86[0m:[93m27[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
510
|
-
|
|
511
|
-
[7m86[0m expect(childrenElement).toBeInTheDocument();
|
|
512
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
513
|
-
|
|
514
|
-
[96msrc/components/DescriptionList/DescriptionList.test.tsx[0m:[93m1[0m:[93m41[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/tests' or its corresponding type declarations.
|
|
515
|
-
|
|
516
|
-
[7m1[0m import { renderWithTheme, screen } from '@astral/tests';
|
|
517
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
518
|
-
|
|
519
|
-
[96msrc/components/DescriptionList/DescriptionList.test.tsx[0m:[93m35[0m:[93m6[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
520
|
-
|
|
521
|
-
[7m35[0m ).toBeInTheDocument();
|
|
522
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
523
|
-
|
|
524
|
-
[96msrc/components/DescriptionList/DescriptionList.test.tsx[0m:[93m37[0m:[93m46[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
525
|
-
|
|
526
|
-
[7m37[0m expect(screen.getByText(value as string)).toBeInTheDocument();
|
|
527
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
528
|
-
|
|
529
|
-
[96msrc/components/DescriptionList/DescriptionList.test.tsx[0m:[93m51[0m:[93m6[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
530
|
-
|
|
531
|
-
[7m51[0m ).toBeInTheDocument();
|
|
532
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
533
|
-
|
|
534
|
-
[96msrc/components/DescriptionList/DescriptionList.test.tsx[0m:[93m53[0m:[93m51[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
535
|
-
|
|
536
|
-
[7m53[0m expect(screen.getByText(item.value as string)).toBeInTheDocument();
|
|
537
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
538
|
-
|
|
539
|
-
[96msrc/components/DescriptionList/DescriptionList.test.tsx[0m:[93m98[0m:[93m39[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeInTheDocument' does not exist on type 'Assertion<any>'.
|
|
540
|
-
|
|
541
|
-
[7m98[0m expect(screen.getByText(fakeTitle)).toBeInTheDocument();
|
|
542
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
543
|
-
|
|
544
|
-
[96msrc/components/Divider/Divider.stories.tsx[0m:[93m3[0m:[93m22[0m - [91merror[0m[90m TS2307: [0mCannot find module '../Grid' or its corresponding type declarations.
|
|
545
|
-
|
|
546
|
-
[7m3[0m import { Grid } from '../Grid';
|
|
547
|
-
[7m [0m [91m ~~~~~~~~~[0m
|
|
548
|
-
|
|
549
|
-
[96msrc/components/Divider/Divider.stories.tsx[0m:[93m8[0m:[93m24[0m - [91merror[0m[90m TS2307: [0mCannot find module '../styles' or its corresponding type declarations.
|
|
550
|
-
|
|
551
|
-
[7m8[0m import { styled } from '../styles';
|
|
552
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
553
|
-
|
|
554
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.stories.tsx[0m:[93m23[0m:[93m25[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
555
|
-
|
|
556
|
-
[7m23[0m defaultErrorImgSrc: errorIllustration,
|
|
557
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
558
|
-
|
|
559
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.stories.tsx[0m:[93m24[0m:[93m19[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
560
|
-
|
|
561
|
-
[7m24[0m noDataImgSrc: errorIllustration,
|
|
562
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
563
|
-
|
|
564
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.stories.tsx[0m:[93m25[0m:[93m33[0m - [91merror[0m[90m TS2304: [0mCannot find name 'outdatedReleaseIllustration'.
|
|
565
|
-
|
|
566
|
-
[7m25[0m outdatedReleaseErrorImgSrc: outdatedReleaseIllustration,
|
|
567
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
568
|
-
|
|
569
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.stories.tsx[0m:[93m44[0m:[93m24[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
570
|
-
|
|
571
|
-
[7m44[0m defaultErrorImgSrc: errorIllustration,
|
|
572
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
573
|
-
|
|
574
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.stories.tsx[0m:[93m45[0m:[93m18[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
575
|
-
|
|
576
|
-
[7m45[0m noDataImgSrc: errorIllustration,
|
|
577
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
578
|
-
|
|
579
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.stories.tsx[0m:[93m46[0m:[93m32[0m - [91merror[0m[90m TS2304: [0mCannot find name 'outdatedReleaseIllustration'.
|
|
580
|
-
|
|
581
|
-
[7m46[0m outdatedReleaseErrorImgSrc: outdatedReleaseIllustration,
|
|
582
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
583
|
-
|
|
584
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.test.tsx[0m:[93m1[0m:[93m53[0m - [91merror[0m[90m TS2307: [0mCannot find module '@astral/tests' or its corresponding type declarations.
|
|
585
|
-
|
|
586
|
-
[7m1[0m import { renderWithTheme, screen, userEvents } from '@astral/tests';
|
|
587
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~[0m
|
|
588
|
-
|
|
589
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.test.tsx[0m:[93m5[0m:[93m31[0m - [91merror[0m[90m TS2307: [0mCannot find module '../../../ui/illustrations/error.svg' or its corresponding type declarations.
|
|
590
|
-
|
|
591
|
-
[7m5[0m import errorIllustration from '../../../ui/illustrations/error.svg';
|
|
592
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
593
|
-
|
|
594
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.test.tsx[0m:[93m6[0m:[93m41[0m - [91merror[0m[90m TS2307: [0mCannot find module '../../../ui/illustrations/outdated-release.svg' or its corresponding type declarations.
|
|
595
|
-
|
|
596
|
-
[7m6[0m import outdatedReleaseIllustration from '../../../ui/illustrations/outdated-release.svg';
|
|
597
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
598
|
-
|
|
599
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.test.tsx[0m:[93m39[0m:[93m63[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeVisible' does not exist on type 'Assertion<any>'.
|
|
600
|
-
|
|
601
|
-
[7m39[0m expect(screen.getByText('Произошла непредвиденная ошибка')).toBeVisible();
|
|
602
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
603
|
-
|
|
604
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.test.tsx[0m:[93m50[0m:[93m52[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeVisible' does not exist on type 'Assertion<any>'.
|
|
605
|
-
|
|
606
|
-
[7m50[0m expect(screen.getByText('Обновление в сервисе')).toBeVisible();
|
|
607
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
608
|
-
|
|
609
|
-
[96msrc/components/ErrorBoundary/ErrorBoundary.test.tsx[0m:[93m61[0m:[93m52[0m - [91merror[0m[90m TS2339: [0mProperty 'toBeVisible' does not exist on type 'Assertion<any>'.
|
|
610
|
-
|
|
611
|
-
[7m61[0m expect(screen.getByText('Обновление в сервисе')).toBeVisible();
|
|
612
|
-
[7m [0m [91m ~~~~~~~~~~~[0m
|
|
613
|
-
|
|
614
|
-
[96msrc/components/InternalErrorPlaceholder/InternalErrorPlaceholder.stories.tsx[0m:[93m22[0m:[93m25[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
615
|
-
|
|
616
|
-
[7m22[0m defaultErrorImgSrc: errorIllustration,
|
|
617
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
618
|
-
|
|
619
|
-
[96msrc/components/InternalErrorPlaceholder/InternalErrorPlaceholder.stories.tsx[0m:[93m23[0m:[93m19[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
620
|
-
|
|
621
|
-
[7m23[0m noDataImgSrc: errorIllustration,
|
|
622
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
623
|
-
|
|
624
|
-
[96msrc/components/InternalErrorPlaceholder/InternalErrorPlaceholder.stories.tsx[0m:[93m24[0m:[93m33[0m - [91merror[0m[90m TS2304: [0mCannot find name 'errorIllustration'.
|
|
625
|
-
|
|
626
|
-
[7m24[0m outdatedReleaseErrorImgSrc: errorIllustration,
|
|
627
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~[0m
|
|
628
|
-
|
|
629
|
-
[96msrc/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.stories.tsx[0m:[93m21[0m:[93m25[0m - [91merror[0m[90m TS2304: [0mCannot find name 'outdatedReleaseIllustration'.
|
|
630
|
-
|
|
631
|
-
[7m21[0m defaultErrorImgSrc: outdatedReleaseIllustration,
|
|
632
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
633
|
-
|
|
634
|
-
[96msrc/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.stories.tsx[0m:[93m22[0m:[93m19[0m - [91merror[0m[90m TS2304: [0mCannot find name 'outdatedReleaseIllustration'.
|
|
635
|
-
|
|
636
|
-
[7m22[0m noDataImgSrc: outdatedReleaseIllustration,
|
|
637
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
638
|
-
|
|
639
|
-
[96msrc/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.stories.tsx[0m:[93m23[0m:[93m33[0m - [91merror[0m[90m TS2304: [0mCannot find name 'outdatedReleaseIllustration'.
|
|
640
|
-
|
|
641
|
-
[7m23[0m outdatedReleaseErrorImgSrc: outdatedReleaseIllustration,
|
|
642
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
643
|
-
|
|
644
|
-
[96msrc/components/OverflowTypography/hooks/useOverflowed/useOverflowed.ts[0m:[93m17[0m:[93m23[0m - [91merror[0m[90m TS2304: [0mCannot find name 'useFirstMountState'.
|
|
645
|
-
|
|
646
|
-
[7m17[0m const isFirstMount = useFirstMountState();
|
|
647
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~[0m
|
|
648
|
-
|
|
649
|
-
[96msrc/components/OverflowTypography/hooks/useOverflowed/useOverflowed.ts[0m:[93m43[0m:[93m47[0m - [91merror[0m[90m TS2345: [0mArgument of type 'Funnel<[thisArg: unknown, ...args: any[]]>' is not assignable to parameter of type 'ResizeObserverCallback'.
|
|
650
|
-
Type 'Funnel<[thisArg: unknown, ...args: any[]]>' provides no match for the signature '(entries: ResizeObserverEntry[], observer: ResizeObserver): void'.
|
|
651
|
-
|
|
652
|
-
[7m43[0m const resizeObserver = new ResizeObserver(funnel(checkOverflow, 500));
|
|
653
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
654
|
-
|
|
655
|
-
[96msrc/components/OverflowTypography/hooks/useOverflowed/useOverflowed.ts[0m:[93m43[0m:[93m69[0m - [91merror[0m[90m TS2345: [0mArgument of type 'number' is not assignable to parameter of type 'FunnelOptions<[thisArg: unknown, ...args: any[]], ResizeObserverDataOptions[]>'.
|
|
656
|
-
|
|
657
|
-
[7m43[0m const resizeObserver = new ResizeObserver(funnel(checkOverflow, 500));
|
|
658
|
-
[7m [0m [91m ~~~[0m
|
|
659
|
-
|
|
660
|
-
[96msrc/components/Pagination/Pagination.stories.tsx[0m:[93m4[0m:[93m22[0m - [91merror[0m[90m TS2307: [0mCannot find module '../Grid' or its corresponding type declarations.
|
|
661
|
-
|
|
662
|
-
[7m4[0m import { Grid } from '../Grid';
|
|
663
|
-
[7m [0m [91m ~~~~~~~~~[0m
|
|
664
|
-
|
|
665
|
-
[96msrc/components/Placeholder/Placeholder.stories.tsx[0m:[93m30[0m:[93m11[0m - [91merror[0m[90m TS2304: [0mCannot find name 'certificatesNotFound'.
|
|
666
|
-
|
|
667
|
-
[7m30[0m imgSrc: certificatesNotFound,
|
|
668
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~[0m
|
|
669
|
-
|
|
670
|
-
[96msrc/components/Placeholder/Placeholder.stories.tsx[0m:[93m52[0m:[93m11[0m - [91merror[0m[90m TS2304: [0mCannot find name 'certificatesNotFound'.
|
|
671
|
-
|
|
672
|
-
[7m52[0m imgSrc={certificatesNotFound}
|
|
673
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~[0m
|
|
674
|
-
|
|
675
|
-
[96msrc/components/Placeholder/Placeholder.stories.tsx[0m:[93m63[0m:[93m14[0m - [91merror[0m[90m TS2304: [0mCannot find name 'styled'.
|
|
676
|
-
|
|
677
|
-
[7m63[0m const List = styled.div`
|
|
678
|
-
[7m [0m [91m ~~~~~~[0m
|
|
679
|
-
|
|
680
|
-
[96msrc/components/Placeholder/Placeholder.stories.tsx[0m:[93m75[0m:[93m13[0m - [91merror[0m[90m TS2304: [0mCannot find name 'certificatesNotFound'.
|
|
681
|
-
|
|
682
|
-
[7m75[0m imgSrc={certificatesNotFound}
|
|
683
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~[0m
|
|
684
|
-
|
|
685
|
-
[96msrc/components/Placeholder/Placeholder.stories.tsx[0m:[93m89[0m:[93m13[0m - [91merror[0m[90m TS2304: [0mCannot find name 'certificatesNotFound'.
|
|
686
|
-
|
|
687
|
-
[7m89[0m imgSrc={certificatesNotFound}
|
|
688
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~[0m
|
|
689
|
-
|
|
690
|
-
[96msrc/components/Placeholder/Placeholder.stories.tsx[0m:[93m103[0m:[93m13[0m - [91merror[0m[90m TS2304: [0mCannot find name 'certificatesNotFound'.
|
|
691
|
-
|
|
692
|
-
[7m103[0m imgSrc={certificatesNotFound}
|
|
693
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~[0m
|
|
694
|
-
|
|
695
|
-
[96msrc/components/Placeholder/Placeholder.stories.tsx[0m:[93m138[0m:[93m12[0m - [91merror[0m[90m TS2304: [0mCannot find name 'Clock'.
|
|
696
|
-
|
|
697
|
-
[7m138[0m imgSrc={Clock}
|
|
698
|
-
[7m [0m [91m ~~~~~[0m
|
|
699
|
-
|
|
700
|
-
[96msrc/components/Placeholder/Placeholder.stories.tsx[0m:[93m181[0m:[93m14[0m - [91merror[0m[90m TS2304: [0mCannot find name 'Clock'.
|
|
701
|
-
|
|
702
|
-
[7m181[0m imgSrc={Clock}
|
|
703
|
-
[7m [0m [91m ~~~~~[0m
|
|
704
|
-
|
|
705
|
-
[96msrc/components/Placeholder/Placeholder.stories.tsx[0m:[93m194[0m:[93m14[0m - [91merror[0m[90m TS2304: [0mCannot find name 'Clock'.
|
|
706
|
-
|
|
707
|
-
[7m194[0m imgSrc={Clock}
|
|
708
|
-
[7m [0m [91m ~~~~~[0m
|
|
709
|
-
|
|
710
|
-
[96msrc/components/Typography/hooks/useTypographyColor/useTypographyColor.tsx[0m:[93m47[0m:[93m13[0m - [91merror[0m[90m TS7053: [0mElement implicitly has an 'any' type because expression of type 'Intensity' can't be used to index type 'PaletteColor | Color | (PaletteColor & Color)'.
|
|
711
|
-
Property '900' does not exist on type 'PaletteColor | Color | (PaletteColor & Color)'.
|
|
712
|
-
|
|
713
|
-
[7m47[0m return theme.palette[colorName]?.[colorIntensity] || colorName;
|
|
714
|
-
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
Found 138 errors in 40 files.
|
|
718
|
-
|
|
719
|
-
Errors Files
|
|
720
|
-
1 src/components/AsyncAutocomplete/AsyncAutocomplete.stories.tsx[90m:26[0m
|
|
721
|
-
1 src/components/AsyncAutocomplete/useLogic/useLogic.ts[90m:43[0m
|
|
722
|
-
1 src/components/Autocomplete/Autocomplete.stories.tsx[90m:8[0m
|
|
723
|
-
1 src/components/Autocomplete/Autocomplete.tsx[90m:196[0m
|
|
724
|
-
16 src/components/AutoSaveIndicator/AutoSaveIndicator.stories.tsx[90m:6[0m
|
|
725
|
-
1 src/components/AutoSaveIndicator/AutoSaveIndicator.tsx[90m:1[0m
|
|
726
|
-
1 src/components/AutoSaveIndicator/DefaultState/DefaultState.tsx[90m:1[0m
|
|
727
|
-
4 src/components/AutoSaveIndicator/LoadingState/styles.ts[90m:1[0m
|
|
728
|
-
3 src/components/AutoSaveIndicator/styles.ts[90m:1[0m
|
|
729
|
-
1 src/components/AutoSaveIndicator/useLogic/useLogic.ts[90m:3[0m
|
|
730
|
-
1 src/components/BottomDrawer/ButtomDrawer.test.tsx[90m:1[0m
|
|
731
|
-
4 src/components/CheckboxField/CheckboxField.test.tsx[90m:1[0m
|
|
732
|
-
13 src/components/ContentState/ContentState.stories.tsx[90m:75[0m
|
|
733
|
-
1 src/components/CopyTypography/CopyTypography.test.tsx[90m:1[0m
|
|
734
|
-
1 src/components/DataGrid/Cell/Cell.tsx[90m:59[0m
|
|
735
|
-
4 src/components/DataGrid/DataGrid.stories.tsx[90m:6[0m
|
|
736
|
-
1 src/components/DataGrid/DataGrid.tsx[90m:270[0m
|
|
737
|
-
1 src/components/DataGrid/HeadCell/HeadCell.tsx[90m:1[0m
|
|
738
|
-
7 src/components/DataGrid/HeadCell/styles.ts[90m:2[0m
|
|
739
|
-
2 src/components/DataGrid/Loader/styles.ts[90m:4[0m
|
|
740
|
-
3 src/components/DataGridActionCell/DataGridActionCell.stories.tsx[90m:2[0m
|
|
741
|
-
1 src/components/DataGridActionCell/styles.ts[90m:1[0m
|
|
742
|
-
1 src/components/DataGridActionCell/types.ts[90m:109[0m
|
|
743
|
-
1 src/components/DataGridOld/DataGridOld.tsx[90m:50[0m
|
|
744
|
-
5 src/components/DataGridPagination/DataGridPagination.stories.tsx[90m:8[0m
|
|
745
|
-
9 src/components/DataGridPagination/DataGridPagination.test.tsx[90m:2[0m
|
|
746
|
-
1 src/components/DataGridPagination/DataGridPagination.tsx[90m:4[0m
|
|
747
|
-
1 src/components/DataGridPagination/faker.ts[90m:7[0m
|
|
748
|
-
4 src/components/DataGridPagination/styles.ts[90m:3[0m
|
|
749
|
-
7 src/components/Description/Description.test.tsx[90m:1[0m
|
|
750
|
-
6 src/components/DescriptionList/DescriptionList.test.tsx[90m:1[0m
|
|
751
|
-
2 src/components/Divider/Divider.stories.tsx[90m:3[0m
|
|
752
|
-
6 src/components/ErrorBoundary/ErrorBoundary.stories.tsx[90m:23[0m
|
|
753
|
-
6 src/components/ErrorBoundary/ErrorBoundary.test.tsx[90m:1[0m
|
|
754
|
-
3 src/components/InternalErrorPlaceholder/InternalErrorPlaceholder.stories.tsx[90m:22[0m
|
|
755
|
-
3 src/components/OutdatedReleasePlaceholder/OutdatedReleasePlaceholder.stories.tsx[90m:21[0m
|
|
756
|
-
3 src/components/OverflowTypography/hooks/useOverflowed/useOverflowed.ts[90m:17[0m
|
|
757
|
-
1 src/components/Pagination/Pagination.stories.tsx[90m:4[0m
|
|
758
|
-
9 src/components/Placeholder/Placeholder.stories.tsx[90m:30[0m
|
|
759
|
-
1 src/components/Typography/hooks/useTypographyColor/useTypographyColor.tsx[90m:47[0m
|
|
760
|
-
[41m[30m ELIFECYCLE [39m[49m [31mCommand failed with exit code 2.[39m
|