@peter.naydenov/cuts 2.0.2 → 2.0.3
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/Changelog.md +5 -0
- package/coverage/lcov-report/index.html +1 -1
- package/coverage/lcov-report/src/findInstructions.js.html +1 -1
- package/coverage/lcov-report/src/index.html +1 -1
- package/coverage/lcov-report/src/main.js.html +1 -1
- package/coverage/lcov-report/src/methods/hide.js.html +1 -1
- package/coverage/lcov-report/src/methods/index.html +1 -1
- package/coverage/lcov-report/src/methods/jump.js.html +1 -1
- package/coverage/lcov-report/src/methods/jumpBack.js.html +1 -1
- package/coverage/lcov-report/src/methods/jumpsReset.js.html +1 -1
- package/coverage/lcov-report/src/methods/listShortcuts.js.html +1 -1
- package/coverage/lcov-report/src/methods/setScenes.js.html +1 -1
- package/coverage/lcov-report/src/methods/show.js.html +1 -1
- package/coverage/lcov-report/src/setInstruction.js.html +1 -1
- package/package.json +14 -18
- package/playwright.config.js +13 -0
- package/test/01-findPosition.test.js +119 -0
- package/test/02-cuts.test.js +412 -0
- package/test-e2e/01-general.test.js +290 -0
- package/test-e2e/index.html +30 -0
- package/test-e2e/node_modules/.package-lock.json +584 -0
- package/test-e2e/node_modules/.vite/deps/@peter__naydenov_log.js +36 -0
- package/test-e2e/node_modules/.vite/deps/@peter__naydenov_log.js.map +1 -0
- package/test-e2e/node_modules/.vite/deps/@peter__naydenov_shortcuts.js +983 -0
- package/test-e2e/node_modules/.vite/deps/@peter__naydenov_shortcuts.js.map +1 -0
- package/test-e2e/node_modules/.vite/deps/@peter__naydenov_visual-controller-for-vue3.js +267 -0
- package/test-e2e/node_modules/.vite/deps/@peter__naydenov_visual-controller-for-vue3.js.map +1 -0
- package/test-e2e/node_modules/.vite/deps/_metadata.json +44 -0
- package/test-e2e/node_modules/.vite/deps/ask-for-promise.js +223 -0
- package/test-e2e/node_modules/.vite/deps/ask-for-promise.js.map +1 -0
- package/test-e2e/node_modules/.vite/deps/package.json +3 -0
- package/test-e2e/node_modules/.vite/deps/vue.js +2 -0
- package/test-e2e/node_modules/.vite/deps/vue.runtime.esm-bundler-DaROHT9e.js +8579 -0
- package/test-e2e/node_modules/.vite/deps/vue.runtime.esm-bundler-DaROHT9e.js.map +1 -0
- package/test-e2e/node_modules/@babel/helper-string-parser/LICENSE +22 -0
- package/test-e2e/node_modules/@babel/helper-string-parser/README.md +19 -0
- package/test-e2e/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
- package/test-e2e/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/helper-string-parser/package.json +31 -0
- package/test-e2e/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
- package/test-e2e/node_modules/@babel/helper-validator-identifier/README.md +19 -0
- package/test-e2e/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
- package/test-e2e/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
- package/test-e2e/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
- package/test-e2e/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
- package/test-e2e/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
- package/test-e2e/node_modules/@babel/helper-validator-identifier/package.json +31 -0
- package/test-e2e/node_modules/@babel/parser/CHANGELOG.md +1073 -0
- package/test-e2e/node_modules/@babel/parser/LICENSE +19 -0
- package/test-e2e/node_modules/@babel/parser/README.md +19 -0
- package/test-e2e/node_modules/@babel/parser/bin/babel-parser.js +15 -0
- package/test-e2e/node_modules/@babel/parser/lib/index.js +14582 -0
- package/test-e2e/node_modules/@babel/parser/lib/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/parser/package.json +50 -0
- package/test-e2e/node_modules/@babel/parser/typings/babel-parser.d.ts +262 -0
- package/test-e2e/node_modules/@babel/types/LICENSE +22 -0
- package/test-e2e/node_modules/@babel/types/README.md +19 -0
- package/test-e2e/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
- package/test-e2e/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/asserts/generated/index.js +1251 -0
- package/test-e2e/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
- package/test-e2e/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/generated/index.js +29 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/generated/lowercase.js +2902 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/generated/lowercase.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/generated/uppercase.js +272 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/productions.js +12 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/validateNode.js +21 -0
- package/test-e2e/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/clone.js +12 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/cloneNode.js +107 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
- package/test-e2e/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/addComment.js +15 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/addComments.js +22 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
- package/test-e2e/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/constants/generated/index.js +60 -0
- package/test-e2e/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/constants/index.js +31 -0
- package/test-e2e/node_modules/@babel/types/lib/constants/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +65 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toExpression.js +28 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toSequenceExpression.js +19 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/valueToNode.js +89 -0
- package/test-e2e/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/core.js +1725 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/experimental.js +124 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/flow.js +495 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/index.js +106 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/jsx.js +157 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/misc.js +31 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/typescript.js +528 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/utils.js +296 -0
- package/test-e2e/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/index-legacy.d.ts +2797 -0
- package/test-e2e/node_modules/@babel/types/lib/index.d.ts +3617 -0
- package/test-e2e/node_modules/@babel/types/lib/index.js +582 -0
- package/test-e2e/node_modules/@babel/types/lib/index.js.flow +2650 -0
- package/test-e2e/node_modules/@babel/types/lib/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +66 -0
- package/test-e2e/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js +48 -0
- package/test-e2e/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +102 -0
- package/test-e2e/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/retrievers/getFunctionName.js +63 -0
- package/test-e2e/node_modules/@babel/types/lib/retrievers/getFunctionName.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
- package/test-e2e/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
- package/test-e2e/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/traverse/traverseFast.js +40 -0
- package/test-e2e/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
- package/test-e2e/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/utils/inherit.js +13 -0
- package/test-e2e/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
- package/test-e2e/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
- package/test-e2e/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/generated/index.js +2797 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/is.js +27 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/is.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isLet.js +13 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isNode.js +12 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isPlaceholderType.js +15 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isScope.js +18 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isType.js +17 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isVar.js +15 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/matchesPattern.js +44 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/validate.js +42 -0
- package/test-e2e/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
- package/test-e2e/node_modules/@babel/types/package.json +39 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/LICENSE +19 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/README.md +264 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +423 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +6 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +464 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +6 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/package.json +63 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/src/scopes.ts +345 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/src/sourcemap-codec.ts +111 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/src/strings.ts +65 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/src/vlq.ts +55 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts +50 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts.map +1 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts +50 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts.map +1 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts +9 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts.map +1 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts +9 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts.map +1 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts +16 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts.map +1 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts +16 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts.map +1 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts +7 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts.map +1 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts +7 -0
- package/test-e2e/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts.map +1 -0
- package/test-e2e/node_modules/@oxc-project/types/LICENSE +22 -0
- package/test-e2e/node_modules/@oxc-project/types/README.md +3 -0
- package/test-e2e/node_modules/@oxc-project/types/package.json +26 -0
- package/test-e2e/node_modules/@oxc-project/types/types.d.ts +1912 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/CODE_OF_CONDUCT.md +128 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/Changelog.md +88 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/LICENSE +21 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/README.md +294 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/SECURITY.md +18 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov-report/base.css +224 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov-report/block-navigation.js +87 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov-report/favicon.png +0 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov-report/index.html +116 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov-report/main.js.html +592 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov-report/prettify.css +1 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov-report/prettify.js +2 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov-report/sorter.js +196 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/lcov.info +246 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/tmp/coverage-46509-1760816753149-0.json +1 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/coverage/tmp/coverage-46510-1760816753116-0.json +1 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/dist/notice.cjs +1 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/dist/notice.esm.mjs +1 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/dist/notice.umd.js +1 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/notice-desk.png +0 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/package.json +64 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/rollup.config.js +37 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/src/main.js +168 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/tsconfig.json +11 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/types/main.d.ts +12 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/types/main.d.ts.map +1 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/types/src/main.d.ts +12 -0
- package/test-e2e/node_modules/@peter.naydenov/notice/types/src/main.d.ts.map +1 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/API.md +939 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/CODE_OF_CONDUCT.md +84 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/CONTRIBUTING.md +476 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/Changelog.md +217 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/How.to.create.plugins.md +929 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/LICENSE +21 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/Migration.guide.md +176 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/README-v.2.x.x.md +375 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/README.md +900 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/main.d.ts +172 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/methods/_normalizeWithPlugins.d.ts +64 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/methods/_readShortcutWithPlugins.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/methods/_setupPlugin.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/methods/_systemAction.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/methods/changeContext.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/methods/index.d.ts +19 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/methods/listShortcuts.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/methods/load.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/methods/unload.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/click/_findTarget.d.ts +10 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/click/_listenDOM.d.ts +78 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/click/_normalizeShortcutName.d.ts +8 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/click/_readClickEvent.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/click/_registerShortcutEvents.d.ts +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/click/index.d.ts +16 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/form/_defaults.d.ts +17 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/form/_listenDOM.d.ts +68 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/form/_normalizeShortcutName.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/form/_registerShortcutEvents.d.ts +96 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/form/index.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/hover/_findTarget.d.ts +10 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/hover/_listenDOM.d.ts +68 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/hover/_normalizeShortcutName.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/hover/_registerShortcutEvents.d.ts +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/hover/index.d.ts +14 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/key/_listenDOM.d.ts +63 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/key/_normalizeShortcutName.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/key/_readKeyEvent.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/key/_registerShortcutEvents.d.ts +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/key/_specialChars.d.ts +7 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/key/index.d.ts +14 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/scroll/_listenDOM.d.ts +58 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/scroll/_normalizeShortcutName.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/scroll/_registerShortcutEvents.d.ts +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/plugins/scroll/index.d.ts +16 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/shortcuts.cjs +1 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/shortcuts.esm.mjs +1 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/shortcuts.umd.js +1 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/main.d.ts +172 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/methods/_normalizeWithPlugins.d.ts +64 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/methods/_readShortcutWithPlugins.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/methods/_setupPlugin.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/methods/_systemAction.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/methods/changeContext.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/methods/index.d.ts +19 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/methods/listShortcuts.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/methods/load.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/methods/unload.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/click/_findTarget.d.ts +10 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/click/_listenDOM.d.ts +78 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/click/_normalizeShortcutName.d.ts +8 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/click/_readClickEvent.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/click/_registerShortcutEvents.d.ts +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/click/index.d.ts +16 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/form/_defaults.d.ts +17 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/form/_listenDOM.d.ts +68 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/form/_normalizeShortcutName.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/form/_registerShortcutEvents.d.ts +96 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/form/index.d.ts +9 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/hover/_findTarget.d.ts +10 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/hover/_listenDOM.d.ts +68 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/hover/_normalizeShortcutName.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/hover/_registerShortcutEvents.d.ts +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/hover/index.d.ts +14 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/key/_listenDOM.d.ts +63 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/key/_normalizeShortcutName.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/key/_readKeyEvent.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/key/_registerShortcutEvents.d.ts +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/key/_specialChars.d.ts +7 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/key/index.d.ts +14 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/scroll/_listenDOM.d.ts +58 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/scroll/_normalizeShortcutName.d.ts +2 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/scroll/_registerShortcutEvents.d.ts +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/dist/src/plugins/scroll/index.d.ts +16 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/eslint.config.js +80 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/html/assets/index-COTh6lXR.css +1 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/html/assets/index-DOkKC3NI.js +53 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/html/bg.png +0 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/html/favicon.ico +0 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/html/favicon.svg +5 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/html/html.meta.json.gz +0 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/html/index.html +32 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/index.html +126 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/javascript.svg +1 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/jsconfig.json +10 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/package.json +66 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/public/vite.svg +1 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/rollup.config.js +40 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/shortcuts.png +0 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/main.js +302 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/methods/_normalizeWithPlugins.js +49 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/methods/_readShortcutWithPlugins.js +32 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/methods/_setupPlugin.js +93 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/methods/_systemAction.js +33 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/methods/changeContext.js +68 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/methods/index.js +25 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/methods/listShortcuts.js +34 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/methods/load.js +58 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/methods/unload.js +38 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/click/_findTarget.js +26 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/click/_listenDOM.js +165 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/click/_normalizeShortcutName.js +51 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/click/_readClickEvent.js +24 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/click/_registerShortcutEvents.js +58 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/click/index.js +67 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/form/_defaults.js +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/form/_listenDOM.js +127 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/form/_normalizeShortcutName.js +21 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/form/_registerShortcutEvents.js +147 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/form/index.js +58 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/hover/_findTarget.js +26 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/hover/_listenDOM.js +154 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/hover/_normalizeShortcutName.js +21 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/hover/_registerShortcutEvents.js +51 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/hover/index.js +71 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/key/_listenDOM.js +186 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/key/_normalizeShortcutName.js +32 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/key/_readKeyEvent.js +28 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/key/_registerShortcutEvents.js +57 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/key/_specialChars.js +43 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/key/index.js +67 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/scroll/_listenDOM.js +141 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/scroll/_normalizeShortcutName.js +21 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/scroll/_registerShortcutEvents.js +50 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/src/plugins/scroll/index.js +61 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/style.css +97 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test/01-general.test.js +275 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test/02-key.test.js +473 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test/03-click.test.js +596 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test/04-form.test.js +327 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test/05-hover.test.js +463 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test/06-scroll.test.js +374 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test-helpers/Block.jsx +15 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test-helpers/setup.js +18 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test-helpers/style.css +26 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/test-helpers/wait.js +8 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/tsconfig.json +24 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/vite.config.js +7 -0
- package/test-e2e/node_modules/@peter.naydenov/shortcuts/vitest.config.js +23 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/LICENSE +21 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/cypress/fixtures/example.json +5 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/cypress/support/commands.js +25 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/cypress/support/component-index.html +12 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/cypress/support/component.js +27 -0
- package/{cypress.config.mjs → test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/cypress.config.js} +2 -3
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/dist/visual-controller-for-vue3.cjs +1 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/dist/visual-controller-for-vue3.esm.mjs +1 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/dist/visual-controller-for-vue3.umd.js +1 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/index.html +13 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/package.json +43 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/public/vite.svg +1 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/readme.md +233 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/rollup.config.js +42 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/src/App.vue +44 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/src/assets/vue.svg +1 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/src/components/HelloWorld.vue +26 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/src/main.js +101 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/src/style.css +90 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/test/01_general.cy.js +98 -0
- package/test-e2e/node_modules/@peter.naydenov/visual-controller-for-vue3/vite.config.js +7 -0
- package/test-e2e/node_modules/@rolldown/binding-darwin-arm64/README.md +3 -0
- package/test-e2e/node_modules/@rolldown/binding-darwin-arm64/package.json +37 -0
- package/test-e2e/node_modules/@rolldown/binding-darwin-arm64/rolldown-binding.darwin-arm64.node +0 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/LICENSE +25 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/README.md +77 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.d.ts +90 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.js +256 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.d.ts +28 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.js +75 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/filter/index.d.ts +3 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/filter/index.js +3 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.d.ts +71 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.js +70 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/index.d.ts +1 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/index.js +1 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/utils.d.ts +2 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/dist/utils.js +17 -0
- package/test-e2e/node_modules/@rolldown/pluginutils/package.json +37 -0
- package/test-e2e/node_modules/@vitejs/plugin-vue/LICENSE +21 -0
- package/test-e2e/node_modules/@vitejs/plugin-vue/README.md +278 -0
- package/test-e2e/node_modules/@vitejs/plugin-vue/dist/index.d.mts +120 -0
- package/test-e2e/node_modules/@vitejs/plugin-vue/dist/index.mjs +1745 -0
- package/test-e2e/node_modules/@vitejs/plugin-vue/package.json +65 -0
- package/test-e2e/node_modules/@vue/compiler-core/LICENSE +21 -0
- package/test-e2e/node_modules/@vue/compiler-core/README.md +1 -0
- package/test-e2e/node_modules/@vue/compiler-core/dist/compiler-core.cjs.js +6888 -0
- package/test-e2e/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +6763 -0
- package/test-e2e/node_modules/@vue/compiler-core/dist/compiler-core.d.ts +1100 -0
- package/test-e2e/node_modules/@vue/compiler-core/dist/compiler-core.esm-bundler.js +5835 -0
- package/test-e2e/node_modules/@vue/compiler-core/index.js +7 -0
- package/test-e2e/node_modules/@vue/compiler-core/package.json +58 -0
- package/test-e2e/node_modules/@vue/compiler-dom/LICENSE +21 -0
- package/test-e2e/node_modules/@vue/compiler-dom/README.md +1 -0
- package/test-e2e/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.js +934 -0
- package/test-e2e/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +689 -0
- package/test-e2e/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts +45 -0
- package/test-e2e/node_modules/@vue/compiler-dom/dist/compiler-dom.esm-browser.js +6644 -0
- package/test-e2e/node_modules/@vue/compiler-dom/dist/compiler-dom.esm-browser.prod.js +14 -0
- package/test-e2e/node_modules/@vue/compiler-dom/dist/compiler-dom.esm-bundler.js +690 -0
- package/test-e2e/node_modules/@vue/compiler-dom/dist/compiler-dom.global.js +6814 -0
- package/test-e2e/node_modules/@vue/compiler-dom/dist/compiler-dom.global.prod.js +14 -0
- package/test-e2e/node_modules/@vue/compiler-dom/index.js +7 -0
- package/test-e2e/node_modules/@vue/compiler-dom/package.json +57 -0
- package/test-e2e/node_modules/@vue/compiler-sfc/LICENSE +21 -0
- package/test-e2e/node_modules/@vue/compiler-sfc/README.md +79 -0
- package/test-e2e/node_modules/@vue/compiler-sfc/dist/compiler-sfc.cjs.js +25619 -0
- package/test-e2e/node_modules/@vue/compiler-sfc/dist/compiler-sfc.d.ts +487 -0
- package/test-e2e/node_modules/@vue/compiler-sfc/dist/compiler-sfc.esm-browser.js +50833 -0
- package/test-e2e/node_modules/@vue/compiler-sfc/package.json +67 -0
- package/test-e2e/node_modules/@vue/compiler-ssr/LICENSE +21 -0
- package/test-e2e/node_modules/@vue/compiler-ssr/README.md +1 -0
- package/test-e2e/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +1413 -0
- package/test-e2e/node_modules/@vue/compiler-ssr/dist/compiler-ssr.d.ts +4 -0
- package/test-e2e/node_modules/@vue/compiler-ssr/package.json +34 -0
- package/test-e2e/node_modules/@vue/reactivity/LICENSE +21 -0
- package/test-e2e/node_modules/@vue/reactivity/README.md +19 -0
- package/test-e2e/node_modules/@vue/reactivity/dist/reactivity.cjs.js +2033 -0
- package/test-e2e/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +1877 -0
- package/test-e2e/node_modules/@vue/reactivity/dist/reactivity.d.ts +756 -0
- package/test-e2e/node_modules/@vue/reactivity/dist/reactivity.esm-browser.js +2031 -0
- package/test-e2e/node_modules/@vue/reactivity/dist/reactivity.esm-browser.prod.js +5 -0
- package/test-e2e/node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js +1990 -0
- package/test-e2e/node_modules/@vue/reactivity/dist/reactivity.global.js +2087 -0
- package/test-e2e/node_modules/@vue/reactivity/dist/reactivity.global.prod.js +5 -0
- package/test-e2e/node_modules/@vue/reactivity/index.js +7 -0
- package/test-e2e/node_modules/@vue/reactivity/package.json +55 -0
- package/test-e2e/node_modules/@vue/runtime-core/LICENSE +21 -0
- package/test-e2e/node_modules/@vue/runtime-core/README.md +28 -0
- package/test-e2e/node_modules/@vue/runtime-core/dist/runtime-core.cjs.js +8718 -0
- package/test-e2e/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +6856 -0
- package/test-e2e/node_modules/@vue/runtime-core/dist/runtime-core.d.ts +1866 -0
- package/test-e2e/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js +8647 -0
- package/test-e2e/node_modules/@vue/runtime-core/index.js +7 -0
- package/test-e2e/node_modules/@vue/runtime-core/package.json +52 -0
- package/test-e2e/node_modules/@vue/runtime-dom/LICENSE +21 -0
- package/test-e2e/node_modules/@vue/runtime-dom/README.md +13 -0
- package/test-e2e/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.js +1946 -0
- package/test-e2e/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1796 -0
- package/test-e2e/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts +1450 -0
- package/test-e2e/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-browser.js +12794 -0
- package/test-e2e/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-browser.prod.js +7 -0
- package/test-e2e/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js +1985 -0
- package/test-e2e/node_modules/@vue/runtime-dom/dist/runtime-dom.global.js +12847 -0
- package/test-e2e/node_modules/@vue/runtime-dom/dist/runtime-dom.global.prod.js +7 -0
- package/test-e2e/node_modules/@vue/runtime-dom/index.js +7 -0
- package/test-e2e/node_modules/@vue/runtime-dom/package.json +60 -0
- package/test-e2e/node_modules/@vue/server-renderer/LICENSE +21 -0
- package/test-e2e/node_modules/@vue/server-renderer/README.md +178 -0
- package/test-e2e/node_modules/@vue/server-renderer/dist/server-renderer.cjs.js +1159 -0
- package/test-e2e/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +883 -0
- package/test-e2e/node_modules/@vue/server-renderer/dist/server-renderer.d.ts +65 -0
- package/test-e2e/node_modules/@vue/server-renderer/dist/server-renderer.esm-browser.js +8627 -0
- package/test-e2e/node_modules/@vue/server-renderer/dist/server-renderer.esm-browser.prod.js +5 -0
- package/test-e2e/node_modules/@vue/server-renderer/dist/server-renderer.esm-bundler.js +1097 -0
- package/test-e2e/node_modules/@vue/server-renderer/index.js +7 -0
- package/test-e2e/node_modules/@vue/server-renderer/package.json +55 -0
- package/test-e2e/node_modules/@vue/shared/LICENSE +21 -0
- package/test-e2e/node_modules/@vue/shared/README.md +3 -0
- package/test-e2e/node_modules/@vue/shared/dist/shared.cjs.js +612 -0
- package/test-e2e/node_modules/@vue/shared/dist/shared.cjs.prod.js +604 -0
- package/test-e2e/node_modules/@vue/shared/dist/shared.d.ts +334 -0
- package/test-e2e/node_modules/@vue/shared/dist/shared.esm-bundler.js +536 -0
- package/test-e2e/node_modules/@vue/shared/index.js +7 -0
- package/test-e2e/node_modules/@vue/shared/package.json +47 -0
- package/test-e2e/node_modules/ask-for-promise/LICENSE +21 -0
- package/test-e2e/node_modules/ask-for-promise/README.md +278 -0
- package/test-e2e/node_modules/ask-for-promise/dist/ask-for-promise.cjs +1 -0
- package/test-e2e/node_modules/ask-for-promise/dist/ask-for-promise.esm.mjs +1 -0
- package/test-e2e/node_modules/ask-for-promise/dist/ask-for-promise.umd.js +1 -0
- package/test-e2e/node_modules/ask-for-promise/package.json +77 -0
- package/test-e2e/node_modules/ask-for-promise/src/askForPromise.js +277 -0
- package/test-e2e/node_modules/ask-for-promise/types/index.d.ts +18 -0
- package/test-e2e/node_modules/csstype/LICENSE +19 -0
- package/test-e2e/node_modules/csstype/README.md +291 -0
- package/test-e2e/node_modules/csstype/index.d.ts +22569 -0
- package/test-e2e/node_modules/csstype/index.js.flow +6863 -0
- package/test-e2e/node_modules/csstype/package.json +70 -0
- package/test-e2e/node_modules/detect-libc/LICENSE +201 -0
- package/test-e2e/node_modules/detect-libc/README.md +163 -0
- package/test-e2e/node_modules/detect-libc/index.d.ts +14 -0
- package/test-e2e/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/test-e2e/node_modules/detect-libc/lib/elf.js +39 -0
- package/test-e2e/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/test-e2e/node_modules/detect-libc/lib/process.js +24 -0
- package/test-e2e/node_modules/detect-libc/package.json +44 -0
- package/test-e2e/node_modules/entities/LICENSE +11 -0
- package/test-e2e/node_modules/entities/decode.d.ts +3 -0
- package/test-e2e/node_modules/entities/decode.js +3 -0
- package/test-e2e/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
- package/test-e2e/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- package/test-e2e/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/decode.d.ts +205 -0
- package/test-e2e/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/decode.js +568 -0
- package/test-e2e/node_modules/entities/dist/commonjs/decode.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
- package/test-e2e/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/encode.js +92 -0
- package/test-e2e/node_modules/entities/dist/commonjs/encode.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/escape.d.ts +46 -0
- package/test-e2e/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/escape.js +138 -0
- package/test-e2e/node_modules/entities/dist/commonjs/escape.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +3 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/encode-html.js +14 -0
- package/test-e2e/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/index.d.ts +96 -0
- package/test-e2e/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/index.js +131 -0
- package/test-e2e/node_modules/entities/dist/commonjs/index.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts +17 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts +2 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/decode-shared.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts +32 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/encode-shared.js +94 -0
- package/test-e2e/node_modules/entities/dist/commonjs/internal/encode-shared.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/commonjs/package.json +3 -0
- package/test-e2e/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
- package/test-e2e/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
- package/test-e2e/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/decode.d.ts +205 -0
- package/test-e2e/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/decode.js +554 -0
- package/test-e2e/node_modules/entities/dist/esm/decode.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/encode.d.ts +22 -0
- package/test-e2e/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/encode.js +88 -0
- package/test-e2e/node_modules/entities/dist/esm/encode.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/escape.d.ts +46 -0
- package/test-e2e/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/escape.js +134 -0
- package/test-e2e/node_modules/entities/dist/esm/escape.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/decode-data-html.js +4 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/decode-data-xml.js +4 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/encode-html.d.ts +3 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/encode-html.js +11 -0
- package/test-e2e/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/index.d.ts +96 -0
- package/test-e2e/node_modules/entities/dist/esm/index.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/index.js +107 -0
- package/test-e2e/node_modules/entities/dist/esm/index.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts +17 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/bin-trie-flags.js +18 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/bin-trie-flags.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/decode-shared.d.ts +2 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/decode-shared.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/decode-shared.js +28 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/decode-shared.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/encode-shared.d.ts +32 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/encode-shared.d.ts.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/encode-shared.js +91 -0
- package/test-e2e/node_modules/entities/dist/esm/internal/encode-shared.js.map +1 -0
- package/test-e2e/node_modules/entities/dist/esm/package.json +3 -0
- package/test-e2e/node_modules/entities/escape.d.ts +3 -0
- package/test-e2e/node_modules/entities/escape.js +3 -0
- package/test-e2e/node_modules/entities/package.json +120 -0
- package/test-e2e/node_modules/entities/readme.md +143 -0
- package/test-e2e/node_modules/entities/src/decode-codepoint.ts +81 -0
- package/test-e2e/node_modules/entities/src/decode.ts +685 -0
- package/test-e2e/node_modules/entities/src/encode.ts +93 -0
- package/test-e2e/node_modules/entities/src/escape.ts +161 -0
- package/test-e2e/node_modules/entities/src/generated/.eslintrc.json +10 -0
- package/test-e2e/node_modules/entities/src/generated/decode-data-html.ts +6 -0
- package/test-e2e/node_modules/entities/src/generated/decode-data-xml.ts +6 -0
- package/test-e2e/node_modules/entities/src/generated/encode-html.ts +17 -0
- package/test-e2e/node_modules/entities/src/index.ts +187 -0
- package/test-e2e/node_modules/entities/src/internal/bin-trie-flags.ts +16 -0
- package/test-e2e/node_modules/entities/src/internal/decode-shared.ts +30 -0
- package/test-e2e/node_modules/entities/src/internal/encode-shared.ts +121 -0
- package/test-e2e/node_modules/estree-walker/CHANGELOG.md +92 -0
- package/test-e2e/node_modules/estree-walker/LICENSE +7 -0
- package/test-e2e/node_modules/estree-walker/README.md +48 -0
- package/test-e2e/node_modules/estree-walker/dist/esm/estree-walker.js +333 -0
- package/test-e2e/node_modules/estree-walker/dist/esm/package.json +1 -0
- package/test-e2e/node_modules/estree-walker/dist/umd/estree-walker.js +344 -0
- package/test-e2e/node_modules/estree-walker/package.json +37 -0
- package/test-e2e/node_modules/estree-walker/src/async.js +118 -0
- package/test-e2e/node_modules/estree-walker/src/index.js +35 -0
- package/test-e2e/node_modules/estree-walker/src/package.json +1 -0
- package/test-e2e/node_modules/estree-walker/src/sync.js +118 -0
- package/test-e2e/node_modules/estree-walker/src/walker.js +61 -0
- package/test-e2e/node_modules/estree-walker/types/async.d.ts +53 -0
- package/test-e2e/node_modules/estree-walker/types/index.d.ts +56 -0
- package/test-e2e/node_modules/estree-walker/types/sync.d.ts +53 -0
- package/test-e2e/node_modules/estree-walker/types/tsconfig.tsbuildinfo +345 -0
- package/test-e2e/node_modules/estree-walker/types/walker.d.ts +37 -0
- package/test-e2e/node_modules/fdir/LICENSE +7 -0
- package/test-e2e/node_modules/fdir/README.md +91 -0
- package/test-e2e/node_modules/fdir/dist/index.cjs +588 -0
- package/test-e2e/node_modules/fdir/dist/index.d.cts +155 -0
- package/test-e2e/node_modules/fdir/dist/index.d.mts +155 -0
- package/test-e2e/node_modules/fdir/dist/index.mjs +570 -0
- package/test-e2e/node_modules/fdir/package.json +103 -0
- package/test-e2e/node_modules/lightningcss/LICENSE +373 -0
- package/test-e2e/node_modules/lightningcss/README.md +105 -0
- package/test-e2e/node_modules/lightningcss/node/ast.d.ts +9892 -0
- package/test-e2e/node_modules/lightningcss/node/ast.js.flow +10539 -0
- package/test-e2e/node_modules/lightningcss/node/browserslistToTargets.js +48 -0
- package/test-e2e/node_modules/lightningcss/node/composeVisitors.js +450 -0
- package/test-e2e/node_modules/lightningcss/node/flags.js +28 -0
- package/test-e2e/node_modules/lightningcss/node/index.d.ts +494 -0
- package/test-e2e/node_modules/lightningcss/node/index.js +59 -0
- package/test-e2e/node_modules/lightningcss/node/index.js.flow +843 -0
- package/test-e2e/node_modules/lightningcss/node/index.mjs +4 -0
- package/test-e2e/node_modules/lightningcss/node/targets.d.ts +40 -0
- package/test-e2e/node_modules/lightningcss/node/targets.js.flow +39 -0
- package/test-e2e/node_modules/lightningcss/package.json +110 -0
- package/test-e2e/node_modules/lightningcss-darwin-arm64/LICENSE +373 -0
- package/test-e2e/node_modules/lightningcss-darwin-arm64/README.md +1 -0
- package/test-e2e/node_modules/lightningcss-darwin-arm64/lightningcss.darwin-arm64.node +0 -0
- package/test-e2e/node_modules/lightningcss-darwin-arm64/package.json +34 -0
- package/test-e2e/node_modules/magic-string/LICENSE +7 -0
- package/test-e2e/node_modules/magic-string/README.md +325 -0
- package/test-e2e/node_modules/magic-string/dist/magic-string.cjs.d.ts +289 -0
- package/test-e2e/node_modules/magic-string/dist/magic-string.cjs.js +1594 -0
- package/test-e2e/node_modules/magic-string/dist/magic-string.cjs.js.map +1 -0
- package/test-e2e/node_modules/magic-string/dist/magic-string.es.d.mts +289 -0
- package/test-e2e/node_modules/magic-string/dist/magic-string.es.mjs +1588 -0
- package/test-e2e/node_modules/magic-string/dist/magic-string.es.mjs.map +1 -0
- package/test-e2e/node_modules/magic-string/dist/magic-string.umd.js +1682 -0
- package/test-e2e/node_modules/magic-string/dist/magic-string.umd.js.map +1 -0
- package/test-e2e/node_modules/magic-string/package.json +67 -0
- package/test-e2e/node_modules/nanoid/LICENSE +20 -0
- package/test-e2e/node_modules/nanoid/README.md +39 -0
- package/test-e2e/node_modules/nanoid/async/index.browser.cjs +69 -0
- package/test-e2e/node_modules/nanoid/async/index.browser.js +34 -0
- package/test-e2e/node_modules/nanoid/async/index.cjs +71 -0
- package/test-e2e/node_modules/nanoid/async/index.d.ts +56 -0
- package/test-e2e/node_modules/nanoid/async/index.js +35 -0
- package/test-e2e/node_modules/nanoid/async/index.native.js +26 -0
- package/test-e2e/node_modules/nanoid/async/package.json +12 -0
- package/test-e2e/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/test-e2e/node_modules/nanoid/index.browser.cjs +72 -0
- package/test-e2e/node_modules/nanoid/index.browser.js +34 -0
- package/test-e2e/node_modules/nanoid/index.cjs +85 -0
- package/test-e2e/node_modules/nanoid/index.d.cts +91 -0
- package/test-e2e/node_modules/nanoid/index.d.ts +91 -0
- package/test-e2e/node_modules/nanoid/index.js +45 -0
- package/test-e2e/node_modules/nanoid/nanoid.js +1 -0
- package/test-e2e/node_modules/nanoid/non-secure/index.cjs +34 -0
- package/test-e2e/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/test-e2e/node_modules/nanoid/non-secure/index.js +21 -0
- package/test-e2e/node_modules/nanoid/non-secure/package.json +6 -0
- package/test-e2e/node_modules/nanoid/package.json +89 -0
- package/test-e2e/node_modules/nanoid/url-alphabet/index.cjs +7 -0
- package/test-e2e/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/test-e2e/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/test-e2e/node_modules/picocolors/LICENSE +15 -0
- package/test-e2e/node_modules/picocolors/README.md +21 -0
- package/test-e2e/node_modules/picocolors/package.json +25 -0
- package/test-e2e/node_modules/picocolors/picocolors.browser.js +4 -0
- package/test-e2e/node_modules/picocolors/picocolors.d.ts +5 -0
- package/test-e2e/node_modules/picocolors/picocolors.js +75 -0
- package/test-e2e/node_modules/picocolors/types.d.ts +51 -0
- package/test-e2e/node_modules/picomatch/LICENSE +21 -0
- package/test-e2e/node_modules/picomatch/README.md +749 -0
- package/test-e2e/node_modules/picomatch/index.js +17 -0
- package/test-e2e/node_modules/picomatch/lib/constants.js +184 -0
- package/test-e2e/node_modules/picomatch/lib/parse.js +1386 -0
- package/test-e2e/node_modules/picomatch/lib/picomatch.js +349 -0
- package/test-e2e/node_modules/picomatch/lib/scan.js +391 -0
- package/test-e2e/node_modules/picomatch/lib/utils.js +72 -0
- package/test-e2e/node_modules/picomatch/package.json +82 -0
- package/test-e2e/node_modules/picomatch/posix.js +3 -0
- package/test-e2e/node_modules/postcss/LICENSE +20 -0
- package/test-e2e/node_modules/postcss/README.md +28 -0
- package/test-e2e/node_modules/postcss/lib/at-rule.d.ts +139 -0
- package/test-e2e/node_modules/postcss/lib/at-rule.js +25 -0
- package/test-e2e/node_modules/postcss/lib/comment.d.ts +67 -0
- package/test-e2e/node_modules/postcss/lib/comment.js +13 -0
- package/test-e2e/node_modules/postcss/lib/container.d.ts +478 -0
- package/test-e2e/node_modules/postcss/lib/container.js +447 -0
- package/test-e2e/node_modules/postcss/lib/css-syntax-error.d.ts +247 -0
- package/test-e2e/node_modules/postcss/lib/css-syntax-error.js +133 -0
- package/test-e2e/node_modules/postcss/lib/declaration.d.ts +150 -0
- package/test-e2e/node_modules/postcss/lib/declaration.js +24 -0
- package/test-e2e/node_modules/postcss/lib/document.d.ts +68 -0
- package/test-e2e/node_modules/postcss/lib/document.js +33 -0
- package/test-e2e/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- package/test-e2e/node_modules/postcss/lib/fromJSON.js +54 -0
- package/test-e2e/node_modules/postcss/lib/input.d.ts +226 -0
- package/test-e2e/node_modules/postcss/lib/input.js +273 -0
- package/test-e2e/node_modules/postcss/lib/lazy-result.d.ts +189 -0
- package/test-e2e/node_modules/postcss/lib/lazy-result.js +550 -0
- package/test-e2e/node_modules/postcss/lib/list.d.ts +60 -0
- package/test-e2e/node_modules/postcss/lib/list.js +58 -0
- package/test-e2e/node_modules/postcss/lib/map-generator.js +376 -0
- package/test-e2e/node_modules/postcss/lib/no-work-result.d.ts +45 -0
- package/test-e2e/node_modules/postcss/lib/no-work-result.js +137 -0
- package/test-e2e/node_modules/postcss/lib/node.d.ts +555 -0
- package/test-e2e/node_modules/postcss/lib/node.js +449 -0
- package/test-e2e/node_modules/postcss/lib/parse.d.ts +9 -0
- package/test-e2e/node_modules/postcss/lib/parse.js +42 -0
- package/test-e2e/node_modules/postcss/lib/parser.js +611 -0
- package/test-e2e/node_modules/postcss/lib/postcss.d.mts +66 -0
- package/test-e2e/node_modules/postcss/lib/postcss.d.ts +456 -0
- package/test-e2e/node_modules/postcss/lib/postcss.js +101 -0
- package/test-e2e/node_modules/postcss/lib/postcss.mjs +30 -0
- package/test-e2e/node_modules/postcss/lib/previous-map.d.ts +80 -0
- package/test-e2e/node_modules/postcss/lib/previous-map.js +145 -0
- package/test-e2e/node_modules/postcss/lib/processor.d.ts +114 -0
- package/test-e2e/node_modules/postcss/lib/processor.js +67 -0
- package/test-e2e/node_modules/postcss/lib/result.d.ts +204 -0
- package/test-e2e/node_modules/postcss/lib/result.js +42 -0
- package/test-e2e/node_modules/postcss/lib/root.d.ts +86 -0
- package/test-e2e/node_modules/postcss/lib/root.js +61 -0
- package/test-e2e/node_modules/postcss/lib/rule.d.ts +126 -0
- package/test-e2e/node_modules/postcss/lib/rule.js +27 -0
- package/test-e2e/node_modules/postcss/lib/stringifier.d.ts +45 -0
- package/test-e2e/node_modules/postcss/lib/stringifier.js +353 -0
- package/test-e2e/node_modules/postcss/lib/stringify.d.ts +9 -0
- package/test-e2e/node_modules/postcss/lib/stringify.js +11 -0
- package/test-e2e/node_modules/postcss/lib/symbols.js +5 -0
- package/test-e2e/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/test-e2e/node_modules/postcss/lib/tokenize.js +266 -0
- package/test-e2e/node_modules/postcss/lib/warn-once.js +13 -0
- package/test-e2e/node_modules/postcss/lib/warning.d.ts +146 -0
- package/test-e2e/node_modules/postcss/lib/warning.js +37 -0
- package/test-e2e/node_modules/postcss/package.json +88 -0
- package/test-e2e/node_modules/rolldown/LICENSE +25 -0
- package/test-e2e/node_modules/rolldown/README.md +11 -0
- package/test-e2e/node_modules/rolldown/bin/cli.mjs +2 -0
- package/test-e2e/node_modules/rolldown/dist/cli.d.mts +1 -0
- package/test-e2e/node_modules/rolldown/dist/cli.mjs +1191 -0
- package/test-e2e/node_modules/rolldown/dist/config.d.mts +14 -0
- package/test-e2e/node_modules/rolldown/dist/config.mjs +4 -0
- package/test-e2e/node_modules/rolldown/dist/experimental-index.d.mts +253 -0
- package/test-e2e/node_modules/rolldown/dist/experimental-index.mjs +320 -0
- package/test-e2e/node_modules/rolldown/dist/experimental-runtime-types.d.ts +98 -0
- package/test-e2e/node_modules/rolldown/dist/filter-index.d.mts +196 -0
- package/test-e2e/node_modules/rolldown/dist/filter-index.mjs +386 -0
- package/test-e2e/node_modules/rolldown/dist/get-log-filter.d.mts +3 -0
- package/test-e2e/node_modules/rolldown/dist/get-log-filter.mjs +68 -0
- package/test-e2e/node_modules/rolldown/dist/index.d.mts +4 -0
- package/test-e2e/node_modules/rolldown/dist/index.mjs +50 -0
- package/test-e2e/node_modules/rolldown/dist/parallel-plugin-worker.d.mts +1 -0
- package/test-e2e/node_modules/rolldown/dist/parallel-plugin-worker.mjs +28 -0
- package/test-e2e/node_modules/rolldown/dist/parallel-plugin.d.mts +13 -0
- package/test-e2e/node_modules/rolldown/dist/parallel-plugin.mjs +6 -0
- package/test-e2e/node_modules/rolldown/dist/parse-ast-index.d.mts +32 -0
- package/test-e2e/node_modules/rolldown/dist/parse-ast-index.mjs +60 -0
- package/test-e2e/node_modules/rolldown/dist/plugins-index.d.mts +33 -0
- package/test-e2e/node_modules/rolldown/dist/plugins-index.mjs +40 -0
- package/test-e2e/node_modules/rolldown/dist/shared/binding-DUEnSb0A.d.mts +1872 -0
- package/test-e2e/node_modules/rolldown/dist/shared/binding-s-V_wTpj.mjs +582 -0
- package/test-e2e/node_modules/rolldown/dist/shared/bindingify-input-options-DYpBf1OG.mjs +2235 -0
- package/test-e2e/node_modules/rolldown/dist/shared/constructors-BaEBnHl3.mjs +68 -0
- package/test-e2e/node_modules/rolldown/dist/shared/constructors-DYemMpPL.d.mts +37 -0
- package/test-e2e/node_modules/rolldown/dist/shared/define-config-DJOr6Iwt.mjs +6 -0
- package/test-e2e/node_modules/rolldown/dist/shared/define-config-DhJZwTRw.d.mts +3795 -0
- package/test-e2e/node_modules/rolldown/dist/shared/error-w0u7biK-.mjs +85 -0
- package/test-e2e/node_modules/rolldown/dist/shared/get-log-filter-semyr3Lj.d.mts +35 -0
- package/test-e2e/node_modules/rolldown/dist/shared/load-config-pmbgQdFU.mjs +120 -0
- package/test-e2e/node_modules/rolldown/dist/shared/logging-C6h4g8dA.d.mts +50 -0
- package/test-e2e/node_modules/rolldown/dist/shared/logs-D80CXhvg.mjs +180 -0
- package/test-e2e/node_modules/rolldown/dist/shared/misc-DJYbNKZX.mjs +21 -0
- package/test-e2e/node_modules/rolldown/dist/shared/normalize-string-or-regex-CVvpepxa.mjs +66 -0
- package/test-e2e/node_modules/rolldown/dist/shared/parse-BywQARUG.mjs +74 -0
- package/test-e2e/node_modules/rolldown/dist/shared/prompt-BYQIwEjg.mjs +845 -0
- package/test-e2e/node_modules/rolldown/dist/shared/resolve-tsconfig-CNjJwuKB.mjs +113 -0
- package/test-e2e/node_modules/rolldown/dist/shared/rolldown-BLMDGLfI.mjs +40 -0
- package/test-e2e/node_modules/rolldown/dist/shared/rolldown-build-DtGk-m96.mjs +3321 -0
- package/test-e2e/node_modules/rolldown/dist/shared/transform-Kz3D2LbX.d.mts +149 -0
- package/test-e2e/node_modules/rolldown/dist/shared/watch-Cixa7HbR.mjs +374 -0
- package/test-e2e/node_modules/rolldown/dist/utils-index.d.mts +376 -0
- package/test-e2e/node_modules/rolldown/dist/utils-index.mjs +2414 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/LICENSE +25 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/README.md +83 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.d.ts +90 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.js +256 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.d.ts +28 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.js +75 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/filter/index.d.ts +3 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/filter/index.js +3 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.d.ts +71 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.js +70 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/index.d.ts +1 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/index.js +1 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/utils.d.ts +2 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/dist/utils.js +17 -0
- package/test-e2e/node_modules/rolldown/node_modules/@rolldown/pluginutils/package.json +37 -0
- package/test-e2e/node_modules/rolldown/package.json +153 -0
- package/test-e2e/node_modules/source-map-js/LICENSE +28 -0
- package/test-e2e/node_modules/source-map-js/README.md +765 -0
- package/test-e2e/node_modules/source-map-js/lib/array-set.js +121 -0
- package/test-e2e/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/test-e2e/node_modules/source-map-js/lib/base64.js +67 -0
- package/test-e2e/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/test-e2e/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/test-e2e/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/test-e2e/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- package/test-e2e/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/test-e2e/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- package/test-e2e/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/test-e2e/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- package/test-e2e/node_modules/source-map-js/lib/source-node.js +413 -0
- package/test-e2e/node_modules/source-map-js/lib/util.js +594 -0
- package/test-e2e/node_modules/source-map-js/package.json +71 -0
- package/test-e2e/node_modules/source-map-js/source-map.d.ts +104 -0
- package/test-e2e/node_modules/source-map-js/source-map.js +8 -0
- package/test-e2e/node_modules/tinyglobby/LICENSE +21 -0
- package/test-e2e/node_modules/tinyglobby/README.md +25 -0
- package/test-e2e/node_modules/tinyglobby/dist/index.cjs +334 -0
- package/test-e2e/node_modules/tinyglobby/dist/index.d.cts +148 -0
- package/test-e2e/node_modules/tinyglobby/dist/index.d.mts +148 -0
- package/test-e2e/node_modules/tinyglobby/dist/index.mjs +306 -0
- package/test-e2e/node_modules/tinyglobby/package.json +73 -0
- package/test-e2e/node_modules/vite/LICENSE.md +2230 -0
- package/test-e2e/node_modules/vite/README.md +20 -0
- package/test-e2e/node_modules/vite/bin/openChrome.js +68 -0
- package/test-e2e/node_modules/vite/bin/vite.js +79 -0
- package/test-e2e/node_modules/vite/client.d.ts +282 -0
- package/test-e2e/node_modules/vite/dist/client/client.mjs +1235 -0
- package/test-e2e/node_modules/vite/dist/client/env.mjs +18 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/build.js +2 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/build2.js +5378 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/chunk.js +37 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/config.js +2 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/dist.js +6719 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/lib.js +371 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/logger.js +322 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts +96 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/node.js +34785 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/optimizer.js +2 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/postcss-import.js +467 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/preview.js +2 -0
- package/test-e2e/node_modules/vite/dist/node/chunks/server.js +2 -0
- package/test-e2e/node_modules/vite/dist/node/cli.js +837 -0
- package/test-e2e/node_modules/vite/dist/node/index.d.ts +3867 -0
- package/test-e2e/node_modules/vite/dist/node/index.js +3 -0
- package/test-e2e/node_modules/vite/dist/node/internal.d.ts +2 -0
- package/test-e2e/node_modules/vite/dist/node/internal.js +2 -0
- package/test-e2e/node_modules/vite/dist/node/module-runner.d.ts +315 -0
- package/test-e2e/node_modules/vite/dist/node/module-runner.js +1262 -0
- package/test-e2e/node_modules/vite/misc/false.js +1 -0
- package/test-e2e/node_modules/vite/misc/true.js +1 -0
- package/test-e2e/node_modules/vite/package.json +192 -0
- package/test-e2e/node_modules/vite/types/customEvent.d.ts +79 -0
- package/test-e2e/node_modules/vite/types/hmrPayload.d.ts +80 -0
- package/test-e2e/node_modules/vite/types/hot.d.ts +39 -0
- package/test-e2e/node_modules/vite/types/import-meta.d.ts +5 -0
- package/test-e2e/node_modules/vite/types/importGlob.d.ts +89 -0
- package/test-e2e/node_modules/vite/types/importMeta.d.ts +30 -0
- package/test-e2e/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts +44 -0
- package/test-e2e/node_modules/vite/types/internal/esbuildOptions.d.ts +28 -0
- package/test-e2e/node_modules/vite/types/internal/lightningcssOptions.d.ts +18 -0
- package/test-e2e/node_modules/vite/types/internal/rollupTypeCompat.d.ts +24 -0
- package/test-e2e/node_modules/vite/types/internal/terserOptions.d.ts +11 -0
- package/test-e2e/node_modules/vite/types/metadata.d.ts +47 -0
- package/test-e2e/node_modules/vue/LICENSE +21 -0
- package/test-e2e/node_modules/vue/README.md +58 -0
- package/test-e2e/node_modules/vue/compiler-sfc/index.browser.js +1 -0
- package/test-e2e/node_modules/vue/compiler-sfc/index.browser.mjs +1 -0
- package/test-e2e/node_modules/vue/compiler-sfc/index.d.mts +1 -0
- package/test-e2e/node_modules/vue/compiler-sfc/index.d.ts +1 -0
- package/test-e2e/node_modules/vue/compiler-sfc/index.js +3 -0
- package/test-e2e/node_modules/vue/compiler-sfc/index.mjs +3 -0
- package/test-e2e/node_modules/vue/compiler-sfc/package.json +4 -0
- package/test-e2e/node_modules/vue/compiler-sfc/register-ts.js +3 -0
- package/test-e2e/node_modules/vue/dist/vue.cjs.js +80 -0
- package/test-e2e/node_modules/vue/dist/vue.cjs.prod.js +66 -0
- package/test-e2e/node_modules/vue/dist/vue.d.mts +7 -0
- package/test-e2e/node_modules/vue/dist/vue.d.ts +7 -0
- package/test-e2e/node_modules/vue/dist/vue.esm-browser.js +18708 -0
- package/test-e2e/node_modules/vue/dist/vue.esm-browser.prod.js +13 -0
- package/test-e2e/node_modules/vue/dist/vue.esm-bundler.js +71 -0
- package/test-e2e/node_modules/vue/dist/vue.global.js +18588 -0
- package/test-e2e/node_modules/vue/dist/vue.global.prod.js +13 -0
- package/test-e2e/node_modules/vue/dist/vue.runtime.esm-browser.js +12817 -0
- package/test-e2e/node_modules/vue/dist/vue.runtime.esm-browser.prod.js +7 -0
- package/test-e2e/node_modules/vue/dist/vue.runtime.esm-bundler.js +26 -0
- package/test-e2e/node_modules/vue/dist/vue.runtime.global.js +12871 -0
- package/test-e2e/node_modules/vue/dist/vue.runtime.global.prod.js +7 -0
- package/test-e2e/node_modules/vue/index.js +7 -0
- package/test-e2e/node_modules/vue/index.mjs +1 -0
- package/test-e2e/node_modules/vue/jsx-runtime/index.d.ts +25 -0
- package/test-e2e/node_modules/vue/jsx-runtime/index.js +15 -0
- package/test-e2e/node_modules/vue/jsx-runtime/index.mjs +12 -0
- package/test-e2e/node_modules/vue/jsx-runtime/package.json +5 -0
- package/test-e2e/node_modules/vue/jsx.d.ts +22 -0
- package/test-e2e/node_modules/vue/package.json +112 -0
- package/test-e2e/node_modules/vue/server-renderer/index.d.mts +1 -0
- package/test-e2e/node_modules/vue/server-renderer/index.d.ts +1 -0
- package/test-e2e/node_modules/vue/server-renderer/index.js +1 -0
- package/test-e2e/node_modules/vue/server-renderer/index.mjs +1 -0
- package/test-e2e/node_modules/vue/server-renderer/package.json +4 -0
- package/test-e2e/package-lock.json +1164 -0
- package/test-e2e/package.json +17 -0
- package/test-e2e/vite.config.js +17 -0
- package/test-results/.last-run.json +4 -0
- package/vite.config.js +12 -2
- package/vitest.config.js +1 -1
- package/cypress/support/component-index.html +0 -11
- package/test/01-general.cy.js +0 -348
- /package/{test → test-e2e}/blue.vue +0 -0
- /package/{test → test-e2e}/dummy.vue +0 -0
- /package/{test → test-e2e}/gray.vue +0 -0
- /package/{test → test-e2e}/red.vue +0 -0
|
@@ -0,0 +1,983 @@
|
|
|
1
|
+
//#region node_modules/@peter.naydenov/notice/src/main.js
|
|
2
|
+
function notice() {
|
|
3
|
+
let scroll = { "*": [] }, scrollOnce = {}, ignore = /* @__PURE__ */ new Set(), debugFlag = false, debugHeader = "";
|
|
4
|
+
/**
|
|
5
|
+
* Register a regular event.
|
|
6
|
+
* @param {string|Symbol} e - Name of the event;
|
|
7
|
+
* @param {function} fn - Behaviour that will be assigned to this eventName;
|
|
8
|
+
* @returns void
|
|
9
|
+
*/
|
|
10
|
+
function on(e, fn) {
|
|
11
|
+
if (!scroll[e]) scroll[e] = [];
|
|
12
|
+
scroll[e].push(fn);
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Register a single event that will be triggered only once.
|
|
16
|
+
* @param {string|Symbol} e - Name of the event; the wildcard '*' is not supported.
|
|
17
|
+
* @param {function} fn - Behaviour that will be executed when the event is triggered.
|
|
18
|
+
*/
|
|
19
|
+
function once(e, fn) {
|
|
20
|
+
if (e === "*") return;
|
|
21
|
+
if (!scrollOnce[e]) scrollOnce[e] = [];
|
|
22
|
+
scrollOnce[e].push(fn);
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Remove a behavior (function) related to the specified event.
|
|
26
|
+
* If 'fx' is provided, only that specific function will be removed from the event.
|
|
27
|
+
* If 'fx' is not provided, all functions related to the event will be removed.
|
|
28
|
+
* Works with both regular and single events.
|
|
29
|
+
*
|
|
30
|
+
* @param {string|Symbol} e - Name of the event.
|
|
31
|
+
* @param {function} [fx] - Optional. The specific function to be removed.
|
|
32
|
+
*/
|
|
33
|
+
function off(e, fx) {
|
|
34
|
+
if (fx) {
|
|
35
|
+
if (scroll[e]) scroll[e] = scroll[e].filter((fn) => fn !== fx);
|
|
36
|
+
if (scrollOnce[e]) scrollOnce[e] = scrollOnce[e].filter((fn) => fn !== fx);
|
|
37
|
+
if (scroll[e] && scroll[e].length === 0) delete scroll[e];
|
|
38
|
+
if (scrollOnce[e] && scrollOnce[e].length === 0) delete scroll[e];
|
|
39
|
+
return;
|
|
40
|
+
}
|
|
41
|
+
if (scrollOnce[e]) delete scrollOnce[e];
|
|
42
|
+
if (scroll[e]) delete scroll[e];
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Resets all event-related data structures.
|
|
46
|
+
* Clears all general and single event subscriptions, as well as the ignore list.
|
|
47
|
+
*/
|
|
48
|
+
function reset() {
|
|
49
|
+
scroll = { "*": [] };
|
|
50
|
+
scrollOnce = {};
|
|
51
|
+
ignore = /* @__PURE__ */ new Set();
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Enables or disables debug mode.
|
|
55
|
+
* In debug mode, every triggered event prints a message to the console, including the event name and arguments.
|
|
56
|
+
* The header argument is optional and can be used to provide a prefix string for the debug message.
|
|
57
|
+
* @param {boolean} val - Enable or disable debug mode.
|
|
58
|
+
* @param {string} [header] - Optional. The header string for the debug message.
|
|
59
|
+
* @returns void
|
|
60
|
+
*/
|
|
61
|
+
function debug(val, header) {
|
|
62
|
+
debugFlag = val ? true : false;
|
|
63
|
+
if (header && typeof header === "string") debugHeader = header;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Triggers an event and executes all associated functions.
|
|
67
|
+
*
|
|
68
|
+
* @param {string|Symbol} e - Name of the event to be triggered.
|
|
69
|
+
* @param {...*} [args] - Optional. Arguments to be passed to the callback functions.
|
|
70
|
+
* @returns void
|
|
71
|
+
*/
|
|
72
|
+
function emit() {
|
|
73
|
+
const [e, ...args] = arguments;
|
|
74
|
+
if (debugFlag) {
|
|
75
|
+
console.log(`${debugHeader} Event "${e}" was triggered.`);
|
|
76
|
+
if (args.length > 0) {
|
|
77
|
+
console.log("Arguments:");
|
|
78
|
+
console.log(...args);
|
|
79
|
+
console.log("^----");
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
function exeCallback(name) {
|
|
83
|
+
let stopped = false;
|
|
84
|
+
if (name === "*") return;
|
|
85
|
+
if (ignore.has(name)) return;
|
|
86
|
+
scroll[name].every((fn) => {
|
|
87
|
+
const r = fn(...args);
|
|
88
|
+
if (typeof r !== "string") return true;
|
|
89
|
+
if (r.toUpperCase() === "STOP") {
|
|
90
|
+
stopped = true;
|
|
91
|
+
return false;
|
|
92
|
+
}
|
|
93
|
+
return true;
|
|
94
|
+
});
|
|
95
|
+
if (!stopped) scroll["*"].forEach((fn) => fn(e, ...args));
|
|
96
|
+
}
|
|
97
|
+
if (e === "*") {
|
|
98
|
+
Object.keys(scroll).forEach((name) => exeCallback(name));
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
if (scrollOnce[e]) {
|
|
102
|
+
if (ignore.has(e)) return;
|
|
103
|
+
scrollOnce[e].forEach((fn) => fn(...args));
|
|
104
|
+
delete scrollOnce[e];
|
|
105
|
+
}
|
|
106
|
+
if (scroll[e]) exeCallback(e);
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Enables again specified event.
|
|
110
|
+
*
|
|
111
|
+
* @param {string|Symbol} e - Name of the event to be enabled again; the wildcard '*' is supported.
|
|
112
|
+
* @returns void
|
|
113
|
+
*/
|
|
114
|
+
function start(e) {
|
|
115
|
+
if (e === "*") {
|
|
116
|
+
ignore.clear();
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
ignore.delete(e);
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Temporarily disables specified event.
|
|
123
|
+
*
|
|
124
|
+
* @param {string|Symbol} e - Name of the event to be disabled; the wildcard '*' is supported.
|
|
125
|
+
* @returns void
|
|
126
|
+
*/
|
|
127
|
+
function stop(e) {
|
|
128
|
+
if (e === "*") {
|
|
129
|
+
const evNames = Object.keys(scroll);
|
|
130
|
+
ignore = new Set([...Object.keys(scrollOnce), ...evNames]);
|
|
131
|
+
return;
|
|
132
|
+
}
|
|
133
|
+
ignore.add(e);
|
|
134
|
+
}
|
|
135
|
+
return {
|
|
136
|
+
on,
|
|
137
|
+
once,
|
|
138
|
+
off,
|
|
139
|
+
reset,
|
|
140
|
+
emit,
|
|
141
|
+
stop,
|
|
142
|
+
start,
|
|
143
|
+
debug
|
|
144
|
+
};
|
|
145
|
+
}
|
|
146
|
+
//#endregion
|
|
147
|
+
//#region node_modules/@peter.naydenov/shortcuts/dist/shortcuts.esm.mjs
|
|
148
|
+
var e = {
|
|
149
|
+
_normalizeWithPlugins: function(t, e) {
|
|
150
|
+
return function(t) {
|
|
151
|
+
const n = e.shortcuts;
|
|
152
|
+
Object.keys(n).forEach((e) => {
|
|
153
|
+
Object.entries(n[e]).forEach(([i, o]) => {
|
|
154
|
+
const r = t(i);
|
|
155
|
+
r !== i && (delete n[e][i], n[e][r] = o);
|
|
156
|
+
});
|
|
157
|
+
});
|
|
158
|
+
};
|
|
159
|
+
},
|
|
160
|
+
_readShortcutWithPlugins: function(t, e) {
|
|
161
|
+
return function(n) {
|
|
162
|
+
const { inAPI: i } = t, o = n.split(":")[0].toLowerCase().trim(), r = i._systemAction(o, "none");
|
|
163
|
+
let s = n;
|
|
164
|
+
return -1 !== r && (s = e.plugins[r].shortcutName(n)), s;
|
|
165
|
+
};
|
|
166
|
+
},
|
|
167
|
+
_setupPlugin: function(t, e) {
|
|
168
|
+
const { inAPI: n } = t, { currentContext: i, shortcuts: o, exposeShortcut: r, ERROR_EVENT_NAME: s } = e;
|
|
169
|
+
return function(e) {
|
|
170
|
+
const { prefix: c, _normalizeShortcutName: u, _registerShortcutEvents: l, _listenDOM: a, pluginState: d, deps: p } = e, { resetState: f } = p;
|
|
171
|
+
d.currentContext = i, d.shortcuts = o, d.exposeShortcut = r, d.ERROR_EVENT_NAME = s;
|
|
172
|
+
const h = {
|
|
173
|
+
ev: t.ev,
|
|
174
|
+
extra: t.extra,
|
|
175
|
+
...p
|
|
176
|
+
};
|
|
177
|
+
n._normalizeWithPlugins(u);
|
|
178
|
+
let m = l(h, d);
|
|
179
|
+
const g = a(h, d);
|
|
180
|
+
m > 0 && g.start();
|
|
181
|
+
const v = {
|
|
182
|
+
getPrefix: () => c,
|
|
183
|
+
shortcutName: (t) => u(t),
|
|
184
|
+
contextChange: () => {
|
|
185
|
+
f(), m = l(h, d), m < 1 && g.stop(), m > 0 && g.start();
|
|
186
|
+
},
|
|
187
|
+
mute: () => g.stop(),
|
|
188
|
+
unmute: () => g.start(),
|
|
189
|
+
destroy: () => {
|
|
190
|
+
g.stop(), f();
|
|
191
|
+
}
|
|
192
|
+
};
|
|
193
|
+
return Object.freeze(v), v;
|
|
194
|
+
};
|
|
195
|
+
},
|
|
196
|
+
_systemAction: function(t, e) {
|
|
197
|
+
return function(t, n, i = null) {
|
|
198
|
+
return e.plugins.findIndex((e) => e.getPrefix() === t && (e[n] && e[n](i), !0));
|
|
199
|
+
};
|
|
200
|
+
},
|
|
201
|
+
changeContext: function(t, e) {
|
|
202
|
+
const { shortcuts: n, currentContext: i, ERROR_EVENT_NAME: o } = e, { ev: r } = t;
|
|
203
|
+
return function(t = !1) {
|
|
204
|
+
const s = i.name;
|
|
205
|
+
if (!t) return r.reset(), void (i.name = null);
|
|
206
|
+
s !== t && (n[t] ? (n[s] && r.reset(), i.name = t, e.plugins.forEach((e) => e.contextChange(t)), Object.entries(n[t]).forEach(([t, e]) => {
|
|
207
|
+
t.includes(":SETUP") || e.forEach((e) => r.on(t, e));
|
|
208
|
+
}), r.on("*", (...t) => {
|
|
209
|
+
e.exposeShortcut && e.exposeShortcut(...t);
|
|
210
|
+
})) : r.emit(o, `Context '${t}' does not exist`));
|
|
211
|
+
};
|
|
212
|
+
},
|
|
213
|
+
listShortcuts: function(t, e) {
|
|
214
|
+
const n = e.shortcuts;
|
|
215
|
+
return function(t = null) {
|
|
216
|
+
if (null != t) {
|
|
217
|
+
const e = n[t];
|
|
218
|
+
return null == e ? null : Object.entries(e).map(([t, e]) => t);
|
|
219
|
+
}
|
|
220
|
+
return Object.keys(n).map((t) => {
|
|
221
|
+
const e = {};
|
|
222
|
+
return e.context = t, e.shortcuts = Object.entries(n[t]).map(([t, e]) => t), e;
|
|
223
|
+
});
|
|
224
|
+
};
|
|
225
|
+
},
|
|
226
|
+
load: function(t, e) {
|
|
227
|
+
const { shortcuts: n, plugins: i } = e, { API: { changeContext: o, getContext: r } } = t;
|
|
228
|
+
return function(t) {
|
|
229
|
+
const e = r(), s = i.map((t) => t.getPrefix().toUpperCase());
|
|
230
|
+
let c = !1;
|
|
231
|
+
Object.entries(t).forEach(([t, o]) => {
|
|
232
|
+
t === e && (c = !0), n[t] = {}, Object.entries(o).forEach(([e, o]) => {
|
|
233
|
+
let r = e;
|
|
234
|
+
const c = e.toUpperCase().trim(), u = s.map((t, e) => c.startsWith(t) ? e : null).filter((t) => null !== t);
|
|
235
|
+
if (u.length) r = i[u[0]].shortcutName(e);
|
|
236
|
+
o instanceof Function && (o = [o]), n[t][r] = o;
|
|
237
|
+
});
|
|
238
|
+
}), c && (o(), o(e));
|
|
239
|
+
};
|
|
240
|
+
},
|
|
241
|
+
unload: function(t, e) {
|
|
242
|
+
const { currentContext: n, shortcuts: i, ERROR_EVENT_NAME: o } = e, { ev: r } = t;
|
|
243
|
+
return function(t) {
|
|
244
|
+
n.name !== t ? i[t] ? delete i[t] : r.emit(o, `Context '${t}' does not exist`) : r.emit(o, `Context '${t}' can't be removed during is current active context. Change the context first`);
|
|
245
|
+
};
|
|
246
|
+
}
|
|
247
|
+
};
|
|
248
|
+
function n(t, e) {
|
|
249
|
+
const { ev: n, _specialChars: i, _readKeyEvent: o, extra: r, resetState: s } = t, { currentContext: c, streamKeys: u, listenOptions: l } = e;
|
|
250
|
+
let a = [], d = null, p = !0, f = !1;
|
|
251
|
+
const h = () => p = !1, m = () => p = !0, g = () => f = !0, v = () => !1 === p;
|
|
252
|
+
function x() {
|
|
253
|
+
const t = a.map((t) => [t.join("+")]), i = {
|
|
254
|
+
wait: h,
|
|
255
|
+
end: m,
|
|
256
|
+
ignore: g,
|
|
257
|
+
isWaiting: v,
|
|
258
|
+
note: c.note,
|
|
259
|
+
context: c.name,
|
|
260
|
+
dependencies: r,
|
|
261
|
+
options: e.listenOptions,
|
|
262
|
+
viewport: {
|
|
263
|
+
X: window.scrollX,
|
|
264
|
+
Y: window.scrollY,
|
|
265
|
+
width: window.innerWidth,
|
|
266
|
+
height: window.innerHeight
|
|
267
|
+
},
|
|
268
|
+
type: "key"
|
|
269
|
+
};
|
|
270
|
+
if (!p) {
|
|
271
|
+
const e = `KEY:${t.at(-1).join("+")}`;
|
|
272
|
+
n.emit(e, i), f && (a = a.slice(0, -1), f = !1);
|
|
273
|
+
}
|
|
274
|
+
if (p) {
|
|
275
|
+
const o = `KEY:${t.join(",")}`;
|
|
276
|
+
n.emit(o, i), f && (a = a.slice(0, -1), f = !1), a = [], clearTimeout(e.keyIgnore), e.keyIgnore = null, clearTimeout(d), d = null;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
function E(n) {
|
|
280
|
+
clearTimeout(d);
|
|
281
|
+
if (i().hasOwnProperty(n.code)) return a.push(o(n, i)), u && u({
|
|
282
|
+
key: n.key,
|
|
283
|
+
context: c.name,
|
|
284
|
+
note: c.note,
|
|
285
|
+
dependencies: t.extra
|
|
286
|
+
}), e.keyIgnore ? (clearTimeout(e.keyIgnore), e.keyIgnore = setTimeout(() => e.keyIgnore = null, l.keyWait), void a.pop()) : p && a.length === e.maxSequence ? (x(), void (e.keyIgnore = setTimeout(() => e.keyIgnore = null, l.keyWait))) : void (p ? d = setTimeout(x, l.keyWait) : x());
|
|
287
|
+
}
|
|
288
|
+
function O(n) {
|
|
289
|
+
if (!i().hasOwnProperty(n.code)) {
|
|
290
|
+
if (clearTimeout(d), u && u({
|
|
291
|
+
key: n.key,
|
|
292
|
+
context: c.name,
|
|
293
|
+
note: c.note,
|
|
294
|
+
dependencies: t.extra
|
|
295
|
+
}), e.keyIgnore) return clearTimeout(e.keyIgnore), void (e.keyIgnore = setTimeout(() => e.keyIgnore = null, l.keyWait));
|
|
296
|
+
if (a.push(o(n, i)), p && a.length === e.maxSequence) return x(), void (e.keyIgnore = setTimeout(() => e.keyIgnore = null, l.keyWait));
|
|
297
|
+
p ? d = setTimeout(x, l.keyWait) : x();
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
return {
|
|
301
|
+
start: function() {
|
|
302
|
+
e.active || (document.addEventListener("keydown", E), document.addEventListener("keypress", O), e.active = !0);
|
|
303
|
+
},
|
|
304
|
+
stop: function() {
|
|
305
|
+
e.active && (document.removeEventListener("keydown", E), document.removeEventListener("keypress", O), e.active = !1, d && (clearTimeout(d), d = null), e.keyIgnore && (clearTimeout(e.keyIgnore), e.keyIgnore = null), a = [], p = !0, f = !1);
|
|
306
|
+
}
|
|
307
|
+
};
|
|
308
|
+
}
|
|
309
|
+
function i(t) {
|
|
310
|
+
const e = t.toUpperCase(), n = /KEY\s*\:/i.test(e), i = e.indexOf(":");
|
|
311
|
+
if (!n) return t;
|
|
312
|
+
if (e.includes("SETUP")) return "KEY:SETUP";
|
|
313
|
+
return `KEY:${e.slice(i + 1).split(",").map((t) => t.trim()).map((t) => t.split("+").map((t) => t.trim()).sort().join("+")).join(",")}`;
|
|
314
|
+
}
|
|
315
|
+
function o(t, e) {
|
|
316
|
+
const { shiftKey: n, altKey: i, ctrlKey: o } = t, r = e(), s = t.code.replace("Key", "").replace("Digit", ""), c = [];
|
|
317
|
+
return o && c.push("CTRL"), n && c.push("SHIFT"), i && c.push("ALT"), r.hasOwnProperty(s) ? c.push(r[s].toUpperCase()) : [
|
|
318
|
+
"ControlLeft",
|
|
319
|
+
"ControlRight",
|
|
320
|
+
"ShiftLeft",
|
|
321
|
+
"ShiftRight",
|
|
322
|
+
"AltLeft",
|
|
323
|
+
"AltRight",
|
|
324
|
+
"Meta"
|
|
325
|
+
].includes(s) || c.push(s.toUpperCase()), c.sort();
|
|
326
|
+
}
|
|
327
|
+
function r(t, e) {
|
|
328
|
+
let n = 0, i = !1;
|
|
329
|
+
const o = e.defaultOptions, { regex: r } = t, { currentContext: { name: s }, shortcuts: c } = e;
|
|
330
|
+
return null == s ? 0 : (Object.entries(c[s]).forEach(([s, c]) => {
|
|
331
|
+
if (!r.test(s)) return;
|
|
332
|
+
if ("KEY:SETUP" === s) {
|
|
333
|
+
i = !0;
|
|
334
|
+
const n = c.reduce((n, i) => {
|
|
335
|
+
const o = i({
|
|
336
|
+
dependencies: t.extra,
|
|
337
|
+
defaults: structuredClone(e.defaultOptions),
|
|
338
|
+
options: e.listenOptions
|
|
339
|
+
});
|
|
340
|
+
return Object.assign(n, o);
|
|
341
|
+
}, o);
|
|
342
|
+
Object.assign(e.listenOptions, n);
|
|
343
|
+
return;
|
|
344
|
+
}
|
|
345
|
+
n++;
|
|
346
|
+
const u = s.slice(4).split(",").length;
|
|
347
|
+
e.maxSequence < u && (e.maxSequence = u);
|
|
348
|
+
}), i || Object.assign(e.listenOptions, o), n);
|
|
349
|
+
}
|
|
350
|
+
function s() {
|
|
351
|
+
return {
|
|
352
|
+
ArrowLeft: "LEFT",
|
|
353
|
+
ArrowUp: "UP",
|
|
354
|
+
ArrowRight: "RIGHT",
|
|
355
|
+
ArrowDown: "DOWN",
|
|
356
|
+
Enter: "ENTER",
|
|
357
|
+
NumpadEnter: "ENTER",
|
|
358
|
+
Escape: "ESC",
|
|
359
|
+
Backspace: "BACKSPACE",
|
|
360
|
+
Space: "SPACE",
|
|
361
|
+
Tab: "TAB",
|
|
362
|
+
Backquote: "`",
|
|
363
|
+
BracketLeft: "[",
|
|
364
|
+
BracketRight: "]",
|
|
365
|
+
Equal: "=",
|
|
366
|
+
Slash: "/",
|
|
367
|
+
Backslash: "\\",
|
|
368
|
+
IntlBackslash: "`",
|
|
369
|
+
F1: "F1",
|
|
370
|
+
F2: "F2",
|
|
371
|
+
F3: "F3",
|
|
372
|
+
F4: "F4",
|
|
373
|
+
F5: "F5",
|
|
374
|
+
F6: "F6",
|
|
375
|
+
F7: "F7",
|
|
376
|
+
F8: "F8",
|
|
377
|
+
F9: "F9",
|
|
378
|
+
F10: "F10",
|
|
379
|
+
F11: "F11",
|
|
380
|
+
F12: "F12"
|
|
381
|
+
};
|
|
382
|
+
}
|
|
383
|
+
function c(t, e = {}) {
|
|
384
|
+
const c = {
|
|
385
|
+
_specialChars: s,
|
|
386
|
+
_readKeyEvent: o,
|
|
387
|
+
regex: /KEY\s*\:/i
|
|
388
|
+
}, u = {
|
|
389
|
+
active: !1,
|
|
390
|
+
maxSequence: 1,
|
|
391
|
+
keyIgnore: null,
|
|
392
|
+
defaultOptions: { keyWait: 480 },
|
|
393
|
+
listenOptions: { keyWait: 480 },
|
|
394
|
+
streamKeys: !(!e.streamKeys || "function" != typeof e.streamKeys) && e.streamKeys
|
|
395
|
+
};
|
|
396
|
+
return c.resetState = function() {
|
|
397
|
+
u.active = !1, u.keyIgnore = null, u.maxSequence = 1;
|
|
398
|
+
}, t({
|
|
399
|
+
prefix: "key",
|
|
400
|
+
_normalizeShortcutName: i,
|
|
401
|
+
_registerShortcutEvents: r,
|
|
402
|
+
_listenDOM: n,
|
|
403
|
+
pluginState: u,
|
|
404
|
+
deps: c
|
|
405
|
+
});
|
|
406
|
+
}
|
|
407
|
+
function u(t, e, n) {
|
|
408
|
+
const { listenOptions: { clickTarget: i } } = e, o = n;
|
|
409
|
+
if (o === document.body) return null;
|
|
410
|
+
return i.some((t) => o.hasAttribute(t)) ? o : u(t, e, o.parentNode);
|
|
411
|
+
}
|
|
412
|
+
function l(t, e) {
|
|
413
|
+
const { ev: n, _findTarget: i, _readClickEvent: o, extra: r } = t, { listenOptions: s, currentContext: c } = e;
|
|
414
|
+
let u = null, l = null, a = null, d = null, p = 0;
|
|
415
|
+
function f() {
|
|
416
|
+
if (!u) return;
|
|
417
|
+
const { left: t, top: i, width: s, height: f } = u.getBoundingClientRect(), h = window.scrollX, m = window.scrollY, g = o(l, p), v = {
|
|
418
|
+
target: u,
|
|
419
|
+
x: l.clientX,
|
|
420
|
+
y: l.clientY,
|
|
421
|
+
context: c.name,
|
|
422
|
+
note: c.note,
|
|
423
|
+
options: e.listenOptions,
|
|
424
|
+
event: l,
|
|
425
|
+
dependencies: r,
|
|
426
|
+
viewport: {
|
|
427
|
+
X: h,
|
|
428
|
+
Y: m,
|
|
429
|
+
width: window.innerWidth,
|
|
430
|
+
height: window.innerHeight
|
|
431
|
+
},
|
|
432
|
+
sizes: {
|
|
433
|
+
width: s,
|
|
434
|
+
height: f
|
|
435
|
+
},
|
|
436
|
+
position: {
|
|
437
|
+
x: t,
|
|
438
|
+
y: i
|
|
439
|
+
},
|
|
440
|
+
pagePosition: {
|
|
441
|
+
x: t + h,
|
|
442
|
+
y: i + m
|
|
443
|
+
},
|
|
444
|
+
type: "click"
|
|
445
|
+
};
|
|
446
|
+
n.emit(g, v), a = null, d = null, u = null, l = null, p = 0;
|
|
447
|
+
}
|
|
448
|
+
function h(n) {
|
|
449
|
+
let o = e.maxLeftClicks;
|
|
450
|
+
if (clearTimeout(a), d) return clearTimeout(d), void (d = setTimeout(() => d = null, s.mouseWait));
|
|
451
|
+
if (u = i(t, e, n.target), null != u) {
|
|
452
|
+
if (u && u.dataset.hasOwnProperty("quickClick") && (o = 1), u && "A" === u.tagName && (o = 1), l = n, p++, p >= o) return f(), void (o > 1 && (d = setTimeout(() => d = null, s.mouseWait)));
|
|
453
|
+
a = setTimeout(f, s.mouseWait);
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
function m(n) {
|
|
457
|
+
let o = e.maxRightClicks;
|
|
458
|
+
if (clearTimeout(a), d) return clearTimeout(d), void (d = setTimeout(() => d = null, s.mouseWait));
|
|
459
|
+
if (u = i(t, e, n.target), null != u) {
|
|
460
|
+
if (u && u.dataset.hasOwnProperty("quickClick") && (o = 1), u && "A" === u.tagName && (o = 1), l = n, p++, p >= o) return f(), void (o > 1 && (d = setTimeout(() => d = null, s.mouseWait)));
|
|
461
|
+
a = setTimeout(f, s.mouseWait);
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
return {
|
|
465
|
+
start: function() {
|
|
466
|
+
e.active || (window.addEventListener("contextmenu", m), document.addEventListener("click", h), e.active = !0);
|
|
467
|
+
},
|
|
468
|
+
stop: function() {
|
|
469
|
+
e.active && (window.removeEventListener("contextmenu", m), document.removeEventListener("click", h), e.active = !1, d && (clearTimeout(d), d = null), u = null, l = null, p = 0);
|
|
470
|
+
}
|
|
471
|
+
};
|
|
472
|
+
}
|
|
473
|
+
function a(t) {
|
|
474
|
+
const e = t.toUpperCase(), n = /CLICK\s*\:/i.test(e), i = [
|
|
475
|
+
"LEFT",
|
|
476
|
+
"MIDDLE",
|
|
477
|
+
"RIGHT"
|
|
478
|
+
], o = [
|
|
479
|
+
"ALT",
|
|
480
|
+
"SHIFT",
|
|
481
|
+
"CTRL"
|
|
482
|
+
];
|
|
483
|
+
let r = null, s = 0;
|
|
484
|
+
const c = [], u = e.indexOf(":");
|
|
485
|
+
if (!n) return t;
|
|
486
|
+
if (e.includes("SETUP")) return "CLICK:SETUP";
|
|
487
|
+
return e.slice(u + 1).trim().split("-").map((t) => t.trim()).forEach((t) => {
|
|
488
|
+
i.includes(t) ? r = t : o.includes(t) ? c.push(t) : isNaN(t) || (s = t);
|
|
489
|
+
}), `CLICK:${r}-${s}${c.length > 0 ? "-" : ""}${c.sort().join("-")}`;
|
|
490
|
+
}
|
|
491
|
+
function d(t, e) {
|
|
492
|
+
const { shiftKey: n, altKey: i, ctrlKey: o, key: r, button: s } = t, c = `CLICK:${[
|
|
493
|
+
"LEFT",
|
|
494
|
+
"MIDDLE",
|
|
495
|
+
"RIGHT"
|
|
496
|
+
][s]}-${e}`, u = [];
|
|
497
|
+
return o && u.push("CTRL"), n && u.push("SHIFT"), i && u.push("ALT"), u.length > 0 ? `${c}${u.length > 0 ? "-" : ""}${u.sort().join("-")}` : `${c}`;
|
|
498
|
+
}
|
|
499
|
+
function p(t, e) {
|
|
500
|
+
let n = 0, i = !1;
|
|
501
|
+
const o = e.defaultOptions, { regex: r } = t, { listenOptions: s, currentContext: { name: c }, shortcuts: u } = e;
|
|
502
|
+
return null == c || (Object.entries(u[c]).forEach(([c, u]) => {
|
|
503
|
+
if (!r.test(c)) return;
|
|
504
|
+
if ("CLICK:SETUP" === c) {
|
|
505
|
+
i = !0;
|
|
506
|
+
const n = u.reduce((n, i) => {
|
|
507
|
+
const o = i({
|
|
508
|
+
dependencies: t.extra,
|
|
509
|
+
defaults: structuredClone(e.defaultOptions),
|
|
510
|
+
options: s
|
|
511
|
+
});
|
|
512
|
+
return Object.assign(n, o);
|
|
513
|
+
}, o);
|
|
514
|
+
Object.assign(e.listenOptions, n);
|
|
515
|
+
return;
|
|
516
|
+
}
|
|
517
|
+
n++;
|
|
518
|
+
const [l, a] = c.slice(6).split("-");
|
|
519
|
+
"LEFT" === l && e.maxLeftClicks < a && (e.maxLeftClicks = a), "RIGHT" === l && e.maxRightClicks < a && (e.maxRightClicks = a);
|
|
520
|
+
}), i || Object.assign(e.listenOptions, o)), n;
|
|
521
|
+
}
|
|
522
|
+
function f(t, e = {}) {
|
|
523
|
+
const n = {
|
|
524
|
+
_findTarget: u,
|
|
525
|
+
_readClickEvent: d,
|
|
526
|
+
regex: /CLICK\s*\:/i
|
|
527
|
+
}, i = {
|
|
528
|
+
active: !1,
|
|
529
|
+
maxLeftClicks: 1,
|
|
530
|
+
maxRightClicks: 1,
|
|
531
|
+
defaultOptions: {
|
|
532
|
+
mouseWait: 320,
|
|
533
|
+
clickTarget: ["data-click", "href"]
|
|
534
|
+
},
|
|
535
|
+
listenOptions: {
|
|
536
|
+
mouseWait: 320,
|
|
537
|
+
clickTarget: ["data-click", "href"]
|
|
538
|
+
},
|
|
539
|
+
streamKeys: !(!e.streamKeys || "function" != typeof e.streamKeys) && e.streamKeys
|
|
540
|
+
};
|
|
541
|
+
return n.resetState = function() {}, t({
|
|
542
|
+
prefix: "click",
|
|
543
|
+
_normalizeShortcutName: a,
|
|
544
|
+
_registerShortcutEvents: p,
|
|
545
|
+
_listenDOM: l,
|
|
546
|
+
pluginState: i,
|
|
547
|
+
deps: n
|
|
548
|
+
});
|
|
549
|
+
}
|
|
550
|
+
function h(t, e) {
|
|
551
|
+
const { ev: n } = t;
|
|
552
|
+
let i = null;
|
|
553
|
+
function o(t, e, n, i) {
|
|
554
|
+
const { left: o, top: r, width: s, height: c } = n.target.getBoundingClientRect(), u = window.scrollX, l = window.scrollY;
|
|
555
|
+
return {
|
|
556
|
+
target: n.target,
|
|
557
|
+
context: e.currentContext.name,
|
|
558
|
+
note: e.currentContext.note,
|
|
559
|
+
event: n,
|
|
560
|
+
dependencies: t.extra,
|
|
561
|
+
options: e.listenOptions,
|
|
562
|
+
viewport: {
|
|
563
|
+
X: u,
|
|
564
|
+
Y: l,
|
|
565
|
+
width: window.innerWidth,
|
|
566
|
+
height: window.innerHeight
|
|
567
|
+
},
|
|
568
|
+
sizes: {
|
|
569
|
+
width: s,
|
|
570
|
+
height: c
|
|
571
|
+
},
|
|
572
|
+
position: {
|
|
573
|
+
x: o,
|
|
574
|
+
y: r
|
|
575
|
+
},
|
|
576
|
+
pagePosition: {
|
|
577
|
+
x: o + u,
|
|
578
|
+
y: r + l
|
|
579
|
+
},
|
|
580
|
+
type: i
|
|
581
|
+
};
|
|
582
|
+
}
|
|
583
|
+
function r(i) {
|
|
584
|
+
const { callbacks: r, typeFn: s } = e;
|
|
585
|
+
i.target;
|
|
586
|
+
const c = o(t, e, i, "form-in"), u = `${s(c)}/in`;
|
|
587
|
+
null != r[u] && n.emit(u, c, r[u]);
|
|
588
|
+
}
|
|
589
|
+
function s(i) {
|
|
590
|
+
const { callbacks: r, typeFn: s } = e, c = o(t, e, i, "form-out"), u = `${s(c)}/out`;
|
|
591
|
+
null != r[u] && n.emit(u, c, r[u]);
|
|
592
|
+
}
|
|
593
|
+
function c(r) {
|
|
594
|
+
const { callbacks: s, typeFn: c } = e, u = o(t, e, r, "form-instant"), l = c(u), a = e.wait[`${l}`], d = `${l}/instant`;
|
|
595
|
+
if (null == s[d]) return;
|
|
596
|
+
if (0 === a) return void n.emit(d, u, s[d]);
|
|
597
|
+
clearTimeout(i), i = setTimeout(() => n.emit(d, u, s[d]), a);
|
|
598
|
+
}
|
|
599
|
+
return {
|
|
600
|
+
start: function() {
|
|
601
|
+
e.active || (document.addEventListener("focusin", r), document.addEventListener("focusout", s), document.addEventListener("input", c), e.active = !0);
|
|
602
|
+
},
|
|
603
|
+
stop: function() {
|
|
604
|
+
e.active && (document.removeEventListener("focusin", r), document.removeEventListener("focusout", s), document.removeEventListener("input", c), e.active = !1, i && (clearTimeout(i), i = null));
|
|
605
|
+
}
|
|
606
|
+
};
|
|
607
|
+
}
|
|
608
|
+
function m(t) {
|
|
609
|
+
const e = t.toUpperCase(), n = /FORM\s*\:/i.test(e), i = e.indexOf(":");
|
|
610
|
+
if (!n) return t;
|
|
611
|
+
return `FORM:${e.slice(i + 1).trim()}`;
|
|
612
|
+
}
|
|
613
|
+
function g(t, e) {
|
|
614
|
+
const { regex: n, _defaults: i, ev: o } = t, { currentContext: { name: r, note: s }, shortcuts: c, callbacks: u, ERROR_EVENT_NAME: l, defaultOptions: a } = e;
|
|
615
|
+
let d = [], p = [], f = [], h = 0;
|
|
616
|
+
if (null == r) return !1;
|
|
617
|
+
if (Object.entries(c[r]).forEach(([i, o]) => {
|
|
618
|
+
if (n.test(i)) {
|
|
619
|
+
if (i.includes("SETUP")) {
|
|
620
|
+
const n = o.reduce((n, i) => {
|
|
621
|
+
const o = i({
|
|
622
|
+
dependencies: t.extra,
|
|
623
|
+
defaults: structuredClone(e.defaultOptions),
|
|
624
|
+
options: e.listenOptions
|
|
625
|
+
});
|
|
626
|
+
return Object.assign(n, o);
|
|
627
|
+
}, a);
|
|
628
|
+
Object.assign(e.listenOptions, n);
|
|
629
|
+
return;
|
|
630
|
+
}
|
|
631
|
+
"FORM:WATCH" === i && (d = o), "FORM:DEFINE" === i && (p = o), "FORM:ACTION" === i && (f = o);
|
|
632
|
+
}
|
|
633
|
+
}), 0 === f.length) return h;
|
|
634
|
+
const m = /* @__PURE__ */ new Set();
|
|
635
|
+
0 === p.length && (p = [i.define]), 0 === d.length && (d = [i.watch]);
|
|
636
|
+
const g = d.map((n) => n({
|
|
637
|
+
dependencies: t.extra,
|
|
638
|
+
context: r,
|
|
639
|
+
note: s,
|
|
640
|
+
options: e.listenOptions
|
|
641
|
+
})).reduce((t, e) => (t.push(e), t), []);
|
|
642
|
+
return e.watchList = document.querySelectorAll(g), e.watchList.forEach((n) => {
|
|
643
|
+
const { left: i, top: o, width: c, height: u } = n.getBoundingClientRect(), l = window.scrollX, a = window.scrollY;
|
|
644
|
+
return m.add(p[0]({
|
|
645
|
+
target: n,
|
|
646
|
+
context: r,
|
|
647
|
+
note: s,
|
|
648
|
+
dependencies: t.extra,
|
|
649
|
+
options: e.listenOptions,
|
|
650
|
+
viewport: {
|
|
651
|
+
X: l,
|
|
652
|
+
Y: a,
|
|
653
|
+
width: window.innerWidth,
|
|
654
|
+
height: window.innerHeight
|
|
655
|
+
},
|
|
656
|
+
sizes: {
|
|
657
|
+
width: c,
|
|
658
|
+
height: u
|
|
659
|
+
},
|
|
660
|
+
position: {
|
|
661
|
+
x: i,
|
|
662
|
+
y: o
|
|
663
|
+
},
|
|
664
|
+
pagePosition: {
|
|
665
|
+
x: i + l,
|
|
666
|
+
y: o + a
|
|
667
|
+
}
|
|
668
|
+
}));
|
|
669
|
+
}), e.typeFn = p[0] ? p[0] : i.define, f.forEach((n) => {
|
|
670
|
+
if (!(n instanceof Function)) return o.emit(l, "The 'form:action' should be a function."), !1;
|
|
671
|
+
const i = n({
|
|
672
|
+
dependencies: t.extra,
|
|
673
|
+
options: e.listenOptions
|
|
674
|
+
});
|
|
675
|
+
if (!(i instanceof Array)) return o.emit(l, "Warning: The 'form:action' function should RETURN an array."), !1;
|
|
676
|
+
i.forEach(({ fn: t, type: n, timing: i, wait: r = 0 }) => {
|
|
677
|
+
if (m.has(n) && t instanceof Function) {
|
|
678
|
+
const e = `${n}/${i}`, r = u.hasOwnProperty(e);
|
|
679
|
+
r ? u[e].push(t) : u[e] = [t], r || o.on(e, (t, e) => {
|
|
680
|
+
e.forEach((e) => {
|
|
681
|
+
e instanceof Function && e(t);
|
|
682
|
+
});
|
|
683
|
+
});
|
|
684
|
+
}
|
|
685
|
+
"instant" === i && (e.wait[`${n}`] = r);
|
|
686
|
+
});
|
|
687
|
+
}), h = Object.keys(e.callbacks).length, h;
|
|
688
|
+
}
|
|
689
|
+
var v = {
|
|
690
|
+
watch: () => "input, select, textarea, button, a",
|
|
691
|
+
define: ({ target: t }) => "checkbox" === t.type || "radio" === t.type ? "checkbox" : "button" == t.type || "submit" == t.type ? "button" : "input"
|
|
692
|
+
};
|
|
693
|
+
function x(t, e = {}) {
|
|
694
|
+
const n = {
|
|
695
|
+
_defaults: v,
|
|
696
|
+
regex: /FORM\s*\:/i
|
|
697
|
+
}, i = {
|
|
698
|
+
callbacks: {},
|
|
699
|
+
typeFn: "",
|
|
700
|
+
watchList: [],
|
|
701
|
+
wait: {},
|
|
702
|
+
defaultOptions: {},
|
|
703
|
+
listenOptions: {}
|
|
704
|
+
};
|
|
705
|
+
return n.resetState = function() {
|
|
706
|
+
i.callbacks = {}, i.typeFn = "", i.watchList = [], i.wait = {};
|
|
707
|
+
}, t({
|
|
708
|
+
prefix: "form",
|
|
709
|
+
_normalizeShortcutName: m,
|
|
710
|
+
_registerShortcutEvents: g,
|
|
711
|
+
_listenDOM: h,
|
|
712
|
+
pluginState: i,
|
|
713
|
+
deps: n
|
|
714
|
+
});
|
|
715
|
+
}
|
|
716
|
+
function E(t, e, n) {
|
|
717
|
+
const { listenOptions: { hoverTarget: i } } = e, o = n;
|
|
718
|
+
if (o === document.body) return !1;
|
|
719
|
+
if (o === document) return !1;
|
|
720
|
+
return i.some((t) => o.hasAttribute(t)) ? o : E(t, e, o.parentNode);
|
|
721
|
+
}
|
|
722
|
+
function O(t, e) {
|
|
723
|
+
const { ev: n, _findTarget: i, resetState: o, extra: r } = t;
|
|
724
|
+
function s(o) {
|
|
725
|
+
const s = o.clientX, c = o.clientY, { hovered: u, hoverRectangle: l, listenOptions: a, hoverTimer: d, leaveTimer: p, lastEvent: f, lastHoverTarget: h } = e, m = i(t, e, o.target);
|
|
726
|
+
if (!function(t, e, n) {
|
|
727
|
+
return !!t && e >= t.left && e <= t.right && n >= t.top && n <= t.bottom;
|
|
728
|
+
}(l, s, c) && m !== u) {
|
|
729
|
+
if (u && !m) {
|
|
730
|
+
if (e.hovered = !1, e.hoverRectangle = null, d && (clearTimeout(d), e.hoverTimer = null), "off" === f) return;
|
|
731
|
+
e.leaveTimer = setTimeout(() => {
|
|
732
|
+
n.emit("HOVER:OFF", g(u)), e.leaveTimer = null, e.lastEvent = "off";
|
|
733
|
+
}, a.wait);
|
|
734
|
+
return;
|
|
735
|
+
}
|
|
736
|
+
u && (n.emit("HOVER:OFF", g(u)), e.leaveTimer = null, e.lastEvent = "off"), clearTimeout(p), clearTimeout(d), e.hovered = m, e.hoverRectangle = m.getBoundingClientRect(), e.hoverTimer = setTimeout(() => {
|
|
737
|
+
n.emit("HOVER:ON", g(m)), e.hoverTimer = null, e.lastHoverTarget = m, e.lastEvent = "on";
|
|
738
|
+
}, a.wait);
|
|
739
|
+
}
|
|
740
|
+
function g(t) {
|
|
741
|
+
const { left: n, top: i, width: s, height: c } = t.getBoundingClientRect(), u = window.scrollX, l = window.scrollY;
|
|
742
|
+
return {
|
|
743
|
+
target: t,
|
|
744
|
+
context: e.currentContext.name,
|
|
745
|
+
note: e.currentContext.note,
|
|
746
|
+
event: o,
|
|
747
|
+
dependencies: r,
|
|
748
|
+
options: e.listenOptions,
|
|
749
|
+
viewport: {
|
|
750
|
+
X: u,
|
|
751
|
+
Y: l,
|
|
752
|
+
width: window.innerWidth,
|
|
753
|
+
height: window.innerHeight
|
|
754
|
+
},
|
|
755
|
+
sizes: {
|
|
756
|
+
width: s,
|
|
757
|
+
height: c
|
|
758
|
+
},
|
|
759
|
+
position: {
|
|
760
|
+
x: n,
|
|
761
|
+
y: i
|
|
762
|
+
},
|
|
763
|
+
pagePosition: {
|
|
764
|
+
x: n + u,
|
|
765
|
+
y: i + l
|
|
766
|
+
},
|
|
767
|
+
type: "hover"
|
|
768
|
+
};
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
return {
|
|
772
|
+
start: function() {
|
|
773
|
+
e.active || (document.addEventListener("mousemove", s), e.active = !0);
|
|
774
|
+
},
|
|
775
|
+
stop: function() {
|
|
776
|
+
e.active && (document.removeEventListener("mousemove", s), o());
|
|
777
|
+
}
|
|
778
|
+
};
|
|
779
|
+
}
|
|
780
|
+
function y(t) {
|
|
781
|
+
const e = t.toUpperCase(), n = /HOVER\s*\:/i.test(e), i = e.indexOf(":");
|
|
782
|
+
if (!n) return t;
|
|
783
|
+
return `HOVER:${e.slice(i + 1).trim()}`;
|
|
784
|
+
}
|
|
785
|
+
function w(t, e) {
|
|
786
|
+
let n = 0, i = !1;
|
|
787
|
+
const o = e.defaultOptions, { regex: r, _defaults: s, ev: c } = t, { currentContext: { name: u }, shortcuts: l, ERROR_EVENT_NAME: a } = e;
|
|
788
|
+
return null == u || (Object.entries(l[u]).forEach(([s, c]) => {
|
|
789
|
+
if (r.test(s)) {
|
|
790
|
+
if ("HOVER:SETUP" === s) {
|
|
791
|
+
i = !0;
|
|
792
|
+
const n = c.reduce((n, i) => {
|
|
793
|
+
const o = i({
|
|
794
|
+
dependencies: t.extra,
|
|
795
|
+
defaults: structuredClone(e.defaultOptions),
|
|
796
|
+
options: e.listenOptions
|
|
797
|
+
});
|
|
798
|
+
return Object.assign(n, o);
|
|
799
|
+
}, o);
|
|
800
|
+
Object.assign(e.listenOptions, n);
|
|
801
|
+
return;
|
|
802
|
+
}
|
|
803
|
+
n++;
|
|
804
|
+
}
|
|
805
|
+
}), i || Object.assign(e.listenOptions, o)), n;
|
|
806
|
+
}
|
|
807
|
+
function T(t, e = {}) {
|
|
808
|
+
const n = {
|
|
809
|
+
_findTarget: E,
|
|
810
|
+
regex: /HOVER\s*\:/i
|
|
811
|
+
}, i = {
|
|
812
|
+
active: !1,
|
|
813
|
+
hovered: !1,
|
|
814
|
+
hoverRectangle: null,
|
|
815
|
+
hoverTimer: null,
|
|
816
|
+
leaveTimer: null,
|
|
817
|
+
lastEvent: "",
|
|
818
|
+
lastHoverTarget: null,
|
|
819
|
+
defaultOptions: {
|
|
820
|
+
hoverTarget: ["data-hover"],
|
|
821
|
+
wait: 320
|
|
822
|
+
},
|
|
823
|
+
listenOptions: {
|
|
824
|
+
hoverTarget: ["data-hover"],
|
|
825
|
+
wait: 320
|
|
826
|
+
}
|
|
827
|
+
};
|
|
828
|
+
return n.resetState = function() {
|
|
829
|
+
i.active = !1, i.hovered = !1, i.hoverRectangle = null, clearTimeout(i.hoverTimer), clearTimeout(i.leaveTimer), i.hoverTimer = null, i.leaveTimer = null, i.lastHoverTarget = null;
|
|
830
|
+
}, t({
|
|
831
|
+
prefix: "hover",
|
|
832
|
+
_normalizeShortcutName: y,
|
|
833
|
+
_registerShortcutEvents: w,
|
|
834
|
+
_listenDOM: O,
|
|
835
|
+
pluginState: i,
|
|
836
|
+
deps: n
|
|
837
|
+
});
|
|
838
|
+
}
|
|
839
|
+
function C(t, e) {
|
|
840
|
+
const { ev: n, resetState: i, extra: o } = t;
|
|
841
|
+
let r = null, s = null;
|
|
842
|
+
function c(t) {
|
|
843
|
+
t.clientX, t.clientY;
|
|
844
|
+
const { lastPosition: i, lastDirection: c, listenOptions: u, currentContext: l } = e, { scrollWait: a, endScrollWait: d, minSpace: p } = u;
|
|
845
|
+
if (!i) return;
|
|
846
|
+
let f = null;
|
|
847
|
+
const h = window.scrollX, m = window.scrollY, g = Math.abs(m - i.y), v = Math.abs(h - i.x);
|
|
848
|
+
if (g < p && v < p) return;
|
|
849
|
+
const x = [];
|
|
850
|
+
g >= p && (m > i.y ? x.push("down") : x.push("up")), v >= p && (h > i.x ? x.push("right") : x.push("left")), f = x[0] || null;
|
|
851
|
+
const E = (t) => ({
|
|
852
|
+
x: h,
|
|
853
|
+
y: m,
|
|
854
|
+
direction: t,
|
|
855
|
+
context: l.name,
|
|
856
|
+
note: l.note,
|
|
857
|
+
dependencies: o,
|
|
858
|
+
options: e.listenOptions,
|
|
859
|
+
viewport: {
|
|
860
|
+
X: h,
|
|
861
|
+
Y: m,
|
|
862
|
+
width: window.innerWidth,
|
|
863
|
+
height: window.innerHeight
|
|
864
|
+
},
|
|
865
|
+
type: "scroll"
|
|
866
|
+
});
|
|
867
|
+
x.forEach((t) => {
|
|
868
|
+
const e = `SCROLL:${t.toUpperCase()}`;
|
|
869
|
+
n.emit(e, E(t));
|
|
870
|
+
}), clearTimeout(r), clearTimeout(s);
|
|
871
|
+
const O = x[x.length - 1] || null;
|
|
872
|
+
r = setTimeout(() => {}, a), s = setTimeout(() => n.emit("SCROLL:END", E(O)), d), e.lastPosition = {
|
|
873
|
+
x: h,
|
|
874
|
+
y: m
|
|
875
|
+
}, e.lastDirection = f;
|
|
876
|
+
}
|
|
877
|
+
return {
|
|
878
|
+
start: function() {
|
|
879
|
+
e.active || (e.lastPosition = {
|
|
880
|
+
x: window.scrollX,
|
|
881
|
+
y: window.scrollY
|
|
882
|
+
}, window.addEventListener("scroll", c), e.active = !0);
|
|
883
|
+
},
|
|
884
|
+
stop: function() {
|
|
885
|
+
e.active && (window.removeEventListener("scroll", c), i());
|
|
886
|
+
}
|
|
887
|
+
};
|
|
888
|
+
}
|
|
889
|
+
function S(t) {
|
|
890
|
+
const e = t.toUpperCase(), n = /SCROLL\s*\:/i.test(e), i = e.indexOf(":");
|
|
891
|
+
if (!n) return t;
|
|
892
|
+
return `SCROLL:${e.slice(i + 1).trim()}`;
|
|
893
|
+
}
|
|
894
|
+
function k(t, e) {
|
|
895
|
+
let n = 0, i = !1;
|
|
896
|
+
const o = e.defaultOptions, { regex: r } = t, { currentContext: { name: s }, shortcuts: c } = e;
|
|
897
|
+
return null == s || (Object.entries(c[s]).forEach(([s, c]) => {
|
|
898
|
+
if (r.test(s)) {
|
|
899
|
+
if ("SCROLL:SETUP" === s) {
|
|
900
|
+
i = !0;
|
|
901
|
+
const n = c.reduce((n, i) => {
|
|
902
|
+
const o = i({
|
|
903
|
+
dependencies: t.extra,
|
|
904
|
+
defaults: structuredClone(e.defaultOptions),
|
|
905
|
+
options: e.listenOptions
|
|
906
|
+
});
|
|
907
|
+
return Object.assign(n, o);
|
|
908
|
+
}, o);
|
|
909
|
+
Object.assign(e.listenOptions, n);
|
|
910
|
+
return;
|
|
911
|
+
}
|
|
912
|
+
n++;
|
|
913
|
+
}
|
|
914
|
+
}), i || Object.assign(e.listenOptions, o)), n;
|
|
915
|
+
}
|
|
916
|
+
function R(t, e = {}) {
|
|
917
|
+
const n = { regex: /SCROLL\s*\:/i }, i = {
|
|
918
|
+
active: !1,
|
|
919
|
+
lastPosition: null,
|
|
920
|
+
lastDirection: null,
|
|
921
|
+
defaultOptions: {
|
|
922
|
+
scrollWait: 50,
|
|
923
|
+
endScrollWait: 400,
|
|
924
|
+
minSpace: 40
|
|
925
|
+
},
|
|
926
|
+
listenOptions: {
|
|
927
|
+
scrollWait: 50,
|
|
928
|
+
endScrollWait: 400,
|
|
929
|
+
minSpace: 40
|
|
930
|
+
}
|
|
931
|
+
};
|
|
932
|
+
return n.resetState = function() {
|
|
933
|
+
i.active = !1;
|
|
934
|
+
}, t({
|
|
935
|
+
prefix: "scroll",
|
|
936
|
+
_normalizeShortcutName: S,
|
|
937
|
+
_registerShortcutEvents: k,
|
|
938
|
+
_listenDOM: C,
|
|
939
|
+
pluginState: i,
|
|
940
|
+
deps: n
|
|
941
|
+
});
|
|
942
|
+
}
|
|
943
|
+
function L(n = {}) {
|
|
944
|
+
const i = {}, o = {}, r = notice(), s = {
|
|
945
|
+
currentContext: {
|
|
946
|
+
name: null,
|
|
947
|
+
note: null
|
|
948
|
+
},
|
|
949
|
+
shortcuts: {},
|
|
950
|
+
plugins: [],
|
|
951
|
+
exposeShortcut: !(!n.onShortcut || "function" != typeof n.onShortcut) && n.onShortcut,
|
|
952
|
+
ERROR_EVENT_NAME: n.errorEventName ? n.errorEventName : "@shortcuts-error"
|
|
953
|
+
}, c = {
|
|
954
|
+
ev: r,
|
|
955
|
+
inAPI: i,
|
|
956
|
+
API: o,
|
|
957
|
+
extra: {}
|
|
958
|
+
};
|
|
959
|
+
return o.enablePlugin = (t, e = {}) => {
|
|
960
|
+
if ("function" != typeof t) return;
|
|
961
|
+
const n = t(i._setupPlugin, e), o = n.getPrefix(), r = i._systemAction(o, "none");
|
|
962
|
+
-1 === r ? (s.plugins.push(n), n.unmute()) : (n.destroy(), s.plugins[r].unmute());
|
|
963
|
+
}, o.disablePlugin = (t) => {
|
|
964
|
+
const e = i._systemAction(t, "destroy");
|
|
965
|
+
-1 !== e && s.plugins.splice(e, 1);
|
|
966
|
+
}, o.mutePlugin = (t) => i._systemAction(t, "mute"), o.unmutePlugin = (t) => i._systemAction(t, "unmute"), o.listPlugins = () => s.plugins.map((t) => t.getPrefix()), o.getContext = () => s.currentContext.name, o.getNote = () => s.currentContext.note, o.setNote = (t = null) => {
|
|
967
|
+
"string" != typeof t && null != t || (s.currentContext.note = t);
|
|
968
|
+
}, o.pause = (t = "*") => {
|
|
969
|
+
const e = i._readShortcutWithPlugins(t);
|
|
970
|
+
r.stop(e);
|
|
971
|
+
}, o.resume = (t = "*") => {
|
|
972
|
+
const e = i._readShortcutWithPlugins(t);
|
|
973
|
+
r.start(e);
|
|
974
|
+
}, o.emit = (t, ...e) => r.emit(i._readShortcutWithPlugins(t), ...e), o.listContexts = () => Object.keys(s.shortcuts), o.setDependencies = (t) => Object.assign(c.extra, t), o.getDependencies = () => c.extra, o.reset = function() {
|
|
975
|
+
r.reset(), o.changeContext(), s.plugins.forEach((t) => t.destroy()), o.listContexts().map((t) => o.unload(t)), c.extra = {}, s.exposeShortcut = null;
|
|
976
|
+
}, Object.entries(e).forEach(([t, e]) => {
|
|
977
|
+
t.startsWith("_") ? i[t] = e(c, s) : o[t] = e(c, s);
|
|
978
|
+
}), o;
|
|
979
|
+
}
|
|
980
|
+
//#endregion
|
|
981
|
+
export { f as pluginClick, x as pluginForm, T as pluginHover, c as pluginKey, R as pluginScroll, L as shortcuts };
|
|
982
|
+
|
|
983
|
+
//# sourceMappingURL=@peter__naydenov_shortcuts.js.map
|