@kouji-ui/components 0.9.1 → 0.9.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kouji-ui/components",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Opinionated styled Angular components built on @kouji-ui/core directives. Themed at runtime via @kouji-ui/themes.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -8657,7 +8657,7 @@ declare class KjTimePickerComponent {
8657
8657
  * @doc-related dialog,alert,spinner
8658
8658
  *
8659
8659
  * @doc-css-var
8660
- * --kj-toast-z-index — Stack level for the viewport. Default 1000; raise above app overlays.
8660
+ * --kj-toast-z-index — Stack level for the viewport. Default 2000 above the overlay stack (dialogs, palettes, popovers start at 1000), so toasts always show on top.
8661
8661
  * --kj-toast-gap — Vertical gap between stacked toasts in both collapsed and expanded states.
8662
8662
  *
8663
8663
  * @doc-category Library/Overlay
@@ -9097,13 +9097,29 @@ declare class KjCommandPaletteComponent {
9097
9097
  readonly kjAutoCloseOnActivate: _angular_core.InputSignalWithTransform<boolean, unknown>;
9098
9098
  protected readonly itemTpl: _angular_core.Signal<KjCommandPaletteItemTemplate<any> | undefined>;
9099
9099
  protected readonly customFooter: _angular_core.Signal<KjCommandPaletteFooter | undefined>;
9100
+ private readonly shell;
9101
+ private readonly dialog;
9102
+ private readonly host;
9100
9103
  private readonly destroyRef;
9101
9104
  private readonly platformId;
9102
9105
  /** The composed headless palette (host directive) — owns query + active state. */
9103
9106
  private readonly palette;
9107
+ private readonly stack;
9108
+ private readonly stackId;
9109
+ private stackHandle;
9110
+ private wrapper;
9104
9111
  constructor();
9105
9112
  /** Programmatically close the palette. */
9106
9113
  close(): void;
9114
+ /**
9115
+ * Escape from inside the dialog. Only closes when the palette is the
9116
+ * topmost overlay — an Escape meant for a select or popover opened from
9117
+ * inside the palette is routed to that overlay by `KjOverlayStack`, and
9118
+ * must not also dismiss the palette underneath it.
9119
+ */
9120
+ protected onEscape(): void;
9121
+ private portalIn;
9122
+ private portalOut;
9107
9123
  /** Programmatically open the palette. */
9108
9124
  open(): void;
9109
9125
  protected onActivate(): void;