neo.mjs 10.0.0-alpha.5 → 10.0.0-beta.1

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 (72) hide show
  1. package/ServiceWorker.mjs +2 -2
  2. package/apps/portal/index.html +1 -1
  3. package/apps/portal/resources/data/examples_devmode.json +26 -27
  4. package/apps/portal/resources/data/examples_dist_dev.json +26 -27
  5. package/apps/portal/resources/data/examples_dist_esm.json +26 -27
  6. package/apps/portal/resources/data/examples_dist_prod.json +27 -28
  7. package/apps/portal/view/home/FooterContainer.mjs +1 -1
  8. package/apps/portal/view/learn/ContentComponent.mjs +102 -111
  9. package/examples/table/cellEditing/MainContainer.mjs +1 -1
  10. package/examples/table/container/MainContainer.mjs +3 -3
  11. package/examples/table/nestedRecordFields/Viewport.mjs +6 -6
  12. package/examples/tableFiltering/MainContainer.mjs +1 -1
  13. package/examples/tablePerformance/MainContainer.mjs +1 -1
  14. package/examples/tablePerformance/MainContainer2.mjs +1 -1
  15. package/examples/tablePerformance/MainContainer3.mjs +2 -2
  16. package/examples/tableStore/MainContainer.mjs +2 -2
  17. package/learn/UsingTheseTopics.md +2 -2
  18. package/learn/benefits/ConfigSystem.md +2 -2
  19. package/learn/benefits/FormsEngine.md +14 -14
  20. package/learn/benefits/MultiWindow.md +2 -2
  21. package/learn/benefits/OffTheMainThread.md +2 -2
  22. package/learn/benefits/Speed.md +2 -2
  23. package/learn/gettingstarted/ComponentModels.md +4 -4
  24. package/learn/gettingstarted/Config.md +6 -6
  25. package/learn/gettingstarted/DescribingTheUI.md +4 -4
  26. package/learn/gettingstarted/Events.md +6 -6
  27. package/learn/gettingstarted/Extending.md +4 -4
  28. package/learn/gettingstarted/References.md +6 -6
  29. package/learn/gettingstarted/Workspaces.md +6 -6
  30. package/learn/guides/ApplicationBootstrap.md +26 -26
  31. package/learn/guides/ComponentsAndContainers.md +12 -12
  32. package/learn/guides/CustomComponents.md +2 -2
  33. package/learn/guides/MainThreadAddonIntro.md +2 -2
  34. package/learn/guides/PortalApp.md +2 -2
  35. package/learn/guides/StateProviders.md +12 -12
  36. package/learn/guides/events/CustomEvents.md +16 -16
  37. package/learn/guides/events/DomEvents.md +12 -12
  38. package/learn/javascript/ClassFeatures.md +3 -2
  39. package/learn/javascript/Classes.md +8 -8
  40. package/learn/javascript/NewNode.md +4 -4
  41. package/learn/javascript/Overrides.md +8 -8
  42. package/learn/javascript/Super.md +10 -8
  43. package/learn/tutorials/Earthquakes.md +54 -57
  44. package/learn/tutorials/TodoList.md +4 -4
  45. package/package.json +1 -1
  46. package/resources/scss/src/apps/portal/learn/ContentComponent.scss +12 -0
  47. package/resources/scss/src/table/{View.scss → Body.scss} +1 -1
  48. package/resources/scss/src/table/plugin/CellEditing.scss +1 -1
  49. package/resources/scss/theme-dark/table/{View.scss → Body.scss} +1 -1
  50. package/resources/scss/theme-light/table/{View.scss → Body.scss} +1 -1
  51. package/resources/scss/theme-neo-light/Global.scss +1 -2
  52. package/resources/scss/theme-neo-light/table/{View.scss → Body.scss} +1 -1
  53. package/src/DefaultConfig.mjs +2 -2
  54. package/src/core/Base.mjs +59 -12
  55. package/src/core/Util.mjs +14 -2
  56. package/src/draggable/grid/header/toolbar/SortZone.mjs +21 -21
  57. package/src/draggable/table/header/toolbar/SortZone.mjs +1 -1
  58. package/src/grid/Body.mjs +2 -3
  59. package/src/grid/_export.mjs +1 -1
  60. package/src/main/addon/AmCharts.mjs +8 -11
  61. package/src/main/addon/Base.mjs +150 -42
  62. package/src/main/addon/GoogleMaps.mjs +9 -16
  63. package/src/main/addon/HighlightJS.mjs +2 -13
  64. package/src/main/addon/IntersectionObserver.mjs +21 -21
  65. package/src/main/addon/MonacoEditor.mjs +1 -6
  66. package/src/table/{View.mjs → Body.mjs} +19 -20
  67. package/src/table/Container.mjs +43 -43
  68. package/src/table/_export.mjs +2 -2
  69. package/src/table/plugin/CellEditing.mjs +19 -19
  70. package/src/vdom/Helper.mjs +9 -12
  71. package/src/worker/Base.mjs +1 -1
  72. package/src/worker/mixin/RemoteMethodAccess.mjs +1 -1
