@skygraph/react 0.5.3 → 0.6.4

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/index.d.cts CHANGED
@@ -1151,6 +1151,10 @@ interface NotificationConfig {
1151
1151
  onClose?: () => void;
1152
1152
  /** Corner stack this toast belongs to; must match a mounted container. */
1153
1153
  placement?: 'topRight' | 'topLeft' | 'bottomRight' | 'bottomLeft';
1154
+ /** Extra class on the toast root — useful for scoped theming. */
1155
+ className?: string;
1156
+ /** Inline style on the toast root; accepts CSS custom properties for per-toast token overrides. */
1157
+ style?: React__default.CSSProperties;
1154
1158
  }
1155
1159
  declare const notification: {
1156
1160
  open: (config: NotificationConfig) => void;
package/dist/index.d.ts CHANGED
@@ -1151,6 +1151,10 @@ interface NotificationConfig {
1151
1151
  onClose?: () => void;
1152
1152
  /** Corner stack this toast belongs to; must match a mounted container. */
1153
1153
  placement?: 'topRight' | 'topLeft' | 'bottomRight' | 'bottomLeft';
1154
+ /** Extra class on the toast root — useful for scoped theming. */
1155
+ className?: string;
1156
+ /** Inline style on the toast root; accepts CSS custom properties for per-toast token overrides. */
1157
+ style?: React__default.CSSProperties;
1154
1158
  }
1155
1159
  declare const notification: {
1156
1160
  open: (config: NotificationConfig) => void;