@tstdl/base 0.78.0-beta20 → 0.78.0-beta23

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 (2) hide show
  1. package/package.json +2 -2
  2. package/web-types.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.78.0-beta20",
3
+ "version": "0.78.0-beta23",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -39,7 +39,7 @@
39
39
  "peerDependencies": {
40
40
  "@elastic/elasticsearch": "^8.2",
41
41
  "@koa/router": "^12.0",
42
- "@tstdl/angular": "^0.11.0-beta20",
42
+ "@tstdl/angular": "^0.11.0-beta23",
43
43
  "chroma-js": "^2.4",
44
44
  "got": "^12.3",
45
45
  "handlebars": "^4.7",
package/web-types.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  export declare type InputType = 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'search' | 'tel' | 'text' | 'time' | 'url' | 'week';
2
2
  export declare type InputMode = 'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
3
3
  export declare type InputAutocomplete = 'off' | 'on' | 'name' | 'honorific-prefix' | 'given-name' | 'additional-name' | 'family-name' | 'honorific-suffix' | 'nickname' | 'email' | 'username' | 'new-password' | 'current-password' | 'one-time-code' | 'organization-title' | 'organization' | 'street-address' | 'address-line1' | 'address-line2' | 'address-line3' | 'address-level4' | 'address-level3' | 'address-level2' | 'address-level1' | 'country' | 'country-name' | 'postal-code' | 'cc-name' | 'cc-given-name' | 'cc-additional-name' | 'cc-family-name' | 'cc-number' | 'cc-exp' | 'cc-exp-month' | 'cc-exp-year' | 'cc-csc' | 'cc-type' | 'transaction-currency' | 'transaction-amount' | 'language' | 'bday' | 'bday-day' | 'bday-month' | 'bday-year' | 'sex' | 'tel' | 'tel-country-code' | 'tel-national' | 'tel-area-code' | 'tel-local' | 'tel-extension' | 'impp' | 'url' | 'photo';
4
- export declare type InputConfig = {
4
+ export declare type InputAttributes = {
5
5
  accept?: string;
6
6
  autocomplete?: InputAutocomplete;
7
7
  autofocus?: boolean;
@@ -10,9 +10,9 @@ export declare type InputConfig = {
10
10
  disabled?: boolean;
11
11
  id?: string;
12
12
  list?: string;
13
- max?: number;
13
+ max?: number | string;
14
14
  maxlength?: number;
15
- min?: number;
15
+ min?: number | string;
16
16
  minlength?: number;
17
17
  mode?: InputMode;
18
18
  multiple?: boolean;