@kubex/zinc 1.1.89 → 1.1.91
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/custom-elements.json +629 -502
- package/dist/vscode.html-custom-data.json +82 -57
- package/dist/web-types.json +197 -147
- package/dist/zn.d.ts +17 -1
- package/dist/zn.min.js +59 -56
- package/docs/pages/components/editor.md +0 -1
- package/package.json +1 -1
- package/src/components/absolute-container/absolute-container.component.ts +23 -4
- package/src/components/inline-edit/inline-edit.component.ts +5 -0
- package/src/components/input/input.component.ts +4 -1
- package/src/components/scroll-container/scroll-container.component.ts +31 -6
- package/src/components/slash-menu/slash-menu.component.ts +4 -1
- package/src/components/textarea/textarea.component.ts +4 -1
- package/src/components/translations/translations.component.ts +4 -0
package/dist/zn.d.ts
CHANGED
|
@@ -1267,8 +1267,10 @@ declare module "components/absolute-container/absolute-container.component" {
|
|
|
1267
1267
|
*
|
|
1268
1268
|
*/
|
|
1269
1269
|
export default class ZnAbsoluteContainer extends ZincElement {
|
|
1270
|
+
private _resizeFrame;
|
|
1270
1271
|
constructor();
|
|
1271
1272
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
1273
|
+
disconnectedCallback(): void;
|
|
1272
1274
|
resize(): void;
|
|
1273
1275
|
createRenderRoot(): this;
|
|
1274
1276
|
}
|
|
@@ -1967,6 +1969,8 @@ declare module "components/slash-menu/slash-menu.component" {
|
|
|
1967
1969
|
emptyText: string;
|
|
1968
1970
|
/** The most items to render at once. Remaining matches are reported in the footer. */
|
|
1969
1971
|
maxItems: number;
|
|
1972
|
+
/** Hides the insertion key (the item's value) normally shown against each item. */
|
|
1973
|
+
hideKeys: boolean;
|
|
1970
1974
|
/** The element or caret rect the panel is positioned against. */
|
|
1971
1975
|
anchor: Element | VirtualElement | null;
|
|
1972
1976
|
/** The preferred placement of the panel. */
|
|
@@ -2334,6 +2338,8 @@ declare module "components/input/input.component" {
|
|
|
2334
2338
|
slashTrigger: string;
|
|
2335
2339
|
/** The heading shown above the slash menu's items. */
|
|
2336
2340
|
slashHeading: string;
|
|
2341
|
+
/** Hides the insertion keys normally shown against the slash menu's items. */
|
|
2342
|
+
slashHideKeys: boolean;
|
|
2337
2343
|
/**
|
|
2338
2344
|
* Resolves additional items each time the menu opens, for lists that come from elsewhere (e.g. an
|
|
2339
2345
|
* API). Receives the current query and may return a promise. JavaScript only.
|
|
@@ -5228,6 +5234,8 @@ declare module "components/inline-edit/inline-edit.component" {
|
|
|
5228
5234
|
slashTrigger: string;
|
|
5229
5235
|
/** The heading shown above the slash menu's items. */
|
|
5230
5236
|
slashHeading: string;
|
|
5237
|
+
/** Hides the insertion keys normally shown against the slash menu's items. */
|
|
5238
|
+
slashHideKeys: boolean;
|
|
5231
5239
|
/** Resolves additional slash menu items each time the menu opens. JavaScript only. */
|
|
5232
5240
|
slashItemsProvider?: (query: string) => SlashMenuItem[] | Promise<SlashMenuItem[]>;
|
|
5233
5241
|
options: {
|
|
@@ -5857,7 +5865,7 @@ declare module "components/stat/index" {
|
|
|
5857
5865
|
}
|
|
5858
5866
|
}
|
|
5859
5867
|
declare module "components/scroll-container/scroll-container.component" {
|
|
5860
|
-
import { type CSSResultGroup, PropertyValues } from 'lit';
|
|
5868
|
+
import { type CSSResultGroup, type PropertyValues } from 'lit';
|
|
5861
5869
|
import ZincElement from "internal/zinc-element";
|
|
5862
5870
|
/**
|
|
5863
5871
|
* @summary Short summary of the component's intended use.
|
|
@@ -5881,8 +5889,12 @@ declare module "components/scroll-container/scroll-container.component" {
|
|
|
5881
5889
|
startScrolled: boolean;
|
|
5882
5890
|
private container;
|
|
5883
5891
|
private footer;
|
|
5892
|
+
private _footerObserved;
|
|
5893
|
+
private _footerHeightFrame;
|
|
5884
5894
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
5895
|
+
disconnectedCallback(): void;
|
|
5885
5896
|
scrollEnd(): void;
|
|
5897
|
+
private _syncFooterHeight;
|
|
5886
5898
|
private readonly _footerResizeObserver;
|
|
5887
5899
|
private readonly _domObserver;
|
|
5888
5900
|
connectedCallback(): void;
|
|
@@ -6669,6 +6681,8 @@ declare module "components/textarea/textarea.component" {
|
|
|
6669
6681
|
slashTrigger: string;
|
|
6670
6682
|
/** The heading shown above the slash menu's items. */
|
|
6671
6683
|
slashHeading: string;
|
|
6684
|
+
/** Hides the insertion keys normally shown against the slash menu's items. */
|
|
6685
|
+
slashHideKeys: boolean;
|
|
6672
6686
|
/**
|
|
6673
6687
|
* Resolves additional items each time the menu opens, for lists that come from elsewhere (e.g. an
|
|
6674
6688
|
* API). Receives the current query and may return a promise. JavaScript only.
|
|
@@ -8707,6 +8721,8 @@ declare module "components/translations/translations.component" {
|
|
|
8707
8721
|
slashTrigger: string;
|
|
8708
8722
|
/** The heading shown above the slash menu's items. */
|
|
8709
8723
|
slashHeading: string;
|
|
8724
|
+
/** Hides the insertion keys normally shown against the slash menu's items. */
|
|
8725
|
+
slashHideKeys: boolean;
|
|
8710
8726
|
/** Resolves additional slash menu items each time the menu opens. JavaScript only. */
|
|
8711
8727
|
slashItemsProvider?: (query: string) => SlashMenuItem[] | Promise<SlashMenuItem[]>;
|
|
8712
8728
|
/** When true, hides the individual language navbar and defers language control to a parent zn-translation-group. */
|