@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.
Files changed (49) hide show
  1. package/README.md +143 -2
  2. package/fesm2022/ngx-stoui-core.mjs +79 -225
  3. package/fesm2022/ngx-stoui-core.mjs.map +1 -1
  4. package/ngx-datatable.css +343 -204
  5. package/ngx-stoui.css +2797 -4243
  6. package/package.json +5 -5
  7. package/styles/README.md +273 -0
  8. package/{index.d.ts → types/ngx-stoui-core.d.ts} +8 -33
  9. package/style/_fonts.scss +0 -3
  10. package/style/datatable/_ngx-datatable-compact.scss +0 -146
  11. package/style/datatable/_ngx-datatable-form.scss +0 -90
  12. package/style/datatable/_ngx-datatable-variables.scss +0 -10
  13. package/style/datatable/ngx-datatable.scss +0 -405
  14. package/style/fonts/Equinor-Bold.woff +0 -0
  15. package/style/fonts/Equinor-Bold.woff2 +0 -0
  16. package/style/fonts/Equinor-Light.woff +0 -0
  17. package/style/fonts/Equinor-Light.woff2 +0 -0
  18. package/style/fonts/Equinor-Medium.woff +0 -0
  19. package/style/fonts/Equinor-Medium.woff2 +0 -0
  20. package/style/fonts/Equinor-Regular.woff +0 -0
  21. package/style/fonts/Equinor-Regular.woff2 +0 -0
  22. package/style/form/sto-form.scss +0 -343
  23. package/style/grid.scss +0 -20
  24. package/style/statoil-sansmedium-webfont.woff +0 -0
  25. package/style/statoil-sansmedium-webfont.woff2 +0 -0
  26. package/style/sto-dialog.scss +0 -70
  27. package/style/sto-grid.scss +0 -63
  28. package/style/theme/_action-footer.scss +0 -18
  29. package/style/theme/_appheader.scss +0 -122
  30. package/style/theme/_card.scss +0 -28
  31. package/style/theme/_colors.scss +0 -185
  32. package/style/theme/_datatable.scss +0 -265
  33. package/style/theme/_daterange.scss +0 -48
  34. package/style/theme/_dialog.scss +0 -24
  35. package/style/theme/_drawer.scss +0 -0
  36. package/style/theme/_filterpanel.scss +0 -89
  37. package/style/theme/_input-overrides.scss +0 -119
  38. package/style/theme/_message-panel.scss +0 -96
  39. package/style/theme/_number-input.scss +0 -23
  40. package/style/theme/_number-unit-input.scss +0 -34
  41. package/style/theme/_select-filter.scss +0 -17
  42. package/style/theme/_sto-indicators.scss +0 -118
  43. package/style/theme/_theme-variables.scss +0 -67
  44. package/style/theme/_theme.scss +0 -22
  45. package/style/theme/_typography.scss +0 -56
  46. package/style/theme/_wysiwyg.scss +0 -39
  47. package/style/theme/components.scss +0 -16
  48. package/style/theme/preference-manager.scss +0 -46
  49. 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
- }