cavalion-js 1.0.83 → 1.0.84

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.
package/.md CHANGED
@@ -1,4 +1,5 @@
1
1
  * [CHANGELOG.md]() - [README.md]() - [package.json]() - [PROMPT.md]()
2
+ * [chloggen.md]()
2
3
 
3
4
  # cavalion-js
4
5
 
@@ -8,10 +9,10 @@
8
9
  * [src](:/)
9
10
  * **[console](src/:/)**
10
11
  * **[data](src/:/)** - [design](src/:/)
11
- * **[entities](src/:/)** - [entities.js](src/) - [features](src/:/)
12
+ * **[entities](src/:/)** - [entities.js](src/:) - [expand.js](src/entities/:) - [features](src/:/)
12
13
  * [js](src/:/) / [\_js.js](src/js/:) - [extensions.js](src/js/:) - _[global.js](src/js/:)_? - _[define.js](src/js/:)?_
13
14
  - [defineClass.js](src/js/:) - [referenceClass.js](src/js/:)
14
- - **[JsObject.js](src/js/:) - [Class.js](src/js/:) **
15
+ - **[JsObject.js](src/js/:)** - **[Class.js](src/js/:)**
15
16
  - [json.js](src/:) - [locale.js](src/:) - [text.js](src/:)
16
17
  - [script.js](src/:) - [relscript.js](src/:)
17
18
  - [stylesheet.js](src/:)
@@ -26,10 +27,11 @@
26
27
  - [Ajax.js](src/util/:) - [Command.js](src/util/:)
27
28
  - [Browser.js](src/util/:) - [CssSelectorParser.js](src/util/:)
28
29
  - [Clipboard.js](src/util/:)
29
- - [DocumentHook.js](src/util/:) - [Event.js](src/util/:) - [Fullscreen.js](src/util/:)
30
+ - [DocumentHook.js](src/util/:) - [Event.js](src/util/:) - [EventEmitter.js](src/util/:) - [Fullscreen.js](src/util/:)
30
31
  - [HotkeyManager.js](src/util/:) - [HtmlElement.js](src/util/:)
31
32
  - [Hash.js](src/util/:)
32
33
  - [Keyboard.js](src/util/:)
34
+ - [Queue.js](src/util/:)
33
35
  - [Rest.js](src/util/:)
34
36
  - [Stylesheet.js](src/util/:)
35
37
  - [Text.js](src/util/:)
