svelte-command 1.1.23 → 1.1.24
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/README.md +14 -14
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ general command execution handling for svelte components
|
|
|
37
37
|
|
|
38
38
|
### Parameters
|
|
39
39
|
|
|
40
|
-
* `subscription` **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)
|
|
40
|
+
* `subscription` **[Function](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function)** 
|
|
41
41
|
|
|
42
42
|
## Command
|
|
43
43
|
|
|
@@ -45,18 +45,18 @@ general command execution handling for svelte components
|
|
|
45
45
|
|
|
46
46
|
### Parameters
|
|
47
47
|
|
|
48
|
-
* `_start`
|
|
48
|
+
* `_start`  
|
|
49
49
|
* `options` (optional, default `{}`)
|
|
50
50
|
|
|
51
51
|
### Properties
|
|
52
52
|
|
|
53
|
-
* `title` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)
|
|
54
|
-
* `description` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)
|
|
55
|
-
* `shortcuts` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)
|
|
56
|
-
* `disabled` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)
|
|
57
|
-
* `active` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)
|
|
58
|
-
* `failed` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)
|
|
59
|
-
* `completed` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)
|
|
53
|
+
* `title` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** 
|
|
54
|
+
* `description` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** 
|
|
55
|
+
* `shortcuts` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** 
|
|
56
|
+
* `disabled` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** 
|
|
57
|
+
* `active` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** 
|
|
58
|
+
* `failed` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** 
|
|
59
|
+
* `completed` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** 
|
|
60
60
|
|
|
61
61
|
## ConfirmCommand
|
|
62
62
|
|
|
@@ -66,7 +66,7 @@ Ask for confirmation before esxecution a given Command.
|
|
|
66
66
|
|
|
67
67
|
### Parameters
|
|
68
68
|
|
|
69
|
-
* `command`
|
|
69
|
+
* `command`  
|
|
70
70
|
|
|
71
71
|
## FetchCommand
|
|
72
72
|
|
|
@@ -76,8 +76,8 @@ Command executing a fetch request.
|
|
|
76
76
|
|
|
77
77
|
### Parameters
|
|
78
78
|
|
|
79
|
-
* `url`
|
|
80
|
-
* `fetchOptions`
|
|
79
|
+
* `url`  
|
|
80
|
+
* `fetchOptions`  
|
|
81
81
|
* `options` (optional, default `{}`)
|
|
82
82
|
|
|
83
83
|
## handleFailedResponse
|
|
@@ -86,9 +86,9 @@ Extract error description from response
|
|
|
86
86
|
|
|
87
87
|
### Parameters
|
|
88
88
|
|
|
89
|
-
* `response` **FetchResponse
|
|
89
|
+
* `response` **FetchResponse** 
|
|
90
90
|
|
|
91
|
-
Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)
|
|
91
|
+
Returns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** 
|
|
92
92
|
|
|
93
93
|
# install
|
|
94
94
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-command",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.24",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
36
36
|
"@semantic-release/exec": "^6.0.3",
|
|
37
37
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
38
|
-
"@sveltejs/vite-plugin-svelte": "^1.0.
|
|
38
|
+
"@sveltejs/vite-plugin-svelte": "^1.0.2",
|
|
39
39
|
"ava": "^4.3.1",
|
|
40
|
-
"documentation": "^
|
|
41
|
-
"mf-styling": "^1.
|
|
40
|
+
"documentation": "^14.0.0",
|
|
41
|
+
"mf-styling": "^1.3.0",
|
|
42
42
|
"npm-pkgbuild": "^10.14.8",
|
|
43
43
|
"semantic-release": "^19.0.3",
|
|
44
44
|
"svelte": "^3.49.0",
|
|
45
45
|
"testcafe": "^1.20.1",
|
|
46
|
-
"vite": "^3.0.
|
|
46
|
+
"vite": "^3.0.9"
|
|
47
47
|
},
|
|
48
48
|
"optionalDependencies": {
|
|
49
49
|
"mf-hosting": "^1.7.2"
|