@slickgrid-universal/binding 1.2.2 → 1.2.3
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/README.md +21 -21
- package/package.json +3 -4
- package/src/index.ts +0 -3
package/README.md
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
[](https://opensource.org/licenses/MIT)
|
|
2
|
-
[](http://www.typescriptlang.org/)
|
|
3
|
-
[](https://www.npmjs.com/package/@slickgrid-universal/binding)
|
|
5
|
-
[](https://www.npmjs.com/package/@slickgrid-universal/binding)
|
|
6
|
-
|
|
7
|
-
[](https://github.com/ghiscoding/slickgrid-universal/actions)
|
|
8
|
-
[](https://www.cypress.io/)
|
|
9
|
-
[](https://github.com/facebook/jest)
|
|
10
|
-
[](https://codecov.io/gh/ghiscoding/slickgrid-universal)
|
|
11
|
-
|
|
12
|
-
## Binding Engine & Helper
|
|
13
|
-
#### @slickgrid-universal/binding
|
|
14
|
-
|
|
15
|
-
A very Simple Vanilla Implementation of a Binding Engine & Helper to add properties/events 2 way bindings. This binding engine is a very simple implementation and is used by simple components like the Custom Footer & Pagination. Again this is a very simple implementation and should not be used with large components but is good enough for small use cases like a footer, pagination and other small ones.
|
|
16
|
-
|
|
17
|
-
### External Dependencies
|
|
18
|
-
- [DOM Purify](https://github.com/cure53/DOMPurify) to sanitize HTML text
|
|
19
|
-
|
|
20
|
-
### Installation
|
|
21
|
-
Follow the instruction provided in the main [README](https://github.com/ghiscoding/slickgrid-universal#installation)
|
|
1
|
+
[](https://opensource.org/licenses/MIT)
|
|
2
|
+
[](http://www.typescriptlang.org/)
|
|
3
|
+
[](https://github.com/ghiscoding/lerna-lite)
|
|
4
|
+
[](https://www.npmjs.com/package/@slickgrid-universal/binding)
|
|
5
|
+
[](https://www.npmjs.com/package/@slickgrid-universal/binding)
|
|
6
|
+
|
|
7
|
+
[](https://github.com/ghiscoding/slickgrid-universal/actions)
|
|
8
|
+
[](https://www.cypress.io/)
|
|
9
|
+
[](https://github.com/facebook/jest)
|
|
10
|
+
[](https://codecov.io/gh/ghiscoding/slickgrid-universal)
|
|
11
|
+
|
|
12
|
+
## Binding Engine & Helper
|
|
13
|
+
#### @slickgrid-universal/binding
|
|
14
|
+
|
|
15
|
+
A very Simple Vanilla Implementation of a Binding Engine & Helper to add properties/events 2 way bindings. This binding engine is a very simple implementation and is used by simple components like the Custom Footer & Pagination. Again this is a very simple implementation and should not be used with large components but is good enough for small use cases like a footer, pagination and other small ones.
|
|
16
|
+
|
|
17
|
+
### External Dependencies
|
|
18
|
+
- [DOM Purify](https://github.com/cure53/DOMPurify) to sanitize HTML text
|
|
19
|
+
|
|
20
|
+
### Installation
|
|
21
|
+
Follow the instruction provided in the main [README](https://github.com/ghiscoding/slickgrid-universal#installation)
|
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slickgrid-universal/binding",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Simple Vanilla Implementation of a Binding Engine & Helper to add properties/events 2 way bindings",
|
|
5
5
|
"main": "dist/commonjs/index.js",
|
|
6
|
-
"browser": "src/index.ts",
|
|
7
6
|
"module": "dist/esm/index.js",
|
|
8
7
|
"types": "dist/commonjs/index.d.ts",
|
|
9
8
|
"typings": "dist/commonjs/index.d.ts",
|
|
@@ -55,5 +54,5 @@
|
|
|
55
54
|
"npm-run-all": "^4.1.5",
|
|
56
55
|
"rimraf": "^3.0.2"
|
|
57
56
|
},
|
|
58
|
-
"gitHead": "
|
|
59
|
-
}
|
|
57
|
+
"gitHead": "8f9a87cfe68f6e1d6e196114cdf798065b823d01"
|
|
58
|
+
}
|
package/src/index.ts
DELETED