@quenty/textboxutils 7.17.0 → 7.17.1-canary.545.2374fb2.0
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/CHANGELOG.md +11 -0
- package/package.json +5 -5
- package/src/Shared/RxTextBoxUtils.lua +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [7.17.1-canary.545.2374fb2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/textboxutils@7.17.0...@quenty/textboxutils@7.17.1-canary.545.2374fb2.0) (2025-04-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [7.17.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/textboxutils@7.16.2...@quenty/textboxutils@7.17.0) (2025-04-02)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/textboxutils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/textboxutils",
|
|
3
|
-
"version": "7.17.0",
|
|
3
|
+
"version": "7.17.1-canary.545.2374fb2.0",
|
|
4
4
|
"description": "Holds utility methods for textboxes",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/loader": "
|
|
29
|
-
"@quenty/maid": "
|
|
30
|
-
"@quenty/rx": "
|
|
28
|
+
"@quenty/loader": "10.8.1-canary.545.2374fb2.0",
|
|
29
|
+
"@quenty/maid": "3.4.1-canary.545.2374fb2.0",
|
|
30
|
+
"@quenty/rx": "13.17.1-canary.545.2374fb2.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "2374fb2b043cfbe0e9b507b3316eec46a4e353a0"
|
|
36
36
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
--!strict
|
|
1
2
|
--[=[
|
|
2
3
|
@class RxTextBoxUtils
|
|
3
4
|
]=]
|
|
@@ -15,7 +16,7 @@ local RxTextBoxUtils = {}
|
|
|
15
16
|
@param textBox TextBox
|
|
16
17
|
@return Observable<boolean>
|
|
17
18
|
]=]
|
|
18
|
-
function RxTextBoxUtils.observeIsFocused(textBox: TextBox)
|
|
19
|
+
function RxTextBoxUtils.observeIsFocused(textBox: TextBox): Observable.Observable<boolean>
|
|
19
20
|
assert(typeof(textBox) == "Instance" and textBox:IsA("TextBox"), "Bad textBox")
|
|
20
21
|
|
|
21
22
|
return Observable.new(function(sub)
|
|
@@ -32,7 +33,7 @@ function RxTextBoxUtils.observeIsFocused(textBox: TextBox)
|
|
|
32
33
|
sub:Fire(textBox:IsFocused())
|
|
33
34
|
|
|
34
35
|
return maid
|
|
35
|
-
end)
|
|
36
|
+
end) :: any
|
|
36
37
|
end
|
|
37
38
|
|
|
38
39
|
return RxTextBoxUtils
|