@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/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 560. */
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 560. */
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-FN6UJ3WO.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-FN6UJ3WO.js';
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.12.1",
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": "0.12.1"
66
+ "@open-slot-ui/core": "workspace:*"
63
67
  },
64
68
  "peerDependencies": {
65
69
  "pixi.js": "^8"
66
70
  },
67
71
  "devDependencies": {
68
- "tsup": "^8.3.5",
69
- "pixi-text-counter": "0.2.0"
70
- },
71
- "scripts": {
72
- "build": "tsup",
73
- "typecheck": "tsc --noEmit"
72
+ "pixi-text-counter": "workspace:*",
73
+ "tsup": "^8.3.5"
74
74
  }
75
- }
75
+ }