@open-slot-ui/pixi 0.7.1 → 0.7.2
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-PYXZIGXG.js → chunk-BDITXPQ7.js} +16 -6
- package/dist/chunk-BDITXPQ7.js.map +1 -0
- package/dist/index.cjs +14 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/chunk-PYXZIGXG.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -120,6 +120,8 @@ declare class ButtonView extends ControlView {
|
|
|
120
120
|
/** Swap the placeholder glyph (e.g. speaker ↔ speaker-mute, fullscreen ↔ exit). */
|
|
121
121
|
setGlyph(glyph: ButtonGlyph): void;
|
|
122
122
|
private fitSprite;
|
|
123
|
+
/** Screen position of the current press, for the tap-slop check on release. */
|
|
124
|
+
private downPt;
|
|
123
125
|
private readonly onDown;
|
|
124
126
|
private readonly onUp;
|
|
125
127
|
private readonly onUpOutside;
|
package/dist/index.d.ts
CHANGED
|
@@ -120,6 +120,8 @@ declare class ButtonView extends ControlView {
|
|
|
120
120
|
/** Swap the placeholder glyph (e.g. speaker ↔ speaker-mute, fullscreen ↔ exit). */
|
|
121
121
|
setGlyph(glyph: ButtonGlyph): void;
|
|
122
122
|
private fitSprite;
|
|
123
|
+
/** Screen position of the current press, for the tap-slop check on release. */
|
|
124
|
+
private downPt;
|
|
123
125
|
private readonly onDown;
|
|
124
126
|
private readonly onUp;
|
|
125
127
|
private readonly onUpOutside;
|
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-BDITXPQ7.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-BDITXPQ7.js';
|
|
3
3
|
import { Text, Graphics, Container, Rectangle } from 'pixi.js';
|
|
4
4
|
import { createUI, composeMenu, buildPanel, formatAmount } from '@open-slot-ui/core';
|
|
5
5
|
|
package/package.json
CHANGED