@blockscout/ui-toolkit 2.8.1-alpha.0 → 2.8.1-alpha.1

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.
@@ -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 { useDisclosure } from '../../hooks/useDisclosure';
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,3 +1,3 @@
1
1
  import { ThemingConfig } from '@chakra-ui/react';
2
- import { ExcludeUndefined } from '../../../client/shared/types/utils';
2
+ import { ExcludeUndefined } from '../../../shared/types/utils';
3
3
  export declare const radii: ExcludeUndefined<ThemingConfig['tokens']>['radii'];
@@ -1,4 +1,4 @@
1
1
  import { ThemingConfig } from '@chakra-ui/react';
2
- import { ExcludeUndefined } from '../../../client/shared/types/utils';
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 '../../../client/shared/types/utils';
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 '../../../client/shared/types/utils';
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'];
@@ -2083,7 +2083,10 @@ export declare const slotRecipes: {
2083
2083
  };
2084
2084
  cell: {
2085
2085
  px: "6px";
2086
- py: number;
2086
+ py: {
2087
+ base: number;
2088
+ lg: number;
2089
+ };
2087
2090
  _first: {
2088
2091
  pl: number;
2089
2092
  };
@@ -37,7 +37,10 @@ export declare const recipe: import('@chakra-ui/react').SlotRecipeDefinition<"bo
37
37
  };
38
38
  cell: {
39
39
  px: "6px";
40
- py: number;
40
+ py: {
41
+ base: number;
42
+ lg: number;
43
+ };
41
44
  _first: {
42
45
  pl: number;
43
46
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/ui-toolkit",
3
- "version": "2.8.1-alpha.0",
3
+ "version": "2.8.1-alpha.1",
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
  },