@@ -9,7 +9,7 @@ Neo.mjs is class-based, which means you're free to extend any component (or any
9
9
 
10
10
  ## Lifecycle config properties
11
11
 
12
- <pre data-code-livepreview>
12
+ ```javascript live-preview
13
13
  import Button from '../button/Base.mjs';
14
14
  // In practice this would be some handy reusable component
15
15
  class MySpecialButton extends Button {
@@ -41,5 +41,5 @@ class MainView extends Container {
41
41
  }
42
42
 
43
43
  Neo.setupClass(MainView);
44
- </pre>
44
+ ```
45
45
 
@@ -18,10 +18,10 @@ please return a specified `window` property." Neo.mjs
18
18
  lets you do that via `Neo.Main.getByPath()`. For
19
19
  example, the following statement logs the URL query string.
20
20
 
21
- <pre data-code-readonly>
21
+ ```javascript readonly
22
22
  const search = await Neo.Main.getByPath({path: 'window.location.search'});
23
23
  console.log(search); // Logs the search string
24
- </pre>
24
+ ```
25
25
 
26
26
  `Neo.Main` & `Neo.main.DomAccess` provide some basic methods for accessing the
27
27
  main thread, but in case you want to use a third party library which relies on directly
@@ -27,9 +27,9 @@ The setting will get stored inside the LocalStorage,
27
27
  so you will need to click the following Button a 2nd time to deactivate it again.
28
28
  Or you can clear the LocalStorage manually.</br></br>
29
29
 
30
- <pre data-neo-component>
30
+ ```json neo-component
31
31
  {
32
32
  "className": "Portal.view.learn.CubeLayoutButton",
33
33
  "style" : {"margin": 0}
34
34
  }
35
- </pre>
35
+ ```
@@ -10,7 +10,7 @@ Other libraries or frameworks often call state providers "Stores".
10
10
 
11
11
  ## Inline State Providers
12
12
  ### Direct Bindings
13
- <pre data-code-livepreview>
13
+ ```javascript live-preview
14
14
  import Button from '../button/Base.mjs';
15
15
  import Container from '../container/Base.mjs';
16
16
  import Label from '../component/Label.mjs';
@@ -49,7 +49,7 @@ class MainView extends Container {
49
49
  }
50
50
  }
51
51
  MainView = Neo.setupClass(MainView);
52
- </pre>
52
+ ```
53
53
 
54
54
  We use a Container with a stateProvider containing the data props `hello` and `world`.
55
55
  Inside the Container are 2 Labels which bind their `text` config to a data prop directly.
@@ -58,7 +58,7 @@ We can easily bind 1:1 to specific data props using the following syntax:</br>
58
58
  `bind: {text: data => data.hello}`
59
59
 
60
60
  ### Bindings with multiple data props
61
- <pre data-code-livepreview>
61
+ ```javascript live-preview
62
62
  import Button from '../button/Base.mjs';
63
63
  import Container from '../container/Base.mjs';
64
64
  import Label from '../component/Label.mjs';
@@ -104,7 +104,7 @@ class MainView extends Container {
104
104
  }
105
105
  }
106
106
  MainView = Neo.setupClass(MainView);
107
- </pre>
107
+ ```
108
108
 
