@rebasepro/plugin-insights 0.0.1-canary.892f711 → 0.0.1-canary.a6becfb

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.
@@ -0,0 +1,4 @@
1
+ export interface BootstrapAdminBannerProps {
2
+ className?: string;
3
+ }
4
+ export declare function BootstrapAdminBanner({ className }: BootstrapAdminBannerProps): import("react/jsx-runtime").JSX.Element | null;
@@ -1,4 +1,26 @@
1
1
  import { ReactNode } from "react";
2
+ /** Google Identity Services SDK — injected by the GIS <script> tag. */
3
+ declare global {
4
+ interface Window {
5
+ google?: {
6
+ accounts: {
7
+ oauth2: {
8
+ initCodeClient(config: {
9
+ client_id: string;
10
+ scope: string;
11
+ ux_mode: "popup" | "redirect";
12
+ callback: (response: {
13
+ code?: string;
14
+ error?: string;
15
+ }) => void;
16
+ }): {
17
+ requestCode(): void;
18
+ };
19
+ };
20
+ };
21
+ };
22
+ }
23
+ }
2
24
  import { AuthControllerExtended } from "@rebasepro/types";
3
25
  /**
4
26
  * Props for the generic LoginView.
@@ -14,3 +14,4 @@ export * from "./UserSelectPopover";
14
14
  export * from "./UserDisplay";
15
15
  export * from "./LoginView";
16
16
  export * from "./RebaseAuth";
17
+ export * from "./BootstrapAdminBanner";
@@ -35,3 +35,4 @@ export * from "./useTranslation";
35
35
  export * from "./useRebaseClient";
36
36
  export * from "./useAnalyticsController";
37
37
  export * from "./useUserConfigurationPersistence";
38
+ export * from "./useResolvedComponent";
@@ -3,10 +3,25 @@
3
3
  * with localStorage persistence. Automatically cleans up stale group entries
4
4
  * when groups are removed from the navigation.
5
5
  *
6
+ * Groups that have never been toggled by the user fall back to
7
+ * `defaults[groupName]` (driven by `collapsedByDefault` in config).
8
+ *
6
9
  * @param groupNames - Array of group names to track
7
10
  * @param namespace - Namespace for localStorage key (e.g., "home", "drawer") to allow independent state
11
+ * @param defaults - Optional map of group name → collapsed boolean from config
8
12
  */
