@digigov/css 1.2.1-2702533a → 1.3.0-01ea6f24
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/dist/base/index.css +1 -1
- package/dist/base.js +1 -1
- package/dist/components.js +1 -1
- package/dist/digigov.css +3 -3
- package/dist/utilities/index.css +1 -1
- package/dist/utilities.js +1 -1
- package/package.json +1 -1
- package/src/components/accordion.css +37 -37
- package/src/components/admin-header.css +9 -9
- package/src/components/admin-layout.css +8 -8
- package/src/components/autocomplete.css +31 -31
- package/src/components/back-to-top.css +4 -4
- package/src/components/bottom-info.css +2 -2
- package/src/components/breadcrumbs.css +5 -5
- package/src/components/button.css +47 -47
- package/src/components/card.css +27 -27
- package/src/components/checkboxes.css +17 -17
- package/src/components/chip.css +16 -16
- package/src/components/copy-to-clipboard.css +18 -18
- package/src/components/details.css +4 -4
- package/src/components/dev-theme.css +1 -1
- package/src/components/drawer.css +30 -30
- package/src/components/dropdown.css +37 -37
- package/src/components/experimental.css +10 -10
- package/src/components/fillable.css +3 -3
- package/src/components/filter.css +51 -51
- package/src/components/footer.css +24 -24
- package/src/components/form.css +85 -85
- package/src/components/full-page-background.css +1 -1
- package/src/components/header.css +40 -40
- package/src/components/hidden.css +11 -11
- package/src/components/kitchensink.css +18 -18
- package/src/components/layout.css +31 -31
- package/src/components/loader.css +11 -11
- package/src/components/masthead.css +23 -23
- package/src/components/misc.css +11 -11
- package/src/components/modal.css +11 -11
- package/src/components/nav.css +48 -48
- package/src/components/notification-banner.css +15 -15
- package/src/components/pagination.css +24 -24
- package/src/components/panel.css +4 -4
- package/src/components/phase-banner.css +7 -7
- package/src/components/radios.css +15 -15
- package/src/components/skiplink.css +1 -1
- package/src/components/stack.css +22 -22
- package/src/components/stepnav.css +42 -42
- package/src/components/summary-list.css +32 -32
- package/src/components/svg-icons.css +26 -29
- package/src/components/table.css +98 -98
- package/src/components/tabs.css +18 -18
- package/src/components/task-list.css +20 -20
- package/src/components/timeline.css +16 -16
- package/src/components/typography.css +87 -87
- package/src/components/warning-text.css +6 -6
- package/src/pages/admin-filtering-data.js +86 -86
- package/src/pages/admin.js +36 -36
- package/src/pages/dropdown.js +109 -109
- package/src/pages/form.js +210 -210
- package/src/pages/headings/service-heading.js +9 -9
- package/src/pages/index.js +201 -201
- package/src/pages/pagination.js +49 -49
- package/src/pages/table.js +223 -223
- package/src/utilities/index.css +195 -195
- package/src/utilities/utilities.css +416 -416
- package/tailwind.config.js +0 -2
- package/themes.plugin.js +1 -1
package/src/pages/table.js
CHANGED
|
@@ -3,302 +3,302 @@ export default function Table() {
|
|
|
3
3
|
<body>
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
<table className="
|
|
7
|
-
<caption className="
|
|
8
|
-
<caption className="
|
|
9
|
-
<caption className="
|
|
10
|
-
<caption className="
|
|
6
|
+
<table className="ds-table">
|
|
7
|
+
<caption className="ds-table__caption ds-table__caption--sm">Table caption S</caption>
|
|
8
|
+
<caption className="ds-table__caption ds-table__caption--md">Table caption M</caption>
|
|
9
|
+
<caption className="ds-table__caption ds-table__caption--lg">Table caption L</caption>
|
|
10
|
+
<caption className="ds-table__caption ds-table__caption--xl">Table caption XL</caption>
|
|
11
11
|
</table>
|
|
12
12
|
|
|
13
|
-
<table className="
|
|
14
|
-
<caption className="
|
|
15
|
-
<thead className="
|
|
16
|
-
<tr className="
|
|
17
|
-
<th scope="col" className="
|
|
18
|
-
<th scope="col" className="
|
|
13
|
+
<table className="ds-table">
|
|
14
|
+
<caption className="ds-table__caption ds-table__caption--md">Simple Table</caption>
|
|
15
|
+
<thead className="ds-table__head">
|
|
16
|
+
<tr className="ds-table__row">
|
|
17
|
+
<th scope="col" className="ds-table__header">Date</th>
|
|
18
|
+
<th scope="col" className="ds-table__header">Amount</th>
|
|
19
19
|
</tr>
|
|
20
20
|
</thead>
|
|
21
|
-
<tbody className="
|
|
22
|
-
<tr className="
|
|
23
|
-
<th scope="row" className="
|
|
24
|
-
<td className="
|
|
21
|
+
<tbody className="ds-table__body">
|
|
22
|
+
<tr className="ds-table__row">
|
|
23
|
+
<th scope="row" className="ds-table__header">First 6 weeks</th>
|
|
24
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
25
25
|
</tr>
|
|
26
|
-
<tr className="
|
|
27
|
-
<th scope="row" className="
|
|
28
|
-
<td className="
|
|
26
|
+
<tr className="ds-table__row">
|
|
27
|
+
<th scope="row" className="ds-table__header">Next 33 weeks</th>
|
|
28
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
29
29
|
</tr>
|
|
30
|
-
<tr className="
|
|
31
|
-
<th scope="row" className="
|
|
32
|
-
<td className="
|
|
30
|
+
<tr className="ds-table__row">
|
|
31
|
+
<th scope="row" className="ds-table__header">Total estimated pay</th>
|
|
32
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
33
33
|
</tr>
|
|
34
34
|
</tbody>
|
|
35
35
|
</table>
|
|
36
36
|
|
|
37
37
|
{/* Table with vertical lines */}
|
|
38
|
-
<table className="
|
|
39
|
-
<caption className="
|
|
40
|
-
<thead className="
|
|
41
|
-
<tr className="
|
|
42
|
-
<th scope="col" className="
|
|
43
|
-
<th scope="col" className="
|
|
44
|
-
<th scope="col" className="
|
|
38
|
+
<table className="ds-table ds-table--vertical-lines">
|
|
39
|
+
<caption className="ds-table__caption ds-table__caption--md">Table with vertical lines</caption>
|
|
40
|
+
<thead className="ds-table__head">
|
|
41
|
+
<tr className="ds-table__row">
|
|
42
|
+
<th scope="col" className="ds-table__header">Date</th>
|
|
43
|
+
<th scope="col" className="ds-table__header">Amount</th>
|
|
44
|
+
<th scope="col" className="ds-table__header">Amount</th>
|
|
45
45
|
</tr>
|
|
46
46
|
</thead>
|
|
47
|
-
<tbody className="
|
|
48
|
-
<tr className="
|
|
49
|
-
<th scope="row" className="
|
|
50
|
-
<td className="
|
|
51
|
-
<td className="
|
|
52
|
-
</tr>
|
|
53
|
-
<tr className="
|
|
54
|
-
<th scope="row" className="
|
|
55
|
-
<td className="
|
|
56
|
-
<td className="
|
|
57
|
-
</tr>
|
|
58
|
-
<tr className="
|
|
59
|
-
<th scope="row" className="
|
|
60
|
-
<td className="
|
|
61
|
-
<td className="
|
|
47
|
+
<tbody className="ds-table__body">
|
|
48
|
+
<tr className="ds-table__row">
|
|
49
|
+
<th scope="row" className="ds-table__header">First 6 weeks</th>
|
|
50
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
51
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr className="ds-table__row">
|
|
54
|
+
<th scope="row" className="ds-table__header">Next 33 weeks</th>
|
|
55
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
56
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
57
|
+
</tr>
|
|
58
|
+
<tr className="ds-table__row">
|
|
59
|
+
<th scope="row" className="ds-table__header">Total estimated pay</th>
|
|
60
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
61
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
62
62
|
</tr>
|
|
63
63
|
</tbody>
|
|
64
64
|
</table>
|
|
65
65
|
|
|
66
|
-
<table className="
|
|
67
|
-
<caption className="
|
|
68
|
-
<thead className="
|
|
69
|
-
<tr className="
|
|
70
|
-
<th scope="col" className="
|
|
71
|
-
<th scope="col" className="
|
|
72
|
-
<th scope="col" className="
|
|
66
|
+
<table className="ds-table">
|
|
67
|
+
<caption className="ds-table__caption ds-table__caption--md">Table with numbers and custom column widths </caption>
|
|
68
|
+
<thead className="ds-table__head">
|
|
69
|
+
<tr className="ds-table__row">
|
|
70
|
+
<th scope="col" className="ds-table__header ds-!-width-one-half">Date</th>
|
|
71
|
+
<th scope="col" className="ds-table__header ds-!-width-one-quarter ds-table__header--numeric">Regular</th>
|
|
72
|
+
<th scope="col" className="ds-table__header ds-!-width-one-quarter ds-table__header--numeric">Reduced</th>
|
|
73
73
|
</tr>
|
|
74
74
|
</thead>
|
|
75
|
-
<tbody className="
|
|
76
|
-
<tr className="
|
|
77
|
-
<th scope="row" className="
|
|
78
|
-
<td className="
|
|
79
|
-
<td className="
|
|
75
|
+
<tbody className="ds-table__body">
|
|
76
|
+
<tr className="ds-table__row">
|
|
77
|
+
<th scope="row" className="ds-table__header ds-!-width-one-half">First 6 weeks</th>
|
|
78
|
+
<td className="ds-table__cell ds-table__cell--numeric">€109.80</td>
|
|
79
|
+
<td className="ds-table__cell ds-table__cell--numeric">€69.80</td>
|
|
80
80
|
</tr>
|
|
81
|
-
<tr className="
|
|
82
|
-
<th scope="row" className="
|
|
83
|
-
<td className="
|
|
84
|
-
<td className="
|
|
81
|
+
<tr className="ds-table__row">
|
|
82
|
+
<th scope="row" className="ds-table__header ds-!-width-one-half">Next 33 weeks</th>
|
|
83
|
+
<td className="ds-table__cell ds-table__cell--numeric">€109.80</td>
|
|
84
|
+
<td className="ds-table__cell ds-table__cell--numeric">€69.80</td>
|
|
85
85
|
</tr>
|
|
86
86
|
</tbody>
|
|
87
87
|
</table>
|
|
88
88
|
|
|
89
89
|
{/* Table with primary color at header */}
|
|
90
|
-
<table className="
|
|
91
|
-
<caption className="
|
|
92
|
-
<thead className="
|
|
93
|
-
<tr className="
|
|
94
|
-
<th scope="col" className="
|
|
95
|
-
<th scope="col" className="
|
|
90
|
+
<table className="ds-table ds-table--dark ds-table--vertical-lines">
|
|
91
|
+
<caption className="ds-table__caption ds-table__caption--md">Table with primary color at header</caption>
|
|
92
|
+
<thead className="ds-table__head">
|
|
93
|
+
<tr className="ds-table__row">
|
|
94
|
+
<th scope="col" className="ds-table__header ds-table__header--dark">Date</th>
|
|
95
|
+
<th scope="col" className="ds-table__header ds-table__header--dark">Amount</th>
|
|
96
96
|
</tr>
|
|
97
97
|
</thead>
|
|
98
|
-
<tbody className="
|
|
99
|
-
<tr className="
|
|
100
|
-
<th scope="row" className="
|
|
101
|
-
<td className="
|
|
98
|
+
<tbody className="ds-table__body">
|
|
99
|
+
<tr className="ds-table__row">
|
|
100
|
+
<th scope="row" className="ds-table__header">First 6 weeks</th>
|
|
101
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
102
102
|
</tr>
|
|
103
|
-
<tr className="
|
|
104
|
-
<th scope="row" className="
|
|
105
|
-
<td className="
|
|
103
|
+
<tr className="ds-table__row">
|
|
104
|
+
<th scope="row" className="ds-table__header">Next 33 weeks</th>
|
|
105
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
106
106
|
</tr>
|
|
107
|
-
<tr className="
|
|
108
|
-
<th scope="row" className="
|
|
109
|
-
<td className="
|
|
107
|
+
<tr className="ds-table__row">
|
|
108
|
+
<th scope="row" className="ds-table__header">Total estimated pay</th>
|
|
109
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
110
110
|
</tr>
|
|
111
111
|
</tbody>
|
|
112
112
|
</table>
|
|
113
113
|
|
|
114
114
|
{/* Table with gray color at all headers */}
|
|
115
|
-
<table className="
|
|
116
|
-
<caption className="
|
|
117
|
-
<thead className="
|
|
118
|
-
<tr className="
|
|
119
|
-
<th scope="col" className="
|
|
120
|
-
<th scope="col" className="
|
|
121
|
-
<th scope="col" className="
|
|
115
|
+
<table className="ds-table ds-table--dark ">
|
|
116
|
+
<caption className="ds-table__caption ds-table__caption--md">Table with gray color at header</caption>
|
|
117
|
+
<thead className="ds-table__head">
|
|
118
|
+
<tr className="ds-table__row">
|
|
119
|
+
<th scope="col" className="ds-table__header ds-table__header--gray">Date</th>
|
|
120
|
+
<th scope="col" className="ds-table__header ds-table__header--gray">Amount</th>
|
|
121
|
+
<th scope="col" className="ds-table__header ds-table__header--gray">Discount</th>
|
|
122
122
|
</tr>
|
|
123
123
|
</thead>
|
|
124
|
-
<tbody className="
|
|
125
|
-
<tr className="
|
|
126
|
-
<th scope="row" className="
|
|
127
|
-
<td className="
|
|
128
|
-
<td className="
|
|
124
|
+
<tbody className="ds-table__body">
|
|
125
|
+
<tr className="ds-table__row">
|
|
126
|
+
<th scope="row" className="ds-table__header ds-table__header--gray">First 6 weeks</th>
|
|
127
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
128
|
+
<td className="ds-table__cell">€69.80 per week</td>
|
|
129
129
|
</tr>
|
|
130
|
-
<tr className="
|
|
131
|
-
<th scope="row" className="
|
|
132
|
-
<td className="
|
|
133
|
-
<td className="
|
|
130
|
+
<tr className="ds-table__row">
|
|
131
|
+
<th scope="row" className="ds-table__header ds-table__header--gray">Next 33 weeks</th>
|
|
132
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
133
|
+
<td className="ds-table__cell">€79.80 per week</td>
|
|
134
134
|
</tr>
|
|
135
135
|
</tbody>
|
|
136
136
|
</table>
|
|
137
137
|
|
|
138
138
|
{/* Zebra Table */}
|
|
139
|
-
<table className="
|
|
140
|
-
<caption className="
|
|
141
|
-
<thead className="
|
|
142
|
-
<tr className="
|
|
143
|
-
<th scope="col" className="
|
|
144
|
-
<th scope="col" className="
|
|
139
|
+
<table className="ds-table ds-table--zebra">
|
|
140
|
+
<caption className="ds-table__caption ds-table__caption--md">Zebra Table</caption>
|
|
141
|
+
<thead className="ds-table__head">
|
|
142
|
+
<tr className="ds-table__row">
|
|
143
|
+
<th scope="col" className="ds-table__header">Date</th>
|
|
144
|
+
<th scope="col" className="ds-table__header">Amount</th>
|
|
145
145
|
</tr>
|
|
146
146
|
</thead>
|
|
147
|
-
<tbody className="
|
|
148
|
-
<tr className="
|
|
149
|
-
<th scope="row" className="
|
|
150
|
-
<td className="
|
|
147
|
+
<tbody className="ds-table__body">
|
|
148
|
+
<tr className="ds-table__row">
|
|
149
|
+
<th scope="row" className="ds-table__header">First 6 weeks</th>
|
|
150
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
151
151
|
</tr>
|
|
152
|
-
<tr className="
|
|
153
|
-
<th scope="row" className="
|
|
154
|
-
<td className="
|
|
152
|
+
<tr className="ds-table__row">
|
|
153
|
+
<th scope="row" className="ds-table__header">First 6 weeks</th>
|
|
154
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
155
155
|
</tr>
|
|
156
|
-
<tr className="
|
|
157
|
-
<th scope="row" className="
|
|
158
|
-
<td className="
|
|
156
|
+
<tr className="ds-table__row">
|
|
157
|
+
<th scope="row" className="ds-table__header">Next 33 weeks</th>
|
|
158
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
159
159
|
</tr>
|
|
160
|
-
<tr className="
|
|
161
|
-
<th scope="row" className="
|
|
162
|
-
<td className="
|
|
160
|
+
<tr className="ds-table__row">
|
|
161
|
+
<th scope="row" className="ds-table__header">Total estimated pay</th>
|
|
162
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
163
163
|
</tr>
|
|
164
|
-
<tr className="
|
|
165
|
-
<th scope="row" className="
|
|
166
|
-
<td className="
|
|
164
|
+
<tr className="ds-table__row">
|
|
165
|
+
<th scope="row" className="ds-table__header">Total estimated pay</th>
|
|
166
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
167
167
|
</tr>
|
|
168
168
|
</tbody>
|
|
169
169
|
</table>
|
|
170
170
|
|
|
171
171
|
{/* Zebra Table with dark header */}
|
|
172
|
-
<table className="
|
|
173
|
-
<caption className="
|
|
174
|
-
<thead className="
|
|
175
|
-
<tr className="
|
|
176
|
-
<th scope="col" className="
|
|
177
|
-
<th scope="col" className="
|
|
172
|
+
<table className="ds-table ds-table--dark ds-table--zebra">
|
|
173
|
+
<caption className="ds-table__caption ds-table__caption--md">Zebra Table with dark header</caption>
|
|
174
|
+
<thead className="ds-table__head">
|
|
175
|
+
<tr className="ds-table__row">
|
|
176
|
+
<th scope="col" className="ds-table__header ds-table__header--dark">Date</th>
|
|
177
|
+
<th scope="col" className="ds-table__header ds-table__header--dark">Amount</th>
|
|
178
178
|
</tr>
|
|
179
179
|
</thead>
|
|
180
|
-
<tbody className="
|
|
181
|
-
<tr className="
|
|
182
|
-
<th scope="row" className="
|
|
183
|
-
<td className="
|
|
180
|
+
<tbody className="ds-table__body">
|
|
181
|
+
<tr className="ds-table__row">
|
|
182
|
+
<th scope="row" className="ds-table__header">First 6 weeks</th>
|
|
183
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
184
184
|
</tr>
|
|
185
|
-
<tr className="
|
|
186
|
-
<th scope="row" className="
|
|
187
|
-
<td className="
|
|
185
|
+
<tr className="ds-table__row">
|
|
186
|
+
<th scope="row" className="ds-table__header">First 6 weeks</th>
|
|
187
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
188
188
|
</tr>
|
|
189
|
-
<tr className="
|
|
190
|
-
<th scope="row" className="
|
|
191
|
-
<td className="
|
|
189
|
+
<tr className="ds-table__row">
|
|
190
|
+
<th scope="row" className="ds-table__header">Next 33 weeks</th>
|
|
191
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
192
192
|
</tr>
|
|
193
|
-
<tr className="
|
|
194
|
-
<th scope="row" className="
|
|
195
|
-
<td className="
|
|
193
|
+
<tr className="ds-table__row">
|
|
194
|
+
<th scope="row" className="ds-table__header">Total estimated pay</th>
|
|
195
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
196
196
|
</tr>
|
|
197
|
-
<tr className="
|
|
198
|
-
<th scope="row" className="
|
|
199
|
-
<td className="
|
|
197
|
+
<tr className="ds-table__row">
|
|
198
|
+
<th scope="row" className="ds-table__header">Total estimated pay</th>
|
|
199
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
200
200
|
</tr>
|
|
201
201
|
</tbody>
|
|
202
202
|
</table>
|
|
203
203
|
|
|
204
204
|
{/* Zebra Table with dark headers */}
|
|
205
|
-
<table className="
|
|
206
|
-
<caption className="
|
|
207
|
-
<thead className="
|
|
208
|
-
<tr className="
|
|
209
|
-
<th scope="col" className="
|
|
210
|
-
<th scope="col" className="
|
|
211
|
-
<th scope="col" className="
|
|
212
|
-
<th scope="col" className="
|
|
205
|
+
<table className="ds-table ds-table--dark ds-table--zebra">
|
|
206
|
+
<caption className="ds-table__caption ds-table__caption--md">Zebra Table with dark header</caption>
|
|
207
|
+
<thead className="ds-table__head">
|
|
208
|
+
<tr className="ds-table__row">
|
|
209
|
+
<th scope="col" className="ds-table__header ds-table__header--dark">Date</th>
|
|
210
|
+
<th scope="col" className="ds-table__header ds-table__header--dark">Amount</th>
|
|
211
|
+
<th scope="col" className="ds-table__header ds-table__header--dark">Amount</th>
|
|
212
|
+
<th scope="col" className="ds-table__header ds-table__header--dark">Amount</th>
|
|
213
213
|
</tr>
|
|
214
214
|
</thead>
|
|
215
|
-
<tbody className="
|
|
216
|
-
<tr className="
|
|
217
|
-
<th scope="row" className="
|
|
218
|
-
<td className="
|
|
219
|
-
<td className="
|
|
220
|
-
<td className="
|
|
221
|
-
</tr>
|
|
222
|
-
<tr className="
|
|
223
|
-
<th scope="row" className="
|
|
224
|
-
<td className="
|
|
225
|
-
<td className="
|
|
226
|
-
<td className="
|
|
227
|
-
</tr>
|
|
228
|
-
<tr className="
|
|
229
|
-
<th scope="row" className="
|
|
230
|
-
<td className="
|
|
231
|
-
<td className="
|
|
232
|
-
<td className="
|
|
233
|
-
</tr>
|
|
234
|
-
<tr className="
|
|
235
|
-
<th scope="row" className="
|
|
236
|
-
<td className="
|
|
237
|
-
<td className="
|
|
238
|
-
<td className="
|
|
239
|
-
</tr>
|
|
240
|
-
<tr className="
|
|
241
|
-
<th scope="row" className="
|
|
242
|
-
<td className="
|
|
243
|
-
<td className="
|
|
244
|
-
<td className="
|
|
215
|
+
<tbody className="ds-table__body">
|
|
216
|
+
<tr className="ds-table__row">
|
|
217
|
+
<th scope="row" className="ds-table__header ds-table__header--dark">First 6 weeks</th>
|
|
218
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
219
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
220
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
221
|
+
</tr>
|
|
222
|
+
<tr className="ds-table__row">
|
|
223
|
+
<th scope="row" className="ds-table__header ds-table__header--dark">First 6 weeks</th>
|
|
224
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
225
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
226
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
227
|
+
</tr>
|
|
228
|
+
<tr className="ds-table__row">
|
|
229
|
+
<th scope="row" className="ds-table__header ds-table__header--dark">Next 33 weeks</th>
|
|
230
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
231
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
232
|
+
<td className="ds-table__cell">€109.80 per week</td>
|
|
233
|
+
</tr>
|
|
234
|
+
<tr className="ds-table__row">
|
|
235
|
+
<th scope="row" className="ds-table__header ds-table__header--dark">Total estimated pay</th>
|
|
236
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
237
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
238
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
239
|
+
</tr>
|
|
240
|
+
<tr className="ds-table__row">
|
|
241
|
+
<th scope="row" className="ds-table__header ds-table__header--dark">Total estimated pay</th>
|
|
242
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
243
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
244
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
245
245
|
</tr>
|
|
246
246
|
</tbody>
|
|
247
247
|
</table>
|
|
248
248
|
|
|
249
249
|
{/* Densed zebra Table */}
|
|
250
|
-
<table className="
|
|
251
|
-
<caption className="
|
|
252
|
-
<thead className="
|
|
253
|
-
<tr className="
|
|
254
|
-
<th scope="col" className="
|
|
255
|
-
<th scope="col" className="
|
|
256
|
-
<th scope="col" className="
|
|
257
|
-
<th scope="col" className="
|
|
258
|
-
<th scope="col" className="
|
|
259
|
-
<th scope="col" className="
|
|
250
|
+
<table className="ds-table ds-table--zebra ds-table--dense">
|
|
251
|
+
<caption className="ds-table__caption ds-table__caption--md">Densed zebra Table</caption>
|
|
252
|
+
<thead className="ds-table__head">
|
|
253
|
+
<tr className="ds-table__row">
|
|
254
|
+
<th scope="col" className="ds-table__header">Date</th>
|
|
255
|
+
<th scope="col" className="ds-table__header">Amount</th>
|
|
256
|
+
<th scope="col" className="ds-table__header">Amount</th>
|
|
257
|
+
<th scope="col" className="ds-table__header">Amount</th>
|
|
258
|
+
<th scope="col" className="ds-table__header">Amount</th>
|
|
259
|
+
<th scope="col" className="ds-table__header">Amount</th>
|
|
260
260
|
</tr>
|
|
261
261
|
</thead>
|
|
262
|
-
<tbody className="
|
|
263
|
-
<tr className="
|
|
264
|
-
<th scope="row" className="
|
|
265
|
-
<td className="
|
|
266
|
-
<td className="
|
|
267
|
-
<td className="
|
|
268
|
-
<td className="
|
|
269
|
-
<td className="
|
|
270
|
-
</tr>
|
|
271
|
-
<tr className="
|
|
272
|
-
<th scope="row" className="
|
|
273
|
-
<td className="
|
|
274
|
-
<td className="
|
|
275
|
-
<td className="
|
|
276
|
-
<td className="
|
|
277
|
-
<td className="
|
|
278
|
-
</tr>
|
|
279
|
-
<tr className="
|
|
280
|
-
<th scope="row" className="
|
|
281
|
-
<td className="
|
|
282
|
-
<td className="
|
|
283
|
-
<td className="
|
|
284
|
-
<td className="
|
|
285
|
-
<td className="
|
|
286
|
-
</tr>
|
|
287
|
-
<tr className="
|
|
288
|
-
<th scope="row" className="
|
|
289
|
-
<td className="
|
|
290
|
-
<td className="
|
|
291
|
-
<td className="
|
|
292
|
-
<td className="
|
|
293
|
-
<td className="
|
|
294
|
-
</tr>
|
|
295
|
-
<tr className="
|
|
296
|
-
<th scope="row" className="
|
|
297
|
-
<td className="
|
|
298
|
-
<td className="
|
|
299
|
-
<td className="
|
|
300
|
-
<td className="
|
|
301
|
-
<td className="
|
|
262
|
+
<tbody className="ds-table__body">
|
|
263
|
+
<tr className="ds-table__row">
|
|
264
|
+
<th scope="row" className="ds-table__header">First 6 weeks</th>
|
|
265
|
+
<td className="ds-table__cell">€109.80</td>
|
|
266
|
+
<td className="ds-table__cell">€109.80</td>
|
|
267
|
+
<td className="ds-table__cell">€109.80</td>
|
|
268
|
+
<td className="ds-table__cell">€109.80</td>
|
|
269
|
+
<td className="ds-table__cell">€109.80</td>
|
|
270
|
+
</tr>
|
|
271
|
+
<tr className="ds-table__row">
|
|
272
|
+
<th scope="row" className="ds-table__header">First 6 weeks</th>
|
|
273
|
+
<td className="ds-table__cell">€109.80</td>
|
|
274
|
+
<td className="ds-table__cell">€109.80</td>
|
|
275
|
+
<td className="ds-table__cell">€109.80</td>
|
|
276
|
+
<td className="ds-table__cell">€109.80</td>
|
|
277
|
+
<td className="ds-table__cell">€109.80</td>
|
|
278
|
+
</tr>
|
|
279
|
+
<tr className="ds-table__row">
|
|
280
|
+
<th scope="row" className="ds-table__header">Next 33 weeks</th>
|
|
281
|
+
<td className="ds-table__cell">€109.80</td>
|
|
282
|
+
<td className="ds-table__cell">€109.80</td>
|
|
283
|
+
<td className="ds-table__cell">€109.80</td>
|
|
284
|
+
<td className="ds-table__cell">€109.80</td>
|
|
285
|
+
<td className="ds-table__cell">€109.80</td>
|
|
286
|
+
</tr>
|
|
287
|
+
<tr className="ds-table__row">
|
|
288
|
+
<th scope="row" className="ds-table__header">Total estimated pay</th>
|
|
289
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
290
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
291
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
292
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
293
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
294
|
+
</tr>
|
|
295
|
+
<tr className="ds-table__row">
|
|
296
|
+
<th scope="row" className="ds-table__header">Total estimated pay</th>
|
|
297
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
298
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
299
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
300
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
301
|
+
<td className="ds-table__cell">€4,282.20</td>
|
|
302
302
|
</tr>
|
|
303
303
|
</tbody>
|
|
304
304
|
</table>
|