@ship-ui/core 0.17.10 → 0.17.12
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/package.json
CHANGED
package/types/ship-ui-core.d.ts
CHANGED
|
@@ -834,14 +834,15 @@ declare class ShipThemeToggle {
|
|
|
834
834
|
}
|
|
835
835
|
|
|
836
836
|
declare class ShipToggleCard {
|
|
837
|
-
|
|
837
|
+
#private;
|
|
838
838
|
disableToggle: _angular_core.InputSignal<boolean>;
|
|
839
|
+
isActive: _angular_core.ModelSignal<boolean | undefined>;
|
|
839
840
|
color: _angular_core.InputSignal<ShipColor | null>;
|
|
840
841
|
variant: _angular_core.InputSignal<ShipCardVariant | null>;
|
|
841
842
|
hostClasses: _angular_core.Signal<string>;
|
|
842
843
|
toggle(): void;
|
|
843
844
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShipToggleCard, never>;
|
|
844
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShipToggleCard, "sh-toggle-card", never, { "
|
|
845
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShipToggleCard, "sh-toggle-card", never, { "disableToggle": { "alias": "disableToggle"; "required": false; "isSignal": true; }; "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, { "isActive": "isActiveChange"; }, never, ["[title]", "*"], true, never>;
|
|
845
846
|
}
|
|
846
847
|
|
|
847
848
|
declare class ShipToggle {
|
|
@@ -909,6 +910,12 @@ declare class ShipTooltipWrapper {
|
|
|
909
910
|
positionAnchorName: _angular_core.InputSignal<string>;
|
|
910
911
|
anchorEl: _angular_core.InputSignal<ElementRef<HTMLElement>>;
|
|
911
912
|
isOpen: _angular_core.InputSignal<boolean>;
|
|
913
|
+
content: _angular_core.InputSignal<string | TemplateRef<any> | null | undefined>;
|
|
914
|
+
close: _angular_core.InputSignal<() => void>;
|
|
915
|
+
protected tooltipContext: {
|
|
916
|
+
close: () => void;
|
|
917
|
+
};
|
|
918
|
+
isTemplate: _angular_core.Signal<boolean>;
|
|
912
919
|
readonly SUPPORTS_ANCHOR: boolean;
|
|
913
920
|
isBelow: _angular_core.WritableSignal<boolean>;
|
|
914
921
|
openEffect: _angular_core.EffectRef;
|
|
@@ -916,7 +923,7 @@ declare class ShipTooltipWrapper {
|
|
|
916
923
|
ngOnDestroy(): void;
|
|
917
924
|
private calculateTooltipPosition;
|
|
918
925
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShipTooltipWrapper, never>;
|
|
919
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShipTooltipWrapper, "ship-tooltip-wrapper", never, { "positionAnchorName": { "alias": "positionAnchorName"; "required": true; "isSignal": true; }; "anchorEl": { "alias": "anchorEl"; "required": true; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, {}, never,
|
|
926
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ShipTooltipWrapper, "ship-tooltip-wrapper", never, { "positionAnchorName": { "alias": "positionAnchorName"; "required": true; "isSignal": true; }; "anchorEl": { "alias": "anchorEl"; "required": true; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "close": { "alias": "close"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
920
927
|
}
|
|
921
928
|
declare class ShipTooltip implements OnDestroy {
|
|
922
929
|
#private;
|