igniteui-react-core
Version:
Ignite UI React Core.
64 lines (63 loc) • 3.22 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { VoidEventArgsDescriptionMetadata } from "./VoidEventArgsDescriptionMetadata";
import { WebTooltipDescription } from "./WebTooltipDescription";
/**
* @hidden
*/
var WebTooltipDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebTooltipDescriptionMetadata, _super);
function WebTooltipDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
WebTooltipDescriptionMetadata.b = function (a) {
if (WebTooltipDescriptionMetadata.a == null) {
WebTooltipDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
WebTooltipDescriptionMetadata.c(WebTooltipDescriptionMetadata.a);
}
if (a.k(WebTooltipDescriptionMetadata.a)) {
return;
}
a.ac(WebTooltipDescriptionMetadata.a);
VoidEventArgsDescriptionMetadata.d(a);
};
WebTooltipDescriptionMetadata.c = function (a) {
a.item("__qualifiedNameTS", "String:Tooltip");
a.item("__tagNameWC", "String:igc-tooltip");
a.item("__skipModuleRegisterWebComponents", "Boolean");
a.item("__importTypesWebComponents", "String:igniteui-webcomponents");
a.item("Open", "Boolean");
a.item("DisableArrow", "Boolean");
a.item("Offset", "Number:double");
a.item("Placement", "ExportedType:string:PopoverPlacement");
a.item("Placement@stringUnion", "WebComponents;React");
a.item("Placement@names", "Top;TopStart;TopEnd;Bottom;BottomStart;BottomEnd;Right;RightStart;RightEnd;Left;LeftStart;LeftEnd");
a.item("Anchor", "String");
a.item("ShowTriggers", "String");
a.item("HideTriggers", "String");
a.item("ShowDelay", "Number:double");
a.item("HideDelay", "Number:double");
a.item("Message", "String");
a.item("Sticky", "Boolean");
a.item("OpeningRef", "EventRef::opening");
a.item("OpenedRef", "EventRef::opened");
a.item("ClosingRef", "EventRef::closing");
a.item("ClosedRef", "EventRef::closed");
};
WebTooltipDescriptionMetadata.d = function (a) {
WebTooltipDescriptionMetadata.b(a);
a.ae("WebTooltip", function () { return new WebTooltipDescription(); });
a.ad("WebTooltip", WebTooltipDescriptionMetadata.a);
};
WebTooltipDescriptionMetadata.$t = markType(WebTooltipDescriptionMetadata, 'WebTooltipDescriptionMetadata');
WebTooltipDescriptionMetadata.a = null;
return WebTooltipDescriptionMetadata;
}(Base));
export { WebTooltipDescriptionMetadata };