@egjs/flicking-plugins 4.8.0-beta.0 → 4.8.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.
Files changed (54) hide show
  1. package/README.md +42 -51
  2. package/css/all.css +2 -0
  3. package/css/arrow.css +2 -2
  4. package/css/pagination.css +5 -3
  5. package/declaration/Arrow.d.ts +106 -51
  6. package/declaration/AutoPlay.d.ts +104 -40
  7. package/declaration/Fade.d.ts +41 -16
  8. package/declaration/Parallax.d.ts +41 -16
  9. package/declaration/Perspective.d.ts +71 -28
  10. package/declaration/Sync.d.ts +93 -37
  11. package/declaration/const.d.ts +31 -31
  12. package/declaration/event.d.ts +5 -5
  13. package/declaration/index.d.ts +13 -10
  14. package/declaration/pagination/Pagination.d.ts +141 -61
  15. package/declaration/pagination/index.d.ts +3 -3
  16. package/declaration/pagination/renderer/BulletRenderer.d.ts +11 -11
  17. package/declaration/pagination/renderer/FractionRenderer.d.ts +9 -9
  18. package/declaration/pagination/renderer/Renderer.d.ts +19 -19
  19. package/declaration/pagination/renderer/ScrollBulletRenderer.d.ts +12 -12
  20. package/declaration/tsdoc-metadata.json +11 -0
  21. package/declaration/type.d.ts +9 -9
  22. package/declaration/utils.d.ts +3 -3
  23. package/dist/arrow.css +2 -2
  24. package/dist/flicking-plugins.css +23 -8
  25. package/dist/flicking-plugins.min.css +1 -1
  26. package/dist/pagination.css +21 -6
  27. package/dist/pagination.min.css +1 -1
  28. package/dist/plugins.esm.js +1029 -1575
  29. package/dist/plugins.esm.js.map +1 -1
  30. package/dist/plugins.js +1046 -1604
  31. package/dist/plugins.js.map +1 -1
  32. package/dist/plugins.min.js +1 -9
  33. package/dist/plugins.min.js.map +1 -1
  34. package/package.json +49 -105
  35. package/src/Arrow.ts +133 -82
  36. package/src/AutoPlay.ts +110 -31
  37. package/src/Fade.ts +31 -11
  38. package/src/Parallax.ts +31 -11
  39. package/src/Perspective.ts +69 -22
  40. package/src/Sync.ts +69 -25
  41. package/src/index.ts +9 -22
  42. package/src/pagination/Pagination.ts +163 -40
  43. package/src/pagination/index.ts +2 -6
  44. package/src/pagination/renderer/BulletRenderer.ts +1 -4
  45. package/src/pagination/renderer/FractionRenderer.ts +1 -3
  46. package/src/pagination/renderer/Renderer.ts +14 -13
  47. package/src/pagination/renderer/ScrollBulletRenderer.ts +5 -12
  48. package/CONTRIBUTING +0 -58
  49. package/rollup.config.dev.js +0 -17
  50. package/rollup.config.js +0 -33
  51. package/tsconfig.declaration.json +0 -10
  52. package/tsconfig.eslint.json +0 -8
  53. package/tsconfig.json +0 -17
  54. package/tsconfig.test.json +0 -21
@@ -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
-
@@ -1,10 +0,0 @@
1
- {
2
- "extends": "./tsconfig",
3
- "compilerOptions": {
4
- "removeComments": true,
5
- "declaration": true,
6
- "emitDeclarationOnly": true,
7
- "declarationDir": "declaration",
8
- "strictNullChecks": false,
9
- }
10
- }
@@ -1,8 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "include": [
4
- "./**/*.ts",
5
- "./**/*.js",
6
- "./**/.*.js"
7
- ]
8
- }
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
- }
@@ -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
- }