@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.
@@ -25,3 +25,6 @@ export interface TableHeaderProps extends ChakraTable.HeaderProps {
25
25
  top?: number;
26
26
  }
27
27
  export declare const TableHeaderSticky: (props: TableHeaderProps) => React.JSX.Element;
28
+ export declare const TableContainerScrollable: ({ children, }: {
29
+ children: React.ReactNode;
30
+ }) => React.JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { FieldValues } from 'react-hook-form';
3
3
  import { FormFieldPropsBase } from './types';
4
- import { PartialBy } from '../../../../client/shared/types/utils';
4
+ import { PartialBy } from '../../../../shared/types/utils';
5
5
  declare const FormFieldAddressContent: <FormFields extends FieldValues>(props: PartialBy<FormFieldPropsBase<FormFields>, "placeholder">) => React.JSX.Element;
6
6
  export declare const FormFieldAddress: typeof FormFieldAddressContent;
7
7
  export {};
@@ -1,7 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { FieldValues } from 'react-hook-form';
3
3
  import { FormFieldPropsBase } from './types';
4
- import { PartialBy } from '../../../../client/shared/types/utils';
4
+ import { PartialBy } from '../../../../shared/types/utils';
5
5
  declare const FormFieldEmailContent: <FormFields extends FieldValues>(props: PartialBy<FormFieldPropsBase<FormFields>, "placeholder">) => React.JSX.Element;
6
6
  export declare const FormFieldEmail: typeof FormFieldEmailContent;
7
7
  export {};
@@ -1,7 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { FieldValues, Path } from 'react-hook-form';
3
3
  import { FormFieldPropsBase } from './types';
4
- import { ExcludeUndefined } from '../../../../client/shared/types/utils';
4
+ import { ExcludeUndefined } from '../../../../shared/types/utils';
5
5
  import { RadioGroupProps, RadioProps } from '../../../chakra/radio';
6
6
  export interface FormFieldRadioProps<FormFields extends FieldValues, Name extends Path<FormFields>> extends Pick<FormFieldPropsBase<FormFields>, 'rules' | 'controllerProps'>, RadioGroupProps {
7
7
  name: Name;
@@ -1,6 +1,8 @@
1
1
  import { default as React } from 'react';
2
2
  import { FieldValues } from 'react-hook-form';
3
3
  import { FormFieldPropsBase } from './types';
4
- declare const FormFieldUrlContent: <FormFields extends FieldValues>(props: FormFieldPropsBase<FormFields>) => React.JSX.Element;
4
+ declare const FormFieldUrlContent: <FormFields extends FieldValues>(props: FormFieldPropsBase<FormFields> & {
5
+ loose?: boolean;
6
+ }) => React.JSX.Element;
5
7
  export declare const FormFieldUrl: typeof FormFieldUrlContent;
6
8
  export {};
@@ -1,3 +1,3 @@
1
- export declare function urlValidator(value: string | undefined): true | "Incorrect URL";
1
+ export declare function urlValidator(loose?: boolean): (value: string | undefined) => true | "Incorrect URL";
2
2
  export declare const DOMAIN_REGEXP: RegExp;
3
3
  export declare function domainValidator(value: string | undefined): true | "Incorrect domain";
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { ExcludeUndefined } from '../../../client/shared/types/utils';
2
+ import { ExcludeUndefined } from '../../../shared/types/utils';
3
3
  import { SkeletonTextProps } from '../../chakra/skeleton';
4
4
  import { TooltipProps } from '../../chakra/tooltip';
5
5
  export interface TruncatedTextProps extends Omit<SkeletonTextProps, 'loading'> {
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { ExcludeUndefined } from '../../../client/shared/types/utils';
2
+ import { ExcludeUndefined } from '../../../shared/types/utils';
3
3
  import { TooltipProps } from '../../chakra/tooltip';
4
4
  export interface TruncatedTextTooltipProps {
5
5
  children: React.ReactNode;