package/CHANGELOG.md CHANGED
@@ -1,91 +1,144 @@
1
- ### 2025/04/03 - 1.0.83
1
+ ### `2026/01/18` - 1.0.84
2
+
3
+ EM now uses the browser’s fetch API instead of jQuery.
4
+
5
+ Serialization/deserialization is reworked to support circular references via reference tracking, and small usability helpers were added for clipboard text access and synchronizing element CSS classes.
6
+
7
+ Several core methods were changed and/or expanded:
8
+
9
+ * grouping can be keyed by a function,
10
+ * identity lookups are supported,
11
+ * sorting and number formatting are more defensive,
12
+ * and naming heuristics recognize more label-like fields.
13
+
14
+ #### New
15
+
16
+ * **[entities/expand.js](src/:)** adds a helper that expands an “as” spec into a mapped string: it accepts a single value, a comma-list, or an array, and supports optional aliasing and `ns:path.field` formatting.
17
+ * **[util/Queue.js](src/:)** adds a promise-based FIFO queue with a **concurrency limit**, plus `whenIdle()` to await drain. z
18
+ * **[util/EventEmitter.js](src/:)** adds a lightweight event-emitter mixin (`on`, `un`, `once`, `emit`) that stores handlers on a configurable property (default `"handlers"`).
19
+
20
+
21
+ #### Label support + minor fallback tweak
22
+
23
+ - Improves [nameOf.js](src/js/:) value selection to also consider `label` alongside existing name/description fields.
24
+ - Keeps existing priority order (`id*` → remark → name-ish → title-ish), now including `label` in both lower/upper-case variants.
25
+ - Tweaks the no-constructor fallback string from `"<Native?>"` to `"<Native<?>>"`.
26
+ - Adds inline notes for a potential future recursion/cycle-safe naming helper (comment-only, no behavior change).
27
+
28
+
29
+ #### Safer generalized sorting + numeric formatting guard
30
+
31
+ - Makes `Array.sortValues` definition conditional (only defines it if not already present).
32
+ - Introduces explicit type-priority ordering for mixed-type sorts (undefined/null/boolean/number/string/object/function/symbol).
33
+ - Adds special-case comparison for arrays: sorts by `length` when both operands are arrays.
34
+ - Normalizes comparator return values to `-1/0/1` for stability and consistent ordering.
35
+ - Hardens object comparison by wrapping `stringify(...)` in try/catch and logging failures instead of throwing.
36
+ - Adds a fallback branch for unhandled types in `sortValues` (warns and returns equality).
37
+ - Updates `Math.f(n, d)` to only apply formatting heuristics when `n` is numeric; otherwise returns `n` unchanged.
38
+
39
+
40
+ #### Changes
41
+
42
+ - Refactors `EM.query(...)` in `src/entities/EM.js` to use `fetch` + `URLSearchParams` instead of `jquery.ajax`.
43
+ - Extends `js.groupBy(arr, key)` to accept a key function in `src/js/_js.js`.
44
+ - Breaking: switches `js.sj` / `js.pj` from `JSON.stringify` / `JSON.parse` to `serialize.serialize` / `serialize.deserialize` (handles `$ref` circular references).
45
+ - Adds `js.get(".")` to return the input object unchanged (identity accessor).
46
+ - Makes `Array.sortValues` definition conditional and adds type-aware ordering + array-length comparison in `src/js/extensions.js`.
47
+ - Hardens `Math.f(n, d)` to only apply string-based formatting when `n` is numeric; otherwise returns input unchanged.
48
+ - Expands `js.nameOf(...)` matching to include `label` fields and adjusts “native” fallback string to `"<Native<?>>"`.
49
+ - Replaces `src/js/serialize.js` export with `{ serialize, deserialize, isKeyword, keyNeedsEscape }` and implements `$ref`-based encode/decode for repeated objects.
50
+ - Adds `Clipboard.getText()` / `Clipboard.setText()` aliases and extends `Clipboard.paste(cb)` to optionally callback with pasted text.
51
+ - Adds `HtmlElement.syncClasses(node, classes, values)` to toggle CSS classes from booleans/functions and return changed class names.
52
+ - Applies minor style/semicolon fixes in `src/stylesheet.js`; adds commented Chrome iframe resize hack in `src/util/Browser.js` (no runtime change).
53
+
54
+ ### `2025/04/03` - 1.0.83
2
55
 
3
56
  * Introduces Array.moveItem
4
57
  * Updates js.set to handle escaped dots properly
5
58
  * Adds a delay of 2750ms before refresing LESS definitions
6
59
 
7
- ### 2024/11/08 - 1.0.82
60
+ ### `2024/11/08` - 1.0.82
8
61
 
9
62
  * Service build in favor of cavalion-code
10
63
 
11
- ### 2024/11/01 - 1.0.81
64
+ ### `2024/11/01` - 1.0.81
12
65
 
13
66
  * Adds Array.sortValues
14
67
  * Adds Date.format (USE IT! ;-))
15
68
  * Fixes/prepares js.nameOf() for some exotic use case with dropped files
16
69
 
17
- ### 2024/07/07 - 1.0.79
70
+ ### `2024/07/07` - 1.0.79
18
71
 
19
72
  * Removes `Array.prototype.last` and -`first`
20
73
  * Improves beautifying XML sources and error detection during (uhm)
21
74
 
22
- ### 2024/05/16 - 1.0.78
75
+ ### `2024/05/16` - 1.0.78
23
76
 
24
77
  * Adds Array.fn.nonNil
25
78
  * Introduces js.eval
26
79
 
27
- ### 2024/03/24 - 1.0.77
80
+ ### `2024/03/24` - 1.0.77
28
81
 
29
82
  * Introduces util/Text
30
83
 
31
- ### 2023/09/30 - 1.0.76
84
+ ### `2023/09/30` - 1.0.76
32
85
 
33
86
  * Fixes a solid bug, in _JsObject.prototype.setProperties()_, sure why not?
34
87
 
35
- ### 2023/06/30 - 1.0.75
88
+ ### `2023/06/30` - 1.0.75
36
89
 
37
90
  * Introduces locales.mixIn, prefixed.has()
38
91
  * Ensures that Printer.prottype.print returns the printed value
39
92
  * Refactores String.escape to use JSON.stringify
40
93
 
