@skyux/core 9.1.1 → 9.2.1

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/index.d.ts CHANGED
@@ -68,6 +68,7 @@ export { SkyViewkeeperOptions } from './lib/modules/viewkeeper/viewkeeper-option
68
68
  export { SkyViewkeeperModule } from './lib/modules/viewkeeper/viewkeeper.module';
69
69
  export { SkyViewkeeperService } from './lib/modules/viewkeeper/viewkeeper.service';
70
70
  export { SkyAppWindowRef } from './lib/modules/window/window-ref';
71
+ export { VERSION } from './version';
71
72
  export { SkyAffixDirective as λ1 } from './lib/modules/affix/affix.directive';
72
73
  export { SkyIdDirective as λ2 } from './lib/modules/id/id.directive';
73
74
  export { SkyViewkeeperDirective as λ3 } from './lib/modules/viewkeeper/viewkeeper.directive';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/core",
3
- "version": "9.1.1",
3
+ "version": "9.2.1",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -41,7 +41,7 @@
41
41
  "@angular/core": "^16.2.5",
42
42
  "@angular/platform-browser": "^16.2.5",
43
43
  "@angular/router": "^16.2.5",
44
- "@skyux/i18n": "9.1.1"
44
+ "@skyux/i18n": "9.2.1"
45
45
  },
46
46
  "dependencies": {
47
47
  "tslib": "^2.6.2"
package/version.d.ts ADDED
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Represents the version of a package.
3
+ * @internal
4
+ */
5
+ export declare class Version {
6
+ readonly full: string;
7
+ readonly major: string;
8
+ readonly minor: string;
9
+ readonly patch: string;
10
+ constructor(full: string);
11
+ }
12
+ /**
13
+ * Represents the version of @skyux/core.
14
+ */
15
+ export declare const VERSION: Version;