keyframekit 1.0.7 → 1.0.9

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 (36) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +129 -126
  3. package/dist/KeyframeKit.d.ts +138 -138
  4. package/dist/KeyframeKit.js +293 -293
  5. package/docs/.vitepress/components/Playground/Playground.js +242 -242
  6. package/docs/.vitepress/components/Playground/Playground.vue +206 -206
  7. package/docs/.vitepress/components/Playground/defaultExample.js +175 -175
  8. package/docs/.vitepress/components/Playground/interFont.js +14 -14
  9. package/docs/.vitepress/components/Playground/themes/githubDark.js +401 -401
  10. package/docs/.vitepress/components/Playground/themes/githubLight.js +398 -398
  11. package/docs/.vitepress/components/Playground/themes.js +24 -24
  12. package/docs/.vitepress/config.ts +84 -69
  13. package/docs/.vitepress/referenceNavigation.ts +37 -37
  14. package/docs/.vitepress/theme/base-styles.css +100 -91
  15. package/docs/.vitepress/theme/env.d.ts +5 -5
  16. package/docs/.vitepress/theme/index.ts +39 -39
  17. package/docs/docs/index.md +142 -141
  18. package/docs/docs/public/playground/KeyframeKit/dist/KeyframeKit.d.ts +138 -138
  19. package/docs/docs/public/playground/KeyframeKit/dist/KeyframeKit.js +293 -293
  20. package/docs/docs/reference/_media/LICENSE +21 -21
  21. package/docs/docs/reference/classes/KeyframeEffectParameters.md +95 -95
  22. package/docs/docs/reference/classes/ParsedKeyframes.md +49 -49
  23. package/docs/docs/reference/index.md +20 -20
  24. package/docs/docs/reference/interfaces/KeyframesFactory.md +151 -151
  25. package/docs/docs/reference/navigation.json +63 -63
  26. package/docs/docs/reference/type-aliases/KeyframeArgument.md +9 -9
  27. package/docs/docs/reference/type-aliases/KeyframesFactorySource.md +9 -9
  28. package/docs/docs/reference/type-aliases/ParsedKeyframesRules.md +15 -15
  29. package/docs/docs/reference/variables/default.md +7 -7
  30. package/docs/package.json +25 -25
  31. package/docs/typedoc/plugin-param-names.js +51 -51
  32. package/docs/typedoc.json +62 -62
  33. package/package.json +37 -37
  34. package/src/KeyframeKit.ts +508 -508
  35. package/tsconfig.json +47 -47
  36. 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
  }