@hubspot/ui-extensions 0.8.36 → 0.8.38
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/coreComponents.d.ts +11 -0
- package/dist/coreComponents.js +11 -0
- package/package.json +2 -2
package/dist/coreComponents.d.ts
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
import type * as types from './types';
|
|
2
|
+
/**
|
|
3
|
+
* @link https://developers.hubspot.com/beta-docs/reference/ui-components/standard-components/alert
|
|
4
|
+
*/
|
|
2
5
|
export declare const Alert: "Alert" & {
|
|
3
6
|
readonly type?: "Alert" | undefined;
|
|
4
7
|
readonly props?: types.AlertProps | undefined;
|
|
5
8
|
readonly children?: true | undefined;
|
|
6
9
|
} & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Alert", types.AlertProps, true>>;
|
|
10
|
+
/**
|
|
11
|
+
* The `Button` component renders a single button. Use this component to enable users to perform actions, such as submitting a form, sending data to an external system, or deleting data.
|
|
12
|
+
*
|
|
13
|
+
* **Links:**
|
|
14
|
+
*
|
|
15
|
+
* - {@link https://developers.hubspot.com/beta-docs/reference/ui-components/standard-components/button Docs}
|
|
16
|
+
* - {@link https://developers.hubspot.com/beta-docs/reference/ui-components/standard-components/button#usage-examples Examples}
|
|
17
|
+
*/
|
|
7
18
|
export declare const Button: "Button" & {
|
|
8
19
|
readonly type?: "Button" | undefined;
|
|
9
20
|
readonly props?: types.ButtonProps | undefined;
|
package/dist/coreComponents.js
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import { createRemoteReactComponent } from '@remote-ui/react';
|
|
2
|
+
/**
|
|
3
|
+
* @link https://developers.hubspot.com/beta-docs/reference/ui-components/standard-components/alert
|
|
4
|
+
*/
|
|
2
5
|
export const Alert = createRemoteReactComponent('Alert');
|
|
6
|
+
/**
|
|
7
|
+
* The `Button` component renders a single button. Use this component to enable users to perform actions, such as submitting a form, sending data to an external system, or deleting data.
|
|
8
|
+
*
|
|
9
|
+
* **Links:**
|
|
10
|
+
*
|
|
11
|
+
* - {@link https://developers.hubspot.com/beta-docs/reference/ui-components/standard-components/button Docs}
|
|
12
|
+
* - {@link https://developers.hubspot.com/beta-docs/reference/ui-components/standard-components/button#usage-examples Examples}
|
|
13
|
+
*/
|
|
3
14
|
export const Button = createRemoteReactComponent('Button', {
|
|
4
15
|
fragmentProps: ['overlay'],
|
|
5
16
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/ui-extensions",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.38",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"typescript": "5.0.4"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "87aa6e40049142bccafd175446fbd7d5c08caab6"
|
|
55
55
|
}
|