@open-slot-ui/pixi 0.12.1 → 0.13.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/art.js +1 -1
- package/dist/{chunk-FN6UJ3WO.js → chunk-MKTMN76I.js} +52 -13
- package/dist/chunk-MKTMN76I.js.map +1 -0
- package/dist/index.cjs +50 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +9 -9
- package/dist/chunk-FN6UJ3WO.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -479,7 +479,7 @@ interface MenuViewOptions {
|
|
|
479
479
|
controlSkins?: Partial<Record<string, ControlViewFactory>>;
|
|
480
480
|
/** Header title (localizable). Default 'Menu'. */
|
|
481
481
|
title?: string;
|
|
482
|
-
/** Max card width in px. Default
|
|
482
|
+
/** Max card width in px. Default 760 (the reference sheet width). */
|
|
483
483
|
maxWidth?: number;
|
|
484
484
|
}
|
|
485
485
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -479,7 +479,7 @@ interface MenuViewOptions {
|
|
|
479
479
|
controlSkins?: Partial<Record<string, ControlViewFactory>>;
|
|
480
480
|
/** Header title (localizable). Default 'Menu'. */
|
|
481
481
|
title?: string;
|
|
482
|
-
/** Max card width in px. Default
|
|
482
|
+
/** Max card width in px. Default 760 (the reference sheet width). */
|
|
483
483
|
maxWidth?: number;
|
|
484
484
|
}
|
|
485
485
|
/**
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ControlView, ButtonView, SliderView, buildBlockColumn, OpenUIPixi } from './chunk-
|
|
2
|
-
export { AutoplayDrawerView, AutoplayView, ButtonView, ControlView, DialogView, MenuView, OpenUIPixi, ReadoutView, SelectView, SliderView, SpinView, StepperView, TextCellRenderer, ToggleView, TurboView, Tweener, ValueDisplayView, buildBlockColumn, defaultSpinSkin, drawSpin, isDesktop, svgSpinSkin } from './chunk-
|
|
1
|
+
import { ControlView, ButtonView, SliderView, buildBlockColumn, OpenUIPixi } from './chunk-MKTMN76I.js';
|
|
2
|
+
export { AutoplayDrawerView, AutoplayView, ButtonView, ControlView, DialogView, MenuView, OpenUIPixi, ReadoutView, SelectView, SliderView, SpinView, StepperView, TextCellRenderer, ToggleView, TurboView, Tweener, ValueDisplayView, buildBlockColumn, defaultSpinSkin, drawSpin, isDesktop, svgSpinSkin } from './chunk-MKTMN76I.js';
|
|
3
3
|
import { Text, Graphics, Container, Rectangle, Texture, Sprite, Assets } from 'pixi.js';
|
|
4
4
|
import { INFO_MENU_VARS, escapeHtml, LOCALE_LABELS, renderBlocksHtml, INFO_MENU_CSS, createUI, composeMenu, buildPanel, factsVars, renderRulesAuditHtml, auditRules, formatAmountPrecise } from '@open-slot-ui/core';
|
|
5
5
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-slot-ui/pixi",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "PixiJS v8 view + controller binding for open-ui — mount a themeable, responsive, fully-tested slot-game HUD onto your Pixi scene in one call.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pixijs",
|
|
@@ -58,18 +58,18 @@
|
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsup",
|
|
63
|
+
"typecheck": "tsc --noEmit"
|
|
64
|
+
},
|
|
61
65
|
"dependencies": {
|
|
62
|
-
"@open-slot-ui/core": "
|
|
66
|
+
"@open-slot-ui/core": "workspace:*"
|
|
63
67
|
},
|
|
64
68
|
"peerDependencies": {
|
|
65
69
|
"pixi.js": "^8"
|
|
66
70
|
},
|
|
67
71
|
"devDependencies": {
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
},
|
|
71
|
-
"scripts": {
|
|
72
|
-
"build": "tsup",
|
|
73
|
-
"typecheck": "tsc --noEmit"
|
|
72
|
+
"pixi-text-counter": "workspace:*",
|
|
73
|
+
"tsup": "^8.3.5"
|
|
74
74
|
}
|
|
75
|
-
}
|
|
75
|
+
}
|