Release v5.24.6
This commit is contained in:
parent
655990c2a7
commit
ef764df37d
|
@ -24,8 +24,8 @@
|
||||||
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 5.24.5
|
* @version 5.24.6
|
||||||
* @date 2018-09-06
|
* @date 2018-09-12
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
if(typeof exports === 'object' && typeof module === 'object')
|
if(typeof exports === 'object' && typeof module === 'object')
|
||||||
|
@ -541,6 +541,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
JSONEditor.Ajv = Ajv;
|
JSONEditor.Ajv = Ajv;
|
||||||
JSONEditor.VanillaPicker = VanillaPicker;
|
JSONEditor.VanillaPicker = VanillaPicker;
|
||||||
|
|
||||||
|
// default export for TypeScript ES6 projects
|
||||||
|
JSONEditor.default = JSONEditor;
|
||||||
|
|
||||||
module.exports = JSONEditor;
|
module.exports = JSONEditor;
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -24,8 +24,8 @@
|
||||||
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
|
* Copyright (c) 2011-2017 Jos de Jong, http://jsoneditoronline.org
|
||||||
*
|
*
|
||||||
* @author Jos de Jong, <wjosdejong@gmail.com>
|
* @author Jos de Jong, <wjosdejong@gmail.com>
|
||||||
* @version 5.24.5
|
* @version 5.24.6
|
||||||
* @date 2018-09-06
|
* @date 2018-09-12
|
||||||
*/
|
*/
|
||||||
(function webpackUniversalModuleDefinition(root, factory) {
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
if(typeof exports === 'object' && typeof module === 'object')
|
if(typeof exports === 'object' && typeof module === 'object')
|
||||||
|
@ -541,6 +541,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
||||||
JSONEditor.Ajv = Ajv;
|
JSONEditor.Ajv = Ajv;
|
||||||
JSONEditor.VanillaPicker = VanillaPicker;
|
JSONEditor.VanillaPicker = VanillaPicker;
|
||||||
|
|
||||||
|
// default export for TypeScript ES6 projects
|
||||||
|
JSONEditor.default = JSONEditor;
|
||||||
|
|
||||||
module.exports = JSONEditor;
|
module.exports = JSONEditor;
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2,7 +2,7 @@ import React, {Component} from 'react';
|
||||||
import isEqual from 'lodash/isEqual';
|
import isEqual from 'lodash/isEqual';
|
||||||
import cloneDeep from 'lodash/cloneDeep';
|
import cloneDeep from 'lodash/cloneDeep';
|
||||||
|
|
||||||
import * as JSONEditor from 'jsoneditor';
|
import JSONEditor from 'jsoneditor';
|
||||||
import 'jsoneditor/dist/jsoneditor.css';
|
import 'jsoneditor/dist/jsoneditor.css';
|
||||||
|
|
||||||
import './JSONEditorReact.css';
|
import './JSONEditorReact.css';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import React, {Component} from 'react';
|
import React, {Component} from 'react';
|
||||||
|
|
||||||
import * as JSONEditor from 'jsoneditor';
|
import JSONEditor from 'jsoneditor';
|
||||||
import 'jsoneditor/dist/jsoneditor.css';
|
import 'jsoneditor/dist/jsoneditor.css';
|
||||||
|
|
||||||
import './JSONEditorDemo.css';
|
import './JSONEditorDemo.css';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jsoneditor",
|
"name": "jsoneditor",
|
||||||
"version": "5.24.5",
|
"version": "5.24.6",
|
||||||
"main": "./index",
|
"main": "./index",
|
||||||
"description": "A web-based tool to view, edit, format, and validate JSON",
|
"description": "A web-based tool to view, edit, format, and validate JSON",
|
||||||
"tags": [
|
"tags": [
|
||||||
|
|
Loading…
Reference in New Issue