@decidables/detectable-elements 0.1.2 → 0.1.3
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 +12 -0
- package/lib/detectableElements.esm.js +15 -8
- package/lib/detectableElements.esm.js.map +1 -1
- package/lib/detectableElements.esm.min.js +15 -8
- package/lib/detectableElements.esm.min.js.map +1 -1
- package/lib/detectableElements.umd.js +15 -8
- package/lib/detectableElements.umd.js.map +1 -1
- package/lib/detectableElements.umd.min.js +15 -8
- package/lib/detectableElements.umd.min.js.map +1 -1
- package/package.json +3 -3
- package/src/components/detectable-table.js +2 -2
- package/src/components/roc-space.js +1 -1
- package/src/equations/hmfacr2acc.js +1 -1
- package/src/equations/sdt-equation.js +6 -0
- package/src/examples/sdt-example.js +1 -2
|
@@ -6722,6 +6722,8 @@
|
|
|
6722
6722
|
---font-family-base: var(--font-family-base, "Source Sans", sans-serif);
|
|
6723
6723
|
---font-family-math: var(--font-family-math, "Source Serif", serif);
|
|
6724
6724
|
|
|
6725
|
+
---border: var(--border, 1px solid var(---color-border));
|
|
6726
|
+
---border-radius: var(--border-radius, 0.25rem);
|
|
6725
6727
|
---transition-duration: var(--transition-duration, 500ms);
|
|
6726
6728
|
|
|
6727
6729
|
font-family: var(---font-family-base);
|
|
@@ -6755,7 +6757,7 @@
|
|
|
6755
6757
|
width: 0;
|
|
6756
6758
|
height: 0;
|
|
6757
6759
|
}
|
|
6758
|
-
`), o$3(this.cssBoxShadow(0)), o$3(this.cssBoxShadow(2)), o$3(this.cssBoxShadow(4)), o$3(this.cssBoxShadow(8)), o$3(this.greys.white), o$3(this.greys.light75), o$3(this.greys.dark75), o$3(this.greys.white), o$3(this.greys.dark25), o$3(this.greys.light75), o$3(this.greys.light50), o$3(this.greys.
|
|
6760
|
+
`), o$3(this.cssBoxShadow(0)), o$3(this.cssBoxShadow(2)), o$3(this.cssBoxShadow(4)), o$3(this.cssBoxShadow(8)), o$3(this.greys.white), o$3(this.greys.light75), o$3(this.greys.dark75), o$3(this.greys.white), o$3(this.greys.dark25), o$3(this.greys.light75), o$3(this.greys.light50), o$3(this.greys.dark25), o$3(this.greys.grey), o$3(this.greys.dark50), o$3(this.greys.dark75));
|
|
6759
6761
|
}
|
|
6760
6762
|
|
|
6761
6763
|
}
|
|
@@ -6797,7 +6799,7 @@
|
|
|
6797
6799
|
color: var(---color-text-inverse);
|
|
6798
6800
|
|
|
6799
6801
|
border: 0;
|
|
6800
|
-
border-radius:
|
|
6802
|
+
border-radius: var(---border-radius);
|
|
6801
6803
|
outline: none;
|
|
6802
6804
|
}
|
|
6803
6805
|
|
|
@@ -13580,7 +13582,7 @@
|
|
|
13580
13582
|
.point .label {
|
|
13581
13583
|
font-size: 0.75rem;
|
|
13582
13584
|
|
|
13583
|
-
dominant-baseline:
|
|
13585
|
+
dominant-baseline: central;
|
|
13584
13586
|
text-anchor: middle;
|
|
13585
13587
|
|
|
13586
13588
|
fill: var(---color-text-inverse);
|
|
@@ -16793,10 +16795,10 @@
|
|
|
16793
16795
|
</tr>
|
|
16794
16796
|
<tr>
|
|
16795
16797
|
<th class="th th-sub" scope="col">
|
|
16796
|
-
|
|
16798
|
+
‘Present’
|
|
16797
16799
|
</th>
|
|
16798
16800
|
<th class="th th-sub" scope="col">
|
|
16799
|
-
|
|
16801
|
+
‘Absent’
|
|
16800
16802
|
</th>
|
|
16801
16803
|
</tr>
|
|
16802
16804
|
</thead>
|
|
@@ -16919,6 +16921,10 @@
|
|
|
16919
16921
|
font-style: normal;
|
|
16920
16922
|
}
|
|
16921
16923
|
|
|
16924
|
+
var {
|
|
16925
|
+
border-radius: var(---border-radius);
|
|
16926
|
+
}
|
|
16927
|
+
|
|
16922
16928
|
.tight {
|
|
16923
16929
|
padding: 0;
|
|
16924
16930
|
}
|
|
@@ -16944,6 +16950,8 @@
|
|
|
16944
16950
|
padding: 0.125rem 0.375rem 0.375rem;
|
|
16945
16951
|
|
|
16946
16952
|
vertical-align: middle;
|
|
16953
|
+
|
|
16954
|
+
border-radius: var(---border-radius);
|
|
16947
16955
|
}
|
|
16948
16956
|
|
|
16949
16957
|
.bottom {
|
|
@@ -17797,7 +17805,7 @@
|
|
|
17797
17805
|
</tr>
|
|
17798
17806
|
</tbody>
|
|
17799
17807
|
</table>
|
|
17800
|
-
</div>`), acc, h, cr, h, m, fa
|
|
17808
|
+
</div>`), acc, h, cr, h, cr, m, fa);
|
|
17801
17809
|
}
|
|
17802
17810
|
|
|
17803
17811
|
}
|
|
@@ -18174,7 +18182,6 @@
|
|
|
18174
18182
|
static get styles() {
|
|
18175
18183
|
return [super.styles, r$2(_t || (_t = _`
|
|
18176
18184
|
:host {
|
|
18177
|
-
---border: var(--border, 1px solid var(---color-border));
|
|
18178
18185
|
display: inline-block;
|
|
18179
18186
|
|
|
18180
18187
|
margin-bottom: 1rem;
|
|
@@ -18195,7 +18202,7 @@
|
|
|
18195
18202
|
padding: 0.625rem;
|
|
18196
18203
|
|
|
18197
18204
|
border: var(---border);
|
|
18198
|
-
border-radius:
|
|
18205
|
+
border-radius: var(---border-radius);
|
|
18199
18206
|
}
|
|
18200
18207
|
|
|
18201
18208
|
.body ::slotted(*) {
|