@semantic-components/ui 0.13.0 → 0.14.0
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/fesm2022/semantic-components-ui.mjs +2920 -2707
- package/fesm2022/semantic-components-ui.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/components/calendar/calendar.d.ts +1 -1
- package/lib/components/editor/actions/editor-blockquote.d.ts +11 -0
- package/lib/components/editor/actions/editor-bold.d.ts +11 -0
- package/lib/components/editor/actions/editor-bullet-list.d.ts +12 -0
- package/lib/components/editor/actions/editor-code.d.ts +12 -0
- package/lib/components/editor/actions/editor-highlight.d.ts +12 -0
- package/lib/components/editor/actions/editor-horizontal-rule.d.ts +12 -0
- package/lib/components/editor/actions/editor-italic.d.ts +12 -0
- package/lib/components/editor/actions/editor-ordered-list.d.ts +12 -0
- package/lib/components/editor/actions/editor-paragraph.d.ts +8 -0
- package/lib/components/editor/actions/editor-strike.d.ts +12 -0
- package/lib/components/editor/actions/editor-underline.d.ts +12 -0
- package/lib/components/editor/extensions/extension-image.d.ts +1 -0
- package/lib/components/input-otp/input-otp.d.ts +1 -1
- package/lib/components/re-captcha/index.d.ts +2 -0
- package/lib/components/re-captcha/re-captcha-v2.d.ts +26 -0
- package/lib/components/re-captcha/re-captcha-v3.d.ts +13 -0
- package/lib/components/tel-input/tel-input.component.d.ts +1 -1
- package/package.json +2 -2
- package/lib/components/editor/extensions/extension-blockquote.d.ts +0 -12
- package/lib/components/editor/extensions/extension-bold.d.ts +0 -12
- package/lib/components/editor/extensions/extension-bullet-list.d.ts +0 -12
- package/lib/components/editor/extensions/extension-code.d.ts +0 -12
- package/lib/components/editor/extensions/extension-highlight.d.ts +0 -12
- package/lib/components/editor/extensions/extension-horizontal-rule.d.ts +0 -12
- package/lib/components/editor/extensions/extension-italic.d.ts +0 -12
- package/lib/components/editor/extensions/extension-ordered-list.d.ts +0 -12
- package/lib/components/editor/extensions/extension-paragraph.d.ts +0 -8
- package/lib/components/editor/extensions/extension-strike.d.ts +0 -12
- package/lib/components/editor/extensions/extension-underline.d.ts +0 -12
package/index.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare class ScCalendar implements OnInit, ControlValueAccessor {
|
|
|
21
21
|
writeValue(value: string): void;
|
|
22
22
|
registerOnChange(fn: (value: string) => void): void;
|
|
23
23
|
registerOnTouched(fn: () => void): void;
|
|
24
|
-
private readonly
|
|
24
|
+
private readonly disabledByCva;
|
|
25
25
|
setDisabledState?(isDisabled: boolean): void;
|
|
26
26
|
ngOnInit(): void;
|
|
27
27
|
private setLocaleDayNames;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ScEditorBlockquote {
|
|
3
|
+
readonly ariaLabel: import("@angular/core").InputSignal<string>;
|
|
4
|
+
private readonly parent;
|
|
5
|
+
private readonly extensions;
|
|
6
|
+
constructor();
|
|
7
|
+
private get editor();
|
|
8
|
+
protected toggleBlockquote(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorBlockquote, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorBlockquote, "sc-editor-blockquote", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ScEditorBold {
|
|
3
|
+
readonly ariaLabel: import("@angular/core").InputSignal<string>;
|
|
4
|
+
private readonly parent;
|
|
5
|
+
private readonly extensions;
|
|
6
|
+
constructor();
|
|
7
|
+
private get editor();
|
|
8
|
+
protected toggleBold(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorBold, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorBold, "sc-editor-bold", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ScExtensions } from '../extensions/extensions';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScEditorBulletList {
|
|
4
|
+
ariaLabel: string;
|
|
5
|
+
private readonly parent;
|
|
6
|
+
extensions: ScExtensions;
|
|
7
|
+
constructor();
|
|
8
|
+
get editor(): import("@tiptap/core").Editor;
|
|
9
|
+
toggleBulletList(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorBulletList, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorBulletList, "sc-editor-bullet-list", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ScExtensions } from '../extensions/extensions';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScEditorCode {
|
|
4
|
+
ariaLabel: string;
|
|
5
|
+
private readonly parent;
|
|
6
|
+
extensions: ScExtensions;
|
|
7
|
+
constructor();
|
|
8
|
+
get editor(): import("@tiptap/core").Editor;
|
|
9
|
+
toggleCode(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorCode, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorCode, "sc-editor-code", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ScExtensions } from '../extensions/extensions';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScEditorHighlight {
|
|
4
|
+
ariaLabel: string;
|
|
5
|
+
private readonly parent;
|
|
6
|
+
extensions: ScExtensions;
|
|
7
|
+
constructor();
|
|
8
|
+
get editor(): import("@tiptap/core").Editor;
|
|
9
|
+
toggleHighlight(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorHighlight, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorHighlight, "sc-editor-highlight", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ScExtensions } from '../extensions/extensions';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScEditorHorizontalRule {
|
|
4
|
+
ariaLabel: string;
|
|
5
|
+
private readonly parent;
|
|
6
|
+
extensions: ScExtensions;
|
|
7
|
+
constructor();
|
|
8
|
+
get editor(): import("@tiptap/core").Editor;
|
|
9
|
+
setHorizontalRule(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorHorizontalRule, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorHorizontalRule, "sc-editor-horizontal-rule", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ScExtensions } from '../extensions/extensions';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScEditorItalic {
|
|
4
|
+
ariaLabel: string;
|
|
5
|
+
private readonly parent;
|
|
6
|
+
extensions: ScExtensions;
|
|
7
|
+
constructor();
|
|
8
|
+
get editor(): import("@tiptap/core").Editor;
|
|
9
|
+
toggleItalic(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorItalic, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorItalic, "sc-editor-italic", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ScExtensions } from '../extensions/extensions';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScEditorOrderedList {
|
|
4
|
+
ariaLabel: string;
|
|
5
|
+
private readonly parent;
|
|
6
|
+
extensions: ScExtensions;
|
|
7
|
+
constructor();
|
|
8
|
+
get editor(): import("@tiptap/core").Editor;
|
|
9
|
+
toggleOrderedList(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorOrderedList, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorOrderedList, "sc-editor-ordered-list", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ScEditorParagraph {
|
|
3
|
+
private readonly parent;
|
|
4
|
+
get editor(): import("@tiptap/core").Editor;
|
|
5
|
+
setParagraph(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorParagraph, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorParagraph, "sc-editor-paragraph", never, {}, {}, never, never, true, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ScExtensions } from '../extensions/extensions';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScEditorStrike {
|
|
4
|
+
ariaLabel: string;
|
|
5
|
+
private readonly parent;
|
|
6
|
+
extensions: ScExtensions;
|
|
7
|
+
constructor();
|
|
8
|
+
get editor(): import("@tiptap/core").Editor;
|
|
9
|
+
toggleStrike(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorStrike, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorStrike, "sc-editor-strike", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ScExtensions } from '../extensions/extensions';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ScEditorUnderline {
|
|
4
|
+
ariaLabel: string;
|
|
5
|
+
private readonly parent;
|
|
6
|
+
extensions: ScExtensions;
|
|
7
|
+
constructor();
|
|
8
|
+
get editor(): import("@tiptap/core").Editor;
|
|
9
|
+
toggleUnderline(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScEditorUnderline, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScEditorUnderline, "sc-editor-underline", never, {}, {}, never, never, true, never>;
|
|
12
|
+
}
|
|
@@ -3,6 +3,7 @@ import { ImageData } from '../toolbar/add-image-dialog';
|
|
|
3
3
|
import { ScExtensions } from './extensions';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ScExtensionImage {
|
|
6
|
+
ariaLabel: string;
|
|
6
7
|
private readonly parent;
|
|
7
8
|
dialog: Dialog;
|
|
8
9
|
extensions: ScExtensions;
|
|
@@ -20,7 +20,7 @@ export declare class ScInputOtp implements ControlValueAccessor, OnDestroy {
|
|
|
20
20
|
private _updateValue;
|
|
21
21
|
readonly _value: import("@angular/core").ModelSignal<string | null>;
|
|
22
22
|
readonly _disabledByInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
23
|
-
private readonly
|
|
23
|
+
private readonly disabledByCva;
|
|
24
24
|
private readonly _disabled;
|
|
25
25
|
onChange: (_: any) => void;
|
|
26
26
|
onTouched: () => void;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ScReCaptchaV2 implements OnInit, ControlValueAccessor {
|
|
5
|
+
private readonly document;
|
|
6
|
+
private readonly changeDetectorRef;
|
|
7
|
+
readonly siteKey: import("@angular/core").InputSignal<string>;
|
|
8
|
+
readonly theme: import("@angular/core").InputSignal<"light" | "dark">;
|
|
9
|
+
readonly size: import("@angular/core").InputSignal<"normal" | "compact">;
|
|
10
|
+
readonly tabindex: import("@angular/core").InputSignal<string>;
|
|
11
|
+
readonly languageCode: import("@angular/core").InputSignal<string>;
|
|
12
|
+
private readonly value;
|
|
13
|
+
private readonly disabledByCva;
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
private addScript;
|
|
16
|
+
private registerReCaptchaCallbacks;
|
|
17
|
+
setValue(newValue: string | null): void;
|
|
18
|
+
writeValue(obj: any): void;
|
|
19
|
+
onChange: any;
|
|
20
|
+
onTouch: any;
|
|
21
|
+
registerOnChange(fn: any): void;
|
|
22
|
+
registerOnTouched(fn: any): void;
|
|
23
|
+
setDisabledState(isDisabled: boolean): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScReCaptchaV2, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScReCaptchaV2, "sc-re-captcha-v2", never, { "siteKey": { "alias": "siteKey"; "required": true; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "tabindex": { "alias": "tabindex"; "required": false; "isSignal": true; }; "languageCode": { "alias": "languageCode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const RE_CAPTCHA_V3_SITE_KEY: InjectionToken<string>;
|
|
5
|
+
export declare class ScReCaptchaV3 {
|
|
6
|
+
private readonly siteKey;
|
|
7
|
+
private readonly document;
|
|
8
|
+
constructor(siteKey: string);
|
|
9
|
+
private addScript;
|
|
10
|
+
execute(actionName: string): Observable<string>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScReCaptchaV3, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ScReCaptchaV3>;
|
|
13
|
+
}
|
|
@@ -35,7 +35,7 @@ export declare class TelInputComponent implements ControlValueAccessor, DoCheck,
|
|
|
35
35
|
onTouched: () => void;
|
|
36
36
|
getLabelId(): string;
|
|
37
37
|
private readonly _focused;
|
|
38
|
-
private readonly
|
|
38
|
+
private readonly disabledByCva;
|
|
39
39
|
private readonly _disabled;
|
|
40
40
|
private readonly _focusMonitor;
|
|
41
41
|
private readonly _elementRef;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semantic-components/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"class-variance-authority": "^0.7.1",
|
|
43
43
|
"embla-carousel": "^8.5.1",
|
|
44
44
|
"rxjs": "~7.8.1",
|
|
45
|
-
"@semantic-components/utils": "0.
|
|
45
|
+
"@semantic-components/utils": "0.2.0",
|
|
46
46
|
"@semantic-components/supabase": ">=0.0.1"
|
|
47
47
|
},
|
|
48
48
|
"sideEffects": false,
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionBlockquote {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
toggleBlockquote(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionBlockquote, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionBlockquote, "sc-extension-blockquote", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionBold {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
toggleBold(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionBold, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionBold, "sc-extension-bold", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionBulletList {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
toggleBulletList(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionBulletList, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionBulletList, "sc-extension-bullet-list", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionCode {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
toggleCode(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionCode, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionCode, "sc-extension-code", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionHighlight {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
toggleHighlight(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionHighlight, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionHighlight, "sc-extension-highlight", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionHorizontalRule {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
setHorizontalRule(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionHorizontalRule, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionHorizontalRule, "sc-extension-horizontal-rule", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionItalic {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
toggleItalic(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionItalic, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionItalic, "sc-extension-italic", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionOrderedList {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
toggleOrderedList(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionOrderedList, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionOrderedList, "sc-extension-ordered-list", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ScExtensionParagraph {
|
|
3
|
-
private readonly parent;
|
|
4
|
-
get editor(): import("@tiptap/core").Editor;
|
|
5
|
-
setParagraph(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionParagraph, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionParagraph, "sc-extension-paragraph", never, {}, {}, never, never, true, never>;
|
|
8
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionStrike {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
toggleStrike(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionStrike, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionStrike, "sc-extension-strike", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ScExtensions } from './extensions';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ScExtensionUnderline {
|
|
4
|
-
ariaLabel: string;
|
|
5
|
-
private readonly parent;
|
|
6
|
-
extensions: ScExtensions;
|
|
7
|
-
constructor();
|
|
8
|
-
get editor(): import("@tiptap/core").Editor;
|
|
9
|
-
toggleUnderline(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScExtensionUnderline, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScExtensionUnderline, "sc-extension-underline", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|