master
Theunis J. Botha 2021-10-01 12:46:35 +02:00
parent 967ee31957
commit 5e1141a70a
5 changed files with 21 additions and 21 deletions

16
dist/r3.js vendored
View File

@ -17,12 +17,12 @@ class R3 {
/**
* static Version - Current R3 version
*/
R3.Version = '3.0.202';
R3.Version = '3.0.203';
/**
* static CompileDate - Current compile date of R3
*/
R3.CompileDate = '2021 Oct 01 - 12:39:24 pm';
R3.CompileDate = '2021 Oct 01 - 12:43:55 pm';
class System {
@ -3246,9 +3246,9 @@ Entity.MAX_ENTITY = 0x1;
<no static methods>
images=[Image] - We need a list of at least one Image which to slide
canvas=Canvas - We need a Canvas to attach our Input events
touch=Touch - We need a Touch Component to respond to TOUCH Events
images=[ComponentImage] - We need a list of at least one Image which to slide
canvas=ComponentCanvas - We need a Canvas to attach our Input events
touch=ComponentTouch - We need a Touch Component to respond to TOUCH Events
**/
@ -3332,7 +3332,7 @@ class EntitySlider extends Entity {
/**
* images - We need a list of at least one Image which to slide
*/
options.required.images = [Image];
options.required.images = [ComponentImage];
this.imagesBackup = options.images;
Object.defineProperty(
this,
@ -3367,7 +3367,7 @@ class EntitySlider extends Entity {
) /**
* canvas - We need a Canvas to attach our Input events
*/
options.required.canvas = Canvas;
options.required.canvas = ComponentCanvas;
this.canvasBackup = options.canvas;
Object.defineProperty(
this,
@ -3402,7 +3402,7 @@ class EntitySlider extends Entity {
) /**
* touch - We need a Touch Component to respond to TOUCH Events
*/
options.required.touch = Touch;
options.required.touch = ComponentTouch;
this.touchBackup = options.touch;
Object.defineProperty(
this,

View File

@ -1,6 +1,6 @@
{
"name": "r3",
"version": "3.0.202",
"version": "3.0.203",
"description": "",
"private": true,
"dependencies": {

View File

@ -4,9 +4,9 @@ const Component = require('../r3-component/r3-component.js');
//GENERATED_IMPORTS_END
//CUSTOM_IMPORTS_START
const Image = require('../r3-component/r3-component-image.js');
const Canvas = require('../r3-component/r3-component-canvas.js');
const Touch = require('../r3-component/r3-component-touch.js');
const ComponentImage = require('../r3-component/r3-component-image.js');
const ComponentCanvas = require('../r3-component/r3-component-canvas.js');
const ComponentTouch = require('../r3-component/r3-component-touch.js');
//CUSTOM_IMPORTS_END
const Entity = require('./r3-entity.js');
@ -128,9 +128,9 @@ const Entity = require('./r3-entity.js');
CUSTOM_OPTIONS_END
CUSTOM_REQUIRED_COMPONENTS_START
images=[Image] - We need a list of at least one Image which to slide
canvas=Canvas - We need a Canvas to attach our Input events
touch=Touch - We need a Touch Component to respond to TOUCH Events
images=[ComponentImage] - We need a list of at least one Image which to slide
canvas=ComponentCanvas - We need a Canvas to attach our Input events
touch=ComponentTouch - We need a Touch Component to respond to TOUCH Events
CUSTOM_REQUIRED_COMPONENTS_END
TEMPLATE_STATIC_OPTIONS_START
@ -249,7 +249,7 @@ class EntitySlider extends Entity {
/**
* images - We need a list of at least one Image which to slide
*/
options.required.images = [Image];
options.required.images = [ComponentImage];
this.imagesBackup = options.images;
Object.defineProperty(
this,
@ -284,7 +284,7 @@ class EntitySlider extends Entity {
) /**
* canvas - We need a Canvas to attach our Input events
*/
options.required.canvas = Canvas;
options.required.canvas = ComponentCanvas;
this.canvasBackup = options.canvas;
Object.defineProperty(
this,
@ -319,7 +319,7 @@ class EntitySlider extends Entity {
) /**
* touch - We need a Touch Component to respond to TOUCH Events
*/
options.required.touch = Touch;
options.required.touch = ComponentTouch;
this.touchBackup = options.touch;
Object.defineProperty(
this,

View File

@ -90,12 +90,12 @@ class R3 {
/**
* static Version - Current R3 version
*/
R3.Version = '3.0.202';
R3.Version = '3.0.203';
/**
* static CompileDate - Current compile date of R3
*/
R3.CompileDate = '2021 Oct 01 - 12:39:24 pm';
R3.CompileDate = '2021 Oct 01 - 12:43:55 pm';
//GENERATED_STATIC_OPTIONS_INIT_END

View File

@ -1 +1 @@
3.0.202
3.0.203