@semantic-components/ui 0.13.0 → 0.15.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 +8592 -8121
- package/fesm2022/semantic-components-ui.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/lib/components/alert/alert-description.d.ts +3 -3
- package/lib/components/alert/alert-title.d.ts +3 -3
- package/lib/components/alert/alert.d.ts +4 -4
- package/lib/components/alert-dialog/alert-dialog-description.d.ts +5 -5
- package/lib/components/alert-dialog/alert-dialog-footer.d.ts +3 -3
- package/lib/components/alert-dialog/alert-dialog-header.d.ts +3 -3
- package/lib/components/alert-dialog/alert-dialog-title.d.ts +3 -3
- package/lib/components/alert-dialog/alert-dialog-trigger.d.ts +8 -0
- package/lib/components/alert-dialog/alert-dialog.d.ts +6 -2
- package/lib/components/alert-dialog/index.d.ts +1 -1
- package/lib/components/calendar/calendar.d.ts +1 -1
- package/lib/components/carousel/carousel-container.d.ts +3 -3
- package/lib/components/carousel/carousel-item.d.ts +4 -5
- package/lib/components/carousel/carousel-items.d.ts +4 -5
- package/lib/components/carousel/carousel-next.d.ts +8 -9
- package/lib/components/carousel/carousel-previous.d.ts +8 -9
- package/lib/components/carousel/carousel.d.ts +11 -12
- package/lib/components/checkbox/checkbox.d.ts +27 -20
- package/lib/components/checkbox-group/checkbox-group.d.ts +10 -0
- package/lib/components/checkbox-group/checkbox-item.d.ts +19 -0
- package/lib/components/checkbox-group/index.d.ts +2 -0
- package/lib/components/confirmation-dialog/confirmation-dialog-content.d.ts +12 -0
- package/lib/components/confirmation-dialog/confirmation-dialog-description.d.ts +7 -0
- package/lib/components/confirmation-dialog/confirmation-dialog-footer.d.ts +7 -0
- package/lib/components/confirmation-dialog/confirmation-dialog-header.d.ts +7 -0
- package/lib/components/confirmation-dialog/confirmation-dialog-title.d.ts +7 -0
- package/lib/components/confirmation-dialog/confirmation-dialog.d.ts +8 -0
- package/lib/components/confirmation-dialog/index.d.ts +1 -0
- 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/hover-card/hover-card.d.ts +4 -4
- package/lib/components/input-otp/input-otp.d.ts +3 -3
- package/lib/components/label/label.d.ts +3 -3
- package/lib/components/radio-group/radio-group.d.ts +9 -11
- package/lib/components/radio-group/radio-item.d.ts +10 -10
- package/lib/components/select/option.d.ts +8 -10
- package/lib/components/select/select.d.ts +18 -20
- package/lib/components/separator/separator.d.ts +4 -4
- package/lib/components/table/table-body.d.ts +3 -3
- package/lib/components/table/table-caption.d.ts +3 -3
- package/lib/components/table/table-cell.d.ts +3 -3
- package/lib/components/table/table-container.d.ts +3 -3
- package/lib/components/table/table-footer.d.ts +3 -3
- package/lib/components/table/table-head.d.ts +3 -3
- package/lib/components/table/table-header.d.ts +3 -3
- package/lib/components/table/table-row.d.ts +3 -3
- package/lib/components/table/table.d.ts +3 -3
- package/lib/components/tabs/tabs-header.d.ts +7 -0
- package/lib/components/tabs/tabs.d.ts +4 -5
- package/lib/components/tel-input/tel-input.component.d.ts +1 -1
- package/lib/components/tooltip/tooltip-container.d.ts +6 -2
- package/lib/components/tooltip/tooltip.d.ts +5 -4
- package/package.json +3 -3
- package/lib/components/alert-dialog/alert-dialog-content.d.ts +0 -7
- 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/lib/components/radio-group/radio-group-state.d.ts +0 -8
- package/lib/components/select/select-state.d.ts +0 -7
|
@@ -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;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ScHoverCard {
|
|
4
|
-
templateRef: import("@angular/core").
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
readonly templateRef: import("@angular/core").InputSignal<TemplateRef<unknown> | null>;
|
|
5
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
6
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScHoverCard, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScHoverCard, "sc-hover-card", never, { "
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScHoverCard, "sc-hover-card", never, { "templateRef": { "alias": "templateRef"; "required": false; "isSignal": true; }; "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -19,8 +19,8 @@ export declare class ScInputOtp implements ControlValueAccessor, OnDestroy {
|
|
|
19
19
|
constructor();
|
|
20
20
|
private _updateValue;
|
|
21
21
|
readonly _value: import("@angular/core").ModelSignal<string | null>;
|
|
22
|
-
readonly
|
|
23
|
-
private readonly
|
|
22
|
+
readonly disabledByInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
23
|
+
private readonly disabledByCva;
|
|
24
24
|
private readonly _disabled;
|
|
25
25
|
onChange: (_: any) => void;
|
|
26
26
|
onTouched: () => void;
|
|
@@ -32,5 +32,5 @@ export declare class ScInputOtp implements ControlValueAccessor, OnDestroy {
|
|
|
32
32
|
readonly stateChanges: Subject<void>;
|
|
33
33
|
ngOnDestroy(): void;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScInputOtp, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScInputOtp, "sc-input-otp", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "_required": { "alias": "required"; "required": false; "isSignal": true; }; "_value": { "alias": "value"; "required": false; "isSignal": true; }; "
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScInputOtp, "sc-input-otp", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "_required": { "alias": "required"; "required": false; "isSignal": true; }; "_value": { "alias": "value"; "required": false; "isSignal": true; }; "disabledByInput": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "_value": "valueChange"; }, ["slots"], ["*"], true, never>;
|
|
36
36
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScLabel {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScLabel, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScLabel, "label[sc-label]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScLabel, "label[sc-label]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,22 +1,20 @@
|
|
|
1
1
|
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
-
import { ScRadioGroupState } from './radio-group-state';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class ScRadioGroup implements ControlValueAccessor {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class: import("@angular/core").
|
|
8
|
-
|
|
9
|
-
disabled: import("@angular/core").
|
|
10
|
-
name: import("@angular/core").InputSignal<string>;
|
|
11
|
-
value: import("@angular/core").ModelSignal<string | undefined>;
|
|
12
|
-
constructor();
|
|
4
|
+
private readonly changeDetectorRef;
|
|
5
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
6
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
7
|
+
readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
8
|
+
readonly disabled: import("@angular/core").WritableSignal<boolean>;
|
|
9
|
+
readonly name: import("@angular/core").InputSignal<string>;
|
|
10
|
+
readonly value: import("@angular/core").ModelSignal<string | undefined>;
|
|
13
11
|
setValue(newValue: string): void;
|
|
14
12
|
writeValue(value: string): void;
|
|
15
13
|
onChange: any;
|
|
16
14
|
onTouch: any;
|
|
17
15
|
registerOnChange(fn: any): void;
|
|
18
16
|
registerOnTouched(fn: any): void;
|
|
19
|
-
setDisabledState
|
|
17
|
+
setDisabledState(isDisabled: boolean): void;
|
|
20
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScRadioGroup, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScRadioGroup, "sc-radio-group", never, { "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScRadioGroup, "sc-radio-group", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, ["*"], true, never>;
|
|
22
20
|
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScRadioItem {
|
|
3
|
-
private readonly state;
|
|
4
3
|
protected readonly id: import("@angular/core").WritableSignal<string>;
|
|
4
|
+
private readonly scRadioGroup;
|
|
5
5
|
protected readonly name: import("@angular/core").Signal<string>;
|
|
6
6
|
readonly value: import("@angular/core").InputSignal<string>;
|
|
7
7
|
protected readonly checked: import("@angular/core").Signal<boolean>;
|
|
8
|
-
readonly
|
|
8
|
+
readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
9
9
|
readonly disabled: import("@angular/core").Signal<boolean>;
|
|
10
|
-
readonly
|
|
11
|
-
protected readonly
|
|
12
|
-
readonly
|
|
13
|
-
protected readonly
|
|
10
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
11
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
12
|
+
readonly inputClassInput: import("@angular/core").InputSignal<string>;
|
|
13
|
+
protected readonly inputClass: import("@angular/core").Signal<string>;
|
|
14
14
|
protected readonly svgWrapperClass: import("@angular/core").InputSignal<string>;
|
|
15
|
-
readonly
|
|
16
|
-
protected readonly
|
|
17
|
-
|
|
15
|
+
readonly svgClassInput: import("@angular/core").InputSignal<string>;
|
|
16
|
+
protected readonly svgClass: import("@angular/core").Signal<string>;
|
|
17
|
+
protected select(): void;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScRadioItem, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScRadioItem, "sc-radio-item", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScRadioItem, "sc-radio-item", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "inputClassInput": { "alias": "inputClassInput"; "required": false; "isSignal": true; }; "svgWrapperClass": { "alias": "svgWrapperClass"; "required": false; "isSignal": true; }; "svgClassInput": { "alias": "svgClassInput"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
20
20
|
}
|
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
import { Highlightable } from '@angular/cdk/a11y';
|
|
2
|
-
import { ElementRef } from '@angular/core';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class ScOption implements Highlightable {
|
|
5
|
-
private readonly state;
|
|
6
|
-
/** The unique ID of the option. */
|
|
7
4
|
readonly id: import("@angular/core").WritableSignal<string>;
|
|
8
5
|
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
9
6
|
protected readonly class: import("@angular/core").Signal<string>;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
private readonly scSelect;
|
|
8
|
+
protected isSelected: import("@angular/core").Signal<boolean>;
|
|
9
|
+
readonly value: import("@angular/core").InputSignal<unknown>;
|
|
10
|
+
private readonly labelEl;
|
|
11
|
+
readonly label: import("@angular/core").Signal<string>;
|
|
14
12
|
private readonly element;
|
|
15
13
|
/** Gets the host DOM element. */
|
|
16
14
|
getHostElement(): HTMLElement;
|
|
@@ -19,11 +17,11 @@ export declare class ScOption implements Highlightable {
|
|
|
19
17
|
setInactiveStyles(): void;
|
|
20
18
|
disabled: boolean | undefined;
|
|
21
19
|
getLabel(): string;
|
|
22
|
-
readonly
|
|
23
|
-
readonly _disabled: import("@angular/core").Signal<boolean>;
|
|
20
|
+
readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
21
|
+
protected readonly _disabled: import("@angular/core").Signal<boolean>;
|
|
24
22
|
protected toggle(): void;
|
|
25
23
|
private select;
|
|
26
24
|
private deselect;
|
|
27
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScOption, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScOption, "sc-option", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScOption, "sc-option", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
29
27
|
}
|
|
@@ -1,23 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Overlay } from '@angular/cdk/overlay';
|
|
3
|
-
import { ElementRef, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, TemplateRef } from '@angular/core';
|
|
4
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
5
3
|
import { ScOption } from './option';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare class ScSelect implements ControlValueAccessor {
|
|
8
|
-
private readonly
|
|
6
|
+
private readonly changeDetectorRef;
|
|
7
|
+
private readonly overlay;
|
|
8
|
+
private readonly directionality;
|
|
9
|
+
private readonly viewContainerRef;
|
|
10
|
+
private portal;
|
|
11
|
+
readonly scSelectTrigger: import("@angular/core").Signal<ElementRef<HTMLButtonElement>>;
|
|
9
12
|
protected readonly panelId: string;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
private _portal;
|
|
15
|
-
scSelectTrigger: import("@angular/core").Signal<ElementRef<HTMLButtonElement>>;
|
|
16
|
-
_panelTemplate: import("@angular/core").Signal<TemplateRef<unknown>>;
|
|
17
|
-
placeholder: import("@angular/core").InputSignal<string>;
|
|
18
|
-
isOpen: import("@angular/core").WritableSignal<boolean>;
|
|
19
|
-
options: import("@angular/core").Signal<readonly ScOption[]>;
|
|
13
|
+
readonly panelTemplate: import("@angular/core").Signal<TemplateRef<unknown>>;
|
|
14
|
+
readonly placeholder: import("@angular/core").InputSignal<string>;
|
|
15
|
+
readonly isOpen: import("@angular/core").WritableSignal<boolean>;
|
|
16
|
+
readonly options: import("@angular/core").Signal<readonly ScOption[]>;
|
|
20
17
|
private readonly activeDescendant;
|
|
18
|
+
readonly disabledInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
19
|
+
readonly disabled: import("@angular/core").WritableSignal<boolean>;
|
|
21
20
|
constructor();
|
|
22
21
|
/**
|
|
23
22
|
* Scrolls an option into view.
|
|
@@ -28,16 +27,15 @@ export declare class ScSelect implements ControlValueAccessor {
|
|
|
28
27
|
private readonly injector;
|
|
29
28
|
private readonly keyManager;
|
|
30
29
|
readonly value: import("@angular/core").ModelSignal<unknown>;
|
|
31
|
-
isDisabled: import("@angular/core").WritableSignal<boolean>;
|
|
32
30
|
writeValue(value: unknown): void;
|
|
33
31
|
setValue(value: unknown): void;
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
onChange: (value: unknown) => void;
|
|
33
|
+
onTouched: () => void;
|
|
36
34
|
registerOnChange(fn: (value: unknown) => void): void;
|
|
37
35
|
registerOnTouched(fn: () => void): void;
|
|
38
|
-
setDisabledState
|
|
36
|
+
setDisabledState(isDisabled: boolean): void;
|
|
39
37
|
label: import("@angular/core").Signal<string | undefined>;
|
|
40
|
-
|
|
38
|
+
isExpanded: import("@angular/core").Signal<boolean>;
|
|
41
39
|
private _overlayRef;
|
|
42
40
|
private _getOverlayRef;
|
|
43
41
|
open(): void;
|
|
@@ -53,5 +51,5 @@ export declare class ScSelect implements ControlValueAccessor {
|
|
|
53
51
|
/** Handles keyboard events while the overlay is open. */
|
|
54
52
|
private _handleKeydown;
|
|
55
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScSelect, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScSelect, "sc-select", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, ["options"], ["*"], true, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScSelect, "sc-select", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, ["options"], ["*"], true, never>;
|
|
57
55
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScSeparator {
|
|
3
|
-
orientation: import("@angular/core").InputSignal<"horizontal" | "vertical">;
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
readonly orientation: import("@angular/core").InputSignal<"horizontal" | "vertical">;
|
|
4
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
5
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScSeparator, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScSeparator, "sc-separator", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScSeparator, "sc-separator", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
8
8
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTableBody {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTableBody, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableBody, "tbody[sc-table-body]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableBody, "tbody[sc-table-body]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTableCaption {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTableCaption, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableCaption, "caption[sc-table-caption]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableCaption, "caption[sc-table-caption]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTableCell {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTableCell, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableCell, "td[sc-table-cell]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableCell, "td[sc-table-cell]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTableContainer {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTableContainer, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableContainer, "div[sc-table-container]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableContainer, "div[sc-table-container]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTableFooter {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTableFooter, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableFooter, "tfoot[sc-table-footer]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableFooter, "tfoot[sc-table-footer]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTableHead {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTableHead, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableHead, "th[sc-table-head]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableHead, "th[sc-table-head]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTableHeader {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTableHeader, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableHeader, "thead[sc-table-header]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableHeader, "thead[sc-table-header]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTableRow {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTableRow, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableRow, "tr[sc-table-row]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTableRow, "tr[sc-table-row]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTable {
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTable, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTable, "table[sc-table]", never, { "
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTable, "table[sc-table]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
7
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ScTabsHeader {
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScTabsHeader, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTabsHeader, "div[sc-tabs-header]", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
|
+
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { ScTab } from './tab';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class ScTabs {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
labelsHostClasses: import("@angular/core").Signal<string>;
|
|
4
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
5
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
6
|
+
readonly tabsHeaderClass: import("@angular/core").InputSignal<string>;
|
|
8
7
|
readonly tabs: import("@angular/core").Signal<readonly ScTab[]>;
|
|
9
8
|
constructor();
|
|
10
9
|
selectTab(tab: ScTab): void;
|
|
11
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTabs, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTabs, "sc-tabs", never, { "
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTabs, "sc-tabs", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "tabsHeaderClass": { "alias": "tabsHeaderClass"; "required": false; "isSignal": true; }; }, {}, ["tabs"], ["*"], true, never>;
|
|
13
12
|
}
|
|
@@ -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;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ScTooltipContainer {
|
|
3
|
-
|
|
3
|
+
readonly classInput: import("@angular/core").InputSignal<string>;
|
|
4
|
+
protected readonly class: import("@angular/core").Signal<string>;
|
|
5
|
+
readonly message: import("@angular/core").InputSignal<string>;
|
|
6
|
+
readonly position: import("@angular/core").InputSignal<"left" | "right" | "above" | "below">;
|
|
7
|
+
readonly state: import("@angular/core").InputSignal<"open" | "closed">;
|
|
4
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScTooltipContainer, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScTooltipContainer, "sc-tooltip-container", never, { "message": { "alias": "message"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ScTooltipContainer, "sc-tooltip-container", never, { "classInput": { "alias": "class"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": true; "isSignal": true; }; "position": { "alias": "position"; "required": true; "isSignal": true; }; "state": { "alias": "state"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6
10
|
}
|
|
@@ -5,12 +5,13 @@ export declare class ScTooltip implements OnInit, OnDestroy {
|
|
|
5
5
|
private readonly elementRef;
|
|
6
6
|
private readonly overlay;
|
|
7
7
|
private overlayRef;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
private tooltipRef;
|
|
9
|
+
readonly message: import("@angular/core").InputSignal<string>;
|
|
10
|
+
readonly position: import("@angular/core").InputSignal<"left" | "right" | "above" | "below">;
|
|
10
11
|
ngOnInit(): void;
|
|
11
12
|
ngOnDestroy(): void;
|
|
12
|
-
showTooltip(): void;
|
|
13
|
-
hideTooltip(): void;
|
|
13
|
+
protected showTooltip(): void;
|
|
14
|
+
protected hideTooltip(): void;
|
|
14
15
|
private attachTooltip;
|
|
15
16
|
private getPositionStrategy;
|
|
16
17
|
getPositions(): ConnectedPosition[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semantic-components/ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
"@angular/cdk": ">=19.0.0",
|
|
12
12
|
"@angular/forms": ">=19.0.0",
|
|
13
13
|
"@tiptap/core": "^2.10.3",
|
|
14
|
-
"@semantic-icons/lucide-icons": ">=0.10.0",
|
|
15
14
|
"@tiptap/extension-blockquote": "^2.10.3",
|
|
16
15
|
"@tiptap/extension-bold": "^2.10.3",
|
|
17
16
|
"@tiptap/extension-bullet-list": "^2.10.3",
|
|
@@ -42,7 +41,8 @@
|
|
|
42
41
|
"class-variance-authority": "^0.7.1",
|
|
43
42
|
"embla-carousel": "^8.5.1",
|
|
44
43
|
"rxjs": "~7.8.1",
|
|
45
|
-
"@semantic-
|
|
44
|
+
"@semantic-icons/lucide-icons": ">=0.0.1",
|
|
45
|
+
"@semantic-components/utils": ">=0.0.1",
|
|
46
46
|
"@semantic-components/supabase": ">=0.0.1"
|
|
47
47
|
},
|
|
48
48
|
"sideEffects": false,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ScAlertDialogContent {
|
|
3
|
-
class: import("@angular/core").InputSignal<string>;
|
|
4
|
-
classes: import("@angular/core").Signal<string>;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScAlertDialogContent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ScAlertDialogContent, "div[sc-alert-dialog-content]", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7
|
-
}
|
|
@@ -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
|
-
}
|