keyframekit 1.0.9 → 1.1.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 (38) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +129 -129
  3. package/dist/KeyframeKit.d.ts +138 -138
  4. package/dist/KeyframeKit.js +293 -293
  5. package/dist/KeyframeKit.js.map +1 -1
  6. package/docs/.vitepress/components/Playground/Playground.js +242 -242
  7. package/docs/.vitepress/components/Playground/Playground.vue +206 -206
  8. package/docs/.vitepress/components/Playground/defaultExample.js +175 -175
  9. package/docs/.vitepress/components/Playground/interFont.js +14 -14
  10. package/docs/.vitepress/components/Playground/themes/githubDark.js +401 -401
  11. package/docs/.vitepress/components/Playground/themes/githubLight.js +398 -398
  12. package/docs/.vitepress/components/Playground/themes.js +24 -24
  13. package/docs/.vitepress/config.ts +84 -84
  14. package/docs/.vitepress/referenceNavigation.ts +37 -37
  15. package/docs/.vitepress/theme/base-styles.css +100 -100
  16. package/docs/.vitepress/theme/env.d.ts +5 -5
  17. package/docs/.vitepress/theme/index.ts +39 -39
  18. package/docs/docs/index.md +142 -142
  19. package/docs/docs/public/playground/KeyframeKit/dist/KeyframeKit.d.ts +138 -138
  20. package/docs/docs/public/playground/KeyframeKit/dist/KeyframeKit.js +293 -293
  21. package/docs/docs/public/playground/KeyframeKit/dist/KeyframeKit.js.map +1 -1
  22. package/docs/docs/reference/_media/LICENSE +21 -21
  23. package/docs/docs/reference/classes/KeyframeEffectParameters.md +95 -95
  24. package/docs/docs/reference/classes/ParsedKeyframes.md +49 -49
  25. package/docs/docs/reference/index.md +20 -20
  26. package/docs/docs/reference/interfaces/KeyframesFactory.md +151 -151
  27. package/docs/docs/reference/navigation.json +63 -63
  28. package/docs/docs/reference/type-aliases/KeyframeArgument.md +9 -9
  29. package/docs/docs/reference/type-aliases/KeyframesFactorySource.md +9 -9
  30. package/docs/docs/reference/type-aliases/ParsedKeyframesRules.md +15 -15
  31. package/docs/docs/reference/variables/default.md +7 -7
  32. package/docs/package.json +25 -25
  33. package/docs/typedoc/plugin-param-names.js +51 -51
  34. package/docs/typedoc.json +62 -62
  35. package/package.json +37 -37
  36. package/src/KeyframeKit.ts +508 -508
  37. package/tsconfig.json +47 -47
  38. package/vercel.json +12 -12
package/tsconfig.json CHANGED
@@ -1,47 +1,47 @@
1
- {
2
- // Visit https://aka.ms/tsconfig to read more about this file
3
- "include": [
4
- "src/**/*"
5
- ],
6
- "exclude": [],
7
- "compilerOptions": {
8
- // File Layout
9
- "rootDir": "src",
10
- "outDir": "dist",
11
-
12
- // Environment Settings
13
- // See also https://aka.ms/tsconfig/module
14
- "module": "esnext",
15
- "target": "esnext",
16
- "types": [],
17
- // For nodejs:
18
- // "lib": ["esnext"],
19
- // "types": ["node"],
20
- // and npm install -D @types/node
21
-
22
- // Other Outputs
23
- "sourceMap": true,
24
- "declaration": true,
25
- "declarationMap": true,
26
-
27
- // Stricter Typechecking Options
28
- "noUncheckedIndexedAccess": true,
29
- "exactOptionalPropertyTypes": true,
30
-
31
- // Style Options
32
- // "noImplicitReturns": true,
33
- // "noImplicitOverride": true,
34
- // "noUnusedLocals": true,
35
- // "noUnusedParameters": true,
36
- // "noFallthroughCasesInSwitch": true,
37
- // "noPropertyAccessFromIndexSignature": true,
38
-
39
- // Recommended Options
40
- "strict": true,
41
- "verbatimModuleSyntax": true,
42
- "isolatedModules": true,
43
- "noUncheckedSideEffectImports": true,
44
- "moduleDetection": "force",
45
- "skipLibCheck": true,
46
- }
47
- }
1
+ {
2
+ // Visit https://aka.ms/tsconfig to read more about this file
3
+ "include": [
4
+ "src/**/*"
5
+ ],
6
+ "exclude": [],
7
+ "compilerOptions": {
8
+ // File Layout
9
+ "rootDir": "src",
10
+ "outDir": "dist",
11
+
12
+ // Environment Settings
13
+ // See also https://aka.ms/tsconfig/module
14
+ "module": "esnext",
15
+ "target": "esnext",
16
+ "types": [],
17
+ // For nodejs:
18
+ // "lib": ["esnext"],
19
+ // "types": ["node"],
20
+ // and npm install -D @types/node
21
+
22
+ // Other Outputs
23
+ "sourceMap": true,
24
+ "declaration": true,
25
+ "declarationMap": true,
26
+
27
+ // Stricter Typechecking Options
28
+ "noUncheckedIndexedAccess": true,
29
+ "exactOptionalPropertyTypes": true,
30
+
31
+ // Style Options
32
+ // "noImplicitReturns": true,
33
+ // "noImplicitOverride": true,
34
+ // "noUnusedLocals": true,
35
+ // "noUnusedParameters": true,
36
+ // "noFallthroughCasesInSwitch": true,
37
+ // "noPropertyAccessFromIndexSignature": true,
38
+
39
+ // Recommended Options
40
+ "strict": true,
41
+ "verbatimModuleSyntax": true,
42
+ "isolatedModules": true,
43
+ "noUncheckedSideEffectImports": true,
44
+ "moduleDetection": "force",
45
+ "skipLibCheck": true,
46
+ }
47
+ }
package/vercel.json CHANGED
@@ -1,13 +1,13 @@
1
- {
2
- "headers": [
3
- {
4
- "source": "/assets/(.*)",
5
- "headers": [
6
- {
7
- "key": "Cache-Control",
8
- "value": "max-age=31536000, immutable"
9
- }
10
- ]
11
- }
12
- ]
1
+ {
2
+ "headers": [
3
+ {
4
+ "source": "/assets/(.*)",
5
+ "headers": [
6
+ {
7
+ "key": "Cache-Control",
8
+ "value": "max-age=31536000, immutable"
9
+ }
10
+ ]
11
+ }
12
+ ]
13
13
  }