malinajs 0.6.43

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/CHANGELOG.md ADDED
@@ -0,0 +1,58 @@
1
+
2
+ ## 0.6.x
3
+
4
+ * style's attribute "global"
5
+ * compound classes (handle mix of class and class directives)
6
+ * new passing class
7
+ * mark a class as external "$className"
8
+ * Deprecated: passing class from 0.5
9
+ * plugins
10
+ * esbuild-plugin (by AlexxNB)
11
+ * $context
12
+ * onError
13
+ * $onMount
14
+ * $onDestroy
15
+ * alias for import: malinajs -> malinajs/runtime.js
16
+ * alias @click -> @click={click}, @@click is forwarding
17
+ * local config "malina.config.js"
18
+ * plugin sass/scss
19
+ * key "auto" for each-block
20
+ * anchors for components
21
+ * style templates, e.g. style:color={color}, style:border-color="red", style:border="1px solid {color}"
22
+ * compile option "css"
23
+ * event modifier: stop, prevent
24
+ * script option "read-only"
25
+ * constant props - "export const prop;"
26
+ * compile option: debugLabel
27
+ * slot for fragment
28
+ * exported fragments (inverted slots)
29
+ * <malina:head>, <malina:body>, <malina:window>
30
+ * option: passClass
31
+ * option: immutable
32
+ * event modifiers: prevent, stop, ctrl, alt, shift, meta. key-events: enter, tab, esc, space, up, down, left, right, delete
33
+ * inline actions for text-node and elements
34
+ * portals: <malina:portal>
35
+ * autoimport
36
+
37
+ ## 0.5.x
38
+
39
+ * input with type "range"/"number" - value as number
40
+ * improve reactive expression
41
+ * unwrap object in each
42
+ * dynamic component
43
+ * named slot
44
+ * fix for dynamic import
45
+ * option.onerror
46
+ * autosubscribe for imported objects
47
+ * compile time optinoption !no-check
48
+ * fragments
49
+ * event modifier: stopPropagation
50
+ * $props, $attributes, $restProps
51
+ * await-then-catch
52
+ * :global classes
53
+ * spreading props and objects {...obj}
54
+ * forwarding events, forward all @@
55
+ * onMount, onDestroy, $onDestroy
56
+ * shortcuts for bindings and actions
57
+ * scoped-css
58
+ * conrol directives: each, if
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2020, Oleg Nechaev <lega911@gmail.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.