@tstdl/base 0.90.74 → 0.90.76

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.90.74",
3
+ "version": "0.90.76",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -124,7 +124,6 @@
124
124
  "@types/node": "20",
125
125
  "@types/nodemailer": "6.4",
126
126
  "concurrently": "8.2",
127
- "esbuild": "0.20",
128
127
  "eslint": "8.57",
129
128
  "eslint-import-resolver-typescript": "3.6",
130
129
  "eslint-plugin-import": "2.29",
@@ -149,7 +148,7 @@
149
148
  "mjml": "^4.15",
150
149
  "mongodb": "^6.6",
151
150
  "nodemailer": "^6.9",
152
- "playwright": "^1.43",
151
+ "playwright": "^1.44",
153
152
  "preact": "^10.21",
154
153
  "preact-render-to-string": "^6.4",
155
154
  "undici": "^6.15",
@@ -1,8 +1,7 @@
1
1
  import { Subject, concatAll, exhaustAll, isObservable, mergeAll, of, switchAll, takeUntil } from 'rxjs';
2
2
  import { registerFinalization } from '../../memory/finalization.js';
3
3
  import { isPromise } from '../../utils/type-guards.js';
4
- import { computed, toSignal, untracked } from '../api.js';
5
- import { effect } from '../implementation/effect.js';
4
+ import { computed, effect, toSignal, untracked } from '../api.js';
6
5
  const operatorMap = {
7
6
  merge: mergeAll,
8
7
  concat: concatAll,
package/web-types.d.ts CHANGED
@@ -26,3 +26,18 @@ export type InputAttributes = {
26
26
  type?: InputType;
27
27
  value?: any;
28
28
  };
29
+ export type TextAreaAttributes = {
30
+ autocomplete?: InputAutocomplete;
31
+ autofocus?: boolean;
32
+ cols?: number;
33
+ rows?: number;
34
+ maxlength?: number;
35
+ minlength?: number;
36
+ name?: string;
37
+ disabled?: boolean;
38
+ id?: string;
39
+ placeholder?: string;
40
+ readonly?: boolean;
41
+ required?: boolean;
42
+ wrap?: 'hard' | 'soft' | 'off';
43
+ };