@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
|
@@ -1425,7 +1425,7 @@ var Direction;
|
|
|
1425
1425
|
Direction["HORIZONTAL"] = "HORIZONTAL";
|
|
1426
1426
|
})(Direction || (Direction = {}));
|
|
1427
1427
|
|
|
1428
|
-
class
|
|
1428
|
+
class ScrollDirective extends Destroyable {
|
|
1429
1429
|
// --------------------------------------------------------------------------
|
|
1430
1430
|
//
|
|
1431
1431
|
// Constructor
|
|
@@ -1443,7 +1443,7 @@ class ScrollDirectiveBase extends Destroyable {
|
|
|
1443
1443
|
this._scrollValue = 0;
|
|
1444
1444
|
this.initializeHandler = () => this.initialize();
|
|
1445
1445
|
this.element = ViewUtil.parseElement(element);
|
|
1446
|
-
this.timer = setTimeout(this.initializeHandler,
|
|
1446
|
+
this.timer = setTimeout(this.initializeHandler, ScrollDirective.INITIALIZATION_DELAY);
|
|
1447
1447
|
}
|
|
1448
1448
|
// --------------------------------------------------------------------------
|
|
1449
1449
|
//
|
|
@@ -1521,11 +1521,14 @@ class ScrollDirectiveBase extends Destroyable {
|
|
|
1521
1521
|
// Static Properties
|
|
1522
1522
|
//
|
|
1523
1523
|
// --------------------------------------------------------------------------
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1528
|
-
type:
|
|
1524
|
+
ScrollDirective.INITIALIZATION_DELAY = 1;
|
|
1525
|
+
ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1526
|
+
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 });
|
|
1527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
1528
|
+
type: Directive,
|
|
1529
|
+
args: [{
|
|
1530
|
+
selector: '[vi-scroll]'
|
|
1531
|
+
}]
|
|
1529
1532
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { scrolled: [{
|
|
1530
1533
|
type: Output
|
|
1531
1534
|
}], scrollHandler: [{
|
|
@@ -1535,25 +1538,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1535
1538
|
type: Input
|
|
1536
1539
|
}] } });
|
|
1537
1540
|
|
|
1538
|
-
class ScrollDirective extends ScrollDirectiveBase {
|
|
1539
|
-
// --------------------------------------------------------------------------
|
|
1540
|
-
//
|
|
1541
|
-
// Constructor
|
|
1542
|
-
//
|
|
1543
|
-
// --------------------------------------------------------------------------
|
|
1544
|
-
constructor(element) {
|
|
1545
|
-
super(element);
|
|
1546
|
-
}
|
|
1547
|
-
}
|
|
1548
|
-
ScrollDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1549
|
-
ScrollDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollDirective, selector: "[vi-scroll]", usesInheritance: true, ngImport: i0 });
|
|
1550
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective, decorators: [{
|
|
1551
|
-
type: Directive,
|
|
1552
|
-
args: [{
|
|
1553
|
-
selector: '[vi-scroll]'
|
|
1554
|
-
}]
|
|
1555
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
1556
|
-
|
|
1557
1541
|
class InfiniteScrollDirective extends ScrollDirective {
|
|
1558
1542
|
constructor() {
|
|
1559
1543
|
super(...arguments);
|
|
@@ -1724,7 +1708,7 @@ class AutoScrollBottomDirective extends InfiniteScrollDirective {
|
|
|
1724
1708
|
}
|
|
1725
1709
|
}
|
|
1726
1710
|
AutoScrollBottomDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AutoScrollBottomDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1727
|
-
AutoScrollBottomDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: AutoScrollBottomDirective, selector: "[vi-auto-scroll-bottom]", inputs: { trigger: ["vi-auto-bottom
|
|
1711
|
+
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 });
|
|
1728
1712
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AutoScrollBottomDirective, decorators: [{
|
|
1729
1713
|
type: Directive,
|
|
1730
1714
|
args: [{
|
|
@@ -1734,7 +1718,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1734
1718
|
type: Output
|
|
1735
1719
|
}], trigger: [{
|
|
1736
1720
|
type: Input,
|
|
1737
|
-
args: ['vi-auto-bottom
|
|
1721
|
+
args: ['vi-auto-scroll-bottom']
|
|
1738
1722
|
}] } });
|
|
1739
1723
|
|
|
1740
1724
|
class ClickToCopyDirective extends Destroyable {
|
|
@@ -2104,25 +2088,6 @@ class StructureDirective extends DestroyableContainer {
|
|
|
2104
2088
|
}
|
|
2105
2089
|
}
|
|
2106
2090
|
|
|
2107
|
-
class ScrollDirective1 extends ScrollDirectiveBase {
|
|
2108
|
-
// --------------------------------------------------------------------------
|
|
2109
|
-
//
|
|
2110
|
-
// Constructor
|
|
2111
|
-
//
|
|
2112
|
-
// --------------------------------------------------------------------------
|
|
2113
|
-
constructor(element) {
|
|
2114
|
-
super(element);
|
|
2115
|
-
}
|
|
2116
|
-
}
|
|
2117
|
-
ScrollDirective1.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective1, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2118
|
-
ScrollDirective1.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ScrollDirective1, selector: "[vi-scroll-1]", usesInheritance: true, ngImport: i0 });
|
|
2119
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ScrollDirective1, decorators: [{
|
|
2120
|
-
type: Directive,
|
|
2121
|
-
args: [{
|
|
2122
|
-
selector: '[vi-scroll-1]'
|
|
2123
|
-
}]
|
|
2124
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2125
|
-
|
|
2126
2091
|
class ScrollCheckDirective extends DestroyableContainer {
|
|
2127
2092
|
//--------------------------------------------------------------------------
|
|
2128
2093
|
//
|
|
@@ -6910,7 +6875,6 @@ let declarations = [
|
|
|
6910
6875
|
FocusDirective,
|
|
6911
6876
|
ResizeDirective,
|
|
6912
6877
|
ScrollDirective,
|
|
6913
|
-
ScrollDirective1,
|
|
6914
6878
|
ScrollCheckDirective,
|
|
6915
6879
|
ClickToCopyDirective,
|
|
6916
6880
|
SelectOnFocusDirective,
|
|
@@ -6971,7 +6935,6 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6971
6935
|
FocusDirective,
|
|
6972
6936
|
ResizeDirective,
|
|
6973
6937
|
ScrollDirective,
|
|
6974
|
-
ScrollDirective1,
|
|
6975
6938
|
ScrollCheckDirective,
|
|
6976
6939
|
ClickToCopyDirective,
|
|
6977
6940
|
SelectOnFocusDirective,
|
|
@@ -6997,7 +6960,6 @@ VIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2
|
|
|
6997
6960
|
FocusDirective,
|
|
6998
6961
|
ResizeDirective,
|
|
6999
6962
|
ScrollDirective,
|
|
7000
|
-
ScrollDirective1,
|
|
7001
6963
|
ScrollCheckDirective,
|
|
7002
6964
|
ClickToCopyDirective,
|
|
7003
6965
|
SelectOnFocusDirective,
|
|
@@ -7043,5 +7005,5 @@ const VI_ANGULAR_OPTIONS = new InjectionToken(`VI_ANGULAR_OPTIONS`);
|
|
|
7043
7005
|
* Generated bundle index. Do not edit.
|
|
7044
7006
|
*/
|
|
7045
7007
|
|
|
7046
|
-
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,
|
|
7008
|
+
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 };
|
|
7047
7009
|
//# sourceMappingURL=ts-core-angular.mjs.map
|