json-object-editor 0.9.901 → 0.10.0

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.
Files changed (59) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/app.js +5 -4
  3. package/css/jif/Read Me.txt +5 -5
  4. package/css/jif/demo-files/demo.css +153 -153
  5. package/css/jif/demo-files/demo.js +30 -30
  6. package/css/jif/demo.html +285 -285
  7. package/css/jif/fonts/joeiconfont.svg +24 -24
  8. package/css/jif/ie7/ie7.css +45 -45
  9. package/css/jif/ie7/ie7.js +46 -46
  10. package/css/jif/selection.json +573 -573
  11. package/css/joe.css +6 -6
  12. package/css/jquery-ui-1.10.4.custom.min.css +5 -5
  13. package/css/jquery-ui.min.css +6 -6
  14. package/css/jquery.timepicker.css +72 -72
  15. package/es5-build/capp/capp.js +1083 -1083
  16. package/es5-build/js/JsonObjectEditor_es5.jquery.craydent.js +11047 -11047
  17. package/es5-build/web-components/account-info.js +136 -136
  18. package/es5-build/web-components/capp-components.js +160 -160
  19. package/es5-build/web-components/capp-panel.js +85 -85
  20. package/es5-build/web-components/capp-view.js +73 -73
  21. package/es5-build/web-components/joe-autocomplete.js +149 -149
  22. package/es5-build/web-components/joe-button.js +132 -132
  23. package/es5-build/web-components/joe-card.js +92 -92
  24. package/es5-build/web-components/joe-component.js +74 -74
  25. package/es5-build/web-components/joe-field.js +70 -70
  26. package/es5-build/web-components/joe-list-item.js +176 -176
  27. package/es5-build/web-components/joe-user-cube.js +100 -100
  28. package/es5-build/web-components/report-components.js +133 -133
  29. package/grunt/build +86 -86
  30. package/grunt/package-lock.json +6301 -2489
  31. package/grunt/package.json +47 -47
  32. package/grunt/src +86 -86
  33. package/js/JsonObjectEditor.jquery.craydent.js +3 -2
  34. package/js/joe-full.js +11 -10
  35. package/js/joe.js +12 -11
  36. package/js/joe_es5.js +11056 -11056
  37. package/js/jquery.timepicker.min.js +1 -1
  38. package/js/leaflet.js +8 -8
  39. package/js/libs/adapter-latest.js +4400 -4400
  40. package/js/libs/craydent-1.9.2.js +11741 -11741
  41. package/js/libs/craydent-upload-2.0.0.js +394 -394
  42. package/js/libs/hammer.min.208.js +6 -6
  43. package/js/libs/jquery-3.5.1.min.js +2 -2
  44. package/js/libs/moment.min.js +6 -6
  45. package/js/native-shim.js +46 -46
  46. package/js/plugins/c3/c3.min.js +5 -5
  47. package/js/plugins/c3/d3.v3.min.js +4 -4
  48. package/js/plugins/threejs/Detector.js +78 -78
  49. package/js/plugins/threejs/LICENSE +21 -21
  50. package/js/plugins/threejs/MTLLoader.js +417 -417
  51. package/js/plugins/threejs/OBJLoader.js +564 -564
  52. package/js/plugins/threejs/OrbitControls.js +1037 -1037
  53. package/js/plugins/threejs/README.md +9 -9
  54. package/js/plugins/threejs/assets/female-croupier-2013-03-26.mtl +3 -3
  55. package/js/plugins/threejs/index.html +178 -178
  56. package/js/plugins/threejs/three.js +41507 -41507
  57. package/package copy.json +62 -0
  58. package/package.json +12 -13
  59. package/projectFilesBackup/.idea/workspace.xml +0 -424