41
- ### 2023/06/30 - 1.0.74
94
+ ### `2023/06/30` - 1.0.74
42
95
 
43
96
  * Introduces `locale.has()`
44
97
 
45
- ### 2023/03/01 - 1.0.73
98
+ ### `2023/03/01` - 1.0.73
46
99
 
47
100
  * Introduces `js.mi` alias for `js.mixIn`
48
101
  * Fixes a bug in `js.sf` (ie. String.format) where specifiers where not handled correctly for %X.Yf like formats
49
102
 
50
- ### 2022/11/15 - 1.0.72
103
+ ### `2022/11/15` - 1.0.72
51
104
 
52
105
  * DocumentHook: Adds the events onmouseover and onmouseout
53
106
 
54
- ### 2022/11/07
107
+ ### `2022/11/07`
55
108
 
56
109
  * Adds `js.waitAll()`
57
110
 
58
- ### 2022/07/28 10/29 - 1.0.71
111
+ ### `2022/07/28` 10/29 - 1.0.71
59
112
 
60
113
  * Adjusts/enhances `js.groupBy()` to use js.get(key,obj) in case obj doesn't have key
61
114
  * !!!???? Implements the support for falling back automatically ([CVLN-20220901-2-](/Dropbox-cavalion/Issues/:/))
62
115
  fixes a bug where falling back on wildcarded terms was not working correctly
63
116
 
64
- ### 2022/07/28 - 1.0.70
117
+ ### `2022/07/28` - 1.0.70
65
118
 
66
119
  * 2bb8d17 - updates/commits code that has been shipped for months now
67
120
  * dc8fb8d - enhances js.groupBy for grouping on multiple attributes
68
121
  * caa9abc - adds hint parameter to js.nameOf
69
122
  * 004cc0f - clogs the latest changes
70
123
 
71
- ### 2022/03/28 - 1.0.69
124
+ ### `2022/03/28` - 1.0.69
72
125
 
73
126
  * e3ce126 - Clogging
74
127
  * 0d7badc - js/JsObject: Still refactoring [all !==> references (!)]
75
128
 
76
- ### 2022/03/28 - 1.0.68
129
+ ### `2022/03/28` - 1.0.68
77
130
 
78
131
  * Updating
79
132
 
80
- ### 2022/01/02 - 1.0.67
133
+ ### `2022/01/02` - 1.0.67
81
134
 
82
135
  * Introducing `js.nameOf.methods.set(name, impl)` - it allows for overriding/extending a certain method iteratively
83
136
 
84
- ### 2021/12/17 - 1.0.66
137
+ ### `2021/12/17` - 1.0.66
85
138
 
86
139
  - Enhancing `locale`, now supporting references with the ::-prefix
87
140
 
88
- ### 2021/10/09 - 1.0.65
141
+ ### `2021/10/09` - 1.0.65
89
142
 
90
143
  - Now supporting the following patterns:
91
144
 
@@ -94,84 +147,84 @@ fixes a bug where falling back on wildcarded terms was not working correctly
94
147
 
95
148
  Not sure what todo with the default yet.
96
149
 
97
- ### 2021/09/18 - 1.0.64
150
+ ### `2021/09/18` - 1.0.64
98
151
 
99
152
  - Introducing `String.decamelize = String.decamelcase`
100
153
 
101
- ### 2021/06/21 - 1.0.63
154
+ ### `2021/06/21` - 1.0.63
102
155
  - Introducing `js.groupBy()`
103
156
 
104
- ### 2021/03/12 - 1.0.62
157
+ ### `2021/03/12` - 1.0.62
105
158
  - util/Xml: Introducing `jsonfy()`
106
159
 
107
- ### 2021/02/07 - 1.0.61
160
+ ### `2021/02/07` - 1.0.61
108
161
  - locale: Fix for using /-prefixed paths
109
162
 
110
- ### 2021/01/24 - 1.0.60
163
+ ### `2021/01/24` - 1.0.60
111
164
  - Adding extensions to Math in order to deal with floating points
112
165
 
113
- ### 2021/01/22 - 1.0.59
166
+ ### `2021/01/22` - 1.0.59
114
167
  * Introducing `js.trim()` - get rid of undefined keys
115
168
 
116
- ### 2020-11-11 - 1.0.58
169
+ ### `2020-11-11` - 1.0.58
117
170
  - Refactoring js.nameOf.methods => veldapps-xml /- also added some lamish debug/test feature to see which method is being used
