sentikit-webcomponents 0.0.30-beta
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +21 -0
- package/README.md +27 -0
- package/dist/esm/index-49fd1bc4.js +1276 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/preview-sk-breadcrumbs_22.entry.js +18030 -0
- package/loader/index.js +4 -0
- package/package.json +22 -0
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License Copyright (c) 2021
|
2
|
+
|
3
|
+
Permission is hereby granted, free
|
4
|
+
of charge, to any person obtaining a copy of this software and associated
|
5
|
+
documentation files (the "Software"), to deal in the Software without
|
6
|
+
restriction, including without limitation the rights to use, copy, modify, merge,
|
7
|
+
publish, distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to the
|
9
|
+
following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice
|
12
|
+
(including the next paragraph) shall be included in all copies or substantial
|
13
|
+
portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
16
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
18
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
19
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
20
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
package/README.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# sentikit-webcomponents
|
2
|
+
|
3
|
+
Sentikit webcomponents
|
4
|
+
|
5
|
+
## Features
|
6
|
+
|
7
|
+
- WebComponents
|
8
|
+
- Unit testing via Jest
|
9
|
+
- ESM
|
10
|
+
|
11
|
+
## Install
|
12
|
+
|
13
|
+
```sh
|
14
|
+
npm i sentikit-webcomponents
|
15
|
+
// or
|
16
|
+
yarn add sentikit-webcomponents
|
17
|
+
```
|
18
|
+
|
19
|
+
### Usage
|
20
|
+
|
21
|
+
```js
|
22
|
+
import { PreviewSkBreadcrumbs } from 'sentikit-webcomponents';
|
23
|
+
|
24
|
+
const previewSk = new PreviewSkBreadcrumbs();
|
25
|
+
|
26
|
+
document.body.appendChild(previewSk);
|
27
|
+
```
|