@avalabs/k2-alpine 1.251.2 → 1.266.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/ContentfulJsonRender/ContentfulJsonRender.d.ts +6 -1
- package/dist/components/CountryFlag/CountryFlag.d.ts +7 -0
- package/dist/components/Icons/ArrowBack.d.ts +2 -0
- package/dist/components/Icons/Schedule.d.ts +2 -0
- package/dist/components/Icons/SwapVertical.d.ts +2 -0
- package/dist/components/Icons/index.d.ts +9 -0
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5009 -4015
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,5 +3,10 @@ import { Document } from '@contentful/rich-text-types';
|
|
|
3
3
|
export declare const ComponentOverrides: Options;
|
|
4
4
|
export type ContentfulJsonRendererProps = {
|
|
5
5
|
json: Document;
|
|
6
|
+
/**
|
|
7
|
+
* Optional Contentful Rich Text `links` object (GraphQL) used to resolve
|
|
8
|
+
* embedded assets/entries by `sys.id`.
|
|
9
|
+
*/
|
|
10
|
+
links?: unknown;
|
|
6
11
|
};
|
|
7
|
-
export declare function ContentfulJsonRenderer({ json }: ContentfulJsonRendererProps): import('react').ReactNode;
|
|
12
|
+
export declare function ContentfulJsonRenderer({ json, links }: ContentfulJsonRendererProps): import('react').ReactNode;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SxProps, Theme } from '@mui/material';
|
|
2
|
+
export type CountryFlagProps = {
|
|
3
|
+
countryCode: string;
|
|
4
|
+
size?: number;
|
|
5
|
+
sx?: SxProps<Theme>;
|
|
6
|
+
};
|
|
7
|
+
export declare function CountryFlag({ countryCode, size, sx }: CountryFlagProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -43,6 +43,9 @@ export declare const SettingsIcon: import('react').ComponentType<IconBaseProps &
|
|
|
43
43
|
export declare const LogoutIcon: import('react').ComponentType<IconBaseProps & {
|
|
44
44
|
sx?: SxProps;
|
|
45
45
|
} & import('../..').WithSxProps>;
|
|
46
|
+
export declare const ArrowBackIcon: import('react').ComponentType<IconBaseProps & {
|
|
47
|
+
sx?: SxProps;
|
|
48
|
+
} & import('../..').WithSxProps>;
|
|
46
49
|
export declare const ArrowUpIcon: import('react').ComponentType<IconBaseProps & {
|
|
47
50
|
sx?: SxProps;
|
|
48
51
|
} & import('../..').WithSxProps>;
|
|
@@ -115,6 +118,9 @@ export declare const StakeIcon: import('react').ComponentType<IconBaseProps & {
|
|
|
115
118
|
export declare const SwapIcon: import('react').ComponentType<IconBaseProps & {
|
|
116
119
|
sx?: SxProps;
|
|
117
120
|
} & import('../..').WithSxProps>;
|
|
121
|
+
export declare const SwapVerticalIcon: import('react').ComponentType<IconBaseProps & {
|
|
122
|
+
sx?: SxProps;
|
|
123
|
+
} & import('../..').WithSxProps>;
|
|
118
124
|
export declare const SellIcon: import('react').ComponentType<IconBaseProps & {
|
|
119
125
|
sx?: SxProps;
|
|
120
126
|
} & import('../..').WithSxProps>;
|
|
@@ -346,6 +352,9 @@ export declare const StackedLineChartIcon: import('react').ComponentType<IconBas
|
|
|
346
352
|
export declare const UploadIcon: import('react').ComponentType<IconBaseProps & {
|
|
347
353
|
sx?: SxProps;
|
|
348
354
|
} & import('../..').WithSxProps>;
|
|
355
|
+
export declare const ScheduleIcon: import('react').ComponentType<IconBaseProps & {
|
|
356
|
+
sx?: SxProps;
|
|
357
|
+
} & import('../..').WithSxProps>;
|
|
349
358
|
/**
|
|
350
359
|
* Form Icons
|
|
351
360
|
*/
|