@lukfel/ng-scaffold 20.0.44 → 20.0.45

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
@@ -243,6 +243,7 @@ declare class ScaffoldComponent implements OnInit, OnDestroy {
243
243
  isMobile: boolean;
244
244
  routeLoading: boolean;
245
245
  scrollTopPosition: number;
246
+ initialized: boolean;
246
247
  private _subscription;
247
248
  ngOnInit(): void;
248
249
  ngOnDestroy(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lukfel/ng-scaffold",
3
- "version": "20.0.44",
3
+ "version": "20.0.45",
4
4
  "description": "This Angular library provides a basic UI scaffold and services for modern web and mobile apps",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -26,11 +26,18 @@
26
26
  "./package.json": {
27
27
  "default": "./package.json"
28
28
  },
29
+ "./schematics": {
30
+ "default": "./schematics/index.js"
31
+ },
32
+ "./schematics/*": {
33
+ "default": "./schematics/*"
34
+ },
29
35
  ".": {
30
36
  "types": "./index.d.ts",
31
37
  "default": "./fesm2022/lukfel-ng-scaffold.mjs"
32
38
  }
33
39
  },
40
+ "schematics": "./collection.json",
34
41
  "sideEffects": false,
35
42
  "module": "fesm2022/lukfel-ng-scaffold.mjs",
36
43
  "typings": "index.d.ts"
package/styles/style.scss CHANGED
@@ -51,4 +51,8 @@ body {
51
51
 
52
52
  .lf-header-menu-button-active {
53
53
  color: var(--color-primary) !important;
54
+ }
55
+
56
+ .lf-transitions {
57
+ transition: all 400ms cubic-bezier(0.25, 0.8, 0.25, 1) !important;
54
58
  }