@hiver/connector-agent 1.2.1 → 1.2.2-beta.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/constants/global-constants.d.ts +3 -0
- package/constants/global-constants.d.ts.map +1 -1
- package/features/connector-cards/components/card-list/Card.d.ts.map +1 -1
- package/features/connector-cards/components/card-list/CardContent.d.ts +3 -2
- package/features/connector-cards/components/card-list/CardContent.d.ts.map +1 -1
- package/features/connector-cards/components/card-list/index.d.ts.map +1 -1
- package/features/connector-cards/components/card-list/list-item-modal.d.ts +8 -0
- package/features/connector-cards/components/card-list/list-item-modal.d.ts.map +1 -0
- package/features/connector-cards/components/card-list/style.d.ts +12 -2
- package/features/connector-cards/components/card-list/style.d.ts.map +1 -1
- package/features/connector-cards/constants/card-content.d.ts +3 -0
- package/features/connector-cards/constants/card-content.d.ts.map +1 -0
- package/index.es.js +8106 -7327
- package/index.umd.js +173 -161
- package/package.json +1 -1
- package/types/cards.d.ts +1 -0
- package/types/cards.d.ts.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"global-constants.d.ts","sourceRoot":"","sources":["../../src/constants/global-constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,MAAM,WAAW,YAAY;IAC3B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,KAAK,IAAI,CAAC;CACnE"}
|
|
1
|
+
{"version":3,"file":"global-constants.d.ts","sourceRoot":"","sources":["../../src/constants/global-constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,MAAM,WAAW,YAAY;IAC3B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,KAAK,IAAI,CAAC;CACnE;AAED,eAAO,MAAM,iBAAiB;;CAE7B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/Card.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAerD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAQxC,UAAU,MAAM;IACd,IAAI,EAAE,KAAK,CAAC;IACZ,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,gBAAgB,EAAE;QAChB,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAC;KAC9B,GAAG,IAAI,CAAC;IACT,KAAK,EAAE,MAAM,CAAC;IACd,0BAA0B,EAAE;QAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;KAC1B,GAAG,IAAI,CAAC;CACV;AAED,eAAO,MAAM,IAAI,UAAW,MAAM,
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/Card.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAerD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAQxC,UAAU,MAAM;IACd,IAAI,EAAE,KAAK,CAAC;IACZ,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,gBAAgB,EAAE;QAChB,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAC;KAC9B,GAAG,IAAI,CAAC;IACT,KAAK,EAAE,MAAM,CAAC;IACd,0BAA0B,EAAE;QAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;KAC1B,GAAG,IAAI,CAAC;CACV;AAED,eAAO,MAAM,IAAI,UAAW,MAAM,4CA6FjC,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { ISpecificCard } from '../../../../types/cards';
|
|
2
2
|
import { ApiStatus } from '../../../../types/api';
|
|
3
|
-
interface
|
|
3
|
+
interface IProps {
|
|
4
4
|
id: string;
|
|
5
|
+
cardTitle: string;
|
|
5
6
|
specificCardData: {
|
|
6
7
|
[key: string]: ISpecificCard;
|
|
7
8
|
} | null;
|
|
@@ -10,6 +11,6 @@ interface Iprops {
|
|
|
10
11
|
} | null;
|
|
11
12
|
isOpen: boolean;
|
|
12
13
|
}
|
|
13
|
-
export declare const CardContent: (props:
|
|
14
|
+
export declare const CardContent: (props: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
15
|
export {};
|
|
15
16
|
//# sourceMappingURL=CardContent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CardContent.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/CardContent.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"CardContent.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/CardContent.tsx"],"names":[],"mappings":"AAYA,OAAO,EAA6B,aAAa,EAAE,MAAM,eAAe,CAAC;AACzE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAUxC,UAAU,MAAM;IACd,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE;QAChB,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAC;KAC9B,GAAG,IAAI,CAAC;IACT,0BAA0B,EAAE;QAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;KAC1B,GAAG,IAAI,CAAC;IACT,MAAM,EAAE,OAAO,CAAC;CACjB;AAID,eAAO,MAAM,WAAW,UAAW,MAAM,4CAgJxC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAyB,MAAM,OAAO,CAAC;AAyBlD,UAAU,SAAS;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAyB,MAAM,OAAO,CAAC;AAyBlD,UAAU,SAAS;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,SAAS,CAmDlC,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IListItemArr } from '../../../../types/cards';
|
|
2
|
+
interface IProps {
|
|
3
|
+
data: IListItemArr[][];
|
|
4
|
+
title: string;
|
|
5
|
+
}
|
|
6
|
+
export declare const ListItemModal: ({ data, title }: IProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=list-item-modal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-item-modal.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/list-item-modal.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAG7C,UAAU,MAAM;IACd,IAAI,EAAE,YAAY,EAAE,EAAE,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACf;AAUD,eAAO,MAAM,aAAa,oBAAqB,MAAM,4CAgFpD,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BoxProps, GridProps, IconButtonProps, SkeletonProps, StackProps, SvgIconProps, TypographyProps } from '@hiver/hiver-ui-kit';
|
|
1
|
+
import { BoxProps, GridProps, IconButtonProps, SkeletonProps, StackProps, SvgIconProps, TableCellProps, TableContainerProps, TableHeadProps, TypographyProps } from '@hiver/hiver-ui-kit';
|
|
2
2
|
import { StyledComponent } from '@emotion/styled';
|
|
3
3
|
export declare const ConnectorsIcon: StyledComponent<SvgIconProps>;
|
|
4
4
|
export declare const ConnectorsTitle: StyledComponent<TypographyProps>;
|
|
@@ -7,7 +7,9 @@ export declare const CardWrapper: StyledComponent<BoxProps>;
|
|
|
7
7
|
export declare const CardHeading: StyledComponent<StackProps>;
|
|
8
8
|
export declare const FlexBox: StyledComponent<StackProps>;
|
|
9
9
|
export declare const HeadingText: StyledComponent<TypographyProps>;
|
|
10
|
-
export declare const CardContentWrapper: StyledComponent<BoxProps
|
|
10
|
+
export declare const CardContentWrapper: StyledComponent<BoxProps & {
|
|
11
|
+
height?: number;
|
|
12
|
+
}>;
|
|
11
13
|
export declare const LabelText: StyledComponent<TypographyProps>;
|
|
12
14
|
export declare const TryAgaintext: StyledComponent<TypographyProps>;
|
|
13
15
|
export declare const ValueText: StyledComponent<TypographyProps>;
|
|
@@ -16,4 +18,12 @@ export declare const CustomSkeleton: StyledComponent<SkeletonProps & {
|
|
|
16
18
|
margin?: string;
|
|
17
19
|
}>;
|
|
18
20
|
export declare const IconWrapper: StyledComponent<IconButtonProps>;
|
|
21
|
+
export declare const ModalTableContainer: StyledComponent<TableContainerProps>;
|
|
22
|
+
export declare const ModalHeader: StyledComponent<TableHeadProps>;
|
|
23
|
+
export declare const TableHeaderRowCell: StyledComponent<TableCellProps>;
|
|
24
|
+
export declare const TableBodyRowCell: StyledComponent<TableCellProps>;
|
|
25
|
+
export declare const RotatingChevron: StyledComponent<React.ImgHTMLAttributes<HTMLImageElement> & {
|
|
26
|
+
transformAngle?: number;
|
|
27
|
+
}>;
|
|
28
|
+
export declare const ShowExpandMore: StyledComponent<TypographyProps>;
|
|
19
29
|
//# sourceMappingURL=style.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/style.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/style.ts"],"names":[],"mappings":"AAcA,OAAO,KAAK,EACV,QAAQ,EACR,SAAS,EACT,eAAe,EACf,aAAa,EACb,UAAU,EACV,YAAY,EACZ,cAAc,EACd,mBAAmB,EACnB,cAAc,EACd,eAAe,EAChB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,YAAY,CAIxD,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,eAAe,CAAC,eAAe,CAO5D,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,eAAe,CAAC,SAAS,CAUxD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,QAAQ,CAKjD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,UAAU,CAYnD,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,eAAe,CAAC,UAAU,CAG/C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,eAAe,CAMxD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,eAAe,CAAC,QAAQ,GAAG;IAAE,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,CAW9E,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAGtD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,eAAe,CAAC,eAAe,CAGzD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAEtD,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,eAAe,CAAC,QAAQ,CAuC3C,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,aAAa,GAAG;IAAE,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,CAG/E,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,eAAe,CAyBxD,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,eAAe,CAAC,mBAAmB,CAGpE,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,cAAc,CAKvD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,eAAe,CAAC,cAAc,CAQ9D,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,eAAe,CAAC,cAAc,CAQ5D,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,eAAe,CAAC,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,GAAG;IAAE,cAAc,CAAC,EAAE,MAAM,CAAA;CAAE,CAIlH,CAAC;AAEJ,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,eAAe,CAQ3D,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card-content.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/constants/card-content.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,cAAc,CAAC;AACrC,eAAO,MAAM,SAAS,cAAc,CAAC"}
|