@ngx-stoui/core 20.0.16 → 21.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/README.md +143 -2
- package/fesm2022/ngx-stoui-core.mjs +79 -225
- package/fesm2022/ngx-stoui-core.mjs.map +1 -1
- package/ngx-datatable.css +343 -204
- package/ngx-stoui.css +2797 -4243
- package/package.json +5 -5
- package/styles/README.md +273 -0
- package/{index.d.ts → types/ngx-stoui-core.d.ts} +8 -33
- package/style/_fonts.scss +0 -3
- package/style/datatable/_ngx-datatable-compact.scss +0 -146
- package/style/datatable/_ngx-datatable-form.scss +0 -90
- package/style/datatable/_ngx-datatable-variables.scss +0 -10
- package/style/datatable/ngx-datatable.scss +0 -405
- package/style/fonts/Equinor-Bold.woff +0 -0
- package/style/fonts/Equinor-Bold.woff2 +0 -0
- package/style/fonts/Equinor-Light.woff +0 -0
- package/style/fonts/Equinor-Light.woff2 +0 -0
- package/style/fonts/Equinor-Medium.woff +0 -0
- package/style/fonts/Equinor-Medium.woff2 +0 -0
- package/style/fonts/Equinor-Regular.woff +0 -0
- package/style/fonts/Equinor-Regular.woff2 +0 -0
- package/style/form/sto-form.scss +0 -343
- package/style/grid.scss +0 -20
- package/style/statoil-sansmedium-webfont.woff +0 -0
- package/style/statoil-sansmedium-webfont.woff2 +0 -0
- package/style/sto-dialog.scss +0 -70
- package/style/sto-grid.scss +0 -63
- package/style/theme/_action-footer.scss +0 -18
- package/style/theme/_appheader.scss +0 -122
- package/style/theme/_card.scss +0 -28
- package/style/theme/_colors.scss +0 -185
- package/style/theme/_datatable.scss +0 -265
- package/style/theme/_daterange.scss +0 -48
- package/style/theme/_dialog.scss +0 -24
- package/style/theme/_drawer.scss +0 -0
- package/style/theme/_filterpanel.scss +0 -89
- package/style/theme/_input-overrides.scss +0 -119
- package/style/theme/_message-panel.scss +0 -96
- package/style/theme/_number-input.scss +0 -23
- package/style/theme/_number-unit-input.scss +0 -34
- package/style/theme/_select-filter.scss +0 -17
- package/style/theme/_sto-indicators.scss +0 -118
- package/style/theme/_theme-variables.scss +0 -67
- package/style/theme/_theme.scss +0 -22
- package/style/theme/_typography.scss +0 -56
- package/style/theme/_wysiwyg.scss +0 -39
- package/style/theme/components.scss +0 -16
- package/style/theme/preference-manager.scss +0 -46
- package/style/theme.scss +0 -46
package/style/theme.scss
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
@use '@angular/material' as mat;
|
|
2
|
-
@import './theme/typography';
|
|
3
|
-
@import './theme/theme';
|
|
4
|
-
@import './theme/components';
|
|
5
|
-
|
|
6
|
-
@include mat.core();
|
|
7
|
-
|
|
8
|
-
// Include theme styles for core and each component used in your app.
|
|
9
|
-
@include mat.core-theme($sto-theme);
|
|
10
|
-
@include mat.all-component-themes($sto-theme);
|
|
11
|
-
@include mat.elevation-classes();
|
|
12
|
-
|
|
13
|
-
body,
|
|
14
|
-
.sto-header,
|
|
15
|
-
.mat-card {
|
|
16
|
-
transition: background-color 200ms ease;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@include mat.typography-hierarchy($sto-typography, '.mat-typography');
|
|
20
|
-
@include mat.typography-hierarchy(
|
|
21
|
-
$sto-sm-typography,
|
|
22
|
-
'.mat-typography.sto-sm-typography'
|
|
23
|
-
);
|
|
24
|
-
@include mat.typography-hierarchy(
|
|
25
|
-
$sto-l-typography,
|
|
26
|
-
'.mat-typography.sto-l-typography'
|
|
27
|
-
);
|
|
28
|
-
|
|
29
|
-
.mat-typography {
|
|
30
|
-
@include mat.core-typography($sto-typography);
|
|
31
|
-
@include mat.all-component-typographies($sto-typography);
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.mat-typography.sto-sm-typography {
|
|
35
|
-
@include mat.core-typography($sto-sm-typography);
|
|
36
|
-
@include mat.all-component-typographies($sto-sm-typography);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.mat-typography.sto-l-typography {
|
|
40
|
-
@include mat.core-typography($sto-l-typography);
|
|
41
|
-
@include mat.all-component-typographies($sto-l-typography);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
body {
|
|
45
|
-
--mat-sys-primary: var(--primary-resting);
|
|
46
|
-
}
|