@public-ui/themes 2.0.0-rc.4 → 2.0.0-rc.5
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 +12 -0
- package/dist/index.mjs +12 -0
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -18606,6 +18606,12 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
18606
18606
|
background-color: transparent;
|
|
18607
18607
|
border-color: transparent;
|
|
18608
18608
|
}
|
|
18609
|
+
.access-key-hint {
|
|
18610
|
+
background: var(--color-mute-variant);
|
|
18611
|
+
border-radius: 3px;
|
|
18612
|
+
color: var(--color-text);
|
|
18613
|
+
padding: 0 0.3em;
|
|
18614
|
+
}
|
|
18609
18615
|
`,
|
|
18610
18616
|
"KOL-INPUT-TEXT": css$3`
|
|
18611
18617
|
kol-input {
|
|
@@ -20702,6 +20708,12 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
20702
20708
|
left: unset;
|
|
20703
20709
|
position: unset;
|
|
20704
20710
|
}
|
|
20711
|
+
.access-key-hint {
|
|
20712
|
+
background: var(--color-mute-variant);
|
|
20713
|
+
border-radius: 3px;
|
|
20714
|
+
color: var(--color-text);
|
|
20715
|
+
padding: 0 0.3em;
|
|
20716
|
+
}
|
|
20705
20717
|
`,
|
|
20706
20718
|
"KOL-ABBR": css$3`
|
|
20707
20719
|
abbr {
|
package/dist/index.mjs
CHANGED
|
@@ -18604,6 +18604,12 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
18604
18604
|
background-color: transparent;
|
|
18605
18605
|
border-color: transparent;
|
|
18606
18606
|
}
|
|
18607
|
+
.access-key-hint {
|
|
18608
|
+
background: var(--color-mute-variant);
|
|
18609
|
+
border-radius: 3px;
|
|
18610
|
+
color: var(--color-text);
|
|
18611
|
+
padding: 0 0.3em;
|
|
18612
|
+
}
|
|
18607
18613
|
`,
|
|
18608
18614
|
"KOL-INPUT-TEXT": css$3`
|
|
18609
18615
|
kol-input {
|
|
@@ -20700,6 +20706,12 @@ const DEFAULT = KoliBri.createTheme("default", {
|
|
|
20700
20706
|
left: unset;
|
|
20701
20707
|
position: unset;
|
|
20702
20708
|
}
|
|
20709
|
+
.access-key-hint {
|
|
20710
|
+
background: var(--color-mute-variant);
|
|
20711
|
+
border-radius: 3px;
|
|
20712
|
+
color: var(--color-text);
|
|
20713
|
+
padding: 0 0.3em;
|
|
20714
|
+
}
|
|
20703
20715
|
`,
|
|
20704
20716
|
"KOL-ABBR": css$3`
|
|
20705
20717
|
abbr {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/themes",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.5",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"wcag"
|
|
42
42
|
],
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@public-ui/schema": "2.0.0-rc.
|
|
44
|
+
"@public-ui/schema": "2.0.0-rc.5",
|
|
45
45
|
"@types/node": "ts5.1",
|
|
46
46
|
"@typescript-eslint/eslint-plugin": "6.9.0",
|
|
47
47
|
"@typescript-eslint/parser": "6.9.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"unbuild": "1.2.1"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@public-ui/components": "2.0.0-rc.
|
|
55
|
+
"@public-ui/components": "2.0.0-rc.5"
|
|
56
56
|
},
|
|
57
57
|
"sideEffects": false,
|
|
58
58
|
"type": "module",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"format": "prettier --check src",
|
|
77
77
|
"lint": "eslint src && tsc --noemit",
|
|
78
78
|
"dev": "nodemon --ignore dist -e ts,tsx --exec 'pnpm build'",
|
|
79
|
-
"test-all": "pnpm -r --workspace-concurrency=1 test
|
|
80
|
-
"test-update-all": "pnpm -r --workspace-concurrency=1 test"
|
|
79
|
+
"test-all": "pnpm -r --workspace-concurrency=1 test",
|
|
80
|
+
"test-update-all": "pnpm -r --workspace-concurrency=1 test-update"
|
|
81
81
|
}
|
|
82
82
|
}
|