@egjs/flicking-plugins 4.8.0-beta.1 → 4.8.1-beta.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/README.md +42 -51
- package/css/all.css +2 -0
- package/css/arrow.css +2 -2
- package/css/pagination.css +5 -3
- package/declaration/Arrow.d.ts +106 -51
- package/declaration/AutoPlay.d.ts +104 -44
- package/declaration/Fade.d.ts +41 -16
- package/declaration/Parallax.d.ts +41 -16
- package/declaration/Perspective.d.ts +71 -28
- package/declaration/Sync.d.ts +93 -37
- package/declaration/const.d.ts +31 -31
- package/declaration/event.d.ts +5 -5
- package/declaration/index.d.ts +13 -10
- package/declaration/pagination/Pagination.d.ts +141 -61
- package/declaration/pagination/index.d.ts +3 -3
- package/declaration/pagination/renderer/BulletRenderer.d.ts +11 -11
- package/declaration/pagination/renderer/FractionRenderer.d.ts +9 -9
- package/declaration/pagination/renderer/Renderer.d.ts +19 -19
- package/declaration/pagination/renderer/ScrollBulletRenderer.d.ts +12 -12
- package/declaration/tsdoc-metadata.json +11 -0
- package/declaration/type.d.ts +9 -9
- package/declaration/utils.d.ts +3 -3
- package/dist/arrow.css +2 -2
- package/dist/flicking-plugins.css +23 -8
- package/dist/flicking-plugins.min.css +1 -1
- package/dist/pagination.css +21 -6
- package/dist/pagination.min.css +1 -1
- package/dist/plugins.esm.js +1030 -1591
- package/dist/plugins.esm.js.map +1 -1
- package/dist/plugins.js +1047 -1620
- package/dist/plugins.js.map +1 -1
- package/dist/plugins.min.js +1 -9
- package/dist/plugins.min.js.map +1 -1
- package/package.json +49 -105
- package/src/Arrow.ts +133 -82
- package/src/AutoPlay.ts +105 -35
- package/src/Fade.ts +31 -11
- package/src/Parallax.ts +31 -11
- package/src/Perspective.ts +69 -22
- package/src/Sync.ts +69 -25
- package/src/index.ts +9 -22
- package/src/pagination/Pagination.ts +163 -40
- package/src/pagination/index.ts +2 -6
- package/src/pagination/renderer/BulletRenderer.ts +1 -4
- package/src/pagination/renderer/FractionRenderer.ts +1 -3
- package/src/pagination/renderer/Renderer.ts +14 -13
- package/src/pagination/renderer/ScrollBulletRenderer.ts +5 -12
- package/CONTRIBUTING +0 -58
- package/rollup.config.dev.js +0 -17
- package/rollup.config.js +0 -33
- package/tsconfig.declaration.json +0 -10
- package/tsconfig.eslint.json +0 -8
- package/tsconfig.json +0 -17
- package/tsconfig.test.json +0 -21
package/rollup.config.dev.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
const buildHelper = require("@egjs/build-helper");
|
|
2
|
-
const external = {
|
|
3
|
-
"@egjs/flicking": "Flicking"
|
|
4
|
-
}
|
|
5
|
-
const name = "Flicking.Plugins";
|
|
6
|
-
|
|
7
|
-
export default buildHelper([
|
|
8
|
-
{
|
|
9
|
-
name,
|
|
10
|
-
input: "./src/index.ts",
|
|
11
|
-
output: "./dist/plugins.js",
|
|
12
|
-
format: "umd",
|
|
13
|
-
external,
|
|
14
|
-
exports: "named"
|
|
15
|
-
}
|
|
16
|
-
]);
|
|
17
|
-
|
package/rollup.config.js
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
const buildHelper = require("@egjs/build-helper");
|
|
2
|
-
const external = {
|
|
3
|
-
"@egjs/flicking": "Flicking"
|
|
4
|
-
}
|
|
5
|
-
const name = "Flicking.Plugins";
|
|
6
|
-
|
|
7
|
-
export default buildHelper([
|
|
8
|
-
{
|
|
9
|
-
name,
|
|
10
|
-
input: "./src/index.ts",
|
|
11
|
-
output: "./dist/plugins.js",
|
|
12
|
-
format: "umd",
|
|
13
|
-
external,
|
|
14
|
-
exports: "named"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
name,
|
|
18
|
-
input: "./src/index.ts",
|
|
19
|
-
output: "./dist/plugins.min.js",
|
|
20
|
-
format: "umd",
|
|
21
|
-
uglify: true,
|
|
22
|
-
external,
|
|
23
|
-
exports: "named"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
input: "./src/index.ts",
|
|
27
|
-
output: "./dist/plugins.esm.js",
|
|
28
|
-
format: "esm",
|
|
29
|
-
external,
|
|
30
|
-
exports: "named"
|
|
31
|
-
}
|
|
32
|
-
]);
|
|
33
|
-
|
package/tsconfig.eslint.json
DELETED
package/tsconfig.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"outDir": "./outjs/",
|
|
4
|
-
"sourceMap": true,
|
|
5
|
-
"module": "es2015",
|
|
6
|
-
"target": "es5",
|
|
7
|
-
"strictNullChecks": true,
|
|
8
|
-
"moduleResolution": "node",
|
|
9
|
-
"lib": [
|
|
10
|
-
"es2015",
|
|
11
|
-
"dom"
|
|
12
|
-
],
|
|
13
|
-
},
|
|
14
|
-
"include": [
|
|
15
|
-
"./src/**/*.ts"
|
|
16
|
-
]
|
|
17
|
-
}
|
package/tsconfig.test.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "./tsconfig",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"module": "commonjs",
|
|
5
|
-
"noImplicitAny": false,
|
|
6
|
-
"strictNullChecks": false,
|
|
7
|
-
"noUnusedLocals": false,
|
|
8
|
-
"experimentalDecorators": true,
|
|
9
|
-
"types": [
|
|
10
|
-
"karma-chai",
|
|
11
|
-
"mocha",
|
|
12
|
-
]
|
|
13
|
-
},
|
|
14
|
-
"include": [
|
|
15
|
-
"./src/**/*.ts",
|
|
16
|
-
"./test/**/*.ts"
|
|
17
|
-
],
|
|
18
|
-
"exclude": [
|
|
19
|
-
"./node_modules/**/*.ts"
|
|
20
|
-
]
|
|
21
|
-
}
|