@smart-webcomponents-angular/tooltip 9.2.22 → 13.0.9

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.
Files changed (48) hide show
  1. package/README.md +10 -2
  2. package/common/i18n.phonenumbers.min.js +501 -0
  3. package/common/runtime.js +748 -0
  4. package/demo/angular.json +4 -4
  5. package/demo/package.json +2 -2
  6. package/demo/src/tsconfig.app.json +15 -15
  7. package/demo/src/tsconfig.json +23 -23
  8. package/esm2020/tooltip/index.mjs +2 -0
  9. package/{esm2015/tooltip/public_api.js → esm2020/tooltip/public_api.mjs} +0 -0
  10. package/{esm2015/tooltip/smart-webcomponents-angular-tooltip.js → esm2020/tooltip/smart-webcomponents-angular-tooltip.mjs} +2 -3
  11. package/esm2020/tooltip/smart.element.mjs +99 -0
  12. package/esm2020/tooltip/smart.tooltip.mjs +313 -0
  13. package/esm2020/tooltip/smart.tooltip.module.mjs +18 -0
  14. package/fesm2015/{smart-webcomponents-angular-tooltip.js → smart-webcomponents-angular-tooltip.mjs} +100 -52
  15. package/fesm2015/smart-webcomponents-angular-tooltip.mjs.map +1 -0
  16. package/fesm2020/smart-webcomponents-angular-tooltip.mjs +438 -0
  17. package/fesm2020/smart-webcomponents-angular-tooltip.mjs.map +1 -0
  18. package/images/flags.png +0 -0
  19. package/index.d.ts +3578 -658
  20. package/package.json +26 -24
  21. package/source/modules/smart.tooltip.js +1 -1
  22. package/source/smart.button.js +2 -2
  23. package/source/smart.element.js +2 -2
  24. package/source/smart.tooltip.js +2 -2
  25. package/styles/font/smart-icons.eot +0 -0
  26. package/styles/font/smart-icons.svg +64 -2
  27. package/styles/font/smart-icons.ttf +0 -0
  28. package/styles/font/smart-icons.woff +0 -0
  29. package/styles/font/smart-icons.woff2 +0 -0
  30. package/styles/smart.base.css +4 -4
  31. package/styles/smart.common.css +1 -1
  32. package/tooltip/index.d.ts +1 -0
  33. package/tooltip/smart-webcomponents-angular-tooltip.d.ts +2 -2
  34. package/tooltip/smart.element.d.ts +4 -1
  35. package/tooltip/smart.tooltip.d.ts +6 -0
  36. package/tooltip/smart.tooltip.module.d.ts +5 -0
  37. package/bundles/smart-webcomponents-angular-tooltip.umd.js +0 -816
  38. package/bundles/smart-webcomponents-angular-tooltip.umd.min.js +0 -25
  39. package/demo/src/app/app.component.ts +0 -53
  40. package/demo/src/app/app.module.ts +0 -17
  41. package/demo/src/app/main.ts +0 -6
  42. package/demo/src/main.ts +0 -16
  43. package/demo/src/polyfills.ts +0 -73
  44. package/esm2015/tooltip/smart.element.js +0 -83
  45. package/esm2015/tooltip/smart.tooltip.js +0 -284
  46. package/esm2015/tooltip/smart.tooltip.module.js +0 -13
  47. package/fesm2015/smart-webcomponents-angular-tooltip.js.map +0 -1
  48. package/tooltip/smart-webcomponents-angular-tooltip.metadata.json +0 -1