118
171
 
119
- ### 2020-11-06 - 1.0.57
172
+ ### `2020-11-06` - 1.0.57
120
173
  - Adding minimal packing support through js/Packer.[un]pack(ace/string)
121
174
 
122
- ### 2020-10-28
175
+ ### `2020-10-28`
123
176
  - Editor<xml>/DetailViews: Working towards base class / integration .blocks features
124
177
 
125
- ### 2020-10-19 - 1.0.56
178
+ ### `2020-10-19` - 1.0.56
126
179
  - Added more `js.nameOf`-methods
127
180
 
128
- ### 2020-10-07 - 1.0.55
181
+ ### `2020-10-07` - 1.0.55
129
182
  - Introducing `js.nameOf.methods.after` (I guess we need priorities?)
130
183
 
131
- ### 2020-09-12 - 1.0.54
184
+ ### `2020-09-12` - 1.0.54
132
185
  - Adding JSON-shortcuts to `js`, ie. `js.sj` & `js.pj`
133
186
 
134
- ### 2020-08-29 - 1.0.53
187
+ ### `2020-08-29` - 1.0.53
135
188
  - Fixing uri display of vcl/Component-s in console
136
189
  - Developing console features, working on vcl/Component.uri property
137
190
 
138
- ### 2020-08-27 - 1.0.52
191
+ ### `2020-08-27` - 1.0.52
139
192
 
140
193
  src/console/node/Function.js
141
194
  src/console/node/OnlyKey.js
142
195
  src/util/HotkeyManager.js
143
196
 
144
- ### 2020-08-18 - 1.0.51
197
+ ### `2020-08-18` - 1.0.51
145
198
  - Adding Array.as
146
199
 
147
- ### 2020-08-05 - 1.0.50
200
+ ### `2020-08-05` - 1.0.50
148
201
  - Adding default js.nameOf() method
149
202
 
