@almadar/orb 1.9.4 → 1.9.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/package.json +6 -6
- package/shells/almadar-shell/package.json +10 -3
- package/shells/almadar-shell/packages/client/package.json +1 -1
- package/shells/almadar-shell/packages/client/src/App.tsx +2 -1
- package/shells/almadar-shell/packages/client/tailwind.config.js +4 -1
- package/shells/almadar-shell/pnpm-lock.yaml +118 -595
- package/shells/orb-shell/packages/client/tailwind-preset.cjs +243 -0
- package/shells/orb-shell/packages/client/tailwind.config.js +1 -1
- /package/shells/{orb-shell/packages/client/tailwind-preset.js → almadar-shell/packages/client/tailwind-preset.cjs} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/orb",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.5",
|
|
4
4
|
"description": "Orb CLI - Compile Orbital schemas to full-stack applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"node": ">=16.0.0"
|
|
50
50
|
},
|
|
51
51
|
"optionalDependencies": {
|
|
52
|
-
"@almadar/orb-darwin-x64": "1.9.
|
|
53
|
-
"@almadar/orb-darwin-arm64": "1.9.
|
|
54
|
-
"@almadar/orb-linux-x64": "1.9.
|
|
55
|
-
"@almadar/orb-linux-arm64": "1.9.
|
|
56
|
-
"@almadar/orb-windows-x64": "1.9.
|
|
52
|
+
"@almadar/orb-darwin-x64": "1.9.5",
|
|
53
|
+
"@almadar/orb-darwin-arm64": "1.9.5",
|
|
54
|
+
"@almadar/orb-linux-x64": "1.9.5",
|
|
55
|
+
"@almadar/orb-linux-arm64": "1.9.5",
|
|
56
|
+
"@almadar/orb-windows-x64": "1.9.5"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@almadar/shell",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Minimal full-stack shell template for Almadar applications",
|
|
6
6
|
"packageManager": "pnpm@10.30.3",
|
|
@@ -12,8 +12,15 @@
|
|
|
12
12
|
"prepare": "git config core.hooksPath .githooks"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"concurrently": "^
|
|
16
|
-
"turbo": "^2.
|
|
15
|
+
"concurrently": "^9.2.1",
|
|
16
|
+
"turbo": "^2.8.17"
|
|
17
|
+
},
|
|
18
|
+
"pnpm": {
|
|
19
|
+
"overrides": {
|
|
20
|
+
"@tootallnate/once": "^3.0.1",
|
|
21
|
+
"esbuild": "^0.25.0",
|
|
22
|
+
"flatted": "^3.4.1"
|
|
23
|
+
}
|
|
17
24
|
},
|
|
18
25
|
"files": [
|
|
19
26
|
"dist"
|
|
@@ -21,6 +21,7 @@ import {
|
|
|
21
21
|
} from '@almadar/ui/providers';
|
|
22
22
|
import { NavigationProvider } from '@almadar/ui/renderer';
|
|
23
23
|
import { I18nProvider, createTranslate } from '@almadar/ui/hooks';
|
|
24
|
+
import defaultLocale from '@almadar/ui/locales/en.json';
|
|
24
25
|
|
|
25
26
|
// {{GENERATED_I18N_IMPORT}}
|
|
26
27
|
// {{GENERATED_IMPORTS}}
|
|
@@ -30,7 +31,7 @@ import { I18nProvider, createTranslate } from '@almadar/ui/hooks';
|
|
|
30
31
|
const schema = { name: 'app', orbitals: [] }; // Placeholder - replaced by compiler
|
|
31
32
|
|
|
32
33
|
// {{GENERATED_I18N_VALUE}}
|
|
33
|
-
const i18nValue = { locale: 'en', direction: 'ltr' as const, t: createTranslate(
|
|
34
|
+
const i18nValue = { locale: 'en', direction: 'ltr' as const, t: createTranslate(defaultLocale) };
|
|
34
35
|
|
|
35
36
|
const queryClient = new QueryClient({
|
|
36
37
|
defaultOptions: {
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import { createRequire } from 'module';
|
|
2
|
+
const require = createRequire(import.meta.url);
|
|
3
|
+
|
|
1
4
|
/** @type {import('tailwindcss').Config} */
|
|
2
5
|
export default {
|
|
6
|
+
presets: [require('./tailwind-preset.cjs')],
|
|
3
7
|
content: [
|
|
4
8
|
"./index.html",
|
|
5
9
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
6
|
-
"../../node_modules/@almadar/ui/**/*.{js,ts,jsx,tsx}",
|
|
7
10
|
],
|
|
8
11
|
theme: {
|
|
9
12
|
extend: {},
|