dso-toolkit 81.1.0 → 82.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/CHANGELOG.md +16 -0
- package/dist/dso.css +17 -990
- package/dist/dso.css.map +1 -1
- package/dist/dso.min.css +1 -1
- package/dist/dso.min.css.map +1 -1
- package/package.json +1 -1
- package/src/components/form-group/checkboxes/form-group-checkboxes.scss +3 -3
- package/src/components/form-group/confirm/form-group-confirm.scss +2 -2
- package/src/components/form-group/files/form-group-files.scss +1 -2
- package/src/components/form-group/radios/form-group-radios.scss +5 -7
- package/src/dso.scss +0 -2
- package/src/global/spacing.scss +17 -0
- package/src/components/accordion/_index.scss +0 -1
- package/src/components/accordion/accordion-theme-compact.scss +0 -161
- package/src/components/accordion/accordion-theme-conclusion.scss +0 -119
- package/src/components/accordion/accordion-theme-default.scss +0 -115
- package/src/components/accordion/accordion.scss +0 -400
- package/src/components/accordion/accordion.variables.scss +0 -35
- package/src/components/accordion/readme.md +0 -33
- package/src/components/selectable/_index.scss +0 -2
- package/src/components/selectable/readme.md +0 -1
- package/src/components/selectable/selectable.mixins.scss +0 -238
- package/src/components/selectable/selectable.scss +0 -25
- package/src/components/selectable/selectable.variables.scss +0 -13
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
@use "../../variables/colors";
|
|
2
|
-
@use "../../variables/units";
|
|
3
|
-
@use "../../components/accordion";
|
|
4
|
-
|
|
5
|
-
@use "../../di";
|
|
6
|
-
|
|
7
|
-
@mixin compact() {
|
|
8
|
-
> .dso-accordion-section {
|
|
9
|
-
> .dso-section-handle {
|
|
10
|
-
border-block-end: 1px solid transparent;
|
|
11
|
-
border-block-start: 1px solid accordion.$compact-border-color;
|
|
12
|
-
|
|
13
|
-
a,
|
|
14
|
-
button {
|
|
15
|
-
color: accordion.$compact-color;
|
|
16
|
-
padding-inline-start: units.$u4;
|
|
17
|
-
|
|
18
|
-
&::before {
|
|
19
|
-
@include di.base("chevron-right-grasgroen");
|
|
20
|
-
|
|
21
|
-
// stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
|
|
22
|
-
& {
|
|
23
|
-
inset-inline-start: 0;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
&:hover,
|
|
28
|
-
&:active,
|
|
29
|
-
&.active {
|
|
30
|
-
color: accordion.$compact-color;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.dso-status {
|
|
34
|
-
color: accordion.$compact-black-color;
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
&:last-child {
|
|
40
|
-
border-block-end: 1px solid accordion.$compact-border-color;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
+ .dso-accordion-section {
|
|
44
|
-
margin-block-start: 0;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
> .dso-section-body {
|
|
48
|
-
margin-block-start: 0;
|
|
49
|
-
padding-inline-start: units.$u4;
|
|
50
|
-
padding-block-start: 0;
|
|
51
|
-
padding-inline-end: 0;
|
|
52
|
-
padding-block-end: units.$u1 * 1.5;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
&.dso-open {
|
|
56
|
-
> .dso-section-handle {
|
|
57
|
-
background-color: transparent;
|
|
58
|
-
|
|
59
|
-
a,
|
|
60
|
-
button {
|
|
61
|
-
color: accordion.$compact-color;
|
|
62
|
-
|
|
63
|
-
&:hover,
|
|
64
|
-
&:active,
|
|
65
|
-
&.active {
|
|
66
|
-
color: accordion.$compact-color;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
&::before {
|
|
70
|
-
@include di.variant("chevron-down-grasgroen");
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
dso-attachments-counter {
|
|
74
|
-
--dso-attachments-counter-color: #{colors.$grijs-60};
|
|
75
|
-
--dso-icon: var(--di-paperclip-grijs);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.dso-attachments {
|
|
79
|
-
color: colors.$grijs-60;
|
|
80
|
-
|
|
81
|
-
&::after {
|
|
82
|
-
@include di.variant("paperclip-grijs");
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
> .dso-section-body {
|
|
89
|
-
border-block-start: 0;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
&.dso-nested-accordion {
|
|
93
|
-
> .dso-section-handle {
|
|
94
|
-
a,
|
|
95
|
-
button {
|
|
96
|
-
&::before {
|
|
97
|
-
@include di.base("chevron-down-grasgroen");
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
> .dso-section-body {
|
|
103
|
-
padding-block-end: 0;
|
|
104
|
-
|
|
105
|
-
.dso-accordion-section:last-child {
|
|
106
|
-
border-block-end: 0;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
&.dso-accordion-reverse-align {
|
|
114
|
-
.dso-section-handle {
|
|
115
|
-
a,
|
|
116
|
-
button {
|
|
117
|
-
padding-inline: units.$u2 units.$u4;
|
|
118
|
-
|
|
119
|
-
&::before {
|
|
120
|
-
@include di.base("chevron-down-grasgroen");
|
|
121
|
-
|
|
122
|
-
// stylelint-disable-next-line no-duplicate-selectors -- needed to fix sass deprecation warnings: #2724
|
|
123
|
-
& {
|
|
124
|
-
inset-inline-start: auto;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
> .dso-accordion-section > .dso-section-body {
|
|
131
|
-
padding-inline-start: units.$u2;
|
|
132
|
-
padding-inline-end: 0;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.dso-accordion-section {
|
|
136
|
-
&.dso-open {
|
|
137
|
-
&:not(.dso-nested-accordion) {
|
|
138
|
-
> .dso-section-handle {
|
|
139
|
-
a,
|
|
140
|
-
button {
|
|
141
|
-
&::before {
|
|
142
|
-
@include di.base("chevron-up-grasgroen");
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
&.dso-nested-accordion {
|
|
149
|
-
> .dso-section-handle {
|
|
150
|
-
a,
|
|
151
|
-
button {
|
|
152
|
-
&::before {
|
|
153
|
-
@include di.variant("chevron-down-grasgroen");
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}
|
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
@use "../../variables/colors";
|
|
2
|
-
@use "../../components/accordion";
|
|
3
|
-
|
|
4
|
-
@use "../../di";
|
|
5
|
-
|
|
6
|
-
@mixin conclusion() {
|
|
7
|
-
&.dso-accordion-reverse-align {
|
|
8
|
-
.dso-section-handle {
|
|
9
|
-
a,
|
|
10
|
-
button {
|
|
11
|
-
&::before {
|
|
12
|
-
@include di.base("chevron-down-zwart");
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.dso-accordion-section {
|
|
18
|
-
&.dso-open {
|
|
19
|
-
&:not(.dso-nested-accordion) {
|
|
20
|
-
> .dso-section-handle {
|
|
21
|
-
a,
|
|
22
|
-
button {
|
|
23
|
-
&::before {
|
|
24
|
-
@include di.base("chevron-up-zwart");
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
&.dso-nested-accordion {
|
|
31
|
-
> .dso-section-handle {
|
|
32
|
-
a,
|
|
33
|
-
button {
|
|
34
|
-
&::before {
|
|
35
|
-
@include di.variant("chevron-down-zwart");
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
> .dso-accordion-section {
|
|
45
|
-
> .dso-section-handle {
|
|
46
|
-
background-color: accordion.$conclusion-bgcolor;
|
|
47
|
-
border: 1px solid accordion.$conclusion-border-color;
|
|
48
|
-
|
|
49
|
-
a,
|
|
50
|
-
button {
|
|
51
|
-
color: accordion.$conclusion-color;
|
|
52
|
-
|
|
53
|
-
&::before {
|
|
54
|
-
@include di.base("chevron-right-zwart");
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
&:hover,
|
|
58
|
-
&:active,
|
|
59
|
-
&.active {
|
|
60
|
-
background-color: accordion.$conclusion-hover-bgcolor;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
&.dso-open {
|
|
66
|
-
&:not(.dso-nested-accordion) {
|
|
67
|
-
> .dso-section-handle {
|
|
68
|
-
background-color: accordion.$conclusion-nested-handle-bgcolor;
|
|
69
|
-
|
|
70
|
-
a,
|
|
71
|
-
button {
|
|
72
|
-
color: accordion.$conclusion-color;
|
|
73
|
-
|
|
74
|
-
&::before {
|
|
75
|
-
@include di.base("chevron-down-zwart");
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
&.dso-nested-accordion {
|
|
82
|
-
background-color: accordion.$conclusion-nested-body-bgcolor;
|
|
83
|
-
|
|
84
|
-
> .dso-section-handle {
|
|
85
|
-
a,
|
|
86
|
-
button {
|
|
87
|
-
&::before {
|
|
88
|
-
@include di.base("chevron-down-zwart");
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
&:not(.dso-nested-accordion) {
|
|
96
|
-
> .dso-section-handle {
|
|
97
|
-
a,
|
|
98
|
-
button {
|
|
99
|
-
dso-attachments-counter {
|
|
100
|
-
--dso-attachments-counter-color: #{colors.$zwart};
|
|
101
|
-
--dso-icon: var(--di-paperclip-zwart);
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.dso-attachments {
|
|
105
|
-
color: colors.$zwart;
|
|
106
|
-
|
|
107
|
-
&::after {
|
|
108
|
-
@include di.variant("paperclip-zwart");
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.dso-section-body {
|
|
117
|
-
border: 2px solid accordion.$conclusion-border-color;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
@use "../../variables/colors";
|
|
2
|
-
@use "../../components/accordion";
|
|
3
|
-
|
|
4
|
-
@use "../../di";
|
|
5
|
-
|
|
6
|
-
@mixin default() {
|
|
7
|
-
&.dso-accordion-reverse-align {
|
|
8
|
-
.dso-section-handle {
|
|
9
|
-
a,
|
|
10
|
-
button {
|
|
11
|
-
&::before {
|
|
12
|
-
@include di.base("chevron-down-mauve");
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.dso-accordion-section {
|
|
18
|
-
&.dso-open {
|
|
19
|
-
&:not(.dso-nested-accordion) {
|
|
20
|
-
> .dso-section-handle {
|
|
21
|
-
a,
|
|
22
|
-
button {
|
|
23
|
-
&::before {
|
|
24
|
-
@include di.base("chevron-up-wit");
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
&.dso-nested-accordion {
|
|
31
|
-
> .dso-section-handle {
|
|
32
|
-
a,
|
|
33
|
-
button {
|
|
34
|
-
&::before {
|
|
35
|
-
@include di.variant("chevron-down-wit");
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.dso-section-handle {
|
|
45
|
-
background-color: colors.$wit;
|
|
46
|
-
border: 1px solid accordion.$default-border-color;
|
|
47
|
-
border-radius: accordion.$border-radius;
|
|
48
|
-
|
|
49
|
-
a,
|
|
50
|
-
button {
|
|
51
|
-
color: accordion.$default-color;
|
|
52
|
-
|
|
53
|
-
&::before {
|
|
54
|
-
@include di.base("chevron-right-mauve");
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
&:hover,
|
|
58
|
-
&:active,
|
|
59
|
-
&.active {
|
|
60
|
-
color: accordion.$default-color;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.dso-status {
|
|
64
|
-
text-decoration: underline;
|
|
65
|
-
color: colors.$zwart;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.dso-accordion-section {
|
|
71
|
-
&.dso-open {
|
|
72
|
-
> .dso-section-handle {
|
|
73
|
-
background-color: accordion.$default-nested-handle-bgcolor;
|
|
74
|
-
border-radius: 0;
|
|
75
|
-
border-start-start-radius: accordion.$border-radius;
|
|
76
|
-
border-start-end-radius: accordion.$border-radius;
|
|
77
|
-
|
|
78
|
-
a,
|
|
79
|
-
button {
|
|
80
|
-
color: colors.$wit;
|
|
81
|
-
|
|
82
|
-
&::before {
|
|
83
|
-
@include di.variant("chevron-down-wit");
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
dso-attachments-counter {
|
|
87
|
-
--dso-attachments-counter-color: #{colors.$wit};
|
|
88
|
-
--dso-icon: var(--di-paperclip-wit);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.dso-attachments {
|
|
92
|
-
color: colors.$wit;
|
|
93
|
-
|
|
94
|
-
&::after {
|
|
95
|
-
@include di.variant("paperclip-wit");
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.dso-status {
|
|
100
|
-
color: colors.$wit;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
&.dso-nested-accordion {
|
|
106
|
-
background-color: accordion.$default-nested-body-bgcolor;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.dso-section-body {
|
|
112
|
-
border: 1px solid accordion.$default-border-color;
|
|
113
|
-
border-radius: 0 0 accordion.$border-radius accordion.$border-radius;
|
|
114
|
-
}
|
|
115
|
-
}
|