@blockscout/ui-toolkit 2.8.1-alpha.0 → 2.8.1-alpha.2
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/chakra/table.d.ts +3 -0
- package/dist/components/forms/fields/FormFieldAddress.d.ts +1 -1
- package/dist/components/forms/fields/FormFieldEmail.d.ts +1 -1
- package/dist/components/forms/fields/FormFieldRadio.d.ts +1 -1
- package/dist/components/forms/fields/FormFieldUrl.d.ts +4 -1
- package/dist/components/forms/validators/url.d.ts +6 -1
- package/dist/components/truncation/TruncatedText.d.ts +1 -1
- package/dist/components/truncation/TruncatedTextTooltip.d.ts +1 -1
- package/dist/index.js +1727 -1737
- package/dist/package/src/index.d.ts +1 -1
- package/dist/theme/foundations/borders.d.ts +1 -1
- package/dist/theme/foundations/durations.d.ts +1 -1
- package/dist/theme/foundations/shadows.d.ts +1 -1
- package/dist/theme/foundations/typography.d.ts +1 -1
- package/dist/theme/recipes/index.d.ts +4 -1
- package/dist/theme/recipes/table.recipe.d.ts +4 -1
- package/package.json +3 -3
|
@@ -62,7 +62,7 @@ export * as file from '../../utils/file';
|
|
|
62
62
|
export * from '../../utils/url';
|
|
63
63
|
export * from '../../utils/isBrowser';
|
|
64
64
|
export { useClipboard } from '../../hooks/useClipboard';
|
|
65
|
-
export
|
|
65
|
+
export * from '../../hooks/useDisclosure';
|
|
66
66
|
export { useUpdateEffect } from '../../hooks/useUpdateEffect';
|
|
67
67
|
export { useFirstMountState } from '../../hooks/useFirstMountState';
|
|
68
68
|
export { useIsSticky } from '../../hooks/useIsSticky';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ThemingConfig } from '@chakra-ui/react';
|
|
2
|
-
import { ExcludeUndefined } from '../../../
|
|
2
|
+
import { ExcludeUndefined } from '../../../shared/types/utils';
|
|
3
3
|
declare const durations: ExcludeUndefined<ThemingConfig['tokens']>['durations'];
|
|
4
4
|
export default durations;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ThemingConfig } from '@chakra-ui/react';
|
|
2
|
-
import { ExcludeUndefined } from '../../../
|
|
2
|
+
import { ExcludeUndefined } from '../../../shared/types/utils';
|
|
3
3
|
declare const shadows: ExcludeUndefined<ThemingConfig['tokens']>['shadows'];
|
|
4
4
|
export default shadows;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ThemingConfig } from '@chakra-ui/react';
|
|
2
|
-
import { ExcludeUndefined } from '../../../
|
|
2
|
+
import { ExcludeUndefined } from '../../../shared/types/utils';
|
|
3
3
|
export declare const BODY_TYPEFACE: string;
|
|
4
4
|
export declare const HEADING_TYPEFACE: string;
|
|
5
5
|
export declare const fonts: ExcludeUndefined<ThemingConfig['tokens']>['fonts'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockscout/ui-toolkit",
|
|
3
|
-
"version": "2.8.1-alpha.
|
|
3
|
+
"version": "2.8.1-alpha.2",
|
|
4
4
|
"description": "A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "https://github.com/blockscout/frontend.git",
|
|
14
|
-
"directory": "toolkit/package"
|
|
14
|
+
"directory": "src/src/toolkit/package"
|
|
15
15
|
},
|
|
16
|
-
"homepage": "https://github.com/blockscout/frontend/tree/main/toolkit/package",
|
|
16
|
+
"homepage": "https://github.com/blockscout/frontend/tree/main/src/toolkit/package",
|
|
17
17
|
"bugs": {
|
|
18
18
|
"url": "https://github.com/blockscout/frontend/issues"
|
|
19
19
|
},
|