@glissade/scene 0.23.0-pre.4 → 0.23.0-pre.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.
Files changed (2) hide show
  1. package/dist/describe.js +4 -4
  2. package/package.json +2 -2
package/dist/describe.js CHANGED
@@ -22,7 +22,7 @@ import { easings, listValueTypes } from "@glissade/core";
22
22
  * never pulled onto the base embed path — a scene that never calls `describe()`
23
23
  * pays zero bytes for it.
24
24
  */
25
- const RAW_VERSION = "0.23.0-pre.4";
25
+ const RAW_VERSION = "0.23.0-pre.5";
26
26
  const PACKAGE_VERSION = RAW_VERSION.includes("GLISSADE_".concat("VERSION")) ? "0.0.0-dev" : RAW_VERSION;
27
27
  /** Arity of a value type's numeric repr: vec2/vec2-arc → 2, number → 1; others (color/paint/path/string/boolean) carry no scalar arity. */
28
28
  function arityOf(type) {
@@ -231,11 +231,11 @@ const NODE_FACTORIES = {
231
231
  const BUILDER_METHODS = [
232
232
  {
233
233
  name: "to",
234
- signature: "to<T>(target, value, opts?: { duration?, ease?, at?, from? }): TimelineBuilder"
234
+ signature: "to<T>(target, value, opts?: { duration?, ease?, at?, from?, type? }): TimelineBuilder — type is the value-type escape hatch (e.g. { type: 'fontAxes' } for a { wght } map inferValueType can't name)"
235
235
  },
236
236
  {
237
237
  name: "fromTo",
238
- signature: "fromTo<T>(target, from, to, opts?: { duration?, ease?, at? }): TimelineBuilder"
238
+ signature: "fromTo<T>(target, from, to, opts?: { duration?, ease?, at?, type? }): TimelineBuilder"
239
239
  },
240
240
  {
241
241
  name: "stagger",
@@ -247,7 +247,7 @@ const BUILDER_METHODS = [
247
247
  },
248
248
  {
249
249
  name: "set",
250
- signature: "set<T>(target, value, opts?: { at? }): TimelineBuilder"
250
+ signature: "set<T>(target, value, opts?: { at?, type? }): TimelineBuilder"
251
251
  },
252
252
  {
253
253
  name: "label",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissade/scene",
3
- "version": "0.23.0-pre.4",
3
+ "version": "0.23.0-pre.5",
4
4
  "description": "glissade scene graph: nodes, transforms, DisplayList emission. Renderer-agnostic; zero DOM/Node dependencies.",
5
5
  "license": "Apache-2.0",
6
6
  "engines": {
@@ -59,7 +59,7 @@
59
59
  ],
60
60
  "dependencies": {
61
61
  "yoga-layout": "^3.2.1",
62
- "@glissade/core": "0.23.0-pre.4"
62
+ "@glissade/core": "0.23.0-pre.5"
63
63
  },
64
64
  "repository": {
65
65
  "type": "git",