-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsmart-webcomponents-angular-listmenu.umd.js
1475 lines (1438 loc) · 67 KB
/
smart-webcomponents-angular-listmenu.umd.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
if (!window['Smart']) {
window['Smart'] = { RenderMode: 'manual' };
}
else {
window['Smart'].RenderMode = 'manual';
}
import './../source/modules/smart.listmenu';
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core')) :
typeof define === 'function' && define.amd ? define('smart-webcomponents-angular/listmenu', ['exports', '@angular/core'], factory) :
(global = global || self, factory((global['smart-webcomponents-angular'] = global['smart-webcomponents-angular'] || {}, global['smart-webcomponents-angular'].listmenu = {}), global.ng.core));
}(this, (function (exports, core) { 'use strict';
/*! *****************************************************************************
Copyright (c) Microsoft Corporation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */
/* global Reflect, Promise */
var extendStatics = function(d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
function __extends(d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
}
var __assign = function() {
__assign = Object.assign || function __assign(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
function __rest(s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
}
function __decorate(decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
}
function __param(paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
}
function __metadata(metadataKey, metadataValue) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
}
function __awaiter(thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
}
function __generator(thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
}
function __createBinding(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}
function __exportStar(m, exports) {
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) exports[p] = m[p];
}
function __values(o) {
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
if (m) return m.call(o);
if (o && typeof o.length === "number") return {
next: function () {
if (o && i >= o.length) o = void 0;
return { value: o && o[i++], done: !o };
}
};
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
}
function __read(o, n) {
var m = typeof Symbol === "function" && o[Symbol.iterator];
if (!m) return o;
var i = m.call(o), r, ar = [], e;
try {
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
}
catch (error) { e = { error: error }; }
finally {
try {
if (r && !r.done && (m = i["return"])) m.call(i);
}
finally { if (e) throw e.error; }
}
return ar;
}
function __spread() {
for (var ar = [], i = 0; i < arguments.length; i++)
ar = ar.concat(__read(arguments[i]));
return ar;
}
function __spreadArrays() {
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
for (var r = Array(s), k = 0, i = 0; i < il; i++)
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
r[k] = a[j];
return r;
};
function __await(v) {
return this instanceof __await ? (this.v = v, this) : new __await(v);
}
function __asyncGenerator(thisArg, _arguments, generator) {
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
var g = generator.apply(thisArg, _arguments || []), i, q = [];
return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
function fulfill(value) { resume("next", value); }
function reject(value) { resume("throw", value); }
function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
}
function __asyncDelegator(o) {
var i, p;
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
}
function __asyncValues(o) {
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
var m = o[Symbol.asyncIterator], i;
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
}
function __makeTemplateObject(cooked, raw) {
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
return cooked;
};
function __importStar(mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result.default = mod;
return result;
}
function __importDefault(mod) {
return (mod && mod.__esModule) ? mod : { default: mod };
}
function __classPrivateFieldGet(receiver, privateMap) {
if (!privateMap.has(receiver)) {
throw new TypeError("attempted to get private field on non-instance");
}
return privateMap.get(receiver);
}
function __classPrivateFieldSet(receiver, privateMap, value) {
if (!privateMap.has(receiver)) {
throw new TypeError("attempted to set private field on non-instance");
}
privateMap.set(receiver, value);
return value;
}
var BaseElement = /** @class */ (function () {
function BaseElement(ref) {
this.onCreate = new core.EventEmitter();
this.onReady = new core.EventEmitter();
this.onAttach = new core.EventEmitter();
this.onDetach = new core.EventEmitter();
var that = this;
this.nativeElement = ref.nativeElement;
that.nativeElement.onAttached = function () {
that.onAttach.emit(that.nativeElement);
};
that.nativeElement.onDetached = function () {
that.onDetach.emit(that.nativeElement);
};
}
BaseElement.prototype.addEventListener = function (type, listener, options) {
if (options === void 0) { options = false; }
this.nativeElement.addEventListener(type, listener, options);
};
BaseElement.prototype.removeEventListener = function (type, listener, options) {
if (options === void 0) { options = false; }
this.nativeElement.removeEventListener(type, listener, options);
};
BaseElement.prototype.dispatchEvent = function (event) {
return this.nativeElement.dispatchEvent(event);
};
BaseElement.prototype.blur = function () {
this.nativeElement.blur();
};
BaseElement.prototype.click = function () {
this.nativeElement.click();
};
BaseElement.prototype.focus = function (options) {
this.nativeElement.focus(options);
};
Object.defineProperty(BaseElement.prototype, "locale", {
/** @description Sets or gets the language. Used in conjunction with the property messages. */
get: function () {
return this.nativeElement ? this.nativeElement.locale : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.locale = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(BaseElement.prototype, "localizeFormatFunction", {
/** @description Callback used to customize the format of the messages that are returned from the Localization Module. */
get: function () {
return this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(BaseElement.prototype, "messages", {
/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */
get: function () {
return this.nativeElement ? this.nativeElement.messages : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.messages = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(BaseElement.prototype, "rightToLeft", {
/** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */
get: function () {
return this.nativeElement ? this.nativeElement.rightToLeft : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.rightToLeft = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(BaseElement.prototype, "theme", {
/** @description Determines the theme. Theme defines the look of the element */
get: function () {
return this.nativeElement ? this.nativeElement.theme : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.theme = value : undefined;
},
enumerable: true,
configurable: true
});
__decorate([
core.Output()
], BaseElement.prototype, "onCreate", void 0);
__decorate([
core.Output()
], BaseElement.prototype, "onReady", void 0);
__decorate([
core.Output()
], BaseElement.prototype, "onAttach", void 0);
__decorate([
core.Output()
], BaseElement.prototype, "onDetach", void 0);
__decorate([
core.Input()
], BaseElement.prototype, "locale", null);
__decorate([
core.Input()
], BaseElement.prototype, "localizeFormatFunction", null);
__decorate([
core.Input()
], BaseElement.prototype, "messages", null);
__decorate([
core.Input()
], BaseElement.prototype, "rightToLeft", null);
__decorate([
core.Input()
], BaseElement.prototype, "theme", null);
return BaseElement;
}());
var Smart = window.Smart;
var ListMenuComponent = /** @class */ (function (_super) {
__extends(ListMenuComponent, _super);
function ListMenuComponent(ref) {
var _this = _super.call(this, ref) || this;
_this.eventHandlers = [];
/** @description This event is triggered when a smart-menu-items-group is expanded.
* @param event. The custom event. Custom event was created with: event.detail( item, label, value, path, children)
* item - The menu item that was expanded.
* label - The label of the item that was expanded.
* value - The value of the item that was expanded.
* path - The path of the item that was expanded, e.g. '0.1', '1.1.2'.
* children - The children of the item that was expanded.
*/
_this.onExpand = new core.EventEmitter();
/** @description This event is triggered when a menu item check state is changed.
* @param event. The custom event. Custom event was created with: event.detail( item, label, value, checked)
* item - The menu item which state was changed.
* label - The label of the item which state was changed.
* value - The value of the item which state was changed.
* checked - The checked state of the toggled item. If false the item is not toggled.
*/
_this.onItemCheckChange = new core.EventEmitter();
/** @description This event is triggered when a list menu item is clicked.
* @param event. The custom event. Custom event was created with: event.detail( item, label, value)
* item - The menu item that was clicked.
* label - The label of the clicked item.
* value - The value of the clicked item.
*/
_this.onItemClick = new core.EventEmitter();
/** @description This event is triggered when the user scrolls to the bottom of the ListMenu.
* @param event. The custom event. */
_this.onScrollBottomReached = new core.EventEmitter();
/** @description This event is triggered when the user swipes to the left inside the ListMenu.
* @param event. The custom event. */
_this.onSwipeleft = new core.EventEmitter();
/** @description This event is triggered when the user swipes to the right inside the ListMenu.
* @param event. The custom event. */
_this.onSwiperight = new core.EventEmitter();
_this.nativeElement = ref.nativeElement;
return _this;
}
/** @description Creates the component on demand.
* @param properties An optional object of properties, which will be added to the template binded ones.
*/
ListMenuComponent.prototype.createComponent = function (properties) {
if (properties === void 0) { properties = {}; }
this.nativeElement = document.createElement('smart-list-menu');
for (var propertyName in properties) {
this.nativeElement[propertyName] = properties[propertyName];
}
return this.nativeElement;
};
Object.defineProperty(ListMenuComponent.prototype, "animation", {
/** @description Sets or gets the animation mode. Animation is disabled when the property is set to 'none' */
get: function () {
return this.nativeElement ? this.nativeElement.animation : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.animation = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "autoFocusOnMouseenter", {
/** @description Determines whether the element becomes focused on hover or not. */
get: function () {
return this.nativeElement ? this.nativeElement.autoFocusOnMouseenter : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.autoFocusOnMouseenter = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "checkable", {
/** @description Allows top-level ListMenu items to be checkable. */
get: function () {
return this.nativeElement ? this.nativeElement.checkable : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.checkable = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "checkboxes", {
/** @description Sets or gets whether checkboxes and radio buttons can be displayed in the top level menu groups. This property is applicable only to the ListMenu itself, and not its smart-menu-item/smart-menu-items-group subitems. See also the property checkable. */
get: function () {
return this.nativeElement ? this.nativeElement.checkboxes : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.checkboxes = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "checkMode", {
/** @description Sets the check mode of top-level ListMenu items(groups). */
get: function () {
return this.nativeElement ? this.nativeElement.checkMode : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.checkMode = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "dataSource", {
/** @description Determines the data source that will be loaded to the ListMenu. The data source represents an array of objects with the following properties: label - a string representing the text content of the item.value - the value of the item.shortcut - a string representing a shortuct for the item. It will be displayed inside the item.items - allows to define an array of sub menu items. */
get: function () {
return this.nativeElement ? this.nativeElement.dataSource : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.dataSource = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "disabled", {
/** @description Enables or disables the element. */
get: function () {
return this.nativeElement ? this.nativeElement.disabled : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.disabled = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "displayLoadingIndicator", {
/** @description Displays or hides the loading indicator. Loading indicator is hidden by default. */
get: function () {
return this.nativeElement ? this.nativeElement.displayLoadingIndicator : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.displayLoadingIndicator = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "displayMember", {
/** @description Determines the field in the data source that corresponds to an item's label. */
get: function () {
return this.nativeElement ? this.nativeElement.displayMember : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.displayMember = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "dropDownAppendTo", {
/** @description Sets custom outer container where the minimized dropdown will be appednded. By default it is in the ListMenu. The value of the property can be an HTML element or the id of an HTML element. */
get: function () {
return this.nativeElement ? this.nativeElement.dropDownAppendTo : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.dropDownAppendTo = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "dropDownOverlay", {
/** @description If this property is enabled, when the element's minimized dropdown is opened, a transparent overlay is positioned between the dropdown and the rest of the document. */
get: function () {
return this.nativeElement ? this.nativeElement.dropDownOverlay : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.dropDownOverlay = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "dropDownPosition", {
/** @description Sets or gets the opening direction of the ListMenu minimized dropdown. */
get: function () {
return this.nativeElement ? this.nativeElement.dropDownPosition : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.dropDownPosition = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "enableMouseWheelAction", {
/** @description Enables or disables scrolling using the mouse wheel through overflowing menu items. */
get: function () {
return this.nativeElement ? this.nativeElement.enableMouseWheelAction : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.enableMouseWheelAction = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "filterable", {
/** @description Determines whether menu item filtering is enabled. When enabled a filter input is shown at the top of the element. Only items in the current view can be filtered. */
get: function () {
return this.nativeElement ? this.nativeElement.filterable : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.filterable = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "filterInputPlaceholder", {
/** @description Determines the placeholder for the filter input. */
get: function () {
return this.nativeElement ? this.nativeElement.filterInputPlaceholder : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.filterInputPlaceholder = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "filterMember", {
/** @description Determines the MenuItem property that will be used as a filtering criteria. By default the label property is used. It can be set to 'value' if the user wants to filter by the 'value' property or 'textContent' if the user wants to filter by text inside the MenuItem's content or any other property. */
get: function () {
return this.nativeElement ? this.nativeElement.filterMember : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.filterMember = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "filterMode", {
/** @description Determines the filtering mode. */
get: function () {
return this.nativeElement ? this.nativeElement.filterMode : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.filterMode = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "grouped", {
/** @description If enabled, the items will be grouped by their first letter and sorted. */
get: function () {
return this.nativeElement ? this.nativeElement.grouped : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.grouped = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "itemsMember", {
/** @description Determines the field in the data source that corresponds to an item group's subitems collection. */
get: function () {
return this.nativeElement ? this.nativeElement.itemsMember : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.itemsMember = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "loadingIndicatorPlaceholder", {
/** @description Determines the text that will be displayed next to the loading indicator when the loader is visible and it's position is top or bottom. */
get: function () {
return this.nativeElement ? this.nativeElement.loadingIndicatorPlaceholder : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.loadingIndicatorPlaceholder = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "loadingIndicatorPosition", {
/** @description Determines the position of the loading indicator inside the element. */
get: function () {
return this.nativeElement ? this.nativeElement.loadingIndicatorPosition : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.loadingIndicatorPosition = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "locale", {
/** @description Sets or gets the language. Used in conjunction with the property messages. */
get: function () {
return this.nativeElement ? this.nativeElement.locale : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.locale = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "localizeFormatFunction", {
/** @description Callback used to customize the format of the messages that are returned from the Localization Module. */
get: function () {
return this.nativeElement ? this.nativeElement.localizeFormatFunction : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.localizeFormatFunction = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "messages", {
/** @description Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. */
get: function () {
return this.nativeElement ? this.nativeElement.messages : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.messages = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "minimizeIconTemplate", {
/** @description Allows to load a custom minimize icon from an HTMLTemplateElement.The property acceps the id of an HTMLTemplateElement or it's direct instance. */
get: function () {
return this.nativeElement ? this.nativeElement.minimizeIconTemplate : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.minimizeIconTemplate = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "minimizeWidth", {
/** @description Determines the minimum width of the ListMenu at which it will switch from normal to minimized mode. If set to null, the ListMenu does not minimize automatically. */
get: function () {
return this.nativeElement ? this.nativeElement.minimizeWidth : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.minimizeWidth = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "overflow", {
/** @description Sets or gets the ListMenu's scroll buttons behavior. */
get: function () {
return this.nativeElement ? this.nativeElement.overflow : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.overflow = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "readonly", {
/** @description If the element is readonly, users cannot interact with it. */
get: function () {
return this.nativeElement ? this.nativeElement.readonly : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.readonly = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "rightToLeft", {
/** @description Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. */
get: function () {
return this.nativeElement ? this.nativeElement.rightToLeft : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.rightToLeft = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "scrollMode", {
/** @description Determines whether to use scrollbar or scrollButtons when content overflows an element's box. */
get: function () {
return this.nativeElement ? this.nativeElement.scrollMode : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.scrollMode = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "theme", {
/** @description Determines the theme. Theme defines the look of the element */
get: function () {
return this.nativeElement ? this.nativeElement.theme : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.theme = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "unfocusable", {
/** @description If is set to true, the element cannot be focused. */
get: function () {
return this.nativeElement ? this.nativeElement.unfocusable : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.unfocusable = value : undefined;
},
enumerable: true,
configurable: true
});
Object.defineProperty(ListMenuComponent.prototype, "valueMember", {
/** @description Determines the field in the data source that corresponds to an item's value. */
get: function () {
return this.nativeElement ? this.nativeElement.valueMember : undefined;
},
set: function (value) {
this.nativeElement ? this.nativeElement.valueMember = value : undefined;
},
enumerable: true,
configurable: true
});
/** @description Adds an item to the list.
* @param {HTMLElement} Item. A smart-menu-item to add to the List Menu.
* @param {HTMLElement | string} Parent?. The smart-menu-items-group (or its id or numeric path) to add the item to.
*/
ListMenuComponent.prototype.addItem = function (Item, Parent) {
var _this = this;
if (this.nativeElement.isRendered) {
this.nativeElement.addItem(Item, Parent);
}
else {
this.nativeElement.whenRendered(function () {
_this.nativeElement.addItem(Item, Parent);
});
}
};
/** @description Navigates to the previous page (smart-menu-items-group).
* @param {boolean} animation?. If set to false, disables collapse animation even if animation is enabled for the element
*/
ListMenuComponent.prototype.back = function (animation) {
var _this = this;
if (this.nativeElement.isRendered) {
this.nativeElement.back(animation);
}
else {
this.nativeElement.whenRendered(function () {
_this.nativeElement.back(animation);
});
}
};
/** @description Navigates to a particular page (smart-menu-items-group).
* @param {string} id. The id or numeric path of a page (smart-menu-items-group).
*/
ListMenuComponent.prototype.changePage = function (id) {
var _this = this;
if (this.nativeElement.isRendered) {
this.nativeElement.changePage(id);
}
else {
this.nativeElement.whenRendered(function () {
_this.nativeElement.changePage(id);
});
}
};
/** @description Checks an item.
* @param {HTMLElement | string} item. smart-menu-item/smart-menu-items-group (or its id or numeric path).
*/
ListMenuComponent.prototype.checkItem = function (item) {
var _this = this;
if (this.nativeElement.isRendered) {
this.nativeElement.checkItem(item);
}
else {
this.nativeElement.whenRendered(function () {
_this.nativeElement.checkItem(item);
});
}
};
/** @description Gets an item by its id or numeric path.
* @param {string} id. The id or numeric path of an item
* @returns {HTMLElement}
*/
ListMenuComponent.prototype.getItem = function (id) {
return __awaiter(this, void 0, void 0, function () {
var getResultOnRender, result;
var _this = this;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
getResultOnRender = function () {
return new Promise(function (resolve) {
_this.nativeElement.whenRendered(function () {
var result = _this.nativeElement.getItem(id);
resolve(result);
});
});
};
return [4 /*yield*/, getResultOnRender()];
case 1:
result = _a.sent();
return [2 /*return*/, result];
}
});
});
};
/** @description Maximizes the List Menu.
*/
ListMenuComponent.prototype.maximize = function () {
var _this = this;
if (this.nativeElement.isRendered) {
this.nativeElement.maximize();
}
else {
this.nativeElement.whenRendered(function () {
_this.nativeElement.maximize();
});
}
};
/** @description Minimizes the List Menu. An icon is displayed and the menu is hidden when minimized.
*/
ListMenuComponent.prototype.minimize = function () {
var _this = this;
if (this.nativeElement.isRendered) {
this.nativeElement.minimize();
}
else {
this.nativeElement.whenRendered(function () {
_this.nativeElement.minimize();
});
}
};
/** @description Removes an item.
* @param {HTMLElement | string} item. The smart-menu-item/smart-menu-items-group (or its id or numeric path) to remove.
*/
ListMenuComponent.prototype.removeItem = function (item) {
var _this = this;
if (this.nativeElement.isRendered) {
this.nativeElement.removeItem(item);
}
else {
this.nativeElement.whenRendered(function () {
_this.nativeElement.removeItem(item);
});
}
};
/** @description Unchecks an item.
* @param {HTMLElement | string} item. smart-menu-item/smart-menu-items-group (or its id or numeric path).
*/
ListMenuComponent.prototype.uncheckItem = function (item) {
var _this = this;
if (this.nativeElement.isRendered) {
this.nativeElement.uncheckItem(item);
}
else {
this.nativeElement.whenRendered(function () {
_this.nativeElement.uncheckItem(item);
});
}
};
Object.defineProperty(ListMenuComponent.prototype, "isRendered", {
get: function () {
return this.nativeElement ? this.nativeElement.isRendered : false;
},
enumerable: true,
configurable: true
});
ListMenuComponent.prototype.ngOnInit = function () {
};
ListMenuComponent.prototype.ngAfterViewInit = function () {
var that = this;
that.onCreate.emit(that.nativeElement);
Smart.Render();
this.nativeElement.classList.add('smart-angular');
this.nativeElement.whenRendered(function () { that.onReady.emit(that.nativeElement); });
this.listen();
};
ListMenuComponent.prototype.ngOnDestroy = function () {
this.unlisten();
};
ListMenuComponent.prototype.ngOnChanges = function (changes) {
if (this.nativeElement && this.nativeElement.isRendered) {
for (var propName in changes) {
if (changes.hasOwnProperty(propName)) {
this.nativeElement[propName] = changes[propName].currentValue;
}
}
}
};
/** @description Add event listeners. */
ListMenuComponent.prototype.listen = function () {
var that = this;
that.eventHandlers['expandHandler'] = function (event) { that.onExpand.emit(event); };
that.nativeElement.addEventListener('expand', that.eventHandlers['expandHandler']);
that.eventHandlers['itemCheckChangeHandler'] = function (event) { that.onItemCheckChange.emit(event); };
that.nativeElement.addEventListener('itemCheckChange', that.eventHandlers['itemCheckChangeHandler']);
that.eventHandlers['itemClickHandler'] = function (event) { that.onItemClick.emit(event); };
that.nativeElement.addEventListener('itemClick', that.eventHandlers['itemClickHandler']);
that.eventHandlers['scrollBottomReachedHandler'] = function (event) { that.onScrollBottomReached.emit(event); };
that.nativeElement.addEventListener('scrollBottomReached', that.eventHandlers['scrollBottomReachedHandler']);
that.eventHandlers['swipeleftHandler'] = function (event) { that.onSwipeleft.emit(event); };
that.nativeElement.addEventListener('swipeleft', that.eventHandlers['swipeleftHandler']);
that.eventHandlers['swiperightHandler'] = function (event) { that.onSwiperight.emit(event); };
that.nativeElement.addEventListener('swiperight', that.eventHandlers['swiperightHandler']);
};
/** @description Remove event listeners. */
ListMenuComponent.prototype.unlisten = function () {
var that = this;
if (that.eventHandlers['expandHandler']) {
that.nativeElement.removeEventListener('expand', that.eventHandlers['expandHandler']);
}
if (that.eventHandlers['itemCheckChangeHandler']) {
that.nativeElement.removeEventListener('itemCheckChange', that.eventHandlers['itemCheckChangeHandler']);
}
if (that.eventHandlers['itemClickHandler']) {
that.nativeElement.removeEventListener('itemClick', that.eventHandlers['itemClickHandler']);
}
if (that.eventHandlers['scrollBottomReachedHandler']) {
that.nativeElement.removeEventListener('scrollBottomReached', that.eventHandlers['scrollBottomReachedHandler']);
}
if (that.eventHandlers['swipeleftHandler']) {
that.nativeElement.removeEventListener('swipeleft', that.eventHandlers['swipeleftHandler']);
}
if (that.eventHandlers['swiperightHandler']) {
that.nativeElement.removeEventListener('swiperight', that.eventHandlers['swiperightHandler']);
}
};
ListMenuComponent.ctorParameters = function () { return [
{ type: core.ElementRef }
]; };
__decorate([
core.Input()
], ListMenuComponent.prototype, "animation", null);
__decorate([
core.Input()
], ListMenuComponent.prototype, "autoFocusOnMouseenter", null);
__decorate([
core.Input()
], ListMenuComponent.prototype, "checkable", null);
__decorate([
core.Input()
], ListMenuComponent.prototype, "checkboxes", null);
__decorate([
core.Input()
], ListMenuComponent.prototype, "checkMode", null);
__decorate([
core.Input()
], ListMenuComponent.prototype, "dataSource", null);
__decorate([
core.Input()
], ListMenuComponent.prototype, "disabled", null);
__decorate([