@public-ui/theme-default 1.7.9 → 1.7.10
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/index.cjs +10 -25
- package/dist/index.mjs +10 -25
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -1838,6 +1838,16 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
1838
1838
|
border-style: solid;
|
|
1839
1839
|
border-color: var(--color-primary-variant);
|
|
1840
1840
|
}
|
|
1841
|
+
.table {
|
|
1842
|
+
padding: 0.5rem;
|
|
1843
|
+
}
|
|
1844
|
+
.table:has(caption:focus) {
|
|
1845
|
+
outline-color: var(--color-primary-variant);
|
|
1846
|
+
outline-offset: 2px;
|
|
1847
|
+
outline-style: solid;
|
|
1848
|
+
outline-width: 3px;
|
|
1849
|
+
transition: outline-offset 0.2s linear;
|
|
1850
|
+
}
|
|
1841
1851
|
table {
|
|
1842
1852
|
width: 100%;
|
|
1843
1853
|
border-spacing: 0;
|
|
@@ -1860,12 +1870,6 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
1860
1870
|
grid-template-columns: 1fr auto;
|
|
1861
1871
|
align-items: center;
|
|
1862
1872
|
}
|
|
1863
|
-
th div.center {
|
|
1864
|
-
justify-content: center;
|
|
1865
|
-
}
|
|
1866
|
-
th div.right {
|
|
1867
|
-
justify-content: end;
|
|
1868
|
-
}
|
|
1869
1873
|
tr:nth-child(even) {
|
|
1870
1874
|
background-color: var(--color-mute);
|
|
1871
1875
|
}
|
|
@@ -1873,29 +1877,10 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
1873
1877
|
td {
|
|
1874
1878
|
padding: 0.5rem;
|
|
1875
1879
|
}
|
|
1876
|
-
td.center > div {
|
|
1877
|
-
display: flex;
|
|
1878
|
-
justify-content: center;
|
|
1879
|
-
}
|
|
1880
|
-
td.right > div {
|
|
1881
|
-
display: flex;
|
|
1882
|
-
justify-content: end;
|
|
1883
|
-
}
|
|
1884
1880
|
th[aria-sort='ascending'],
|
|
1885
1881
|
th[aria-sort='descending'] {
|
|
1886
1882
|
font-weight: 700;
|
|
1887
1883
|
}
|
|
1888
|
-
:host > div:last-child {
|
|
1889
|
-
padding: 0.5rem;
|
|
1890
|
-
}
|
|
1891
|
-
:host > div:last-child,
|
|
1892
|
-
:host > div:last-child > div:last-child {
|
|
1893
|
-
display: grid;
|
|
1894
|
-
align-items: center;
|
|
1895
|
-
justify-items: center;
|
|
1896
|
-
gap: 1rem;
|
|
1897
|
-
}
|
|
1898
|
-
|
|
1899
1884
|
@media (min-width: 1024px) {
|
|
1900
1885
|
div.pagination kol-pagination {
|
|
1901
1886
|
display: flex;
|
package/dist/index.mjs
CHANGED
|
@@ -1836,6 +1836,16 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
1836
1836
|
border-style: solid;
|
|
1837
1837
|
border-color: var(--color-primary-variant);
|
|
1838
1838
|
}
|
|
1839
|
+
.table {
|
|
1840
|
+
padding: 0.5rem;
|
|
1841
|
+
}
|
|
1842
|
+
.table:has(caption:focus) {
|
|
1843
|
+
outline-color: var(--color-primary-variant);
|
|
1844
|
+
outline-offset: 2px;
|
|
1845
|
+
outline-style: solid;
|
|
1846
|
+
outline-width: 3px;
|
|
1847
|
+
transition: outline-offset 0.2s linear;
|
|
1848
|
+
}
|
|
1839
1849
|
table {
|
|
1840
1850
|
width: 100%;
|
|
1841
1851
|
border-spacing: 0;
|
|
@@ -1858,12 +1868,6 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
1858
1868
|
grid-template-columns: 1fr auto;
|
|
1859
1869
|
align-items: center;
|
|
1860
1870
|
}
|
|
1861
|
-
th div.center {
|
|
1862
|
-
justify-content: center;
|
|
1863
|
-
}
|
|
1864
|
-
th div.right {
|
|
1865
|
-
justify-content: end;
|
|
1866
|
-
}
|
|
1867
1871
|
tr:nth-child(even) {
|
|
1868
1872
|
background-color: var(--color-mute);
|
|
1869
1873
|
}
|
|
@@ -1871,29 +1875,10 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
1871
1875
|
td {
|
|
1872
1876
|
padding: 0.5rem;
|
|
1873
1877
|
}
|
|
1874
|
-
td.center > div {
|
|
1875
|
-
display: flex;
|
|
1876
|
-
justify-content: center;
|
|
1877
|
-
}
|
|
1878
|
-
td.right > div {
|
|
1879
|
-
display: flex;
|
|
1880
|
-
justify-content: end;
|
|
1881
|
-
}
|
|
1882
1878
|
th[aria-sort='ascending'],
|
|
1883
1879
|
th[aria-sort='descending'] {
|
|
1884
1880
|
font-weight: 700;
|
|
1885
1881
|
}
|
|
1886
|
-
:host > div:last-child {
|
|
1887
|
-
padding: 0.5rem;
|
|
1888
|
-
}
|
|
1889
|
-
:host > div:last-child,
|
|
1890
|
-
:host > div:last-child > div:last-child {
|
|
1891
|
-
display: grid;
|
|
1892
|
-
align-items: center;
|
|
1893
|
-
justify-items: center;
|
|
1894
|
-
gap: 1rem;
|
|
1895
|
-
}
|
|
1896
|
-
|
|
1897
1882
|
@media (min-width: 1024px) {
|
|
1898
1883
|
div.pagination kol-pagination {
|
|
1899
1884
|
display: flex;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/theme-default",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.10",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -38,18 +38,18 @@
|
|
|
38
38
|
"wcag"
|
|
39
39
|
],
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@public-ui/schema": "1.7.
|
|
42
|
-
"@public-ui/visual-tests": "1.7.
|
|
41
|
+
"@public-ui/schema": "1.7.10",
|
|
42
|
+
"@public-ui/visual-tests": "1.7.10",
|
|
43
43
|
"@types/node": "ts5.3",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "6.
|
|
45
|
-
"@typescript-eslint/parser": "6.
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "6.19.1",
|
|
45
|
+
"@typescript-eslint/parser": "6.19.1",
|
|
46
46
|
"eslint": "8.56.0",
|
|
47
47
|
"eslint-plugin-no-loops": "0.3.0",
|
|
48
48
|
"typescript": "5.3.3",
|
|
49
49
|
"unbuild": "1.2.1"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@public-ui/components": "1.7.
|
|
52
|
+
"@public-ui/components": "1.7.10"
|
|
53
53
|
},
|
|
54
54
|
"sideEffects": false,
|
|
55
55
|
"type": "module",
|