@blockscout/ui-toolkit 2.3.4 → 2.4.0-alpha
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/collapsible.d.ts +1 -1
- package/dist/components/forms/validators/address.d.ts +0 -1
- package/dist/components/loaders/ContentLoader.d.ts +7 -0
- package/dist/index.js +3164 -3035
- package/dist/package/src/index.d.ts +1 -0
- package/dist/theme/foundations/colors.d.ts +3 -0
- package/dist/theme/recipes/alert.recipe.d.ts +15 -0
- package/dist/theme/recipes/drawer.recipe.d.ts +15 -0
- package/dist/theme/recipes/index.d.ts +37 -0
- package/dist/theme/recipes/input.recipe.d.ts +3 -0
- package/dist/theme/recipes/link.recipe.d.ts +1 -0
- package/dist/theme/recipes/pin-input.recipe.d.ts +3 -0
- package/dist/utils/regexp.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { FlexProps } from '@chakra-ui/react';
|
|
2
2
|
import { default as React } from 'react';
|
|
3
3
|
import { LinkProps } from './link';
|
|
4
|
-
interface CollapsibleDetailsProps extends LinkProps {
|
|
4
|
+
export interface CollapsibleDetailsProps extends LinkProps {
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
id?: string;
|
|
7
7
|
isExpanded?: boolean;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BoxProps } from '@chakra-ui/react';
|
|
2
|
+
import { default as React } from 'react';
|
|
3
|
+
interface Props extends BoxProps {
|
|
4
|
+
text?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare const ContentLoader: React.MemoExoticComponent<({ text, ...props }: Props) => React.JSX.Element>;
|
|
7
|
+
export {};
|