@kubex/zinc 1.1.146 → 1.1.148
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/chunks/zn.ESPCJQBM.js +4 -0
- package/dist/custom-elements.json +23 -2
- package/dist/vscode.html-custom-data.json +2 -1
- package/dist/web-types.json +117 -112
- package/dist/zn.d.ts +2 -0
- package/dist/zn.min.js +323 -318
- package/package.json +1 -1
- package/src/components/confirm/confirm.component.ts +12 -6
- package/src/components/confirm/confirm.test.ts +14 -3
- package/src/components/remarkd-editor/remarkd-editor.component.ts +1 -0
- package/src/components/remarkd-editor/remarkd-editor.scss +2 -2
- package/dist/chunks/zn.SBAUMVLL.js +0 -4
package/dist/zn.d.ts
CHANGED
|
@@ -877,6 +877,7 @@ declare module "components/confirm/confirm.component" {
|
|
|
877
877
|
content: string;
|
|
878
878
|
confirmText: string;
|
|
879
879
|
cancelText: string;
|
|
880
|
+
closeText: string;
|
|
880
881
|
hideIcon: boolean;
|
|
881
882
|
/**
|
|
882
883
|
* Show a loading state when the dialog is submitted.
|
|
@@ -9321,6 +9322,7 @@ declare module "components/remarkd-editor/remarkd-editor.component" {
|
|
|
9321
9322
|
* @csspart include-picker - The inline Include picker opened from the toolbar or "/include".
|
|
9322
9323
|
*
|
|
9323
9324
|
* @cssproperty --remarkd-editor-max-height - The tallest the editor grows before its body scrolls. Defaults to `100dvh`.
|
|
9325
|
+
* @cssproperty --remarkd-editor-min-height - The shortest the body renders while empty. Defaults to `10rem`.
|
|
9324
9326
|
*/
|
|
9325
9327
|
export default class ZnRemarkdEditor extends ZincElement implements ZincFormControl {
|
|
9326
9328
|
static styles: CSSResultGroup;
|