@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.
Files changed (3) hide show
  1. package/README.md +21 -21
  2. package/package.json +3 -4
  3. package/src/index.ts +0 -3
package/README.md CHANGED
@@ -1,21 +1,21 @@
1
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2
- [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
3
- [![ws--conventional--version--roller](https://img.shields.io/badge/rolled%20with-ws--conventional--version--roller-blueviolet)](https://github.com/ghiscoding/ws-conventional-version-roller)
4
- [![npm](https://img.shields.io/npm/v/@slickgrid-universal/binding.svg?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/binding)
5
- [![npm](https://img.shields.io/npm/dy/@slickgrid-universal/binding?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/binding)
6
-
7
- [![Actions Status](https://github.com/ghiscoding/slickgrid-universal/workflows/CI%20Build/badge.svg)](https://github.com/ghiscoding/slickgrid-universal/actions)
8
- [![Cypress.io](https://img.shields.io/badge/tested%20with-Cypress-04C38E.svg)](https://www.cypress.io/)
9
- [![jest](https://jestjs.io/img/jest-badge.svg)](https://github.com/facebook/jest)
10
- [![codecov](https://codecov.io/gh/ghiscoding/slickgrid-universal/branch/master/graph/badge.svg)](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
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2
+ [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
3
+ [![lerna--lite](https://img.shields.io/badge/maintained%20with-lerna--lite-blueviolet)](https://github.com/ghiscoding/lerna-lite)
4
+ [![npm](https://img.shields.io/npm/v/@slickgrid-universal/binding.svg?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/binding)
5
+ [![npm](https://img.shields.io/npm/dy/@slickgrid-universal/binding?color=forest)](https://www.npmjs.com/package/@slickgrid-universal/binding)
6
+
7
+ [![Actions Status](https://github.com/ghiscoding/slickgrid-universal/workflows/CI%20Build/badge.svg)](https://github.com/ghiscoding/slickgrid-universal/actions)
8
+ [![Cypress.io](https://img.shields.io/badge/tested%20with-Cypress-04C38E.svg)](https://www.cypress.io/)
9
+ [![jest](https://jestjs.io/img/jest-badge.svg)](https://github.com/facebook/jest)
10
+ [![codecov](https://codecov.io/gh/ghiscoding/slickgrid-universal/branch/master/graph/badge.svg)](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.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": "4ff8a387237d3f097481da8be78033629fda7357"
59
- }
57
+ "gitHead": "8f9a87cfe68f6e1d6e196114cdf798065b823d01"
58
+ }
package/src/index.ts DELETED
@@ -1,3 +0,0 @@
1
- export * from './binding.helper';
2
- export * from './binding.service';
3
- export * from './interfaces';