ngssm-shell 16.2.4 → 17.0.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/esm2022/lib/components/shell/shell.component.mjs +5 -5
- package/esm2022/lib/components/shell-notification/shell-notification.component.mjs +5 -5
- package/esm2022/lib/components/shell-notification-popup/shell-notification-popup.component.mjs +5 -5
- package/esm2022/lib/components/shell-notifications/shell-notifications.component.mjs +5 -5
- package/esm2022/lib/components/side-nav/side-nav.component.mjs +5 -5
- package/esm2022/lib/components/wrapper/wrapper.component.mjs +5 -5
- package/esm2022/lib/effects/notification-showing.effect.mjs +5 -5
- package/esm2022/lib/reducers/navigation-bar.reducer.mjs +4 -4
- package/esm2022/lib/reducers/shell-notifications.reducer.mjs +4 -4
- package/esm2022/lib/state/shell.state.mjs +6 -7
- package/fesm2022/ngssm-shell.mjs +38 -40
- package/fesm2022/ngssm-shell.mjs.map +1 -1
- package/package.json +4 -4
- package/styles/ngssm-shell.scss +2 -11
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngssm-shell",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "17.0.0",
|
|
4
4
|
"description": "NgSsm - A complete sheel with header, footer, side navigation...",
|
|
5
5
|
"author": "Lion Marc",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"peerDependencies": {
|
|
8
8
|
"@angular/common": ">=16.0.0",
|
|
9
9
|
"@angular/core": ">=16.0.0",
|
|
10
|
-
"ngssm-toolkit": "
|
|
11
|
-
"ngssm-store": "
|
|
12
|
-
"ngssm-ace-editor": "
|
|
10
|
+
"ngssm-toolkit": "17.0.0",
|
|
11
|
+
"ngssm-store": "17.0.0",
|
|
12
|
+
"ngssm-ace-editor": "17.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"tslib": "^2.3.0"
|
package/styles/ngssm-shell.scss
CHANGED
|
@@ -1,14 +1,5 @@
|
|
|
1
|
-
@use '
|
|
2
|
-
|
|
3
|
-
// The following line adds:
|
|
4
|
-
// 1. Default typography styles for all components
|
|
5
|
-
// 2. Styles for typography hierarchy classes (e.g. .mat-headline-1)
|
|
6
|
-
// If you specify typography styles for the components you use elsewhere, you should delete this line.
|
|
7
|
-
// If you don't need the default component typographies but still want the hierarchy styles,
|
|
8
|
-
// you can delete this line and instead use:
|
|
9
|
-
// `@include mat.legacy-typography-hierarchy(mat.define-legacy-typography-config());`
|
|
10
|
-
@include mat.all-legacy-component-typographies();
|
|
11
|
-
@include mat.legacy-core();
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use '@angular/material' as mat;
|
|
12
3
|
|
|
13
4
|
.ngssm-shell {
|
|
14
5
|
display: flex;
|