diff options
Diffstat (limited to 'node_modules')
25 files changed, 2767 insertions, 0 deletions
diff --git a/node_modules/components-data/button.json b/node_modules/components-data/button.json new file mode 100644 index 00000000..a931afcb --- /dev/null +++ b/node_modules/components-data/button.json | |||
@@ -0,0 +1,21 @@ | |||
1 | { | ||
2 | "component": "button", | ||
3 | |||
4 | "module": "montage/ui/button.reel", | ||
5 | |||
6 | "name": "Button", | ||
7 | |||
8 | "properties": [ | ||
9 | |||
10 | { | ||
11 | "name": "label", | ||
12 | "type": "string", | ||
13 | "default": "Button" | ||
14 | }, | ||
15 | { | ||
16 | "name": "enabled", | ||
17 | "type": "boolean", | ||
18 | "default": "true" | ||
19 | } | ||
20 | ] | ||
21 | } \ No newline at end of file | ||
diff --git a/node_modules/components-data/textfield.json b/node_modules/components-data/textfield.json new file mode 100644 index 00000000..4f8a1499 --- /dev/null +++ b/node_modules/components-data/textfield.json | |||
@@ -0,0 +1,21 @@ | |||
1 | { | ||
2 | "component": "textfield", | ||
3 | |||
4 | "module": "montage/ui/textfield.reel", | ||
5 | |||
6 | "name": "Textfield", | ||
7 | |||
8 | "properties": [ | ||
9 | |||
10 | { | ||
11 | "name": "value", | ||
12 | "type": "string", | ||
13 | "default": "Button" | ||
14 | }, | ||
15 | { | ||
16 | "name": "disabled", | ||
17 | "type": "boolean", | ||
18 | "default": "false" | ||
19 | } | ||
20 | ] | ||
21 | } \ No newline at end of file | ||
diff --git a/node_modules/ninja-components/effect/desaturate-effect.js b/node_modules/ninja-components/effect/desaturate-effect.js new file mode 100755 index 00000000..defa1973 --- /dev/null +++ b/node_modules/ninja-components/effect/desaturate-effect.js | |||
@@ -0,0 +1,25 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.DesaturateEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount) { | ||
13 | var i = 0, | ||
14 | average; | ||
15 | |||
16 | for (i = 0; i < pixelCount; i += 4) { | ||
17 | average = (pixels[i] + pixels[i+1] + pixels[i+2])/ 3; | ||
18 | pixels[i] = average; | ||
19 | pixels[i+1] = average; | ||
20 | pixels[i+2] = average; | ||
21 | } | ||
22 | } | ||
23 | } | ||
24 | |||
25 | }); | ||
diff --git a/node_modules/ninja-components/effect/effect.js b/node_modules/ninja-components/effect/effect.js new file mode 100755 index 00000000..4c5bb52c --- /dev/null +++ b/node_modules/ninja-components/effect/effect.js | |||
@@ -0,0 +1,15 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | var Montage = require("montage").Montage; | ||
7 | |||
8 | var Effect = exports.Effect = Montage.create(Montage, { | ||
9 | |||
10 | applyEffect: { | ||
11 | enumerable: false, | ||
12 | value: null | ||
13 | } | ||
14 | |||
15 | }); | ||
diff --git a/node_modules/ninja-components/effect/invert-effect.js b/node_modules/ninja-components/effect/invert-effect.js new file mode 100755 index 00000000..d5a3f7cf --- /dev/null +++ b/node_modules/ninja-components/effect/invert-effect.js | |||
@@ -0,0 +1,23 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.InvertEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount) { | ||
13 | var i; | ||
14 | |||
15 | for (i = 0; i < pixelCount; i += 4) { | ||
16 | pixels[i] = 255 - pixels[i]; | ||
17 | pixels[i+1] = 255 - pixels[i+1]; | ||
18 | pixels[i+2] = 255 - pixels[i+2]; | ||
19 | } | ||
20 | } | ||
21 | } | ||
22 | |||
23 | }); | ||
diff --git a/node_modules/ninja-components/effect/kaliedoscope-effect.js b/node_modules/ninja-components/effect/kaliedoscope-effect.js new file mode 100755 index 00000000..38462602 --- /dev/null +++ b/node_modules/ninja-components/effect/kaliedoscope-effect.js | |||
@@ -0,0 +1,17 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.KaliedoscopeEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function() { | ||
13 | console.log("kaliedoscope") | ||
14 | } | ||
15 | } | ||
16 | |||
17 | }); | ||
diff --git a/node_modules/ninja-components/effect/multiply-effect.js b/node_modules/ninja-components/effect/multiply-effect.js new file mode 100755 index 00000000..b8599668 --- /dev/null +++ b/node_modules/ninja-components/effect/multiply-effect.js | |||
@@ -0,0 +1,23 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.MultiplyEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount, multiplier) { | ||
13 | var i = 0; | ||
14 | |||
15 | for (i = 0; i < pixelCount; i += 4) { | ||
16 | pixels[i ] = pixels[i ] * multiplier; // red | ||
17 | pixels[i+1] = pixels[i+1] * multiplier; // green | ||
18 | pixels[i+2] = pixels[i+2] * multiplier; // blue | ||
19 | } | ||
20 | } | ||
21 | } | ||
22 | |||
23 | }); | ||
diff --git a/node_modules/ninja-components/effect/sepia-effect.js b/node_modules/ninja-components/effect/sepia-effect.js new file mode 100755 index 00000000..779074b7 --- /dev/null +++ b/node_modules/ninja-components/effect/sepia-effect.js | |||
@@ -0,0 +1,25 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | var Montage = require("montage").Montage; | ||
7 | var Effect = require("effect/effect").Effect; | ||
8 | |||
9 | exports.SepiaEffect = Montage.create(Effect, { | ||
10 | |||
11 | applyEffect: { | ||
12 | value: function(pixels, pixelCount) { | ||
13 | var i = 0, | ||
14 | average; | ||
15 | |||
16 | for (i = 0; i < pixelCount; i += 4) { | ||