109
109
  We use a Container with a stateProvider containing the data props `hello` and `world`.
110
110
  Inside the Container are 3 Labels which bind their `text` config to a combination of both data props.
@@ -128,7 +128,7 @@ data.component equals to the Button instance itself. Since the Button instance d
128
128
  `getStateProvider()` will return the closest stateProvider inside the parent chain.
129
129
 
130
130
  ### Nested Inline State Providers
131
- <pre data-code-livepreview>
131
+ ```javascript live-preview
132
132
  import Button from '../button/Base.mjs';
133
133
  import Container from '../container/Base.mjs';
134
134
  import Label from '../component/Label.mjs';
@@ -182,7 +182,7 @@ class MainView extends Container {
182
182
  }
183
183
  }
184
184
  MainView = Neo.setupClass(MainView);
185
- </pre>
185
+ ```
186
186
 
187
187
  The output of this demo is supposed to exactly look the same like the previous demo.
188
188
 
@@ -203,7 +203,7 @@ We can even change data props which live inside different stateProviders at once
203
203
  Hint: Modify the example code (Button handler) to try it out right away!
204
204
 
205
205
  ### Nested Data Properties
206
- <pre data-code-livepreview>
206
+ ```javascript live-preview
207
207
  import Button from '../button/Base.mjs';
208
208
  import Container from '../container/Base.mjs';
209
209
  import Label from '../component/Label.mjs';
@@ -244,7 +244,7 @@ class MainView extends Container {
244
244
  }
245
245
  }
246
246
  MainView = Neo.setupClass(MainView);
247
- </pre>
247
+ ```
248
248
  Data props inside VMs can be nested. Our stateProvider contains a `user` data prop as an object,
249
249
  which contains the nested props `firstname` and `lastname`.
250
250
 
@@ -262,7 +262,7 @@ Or we can directly pass the object containing the change(s):</br>
262
262
  Hint: This will not override left out nested data props (lastname in this case).
263
263
 
264
264
  ### Dialog connecting to a Container
265
- <pre data-code-livepreview>
265
+ ```javascript live-preview
266
266
  import Controller from '../controller/Component.mjs';
267
267
  import Dialog from '../dialog/Base.mjs';
268
268
  import Panel from '../container/Panel.mjs';
@@ -378,13 +378,13 @@ class MainView extends Viewport {
378
378
  }
379
379
 
380
380
  MainView = Neo.setupClass(MainView);
381
- </pre>
381
+ ```
382
382
 
383
383
  ## Class based State Providers
384
384
  When your stateProviders contain many data props or need custom logic, you can easily move them into their own classes.
385
385
 
386
386
  ### Direct Bindings
387
- <pre data-code-livepreview>
387
+ ```javascript live-preview
388
388
  import Button from '../button/Base.mjs';
389
389
  import Container from '../container/Base.mjs';
390
390
  import Label from '../component/Label.mjs';
@@ -436,4 +436,4 @@ class MainView extends Container {
436
436
  }
437
437
  }
438
438
  MainView = Neo.setupClass(MainView);
439
- </pre>
439
+ ```
@@ -1,7 +1,7 @@
1
1
  As you read in the <a href="#/learn/Events">Getting Started > Events</a> topic, components, stores, and many other objects fire events.
2
2
 
3
3
 
4
- <pre data-code-livepreview>
4
+ ```javascript live-preview
5
5
  import Container from '../container/Base.mjs';
6
6
  import TextField from '../form/field/Text.mjs';
7
7
 
@@ -26,7 +26,7 @@ class MainView extends Container {
26
26
  }
27
27
  }
28
28
  MainView = Neo.setupClass(MainView);
29
- </pre>
29
+ ```
30
30
 
31
31
  ## Event listeners
32
32
 
@@ -35,7 +35,7 @@ MainView = Neo.setupClass(MainView);
35
35
  The event listener function can be coded in-line. Normally you want event handlers to be in a view's
36
36
  controller, but for very simple situation it can be convenient to use this syntax.
37
37
 
