/*! * * Wijmo Library 5.20252.44 * https://developer.mescius.com/wijmo * * Copyright(c) MESCIUS inc. All rights reserved. * * Licensed under the End-User License Agreement For MESCIUS Wijmo Software. * us.sales@mescius.com * https://developer.mescius.com/wijmo/licensing * */ /** * {@module wijmo.vue2.core} * Contains Vue 2 and 3 components for the wijmo module. */ /** * */ export declare var ___keepComment: any; /** * Vue component that includes a given HTML fragment into the document. * * The wj-include component takes a src attribute that * specifies a file to load and include into the document. For example: * *
<wj-popup control="modalDialog" :modal="true" :hide-trigger="None"> * <wj-include src="includes/dialog.htm"></wj-include> * </wj-popup>*/ export declare var WjInclude: any; export declare var wjFormat: (value: any, format: any) => string; /** * Vue filter that applies globalized formatting to dates and numbers. * * For example, the code below uses the wj-format filter to format * a number as a currency value and a date as a short date using the * current Wijmo culture: * *
<p>value: {{ theAmount | wj-format('c') }}</p>
* <p>date: {{ theDate | wj-format('d') }}</p>
*/
export declare var WjFormat: any;
/**
* Vue directive for the {@link Tooltip} class.
*
* Use the **wjTooltip** directive to add tooltips to elements on the page.
* The wjTooltip directive supports HTML content, smart positioning, and touch.
*
* The wjTooltip directive is specified as a **v-wjTooltip** attribute added to the
* element that the tooltip applies to. The parameter value is the tooltip
* text or the id of an element that contains the text.
*
* You can also specify the tooltip with additional properties. In this case
* the directive value is an object with property values. The possible properties
* are:
* - **tooltip** - tooltip text or element id.
* - **position** - represents the {@link Tooltip.position} property.
*
* For example:
* ```html
* * Paragraph with a string tooltip. *
** Data for the current quarter is estimated * by pro-rating etc.
* * ``` */ export declare var WjTooltip: any; export declare function registerCore(app: any): void;