@almadar/ui 5.69.0 → 5.70.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/avl/index.cjs +81 -52
- package/dist/avl/index.js +81 -52
- package/dist/components/game/organisms/HolidayRunnerBoard.d.ts +19 -17
- package/dist/components/game/organisms/RacingBoard.d.ts +25 -17
- package/dist/components/game/organisms/SpaceShmupBoard.d.ts +28 -11
- package/dist/components/index.cjs +81 -52
- package/dist/components/index.js +81 -52
- package/dist/providers/index.cjs +81 -52
- package/dist/providers/index.js +81 -52
- package/dist/runtime/index.cjs +81 -52
- package/dist/runtime/index.js +81 -52
- package/package.json +1 -1
- package/themes/almadar-website.css +2 -2
- package/themes/almadar.css +2 -2
- package/themes/arctic.css +2 -2
- package/themes/kiosk.css +2 -2
- package/themes/lavender.css +3 -3
- package/themes/midnight.css +2 -2
- package/themes/neon.css +2 -2
- package/themes/notion-editorial.css +2 -2
- package/themes/sunset.css +2 -2
- package/themes/trait-wars.css +2 -2
package/dist/providers/index.js
CHANGED
|
@@ -44998,35 +44998,44 @@ var init_HexStrategyBoard = __esm({
|
|
|
44998
44998
|
}
|
|
44999
44999
|
});
|
|
45000
45000
|
function HolidayRunnerBoard({
|
|
45001
|
-
|
|
45001
|
+
tiles,
|
|
45002
|
+
units,
|
|
45003
|
+
features,
|
|
45004
|
+
assetManifest,
|
|
45002
45005
|
assetBaseUrl,
|
|
45003
|
-
|
|
45004
|
-
|
|
45005
|
-
|
|
45006
|
+
scale = 0.45,
|
|
45007
|
+
showMinimap = false,
|
|
45008
|
+
enableCamera = true,
|
|
45009
|
+
tileClickEvent,
|
|
45010
|
+
unitClickEvent,
|
|
45006
45011
|
isLoading,
|
|
45007
45012
|
error,
|
|
45008
45013
|
className
|
|
45009
45014
|
}) {
|
|
45010
|
-
return /* @__PURE__ */
|
|
45011
|
-
|
|
45012
|
-
|
|
45013
|
-
|
|
45014
|
-
|
|
45015
|
-
|
|
45016
|
-
|
|
45017
|
-
|
|
45018
|
-
|
|
45019
|
-
|
|
45020
|
-
|
|
45021
|
-
|
|
45022
|
-
|
|
45023
|
-
|
|
45015
|
+
return /* @__PURE__ */ jsx("div", { className: cn("holiday-runner-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
|
|
45016
|
+
IsometricCanvas_default,
|
|
45017
|
+
{
|
|
45018
|
+
tileLayout: "flat",
|
|
45019
|
+
tiles,
|
|
45020
|
+
units,
|
|
45021
|
+
features,
|
|
45022
|
+
assetManifest,
|
|
45023
|
+
assetBaseUrl,
|
|
45024
|
+
scale,
|
|
45025
|
+
showMinimap,
|
|
45026
|
+
enableCamera,
|
|
45027
|
+
tileClickEvent,
|
|
45028
|
+
unitClickEvent,
|
|
45029
|
+
isLoading,
|
|
45030
|
+
error
|
|
45031
|
+
}
|
|
45032
|
+
) });
|
|
45024
45033
|
}
|
|
45025
45034
|
var init_HolidayRunnerBoard = __esm({
|
|
45026
45035
|
"components/game/organisms/HolidayRunnerBoard.tsx"() {
|
|
45027
45036
|
"use client";
|
|
45028
45037
|
init_cn();
|
|
45029
|
-
|
|
45038
|
+
init_IsometricCanvas();
|
|
45030
45039
|
HolidayRunnerBoard.displayName = "HolidayRunnerBoard";
|
|
45031
45040
|
}
|
|
45032
45041
|
});
|
|
@@ -46744,25 +46753,36 @@ var init_PricingPageTemplate = __esm({
|
|
|
46744
46753
|
}
|
|
46745
46754
|
});
|
|
46746
46755
|
function RacingBoard({
|
|
46747
|
-
|
|
46756
|
+
tiles,
|
|
46757
|
+
units,
|
|
46758
|
+
features,
|
|
46759
|
+
assetManifest,
|
|
46748
46760
|
assetBaseUrl,
|
|
46749
|
-
|
|
46750
|
-
|
|
46751
|
-
|
|
46752
|
-
|
|
46753
|
-
|
|
46761
|
+
scale = 0.45,
|
|
46762
|
+
showMinimap = true,
|
|
46763
|
+
enableCamera = true,
|
|
46764
|
+
tileClickEvent,
|
|
46765
|
+
unitClickEvent,
|
|
46766
|
+
isLoading,
|
|
46767
|
+
error,
|
|
46754
46768
|
className
|
|
46755
46769
|
}) {
|
|
46756
46770
|
return /* @__PURE__ */ jsx("div", { className: cn("racing-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
|
|
46757
|
-
|
|
46771
|
+
IsometricCanvas_default,
|
|
46758
46772
|
{
|
|
46759
|
-
|
|
46773
|
+
tileLayout: "flat",
|
|
46774
|
+
tiles,
|
|
46775
|
+
units,
|
|
46776
|
+
features,
|
|
46777
|
+
assetManifest,
|
|
46760
46778
|
assetBaseUrl,
|
|
46761
|
-
|
|
46762
|
-
|
|
46763
|
-
|
|
46764
|
-
|
|
46765
|
-
|
|
46779
|
+
scale,
|
|
46780
|
+
showMinimap,
|
|
46781
|
+
enableCamera,
|
|
46782
|
+
tileClickEvent,
|
|
46783
|
+
unitClickEvent,
|
|
46784
|
+
isLoading,
|
|
46785
|
+
error
|
|
46766
46786
|
}
|
|
46767
46787
|
) });
|
|
46768
46788
|
}
|
|
@@ -46770,7 +46790,7 @@ var init_RacingBoard = __esm({
|
|
|
46770
46790
|
"components/game/organisms/RacingBoard.tsx"() {
|
|
46771
46791
|
"use client";
|
|
46772
46792
|
init_cn();
|
|
46773
|
-
|
|
46793
|
+
init_IsometricCanvas();
|
|
46774
46794
|
RacingBoard.displayName = "RacingBoard";
|
|
46775
46795
|
}
|
|
46776
46796
|
});
|
|
@@ -50003,35 +50023,44 @@ var init_SokobanBoard = __esm({
|
|
|
50003
50023
|
}
|
|
50004
50024
|
});
|
|
50005
50025
|
function SpaceShmupBoard({
|
|
50006
|
-
|
|
50026
|
+
tiles,
|
|
50027
|
+
units,
|
|
50028
|
+
features,
|
|
50029
|
+
assetManifest,
|
|
50007
50030
|
assetBaseUrl,
|
|
50008
|
-
|
|
50009
|
-
|
|
50010
|
-
|
|
50031
|
+
scale = 0.45,
|
|
50032
|
+
showMinimap = false,
|
|
50033
|
+
enableCamera = true,
|
|
50034
|
+
tileClickEvent,
|
|
50035
|
+
unitClickEvent,
|
|
50011
50036
|
isLoading,
|
|
50012
50037
|
error,
|
|
50013
50038
|
className
|
|
50014
50039
|
}) {
|
|
50015
|
-
return /* @__PURE__ */
|
|
50016
|
-
|
|
50017
|
-
|
|
50018
|
-
|
|
50019
|
-
|
|
50020
|
-
|
|
50021
|
-
|
|
50022
|
-
|
|
50023
|
-
|
|
50024
|
-
|
|
50025
|
-
|
|
50026
|
-
|
|
50027
|
-
|
|
50028
|
-
|
|
50040
|
+
return /* @__PURE__ */ jsx("div", { className: cn("space-shmup-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
|
|
50041
|
+
IsometricCanvas_default,
|
|
50042
|
+
{
|
|
50043
|
+
tileLayout: "flat",
|
|
50044
|
+
tiles,
|
|
50045
|
+
units,
|
|
50046
|
+
features,
|
|
50047
|
+
assetManifest,
|
|
50048
|
+
assetBaseUrl,
|
|
50049
|
+
scale,
|
|
50050
|
+
showMinimap,
|
|
50051
|
+
enableCamera,
|
|
50052
|
+
tileClickEvent,
|
|
50053
|
+
unitClickEvent,
|
|
50054
|
+
isLoading,
|
|
50055
|
+
error
|
|
50056
|
+
}
|
|
50057
|
+
) });
|
|
50029
50058
|
}
|
|
50030
50059
|
var init_SpaceShmupBoard = __esm({
|
|
50031
50060
|
"components/game/organisms/SpaceShmupBoard.tsx"() {
|
|
50032
50061
|
"use client";
|
|
50033
50062
|
init_cn();
|
|
50034
|
-
|
|
50063
|
+
init_IsometricCanvas();
|
|
50035
50064
|
SpaceShmupBoard.displayName = "SpaceShmupBoard";
|
|
50036
50065
|
}
|
|
50037
50066
|
});
|
package/dist/runtime/index.cjs
CHANGED
|
@@ -44743,35 +44743,44 @@ var init_HexStrategyBoard = __esm({
|
|
|
44743
44743
|
}
|
|
44744
44744
|
});
|
|
44745
44745
|
function HolidayRunnerBoard({
|
|
44746
|
-
|
|
44746
|
+
tiles,
|
|
44747
|
+
units,
|
|
44748
|
+
features,
|
|
44749
|
+
assetManifest,
|
|
44747
44750
|
assetBaseUrl,
|
|
44748
|
-
|
|
44749
|
-
|
|
44750
|
-
|
|
44751
|
+
scale = 0.45,
|
|
44752
|
+
showMinimap = false,
|
|
44753
|
+
enableCamera = true,
|
|
44754
|
+
tileClickEvent,
|
|
44755
|
+
unitClickEvent,
|
|
44751
44756
|
isLoading,
|
|
44752
44757
|
error,
|
|
44753
44758
|
className
|
|
44754
44759
|
}) {
|
|
44755
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
44756
|
-
|
|
44757
|
-
|
|
44758
|
-
|
|
44759
|
-
|
|
44760
|
-
|
|
44761
|
-
|
|
44762
|
-
|
|
44763
|
-
|
|
44764
|
-
|
|
44765
|
-
|
|
44766
|
-
|
|
44767
|
-
|
|
44768
|
-
|
|
44760
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("holiday-runner-board relative w-full h-full", className), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
44761
|
+
IsometricCanvas_default,
|
|
44762
|
+
{
|
|
44763
|
+
tileLayout: "flat",
|
|
44764
|
+
tiles,
|
|
44765
|
+
units,
|
|
44766
|
+
features,
|
|
44767
|
+
assetManifest,
|
|
44768
|
+
assetBaseUrl,
|
|
44769
|
+
scale,
|
|
44770
|
+
showMinimap,
|
|
44771
|
+
enableCamera,
|
|
44772
|
+
tileClickEvent,
|
|
44773
|
+
unitClickEvent,
|
|
44774
|
+
isLoading,
|
|
44775
|
+
error
|
|
44776
|
+
}
|
|
44777
|
+
) });
|
|
44769
44778
|
}
|
|
44770
44779
|
var init_HolidayRunnerBoard = __esm({
|
|
44771
44780
|
"components/game/organisms/HolidayRunnerBoard.tsx"() {
|
|
44772
44781
|
"use client";
|
|
44773
44782
|
init_cn();
|
|
44774
|
-
|
|
44783
|
+
init_IsometricCanvas();
|
|
44775
44784
|
HolidayRunnerBoard.displayName = "HolidayRunnerBoard";
|
|
44776
44785
|
}
|
|
44777
44786
|
});
|
|
@@ -46489,25 +46498,36 @@ var init_PricingPageTemplate = __esm({
|
|
|
46489
46498
|
}
|
|
46490
46499
|
});
|
|
46491
46500
|
function RacingBoard({
|
|
46492
|
-
|
|
46501
|
+
tiles,
|
|
46502
|
+
units,
|
|
46503
|
+
features,
|
|
46504
|
+
assetManifest,
|
|
46493
46505
|
assetBaseUrl,
|
|
46494
|
-
|
|
46495
|
-
|
|
46496
|
-
|
|
46497
|
-
|
|
46498
|
-
|
|
46506
|
+
scale = 0.45,
|
|
46507
|
+
showMinimap = true,
|
|
46508
|
+
enableCamera = true,
|
|
46509
|
+
tileClickEvent,
|
|
46510
|
+
unitClickEvent,
|
|
46511
|
+
isLoading,
|
|
46512
|
+
error,
|
|
46499
46513
|
className
|
|
46500
46514
|
}) {
|
|
46501
46515
|
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("racing-board relative w-full h-full", className), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
46502
|
-
|
|
46516
|
+
IsometricCanvas_default,
|
|
46503
46517
|
{
|
|
46504
|
-
|
|
46518
|
+
tileLayout: "flat",
|
|
46519
|
+
tiles,
|
|
46520
|
+
units,
|
|
46521
|
+
features,
|
|
46522
|
+
assetManifest,
|
|
46505
46523
|
assetBaseUrl,
|
|
46506
|
-
|
|
46507
|
-
|
|
46508
|
-
|
|
46509
|
-
|
|
46510
|
-
|
|
46524
|
+
scale,
|
|
46525
|
+
showMinimap,
|
|
46526
|
+
enableCamera,
|
|
46527
|
+
tileClickEvent,
|
|
46528
|
+
unitClickEvent,
|
|
46529
|
+
isLoading,
|
|
46530
|
+
error
|
|
46511
46531
|
}
|
|
46512
46532
|
) });
|
|
46513
46533
|
}
|
|
@@ -46515,7 +46535,7 @@ var init_RacingBoard = __esm({
|
|
|
46515
46535
|
"components/game/organisms/RacingBoard.tsx"() {
|
|
46516
46536
|
"use client";
|
|
46517
46537
|
init_cn();
|
|
46518
|
-
|
|
46538
|
+
init_IsometricCanvas();
|
|
46519
46539
|
RacingBoard.displayName = "RacingBoard";
|
|
46520
46540
|
}
|
|
46521
46541
|
});
|
|
@@ -49767,35 +49787,44 @@ var init_SokobanBoard = __esm({
|
|
|
49767
49787
|
}
|
|
49768
49788
|
});
|
|
49769
49789
|
function SpaceShmupBoard({
|
|
49770
|
-
|
|
49790
|
+
tiles,
|
|
49791
|
+
units,
|
|
49792
|
+
features,
|
|
49793
|
+
assetManifest,
|
|
49771
49794
|
assetBaseUrl,
|
|
49772
|
-
|
|
49773
|
-
|
|
49774
|
-
|
|
49795
|
+
scale = 0.45,
|
|
49796
|
+
showMinimap = false,
|
|
49797
|
+
enableCamera = true,
|
|
49798
|
+
tileClickEvent,
|
|
49799
|
+
unitClickEvent,
|
|
49775
49800
|
isLoading,
|
|
49776
49801
|
error,
|
|
49777
49802
|
className
|
|
49778
49803
|
}) {
|
|
49779
|
-
return /* @__PURE__ */ jsxRuntime.
|
|
49780
|
-
|
|
49781
|
-
|
|
49782
|
-
|
|
49783
|
-
|
|
49784
|
-
|
|
49785
|
-
|
|
49786
|
-
|
|
49787
|
-
|
|
49788
|
-
|
|
49789
|
-
|
|
49790
|
-
|
|
49791
|
-
|
|
49792
|
-
|
|
49804
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("space-shmup-board relative w-full h-full", className), children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
49805
|
+
IsometricCanvas_default,
|
|
49806
|
+
{
|
|
49807
|
+
tileLayout: "flat",
|
|
49808
|
+
tiles,
|
|
49809
|
+
units,
|
|
49810
|
+
features,
|
|
49811
|
+
assetManifest,
|
|
49812
|
+
assetBaseUrl,
|
|
49813
|
+
scale,
|
|
49814
|
+
showMinimap,
|
|
49815
|
+
enableCamera,
|
|
49816
|
+
tileClickEvent,
|
|
49817
|
+
unitClickEvent,
|
|
49818
|
+
isLoading,
|
|
49819
|
+
error
|
|
49820
|
+
}
|
|
49821
|
+
) });
|
|
49793
49822
|
}
|
|
49794
49823
|
var init_SpaceShmupBoard = __esm({
|
|
49795
49824
|
"components/game/organisms/SpaceShmupBoard.tsx"() {
|
|
49796
49825
|
"use client";
|
|
49797
49826
|
init_cn();
|
|
49798
|
-
|
|
49827
|
+
init_IsometricCanvas();
|
|
49799
49828
|
SpaceShmupBoard.displayName = "SpaceShmupBoard";
|
|
49800
49829
|
}
|
|
49801
49830
|
});
|
package/dist/runtime/index.js
CHANGED
|
@@ -44696,35 +44696,44 @@ var init_HexStrategyBoard = __esm({
|
|
|
44696
44696
|
}
|
|
44697
44697
|
});
|
|
44698
44698
|
function HolidayRunnerBoard({
|
|
44699
|
-
|
|
44699
|
+
tiles,
|
|
44700
|
+
units,
|
|
44701
|
+
features,
|
|
44702
|
+
assetManifest,
|
|
44700
44703
|
assetBaseUrl,
|
|
44701
|
-
|
|
44702
|
-
|
|
44703
|
-
|
|
44704
|
+
scale = 0.45,
|
|
44705
|
+
showMinimap = false,
|
|
44706
|
+
enableCamera = true,
|
|
44707
|
+
tileClickEvent,
|
|
44708
|
+
unitClickEvent,
|
|
44704
44709
|
isLoading,
|
|
44705
44710
|
error,
|
|
44706
44711
|
className
|
|
44707
44712
|
}) {
|
|
44708
|
-
return /* @__PURE__ */
|
|
44709
|
-
|
|
44710
|
-
|
|
44711
|
-
|
|
44712
|
-
|
|
44713
|
-
|
|
44714
|
-
|
|
44715
|
-
|
|
44716
|
-
|
|
44717
|
-
|
|
44718
|
-
|
|
44719
|
-
|
|
44720
|
-
|
|
44721
|
-
|
|
44713
|
+
return /* @__PURE__ */ jsx("div", { className: cn("holiday-runner-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
|
|
44714
|
+
IsometricCanvas_default,
|
|
44715
|
+
{
|
|
44716
|
+
tileLayout: "flat",
|
|
44717
|
+
tiles,
|
|
44718
|
+
units,
|
|
44719
|
+
features,
|
|
44720
|
+
assetManifest,
|
|
44721
|
+
assetBaseUrl,
|
|
44722
|
+
scale,
|
|
44723
|
+
showMinimap,
|
|
44724
|
+
enableCamera,
|
|
44725
|
+
tileClickEvent,
|
|
44726
|
+
unitClickEvent,
|
|
44727
|
+
isLoading,
|
|
44728
|
+
error
|
|
44729
|
+
}
|
|
44730
|
+
) });
|
|
44722
44731
|
}
|
|
44723
44732
|
var init_HolidayRunnerBoard = __esm({
|
|
44724
44733
|
"components/game/organisms/HolidayRunnerBoard.tsx"() {
|
|
44725
44734
|
"use client";
|
|
44726
44735
|
init_cn();
|
|
44727
|
-
|
|
44736
|
+
init_IsometricCanvas();
|
|
44728
44737
|
HolidayRunnerBoard.displayName = "HolidayRunnerBoard";
|
|
44729
44738
|
}
|
|
44730
44739
|
});
|
|
@@ -46442,25 +46451,36 @@ var init_PricingPageTemplate = __esm({
|
|
|
46442
46451
|
}
|
|
46443
46452
|
});
|
|
46444
46453
|
function RacingBoard({
|
|
46445
|
-
|
|
46454
|
+
tiles,
|
|
46455
|
+
units,
|
|
46456
|
+
features,
|
|
46457
|
+
assetManifest,
|
|
46446
46458
|
assetBaseUrl,
|
|
46447
|
-
|
|
46448
|
-
|
|
46449
|
-
|
|
46450
|
-
|
|
46451
|
-
|
|
46459
|
+
scale = 0.45,
|
|
46460
|
+
showMinimap = true,
|
|
46461
|
+
enableCamera = true,
|
|
46462
|
+
tileClickEvent,
|
|
46463
|
+
unitClickEvent,
|
|
46464
|
+
isLoading,
|
|
46465
|
+
error,
|
|
46452
46466
|
className
|
|
46453
46467
|
}) {
|
|
46454
46468
|
return /* @__PURE__ */ jsx("div", { className: cn("racing-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
|
|
46455
|
-
|
|
46469
|
+
IsometricCanvas_default,
|
|
46456
46470
|
{
|
|
46457
|
-
|
|
46471
|
+
tileLayout: "flat",
|
|
46472
|
+
tiles,
|
|
46473
|
+
units,
|
|
46474
|
+
features,
|
|
46475
|
+
assetManifest,
|
|
46458
46476
|
assetBaseUrl,
|
|
46459
|
-
|
|
46460
|
-
|
|
46461
|
-
|
|
46462
|
-
|
|
46463
|
-
|
|
46477
|
+
scale,
|
|
46478
|
+
showMinimap,
|
|
46479
|
+
enableCamera,
|
|
46480
|
+
tileClickEvent,
|
|
46481
|
+
unitClickEvent,
|
|
46482
|
+
isLoading,
|
|
46483
|
+
error
|
|
46464
46484
|
}
|
|
46465
46485
|
) });
|
|
46466
46486
|
}
|
|
@@ -46468,7 +46488,7 @@ var init_RacingBoard = __esm({
|
|
|
46468
46488
|
"components/game/organisms/RacingBoard.tsx"() {
|
|
46469
46489
|
"use client";
|
|
46470
46490
|
init_cn();
|
|
46471
|
-
|
|
46491
|
+
init_IsometricCanvas();
|
|
46472
46492
|
RacingBoard.displayName = "RacingBoard";
|
|
46473
46493
|
}
|
|
46474
46494
|
});
|
|
@@ -49720,35 +49740,44 @@ var init_SokobanBoard = __esm({
|
|
|
49720
49740
|
}
|
|
49721
49741
|
});
|
|
49722
49742
|
function SpaceShmupBoard({
|
|
49723
|
-
|
|
49743
|
+
tiles,
|
|
49744
|
+
units,
|
|
49745
|
+
features,
|
|
49746
|
+
assetManifest,
|
|
49724
49747
|
assetBaseUrl,
|
|
49725
|
-
|
|
49726
|
-
|
|
49727
|
-
|
|
49748
|
+
scale = 0.45,
|
|
49749
|
+
showMinimap = false,
|
|
49750
|
+
enableCamera = true,
|
|
49751
|
+
tileClickEvent,
|
|
49752
|
+
unitClickEvent,
|
|
49728
49753
|
isLoading,
|
|
49729
49754
|
error,
|
|
49730
49755
|
className
|
|
49731
49756
|
}) {
|
|
49732
|
-
return /* @__PURE__ */
|
|
49733
|
-
|
|
49734
|
-
|
|
49735
|
-
|
|
49736
|
-
|
|
49737
|
-
|
|
49738
|
-
|
|
49739
|
-
|
|
49740
|
-
|
|
49741
|
-
|
|
49742
|
-
|
|
49743
|
-
|
|
49744
|
-
|
|
49745
|
-
|
|
49757
|
+
return /* @__PURE__ */ jsx("div", { className: cn("space-shmup-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
|
|
49758
|
+
IsometricCanvas_default,
|
|
49759
|
+
{
|
|
49760
|
+
tileLayout: "flat",
|
|
49761
|
+
tiles,
|
|
49762
|
+
units,
|
|
49763
|
+
features,
|
|
49764
|
+
assetManifest,
|
|
49765
|
+
assetBaseUrl,
|
|
49766
|
+
scale,
|
|
49767
|
+
showMinimap,
|
|
49768
|
+
enableCamera,
|
|
49769
|
+
tileClickEvent,
|
|
49770
|
+
unitClickEvent,
|
|
49771
|
+
isLoading,
|
|
49772
|
+
error
|
|
49773
|
+
}
|
|
49774
|
+
) });
|
|
49746
49775
|
}
|
|
49747
49776
|
var init_SpaceShmupBoard = __esm({
|
|
49748
49777
|
"components/game/organisms/SpaceShmupBoard.tsx"() {
|
|
49749
49778
|
"use client";
|
|
49750
49779
|
init_cn();
|
|
49751
|
-
|
|
49780
|
+
init_IsometricCanvas();
|
|
49752
49781
|
SpaceShmupBoard.displayName = "SpaceShmupBoard";
|
|
49753
49782
|
}
|
|
49754
49783
|
});
|
package/package.json
CHANGED
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
--border-width-thick: 2px;
|
|
34
34
|
|
|
35
35
|
/* Colors - Teal on parchment */
|
|
36
|
-
--color-primary: #
|
|
37
|
-
--color-primary-hover: #
|
|
36
|
+
--color-primary: #0f766e;
|
|
37
|
+
--color-primary-hover: #115e59;
|
|
38
38
|
--color-primary-foreground: #ffffff;
|
|
39
39
|
|
|
40
40
|
--color-secondary: #f1f5f9;
|
package/themes/almadar.css
CHANGED
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
--border-width-thick: 2px;
|
|
36
36
|
|
|
37
37
|
/* Colors - Teal on light background */
|
|
38
|
-
--color-primary: #
|
|
39
|
-
--color-primary-hover: #
|
|
38
|
+
--color-primary: #0f766e;
|
|
39
|
+
--color-primary-hover: #115e59;
|
|
40
40
|
--color-primary-foreground: #ffffff;
|
|
41
41
|
|
|
42
42
|
--color-secondary: #f1f5f9;
|
package/themes/arctic.css
CHANGED
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
--border-width-thick: 2px;
|
|
37
37
|
|
|
38
38
|
/* Colors - Ice blue, cool and clean */
|
|
39
|
-
--color-primary: #
|
|
40
|
-
--color-primary-hover: #
|
|
39
|
+
--color-primary: #0369a1;
|
|
40
|
+
--color-primary-hover: #075985;
|
|
41
41
|
--color-primary-foreground: #ffffff;
|
|
42
42
|
|
|
43
43
|
--color-secondary: #e0f2fe;
|
package/themes/kiosk.css
CHANGED
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
--border-width-thick: 3px;
|
|
36
36
|
|
|
37
37
|
/* Colors - Warm white background, saturated coral primary */
|
|
38
|
-
--color-primary: #
|
|
39
|
-
--color-primary-hover: #
|
|
38
|
+
--color-primary: #dc2626;
|
|
39
|
+
--color-primary-hover: #b91c1c;
|
|
40
40
|
--color-primary-foreground: #ffffff;
|
|
41
41
|
|
|
42
42
|
--color-secondary: #fff1ef;
|
package/themes/lavender.css
CHANGED
|
@@ -147,9 +147,9 @@
|
|
|
147
147
|
--border-width-thick: 2px;
|
|
148
148
|
|
|
149
149
|
/* Colors - Deep purple dark mode */
|
|
150
|
-
--color-primary: #
|
|
151
|
-
--color-primary-hover: #
|
|
152
|
-
--color-primary-foreground: #
|
|
150
|
+
--color-primary: #7c3aed;
|
|
151
|
+
--color-primary-hover: #6d28d9;
|
|
152
|
+
--color-primary-foreground: #ffffff;
|
|
153
153
|
|
|
154
154
|
--color-secondary: #1a0d30;
|
|
155
155
|
--color-secondary-hover: #251445;
|
package/themes/midnight.css
CHANGED
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
--border-width-thick: 2px;
|
|
36
36
|
|
|
37
37
|
/* Colors - Indigo palette, sophisticated */
|
|
38
|
-
--color-primary: #
|
|
39
|
-
--color-primary-hover: #
|
|
38
|
+
--color-primary: #4f46e5;
|
|
39
|
+
--color-primary-hover: #4338ca;
|
|
40
40
|
--color-primary-foreground: #ffffff;
|
|
41
41
|
|
|
42
42
|
--color-secondary: #eef2ff;
|
package/themes/neon.css
CHANGED
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
--border-width-thick: 3px;
|
|
38
38
|
|
|
39
39
|
/* Colors - Teal-tinted light mode */
|
|
40
|
-
--color-primary: #
|
|
41
|
-
--color-primary-hover: #
|
|
40
|
+
--color-primary: #0e7490;
|
|
41
|
+
--color-primary-hover: #155e75;
|
|
42
42
|
--color-primary-foreground: #ffffff;
|
|
43
43
|
|
|
44
44
|
--color-secondary: #ccfbf1;
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
--border-width-thin: 1px;
|
|
40
40
|
--border-width-thick: 1px;
|
|
41
41
|
|
|
42
|
-
--color-primary: #
|
|
43
|
-
--color-primary-hover: #
|
|
42
|
+
--color-primary: #c2410c;
|
|
43
|
+
--color-primary-hover: #9a3412;
|
|
44
44
|
--color-primary-foreground: #fefdf9;
|
|
45
45
|
|
|
46
46
|
--color-secondary: #f4f1ea;
|