angular-json-edit
Advanced tools
Comparing version 0.0.3 to 0.0.4
{ | ||
"name": "angular-json-edit", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"homepage": "https://github.com/Rleahy22/angularJsonEditor", | ||
@@ -5,0 +5,0 @@ "authors": [ |
@@ -13,3 +13,2 @@ (function() { | ||
'<form name="jsonEditorForm" ng-submit="" role="form">' + | ||
'<label class="json-brackets">{</label>' + | ||
'<div ng-repeat="(key, value) in config track by key" ng-init="parent = config; child = value" class="json-form" compile="nest"' + | ||
@@ -19,3 +18,2 @@ '</div>' + | ||
'</div>' + | ||
'<label class="json-brackets">}</label>' + | ||
'</form>' + | ||
@@ -46,3 +44,3 @@ '</div>' + | ||
'<label ng-hide="isArray(parent)" class="json-form-element">' + | ||
'{{key}}:' + | ||
'<span class="key-span">{{key}}:</span>' + | ||
'<span ng-show="isNested(value) && isArray(value)">[</span>' + | ||
@@ -49,0 +47,0 @@ '<span ng-show="isNested(value) && !isArray(value)">{</span>' + |
{ | ||
"name": "angular-json-edit", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "Infinitely nesting JSON editor for Angular with no dependencies", | ||
@@ -5,0 +5,0 @@ "main": "dist/angularJsonEdit.js", |
# angularJsonEdit | ||
An infinitely nesting, dependency free interactive JSON editor for Angular. Can support an infinitely nested object without the need to install jQuery, bootstrap, or any ui dependencies. 100% test covered. | ||
An infinitely nesting, dependency free interactive JSON editor for Angular. Can support an infinitely nested object without the need to install jQuery, bootstrap, or any ui dependencies. All changes occur within the digest cycle with no use of $scope.$watch or manually calling $scope.$digest or $scope.$apply. 100% test covered. | ||
@@ -5,0 +5,0 @@ # Usage |
@@ -12,3 +12,2 @@ (function() { | ||
'<form name="jsonEditorForm" ng-submit="" role="form">' + | ||
'<label class="json-brackets">{</label>' + | ||
'<div ng-repeat="(key, value) in config track by key" ng-init="parent = config; child = value" class="json-form" compile="nest"' + | ||
@@ -18,3 +17,2 @@ '</div>' + | ||
'</div>' + | ||
'<label class="json-brackets">}</label>' + | ||
'</form>' + | ||
@@ -44,3 +42,3 @@ '</div>' + | ||
'<label ng-hide="isArray(parent)" class="json-form-element">' + | ||
'{{key}}:' + | ||
'<span>{{key}}:</span>' + | ||
'<span ng-show="isNested(value) && isArray(value)">[</span>' + | ||
@@ -47,0 +45,0 @@ '<span ng-show="isNested(value) && !isArray(value)">{</span>' + |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34308