ende 0.4.4 → 0.4.5
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.
- checksums.yaml +4 -4
- data/component.json +2 -2
- data/lib/assets/javascripts/config/load_components.js.coffee +1 -0
- data/lib/assets/javascripts/ende.js.coffee +4 -3
- data/lib/ende/version.rb +1 -1
- data/vendor/assets/components/ende_build.js +206 -235
- data/vendor/components/indefinido-indemma/build/development.js +73 -25956
- data/vendor/components/indefinido-indemma/build/release.js +11 -26
- data/vendor/components/indefinido-indemma/build/test.js +73 -25956
- data/vendor/components/indefinido-indemma/lib/record/validatable.js +204 -192
- data/vendor/components/indefinido-indemma/src/lib/record/validatable.coffee +3 -1
- metadata +3 -3
@@ -26,14 +26,10 @@ function require(path, parent, orig) {
|
|
26
26
|
// perform real require()
|
27
27
|
// by invoking the module's
|
28
28
|
// registered function
|
29
|
-
if (!module.
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
module._resolving = true;
|
34
|
-
module.call(this, mod.exports, require.relative(resolved), mod);
|
35
|
-
delete module._resolving;
|
36
|
-
module.exports = mod.exports;
|
29
|
+
if (!module.exports) {
|
30
|
+
module.exports = {};
|
31
|
+
module.client = module.component = true;
|
32
|
+
module.call(this, module.exports, require.relative(resolved), module);
|
37
33
|
}
|
38
34
|
|
39
35
|
return module.exports;
|
@@ -26129,15 +26125,15 @@ extensions = {
|
|
26129
26125
|
this.validation = jQuery.when.apply(jQuery, results);
|
26130
26126
|
this.validation.done(doned);
|
26131
26127
|
this.validation.fail(failed);
|
26132
|
-
this.validation.
|
26128
|
+
return this.validation.done(function(record) {
|
26133
26129
|
var old_dirty;
|
26134
26130
|
|
26135
26131
|
old_dirty = record.dirty;
|
26136
26132
|
record.dirty = null;
|
26137
26133
|
record.validated || (record.validated = true);
|
26138
|
-
|
26134
|
+
record.dirty = old_dirty;
|
26135
|
+
return record;
|
26139
26136
|
});
|
26140
|
-
return this.validation;
|
26141
26137
|
}
|
26142
26138
|
}
|
26143
26139
|
};
|
@@ -26193,24 +26189,11 @@ model.rivets = function() {
|
|
26193
26189
|
};
|
26194
26190
|
|
26195
26191
|
});
|
26196
|
-
|
26197
|
-
|
26198
|
-
|
26199
|
-
|
26200
|
-
|
26201
|
-
|
26202
|
-
|
26203
|
-
|
26204
|
-
|
26205
|
-
|
26206
|
-
|
26207
|
-
|
26208
|
-
|
26209
|
-
|
26210
26192
|
require.alias("pluma-assimilate/dist/assimilate.js", "indemma/deps/assimilate/dist/assimilate.js");
|
26211
26193
|
require.alias("pluma-assimilate/dist/assimilate.js", "indemma/deps/assimilate/index.js");
|
26212
26194
|
require.alias("pluma-assimilate/dist/assimilate.js", "assimilate/index.js");
|
26213
26195
|
require.alias("pluma-assimilate/dist/assimilate.js", "pluma-assimilate/index.js");
|
26196
|
+
|
26214
26197
|
require.alias("component-type/index.js", "indemma/deps/type/index.js");
|
26215
26198
|
require.alias("component-type/index.js", "type/index.js");
|
26216
26199
|
|
@@ -26268,4 +26251,6 @@ require.alias("chaijs-chai/index.js", "chai/index.js");
|
|
26268
26251
|
require.alias("chaijs-assertion-error/index.js", "chaijs-chai/deps/assertion-error/index.js");
|
26269
26252
|
require.alias("chaijs-assertion-error/index.js", "chaijs-chai/deps/assertion-error/index.js");
|
26270
26253
|
require.alias("chaijs-assertion-error/index.js", "chaijs-assertion-error/index.js");
|
26271
|
-
|
26254
|
+
|
26255
|
+
require.alias("chaijs-chai/index.js", "chaijs-chai/index.js");
|
26256
|
+
|