first commit
This commit is contained in:
54
node_modules/lottie-web/docs/json/shapes/ellipse.json
generated
vendored
Normal file
54
node_modules/lottie-web/docs/json/shapes/ellipse.json
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"d": {
|
||||
"title": "Direction",
|
||||
"description": "After Effect's Direction. Direction how the shape is drawn. Used for trim path for example.",
|
||||
"type": "number",
|
||||
"default": 1
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "el"
|
||||
},
|
||||
"p": {
|
||||
"title": "Position",
|
||||
"description": "Ellipse's position",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"s": {
|
||||
"title": "Size",
|
||||
"description": "Ellipse's size",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
48
node_modules/lottie-web/docs/json/shapes/fill.json
generated
vendored
Normal file
48
node_modules/lottie-web/docs/json/shapes/fill.json
generated
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "fl"
|
||||
},
|
||||
"o": {
|
||||
"title": "Opacity",
|
||||
"description": "Fill Opacity",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"c": {
|
||||
"title": "Color",
|
||||
"description": "Fill Color",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
107
node_modules/lottie-web/docs/json/shapes/gFill.json
generated
vendored
Normal file
107
node_modules/lottie-web/docs/json/shapes/gFill.json
generated
vendored
Normal file
@@ -0,0 +1,107 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "gf"
|
||||
},
|
||||
"o": {
|
||||
"title": "Opacity",
|
||||
"description": "Fill Opacity",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"s": {
|
||||
"title": "Start Point",
|
||||
"description": "Gradient Start Point",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"e": {
|
||||
"title": "End Point",
|
||||
"description": "Gradient End Point",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"t": {
|
||||
"title": "Type",
|
||||
"description": "Gradient Type",
|
||||
"oneOf": [
|
||||
{
|
||||
"standsFor": "Linear",
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"standsFor": "Radial",
|
||||
"value": 2
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"h": {
|
||||
"title": "Highlight Length",
|
||||
"description": "Gradient Highlight Length. Only if type is Radial",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"a": {
|
||||
"title": "Highlight Angle",
|
||||
"description": "Highlight Angle. Only if type is Radial",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"g": {
|
||||
"title": "Gradient Colors",
|
||||
"description": "Gradient Colors",
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
137
node_modules/lottie-web/docs/json/shapes/gStroke.json
generated
vendored
Normal file
137
node_modules/lottie-web/docs/json/shapes/gStroke.json
generated
vendored
Normal file
@@ -0,0 +1,137 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "gs"
|
||||
},
|
||||
"o": {
|
||||
"title": "Opacity",
|
||||
"description": "Stroke Opacity",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"s": {
|
||||
"title": "Start Point",
|
||||
"description": "Gradient Start Point",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"e": {
|
||||
"title": "End Point",
|
||||
"description": "Gradient End Point",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"t": {
|
||||
"title": "Type",
|
||||
"description": "Gradient Type",
|
||||
"oneOf": [
|
||||
{
|
||||
"standsFor": "Linear",
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"standsFor": "Radial",
|
||||
"value": 2
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"h": {
|
||||
"title": "Highlight Length",
|
||||
"description": "Gradient Highlight Length. Only if type is Radial",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"a": {
|
||||
"title": "Highlight Angle",
|
||||
"description": "Highlight Angle. Only if type is Radial",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"g": {
|
||||
"title": "Gradient Colors",
|
||||
"description": "Gradient Colors",
|
||||
"type": "object"
|
||||
},
|
||||
"w": {
|
||||
"title": "Stroke Width",
|
||||
"description": "Gradient Stroke Width",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"lc": {
|
||||
"title": "Line Cap",
|
||||
"description": "Gradient Stroke Line Cap",
|
||||
"$ref": "#/helpers/lineCap",
|
||||
"type": "number"
|
||||
},
|
||||
"lj": {
|
||||
"title": "Line Join",
|
||||
"description": "Gradient Stroke Line Join",
|
||||
"$ref": "#/helpers/lineJoin",
|
||||
"type": "number"
|
||||
},
|
||||
"ml": {
|
||||
"title": "Miter Limit",
|
||||
"description": "Gradient Stroke Miter Limit. Only if Line Join is set to Miter.",
|
||||
"type": "number"
|
||||
}
|
||||
}
|
||||
}
|
89
node_modules/lottie-web/docs/json/shapes/group.json
generated
vendored
Normal file
89
node_modules/lottie-web/docs/json/shapes/group.json
generated
vendored
Normal file
@@ -0,0 +1,89 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "gr"
|
||||
},
|
||||
"np": {
|
||||
"title": "Number of Properties",
|
||||
"description": "Group number of properties. Used for expressions.",
|
||||
"type": "number"
|
||||
},
|
||||
"it": {
|
||||
"title": "Items",
|
||||
"description": "Group list of items",
|
||||
"items": {
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/shapes/shape",
|
||||
"value": "sh"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/rect",
|
||||
"value": "rc"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/ellipse",
|
||||
"value": "el"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/star",
|
||||
"value": "sr"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/fill",
|
||||
"value": "fl"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/gFill",
|
||||
"value": "gf"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/gStroke",
|
||||
"value": "gs"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/stroke",
|
||||
"value": "st"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/merge",
|
||||
"value": "mm"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/trim",
|
||||
"value": "tm"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/group",
|
||||
"value": "gr"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/round",
|
||||
"value": "rd"
|
||||
},
|
||||
{
|
||||
"$ref": "#/shapes/transform",
|
||||
"value": "tr"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"type": "array"
|
||||
}
|
||||
}
|
||||
}
|
27
node_modules/lottie-web/docs/json/shapes/merge.json
generated
vendored
Normal file
27
node_modules/lottie-web/docs/json/shapes/merge.json
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type. THIS FEATURE IS NOT SUPPORTED. It's exported because if you export it, they will come.",
|
||||
"type": "string",
|
||||
"const": "mm"
|
||||
},
|
||||
"mm": {
|
||||
"title": "Merge Mode",
|
||||
"description": "Merge Mode",
|
||||
"type": "number"
|
||||
}
|
||||
}
|
||||
}
|
66
node_modules/lottie-web/docs/json/shapes/rect.json
generated
vendored
Normal file
66
node_modules/lottie-web/docs/json/shapes/rect.json
generated
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"d": {
|
||||
"title": "Direction",
|
||||
"description": "After Effect's Direction. Direction how the shape is drawn. Used for trim path for example.",
|
||||
"type": "number"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "rc"
|
||||
},
|
||||
"p": {
|
||||
"title": "Position",
|
||||
"description": "Rect's position",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"s": {
|
||||
"title": "Size",
|
||||
"description": "Rect's size",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"r": {
|
||||
"title": "Rounded corners",
|
||||
"description": "Rect's rounded corners",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
63
node_modules/lottie-web/docs/json/shapes/repeater.json
generated
vendored
Normal file
63
node_modules/lottie-web/docs/json/shapes/repeater.json
generated
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "rp"
|
||||
},
|
||||
"c": {
|
||||
"title": "Copies",
|
||||
"description": "Number of Copies",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object",
|
||||
"default": {"a": 0, "k": 1}
|
||||
},
|
||||
"o": {
|
||||
"title": "Offset",
|
||||
"description": "Offset of Copies",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object",
|
||||
"default": {"a": 0, "k": 0}
|
||||
},
|
||||
"m": {
|
||||
"title": "Composite",
|
||||
"description": "Composite of copies",
|
||||
"$ref": "#/helpers/composite",
|
||||
"type": "number",
|
||||
"default": 1
|
||||
},
|
||||
"tr": {
|
||||
"title": "Transform",
|
||||
"description": "Transform values for each repeater copy",
|
||||
"$ref": "#/helpers/transform",
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
35
node_modules/lottie-web/docs/json/shapes/round.json
generated
vendored
Normal file
35
node_modules/lottie-web/docs/json/shapes/round.json
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "rd"
|
||||
},
|
||||
"r": {
|
||||
"title": "Radius",
|
||||
"description": "Rounded Corner Radius",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
40
node_modules/lottie-web/docs/json/shapes/shape.json
generated
vendored
Normal file
40
node_modules/lottie-web/docs/json/shapes/shape.json
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"d": {
|
||||
"title": "Direction",
|
||||
"description": "After Effect's Direction. Direction how the shape is drawn. Used for trim path for example.",
|
||||
"type": "number"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "sh"
|
||||
},
|
||||
"ks": {
|
||||
"title": "Vertices",
|
||||
"description": "Shape's vertices",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/shape"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/shapeKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
133
node_modules/lottie-web/docs/json/shapes/star.json
generated
vendored
Normal file
133
node_modules/lottie-web/docs/json/shapes/star.json
generated
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"d": {
|
||||
"title": "Direction",
|
||||
"description": "After Effect's Direction. Direction how the shape is drawn. Used for trim path for example.",
|
||||
"type": "number"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "sr"
|
||||
},
|
||||
"p": {
|
||||
"title": "Position",
|
||||
"description": "Star's position",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"ir": {
|
||||
"title": "Inner Radius",
|
||||
"description": "Star's inner radius. (Star only)",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"is": {
|
||||
"title": "Inner Roundness",
|
||||
"description": "Star's inner roundness. (Star only)",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"or": {
|
||||
"title": "Outer Radius",
|
||||
"description": "Star's outer radius.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"os": {
|
||||
"title": "Outer Roundness",
|
||||
"description": "Star's outer roundness.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"r": {
|
||||
"title": "Rotation",
|
||||
"description": "Star's rotation.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"pt": {
|
||||
"title": "Points",
|
||||
"description": "Star's number of points.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"sy": {
|
||||
"title": "Star Type",
|
||||
"description": "Star's type. Polygon or Star.",
|
||||
"type": "object",
|
||||
"oneOf": [
|
||||
{
|
||||
"standsFor": "Star",
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"standsFor": "Polygon",
|
||||
"value": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
78
node_modules/lottie-web/docs/json/shapes/stroke.json
generated
vendored
Normal file
78
node_modules/lottie-web/docs/json/shapes/stroke.json
generated
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "st"
|
||||
},
|
||||
"lc": {
|
||||
"title": "Line Cap",
|
||||
"description": "Stroke Line Cap",
|
||||
"$ref": "#/helpers/lineCap",
|
||||
"type": "number"
|
||||
},
|
||||
"lj": {
|
||||
"title": "Line Join",
|
||||
"description": "Stroke Line Join",
|
||||
"$ref": "#/helpers/lineJoin",
|
||||
"type": "number"
|
||||
},
|
||||
"ml": {
|
||||
"title": "Miter Limit",
|
||||
"description": "Stroke Miter Limit. Only if Line Join is set to Miter.",
|
||||
"type": "number"
|
||||
},
|
||||
"o": {
|
||||
"title": "Opacity",
|
||||
"description": "Stroke Opacity",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"w": {
|
||||
"title": "Width",
|
||||
"description": "Stroke Width",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"c": {
|
||||
"title": "Color",
|
||||
"description": "Stroke Color",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
102
node_modules/lottie-web/docs/json/shapes/transform.json
generated
vendored
Normal file
102
node_modules/lottie-web/docs/json/shapes/transform.json
generated
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"a": {
|
||||
"title": "Anchor Point",
|
||||
"description": "Shape Transform Anchor Point",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"p": {
|
||||
"title": "Position",
|
||||
"description": "Shape Transform Position",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"s": {
|
||||
"title": "Scale",
|
||||
"description": "Shape Transform Scale",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/multiDimensional"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/multiDimensionalKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"r": {
|
||||
"title": "Rotation",
|
||||
"description": "Shape Transform Rotation",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"o": {
|
||||
"title": "Opacity",
|
||||
"description": "Shape Transform Opacity",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"sk": {
|
||||
"title": "Skew",
|
||||
"description": "Shape Transform Skew",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"sa": {
|
||||
"title": "Skew Axis",
|
||||
"description": "Shape Transform Skew Axis",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
61
node_modules/lottie-web/docs/json/shapes/trim.json
generated
vendored
Normal file
61
node_modules/lottie-web/docs/json/shapes/trim.json
generated
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"mn": {
|
||||
"title": "Match Name",
|
||||
"description": "After Effect's Match Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"nm": {
|
||||
"title": "Name",
|
||||
"description": "After Effect's Name. Used for expressions.",
|
||||
"type": "string"
|
||||
},
|
||||
"ty": {
|
||||
"title": "Type",
|
||||
"description": "Shape content type.",
|
||||
"type": "string",
|
||||
"const": "tm"
|
||||
},
|
||||
"s": {
|
||||
"title": "Start",
|
||||
"description": "Trim Start.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"e": {
|
||||
"title": "End",
|
||||
"description": "Trim End.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"o": {
|
||||
"title": "Offset",
|
||||
"description": "Trim Offset.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/properties/value"
|
||||
},
|
||||
{
|
||||
"$ref": "#/properties/valueKeyframed"
|
||||
}
|
||||
],
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user