@thomas-siegfried/tapout 0.0.1 → 0.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.
Files changed (52) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +1207 -1205
  3. package/decorator-config.md +220 -0
  4. package/dist/wireParams.d.ts.map +1 -1
  5. package/dist/wireParams.js +27 -4
  6. package/dist/wireParams.js.map +1 -1
  7. package/llms.txt +360 -0
  8. package/package.json +57 -55
  9. package/src/applyBindings.ts +372 -372
  10. package/src/arrayToDomMapping.ts +300 -300
  11. package/src/attributeInterpolationMarkup.ts +91 -91
  12. package/src/bindingContext.ts +207 -207
  13. package/src/bindingEvent.ts +198 -198
  14. package/src/bindingProvider.ts +260 -260
  15. package/src/bindings.ts +963 -963
  16. package/src/compareArrays.ts +122 -122
  17. package/src/componentBinding.ts +318 -318
  18. package/src/componentDecorator.ts +62 -62
  19. package/src/components.ts +367 -367
  20. package/src/computed.ts +439 -439
  21. package/src/configure.ts +52 -52
  22. package/src/controlFlowBindings.ts +206 -206
  23. package/src/core.ts +60 -60
  24. package/src/decorators.ts +407 -407
  25. package/src/dependencyDetection.ts +76 -76
  26. package/src/disposable.ts +36 -36
  27. package/src/domData.ts +42 -42
  28. package/src/domNodeDisposal.ts +94 -94
  29. package/src/effects.ts +29 -29
  30. package/src/event.ts +173 -173
  31. package/src/expressionRewriting.ts +219 -219
  32. package/src/extenders.ts +102 -102
  33. package/src/filters.ts +91 -91
  34. package/src/index.ts +150 -150
  35. package/src/interpolationMarkup.ts +130 -130
  36. package/src/memoization.ts +71 -71
  37. package/src/namespacedBindings.ts +132 -132
  38. package/src/observable.ts +48 -48
  39. package/src/observableArray.ts +397 -397
  40. package/src/options.ts +25 -25
  41. package/src/selectExtensions.ts +68 -68
  42. package/src/slotBinding.ts +84 -84
  43. package/src/subscribable.ts +266 -266
  44. package/src/tasks.ts +79 -79
  45. package/src/templateEngine.ts +108 -108
  46. package/src/templateRendering.ts +399 -399
  47. package/src/templateRewriting.ts +94 -94
  48. package/src/templateSources.ts +134 -134
  49. package/src/utils.ts +123 -123
  50. package/src/utilsDom.ts +87 -87
  51. package/src/virtualElements.ts +153 -153
  52. package/src/wireParams.ts +69 -49
package/package.json CHANGED
@@ -1,55 +1,57 @@
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.3",
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
+ "llms.txt",
35
+ "decorator-config.md"
36
+ ],
37
+ "scripts": {
38
+ "build": "tsc",
39
+ "dev": "tsc --watch",
40
+ "test": "node --import tsx/esm ./node_modules/jasmine/bin/jasmine.js",
41
+ "test:typecheck": "tsc --noEmit -p tsconfig.spec.json",
42
+ "test:e2e": "npx playwright test",
43
+ "prepublishOnly": "npm run build"
44
+ },
45
+ "keywords": [],
46
+ "author": "Thomas Siegfried",
47
+ "license": "MIT",
48
+ "devDependencies": {
49
+ "@playwright/test": "^1.58.2",
50
+ "@types/jasmine": "^6.0.0",
51
+ "@types/node": "^25.5.0",
52
+ "happy-dom": "^20.8.4",
53
+ "jasmine": "^6.1.0",
54
+ "tsx": "^4.21.0",
55
+ "typescript": "^5.9.3"
56
+ }
57
+ }