diff --git a/dist/r3.js b/dist/r3.js index a37fdf1..ca5e514 100644 --- a/dist/r3.js +++ b/dist/r3.js @@ -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; - 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, diff --git a/package.json b/package.json index f4a07c1..ac4bd33 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "r3", - "version": "3.0.202", + "version": "3.0.203", "description": "", "private": true, "dependencies": { diff --git a/src/r3/r3-entity/r3-entity-slider.js b/src/r3/r3-entity/r3-entity-slider.js index c497b26..9f01d67 100644 --- a/src/r3/r3-entity/r3-entity-slider.js +++ b/src/r3/r3-entity/r3-entity-slider.js @@ -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, diff --git a/src/r3/r3.js b/src/r3/r3.js index 53baf9e..faa42cd 100644 --- a/src/r3/r3.js +++ b/src/r3/r3.js @@ -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 diff --git a/version b/version index b0e780d..bc28713 100644 --- a/version +++ b/version @@ -1 +1 @@ -3.0.202 \ No newline at end of file +3.0.203 \ No newline at end of file