@almadar/ui 5.155.0 → 5.156.0
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/{NavStackContext-BoVV9nWb.d.cts → NavStackContext-bw2nlBgT.d.cts} +4 -0
- package/dist/{NavStackContext-BoVV9nWb.d.ts → NavStackContext-bw2nlBgT.d.ts} +4 -0
- package/dist/avl/index.cjs +215 -114
- package/dist/avl/index.js +217 -116
- package/dist/components/index.cjs +215 -114
- package/dist/components/index.d.cts +28 -12
- package/dist/components/index.d.ts +28 -12
- package/dist/components/index.js +217 -116
- package/dist/hooks/index.d.cts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/{offline-executor-Qz4b6GpF.d.cts → offline-executor-QUdKOj7f.d.cts} +1 -1
- package/dist/{offline-executor-Qz4b6GpF.d.ts → offline-executor-QUdKOj7f.d.ts} +1 -1
- package/dist/providers/index.cjs +252 -119
- package/dist/providers/index.d.cts +26 -4
- package/dist/providers/index.d.ts +26 -4
- package/dist/providers/index.js +252 -121
- package/dist/renderer/index.d.cts +2 -2
- package/dist/renderer/index.d.ts +2 -2
- package/dist/runtime/index.cjs +215 -114
- package/dist/runtime/index.js +217 -116
- package/package.json +4 -4
- package/themes/_fonts-kenney.css +11 -0
- package/themes/index.css +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.156.0",
|
|
4
4
|
"description": "React UI components, hooks, and providers for Almadar",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -118,11 +118,11 @@
|
|
|
118
118
|
"access": "public"
|
|
119
119
|
},
|
|
120
120
|
"dependencies": {
|
|
121
|
-
"@almadar/core": "^10.
|
|
121
|
+
"@almadar/core": "^10.66.0",
|
|
122
122
|
"@almadar/evaluator": "^2.41.0",
|
|
123
123
|
"@almadar/logger": "^1.11.0",
|
|
124
|
-
"@almadar/runtime": "^6.
|
|
125
|
-
"@almadar/std": "^16.
|
|
124
|
+
"@almadar/runtime": "^6.57.0",
|
|
125
|
+
"@almadar/std": "^16.182.0",
|
|
126
126
|
"@almadar/syntax": "^1.15.0",
|
|
127
127
|
"@dnd-kit/core": "^6.3.1",
|
|
128
128
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Kenney game fonts — @font-face declarations for the game display faces named
|
|
3
|
+
* by the game themes (--font-family / --font-family-display) and by GameShell's
|
|
4
|
+
* fontFamily knob. Loaded once here, at the theme layer, so every consumer of a
|
|
5
|
+
* game theme gets the faces (previously they were injected privately by GameShell).
|
|
6
|
+
*/
|
|
7
|
+
@font-face { font-family: 'Kenney Future'; src: url('https://almadar-kflow-assets.web.app/shared/_shared/kenney-fonts/fonts/Kenney%20Future.ttf') format('truetype'); font-display: swap; }
|
|
8
|
+
@font-face { font-family: 'Kenney Future Narrow'; src: url('https://almadar-kflow-assets.web.app/shared/_shared/kenney-fonts/fonts/Kenney%20Future%20Narrow.ttf') format('truetype'); font-display: swap; }
|
|
9
|
+
@font-face { font-family: 'Kenney Pixel'; src: url('https://almadar-kflow-assets.web.app/shared/_shared/kenney-fonts/fonts/Kenney%20Pixel.ttf') format('truetype'); font-display: swap; }
|
|
10
|
+
@font-face { font-family: 'Kenney Blocks'; src: url('https://almadar-kflow-assets.web.app/shared/_shared/kenney-fonts/fonts/Kenney%20Blocks.ttf') format('truetype'); font-display: swap; }
|
|
11
|
+
@font-face { font-family: 'Kenney Mini'; src: url('https://almadar-kflow-assets.web.app/shared/_shared/kenney-fonts/fonts/Kenney%20Mini.ttf') format('truetype'); font-display: swap; }
|
package/themes/index.css
CHANGED
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
* means body text renders immediately with the fallback chain while the web fonts load. */
|
|
15
15
|
@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;700;900&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&family=Manrope:wght@400;500;600;700;800&family=VT323&display=swap");
|
|
16
16
|
|
|
17
|
+
/* Kenney game font faces — consumed by the game themes and GameShell's fontFamily knob. */
|
|
18
|
+
@import "./_fonts-kenney.css";
|
|
19
|
+
|
|
17
20
|
/* Shared base layer — atelier's typography + density at :root, inherited
|
|
18
21
|
* by every theme that doesn't override. MUST come before per-theme
|
|
19
22
|
* imports so [data-theme="..."] selectors win the cascade on the few
|