@public-ui/theme-default 1.7.6-rc.2 → 1.7.6
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 +7 -0
- package/dist/index.mjs +7 -0
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -2198,6 +2198,13 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
2198
2198
|
:host .disabled {
|
|
2199
2199
|
opacity: 0.33;
|
|
2200
2200
|
}
|
|
2201
|
+
.button:focus-within {
|
|
2202
|
+
border-radius: var(--border-radius);
|
|
2203
|
+
outline-color: var(--color-primary-variant);
|
|
2204
|
+
outline-offset: 2px;
|
|
2205
|
+
outline-style: solid;
|
|
2206
|
+
outline-width: calc(var(--border-width) * 2);
|
|
2207
|
+
}
|
|
2201
2208
|
`,
|
|
2202
2209
|
"KOL-INPUT-RADIO": css`
|
|
2203
2210
|
label {
|
package/dist/index.mjs
CHANGED
|
@@ -2196,6 +2196,13 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
2196
2196
|
:host .disabled {
|
|
2197
2197
|
opacity: 0.33;
|
|
2198
2198
|
}
|
|
2199
|
+
.button:focus-within {
|
|
2200
|
+
border-radius: var(--border-radius);
|
|
2201
|
+
outline-color: var(--color-primary-variant);
|
|
2202
|
+
outline-offset: 2px;
|
|
2203
|
+
outline-style: solid;
|
|
2204
|
+
outline-width: calc(var(--border-width) * 2);
|
|
2205
|
+
}
|
|
2199
2206
|
`,
|
|
2200
2207
|
"KOL-INPUT-RADIO": css`
|
|
2201
2208
|
label {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/theme-default",
|
|
3
|
-
"version": "1.7.6
|
|
3
|
+
"version": "1.7.6",
|
|
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.6
|
|
42
|
-
"@public-ui/visual-tests": "1.7.6
|
|
41
|
+
"@public-ui/schema": "1.7.6",
|
|
42
|
+
"@public-ui/visual-tests": "1.7.6",
|
|
43
43
|
"@types/node": "ts5.3",
|
|
44
|
-
"@typescript-eslint/eslint-plugin": "6.
|
|
45
|
-
"@typescript-eslint/parser": "6.
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "6.13.0",
|
|
45
|
+
"@typescript-eslint/parser": "6.13.0",
|
|
46
46
|
"eslint": "8.54.0",
|
|
47
47
|
"eslint-plugin-no-loops": "0.3.0",
|
|
48
48
|
"typescript": "5.3.2",
|
|
49
49
|
"unbuild": "1.2.1"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@public-ui/components": "1.7.6
|
|
52
|
+
"@public-ui/components": "1.7.6"
|
|
53
53
|
},
|
|
54
54
|
"sideEffects": false,
|
|
55
55
|
"type": "module",
|