@blockscout/ui-toolkit 2.8.0 → 2.8.1-alpha.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/dist/components/buttons/ArrayButton.d.ts +8 -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/truncation/TruncatedText.d.ts +1 -1
- package/dist/components/truncation/TruncatedTextTooltip.d.ts +1 -1
- package/dist/index.js +2258 -2254
- 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 +1 -1
- package/dist/theme/recipes/select.recipe.d.ts +1 -1
- package/dist/utils/url.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ThemingConfig } from '@chakra-ui/react';
|
|
2
|
-
import { ExcludeUndefined } from '../../../types/utils';
|
|
2
|
+
import { ExcludeUndefined } from '../../../client/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 '../../../types/utils';
|
|
2
|
+
import { ExcludeUndefined } from '../../../client/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 '../../../types/utils';
|
|
2
|
+
import { ExcludeUndefined } from '../../../client/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'];
|
|
@@ -1786,7 +1786,7 @@ export declare const slotRecipes: {
|
|
|
1786
1786
|
};
|
|
1787
1787
|
};
|
|
1788
1788
|
}>;
|
|
1789
|
-
select: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "label" | "root" | "item" | "indicator" | "
|
|
1789
|
+
select: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "label" | "root" | "item" | "indicator" | "control" | "positioner" | "trigger" | "valueText" | "itemText" | "itemGroupLabel" | "indicatorGroup" | "itemGroup", {
|
|
1790
1790
|
variant: {
|
|
1791
1791
|
outline: {
|
|
1792
1792
|
trigger: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const recipe: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "label" | "root" | "item" | "indicator" | "
|
|
1
|
+
export declare const recipe: import('@chakra-ui/react').SlotRecipeDefinition<"content" | "label" | "root" | "item" | "indicator" | "control" | "positioner" | "trigger" | "valueText" | "itemText" | "itemGroupLabel" | "indicatorGroup" | "itemGroup", {
|
|
2
2
|
variant: {
|
|
3
3
|
outline: {
|
|
4
4
|
trigger: {
|
package/dist/utils/url.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const stripTrailingSlash: (str: string) => string;
|
|
2
2
|
export declare const stripLeadingSlash: (str: string) => string;
|
|
3
|
+
export declare const addLeadingSlash: (str: string) => string;
|
|
3
4
|
export declare function makePrettyLink(url: string | undefined): {
|
|
4
5
|
href: string;
|
|
5
6
|
domain: string;
|
package/package.json
CHANGED