@skyux/core 6.3.3 → 6.4.0
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/documentation.json +925 -684
- package/esm2020/index.mjs +3 -1
- package/esm2020/lib/modules/trim/trim.directive.mjs +67 -0
- package/esm2020/lib/modules/trim/trim.module.mjs +16 -0
- package/fesm2015/skyux-core.mjs +76 -1
- package/fesm2015/skyux-core.mjs.map +1 -1
- package/fesm2020/skyux-core.mjs +76 -1
- package/fesm2020/skyux-core.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/lib/modules/trim/trim.directive.d.ts +16 -0
- package/lib/modules/trim/trim.module.d.ts +7 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
@@ -50,6 +50,7 @@ export * from './lib/modules/resize-observer/resize-observer-media-query.service
|
|
50
50
|
export * from './lib/modules/scrollable-host/scrollable-host.service';
|
51
51
|
export * from './lib/modules/title/set-title-args';
|
52
52
|
export * from './lib/modules/title/title.service';
|
53
|
+
export * from './lib/modules/trim/trim.module';
|
53
54
|
export * from './lib/modules/ui-config/ui-config.service';
|
54
55
|
export * from './lib/modules/viewkeeper/viewkeeper-host-options';
|
55
56
|
export * from './lib/modules/viewkeeper/viewkeeper-options';
|
@@ -59,3 +60,4 @@ export * from './lib/modules/window/window-ref';
|
|
59
60
|
export { SkyAffixDirective as λ1 } from './lib/modules/affix/affix.directive';
|
60
61
|
export { SkyIdDirective as λ2 } from './lib/modules/id/id.directive';
|
61
62
|
export { SkyViewkeeperDirective as λ3 } from './lib/modules/viewkeeper/viewkeeper.directive';
|
63
|
+
export { SkyTrimDirective as λ4 } from './lib/modules/trim/trim.directive';
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
2
|
+
import { MutationObserverService } from '../mutation/mutation-observer-service';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
/**
|
5
|
+
* Trims whitespace in each text node that is a direct descendent of the current element.
|
6
|
+
*/
|
7
|
+
export declare class SkyTrimDirective implements OnInit, OnDestroy {
|
8
|
+
#private;
|
9
|
+
private elRef;
|
10
|
+
private mutationObs;
|
11
|
+
constructor(elRef: ElementRef, mutationObs: MutationObserverService);
|
12
|
+
ngOnInit(): void;
|
13
|
+
ngOnDestroy(): void;
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTrimDirective, never>;
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SkyTrimDirective, "[skyTrim]", never, {}, {}, never>;
|
16
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./trim.directive";
|
3
|
+
export declare class SkyTrimModule {
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyTrimModule, never>;
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyTrimModule, [typeof i1.SkyTrimDirective], never, [typeof i1.SkyTrimDirective]>;
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SkyTrimModule>;
|
7
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.4.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -44,7 +44,7 @@
|
|
44
44
|
"@angular/core": "^13.3.2",
|
45
45
|
"@angular/platform-browser": "^13.3.2",
|
46
46
|
"@angular/router": "^13.3.2",
|
47
|
-
"@skyux/i18n": "6.
|
47
|
+
"@skyux/i18n": "6.4.0"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
50
|
"tslib": "^2.3.1"
|