150
- ### 2020-07-05 - 1.0.48 `#local-changes`
203
+ ### `2020-07-05` - 1.0.48 `#local-changes`
151
204
  - Welcoming `ArrayFactory` to the family (_well yeah, hey, every drop counts and besides, now it's always there_)
152
205
  - Prefixed `locale` functions now return their prefix by calling without arguments
153
206
 
154
- ### 2020-06-16 - 1.0.47
207
+ ### `2020-06-16` - 1.0.47
155
208
 
156
209
  - Fixing `js.str2obj()` so it accepts just a key and it's value set to true - not sure whether the semi-colon should be obligated...
157
210
 
158
- ### 2020-06-12 - 1.0.46
211
+ ### `2020-06-12` - 1.0.46
159
212
 
160
213
  - Enhancing `js.str2obj()` so it accepts just a key and it's value set to true - not sure whether the semi-colon should be obligated...
161
214
 
162
- ### 2020-06-10 - 1.0.45
215
+ ### `2020-06-10` - 1.0.45
163
216
  - Decided not to mess with Array's prototype (1.0.34 cancelled)
164
217
 
165
- ### 2020-06-02 - 1.0.44
218
+ ### `2020-06-02` - 1.0.44
166
219
  - Having some trouble with the HexaQuad due to Vectorklic.app (hoe heeft het ooit kunnen werken? - werd dus niet (meer) gebruikt!)
167
220
  - Bugfix in EM.arrayOfAll
168
221
 
169
- ### 2020-05-13 - 1.0.42
222
+ ### `2020-05-13` - 1.0.42
170
223
  - Improving locale so that arrays are used to wrap object values (which otherwise would be parsed out)
171
224
 
172
225
  >> ![image](https://user-images.githubusercontent.com/686773/81868210-998b3b00-9537-11ea-9599-ca7eb57edfce.png?2x)
173
226
 
174
- ### 2020-05-10 - 1.0.40
227
+ ### `2020-05-10` - 1.0.40
175
228
  - Promise: Featuring new class definition pattern
176
229
 
177
230
  >> ![image](https://user-images.githubusercontent.com/686773/81533306-97ed2780-932b-11ea-8289-b2837dfa753a.png?2x)
@@ -180,92 +233,92 @@ Not sure what todo with the default yet.
180
233
  - js.nameOf: Now specifically handling Window
181
234
  - locale: Paving the way for formatting
182
235
 
183
- ### 2020-04-28
236
+ ### `2020-04-28`
184
237
  - js.copy_args: callee optional added
185
238
 
186
- ### 2020-04-14 - 1.0.38
239
+ ### `2020-04-14` - 1.0.38
187
240
  - js/nameOf: adding `@_name` as default name attribute"
188
241
 
189
- ### 2020-04-09 - 1.0.37
242
+ ### `2020-04-09` - 1.0.37
190
243
  - json.js: Fix for: Error: Loader plugin did not call the load callback in the build
191
- ### 2020-01-27 - 1.0.36
244
+ ### `2020-01-27` - 1.0.36
192
245
  - Introducing 'yell'
193
246
 
194
- ### 2020-01-22 - 1.0.35
247
+ ### `2020-01-22` - 1.0.35
195
248
  - Introducing parameter `include_q` for static `util/net/Url.obj2qs`
196
249
 
197
- ### 2019-11-29 [1.0.33]
250
+ ### `2019-11-29` [1.0.33]
198
251
  - Fixed Alt+Click in console/Node
199
252
 
200
- ### 2019-10-22 [1.0.32]
253
+ ### `2019-10-22` [1.0.32]
201
254
  - Adding locale.slashDotRepl option (default: false)
202
255
 
203
- ### 2019-07-18 [1.0.30]
256
+ ### `2019-07-18` [1.0.30]
204
257
  - Making nl the default locale
205
258
  - Fighting the localStorage.locale bug, removed feature - apps should do this seperately (AND FOOLPROOF! ;-)
206
259
 
207
- ### 2019-07-14 [1.0.29]
260
+ ### `2019-07-14` [1.0.29]
208
261
  - Enhancing `js.get()`, 1st argument can be an array of strings or a string which will be splitted by dot (`.`)
209
262
 
210
- ### 2019-06-07 [1.0.27]
263
+ ### `2019-06-07` [1.0.27]
211
264
  - Working on ES6 module support
212
265
 
213
- ### 2019-05-25 [1.0.26]
266
+ ### `2019-05-25` [1.0.26]
214
267
  - `locale!/` implemented in order to prevent locale_base
215
268
 
216
- ### 2019-05-18 [1.0.22]
269
+ ### `2019-05-18` [1.0.22]
217
270
  - Introducing locale.prefixed
218
271
 
219
- ### 2019-05-09 [1.0.21]
272
+ ### `2019-05-09` [1.0.21]
220
273
  - Introducing js.ctx and js.sf
221
274
 
222
- ### 2019-03-31 [1.0.19]
275
+ ### `2019-03-31` [1.0.19]
223
276
  - Fixed a typo/bug, in destroy() method, wtf...
224
277
  - Added support for distinct and raw queries (entities/EM)
225
278
 
226
- ### 2019-02-18 [1.0.18]
279
+ ### `2019-02-18` [1.0.18]
227
280
  - Improving console (in another dimension vcl:ui)
228
281
 
229
- ### 2019-02-17 [1.0.17]
282
+ ### `2019-02-17` [1.0.17]
230
283
  - Fixed a bug in `js.get()` [OMG!]
231
284
 
232
- ### 2018-12-15 [1.0.16]
285
+ ### `2018-12-15` [1.0.16]
233
286
  - Fix in locale.js (for building cavalion-code)
234
287
 
235
- ### 2018-12 [1.0.14]
288
+ ### `2018-12 [1`.0.14]
236
289
  - Fix in js/Scaffold (like a temp hack)
237
290
  - Fix in locale.js (for building cavalion-code)
238
291
 
239
- ### 2018-10-10
292
+ ### `2018-10-10`
240
293
  - Introducing json!
241
294
 
242
- ### 2018-08-22 [1.0.6]
295
+ ### `2018-08-22` [1.0.6]
243
296
  - locale: Always looking for prototype
244
297
 
245
- ### 2018-05-21
298
+ ### `2018-05-21`
246
299
  - Fix for normalizing relative to /-paths
247
300
  - Fix for class names with dashes
248
301
  - Finetuning DocumentHook's wheelEvents
249
302
 
250
- ### 2018-03-21
303
+ ### `2018-03-21`
251
304
  - Springly commit
252
305
 
253
- ### 2018-02-28
306
+ ### `2018-02-28`
254
307
  - Fixed a bug which caused `specializer_classes` not be applied on components. Eg. `devtools/Workspace<Veldoffice.ralph>` would only apply `devtools/Workspace<Veldoffice>`)
255
308
  - Fixed a bug where `vcl/Component.getImplicitBaseByUri()` would return duplicate bases
256
309
 
257
- ### 2018-02-27
310
+ ### `2018-02-27`
258
311
  - Introducing `Component.prototype.vars`
259
312
  - Minor fix for Component.query
260
313
  - Fix for vcl-ui/Node performance
261
314
 
262
- ### 2018-02-12
315
+ ### `2018-02-12`
263
316
  - Fixing expanded/expandable bugs for vcl-ui/Node
264
317
  - Looking into performance of vcl-ui/Node and vcl-ui/List
265
318
  - Introducing **vcl-ui/Console.evaluate**
266
319
  - Adding onEvent style to Component.properties.handlers
267
320
 
268
- ### 2018-02-07 [1.0.2]
321
+ ### `2018-02-07` [1.0.2]
269
322
  * **vcl/Factory** - Removed Method.trace-ing
270
323
  * **vcl-ui/List* ** - Worked on List-classes - not really improved, lacks speed
271
324
  * Fixed now longer functioning cavalion.org/databind
@@ -278,29 +331,29 @@ Not sure what todo with the default yet.
278
331
 
279
332
  >![](https://snag.gy/zqGH8t.jpg)
280
333
 
281
- ### 2018-02-04
334
+ ### `2018-02-04`
282
335
 
283
336
  * "vcl-ui/List" == "vcl/ui/List"
284
337
 
285
338
  ![](https://snag.gy/Go6mKe.jpg)
286
339
 
287
- ### 2018-02-02
340
+ ### `2018-02-02`
288
341
  - Improving vcl/ui/Tree: Vertical alignment, removed bottom padding for the selected item
289
342
 
290
343
  ![](https://snag.gy/VRr5BK.jpg)
291
344
 
292
- ### 2018-01-26
345
+ ### `2018-01-26`
293
346
  - Exploring Git
294
347
 
295
- ### 2018-01-21
348
+ ### `2018-01-21`
296
349
  - Developing vcl/entities/Query and descendants
297
350
  - Start developing ListOf
298
351
  - Finetuning code structures and styles (standard library?)
299
352
 
300
- ### 2018-01-08
353
+ ### `2018-01-08`
301
354
  - Developing Veldoffice entities client
302
355
 
303
- ### 2018-01-02
356
+ ### `2018-01-02`
304
357
  - Giving some love to vcl/Component::handlers and ::overrides
305
358
  - vcl/Factory now catching eval errors
306
359
  - vcl/ui/Printer now supports native Promise (js/Deferred.prototype.then())
@@ -309,30 +362,30 @@ Not sure what todo with the default yet.
309
362
  - Developing veldoffice/Session, veldoffice/EM and veldoffice/models
310
363
  - Adding locale
311
364
 
312
- ### 2017-11-04
365
+ ### `2017-11-04`
313
366
  - devtools/Workspace: Added query close for tabs
314
367
  - devtools/Editor<html>: First steps to specific [uri=*.\.page/\.html] editor
315
368
 
316
- ### 2017-10-18
369
+ ### `2017-10-18`
317
370
  - Improved context handling with Pages and App7.loadPage (basically it's all back to url_query again, but that's a good thing :-))
318
371
  - EM.query: When omitted pagesize will default to 50
319
372
 
320
- ### 2017-10-15
373
+ ### `2017-10-15`
321
374
  - Pages: Removing obligatory less resource. It seems these are hardly used and can always be required by the conroller module
322
375
  - Commiting in favor of V7
323
376
 
324
- ### 2017-10-11
377
+ ### `2017-10-11`
325
378
  - Code: new release
326
379
 
327
- ### 2017-10-08
380
+ ### `2017-10-08`
328
381
  - V7: Releasing build 126
329
382
  - stylesheet! - now supporting less
330
383
  - Embracing Template7, setting up context before loading page
331
384
 
332
- ### 2017-10-02
385
+ ### `2017-10-02`
333
386
  - Editor<html>: Restoring scroll position upon changes in the source code
334
387
 
335
- ### 2017-08-11
388
+ ### `2017-08-11`
336
389
  - Component.query: Added toggleClass()
337
390
  - Query.events: Added "event"
338
391
  - vcl/data/Pouch: Finetuning, developing...
@@ -341,21 +394,21 @@ Not sure what todo with the default yet.
341
394
  - entities/EM: Developing, finetuning
342
395
  - Resolved: #1297
343
396
 
344
- ### 2017-07-01
397
+ ### `2017-07-01`
345
398
  - Introducing vcl/ui/Panel (might move upwards in the class hierarchy) zoom (cool feature!!)
346
399
 
347
- ### 2017-06-24
400
+ ### `2017-06-24`
348
401
  - Adding vcl/data/Pouch in the mix
349
402
  - Optmizing performance for vcl/ui/List icw vcl/data/Array
350
403
  - Fixing (workaround) some weird bug with Function.prototype.toString
351
404
 
352
- ### 2017-06-20
405
+ ### `2017-06-20`
353
406
  - Updating code base
354
407
 
355
- ### 2017-04-23
408
+ ### `2017-04-23`
356
409
  - Improving make/Build
357
410
 
358
- ### 2017-03-16
411
+ ### `2017-03-16`
359
412
  - Reorganized JavaScript libraries
360
413
  - Conformed code/devtools to new struture
361
414
  - Currently working on:
@@ -365,21 +418,21 @@ Not sure what todo with the default yet.
365
418
  - veldapps.com/V7
366
419
  - veldapps.com/vcl-rapportage-module
367
420
 
368
- ### 2017-03-11
421
+ ### `2017-03-11`
369
422
  - Getting rid of cavalion.org/... module requires, now using relative paths within cavalion.org sources/modules
370
423
 
371
- ### 2017-03-07
424
+ ### `2017-03-07`
372
425
  - Removed [id^=vcl-] from Control CSSRules selector
373
426
  - Making FormContainer work with relative formUris
374
427
 
375
- ### 2017-03-04
428
+ ### `2017-03-04`
376
429
  - Optimizing code for folding features in Ace
377
430
  - Fixing bugs for not being comptabile with IE
378
431
  - Refresh button in ui/entities/Query
379
432
  - Time for cavalion.org/Command to go away - jquery.ajax should be sufficient
380
433
  - Deprecating App.scaffold
381
434
 
382
- ### 2017-02-28
435
+ ### `2017-02-28`
383
436
  - Working on entities/Instance <--> model, how to receive sets/one-to-many collections from server?
384
437
  - Fixing scaffolding issues. No longer a-synchronous. All scaffold code should run *before* onLoad.
385
438
  - Explicit express in code that an certain component should be scaffolded, eg.:
@@ -392,33 +445,33 @@ Not sure what todo with the default yet.
392
445
  - Improving vcl/ui/FormContainer with new API swapForm()
393
446
  - Simplyfing CSS fonts
394
447
 
395
- ### 2017-02-25
448
+ ### `2017-02-25`
396
449
  - Bug fixed where parent could not be nulled in a vcl resource
397
450
  - Refactoring/bugfixing scaffolding
398
451
 
399
452
  $(["View<Logger>.select"]);
400
453
 
401
- ### 2017-02-24
454
+ ### `2017-02-24`
402
455
  - Bugfixing vcl/Control.update, where controls could be updated while not anticipated for and leave them in a inconsistent state in relation to the DOM (mailny they would be removed from the DOM)
403
456
  - Implementing scaffolding in vcl/Factory
404
457
  - Added nesting operator (<) to vcl/Component.query, indicating to parent/child relationship
405
458
 
406
- ### 2017-02-23
459
+ ### `2017-02-23`
407
460
  - Integrated Dygraphs for visualizing measurements in a interactive timeline
408
461
  - Keeping UI as simple as possible
409
462
  - Refactoring vcl/prototypes/App.v1 to multiple classes, like .openform, .console (developing)
410
463
  - Adding component name in DOM node classes, prefixed by a #-sign
411
464
  - Refer to component names in css definitions (# --> \\#)
412
465
 
413
- ### 2017-02-17
466
+ ### `2017-02-17`
414
467
  - Developing ui/entities/Query, ./QueryFilters, ./AttributeInput
415
468
  - Finetuning Component.qs, still need a good operator for controls
416
469
 
417
- ### 2017-02-14
470
+ ### `2017-02-14`
418
471
  - Working on vcl/ui/Input
419
472
  - toInputValue/fromInputValue
420
473
 
421
- ### 2017-02-02
474
+ ### `2017-02-02`
422
475
  - Reformatting code to be better suited for folding features in the editor
423
476
  - Console: Introducing req()
424
477
  - vcl/Component.prototype.setVars: Now allowing a string as input (js.str2obj)