nuxt-hs-ui 2.1.16 → 2.1.18

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/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.15.0"
6
6
  },
7
- "version": "2.1.16",
7
+ "version": "2.1.18",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
@@ -42,8 +42,8 @@ type Props = {
42
42
  | "decimal"
43
43
  | undefined;
44
44
  // ----------------------------------------------------------------------------
45
- data: string;
46
- diff?: string | undefined;
45
+ data: string | null;
46
+ diff?: string | null | undefined;
47
47
  tabindex?: string | undefined;
48
48
  // ----------------------------------------------------------------------------
49
49
  class?: ClassType;
@@ -120,7 +120,7 @@ type Emits = {
120
120
  blur: [elm: HTMLElement];
121
121
  // ----------------------------
122
122
  "update:data": [value: string];
123
- "value-change": [after: string, before: string];
123
+ "value-change": [after: string, before: string | null];
124
124
  // ----------------------------
125
125
  keydown: [event: KeyboardEvent];
126
126
  keyup: [event: KeyboardEvent];
@@ -29,8 +29,8 @@ type Props = {
29
29
  maxRows?: number;
30
30
  maxLen?: number;
31
31
  // ----------------------------------------------------------------------------
32
- data: string;
33
- diff?: string | undefined;
32
+ data: string | null;
33
+ diff?: string | null | undefined;
34
34
  tabindex?: string | undefined;
35
35
  // ----------------------------------------------------------------------------
36
36
  class?: ClassType;
@@ -114,7 +114,7 @@ type Emits = {
114
114
  blur: [elm: HTMLElement];
115
115
  // ----------------------------
116
116
  "update:data": [value: string];
117
- "value-change": [after: string, before: string];
117
+ "value-change": [after: string, before: string | null];
118
118
  // ----------------------------
119
119
  keydown: [event: KeyboardEvent];
120
120
  keyup: [event: KeyboardEvent];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-hs-ui",
3
- "version": "2.1.16",
3
+ "version": "2.1.18",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "https://github.com/hare-systems-ryo/nuxt-hs-ui",
6
6
  "license": "MIT",