@hubspot/ui-extensions 0.8.33 → 0.8.35

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.
@@ -302,3 +302,13 @@ export declare const LoadingButton: "LoadingButton" & {
302
302
  readonly props?: types.LoadingButtonProps | undefined;
303
303
  readonly children?: true | undefined;
304
304
  } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"LoadingButton", types.LoadingButtonProps, true>>;
305
+ export declare const BarChart: "BarChart" & {
306
+ readonly type?: "BarChart" | undefined;
307
+ readonly props?: types.ChartProps | undefined;
308
+ readonly children?: true | undefined;
309
+ } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"BarChart", types.ChartProps, true>>;
310
+ export declare const LineChart: "LineChart" & {
311
+ readonly type?: "LineChart" | undefined;
312
+ readonly props?: types.ChartProps | undefined;
313
+ readonly children?: true | undefined;
314
+ } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"LineChart", types.ChartProps, true>>;
@@ -70,3 +70,5 @@ export const StatusTag = createRemoteReactComponent('StatusTag');
70
70
  export const LoadingButton = createRemoteReactComponent('LoadingButton', {
71
71
  fragmentProps: ['overlay'],
72
72
  });
73
+ export const BarChart = createRemoteReactComponent('BarChart');
74
+ export const LineChart = createRemoteReactComponent('LineChart');
@@ -5,16 +5,4 @@ declare const Iframe: "Iframe" & {
5
5
  readonly props?: types.IframeProps | undefined;
6
6
  readonly children?: true | undefined;
7
7
  } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"Iframe", types.IframeProps, true>>;
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
- declare const BarChart: "BarChart" & {
10
- readonly type?: "BarChart" | undefined;
11
- readonly props?: types.ChartProps | undefined;
12
- readonly children?: true | undefined;
13
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"BarChart", types.ChartProps, true>>;
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
- declare const LineChart: "LineChart" & {
16
- readonly type?: "LineChart" | undefined;
17
- readonly props?: types.ChartProps | undefined;
18
- readonly children?: true | undefined;
19
- } & import("@remote-ui/react").ReactComponentTypeFromRemoteComponentType<import("@remote-ui/types").RemoteComponentType<"LineChart", types.ChartProps, true>>;
20
- export { Iframe, BarChart, LineChart };
8
+ export { Iframe };
@@ -1,8 +1,4 @@
1
1
  import { createRemoteReactComponent } from '@remote-ui/react';
2
2
  /** @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. */
3
3
  const Iframe = createRemoteReactComponent('Iframe');
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
- const BarChart = createRemoteReactComponent('BarChart');
6
- /** @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. */
7
- const LineChart = createRemoteReactComponent('LineChart');
8
- export { Iframe, BarChart, LineChart };
4
+ export { Iframe };
package/dist/types.d.ts CHANGED
@@ -494,8 +494,6 @@ export interface IframeProps {
494
494
  /**
495
495
  * The props type for {@link !components.Icon}.
496
496
  *
497
- * @ignore
498
- * @experimental
499
497
  * @category Component Props
500
498
  */
501
499
  export interface IconProps {
@@ -1393,6 +1391,7 @@ export interface UserContext {
1393
1391
  email: string;
1394
1392
  firstName: string;
1395
1393
  lastName: string;
1394
+ /** @deprecated Roles will always be empty. Please use teams instead */
1396
1395
  roles: string[];
1397
1396
  teams: Team[];
1398
1397
  locale?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubspot/ui-extensions",
3
- "version": "0.8.33",
3
+ "version": "0.8.35",
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": "43946879c6cc1dbd76102fe92f6c1838ea34db6b"
54
+ "gitHead": "3f6a69859a3ee37e755f6e594884e5916d46138a"
55
55
  }