38
- <pre data-code-livepreview>
38
+ ```javascript live-preview
39
39
  import Container from '../container/Base.mjs';
40
40
  import TextField from '../form/field/Text.mjs';
41
41
 
@@ -54,7 +54,7 @@ class MainView extends Container {
54
54
  }
55
55
  }
56
56
  MainView = Neo.setupClass(MainView);
57
- </pre>
57
+ ```
58
58
 
59
59
  ### As a view method
60
60
 
@@ -62,7 +62,7 @@ You can also use the `up.` qualifier to specify a method in the component's pare
62
62
  in-line syntax you saw above, using the `up.` syntax might be convenient for simple classees,
63
63
  or when you simply haven't gotten around to defining a view's controller.
64
64
 
65
- <pre data-code-livepreview>
65
+ ```javascript live-preview
66
66
  import Container from '../container/Base.mjs';
67
67
  import TextField from '../form/field/Text.mjs';
68
68
 
@@ -84,7 +84,7 @@ class MainView extends Container {
84
84
  }
85
85
  }
86
86
  MainView = Neo.setupClass(MainView);
87
- </pre>
87
+ ```
88
88
 
89
89
  ### As a controller method
90
90
 
@@ -92,7 +92,7 @@ Despite the examples above, the most correct way of setting up event handlers is
92
92
  Any view class can specify a controller &mdash; wWhen the view is created a controller instance is
93
93
  also created.
94
94
 
95
- <pre data-code-livepreview>
95
+ ```javascript live-preview
96
96
  import Controller from '../controller/Component.mjs';
97
97
 
98
98
  class MainViewController extends Controller {
@@ -125,7 +125,7 @@ class MainView extends Container {
125
125
  }
126
126
  }
127
127
  MainView = Neo.setupClass(MainView);
128
- </pre>
128
+ ```
129
129
 
130
130
  ## Adding listeners procedurally
131
131
 
@@ -134,7 +134,7 @@ a listener procedurally.
134
134
 
135
135
  Any observable class has an `addListener` method, along with an easier-to-type version called `on`.
136
136
 
137
- <pre data-code-livepreview>
137
+ ```javascript live-preview
138
138
  import Controller from '../controller/Component.mjs';
139
139
 
140
140
  class MainViewController extends Controller {
@@ -167,11 +167,11 @@ class MainView extends Container {
167
167
  }
168
168
  }
169
169
  MainView = Neo.setupClass(MainView);
170
- </pre>
170
+ ```
171
171
 
172
172
  The method specified in `on()` doesn't have to be an arrow function; you can use a controller function.
173
173
 
174
- <pre data-code-livepreview>
174
+ ```javascript live-preview
175
175
  import Controller from '../controller/Component.mjs';
176
176
 
177
177
  class MainViewController extends Controller {
@@ -208,7 +208,7 @@ class MainView extends Container {
208
208
  }
209
209
  }
210
210
  MainView = Neo.setupClass(MainView);
211
- </pre>
211
+ ```
212
212
 
213
213
  ## Events versus binding
214
214
 
@@ -241,7 +241,7 @@ will automatically be reflected in the view model.
241
241
  To contrast syntax, and to illustrate the simplicity of a binding, let's look at two exmaples of updating a component
242
242
  to reflect the value of a text field. THe first example uses events; the second uses bindings.
243
243
 
244
- <pre data-code-livepreview>
244
+ ```javascript live-preview
245
245
  import Component from '../component/Base.mjs';
246
246
  import Container from '../container/Base.mjs';
247
247
  import TextField from '../form/field/Text.mjs';
@@ -277,9 +277,9 @@ class MainView extends Container {
277
277
  }
278
278
  }
279
279
  MainView = Neo.setupClass(MainView);
280
- </pre>
280
+ ```
281
281
 
282
- <pre data-code-livepreview>
282
+ ```javascript live-preview
283
283
  import Component from '../component/Base.mjs';
284
284
  import Container from '../container/Base.mjs';
285
285
  import TextField from '../form/field/Text.mjs';
@@ -313,7 +313,7 @@ class MainView extends Container {
313
313
  }
314
314
  }
315
315
  MainView = Neo.setupClass(MainView);
316
- </pre>
316
+ ```
317
317
 
