@digipair/skill-web-ionic 0.37.0

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/index.cjs.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from "./src/index";
package/index.cjs.js ADDED
@@ -0,0 +1,16 @@
1
+ 'use strict';
2
+
3
+ const coreStyles = document.createElement('link');
4
+ coreStyles.rel = 'stylesheet';
5
+ coreStyles.type = 'text/css';
6
+ coreStyles.href = 'https://cdn.jsdelivr.net/npm/@ionic/core@8/css/core.css';
7
+ document.head.appendChild(coreStyles);
8
+ const ionicBundleStyles = document.createElement('link');
9
+ ionicBundleStyles.rel = 'stylesheet';
10
+ ionicBundleStyles.type = 'text/css';
11
+ ionicBundleStyles.href = 'https://cdn.jsdelivr.net/npm/@ionic/core@8/css/ionic.bundle.css';
12
+ document.head.appendChild(ionicBundleStyles);
13
+ const ionicScript = document.createElement('script');
14
+ ionicScript.type = 'module';
15
+ ionicScript.src = 'https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js';
16
+ document.head.appendChild(ionicScript);
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './libs/skill-web-ionic/src/index';
package/index.esm.js ADDED
@@ -0,0 +1,14 @@
1
+ const coreStyles = document.createElement('link');
2
+ coreStyles.rel = 'stylesheet';
3
+ coreStyles.type = 'text/css';
4
+ coreStyles.href = 'https://cdn.jsdelivr.net/npm/@ionic/core@8/css/core.css';
5
+ document.head.appendChild(coreStyles);
6
+ const ionicBundleStyles = document.createElement('link');
7
+ ionicBundleStyles.rel = 'stylesheet';
8
+ ionicBundleStyles.type = 'text/css';
9
+ ionicBundleStyles.href = 'https://cdn.jsdelivr.net/npm/@ionic/core@8/css/ionic.bundle.css';
10
+ document.head.appendChild(ionicBundleStyles);
11
+ const ionicScript = document.createElement('script');
12
+ ionicScript.type = 'module';
13
+ ionicScript.src = 'https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js';
14
+ document.head.appendChild(ionicScript);
@@ -0,0 +1 @@
1
+ import './lib/skill-web-ionic';
@@ -0,0 +1,3 @@
1
+ declare const coreStyles: HTMLLinkElement;
2
+ declare const ionicBundleStyles: HTMLLinkElement;
3
+ declare const ionicScript: HTMLScriptElement;
package/package.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "@digipair/skill-web-ionic",
3
+ "version": "0.37.0",
4
+ "dependencies": {},
5
+ "main": "./index.cjs.js",
6
+ "module": "./index.esm.js"
7
+ }