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.
- package/CHANGELOG.md +23 -0
- package/dist/dso.css +10 -251
- package/dist/dso.css.map +1 -1
- package/dist/dso.min.css +1 -1
- package/dist/dso.min.css.map +1 -1
- package/dist/index.js +0 -2
- package/package.json +19 -19
- package/src/components/definition-list/definition-list.scss +1 -1
- package/src/components/justify-form-groups/justify-form-groups.scss +1 -1
- package/src/components/preformatted-text/preformatted-text.scss +1 -1
- package/src/dso.scss +0 -4
- package/src/utilities.scss +2 -2
- package/src/components/card/_index.scss +0 -1
- package/src/components/card/card.scss +0 -126
- package/src/components/card/card.variables.scss +0 -7
- package/src/components/document-list/document-list.scss +0 -97
- package/src/components/document-list/readme.md +0 -1
- package/src/components/progress-bar/_index.scss +0 -2
- package/src/components/progress-bar/progress-bar.mixins.scss +0 -27
- package/src/components/progress-bar/progress-bar.scss +0 -5
- package/src/components/progress-bar/progress-bar.variables.scss +0 -9
- package/src/components/progress-bar/readme.md +0 -1
- package/src/components/progress-indicator/_index.scss +0 -1
- package/src/components/progress-indicator/progress-indicator.mixins.scss +0 -55
- package/src/components/progress-indicator/progress-indicator.scss +0 -40
|
@@ -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,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 +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
|
-
}
|