@hubspot/ui-extensions 0.11.0 → 0.11.2
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/__synced__/experimental/types.synced.d.ts +3 -4
- package/dist/__synced__/remoteComponents.synced.d.ts +168 -355
- package/dist/__synced__/remoteComponents.synced.js +186 -83
- package/dist/__synced__/types/components/button.synced.d.ts +6 -0
- package/dist/__synced__/types/components/index.synced.d.ts +38 -38
- package/dist/__synced__/types/index.synced.d.ts +7 -7
- package/dist/__synced__/types/index.synced.js +1 -9
- package/dist/__synced__/types/shared.synced.d.ts +2 -3
- package/dist/__synced__/utils/remote-component-registry.synced.d.ts +80 -0
- package/dist/__synced__/utils/remote-component-registry.synced.js +64 -0
- package/dist/__tests__/crm/hooks/useAssociations.spec.js +33 -29
- package/dist/__tests__/crm/hooks/useCrmProperties.spec.js +19 -18
- package/dist/__tests__/crm/utils/fetchAssociations.spec.js +8 -7
- package/dist/__tests__/crm/utils/fetchCrmProperties.spec.js +34 -33
- package/dist/crm/index.d.ts +1 -1
- package/dist/crm/index.js +1 -1
- package/dist/experimental/index.d.ts +1 -1
- package/dist/experimental/index.js +1 -1
- package/dist/experimental/testing/__tests__/debug.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/debug.spec.js +43 -0
- package/dist/experimental/testing/__tests__/find.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/find.spec.js +33 -0
- package/dist/experimental/testing/__tests__/findAll.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/findAll.spec.js +12 -0
- package/dist/experimental/testing/__tests__/findAllChildren.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/findAllChildren.spec.js +48 -0
- package/dist/experimental/testing/__tests__/findChild.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/findChild.spec.js +29 -0
- package/dist/experimental/testing/__tests__/fragments.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/fragments.spec.js +59 -0
- package/dist/experimental/testing/__tests__/invalid-components.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/invalid-components.spec.js +88 -0
- package/dist/experimental/testing/__tests__/isMatch.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/isMatch.spec.js +60 -0
- package/dist/experimental/testing/__tests__/maybeFind.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/maybeFind.spec.js +58 -0
- package/dist/experimental/testing/__tests__/maybeFindChild.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/maybeFindChild.spec.js +65 -0
- package/dist/experimental/testing/__tests__/trigger.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/trigger.spec.js +40 -0
- package/dist/experimental/testing/__tests__/type-utils.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/type-utils.spec.js +163 -0
- package/dist/experimental/testing/__tests__/waitFor.spec.d.ts +1 -0
- package/dist/experimental/testing/__tests__/waitFor.spec.js +55 -0
- package/dist/experimental/testing/index.d.ts +3 -0
- package/dist/experimental/testing/index.js +3 -0
- package/dist/experimental/testing/internal/constants.d.ts +2 -0
- package/dist/experimental/testing/internal/constants.js +1 -0
- package/dist/experimental/testing/internal/convert.d.ts +10 -0
- package/dist/experimental/testing/internal/convert.js +131 -0
- package/dist/experimental/testing/internal/debug.d.ts +8 -0
- package/dist/experimental/testing/internal/debug.js +19 -0
- package/dist/experimental/testing/internal/document.d.ts +14 -0
- package/dist/experimental/testing/internal/document.js +37 -0
- package/dist/experimental/testing/internal/element.d.ts +11 -0
- package/dist/experimental/testing/internal/element.js +67 -0
- package/dist/experimental/testing/internal/errors.d.ts +56 -0
- package/dist/experimental/testing/internal/errors.js +70 -0
- package/dist/experimental/testing/internal/fragment.d.ts +8 -0
- package/dist/experimental/testing/internal/fragment.js +44 -0
- package/dist/experimental/testing/internal/match.d.ts +19 -0
- package/dist/experimental/testing/internal/match.js +42 -0
- package/dist/experimental/testing/internal/print.d.ts +6 -0
- package/dist/experimental/testing/internal/print.js +114 -0
- package/dist/experimental/testing/internal/query.d.ts +57 -0
- package/dist/experimental/testing/internal/query.js +213 -0
- package/dist/experimental/testing/internal/root.d.ts +8 -0
- package/dist/experimental/testing/internal/root.js +44 -0
- package/dist/experimental/testing/internal/text.d.ts +9 -0
- package/dist/experimental/testing/internal/text.js +16 -0
- package/dist/experimental/testing/internal/utils/promise-utils.d.ts +14 -0
- package/dist/experimental/testing/internal/utils/promise-utils.js +14 -0
- package/dist/experimental/testing/render.d.ts +9 -0
- package/dist/experimental/testing/render.js +155 -0
- package/dist/experimental/testing/types.d.ts +2 -1
- package/dist/hubspot.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/pages/home/index.d.ts +1 -1
- package/dist/pages/home/index.js +1 -1
- package/package.json +19 -16
- package/dist/__synced__/appHomeRemoteComponents.synced.d.ts +0 -28
- package/dist/__synced__/appHomeRemoteComponents.synced.js +0 -21
- package/dist/__synced__/crmRemoteComponents.synced.d.ts +0 -66
- package/dist/__synced__/crmRemoteComponents.synced.js +0 -15
- package/dist/__synced__/experimentalRemoteComponents.synced.d.ts +0 -94
- package/dist/__synced__/experimentalRemoteComponents.synced.js +0 -56
- package/dist/coreComponents.d.ts +0 -848
- package/dist/coreComponents.js +0 -582
- package/dist/experimental/types.d.ts +0 -240
- package/dist/experimental/types.js +0 -5
- package/dist/types.d.ts +0 -3214
- package/dist/types.js +0 -244
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
// Do not manually update this file, changes will be autogenerated by our scripts based on: ui-extensions-remote-renderer/static/js/appHomeRemoteComponents.ts
|
|
2
|
-
import { createRemoteReactComponent } from '@remote-ui/react';
|
|
3
|
-
/**
|
|
4
|
-
* The `HeaderActions` component renders a container for action buttons in the app home header. It accepts `PrimaryHeaderActionButton` and `SecondaryHeaderActionButton` as children.
|
|
5
|
-
*
|
|
6
|
-
*/
|
|
7
|
-
export const HeaderActions = createRemoteReactComponent('HeaderActions');
|
|
8
|
-
/**
|
|
9
|
-
* The `PrimaryHeaderActionButton` component renders a primary action button in the app home header. This button is styled as the main call-to-action and only one should be used per `HeaderActions` container.
|
|
10
|
-
*
|
|
11
|
-
*/
|
|
12
|
-
export const PrimaryHeaderActionButton = createRemoteReactComponent('PrimaryHeaderActionButton', {
|
|
13
|
-
fragmentProps: ['overlay'],
|
|
14
|
-
});
|
|
15
|
-
/**
|
|
16
|
-
* The `SecondaryHeaderActionButton` component renders a secondary action button in the app home header. Multiple secondary actions can be used and they will be grouped appropriately in the header.
|
|
17
|
-
*
|
|
18
|
-
*/
|
|
19
|
-
export const SecondaryHeaderActionButton = createRemoteReactComponent('SecondaryHeaderActionButton', {
|
|
20
|
-
fragmentProps: ['overlay'],
|
|
21
|
-
});
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import * as crmTypes from './types/crm.synced';
|
|
2
|
-
export declare const CrmPropertyList: "CrmPropertyList" & {
|
|
3
|
-
readonly type?: "CrmPropertyList" | undefined;
|
|
4
|
-
readonly props?: crmTypes.CrmPropertyListProps | undefined;
|
|
5
|
-
readonly children?: true | undefined;
|
|
6
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmPropertyList", crmTypes.CrmPropertyListProps, true>>;
|
|
7
|
-
export declare const CrmAssociationTable: "CrmAssociationTable" & {
|
|
8
|
-
readonly type?: "CrmAssociationTable" | undefined;
|
|
9
|
-
readonly props?: crmTypes.CrmAssociationTableProps | undefined;
|
|
10
|
-
readonly children?: true | undefined;
|
|
11
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmAssociationTable", crmTypes.CrmAssociationTableProps, true>>;
|
|
12
|
-
export declare const CrmDataHighlight: "CrmDataHighlight" & {
|
|
13
|
-
readonly type?: "CrmDataHighlight" | undefined;
|
|
14
|
-
readonly props?: crmTypes.CrmDataHighlightProps | undefined;
|
|
15
|
-
readonly children?: true | undefined;
|
|
16
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmDataHighlight", crmTypes.CrmDataHighlightProps, true>>;
|
|
17
|
-
export declare const CrmReport: "CrmReport" & {
|
|
18
|
-
readonly type?: "CrmReport" | undefined;
|
|
19
|
-
readonly props?: crmTypes.CrmReportProps | undefined;
|
|
20
|
-
readonly children?: true | undefined;
|
|
21
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmReport", crmTypes.CrmReportProps, true>>;
|
|
22
|
-
export declare const CrmAssociationPivot: "CrmAssociationPivot" & {
|
|
23
|
-
readonly type?: "CrmAssociationPivot" | undefined;
|
|
24
|
-
readonly props?: crmTypes.CrmAssociationPivotProps | undefined;
|
|
25
|
-
readonly children?: true | undefined;
|
|
26
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmAssociationPivot", crmTypes.CrmAssociationPivotProps, true>>;
|
|
27
|
-
export declare const CrmAssociationPropertyList: "CrmAssociationPropertyList" & {
|
|
28
|
-
readonly type?: "CrmAssociationPropertyList" | undefined;
|
|
29
|
-
readonly props?: crmTypes.CrmAssociationPropertyListProps | undefined;
|
|
30
|
-
readonly children?: true | undefined;
|
|
31
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmAssociationPropertyList", crmTypes.CrmAssociationPropertyListProps, true>>;
|
|
32
|
-
export declare const CrmAssociationStageTracker: "CrmAssociationStageTracker" & {
|
|
33
|
-
readonly type?: "CrmAssociationStageTracker" | undefined;
|
|
34
|
-
readonly props?: crmTypes.CrmAssociationStageTrackerProps | undefined;
|
|
35
|
-
readonly children?: true | undefined;
|
|
36
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmAssociationStageTracker", crmTypes.CrmAssociationStageTrackerProps, true>>;
|
|
37
|
-
export declare const CrmSimpleDeadline: "CrmSimpleDeadline" & {
|
|
38
|
-
readonly type?: "CrmSimpleDeadline" | undefined;
|
|
39
|
-
readonly props?: crmTypes.CrmSimpleDeadlineProps | undefined;
|
|
40
|
-
readonly children?: true | undefined;
|
|
41
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmSimpleDeadline", crmTypes.CrmSimpleDeadlineProps, true>>;
|
|
42
|
-
export declare const CrmStageTracker: "CrmStageTracker" & {
|
|
43
|
-
readonly type?: "CrmStageTracker" | undefined;
|
|
44
|
-
readonly props?: crmTypes.CrmStageTrackerProps | undefined;
|
|
45
|
-
readonly children?: true | undefined;
|
|
46
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmStageTracker", crmTypes.CrmStageTrackerProps, true>>;
|
|
47
|
-
export declare const CrmStatistics: "CrmStatistics" & {
|
|
48
|
-
readonly type?: "CrmStatistics" | undefined;
|
|
49
|
-
readonly props?: crmTypes.CrmStatisticsProps | undefined;
|
|
50
|
-
readonly children?: true | undefined;
|
|
51
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmStatistics", crmTypes.CrmStatisticsProps, true>>;
|
|
52
|
-
export declare const CrmActionButton: "CrmActionButton" & {
|
|
53
|
-
readonly type?: "CrmActionButton" | undefined;
|
|
54
|
-
readonly props?: crmTypes.CrmActionButtonProps | undefined;
|
|
55
|
-
readonly children?: true | undefined;
|
|
56
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmActionButton", crmTypes.CrmActionButtonProps, true>>;
|
|
57
|
-
export declare const CrmActionLink: "CrmActionLink" & {
|
|
58
|
-
readonly type?: "CrmActionLink" | undefined;
|
|
59
|
-
readonly props?: crmTypes.CrmActionLinkProps | undefined;
|
|
60
|
-
readonly children?: true | undefined;
|
|
61
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmActionLink", crmTypes.CrmActionLinkProps, true>>;
|
|
62
|
-
export declare const CrmCardActions: "CrmCardActions" & {
|
|
63
|
-
readonly type?: "CrmCardActions" | undefined;
|
|
64
|
-
readonly props?: crmTypes.CrmCardActionsProps | undefined;
|
|
65
|
-
readonly children?: true | undefined;
|
|
66
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"CrmCardActions", crmTypes.CrmCardActionsProps, true>>;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// Do not manually update this file, changes will be autogenerated by our scripts based on: ui-extensions-remote-renderer/static/js/crmRemoteComponents.ts
|
|
2
|
-
import { createRemoteReactComponent } from '@remote-ui/react';
|
|
3
|
-
export const CrmPropertyList = createRemoteReactComponent('CrmPropertyList');
|
|
4
|
-
export const CrmAssociationTable = createRemoteReactComponent('CrmAssociationTable');
|
|
5
|
-
export const CrmDataHighlight = createRemoteReactComponent('CrmDataHighlight');
|
|
6
|
-
export const CrmReport = createRemoteReactComponent('CrmReport');
|
|
7
|
-
export const CrmAssociationPivot = createRemoteReactComponent('CrmAssociationPivot');
|
|
8
|
-
export const CrmAssociationPropertyList = createRemoteReactComponent('CrmAssociationPropertyList');
|
|
9
|
-
export const CrmAssociationStageTracker = createRemoteReactComponent('CrmAssociationStageTracker');
|
|
10
|
-
export const CrmSimpleDeadline = createRemoteReactComponent('CrmSimpleDeadline');
|
|
11
|
-
export const CrmStageTracker = createRemoteReactComponent('CrmStageTracker');
|
|
12
|
-
export const CrmStatistics = createRemoteReactComponent('CrmStatistics');
|
|
13
|
-
export const CrmActionButton = createRemoteReactComponent('CrmActionButton');
|
|
14
|
-
export const CrmActionLink = createRemoteReactComponent('CrmActionLink');
|
|
15
|
-
export const CrmCardActions = createRemoteReactComponent('CrmCardActions');
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
import type * as componentTypes from './types/components/index.synced';
|
|
2
|
-
import type * as experimentalTypes from './experimental/types.synced';
|
|
3
|
-
/**
|
|
4
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
5
|
-
*/
|
|
6
|
-
export declare const Iframe: "Iframe" & {
|
|
7
|
-
readonly type?: "Iframe" | undefined;
|
|
8
|
-
readonly props?: componentTypes.IframeProps | undefined;
|
|
9
|
-
readonly children?: true | undefined;
|
|
10
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Iframe", componentTypes.IframeProps, true>>;
|
|
11
|
-
/**
|
|
12
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
13
|
-
*/
|
|
14
|
-
export declare const MediaObject: "MediaObject" & {
|
|
15
|
-
readonly type?: "MediaObject" | undefined;
|
|
16
|
-
readonly props?: experimentalTypes.MediaObjectProps | undefined;
|
|
17
|
-
readonly children?: true | undefined;
|
|
18
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"MediaObject", experimentalTypes.MediaObjectProps, true>>;
|
|
19
|
-
/**
|
|
20
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
21
|
-
*/
|
|
22
|
-
export declare const Stack2: "Stack2" & {
|
|
23
|
-
readonly type?: "Stack2" | undefined;
|
|
24
|
-
readonly props?: experimentalTypes.Stack2Props | undefined;
|
|
25
|
-
readonly children?: true | undefined;
|
|
26
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Stack2", experimentalTypes.Stack2Props, true>>;
|
|
27
|
-
/**
|
|
28
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
29
|
-
*/
|
|
30
|
-
export declare const Center: "Center" & {
|
|
31
|
-
readonly type?: "Center" | undefined;
|
|
32
|
-
readonly props?: experimentalTypes.CenterProps | undefined;
|
|
33
|
-
readonly children?: true | undefined;
|
|
34
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Center", experimentalTypes.CenterProps, true>>;
|
|
35
|
-
/**
|
|
36
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
37
|
-
*/
|
|
38
|
-
export declare const Grid: "Grid" & {
|
|
39
|
-
readonly type?: "Grid" | undefined;
|
|
40
|
-
readonly props?: experimentalTypes.GridProps | undefined;
|
|
41
|
-
readonly children?: true | undefined;
|
|
42
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Grid", experimentalTypes.GridProps, true>>;
|
|
43
|
-
/**
|
|
44
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
45
|
-
*/
|
|
46
|
-
export declare const GridItem: "GridItem" & {
|
|
47
|
-
readonly type?: "GridItem" | undefined;
|
|
48
|
-
readonly props?: experimentalTypes.GridItemProps | undefined;
|
|
49
|
-
readonly children?: true | undefined;
|
|
50
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"GridItem", experimentalTypes.GridItemProps, true>>;
|
|
51
|
-
/**
|
|
52
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
53
|
-
*/
|
|
54
|
-
export declare const SettingsView: "SettingsView" & {
|
|
55
|
-
readonly type?: "SettingsView" | undefined;
|
|
56
|
-
readonly props?: experimentalTypes.SettingsViewProps | undefined;
|
|
57
|
-
readonly children?: true | undefined;
|
|
58
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"SettingsView", experimentalTypes.SettingsViewProps, true>>;
|
|
59
|
-
/**
|
|
60
|
-
* The `ExpandableText` component renders a text that can be expanded or collapsed based on a maximum height.
|
|
61
|
-
*
|
|
62
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
63
|
-
*
|
|
64
|
-
* **Links:**
|
|
65
|
-
*
|
|
66
|
-
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/expandable-text ExpandableText Docs}
|
|
67
|
-
*/
|
|
68
|
-
export declare const ExpandableText: "ExpandableText" & {
|
|
69
|
-
readonly type?: "ExpandableText" | undefined;
|
|
70
|
-
readonly props?: experimentalTypes.ExpandableTextProps | undefined;
|
|
71
|
-
readonly children?: true | undefined;
|
|
72
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"ExpandableText", experimentalTypes.ExpandableTextProps, true>>;
|
|
73
|
-
/**
|
|
74
|
-
* The `Popover` component renders a popover overlay that can contain other components.
|
|
75
|
-
*
|
|
76
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
77
|
-
*
|
|
78
|
-
* **Links:**
|
|
79
|
-
*
|
|
80
|
-
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/popover Popover Docs}
|
|
81
|
-
*/
|
|
82
|
-
export declare const Popover: "Popover" & {
|
|
83
|
-
readonly type?: "Popover" | undefined;
|
|
84
|
-
readonly props?: experimentalTypes.PopoverProps | undefined;
|
|
85
|
-
readonly children?: true | undefined;
|
|
86
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Popover", experimentalTypes.PopoverProps, true>>;
|
|
87
|
-
/**
|
|
88
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
89
|
-
*/
|
|
90
|
-
export declare const FileInput: "FileInput" & {
|
|
91
|
-
readonly type?: "FileInput" | undefined;
|
|
92
|
-
readonly props?: experimentalTypes.FileInputProps | undefined;
|
|
93
|
-
readonly children?: true | undefined;
|
|
94
|
-
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"FileInput", experimentalTypes.FileInputProps, true>>;
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
// Do not manually update this file, changes will be autogenerated by our scripts based on: ui-extensions-remote-renderer/static/js/experimentalRemoteComponents.ts
|
|
2
|
-
import { createRemoteReactComponent } from '@remote-ui/react';
|
|
3
|
-
/**
|
|
4
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
5
|
-
*/
|
|
6
|
-
export const Iframe = createRemoteReactComponent('Iframe');
|
|
7
|
-
/**
|
|
8
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
9
|
-
*/
|
|
10
|
-
export const MediaObject = createRemoteReactComponent('MediaObject', {
|
|
11
|
-
fragmentProps: ['itemRight', 'itemLeft'],
|
|
12
|
-
});
|
|
13
|
-
/**
|
|
14
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
15
|
-
*/
|
|
16
|
-
export const Stack2 = createRemoteReactComponent('Stack2');
|
|
17
|
-
/**
|
|
18
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
19
|
-
*/
|
|
20
|
-
export const Center = createRemoteReactComponent('Center');
|
|
21
|
-
/**
|
|
22
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
23
|
-
*/
|
|
24
|
-
export const Grid = createRemoteReactComponent('Grid');
|
|
25
|
-
/**
|
|
26
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
27
|
-
*/
|
|
28
|
-
export const GridItem = createRemoteReactComponent('GridItem');
|
|
29
|
-
/**
|
|
30
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
31
|
-
*/
|
|
32
|
-
export const SettingsView = createRemoteReactComponent('SettingsView');
|
|
33
|
-
/**
|
|
34
|
-
* The `ExpandableText` component renders a text that can be expanded or collapsed based on a maximum height.
|
|
35
|
-
*
|
|
36
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
37
|
-
*
|
|
38
|
-
* **Links:**
|
|
39
|
-
*
|
|
40
|
-
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/expandable-text ExpandableText Docs}
|
|
41
|
-
*/
|
|
42
|
-
export const ExpandableText = createRemoteReactComponent('ExpandableText');
|
|
43
|
-
/**
|
|
44
|
-
* The `Popover` component renders a popover overlay that can contain other components.
|
|
45
|
-
*
|
|
46
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
47
|
-
*
|
|
48
|
-
* **Links:**
|
|
49
|
-
*
|
|
50
|
-
* - {@link https://developers.hubspot.com/docs/reference/ui-components/standard-components/popover Popover Docs}
|
|
51
|
-
*/
|
|
52
|
-
export const Popover = createRemoteReactComponent('Popover');
|
|
53
|
-
/**
|
|
54
|
-
* @experimental This component is experimental. Avoid using it in production due to potential breaking changes. Your feedback is valuable for improvements. Stay tuned for updates.
|
|
55
|
-
*/
|
|
56
|
-
export const FileInput = createRemoteReactComponent('FileInput');
|