@ts-core/angular 15.0.53 → 15.0.55
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/VIModule.d.ts +14 -15
- package/directive/AutoScrollBottomDirective.d.ts +1 -1
- package/directive/ScrollDirective.d.ts +19 -4
- package/esm2020/VIModule.mjs +1 -5
- package/esm2020/directive/AutoScrollBottomDirective.mjs +3 -3
- package/esm2020/directive/ScrollCheckDirective.mjs +3 -5
- package/esm2020/directive/ScrollDirective.mjs +103 -7
- package/esm2020/public-api.mjs +1 -2
- package/fesm2015/ts-core-angular.mjs +13 -51
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +13 -51
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +0 -1
- package/directive/ScrollDirective1.d.ts +0 -8
- package/directive/base/ScrollDirectiveBase.d.ts +0 -23
- package/directive/base/index.d.ts +0 -1
- package/esm2020/directive/ScrollDirective1.mjs +0 -22
- package/esm2020/directive/base/ScrollDirectiveBase.mjs +0 -115
- package/esm2020/directive/base/index.mjs +0 -2
|
@@ -1422,7 +1422,7 @@ var Direction;
|
|
|
1422
1422
|
Direction["HORIZONTAL"] = "HORIZONTAL";
|
|
1423
1423
|
})(Direction || (Direction = {}));
|
|
1424
1424
|
|
|
1425
|
-
class
|
|
1425
|
+
class ScrollDirective extends Destroyable {
|
|
1426
1426
|
// --------------------------------------------------------------------------
|
|
1427
1427
|
//
|
|
1428
1428
|
// Constructor
|
|
@@ -1440,7 +1440,7 @@ class ScrollDirectiveBase extends Destroyable {
|
|
|
1440
1440
|
this._scrollValue = 0;
|
|
1441
1441
|
this.initializeHandler = () => this.initialize();
|
|
1442
1442
|
this.element = ViewUtil.parseElement(element);
|
|
1443
|
-
this.timer = setTimeout(this.initializeHandler,
|
|
1443
|
+
this.timer = setTimeout(this.initializeHandler, ScrollDirective.INITIALIZATION_DELAY);
|
|
1444
1444
|
}
|
|
1445
1445
|
// --------------------------------------------------------------------------
|
|
1446
1446
|
//
|
|
@@ -1518,11 +1518,14 @@ class ScrollDirectiveBase extends Destroyable {
|
|
|
1518
1518
|
// Static Properties
|
|
1519
1519
|
//
|
|
1520
1520
|
// --------------------------------------------------------------------------
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1525
|
-
type:
|
|
1521
|
+
ScrollDirective.INITIALIZATION_DELAY = 1;
|
|
1522
|
+
ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1523
|
+
ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollDirective, selector: "[vi-scroll]", inputs: { scrollValue: "scrollValue" }, outputs: { scrolled: "scrolled" }, host: { listeners: { "scroll": "scrollHandler()" } }, usesInheritance: true, ngImport: i0 });
|
|
1524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
1525
|
+
type: Directive,
|
|
1526
|
+
args: [{
|
|
1527
|
+
selector: '[vi-scroll]'
|
|
1528
|
+
}]
|
|
1526
1529
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { scrolled: [{
|
|
1527
1530
|
type: Output
|
|
1528
1531
|
}], scrollHandler: [{
|
|
@@ -1532,25 +1535,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1532
1535
|
type: Input
|
|
1533
1536
|
}] } });
|
|
1534
1537
|
|
|
1535
|
-
class ScrollDirective extends ScrollDirectiveBase {
|
|
1536
|
-
// --------------------------------------------------------------------------
|
|
1537
|
-
//
|
|
1538
|
-
// Constructor
|
|
1539
|
-
//
|
|
1540
|
-
// --------------------------------------------------------------------------
|
|
1541
|
-
constructor(element) {
|
|
1542
|
-
super(element);
|
|
1543
|
-
}
|
|
1544
|
-
}
|
|
1545
|
-
ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1546
|
-
ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollDirective, selector: "[vi-scroll]", usesInheritance: true, ngImport: i0 });
|
|
1547
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
1548
|
-
type: Directive,
|
|
1549
|
-
args: [{
|
|
1550
|
-
selector: '[vi-scroll]'
|
|
1551
|
-
}]
|
|
1552
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
1553
|
-
|
|
1554
1538
|
class InfiniteScrollDirective extends ScrollDirective {
|
|
1555
1539
|
constructor() {
|
|
1556
1540
|
super(...arguments);
|
|
@@ -1721,7 +1705,7 @@ class AutoScrollBottomDirective extends InfiniteScrollDirective {
|
|
|
1721
1705
|
}
|
|
1722
1706
|
}
|
|
1723
1707
|
AutoScrollBottomDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1724
|
-
AutoScrollBottomDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AutoScrollBottomDirective, selector: "[vi-auto-scroll-bottom]", inputs: { trigger: ["vi-auto-bottom
|
|
1708
|
+
AutoScrollBottomDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AutoScrollBottomDirective, selector: "[vi-auto-scroll-bottom]", inputs: { trigger: ["vi-auto-scroll-bottom", "trigger"] }, outputs: { triggerChanged: "triggerChanged" }, usesInheritance: true, ngImport: i0 });
|
|
1725
1709
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
|
|
1726
1710
|
type: Directive,
|
|
1727
1711
|
args: [{
|
|
@@ -1731,7 +1715,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1731
1715
|
type: Output
|
|
1732
1716
|
}], trigger: [{
|
|
1733
1717
|
type: Input,
|
|
1734
|
-
args: ['vi-auto-bottom
|
|
1718
|
+
args: ['vi-auto-scroll-bottom']
|
|
1735
1719
|
}] } });
|
|
1736
1720
|
|
|
1737
1721
|
class ClickToCopyDirective extends Destroyable {
|
|
@@ -2101,25 +2085,6 @@ class StructureDirective extends DestroyableContainer {
|
|
|
2101
2085
|
}
|
|
2102
2086
|
}
|
|
2103
2087
|
|
|
2104
|
-
class ScrollDirective1 extends ScrollDirectiveBase {
|
|
2105
|
-
// --------------------------------------------------------------------------
|
|
2106
|
-
//
|
|
2107
|
-
// Constructor
|
|
2108
|
-
//
|
|
2109
|
-
// --------------------------------------------------------------------------
|
|
2110
|
-
constructor(element) {
|
|
2111
|
-
super(element);
|
|
2112
|
-
}
|
|
2113
|
-
}
|
|
2114
|
-
ScrollDirective1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective1, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2115
|
-
ScrollDirective1.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollDirective1, selector: "[vi-scroll-1]", usesInheritance: true, ngImport: i0 });
|
|
2116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective1, decorators: [{
|
|
2117
|
-
type: Directive,
|
|
2118
|
-
args: [{
|
|
2119
|
-
selector: '[vi-scroll-1]'
|
|
2120
|
-
}]
|
|
2121
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2122
|
-
|
|
2123
2088
|
class ScrollCheckDirective extends DestroyableContainer {
|
|
2124
2089
|
//--------------------------------------------------------------------------
|
|
2125
2090
|
//
|
|
@@ -6856,7 +6821,6 @@ let declarations = [
|
|
|
6856
6821
|
FocusDirective,
|
|
6857
6822
|
ResizeDirective,
|
|
6858
6823
|
ScrollDirective,
|
|
6859
|
-
ScrollDirective1,
|
|
6860
6824
|
ScrollCheckDirective,
|
|
6861
6825
|
ClickToCopyDirective,
|
|
6862
6826
|
SelectOnFocusDirective,
|
|
@@ -6917,7 +6881,6 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6917
6881
|
FocusDirective,
|
|
6918
6882
|
ResizeDirective,
|
|
6919
6883
|
ScrollDirective,
|
|
6920
|
-
ScrollDirective1,
|
|
6921
6884
|
ScrollCheckDirective,
|
|
6922
6885
|
ClickToCopyDirective,
|
|
6923
6886
|
SelectOnFocusDirective,
|
|
@@ -6943,7 +6906,6 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6943
6906
|
FocusDirective,
|
|
6944
6907
|
ResizeDirective,
|
|
6945
6908
|
ScrollDirective,
|
|
6946
|
-
ScrollDirective1,
|
|
6947
6909
|
ScrollCheckDirective,
|
|
6948
6910
|
ClickToCopyDirective,
|
|
6949
6911
|
SelectOnFocusDirective,
|
|
@@ -6989,5 +6951,5 @@ const VI_ANGULAR_OPTIONS = new InjectionToken(`VI_ANGULAR_OPTIONS`);
|
|
|
6989
6951
|
* Generated bundle index. Do not edit.
|
|
6990
6952
|
*/
|
|
6991
6953
|
|
|
6992
|
-
export { APPLICATION_INJECTOR, ApplicationBaseComponent, ApplicationComponent, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BooleanValueStorage, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, DateValueStorage, Direction, FinancePipe, FocusDirective, FocusManager, FormElementAsync, FormElementSync, HTMLContentTitleDirective, HTMLTitleDirective, INotification, INotificationContent, IUser, IVIOptions, IWindow, IWindowContent, InfiniteScrollDirective, IsBrowserDirective, IsServerDirective, LANGUAGE_OPTIONS, LanguageDirective, LanguageHasDirective, LanguageModule, LanguagePipe, LanguagePipeHas, LanguagePipeHasPure, LanguagePipePure, LanguageRequireResolver, LanguageResolver, LazyModuleLoader, ListItem, ListItems, LocalStorageService, LoginBaseService, LoginBaseServiceEvent, LoginGuard, LoginIfCanGuard, LoginNotGuard, LoginRequireResolver, LoginResolver, LoginTokenStorage, MenuItem, MenuItemBase, MenuItems, MessageBaseComponent, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationConfig, NotificationEvent, NotificationService, NotificationServiceEvent, PipeBaseService, PlatformService, PrettifyPipe, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterBaseService, RouterSelectListItems, SanitizePipe, ScrollCheckDirective, ScrollDirective,
|
|
6954
|
+
export { APPLICATION_INJECTOR, ApplicationBaseComponent, ApplicationComponent, AspectRatioResizeDirective, AssetBackgroundDirective, AssetBackgroundPipe, AssetFilePipe, AssetIconPipe, AssetImagePipe, AssetModule, AssetSoundPipe, AssetVideoPipe, AutoScrollBottomDirective, BooleanValueStorage, BottomSheetService, COOKIE_OPTIONS, CamelCasePipe, CanDeactivateGuard, ClickToCopyDirective, ClickToSelectDirective, CookieModule, CookieOptions, CookieService, DateValueStorage, Direction, FinancePipe, FocusDirective, FocusManager, FormElementAsync, FormElementSync, HTMLContentTitleDirective, HTMLTitleDirective, INotification, INotificationContent, IUser, IVIOptions, IWindow, IWindowContent, InfiniteScrollDirective, IsBrowserDirective, IsServerDirective, LANGUAGE_OPTIONS, LanguageDirective, LanguageHasDirective, LanguageModule, LanguagePipe, LanguagePipeHas, LanguagePipeHasPure, LanguagePipePure, LanguageRequireResolver, LanguageResolver, LazyModuleLoader, ListItem, ListItems, LocalStorageService, LoginBaseService, LoginBaseServiceEvent, LoginGuard, LoginIfCanGuard, LoginNotGuard, LoginRequireResolver, LoginResolver, LoginTokenStorage, MenuItem, MenuItemBase, MenuItems, MessageBaseComponent, MomentDateAdaptivePipe, MomentDateFromNowPipe, MomentDatePipe, MomentTimePipe, NavigationMenuItem, NgModelErrorPipe, NotificationConfig, NotificationEvent, NotificationService, NotificationServiceEvent, PipeBaseService, PlatformService, PrettifyPipe, QuestionEvent, QuestionManager, QuestionMode, ResizeDirective, ResizeManager, RouterBaseService, RouterSelectListItems, SanitizePipe, ScrollCheckDirective, ScrollDirective, SelectListItem, SelectListItems, SelectOnFocusDirective, StartCasePipe, StructureDirective, THEME_OPTIONS, ThemeAssetBackgroundDirective, ThemeAssetDirective, ThemeAssetIconDirective, ThemeAssetImageDirective, ThemeModule, ThemeStyleDirective, ThemeStyleHoverDirective, ThemeToggleDirective, TimePipe, TransportLazy, TransportLazyModule, TransportLazyModuleLoadedEvent, TruncatePipe, UserBaseService, UserBaseServiceEvent, VIModule, VI_ANGULAR_OPTIONS, ValueStorage, ViewUtil, WINDOW_CONTENT_CONTAINER, WindowAlign, WindowBase, WindowClosedError, WindowConfig, WindowEvent, WindowService, WindowServiceEvent, cookieServiceFactory, initializerFactory, languageServiceFactory, localStorageServiceFactory, loggerServiceFactory, loginTokenStorageServiceFactory, nativeWindowServiceFactory, themeAssetServiceFactory, themeServiceFactory };
|
|
6993
6955
|
//# sourceMappingURL=ts-core-angular.mjs.map
|