9
- export declare function useCollapsedGroups(groupNames: string[], namespace?: string): {
13
+ export declare function useCollapsedGroups(groupNames: string[], namespace?: string, defaults?: Record<string, boolean>): {
10
14
  isGroupCollapsed: (name: string) => boolean;
11
15
  toggleGroupCollapsed: (name: string) => void;
12
16
  };
17
+ /**
18
+ * Build a defaults map from navigationGroupMappings for a given namespace.
19
+ * Returns a Record<groupName, collapsed> that can be passed to useCollapsedGroups.
20
+ */
21
+ export declare function buildCollapsedDefaults(mappings: Array<{
22
+ name: string;
23
+ collapsedByDefault?: boolean | {
24
+ drawer?: boolean;
25
+ home?: boolean;
26
+ };
27
+ }> | undefined, namespace: "drawer" | "home"): Record<string, boolean>;
@@ -0,0 +1,47 @@
1
+ import React from "react";
2
+ import type { ComponentRef } from "@rebasepro/types";
3
+ /**
4
+ * Resolves a `ComponentRef` into a renderable `React.ComponentType`.
5
+ *
6
+ * This hook handles all three forms of `ComponentRef`:
7
+ *
8
+ * 1. **`LazyComponentRef`** (produced by the Vite plugin from string paths):
9
+ * Wraps the lazy loader with `React.lazy()` for automatic code-splitting.
10
+ *
11
+ * 2. **`() => Promise<{ default: ComponentType }>`** (manual lazy import):
12
+ * Also wraps with `React.lazy()`. Distinguished from regular components
13
+ * by checking that the function has no parameters and is not a known
14
+ * React internal (no `$$typeof`).
15
+ *
16
+ * 3. **Direct `React.ComponentType`**:
17
+ * Returned as-is.
18
+ *
19
+ * If the ref is `undefined` or a raw string (which should never happen at
20
+ * runtime in the browser since the Vite plugin transforms strings), returns `undefined`.
21
+ *
22
+ * The returned component is stable across re-renders as long as the `ref`
23
+ * is referentially stable.
24
+ *
25
+ * **Usage:** Wrap the rendered component in `<Suspense>` to handle the
26
+ * loading state of lazy components.
27
+ *
28
+ * @example
29
+ * ```tsx
30
+ * const ResolvedField = useResolvedComponent(property.ui?.Field);
31
+ * if (!ResolvedField) return null;
32
+ * return (
33
+ * <Suspense fallback={<CircularProgress />}>
34
+ * <ResolvedField {...fieldProps} />
35
+ * </Suspense>
36
+ * );
37
+ * ```
38
+ */
39
+ export declare function useResolvedComponent<P = unknown>(ref: ComponentRef<P> | undefined): React.ComponentType<P> | undefined;
40
+ /**
41
+ * Pure function version of the resolver, for use outside React components.
42
+ * Same resolution logic as `useResolvedComponent`.
43
+ *
44
+ * Results are cached per reference identity — calling this multiple times
45
+ * with the same `ref` object returns the same `React.ComponentType`.
46
+ */
47
+ export declare function resolveComponentRef<P = unknown>(ref: ComponentRef<P> | undefined): React.ComponentType<P> | undefined;
@@ -80,8 +80,14 @@ export type AuthController<USER extends User = User, ExtraData = unknown> = {
80
80
  export interface AuthControllerExtended<USER extends User = User, ExtraData = unknown> extends AuthController<USER, ExtraData> {
81
81
  /** Login with email and password */
82
82
  emailPasswordLogin?(email: string, password: string): Promise<void>;
83
- /** Login with a Google token (ID token or access token from popup) */
84
- googleLogin?(token: string, tokenType?: "idToken" | "accessToken"): Promise<void>;
83
+ /** Login with a Google token or authorization code */
84
+ googleLogin?: {
85
+ (token: string, tokenType?: "idToken" | "accessToken"): Promise<void>;
86
+ (payload: {
87
+ code: string;
88
+ redirectUri: string;
89
+ }): Promise<void>;
90
+ };
85
91
  /** Register a new user */
86
92
  register?(email: string, password: string, displayName?: string): Promise<void>;
87
93
  /** Skip login (for anonymous access if enabled) */
@@ -167,4 +167,17 @@ export interface RebaseClient<DB = unknown> {
167
167
  email?: EmailService;
168
168
  /** Admin API for user and role management */
169
169
  admin?: AdminAPI;
170
+ /**
171
+ * The base HTTP URL of the backend server.
172
+ * Exposed by the SDK client (`@rebasepro/client`) and used to auto-derive
173
+ * the `ApiConfigProvider` URL.
174
+ */
175
+ baseUrl?: string;
176
+ /**
177
+ * WebSocket client for realtime subscriptions and admin capabilities.
178
+ * Exposed by the SDK client (`@rebasepro/client`). The shape is intentionally
179
+ * left as `unknown` in the base interface — callers should narrow via feature
180
+ * detection (e.g. `typeof ws.executeSql === "function"`).
181
+ */
182
+ ws?: unknown;
170
183
  }
@@ -144,17 +144,18 @@ export interface AppView {
144
144
  * It will still be accessible if you reach the specified path
145
145
  */
146
146
  hideFromNavigation?: boolean;
147
+ /**
148
+ * Navigation group for this view.
149
+ * Views sharing the same group name will be visually grouped
150
+ * together in the drawer and home page. If not set, the view
151
+ * falls into the default "Views" group.
152
+ */
153
+ group?: string;
147
154
  /**
148
155
  * Component to be rendered. This can be any React component, and can use
149
156
  * any of the provided hooks
150
157
  */
151
158
  view: React.ReactNode;
152
- /**
153
- * Optional field used to group top level navigation entries under a
154
- * navigation view.
155
- * This prop is ignored for admin views.
156
- */
157
- group?: string;
158
159
  /**
159
160
  * If true, a wildcard route (slug/*) is automatically registered
160
161
  * alongside the base route, enabling nested navigation within this view.
@@ -193,6 +194,17 @@ export interface NavigationGroupMapping {
193
194
  * List of collection ids or view paths that belong to this group.
194
195
  */
195
196
  entries: string[];
197
+ /**
198
+ * Configure which groups start collapsed.
199
+ * Set to `true` to collapse in both drawer and home page,
200
+ * or use an object to control each independently.
201
+ *
202
+ * @defaultValue false (expanded)
203
+ */
204
+ collapsedByDefault?: boolean | {
205
+ drawer?: boolean;
206
+ home?: boolean;
207
+ };
196
208
  }
197
209
  export interface NavigationEntry {
198
210
  id: string;
@@ -3,7 +3,7 @@ import type { EntityCollection } from "../types/collections";
3
3
  import type { EntityCollectionsBuilder } from "../types/builders";
4
4
  import type { EntityCustomView } from "../types/entity_views";
5
5
  import type { EntityAction } from "../types/entity_actions";
6
- import type { AppView } from "./navigation";
6
+ import type { AppView, NavigationGroupMapping } from "./navigation";
7
7
  /**
8
8
  * Options to enable the built-in collection editor.
9
9
  * When provided to `<RebaseCMS>`, the editor is auto-wired as a native feature.
@@ -25,6 +25,14 @@ export interface RebaseCMSConfig<EC extends EntityCollection = any> {
25
25
  entityViews?: EntityCustomView<any>[];
26
26
  entityActions?: EntityAction[];
27
27
  plugins?: any[];
28
+ /**
29
+ * Centralized configuration for how collections and views are grouped
30
+ * in the navigation sidebar and home page.
31
+ * Each mapping defines a named group and the collection/view slugs
32
+ * that belong to it. The array order determines group display order.
33
+ * Entry order within each group determines card order.
34
+ */
35
+ navigationGroupMappings?: NavigationGroupMapping[];
28
36
  /**
29
37
  * Enable the built-in visual collection/schema editor.
30
38
  * Pass `true` for zero-config, or an options object for fine-grained control.
@@ -62,6 +62,13 @@ export interface EntitySidePanelProps<M extends Record<string, unknown> = Record
62
62
  * Allow the user to open the entity fullscreen
63
63
  */
64
64
  allowFullScreen?: boolean;
65
+ /**
66
+ * Pre-populate the form with these values when creating a new entity.
67
+ * Only applied when `entityId` is not set (i.e. the form is in "new" mode).
68
+ * Useful for actions that fetch data from an external source (e.g. a URL)
69
+ * and want to pre-fill the document before the user saves.
70
+ */
71
+ defaultValues?: Partial<M>;
65
72
  }
66
73
  /**
67
74
  * Controller to open the side dialog displaying entity forms
@@ -3,6 +3,7 @@ import type { AuthController } from "./controllers/auth";
3
3
  import type { StorageSource } from "./controllers/storage";
4
4
  import type { UserConfigurationPersistence } from "./controllers/local_config_persistence";
5
5
  import type { DatabaseAdmin } from "./types/backend";
6
+ import type { RebaseClient } from "./controllers/client";
6
7
  import type { RebaseData } from "./controllers/data";
7
8
  import type { User } from "./users";
8
9
  import type { UserManagementDelegate } from "./types/user_management_delegate";
@@ -12,6 +13,22 @@ import type { UserManagementDelegate } from "./types/user_management_delegate";
12
13
  * @group Hooks and utilities
13
14
  */
14
15
  export type RebaseCallContext<USER extends User = User> = {
16
+ /**
17
+ * The Rebase client instance.
18
+ * Available in all entity callbacks (beforeSave, afterSave, afterRead,
19
+ * beforeDelete, afterDelete) and in CollectionActionsProps via context.
20
+ * Use it to call backend functions, access data, storage, etc.
21
+ *
22
+ * @example
23
+ * // In a beforeSave callback:
24
+ * const result = await context.client.functions.invoke('my-function', { ... });
25
+ *
26
+ * @example
27
+ * // In a CollectionAction component:
28
+ * const { client } = props.context;
29
+ * const result = await client.functions.invoke('extract-job', { url });
30
+ */
31
+ client: RebaseClient<any>;
15
32
  /**
16
33
  * Unified data access — `context.data.products.create(...)`.
17
34
  * Access any collection as a dynamic property.
@@ -9,6 +9,7 @@ import type { RebaseContext } from "../rebase_context";
9
9
  import type { Relation } from "./relations";
10
10
  import type { EntityCustomView } from "./entity_views";
11
11
  import type { EntityAction } from "./entity_actions";
12
+ import type { ComponentRef } from "./component_ref";
12
13
  /**
13
14
  * Base interface containing all driver-agnostic collection properties.
14
15
  * Use {@link PostgresCollection} or {@link FirebaseCollection} for
@@ -86,6 +87,9 @@ export interface BaseEntityCollection<M extends Record<string, unknown> = Record
86
87
  icon?: string | React.ReactNode;
87
88
  /**
88
89
  * Navigation group for this collection.
90
+ * Collections sharing the same group name will be visually grouped
91
+ * together in the drawer and home page. If not set, the collection
92
+ * falls into the default "Views" group.
89
93
  */
90
94
  group?: string;
91
95
  /**
@@ -168,6 +172,24 @@ export interface BaseEntityCollection<M extends Record<string, unknown> = Record
168
172
  * e.g. `defaultFilter: { related_user: ["==", new EntityReference("sdc43dsw2", "users")] }`
169
173
  */
170
174
  readonly defaultFilter?: FilterValues<Extract<keyof M, string> | (string & {})>;
175
+ /**
176
+ * Pre-defined filter presets that appear as quick-access options in the
177
+ * collection toolbar. Each preset applies a set of filters (and
178
+ * optionally a sort order) with a single click.
179
+ *
180
+ * ```ts
181
+ * filterPresets: [
182
+ * {
183
+ * label: "Shipped this month",
184
+ * filterValues: {
185
+ * status: ["==", "shipped"],
186
+ * order_date: [">=", new Date(Date.now() - 30 * 86400000)]
187
+ * }
188
+ * }
189
+ * ]
190
+ * ```
191
+ */
192
+ readonly filterPresets?: FilterPreset<Extract<keyof M, string> | (string & {})>[];
171
193
  /**
172
194
  * Default sort applied to this collection.
173
195
  * When setting this prop, entities will have a default order
@@ -301,7 +323,7 @@ export interface BaseEntityCollection<M extends Record<string, unknown> = Record
301
323
  /**
302
324
  * Builder for the collection actions rendered in the toolbar
303
325
  */
304
- Actions?: React.ComponentType<any>[];
326
+ Actions?: ComponentRef<CollectionActionsProps>[];
305
327
  }
306
328
  /**
307
329
  * A collection backed by PostgreSQL (or any SQL database).
@@ -482,6 +504,21 @@ export interface CollectionActionsProps<M extends Record<string, unknown> = Reco
482
504
  * undefined means the count is still loading.
483
505
  */
484
506
  collectionEntitiesCount?: number;
507
+ /**
508
+ * Programmatically open the new-document form for this collection,
509
+ * optionally pre-populating it with initial field values.
510
+ * The form opens in the same mode configured for the collection
511
+ * (side panel, full screen, or split).
512
+ *
513
+ * This is the primary hook for workflows that need to create a document
514
+ * from external data — e.g. fetching content from a URL, importing from
515
+ * a third-party API, or duplicating from another system.
516
+ *
517
+ * @example
518
+ * // Inside a custom CollectionAction component:
519
+ * openNewDocument({ title: "Fetched title", body: "..." });
520
+ */
521
+ openNewDocument: (defaultValues?: Record<string, unknown>) => void;
485
522
  }
486
523
  /**
487
524
  * Use this controller to retrieve the selected entities or modify them in
@@ -509,6 +546,32 @@ export type WhereFilterOp = "<" | "<=" | "==" | "!=" | ">=" | ">" | "array-conta
509
546
  * @group Models
510
547
  */
511
548
  export type FilterValues<Key extends string> = Partial<Record<Key, [WhereFilterOp, unknown]>>;
549
+ /**
550
+ * A pre-defined filter preset for quick access in the collection toolbar.
551
+ * Users can select a preset to instantly apply a set of filters and
552
+ * optionally a sort order.
553
+ *
554
+ * @group Models
555
+ */
556
+ export interface FilterPreset<Key extends string = string> {
557
+ /**
558
+ * Display label shown in the preset menu.
559
+ * If omitted, a summary is auto-generated from the filter keys.
560
+ */
561
+ label?: string;
562
+ /**
563
+ * The filter values to apply when this preset is selected.
564
+ */
565
+ filterValues: FilterValues<Key>;
566
+ /**
567
+ * Optional sort override to apply alongside the filter values.
568
+ */
569
+ sort?: [Key, "asc" | "desc"];
570
+ }
571
+ /**
572
+ * @deprecated Use {@link FilterPreset} instead.
573
+ */
574
+ export type QuickFilter<Key extends string = string> = FilterPreset<Key>;
512
575
  /**
513
576
  * Used to indicate valid filter combinations (e.g. created in Firestore)
514
577
  * If the user selects a specific filter/sort combination, the CMS checks if it's
@@ -0,0 +1,47 @@
1
+ import type React from "react";
2
+ /**
3
+ * Internal marker for a lazily-loaded component reference.
4
+ * Created by the Vite transform plugin when converting string paths
5
+ * to deferred `import()` calls. Users should NOT create these manually.
6
+ *
7
+ * @internal
8
+ */
9
+ export interface LazyComponentRef<P = unknown> {
10
+ readonly __rebaseLazy: true;
11
+ readonly load: () => Promise<{
12
+ default: React.ComponentType<P>;
13
+ }>;
14
+ }
15
+ /**
16
+ * A reference to a React component that can be provided in three forms:
17
+ *
18
+ * 1. **String path** (recommended for collection configs):
19
+ * ```ts
20
+ * Field: "../../frontend/src/components/MyField"
21
+ * ```
22
+ * The Vite plugin transforms this into a `LazyComponentRef` at build time.
23
+ * On the backend, the string stays inert and is never evaluated.
24
+ *
25
+ * 2. **Lazy import function**:
26
+ * ```ts
27
+ * Field: () => import("../../frontend/src/components/MyField")
28
+ * ```
29
+ * Standard ES dynamic import. Backend never calls the function.
30
+ *
31
+ * 3. **Direct component reference** (use only in frontend-only code):
32
+ * ```ts
33
+ * Field: MyFieldComponent
34
+ * ```
35
+ * Importing a component at the top level will pull React into the
36
+ * backend runtime — only safe in code that the backend never imports.
37
+ *
38
+ * @group Types
39
+ */
40
+ export type ComponentRef<P = unknown> = React.ComponentType<P> | LazyComponentRef<P> | (() => Promise<{
41
+ default: React.ComponentType<P>;
42
+ }>) | string;
43
+ /**
44
+ * Type guard: checks if a value is a `LazyComponentRef` produced by the
45
+ * Vite transform plugin.
46
+ */
47
+ export declare function isLazyComponentRef<P = unknown>(ref: unknown): ref is LazyComponentRef<P>;
@@ -2,6 +2,7 @@ import React from "react";
2
2
  import type { Entity, EntityValues } from "./entities";
3
3
  import type { EntityCollection } from "./collections";
4
4
  import type { FormexController } from "./formex";
5
+ import type { ComponentRef } from "./component_ref";
5
6
  /**
6
7
  * Context passed to custom fields and entity views.
7
8
  * @group Form custom fields
@@ -46,7 +47,7 @@ export type EntityCustomView<M extends Record<string, unknown> = Record<string,
46
47
  name: string;
47
48
  tabComponent?: React.ReactNode;
48
49
  includeActions?: boolean | "bottom";
49
- Builder?: React.ComponentType<EntityCustomViewParams<M>>;
50
+ Builder?: ComponentRef<EntityCustomViewParams<M>>;
50
51
  position?: "start" | "end";
51
52
  };
52
53
  export interface EntityCustomViewParams<M extends Record<string, unknown> = Record<string, unknown>> {
@@ -23,3 +23,4 @@ export * from "./entity_views";
23
23
  export * from "./data_source";
24
24
  export * from "./cron";
25
25
  export * from "./backend_hooks";
26
+ export * from "./component_ref";
@@ -1,4 +1,4 @@
1
- import React from "react";
1
+ import type { ComponentRef } from "./component_ref";
2
2
  import type { EntityReference, EntityRelation, EntityValues, GeoPoint, Entity } from "./entities";
3
3
  import type { Relation, JoinStep, OnAction } from "./relations";
4
4
  import type { EntityCollection, FilterValues } from "./collections";
@@ -104,8 +104,8 @@ export interface BaseUIConfig<CustomProps = unknown> {
104
104
  disabled?: boolean | PropertyDisabledConfig;
105
105
  widthPercentage?: number;
106
106
  customProps?: CustomProps;
107
- Field?: React.ComponentType<any>;
108
- Preview?: React.ComponentType<any>;
107
+ Field?: ComponentRef<any>;
108
+ Preview?: ComponentRef<any>;
109
109
  }
110
110
  export interface BaseProperty<CustomProps = unknown> {
111
111
  ui?: BaseUIConfig<CustomProps>;
@@ -51,6 +51,8 @@ export interface RebaseTranslations {
51
51
  all_entries_loaded: string;
52
52
  create_your_first_entry: string;
53
53
  no_results_filter_sort: string;
54
+ /** Shown when a text search yields no results. Supports `{{search}}` interpolation. */
55
+ no_results_search?: string;
54
56
  add: string;
55
57
  remove: string;
56
58
  copy_id: string;
@@ -390,6 +392,12 @@ export interface RebaseTranslations {
390
392
  submit: string;
391
393
  no_filterable_properties: string;
392
394
  apply_filters: string;
395
+ /** Label shown on the filter presets dropdown trigger */
396
+ filter_presets?: string;
397
+ /** Tooltip shown when hovering over a preset entry */
398
+ filter_preset_apply?: string;
399
+ /** Shown when a preset is active, with {{label}} interpolation */
400
+ filter_preset_active?: string;
393
401
  list: string;
394
402
  table_view_mode: string;
395
403
  cards: string;
@@ -0,0 +1,42 @@
1
+ import React from "react";
2
+ export interface FilterChipProps {
3
+ /**
4
+ * The text label displayed on the chip.
5
+ */
6
+ children: React.ReactNode;
7
+ /**
8
+ * Whether the chip is currently in an active/selected state.
9
+ */
10
+ active?: boolean;
11
+ /**
12
+ * Callback when the chip is clicked.
13
+ */
14
+ onClick?: () => void;
15
+ /**
16
+ * Optional icon rendered before the label.
17
+ */
18
+ icon?: React.ReactNode;
19
+ /**
20
+ * Size variant.
21
+ * @default "medium"
22
+ */
23
+ size?: "small" | "medium";
24
+ /**
25
+ * Additional class names.
26
+ */
27
+ className?: string;
28
+ /**
29
+ * Whether the chip is disabled.
30
+ */
31
+ disabled?: boolean;
32
+ }
33
+ /**
34
+ * A toggle chip used for filter presets and similar multi-select controls.
35
+ *
36
+ * Uses an inset box-shadow for the active ring instead of `border` so the
37
+ * chip size stays stable across states and the ring cannot be clipped by
38
+ * parent `overflow-hidden` containers.
39
+ *
40
+ * @group Interactive components
41
+ */
42
+ export declare function FilterChip({ children, active, onClick, icon, size, className, disabled }: FilterChipProps): import("react/jsx-runtime").JSX.Element;
@@ -17,6 +17,10 @@ interface SearchBarProps {
17
17
  disabled?: boolean;
18
18
  loading?: boolean;
19
19
  inputRef?: React.Ref<HTMLInputElement>;
20
+ /**
21
+ * Optional initial value for the search input, e.g. from URL params.
22
+ */
23
+ initialValue?: string;
20
24
  }
21
- export declare function SearchBar({ onClick, onTextSearch, placeholder, expandable, size, innerClassName, className, autoFocus, disabled, loading, inputRef }: SearchBarProps): import("react/jsx-runtime").JSX.Element;
25
+ export declare function SearchBar({ onClick, onTextSearch, placeholder, expandable, size, innerClassName, className, autoFocus, disabled, loading, inputRef, initialValue }: SearchBarProps): import("react/jsx-runtime").JSX.Element;
22
26
  export {};
@@ -22,6 +22,7 @@ export * from "./DialogContent";
22
22
  export * from "./DialogTitle";
23
23
  export * from "./ExpandablePanel";
24
24
  export * from "./FileUpload";
25
+ export * from "./FilterChip";
25
26
  export * from "./IconButton";
26
27
  export * from "./InputLabel";
27
28
  export * from "./InfoLabel";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rebasepro/plugin-insights",
3
3
  "type": "module",
4
- "version": "0.0.1-canary.892f711",
4
+ "version": "0.0.1-canary.a6becfb",
5
5
  "main": "./dist/index.umd.js",
6
6
  "module": "./dist/index.es.js",
7
7
  "types": "./dist/index.d.ts",
@@ -18,8 +18,8 @@
18
18
  "dependencies": {
19
19
  "lucide-react": "1.14.0",
20
20
  "react-compiler-runtime": "1.0.0",
21
- "@rebasepro/core": "0.0.1-canary.892f711",
22
- "@rebasepro/types": "0.0.1-canary.892f711"
21
+ "@rebasepro/core": "0.0.1-canary.a6becfb",
22
+ "@rebasepro/types": "0.0.1-canary.a6becfb"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "react": ">=19.0.0",