@avalabs/k2-alpine 1.255.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/Schedule.d.ts +2 -0
- package/dist/components/Icons/index.d.ts +3 -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 +5027 -4078
- 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;
|
|
@@ -352,6 +352,9 @@ export declare const StackedLineChartIcon: import('react').ComponentType<IconBas
|
|
|
352
352
|
export declare const UploadIcon: import('react').ComponentType<IconBaseProps & {
|
|
353
353
|
sx?: SxProps;
|
|
354
354
|
} & import('../..').WithSxProps>;
|
|
355
|
+
export declare const ScheduleIcon: import('react').ComponentType<IconBaseProps & {
|
|
356
|
+
sx?: SxProps;
|
|
357
|
+
} & import('../..').WithSxProps>;
|
|
355
358
|
/**
|
|
356
359
|
* Form Icons
|
|
357
360
|
*/
|