@@ -1,78 +1,78 @@
1
- /**
2
- * @author alteredq / http://alteredqualia.com/
3
- * @author mr.doob / http://mrdoob.com/
4
- */
5
-
6
- var Detector = {
7
-
8
- canvas: !! window.CanvasRenderingContext2D,
9
- webgl: ( function () {
10
-
11
- try {
12
-
13
- var canvas = document.createElement( 'canvas' ); return !! ( window.WebGLRenderingContext && ( canvas.getContext( 'webgl' ) || canvas.getContext( 'experimental-webgl' ) ) );
14
-
15
- } catch ( e ) {
16
-
17
- return false;
18
-
19
- }
20
-
21
- } )(),
22
- workers: !! window.Worker,
23
- fileapi: window.File && window.FileReader && window.FileList && window.Blob,
24
-
25
- getWebGLErrorMessage: function () {
26
-
27
- var element = document.createElement( 'div' );
28
- element.id = 'webgl-error-message';
29
- element.style.fontFamily = 'monospace';
30
- element.style.fontSize = '13px';
31
- element.style.fontWeight = 'normal';
32
- element.style.textAlign = 'center';
33
- element.style.background = '#fff';
34
- element.style.color = '#000';
35
- element.style.padding = '1.5em';
36
- element.style.width = '400px';
37
- element.style.margin = '5em auto 0';
38
-
39
- if ( ! this.webgl ) {
40
-
41
- element.innerHTML = window.WebGLRenderingContext ? [
42
- 'Your graphics card does not seem to support <a href="http://khronos.org/webgl/wiki/Getting_a_WebGL_Implementation" style="color:#000">WebGL</a>.<br />',
43
- 'Find out how to get it <a href="http://get.webgl.org/" style="color:#000">here</a>.'
44
- ].join( '\n' ) : [
45
- 'Your browser does not seem to support <a href="http://khronos.org/webgl/wiki/Getting_a_WebGL_Implementation" style="color:#000">WebGL</a>.<br/>',
46
- 'Find out how to get it <a href="http://get.webgl.org/" style="color:#000">here</a>.'
47
- ].join( '\n' );
48
-
49
- }
50
-
51
- return element;
52
-
53
- },
54
-
55
- addGetWebGLMessage: function ( parameters ) {
56
-
57
- var parent, id, element;
58
-
59
- parameters = parameters || {};
60
-
61
- parent = parameters.parent !== undefined ? parameters.parent : document.body;
62
- id = parameters.id !== undefined ? parameters.id : 'oldie';
63
-
64
- element = Detector.getWebGLErrorMessage();
65
- element.id = id;
66
-
67
- parent.appendChild( element );
68
-
69
- }
70
-
71
- };
72
-
73
- // browserify support
74
- if ( typeof module === 'object' ) {
75
-
76
- module.exports = Detector;
77
-
78
- }
1
+ /**
2
+ * @author alteredq / http://alteredqualia.com/
3
+ * @author mr.doob / http://mrdoob.com/
4
+ */
5
+
6
+ var Detector = {
7
+
8
+ canvas: !! window.CanvasRenderingContext2D,
9
+ webgl: ( function () {
10
+
11
+ try {
12
+
13
+ var canvas = document.createElement( 'canvas' ); return !! ( window.WebGLRenderingContext && ( canvas.getContext( 'webgl' ) || canvas.getContext( 'experimental-webgl' ) ) );
14
+
15
+ } catch ( e ) {
16
+
17
+ return false;
18
+
19
+ }
20
+
21
+ } )(),
22
+ workers: !! window.Worker,
23
+ fileapi: window.File && window.FileReader && window.FileList && window.Blob,
24
+
25
+ getWebGLErrorMessage: function () {
26
+
27
+ var element = document.createElement( 'div' );
28
+ element.id = 'webgl-error-message';
29
+ element.style.fontFamily = 'monospace';
30
+ element.style.fontSize = '13px';
31
+ element.style.fontWeight = 'normal';
32
+ element.style.textAlign = 'center';
33
+ element.style.background = '#fff';
34
+ element.style.color = '#000';
35
+ element.style.padding = '1.5em';
36
+ element.style.width = '400px';
37
+ element.style.margin = '5em auto 0';
38
+
39
+ if ( ! this.webgl ) {
40
+
41
+ element.innerHTML = window.WebGLRenderingContext ? [
42
+ 'Your graphics card does not seem to support <a href="http://khronos.org/webgl/wiki/Getting_a_WebGL_Implementation" style="color:#000">WebGL</a>.<br />',
43
+ 'Find out how to get it <a href="http://get.webgl.org/" style="color:#000">here</a>.'
44
+ ].join( '\n' ) : [
45
+ 'Your browser does not seem to support <a href="http://khronos.org/webgl/wiki/Getting_a_WebGL_Implementation" style="color:#000">WebGL</a>.<br/>',
46
+ 'Find out how to get it <a href="http://get.webgl.org/" style="color:#000">here</a>.'
47
+ ].join( '\n' );
48
+
49
+ }
50
+
51
+ return element;
52
+
53
+ },
54
+
55
+ addGetWebGLMessage: function ( parameters ) {
56
+
57
+ var parent, id, element;
58
+
59
+ parameters = parameters || {};
60
+
61
+ parent = parameters.parent !== undefined ? parameters.parent : document.body;
62
+ id = parameters.id !== undefined ? parameters.id : 'oldie';
63
+
64
+ element = Detector.getWebGLErrorMessage();
65
+ element.id = id;
66
+
67
+ parent.appendChild( element );
68
+
69
+ }
70
+
71
+ };
72
+
73
+ // browserify support
74
+ if ( typeof module === 'object' ) {
75
+
76
+ module.exports = Detector;
77
+
78
+ }
@@ -1,21 +1,21 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2016 Manuel Wieser
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Manuel Wieser
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.