@semantic-components/ui 0.14.0 → 0.16.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 +1395 -1137
- package/fesm2022/semantic-components-ui.mjs.map +1 -1
- package/index.d.ts +2 -1
- 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/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/hover-card/hover-card.d.ts +4 -4
- package/lib/components/input-otp/input-otp.d.ts +2 -2
- 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/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/radio-group/radio-group-state.d.ts +0 -8
- package/lib/components/re-captcha/index.d.ts +0 -2
- package/lib/components/re-captcha/re-captcha-v2.d.ts +0 -26
- package/lib/components/re-captcha/re-captcha-v3.d.ts +0 -13
- package/lib/components/select/select-state.d.ts +0 -7
|
@@ -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
|
}
|
|
@@ -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.16.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,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ScRadioGroupState {
|
|
3
|
-
selectedValue: import("@angular/core").WritableSignal<string | undefined>;
|
|
4
|
-
disabled: import("@angular/core").WritableSignal<boolean>;
|
|
5
|
-
name: import("@angular/core").WritableSignal<string>;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScRadioGroupState, never>;
|
|
7
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ScRadioGroupState>;
|
|
8
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class ScSelectState {
|
|
3
|
-
value: import("@angular/core").WritableSignal<unknown>;
|
|
4
|
-
disabled: import("@angular/core").WritableSignal<boolean>;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScSelectState, never>;
|
|
6
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ScSelectState>;
|
|
7
|
-
}
|