@starley/ion-directives 1.1.20 → 1.1.22
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/{dist → lib}/directive.module.d.ts +0 -0
- package/{dist → lib}/directive.module.js +0 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +20 -0
- package/{dist → lib}/input-mask/input-mask.directive.d.ts +0 -0
- package/{dist → lib}/input-mask/input-mask.directive.js +0 -0
- package/{dist → lib}/press-hold/press-hold.directive.d.ts +0 -0
- package/{dist → lib}/press-hold/press-hold.directive.js +0 -0
- package/{dist → lib}/tap/tap.directive.d.ts +0 -0
- package/{dist → lib}/tap/tap.directive.js +0 -0
- package/package.json +4 -4
- package/src/index.ts +4 -0
- package/tsconfig.json +5 -9
- package/gitignore +0 -3
- package/index.ts +0 -4
|
File without changes
|
|
File without changes
|
package/lib/index.d.ts
ADDED
package/lib/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./input-mask/input-mask.directive"), exports);
|
|
18
|
+
__exportStar(require("./press-hold/press-hold.directive"), exports);
|
|
19
|
+
__exportStar(require("./tap/tap.directive"), exports);
|
|
20
|
+
__exportStar(require("./directive.module"), exports);
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@starley/ion-directives",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.22",
|
|
4
4
|
"description": "Directivas internas para ionic",
|
|
5
|
-
"main": "
|
|
6
|
-
"types": "
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"build": "tsc
|
|
8
|
+
"build": "tsc",
|
|
9
9
|
"dev": "nodemon --watch \"src//\" --exec \"ts-node src/index.ts\" -e ts"
|
|
10
10
|
},
|
|
11
11
|
"peerDependencies": {
|
package/src/index.ts
ADDED
package/tsconfig.json
CHANGED
|
@@ -2,15 +2,11 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"target": "es5",
|
|
4
4
|
"module": "commonjs",
|
|
5
|
-
"outDir": "./dist",
|
|
6
|
-
"strict": true,
|
|
7
|
-
"noUnusedLocals": true,
|
|
8
|
-
"noUnusedParameters": true,
|
|
9
|
-
"noImplicitReturns": true,
|
|
10
5
|
"experimentalDecorators": true,
|
|
11
|
-
"
|
|
12
|
-
"
|
|
6
|
+
"declaration": true,
|
|
7
|
+
"outDir": "./lib",
|
|
8
|
+
"strict": true
|
|
13
9
|
},
|
|
14
|
-
"include": ["src
|
|
15
|
-
"exclude": ["node_modules", "
|
|
10
|
+
"include": ["src"],
|
|
11
|
+
"exclude": ["node_modules", "**/__tests__/*"]
|
|
16
12
|
}
|
package/gitignore
DELETED
package/index.ts
DELETED