@thomas-siegfried/tapout 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +1205 -1205
  3. package/package.json +55 -55
  4. package/src/applyBindings.ts +372 -372
  5. package/src/arrayToDomMapping.ts +300 -300
  6. package/src/attributeInterpolationMarkup.ts +91 -91
  7. package/src/bindingContext.ts +207 -207
  8. package/src/bindingEvent.ts +198 -198
  9. package/src/bindingProvider.ts +260 -260
  10. package/src/bindings.ts +963 -963
  11. package/src/compareArrays.ts +122 -122
  12. package/src/componentBinding.ts +318 -318
  13. package/src/componentDecorator.ts +62 -62
  14. package/src/components.ts +367 -367
  15. package/src/computed.ts +439 -439
  16. package/src/configure.ts +52 -52
  17. package/src/controlFlowBindings.ts +206 -206
  18. package/src/core.ts +60 -60
  19. package/src/decorators.ts +407 -407
  20. package/src/dependencyDetection.ts +76 -76
  21. package/src/disposable.ts +36 -36
  22. package/src/domData.ts +42 -42
  23. package/src/domNodeDisposal.ts +94 -94
  24. package/src/effects.ts +29 -29
  25. package/src/event.ts +173 -173
  26. package/src/expressionRewriting.ts +219 -219
  27. package/src/extenders.ts +102 -102
  28. package/src/filters.ts +91 -91
  29. package/src/index.ts +150 -150
  30. package/src/interpolationMarkup.ts +130 -130
  31. package/src/memoization.ts +71 -71
  32. package/src/namespacedBindings.ts +132 -132
  33. package/src/observable.ts +48 -48
  34. package/src/observableArray.ts +397 -397
  35. package/src/options.ts +25 -25
  36. package/src/selectExtensions.ts +68 -68
  37. package/src/slotBinding.ts +84 -84
  38. package/src/subscribable.ts +266 -266
  39. package/src/tasks.ts +79 -79
  40. package/src/templateEngine.ts +108 -108
  41. package/src/templateRendering.ts +399 -399
  42. package/src/templateRewriting.ts +94 -94
  43. package/src/templateSources.ts +134 -134
  44. package/src/utils.ts +123 -123
  45. package/src/utilsDom.ts +87 -87
  46. package/src/virtualElements.ts +153 -153
  47. package/src/wireParams.ts +49 -49
package/package.json CHANGED
@@ -1,55 +1,55 @@
1
- {
2
- "name": "@thomas-siegfried/tapout",
3
- "version": "0.0.1",
4
- "description": "",
5
- "type": "module",
6
- "main": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/thomas-siegfried/tapout"
11
- },
12
- "exports": {
13
- ".": {
14
- "typescript": "./src/index.ts",
15
- "import": {
16
- "types": "./dist/index.d.ts",
17
- "default": "./dist/index.js"
18
- }
19
- },
20
- "./core": {
21
- "typescript": "./src/core.ts",
22
- "import": {
23
- "types": "./dist/core.d.ts",
24
- "default": "./dist/core.js"
25
- }
26
- }
27
- },
28
- "imports": {
29
- "#src/*": "./src/*"
30
- },
31
- "files": [
32
- "dist",
33
- "src"
34
- ],
35
- "scripts": {
36
- "build": "tsc",
37
- "dev": "tsc --watch",
38
- "test": "node --import tsx/esm ./node_modules/jasmine/bin/jasmine.js",
39
- "test:typecheck": "tsc --noEmit -p tsconfig.spec.json",
40
- "test:e2e": "npx playwright test",
41
- "prepublishOnly": "npm run build"
42
- },
43
- "keywords": [],
44
- "author": "Thomas Siegfried",
45
- "license": "MIT",
46
- "devDependencies": {
47
- "@playwright/test": "^1.58.2",
48
- "@types/jasmine": "^6.0.0",
49
- "@types/node": "^25.5.0",
50
- "happy-dom": "^20.8.4",
51
- "jasmine": "^6.1.0",
52
- "tsx": "^4.21.0",
53
- "typescript": "^5.9.3"
54
- }
55
- }
1
+ {
2
+ "name": "@thomas-siegfried/tapout",
3
+ "version": "0.0.2",
4
+ "description": "",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/thomas-siegfried/tapout"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "typescript": "./src/index.ts",
15
+ "import": {
16
+ "types": "./dist/index.d.ts",
17
+ "default": "./dist/index.js"
18
+ }
19
+ },
20
+ "./core": {
21
+ "typescript": "./src/core.ts",
22
+ "import": {
23
+ "types": "./dist/core.d.ts",
24
+ "default": "./dist/core.js"
25
+ }
26
+ }
27
+ },
28
+ "imports": {
29
+ "#src/*": "./src/*"
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "src"
34
+ ],
35
+ "scripts": {
36
+ "build": "tsc",
37
+ "dev": "tsc --watch",
38
+ "test": "node --import tsx/esm ./node_modules/jasmine/bin/jasmine.js",
39
+ "test:typecheck": "tsc --noEmit -p tsconfig.spec.json",
40
+ "test:e2e": "npx playwright test",
41
+ "prepublishOnly": "npm run build"
42
+ },
43
+ "keywords": [],
44
+ "author": "Thomas Siegfried",
45
+ "license": "MIT",
46
+ "devDependencies": {
47
+ "@playwright/test": "^1.58.2",
48
+ "@types/jasmine": "^6.0.0",
49
+ "@types/node": "^25.5.0",
50
+ "happy-dom": "^20.8.4",
51
+ "jasmine": "^6.1.0",
52
+ "tsx": "^4.21.0",
53
+ "typescript": "^5.9.3"
54
+ }
55
+ }