318
318
  ##How are events set up?
319
319
 
@@ -34,7 +34,7 @@ the class. If you add `console.log(this);`, the output is most likely not want y
34
34
  For the second Button we are defining a non-bound function, in which case `this` will point
35
35
  to the Component instance.
36
36
 
37
- <pre data-code-livepreview>
37
+ ```javascript live-preview
38
38
  import Container from '../container/Base.mjs';
39
39
 
40
40
  class MainView extends Container {
@@ -62,7 +62,7 @@ class MainView extends Container {
62
62
  }
63
63
  }
64
64
  MainView = Neo.setupClass(MainView);
65
- </pre>
65
+ ```
66
66
 
67
67
  ### Handler inside the Component Tree
68
68
 
@@ -72,7 +72,7 @@ A good example would be `tab.header.Toolbar`, where clicking on a Button will ch
72
72
  You can use string based listeners. In case the handler method lives within the parent tree (any level),
73
73
  we need to prefix these listeners with `up.`.
74
74
 
75
- <pre data-code-livepreview>
75
+ ```javascript live-preview
76
76
  import Container from '../container/Base.mjs';
77
77
 
78
78
  class MainView extends Container {
@@ -95,7 +95,7 @@ class MainView extends Container {
95
95
  }
96
96
  }
97
97
  MainView = Neo.setupClass(MainView);
98
- </pre>
98
+ ```
99
99
 
100
100
  ### Handler inside a ViewController
101
101
 
@@ -107,7 +107,7 @@ to find the closest match.
107
107
 
108
108
  A good use case would be a form submit Button, where a click will trigger a communication to the backend.
109
109
 
110
- <pre data-code-livepreview>
110
+ ```javascript live-preview
111
111
  import Container from '../container/Base.mjs';
112
112
  import Controller from '../controller/Component.mjs';
113
113
 
@@ -138,7 +138,7 @@ class MainView extends Container {
138
138
  }
139
139
  }
140
140
  MainView = Neo.setupClass(MainView);
141
- </pre>
141
+ ```
142
142
 
143
143
  ## Listener Options
144
144
 
@@ -146,7 +146,7 @@ MainView = Neo.setupClass(MainView);
146
146
 
147
147
  We can further delegate listeners to specific DOM nodes within our Component:
148
148
 
149
- <pre data-code-livepreview>
149
+ ```javascript live-preview
150
150
  import Container from '../container/Base.mjs';
151
151
 
152
152
  class MainView extends Container {
@@ -172,7 +172,7 @@ class MainView extends Container {
172
172
  }
173
173
  }
174
174
  MainView = Neo.setupClass(MainView);
175
- </pre>
175
+ ```
176
176
 
177
177
  In case you click on the blue div, no console logs will appear.
178
178
  They do, when clicking on the white inner div.
@@ -184,7 +184,7 @@ we will get logs when clicking on the blue div too.
184
184
 
185
185
  We can prevent listeners from bubbling upwards:
186
186
 
187
- <pre data-code-livepreview>
187
+ ```javascript live-preview
188
188
  import Container from '../container/Base.mjs';
189
189
 
190
190
  class MainView extends Container {
@@ -221,7 +221,7 @@ class MainView extends Container {
221
221
  }
222
222
  }
223
223
  MainView = Neo.setupClass(MainView);
224
- </pre>
224
+ ```
225
225
 
226
226
  Clicking on the inner (white) div will only trigger the inner listener and you will get one log.
227
227
 
@@ -237,7 +237,7 @@ While we could just manually order the array inside the following example,
237
237
  there can be use cases where multiple subscribers get added at run-time and developers
238
238
  can not be sure about the adding order.
239
239
 
240
- <pre data-code-livepreview>
240
+ ```javascript live-preview
241
241
  import Container from '../container/Base.mjs';
242
242
 
243
243
  class MainView extends Container {
@@ -257,7 +257,7 @@ class MainView extends Container {
257
257
  }
258
258
  }
259
259
  MainView = Neo.setupClass(MainView);
260
- </pre>
260
+ ```
261
261
 
262
262
  Try it: In case you remove `priority: 2` inside the source view,