@@ -0,0 +1,438 @@
1
+
2
+ if (!window['Smart']) {
3
+ window['Smart'] = { RenderMode: 'manual' };
4
+ }
5
+ else {
6
+ window['Smart'].RenderMode = 'manual';
7
+ }
8
+ import './../source/modules/smart.tooltip';
9
+
10
+ import * as i0 from '@angular/core';
11
+ import { EventEmitter, Component, Output, Input, Directive, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
12
+
13
+ class BaseElement {
14
+ constructor(ref) {
15
+ this.onCreate = new EventEmitter();
16
+ this.onReady = new EventEmitter();
17
+ this.onAttach = new EventEmitter();
18
+ this.onDetach = new EventEmitter();
19
+ const that = this;
20
+ this.nativeElement = ref.nativeElement;
21
+ that.nativeElement.onAttached = () => {
22
+ that.onAttach.emit(that.nativeElement);
23
+ };
24
+ that.nativeElement.onDetached = () => {
25
+ that.onDetach.emit(that.nativeElement);
26
+ };
27
+ }
28
+ addEventListener(type, listener, options = false) {
29
+ this.nativeElement.addEventListener(type, listener, options);
30
+ }
31
+ removeEventListener(type, listener, options = false) {
32
+ this.nativeElement.removeEventListener(type, listener, options);
33
+ }
34
+ dispatchEvent(event) {
35
+ return this.nativeElement.dispatchEvent(event);
36
+ }
37
+ blur() {
38
+ this.nativeElement.blur();
39
+ }
40
+ click() {
41
+ this.nativeElement.click();
42
+ }
43
+ focus(options) {
44
+ this.nativeElement.focus(options);
45
+ }
46
+ /** @description Sets or gets the language. Used in conjunction with the property messages. */
47
+ get locale() {
48
+ return this.nativeElement ? this.nativeElement.locale : undefined;
49
+ }
50
+ set locale(value) {
51
+ this.nativeElement ? this.nativeElement.locale = value : undefined;
52
+ }
53
+ /** @description Callback used to customize the format of the messages that are returned from the Localization Module. */
54
+ get localizeFormatFunction() {
55
+ return this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;
56
+ }
57
+ set localizeFormatFunction(value) {
58
+ this.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;
59
+ }
60
+ /** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */
61
+ get messages() {
62
+ return this.nativeElement ? this.nativeElement.messages : undefined;
63
+ }
64
+ set messages(value) {
65
+ this.nativeElement ? this.nativeElement.messages = value : undefined;
66
+ }
67
+ /** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */
68
+ get rightToLeft() {
69
+ return this.nativeElement ? this.nativeElement.rightToLeft : undefined;
70
+ }
71
+ set rightToLeft(value) {
72
+ this.nativeElement ? this.nativeElement.rightToLeft = value : undefined;
73
+ }
74
+ /** @description Determines the theme. Theme defines the look of the element */
75
+ get theme() {
76
+ return this.nativeElement ? this.nativeElement.theme : undefined;
77
+ }
78
+ set theme(value) {
79
+ this.nativeElement ? this.nativeElement.theme = value : undefined;
80
+ }
81
+ }
82
+ BaseElement.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: BaseElement, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
83
+ BaseElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: BaseElement, selector: "ng-component", inputs: { locale: "locale", localizeFormatFunction: "localizeFormatFunction", messages: "messages", rightToLeft: "rightToLeft", theme: "theme" }, outputs: { onCreate: "onCreate", onReady: "onReady", onAttach: "onAttach", onDetach: "onDetach" }, ngImport: i0, template: '', isInline: true });
84
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: BaseElement, decorators: [{
85
+ type: Component,
86
+ args: [{
87
+ template: ''
88
+ }]
89
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { onCreate: [{
90
+ type: Output
91
+ }], onReady: [{
92
+ type: Output
93
+ }], onAttach: [{
94
+ type: Output
95
+ }], onDetach: [{
96
+ type: Output
97
+ }], locale: [{
98
+ type: Input
99
+ }], localizeFormatFunction: [{
100
+ type: Input
101
+ }], messages: [{
102
+ type: Input
103
+ }], rightToLeft: [{
104
+ type: Input
105
+ }], theme: [{
106
+ type: Input
107
+ }] } });
108
+ const Smart = window.Smart;
109
+
110
+ class TooltipComponent extends BaseElement {
111
+ constructor(ref) {
112
+ super(ref);
113
+ this.eventHandlers = [];
114
+ /** @description This event is triggered when the tooltip is opened.
115
+ * @param event. The custom event. */
116
+ this.onOpen = new EventEmitter();
117
+ /** @description This event is triggered before the tooltip is opened. The event can be prevented via event.preventDefault().
118
+ * @param event. The custom event. */
119
+ this.onOpening = new EventEmitter();
120
+ /** @description This event is triggered when the tooltip is closed.
121
+ * @param event. The custom event. */
122
+ this.onClose = new EventEmitter();
123
+ /** @description This event is triggered before the tooltip is closed. The event can be prevented via event.preventDefault().
124
+ * @param event. The custom event. */
125
+ this.onClosing = new EventEmitter();
126
+ this.nativeElement = ref.nativeElement;
127
+ }
128
+ /** @description Creates the component on demand.
129
+ * @param properties An optional object of properties, which will be added to the template binded ones.
130
+ */
131
+ createComponent(properties = {}) {
132
+ this.nativeElement = document.createElement('smart-tooltip');
133
+ for (let propertyName in properties) {
134
+ this.nativeElement[propertyName] = properties[propertyName];
135
+ }
136
+ return this.nativeElement;
137
+ }
138
+ /** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */
139
+ get animation() {
140
+ return this.nativeElement ? this.nativeElement.animation : undefined;
141
+ }
142
+ set animation(value) {
143
+ this.nativeElement ? this.nativeElement.animation = value : undefined;
144
+ }
145
+ /** @description Determines how to align the tooltip. */
146
+ get align() {
147
+ return this.nativeElement ? this.nativeElement.align : undefined;
148
+ }
149
+ set align(value) {
150
+ this.nativeElement ? this.nativeElement.align = value : undefined;
151
+ }
152
+ /** @description Gets or sets whether a tooltip's arrow will be shown. */
153
+ get arrow() {
154
+ return this.nativeElement ? this.nativeElement.arrow : undefined;
155
+ }
156
+ set arrow(value) {
157
+ this.nativeElement ? this.nativeElement.arrow = value : undefined;
158
+ }
159
+ /** @description Sets the position of the arrow. */
160
+ get arrowDirection() {
161
+ return this.nativeElement ? this.nativeElement.arrowDirection : undefined;
162
+ }
163
+ set arrowDirection(value) {
164
+ this.nativeElement ? this.nativeElement.arrowDirection = value : undefined;
165
+ }
166
+ /** @description Gets or sets whether a tooltip's arrow will be shown. */
167
+ get delay() {
168
+ return this.nativeElement ? this.nativeElement.delay : undefined;
169
+ }
170
+ set delay(value) {
171
+ this.nativeElement ? this.nativeElement.delay = value : undefined;
172
+ }
173
+ /** @description Enables or disables the tooltip. */
174
+ get disabled() {
175
+ return this.nativeElement ? this.nativeElement.disabled : undefined;
176
+ }
177
+ set disabled(value) {
178
+ this.nativeElement ? this.nativeElement.disabled = value : undefined;
179
+ }
180
+ /** @description Sets an offset by X and Y. */
181
+ get offset() {
182
+ return this.nativeElement ? this.nativeElement.offset : undefined;
183
+ }
184
+ set offset(value) {
185
+ this.nativeElement ? this.nativeElement.offset = value : undefined;
186
+ }
187
+ /** @description Sets or gets the language. Used in conjunction with the property messages. */
188
+ get locale() {
189
+ return this.nativeElement ? this.nativeElement.locale : undefined;
190
+ }
191
+ set locale(value) {
192
+ this.nativeElement ? this.nativeElement.locale = value : undefined;
193
+ }
194
+ /** @description Callback, related to localization module. */
195
+ get localizeFormatFunction() {
196
+ return this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;
197
+ }
198
+ set localizeFormatFunction(value) {
199
+ this.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;
200
+ }
201
+ /** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property language. */
202
+ get messages() {
203
+ return this.nativeElement ? this.nativeElement.messages : undefined;
204
+ }
205
+ set messages(value) {
206
+ this.nativeElement ? this.nativeElement.messages = value : undefined;
207
+ }
208
+ /** @description Sets or gets the way of triggering the tooltip. */
209
+ get openMode() {
210
+ return this.nativeElement ? this.nativeElement.openMode : undefined;
211
+ }
212
+ set openMode(value) {
213
+ this.nativeElement ? this.nativeElement.openMode = value : undefined;
214
+ }
215
+ /** @description Gets or sets the position of the tooltip. */
216
+ get position() {
217
+ return this.nativeElement ? this.nativeElement.position : undefined;
218
+ }
219
+ set position(value) {
220
+ this.nativeElement ? this.nativeElement.position = value : undefined;
221
+ }
222
+ /** @description Sets the element which triggers the tooltip. */
223
+ get selector() {
224
+ return this.nativeElement ? this.nativeElement.selector : undefined;
225
+ }
226
+ set selector(value) {
227
+ this.nativeElement ? this.nativeElement.selector = value : undefined;
228
+ }
229
+ /** @description Determines the theme. Theme defines the look of the element */
230
+ get theme() {
231
+ return this.nativeElement ? this.nativeElement.theme : undefined;
232
+ }
233
+ set theme(value) {
234
+ this.nativeElement ? this.nativeElement.theme = value : undefined;
235
+ }
236
+ /** @description Sets custom tooltip template. */
237
+ get tooltipTemplate() {
238
+ return this.nativeElement ? this.nativeElement.tooltipTemplate : undefined;
239
+ }
240
+ set tooltipTemplate(value) {
241
+ this.nativeElement ? this.nativeElement.tooltipTemplate = value : undefined;
242
+ }
243
+ /** @description If is set to true, the element cannot be focused. */
244
+ get unfocusable() {
245
+ return this.nativeElement ? this.nativeElement.unfocusable : undefined;
246
+ }
247
+ set unfocusable(value) {
248
+ this.nativeElement ? this.nativeElement.unfocusable = value : undefined;
249
+ }
250
+ /** @description Sets or gets the widget's value. */
251
+ get value() {
252
+ return this.nativeElement ? this.nativeElement.value : undefined;
253
+ }
254
+ set value(value) {
255
+ this.nativeElement ? this.nativeElement.value = value : undefined;
256
+ }
257
+ /** @description Sets or gets the visibility of the tooltip. */
258
+ get visible() {
259
+ return this.nativeElement ? this.nativeElement.visible : undefined;
260
+ }
261
+ set visible(value) {
262
+ this.nativeElement ? this.nativeElement.visible = value : undefined;
263
+ }
264
+ /** @description Closes smart-tooltip.
265
+ */
266
+ close() {
267
+ if (this.nativeElement.isRendered) {
268
+ this.nativeElement.close();
269
+ }
270
+ else {
271
+ this.nativeElement.whenRendered(() => {
272
+ this.nativeElement.close();
273
+ });
274
+ }
275
+ }
276
+ /** @description Opens smart-tooltip.
277
+ */
278
+ open() {
279
+ if (this.nativeElement.isRendered) {
280
+ this.nativeElement.open();
281
+ }
282
+ else {
283
+ this.nativeElement.whenRendered(() => {
284
+ this.nativeElement.open();
285
+ });
286
+ }
287
+ }
288
+ /** @description Toggles smart-tooltip.
289
+ */
290
+ toggle() {
291
+ if (this.nativeElement.isRendered) {
292
+ this.nativeElement.toggle();
293
+ }
294
+ else {
295
+ this.nativeElement.whenRendered(() => {
296
+ this.nativeElement.toggle();
297
+ });
298
+ }
299
+ }
300
+ /** @description Clears the content of the Tooltip.
301
+ */
302
+ clear() {
303
+ if (this.nativeElement.isRendered) {
304
+ this.nativeElement.clear();
305
+ }
306
+ else {
307
+ this.nativeElement.whenRendered(() => {
308
+ this.nativeElement.clear();
309
+ });
310
+ }
311
+ }
312
+ get isRendered() {
313
+ return this.nativeElement ? this.nativeElement.isRendered : false;
314
+ }
315
+ ngOnInit() {
316
+ }
317
+ ngAfterViewInit() {
318
+ const that = this;
319
+ that.onCreate.emit(that.nativeElement);
320
+ Smart.Render();
321
+ this.nativeElement.classList.add('smart-angular');
322
+ this.nativeElement.whenRendered(() => { that.onReady.emit(that.nativeElement); });
323
+ this.listen();
324
+ }
325
+ ngOnDestroy() {
326
+ this.unlisten();
327
+ }
328
+ ngOnChanges(changes) {
329
+ if (this.nativeElement && this.nativeElement.isRendered) {
330
+ for (const propName in changes) {
331
+ if (changes.hasOwnProperty(propName)) {
332
+ this.nativeElement[propName] = changes[propName].currentValue;
333
+ }
334
+ }
335
+ }
336
+ }
337
+ /** @description Add event listeners. */
338
+ listen() {
339
+ const that = this;
340
+ that.eventHandlers['openHandler'] = (event) => { that.onOpen.emit(event); };
341
+ that.nativeElement.addEventListener('open', that.eventHandlers['openHandler']);
342
+ that.eventHandlers['openingHandler'] = (event) => { that.onOpening.emit(event); };
343
+ that.nativeElement.addEventListener('opening', that.eventHandlers['openingHandler']);
344
+ that.eventHandlers['closeHandler'] = (event) => { that.onClose.emit(event); };
345
+ that.nativeElement.addEventListener('close', that.eventHandlers['closeHandler']);
346
+ that.eventHandlers['closingHandler'] = (event) => { that.onClosing.emit(event); };
347
+ that.nativeElement.addEventListener('closing', that.eventHandlers['closingHandler']);
348
+ }
349
+ /** @description Remove event listeners. */
350
+ unlisten() {
351
+ const that = this;
352
+ if (that.eventHandlers['openHandler']) {
353
+ that.nativeElement.removeEventListener('open', that.eventHandlers['openHandler']);
354
+ }
355
+ if (that.eventHandlers['openingHandler']) {
356
+ that.nativeElement.removeEventListener('opening', that.eventHandlers['openingHandler']);
357
+ }
358
+ if (that.eventHandlers['closeHandler']) {
359
+ that.nativeElement.removeEventListener('close', that.eventHandlers['closeHandler']);
360
+ }
361
+ if (that.eventHandlers['closingHandler']) {
362
+ that.nativeElement.removeEventListener('closing', that.eventHandlers['closingHandler']);
363
+ }
364
+ }
365
+ }
366
+ TooltipComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TooltipComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
367
+ TooltipComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.2.2", type: TooltipComponent, selector: "smart-tooltip, [smart-tooltip]", inputs: { animation: "animation", align: "align", arrow: "arrow", arrowDirection: "arrowDirection", delay: "delay", disabled: "disabled", offset: "offset", locale: "locale", localizeFormatFunction: "localizeFormatFunction", messages: "messages", openMode: "openMode", position: "position", selector: "selector", theme: "theme", tooltipTemplate: "tooltipTemplate", unfocusable: "unfocusable", value: "value", visible: "visible" }, outputs: { onOpen: "onOpen", onOpening: "onOpening", onClose: "onClose", onClosing: "onClosing" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
368
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TooltipComponent, decorators: [{
369
+ type: Directive,
370
+ args: [{
371
+ selector: 'smart-tooltip, [smart-tooltip]'
372
+ }]
373
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { animation: [{
374
+ type: Input
375
+ }], align: [{
376
+ type: Input
377
+ }], arrow: [{
378
+ type: Input
379
+ }], arrowDirection: [{
380
+ type: Input
381
+ }], delay: [{
382
+ type: Input
383
+ }], disabled: [{
384
+ type: Input
385
+ }], offset: [{
386
+ type: Input
387
+ }], locale: [{
388
+ type: Input
389
+ }], localizeFormatFunction: [{
390
+ type: Input
391
+ }], messages: [{
392
+ type: Input
393
+ }], openMode: [{
394
+ type: Input
395
+ }], position: [{
396
+ type: Input
397
+ }], selector: [{
398
+ type: Input
399
+ }], theme: [{
400
+ type: Input
401
+ }], tooltipTemplate: [{
402
+ type: Input
403
+ }], unfocusable: [{
404
+ type: Input
405
+ }], value: [{
406
+ type: Input
407
+ }], visible: [{
408
+ type: Input
409
+ }], onOpen: [{
410
+ type: Output
411
+ }], onOpening: [{
412
+ type: Output
413
+ }], onClose: [{
414
+ type: Output
415
+ }], onClosing: [{
416
+ type: Output
417
+ }] } });
418
+
419
+ class TooltipModule {
420
+ }
421
+ TooltipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
422
+ TooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TooltipModule, declarations: [TooltipComponent], exports: [TooltipComponent] });
423
+ TooltipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TooltipModule });
424
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: TooltipModule, decorators: [{
425
+ type: NgModule,
426
+ args: [{
427
+ declarations: [TooltipComponent],
428
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
429
+ exports: [TooltipComponent]
430
+ }]
431
+ }] });
432
+
433
+ /**
434
+ * Generated bundle index. Do not edit.
435
+ */
436
+
437
+ export { Smart, TooltipComponent, TooltipModule };
438
+ //# sourceMappingURL=smart-webcomponents-angular-tooltip.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"smart-webcomponents-angular-tooltip.mjs","sources":["../../tooltip/src/smart.element.ts","../../tooltip/src/smart.tooltip.ts","../../tooltip/src/smart.tooltip.module.ts","../../tooltip/src/smart-webcomponents-angular-tooltip.ts"],"sourcesContent":["\ndeclare global {\n interface Window {\n Smart: any;\n}\n}\n\n\nimport { Component, ElementRef, Input, Output, EventEmitter } from '@angular/core';\nimport { ElementRenderMode } from './../index';\n\n@Component({\n template: ''\n})\nexport class BaseElement {\n constructor(ref: ElementRef) {\n const that = this;\n this.nativeElement = ref.nativeElement as any;\n\n that.nativeElement.onAttached = () => {\n that.onAttach.emit(that.nativeElement);\n }\n\n that.nativeElement.onDetached = () => {\n that.onDetach.emit(that.nativeElement);\n }\n }\n\n @Output() onCreate: EventEmitter<any> = new EventEmitter();\n @Output() onReady: EventEmitter<any> = new EventEmitter();\n @Output() onAttach: EventEmitter<any> = new EventEmitter();\n @Output() onDetach: EventEmitter<any> = new EventEmitter();\n\n public nativeElement: any;\n\n public addEventListener(type: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions = false): void {\n this.nativeElement.addEventListener(type, listener, options);\n\t}\n\n\tpublic removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions = false): void {\n\t\tthis.nativeElement.removeEventListener(type, listener, options);\n\t}\n\n\tpublic dispatchEvent(event: Event): boolean {\n\t\treturn this.nativeElement.dispatchEvent(event);\n\t}\n\n\tpublic blur(): void {\n\t\tthis.nativeElement.blur();\n\t}\n\n\tpublic click(): void {\n\t\tthis.nativeElement.click();\n\t}\n\n\tpublic focus(options?: FocusOptions): void {\n\t\tthis.nativeElement.focus(options);\n\t}\n\n/** @description Sets or gets the language. Used in conjunction with the property messages. */\n\t@Input()\n\tget locale(): string {\n\t\treturn this.nativeElement ? this.nativeElement.locale : undefined;\n\t}\n\tset locale(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.locale = value : undefined;\n\t}\n\n\t/** @description Callback used to customize the format of the messages that are returned from the Localization Module. */\n\t@Input()\n\tget localizeFormatFunction(): any {\n\t\treturn this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;\n\t}\n\tset localizeFormatFunction(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;\n\t}\n\n\t/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */\n\t@Input()\n\tget messages(): any {\n\t\treturn this.nativeElement ? this.nativeElement.messages : undefined;\n\t}\n\tset messages(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.messages = value : undefined;\n\t}\n\n\t/** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */\n\t@Input()\n\tget rightToLeft(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.rightToLeft : undefined;\n\t}\n\tset rightToLeft(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.rightToLeft = value : undefined;\n\t}\n\n\t/** @description Determines the theme. Theme defines the look of the element */\n\t@Input()\n\tget theme(): string {\n\t\treturn this.nativeElement ? this.nativeElement.theme : undefined;\n\t}\n\tset theme(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.theme = value : undefined;\n\t}\n}\n\nexport const Smart: any = window.Smart;\n\n","import { Tooltip } from './../index';\nimport { Animation, TooltipArrowDirection, TooltipOpenMode, TooltipPosition, ElementRenderMode} from './../index';\nimport { Component, Directive, AfterViewInit, ElementRef, Input, OnInit, OnChanges, OnDestroy, SimpleChanges, Output, EventEmitter } from '@angular/core';\nimport { BaseElement, Smart } from './smart.element';\nexport { Animation, TooltipArrowDirection, TooltipOpenMode, TooltipPosition, ElementRenderMode} from './../index';\nexport { Smart } from './smart.element';\nexport { Tooltip } from './../index';\n\n\n@Directive({\n\tselector: 'smart-tooltip, [smart-tooltip]'\n})\n\nexport class TooltipComponent extends BaseElement implements OnInit, AfterViewInit, OnDestroy, OnChanges {\n\tconstructor(ref: ElementRef<Tooltip>) {\n\t\tsuper(ref);\n\t\tthis.nativeElement = ref.nativeElement as Tooltip;\n\t}\n\n\tprivate eventHandlers: any[] = [];\n\n\tpublic nativeElement: Tooltip;\n\t/** @description Creates the component on demand.\n\t * @param properties An optional object of properties, which will be added to the template binded ones.\n\t */\n\tpublic createComponent(properties = {}): any {\n \tthis.nativeElement = <Tooltip>document.createElement('smart-tooltip');\n\t\tfor (let propertyName in properties) { \n \t\t\tthis.nativeElement[propertyName] = properties[propertyName];\n\t\t}\n\t\treturn this.nativeElement;\n\t}\n\t/** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */\n\t@Input()\n\tget animation(): Animation {\n\t\treturn this.nativeElement ? this.nativeElement.animation : undefined;\n\t}\n\tset animation(value: Animation) {\n\t\tthis.nativeElement ? this.nativeElement.animation = value : undefined;\n\t}\n\n\t/** @description Determines how to align the tooltip. */\n\t@Input()\n\tget align(): string {\n\t\treturn this.nativeElement ? this.nativeElement.align : undefined;\n\t}\n\tset align(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.align = value : undefined;\n\t}\n\n\t/** @description Gets or sets whether a tooltip's arrow will be shown. */\n\t@Input()\n\tget arrow(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.arrow : undefined;\n\t}\n\tset arrow(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.arrow = value : undefined;\n\t}\n\n\t/** @description Sets the position of the arrow. */\n\t@Input()\n\tget arrowDirection(): TooltipArrowDirection {\n\t\treturn this.nativeElement ? this.nativeElement.arrowDirection : undefined;\n\t}\n\tset arrowDirection(value: TooltipArrowDirection) {\n\t\tthis.nativeElement ? this.nativeElement.arrowDirection = value : undefined;\n\t}\n\n\t/** @description Gets or sets whether a tooltip's arrow will be shown. */\n\t@Input()\n\tget delay(): number {\n\t\treturn this.nativeElement ? this.nativeElement.delay : undefined;\n\t}\n\tset delay(value: number) {\n\t\tthis.nativeElement ? this.nativeElement.delay = value : undefined;\n\t}\n\n\t/** @description Enables or disables the tooltip. */\n\t@Input()\n\tget disabled(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.disabled : undefined;\n\t}\n\tset disabled(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.disabled = value : undefined;\n\t}\n\n\t/** @description Sets an offset by X and Y. */\n\t@Input()\n\tget offset(): number[] {\n\t\treturn this.nativeElement ? this.nativeElement.offset : undefined;\n\t}\n\tset offset(value: number[]) {\n\t\tthis.nativeElement ? this.nativeElement.offset = value : undefined;\n\t}\n\n\t/** @description Sets or gets the language. Used in conjunction with the property messages. */\n\t@Input()\n\tget locale(): string {\n\t\treturn this.nativeElement ? this.nativeElement.locale : undefined;\n\t}\n\tset locale(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.locale = value : undefined;\n\t}\n\n\t/** @description Callback, related to localization module. */\n\t@Input()\n\tget localizeFormatFunction(): any {\n\t\treturn this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;\n\t}\n\tset localizeFormatFunction(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;\n\t}\n\n\t/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property language. */\n\t@Input()\n\tget messages(): any {\n\t\treturn this.nativeElement ? this.nativeElement.messages : undefined;\n\t}\n\tset messages(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.messages = value : undefined;\n\t}\n\n\t/** @description Sets or gets the way of triggering the tooltip. */\n\t@Input()\n\tget openMode(): TooltipOpenMode {\n\t\treturn this.nativeElement ? this.nativeElement.openMode : undefined;\n\t}\n\tset openMode(value: TooltipOpenMode) {\n\t\tthis.nativeElement ? this.nativeElement.openMode = value : undefined;\n\t}\n\n\t/** @description Gets or sets the position of the tooltip. */\n\t@Input()\n\tget position(): TooltipPosition {\n\t\treturn this.nativeElement ? this.nativeElement.position : undefined;\n\t}\n\tset position(value: TooltipPosition) {\n\t\tthis.nativeElement ? this.nativeElement.position = value : undefined;\n\t}\n\n\t/** @description Sets the element which triggers the tooltip. */\n\t@Input()\n\tget selector(): string | HTMLElement {\n\t\treturn this.nativeElement ? this.nativeElement.selector : undefined;\n\t}\n\tset selector(value: string | HTMLElement) {\n\t\tthis.nativeElement ? this.nativeElement.selector = value : undefined;\n\t}\n\n\t/** @description Determines the theme. Theme defines the look of the element */\n\t@Input()\n\tget theme(): string {\n\t\treturn this.nativeElement ? this.nativeElement.theme : undefined;\n\t}\n\tset theme(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.theme = value : undefined;\n\t}\n\n\t/** @description Sets custom tooltip template. */\n\t@Input()\n\tget tooltipTemplate(): any {\n\t\treturn this.nativeElement ? this.nativeElement.tooltipTemplate : undefined;\n\t}\n\tset tooltipTemplate(value: any) {\n\t\tthis.nativeElement ? this.nativeElement.tooltipTemplate = value : undefined;\n\t}\n\n\t/** @description If is set to true, the element cannot be focused. */\n\t@Input()\n\tget unfocusable(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.unfocusable : undefined;\n\t}\n\tset unfocusable(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.unfocusable = value : undefined;\n\t}\n\n\t/** @description Sets or gets the widget's value. */\n\t@Input()\n\tget value(): string {\n\t\treturn this.nativeElement ? this.nativeElement.value : undefined;\n\t}\n\tset value(value: string) {\n\t\tthis.nativeElement ? this.nativeElement.value = value : undefined;\n\t}\n\n\t/** @description Sets or gets the visibility of the tooltip. */\n\t@Input()\n\tget visible(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.visible : undefined;\n\t}\n\tset visible(value: boolean) {\n\t\tthis.nativeElement ? this.nativeElement.visible = value : undefined;\n\t}\n\n\t/** @description This event is triggered when the tooltip is opened.\n\t* @param event. The custom event. \t*/\n\t@Output() onOpen: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered before the tooltip is opened. The event can be prevented via event.preventDefault().\n\t* @param event. The custom event. \t*/\n\t@Output() onOpening: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered when the tooltip is closed.\n\t* @param event. The custom event. \t*/\n\t@Output() onClose: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description This event is triggered before the tooltip is closed. The event can be prevented via event.preventDefault().\n\t* @param event. The custom event. \t*/\n\t@Output() onClosing: EventEmitter<CustomEvent> = new EventEmitter();\n\n\t/** @description Closes smart-tooltip. \n\t*/\n public close(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.close();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.close();\n });\n }\n }\n\n\t/** @description Opens smart-tooltip. \n\t*/\n public open(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.open();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.open();\n });\n }\n }\n\n\t/** @description Toggles smart-tooltip. \n\t*/\n public toggle(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.toggle();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.toggle();\n });\n }\n }\n\n\t/** @description Clears the content of the Tooltip. \n\t*/\n public clear(): void {\n if (this.nativeElement.isRendered) {\n this.nativeElement.clear();\n }\n else\n {\n this.nativeElement.whenRendered(() => {\n this.nativeElement.clear();\n });\n }\n }\n\n\n\tget isRendered(): boolean {\n\t\treturn this.nativeElement ? this.nativeElement.isRendered : false;\n\t}\n\n\tngOnInit() {\n\t}\n\n ngAfterViewInit() {\n const that = this;\n\n that.onCreate.emit(that.nativeElement);\n\n\t\tSmart.Render();\n\n\t\tthis.nativeElement.classList.add('smart-angular');\n\n\t\tthis.nativeElement.whenRendered(() => { that.onReady.emit(that.nativeElement); });\n\t\tthis.listen();\n\t}\n\n\tngOnDestroy() {\n\t\tthis.unlisten();\n\t}\n\n\tngOnChanges(changes: SimpleChanges) {\n\t\tif (this.nativeElement && this.nativeElement.isRendered) {\n\t\t\tfor (const propName in changes) {\n\t\t\t\tif (changes.hasOwnProperty(propName)) {\n\t\t\t\t\tthis.nativeElement[propName] = changes[propName].currentValue;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/** @description Add event listeners. */\n\tprivate listen(): void {\n const that = this;\n\t\tthat.eventHandlers['openHandler'] = (event: CustomEvent) => { that.onOpen.emit(event); }\n\t\tthat.nativeElement.addEventListener('open', that.eventHandlers['openHandler']);\n\n\t\tthat.eventHandlers['openingHandler'] = (event: CustomEvent) => { that.onOpening.emit(event); }\n\t\tthat.nativeElement.addEventListener('opening', that.eventHandlers['openingHandler']);\n\n\t\tthat.eventHandlers['closeHandler'] = (event: CustomEvent) => { that.onClose.emit(event); }\n\t\tthat.nativeElement.addEventListener('close', that.eventHandlers['closeHandler']);\n\n\t\tthat.eventHandlers['closingHandler'] = (event: CustomEvent) => { that.onClosing.emit(event); }\n\t\tthat.nativeElement.addEventListener('closing', that.eventHandlers['closingHandler']);\n\n\t}\n\n\t/** @description Remove event listeners. */\n\tprivate unlisten(): void {\n const that = this;\n\t\tif (that.eventHandlers['openHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('open', that.eventHandlers['openHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['openingHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('opening', that.eventHandlers['openingHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['closeHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('close', that.eventHandlers['closeHandler']);\n\t\t}\n\n\t\tif (that.eventHandlers['closingHandler']) {\n\t\t\tthat.nativeElement.removeEventListener('closing', that.eventHandlers['closingHandler']);\n\t\t}\n\n\t}\n}\n","import { NgModule } from '@angular/core';\n\nimport { TooltipComponent } from './smart.tooltip';\nimport { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';\n\n@NgModule({\n declarations: [TooltipComponent],\n\tschemas: [CUSTOM_ELEMENTS_SCHEMA],\n\texports: [TooltipComponent]\n})\n\nexport class TooltipModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
Binary file