@hiver/connector-admin 1.5.5 → 1.5.6-preview-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/app/connectors/pages/api-view/index.d.ts.map +1 -1
- package/features/connector-preview/components/connector-preview/index.d.ts +14 -0
- package/features/connector-preview/components/connector-preview/index.d.ts.map +1 -0
- package/features/connector-preview/components/connector-preview/styles.d.ts +5 -0
- package/features/connector-preview/components/connector-preview/styles.d.ts.map +1 -0
- package/features/connector-preview/components/footer/index.d.ts +7 -0
- package/features/connector-preview/components/footer/index.d.ts.map +1 -0
- package/features/connector-preview/components/footer/styles.d.ts +6 -0
- package/features/connector-preview/components/footer/styles.d.ts.map +1 -0
- package/features/connector-preview/components/image-preview-list/index.d.ts +6 -0
- package/features/connector-preview/components/image-preview-list/index.d.ts.map +1 -0
- package/features/connector-preview/components/image-preview-list/styles.d.ts +5 -0
- package/features/connector-preview/components/image-preview-list/styles.d.ts.map +1 -0
- package/features/connector-preview/constants/index.d.ts +4 -0
- package/features/connector-preview/constants/index.d.ts.map +1 -0
- package/features/connector-preview/utils/index.d.ts +2 -0
- package/features/connector-preview/utils/index.d.ts.map +1 -0
- package/index.es.js +23243 -18602
- package/index.umd.js +394 -305
- package/package.json +2 -1
- package/testing/mocks/handlers/connector-template.d.ts.map +1 -1
- package/types/connector.d.ts +5 -0
- package/types/connector.d.ts.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/app/connectors/pages/api-view/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/app/connectors/pages/api-view/index.tsx"],"names":[],"mappings":"AAwBA,eAAO,MAAM,eAAe,+CAmE3B,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { CarouselData } from '../../../../types/connector';
|
|
2
|
+
export interface RenderModalProps {
|
|
3
|
+
showModal: boolean;
|
|
4
|
+
setShowModal: (value: boolean) => void;
|
|
5
|
+
}
|
|
6
|
+
export interface ConnectorPreviewProps {
|
|
7
|
+
connectorName: string;
|
|
8
|
+
carouselImages: CarouselData[];
|
|
9
|
+
templateDescription?: string;
|
|
10
|
+
isEdit: boolean;
|
|
11
|
+
renderModal: (props: RenderModalProps) => void;
|
|
12
|
+
}
|
|
13
|
+
export declare const ConnectorPreview: ({ connectorName, carouselImages, templateDescription, isEdit, renderModal }: ConnectorPreviewProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-preview/components/connector-preview/index.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,MAAM,WAAW,gBAAgB;IAC/B,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CACxC;AAED,MAAM,WAAW,qBAAqB;IACpC,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,YAAY,EAAE,CAAC;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,MAAM,EAAE,OAAO,CAAC;IAChB,WAAW,EAAE,CAAC,KAAK,EAAE,gBAAgB,KAAK,IAAI,CAAC;CAChD;AAED,eAAO,MAAM,gBAAgB,gFAM1B,qBAAqB,4CAWvB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-preview/components/connector-preview/styles.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAEpD,eAAO,MAAM,aAAa,EAAE,eAAe,CAAC,QAAQ,CAEnD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,QAAQ,CAGjD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-preview/components/footer/index.tsx"],"names":[],"mappings":"AAMA,UAAU,WAAW;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,IAAI,CAAC;CAC5B;AAED,eAAO,MAAM,MAAM,sCAAuC,WAAW,4CAQpE,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { StyledComponent } from '@emotion/styled';
|
|
2
|
+
import { StackProps, ButtonProps, IconOwnProps } from '@hiver/hiver-ui-kit';
|
|
3
|
+
export declare const FooterStyles: StyledComponent<StackProps>;
|
|
4
|
+
export declare const RequestButton: StyledComponent<ButtonProps>;
|
|
5
|
+
export declare const InfoIcon: StyledComponent<IconOwnProps>;
|
|
6
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-preview/components/footer/styles.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEjF,eAAO,MAAM,YAAY,EAAE,eAAe,CAAC,UAAU,CAQpD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,eAAe,CAAC,WAAW,CAiBtD,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,eAAe,CAAC,YAAY,CAKlD,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ImageData } from 'react-images-viewer';
|
|
2
|
+
export interface ImagePreviewListProps {
|
|
3
|
+
previewList: ImageData[];
|
|
4
|
+
}
|
|
5
|
+
export declare const ImagePreviewList: ({ previewList }: ImagePreviewListProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-preview/components/image-preview-list/index.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAErD,MAAM,WAAW,qBAAqB;IACpC,WAAW,EAAE,SAAS,EAAE,CAAC;CAC1B;AAED,eAAO,MAAM,gBAAgB,oBAAqB,qBAAqB,4CA+BtE,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { StyledComponent } from '@emotion/styled';
|
|
2
|
+
import { BoxProps, StackProps } from '@hiver/hiver-ui-kit';
|
|
3
|
+
export declare const PreviewListStyles: StyledComponent<StackProps>;
|
|
4
|
+
export declare const ImageBoxStyles: StyledComponent<BoxProps>;
|
|
5
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-preview/components/image-preview-list/styles.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEhE,eAAO,MAAM,iBAAiB,EAAE,eAAe,CAAC,UAAU,CAQzD,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,QAAQ,CAiBpD,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const REQUEST_BUTTON_TEXT = "Request capability";
|
|
2
|
+
export declare const CONNECTOR_NAME_KEY = "connectorName";
|
|
3
|
+
export declare const FOOTER_TEXT = "Need additional {{connectorName}} capabilities? Let us know what you would like to integrate";
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-preview/constants/index.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,uBAAuB,CAAC;AACxD,eAAO,MAAM,kBAAkB,kBAAkB,CAAC;AAClD,eAAO,MAAM,WAAW,iGAAyG,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-preview/utils/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,aAAa,kBAAmB,MAAM,WAAoE,CAAC"}
|