263
263
  the order of the logs will change.
@@ -1,6 +1,7 @@
1
1
  Neo.mjs uses standard modular JavaScript, so you're free to use other class
2
2
  features, like private members.
3
- <pre><code class="javascript">
3
+
4
+ ```javascript readonly
4
5
  class Human extends Mammal {
5
6
  static config = {
6
7
  className: 'Simple.example.Human',
@@ -33,4 +34,4 @@ const myPerson = Neo.create(Human, {
33
34
  });
34
35
 
35
36
  myPerson.speak(true);
36
- </code></pre>
37
+ ```
@@ -2,7 +2,7 @@ Neo.mjs classes are standard JavaScript classes. Every source file
2
2
  you write will be a class definition, extending some Neo.mjs
3
3
  class.
4
4
 
5
- <pre data-code-readonly>
5
+ ```javascript readonly
6
6
  import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
7
7
 
8
8
  class Mammal extends Base {
@@ -15,7 +15,7 @@ const myMammal = Neo.create(Mammal);
15
15
 
16
16
  Neo.setupClass(Mammal); // Where Neo.mjs initializes the class config.
17
17
  export default Mammal; // Makes the class available elsewhere.
18
- </pre>
18
+ ```
19
19
 
20
20
  In the example above, we're extending the Neo.mjs base class. The static
21
21
  config block is unique to Neo.mjs; it provides a way of defining special
@@ -29,7 +29,7 @@ and create instances as needed.
29
29
 
30
30
  Let's add a `name` propery to the class.
31
31
 
32
- <pre data-code-readonly>
32
+ ```javascript readonly
33
33
  import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
34
34
 
35
35
  class Mammal extends Base {
@@ -47,7 +47,7 @@ console.log(myMammal.name); // Logs "Herbert"
47
47
  Neo.setupClass(Mammal);
48
48
 
49
49
  export default Mammal;
50
- </pre>
50
+ ```
51
51
 
52
52
  In Neo.mjs, instance properties are usually added in the `static config` block.
53
53
  The `static config` block does two things:
@@ -61,19 +61,19 @@ anywhere in the class hierarchy.
61
61
  Since our class defines a `name` property, we can specify that when creating
62
62
  the instance, using the second argument to the `create` method.
63
63
 
64
- <pre data-code-readonly>
64
+ ```javascript readonly
65
65
  const myMammal = Neo.create(Mammal, {
66
66
  name: 'Creature'
67
67
  });
68
68
  console.log(myMammal.name); // Logs "Creature"
69
- </pre>
69
+ ```
70
70
 
71
71
 
72
72
  Since _you_ define those properties, you can
73
73
  look for them in class methods and use them as needed.
74
74
  Let's add a `speak()` method that uses the `name` property.
75
75
 
76
- <pre data-code-readonly>
76
+ ```javascript readonly
77
77
  import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
78
78
 
79
79
  class Mammal extends Base {
@@ -96,7 +96,7 @@ myMammal.speak(); // Logs "Creature is grunting."
96
96
  Neo.setupClass(Mammal);
97
97
 
98
98
  export default Mammal;
99
- </pre>
99
+ ```
100
100
 
101
101
 
102
102
 
@@ -1,4 +1,4 @@
1
- <pre data-code-readonly>
1
+ ```javascript readonly
2
2
  import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
3
3
 
4
4
  class Mammal extends Base {
@@ -11,11 +11,11 @@ const myMammal = Neo.create(Mammal);
11
11
 
12
12
  Mammal = Neo.setupClass(Mammal); // Where Neo.mjs initializes the class config.
13
13
  export default Mammal; // Makes the class available elsewhere.
14
- </pre>
14
+ ```
15
15
 
16
16
 
17
17
 
18
- <pre data-code-livepreview>
18
+ ```javascript live-preview
19
19
  import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
20
20
 
21
21
  class Mammal extends Base {
@@ -28,4 +28,4 @@ const myMammal = Neo.create(Mammal);
28
28
 
29
29
  Mammal = Neo.setupClass(Mammal); // Where Neo.mjs initializes the class config.
30
30
  export default Mammal; // Makes the class available elsewhere.
31
- </pre>
31
+ ```
@@ -3,7 +3,7 @@ In Neo.mjs you sub-class and override methods in the usual way.
3
3
  Here, we'll extend `Mammal` and override the `speak()` method.
