@pixodesk/svg-animator-core 1.0.27 → 1.0.28
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.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +40 -0
- package/dist/index.d.ts +40 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1318,6 +1318,12 @@ var PxScrollSchema = implementsInterface()(px.object({
|
|
|
1318
1318
|
kind: px.enum(["view", "scroll"]).optional(),
|
|
1319
1319
|
axis: px.enum(["block", "inline", "x", "y"]).optional(),
|
|
1320
1320
|
source: px.enum(["nearest", "root"]).optional(),
|
|
1321
|
+
// Free-form: the two keywords `parent`/`scroller` plus any CSS selector.
|
|
1322
|
+
subject: px.string().optional(),
|
|
1323
|
+
smoothing: px.number().optional(),
|
|
1324
|
+
pin: px.boolean().optional(),
|
|
1325
|
+
pinTop: px.number().optional(),
|
|
1326
|
+
pinDistance: px.number().optional(),
|
|
1321
1327
|
range: PxScrollRangeSchema.optional()
|
|
1322
1328
|
}));
|
|
1323
1329
|
var PxAnimatorConfigSchema = implementsInterface()(px.object({
|