dso-toolkit 82.0.0 → 83.1.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.
@@ -1,7 +0,0 @@
1
- @use "../../variables/colors";
2
-
3
- $background-color-hover: colors.$grijs-5;
4
- $background-color-active: colors.$grijs-10;
5
-
6
- $heading-anchor-color: colors.$bosgroen;
7
- $heading-anchor-hover-color: colors.$bosgroen;
@@ -1,97 +0,0 @@
1
- @use "../../utilities";
2
- @use "../../variables/units";
3
- @use "../../variables/colors";
4
- @use "../list";
5
-
6
- @use "../grid/grid.variables" as css-grid-variables;
7
-
8
- .dso-document-list {
9
- @include list.unstyled();
10
- margin-block: 0;
11
- margin-inline: css-grid-variables.$grid-gutter-width * -0.5;
12
- }
13
-
14
- .dso-document-list-item {
15
- display: flex;
16
- flex-direction: column;
17
-
18
- &.dso-document-list-item-sticky {
19
- .dso-document-list-item-heading {
20
- padding-block: css-grid-variables.$grid-gutter-width * 0.25;
21
- padding-inline: css-grid-variables.$grid-gutter-width * 0.5;
22
-
23
- h2 {
24
- font-size: 1.25rem;
25
- line-height: 1.2;
26
- }
27
-
28
- .dso-document-list-item-container {
29
- display: none;
30
- }
31
- }
32
- }
33
-
34
- .dso-document-list-item-heading {
35
- background-color: colors.$grijs-5;
36
- color: colors.$zwart;
37
- padding: #{css-grid-variables.$grid-gutter-width * 0.5};
38
- inline-size: 100%;
39
-
40
- a {
41
- color: colors.$zwart;
42
- }
43
-
44
- > :first-child {
45
- margin: 0;
46
- }
47
-
48
- .dso-document-list-item-container {
49
- position: relative;
50
- }
51
-
52
- .dso-document-list-item-type,
53
- .dso-document-list-item-owner {
54
- margin-block: 0 units.$u1;
55
- margin-inline: 0;
56
- display: inline-block;
57
- }
58
-
59
- .dso-document-list-item-status {
60
- dso-badge,
61
- .dso-badge {
62
- margin-inline-end: units.$u1;
63
- }
64
- }
65
- }
66
-
67
- .dso-document-list-item-content {
68
- padding: #{css-grid-variables.$grid-gutter-width * 0.5};
69
- }
70
- }
71
-
72
- .dso-document-list-item-open-document {
73
- float: inline-end;
74
- }
75
-
76
- dso-responsive-element[small] > .dso-document-list {
77
- .dso-document-list-item-container {
78
- @include utilities.clearfix();
79
- }
80
-
81
- .dso-document-list-item-status {
82
- margin-block: 0 units.$u1;
83
- margin-inline: 0;
84
- }
85
- }
86
-
87
- dso-responsive-element:not([small]) > .dso-document-list {
88
- .dso-document-list-item {
89
- &-type {
90
- margin-inline-end: units.$u1;
91
- }
92
-
93
- &-status {
94
- margin: 0;
95
- }
96
- }
97
- }
@@ -1 +0,0 @@
1
- # `.dso-document-list`
@@ -1,2 +0,0 @@
1
- @forward "progress-bar.mixins";
2
- @forward "progress-bar.variables";
@@ -1,27 +0,0 @@
1
- @use "../../variables/units";
2
- @use "../../variables/typography";
3
-
4
- @use "progress-bar.variables" as progress-bar-variables;
5
-
6
- @mixin root() {
7
- margin-block-end: units.$u1;
8
-
9
- .progress-bar {
10
- background-color: progress-bar-variables.$background-color;
11
- border: 1px solid progress-bar-variables.$color;
12
- display: block;
13
- block-size: progress-bar-variables.$block-size;
14
-
15
- > span {
16
- background-color: progress-bar-variables.$progress-color;
17
- float: inline-start;
18
- block-size: 100%;
19
- inline-size: 0%;
20
- }
21
-
22
- + span {
23
- font-size: typography.$root-font-size-small;
24
- margin-block-start: units.$u1;
25
- }
26
- }
27
- }
@@ -1,5 +0,0 @@
1
- @use "../progress-bar";
2
-
3
- .progress {
4
- @include progress-bar.root();
5
- }
@@ -1,9 +0,0 @@
1
- @use "../../variables/units";
2
- @use "../../variables/colors";
3
-
4
- $progress-color: colors.$grasgroen;
5
-
6
- $block-size: units.$u2;
7
- $margin: units.$u1;
8
- $background-color: colors.$wit;
9
- $color: colors.$grasgroen;
@@ -1 +0,0 @@
1
- # `.progress`
@@ -1 +0,0 @@
1
- @forward "progress-indicator.mixins";
@@ -1,55 +0,0 @@
1
- @use "../../variables/units";
2
-
3
- @mixin _looping-size($progress-indicator-size) {
4
- .dso-progress-indicator-spinner,
5
- dso-icon {
6
- block-size: $progress-indicator-size;
7
- inline-size: $progress-indicator-size;
8
- }
9
- }
10
-
11
- @mixin root() {
12
- .dso-progress-indicator-spinner {
13
- display: inline-block;
14
- margin: 0;
15
- position: relative;
16
- vertical-align: middle;
17
- }
18
-
19
- span.dso-progress-indicator-label {
20
- margin-inline-start: units.$u2;
21
- vertical-align: middle;
22
- }
23
- }
24
-
25
- @mixin block() {
26
- align-items: center;
27
- display: flex;
28
- justify-content: center;
29
- }
30
-
31
- @mixin small() {
32
- @include _looping-size(24px);
33
- }
34
-
35
- @mixin small-block() {
36
- padding-block: units.$u1 * 1.5;
37
- padding-inline: units.$u2;
38
- }
39
-
40
- @mixin medium() {
41
- @include _looping-size(32px);
42
- }
43
-
44
- @mixin medium-block() {
45
- padding: units.$u2;
46
- }
47
-
48
- @mixin large() {
49
- @include _looping-size(48px);
50
- }
51
-
52
- @mixin large-block() {
53
- padding-block: units.$u3;
54
- padding-inline: units.$u2;
55
- }
@@ -1,40 +0,0 @@
1
- @use "../../di";
2
- @use "../progress-indicator";
3
- @use "../../components/icon";
4
-
5
- .dso-progress-indicator {
6
- @include progress-indicator.root();
7
-
8
- .dso-progress-indicator-spinner {
9
- @include di.base("spinner", icon.$size, "middle");
10
- }
11
-
12
- &.dso-block {
13
- @include progress-indicator.block();
14
- }
15
-
16
- &.dso-small,
17
- &:not(.dso-medium):not(.dso-large) {
18
- @include progress-indicator.small();
19
-
20
- &.dso-block {
21
- @include progress-indicator.small-block();
22
- }
23
- }
24
-
25
- &.dso-medium {
26
- @include progress-indicator.medium();
27
-
28
- &.dso-block {
29
- @include progress-indicator.medium-block();
30
- }
31
- }
32
-
33
- &.dso-large {
34
- @include progress-indicator.large();
35
-
36
- &.dso-block {
37
- @include progress-indicator.large-block();
38
- }
39
- }
40
- }