4
4
  (For brevity, we'll exclude `export` and `import` statements.)
5
5
 
6
- <pre data-code-readonly>
6
+ ```javascript readonly
7
7
  class Mammal extends Base {
8
8
  static config = {
9
9
  className: 'Simple.example.Mammal',
@@ -15,9 +15,9 @@ class Mammal extends Base {
15
15
  }
16
16
  }
17
17
  Neo.setupClass(Mammal);
18
- </pre>
18
+ ```
19
19
 
20
- <pre data-code-readonly>
20
+ ```javascript readonly
21
21
  class Human extends Mammal {
22
22
  static config = {
23
23
  className: 'Simple.example.Human',
@@ -33,12 +33,12 @@ const myMammal = Neo.create(Human, {
33
33
  myMammal.speak(); // Logs "Hello! My name is Herbert. I am not married."
34
34
 
35
35
  Neo.setupClass(Mammal);
36
- </pre>
36
+ ```
37
37
 
38
38
  Any class in the hierarchy is free to add new properties and methods. Let's add
39
39
  a property and behavior (method) to the Human class.
40
40
 
41
- <pre data-code-readonly>
41
+ ```javascript readonly
42
42
  import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
43
43
 
44
44
  class Mammal extends Base {
@@ -51,9 +51,9 @@ class Mammal extends Base {
51
51
  console.log(`(${this.name} is grunting)`);
52
52
  }
53
53
  }
54
- </pre>
54
+ ```
55
55
 
56
- <pre data-code-readonly>
56
+ ```javascript readonly
57
57
  class Human extends Mammal {
58
58
  static config = {
59
59
  className: 'Simple.example.Human',
@@ -74,4 +74,4 @@ myPerson.speak(); // Logs "Hello! My name is Herbert. I am not married."
74
74
  myPerson.yodel(); // Logs "Yodelay hee hoo!"
75
75
 
76
76
  Neo.setupClass(Human);
77
- </pre>
77
+ ```
@@ -1,6 +1,6 @@
1
1
  To call a super-class method use the `super` keyword.
2
2
 
3
- <pre class="neo" style="color:gray">
3
+ ```javascript readonly
4
4
  class Mammal extends Base {
5
5
  static config = {
6
6
  className: 'Simple.example.Mammal',
@@ -12,8 +12,9 @@ class Mammal extends Base {
12
12
  }
13
13
  }
14
14
  Neo.setupClass(Mammal);
15
- </pre>
16
- <pre class="neo" style="color:gray">
15
+ ```
16
+
17
+ ```javascript readonly
17
18
  class Human extends Mammal {
18
19
  static config = {
19
20
  className: 'Simple.example.Human',
@@ -30,12 +31,12 @@ const myPerson = Neo.create(Human, {
30
31
  myPerson.doSomething();
31
32
 
32
33
  Neo.setupClass(Mammal);
33
- </pre>
34
+ ```
34
35
 
35
36
  Sometimes you aren't sure if a super class has a method. In that case use the
36
37
  conditional chaining operator &mdash; `?.`
37
38
 
38
- <pre class="neo" style="color:gray">
39
+ ```javascript readonly
39
40
  class Mammal extends Base {
40
41
  static config = {
41
42
  className: 'Simple.example.Mammal',
@@ -47,8 +48,9 @@ class Mammal extends Base {
47
48
  }
48
49
  }
49
50
  Neo.setupClass(Mammal);
50
- </pre>
51
- <pre class="neo" style="color:gray">
51
+ ```
52
+
53
+ ```javascript readonly
52
54
  class Human extends Mammal {
53
55
  static config = {
54
56
  className: 'Simple.example.Human',
@@ -65,4 +67,4 @@ const myPerson = Neo.create(Human, {
65
67
  myPerson.doSomething();
66
68
 
67
69
  Neo.setupClass(Mammal);
68
- </pre>
70
+ ```