@quenty/textboxutils 7.16.0 → 7.16.1

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 CHANGED
@@ -3,6 +3,14 @@
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.16.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/textboxutils@7.16.0...@quenty/textboxutils@7.16.1) (2025-03-21)
7
+
8
+ **Note:** Version bump only for package @quenty/textboxutils
9
+
10
+
11
+
12
+
13
+
6
14
  # [7.16.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/textboxutils@7.15.0...@quenty/textboxutils@7.16.0) (2025-02-18)
7
15
 
8
16
  **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.16.0",
3
+ "version": "7.16.1",
4
4
  "description": "Holds utility methods for textboxes",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,10 +27,10 @@
27
27
  "dependencies": {
28
28
  "@quenty/loader": "^10.8.0",
29
29
  "@quenty/maid": "^3.4.0",
30
- "@quenty/rx": "^13.16.0"
30
+ "@quenty/rx": "^13.16.1"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "184a407d8d7366c39009444c3c9a7023cb176471"
35
+ "gitHead": "6b7c3e15e60cdb185986207b574e2b5591261e7a"
36
36
  }
@@ -15,7 +15,7 @@ local RxTextBoxUtils = {}
15
15
  @param textBox TextBox
16
16
  @return Observable<boolean>
17
17
  ]=]
18
- function RxTextBoxUtils.observeIsFocused(textBox)
18
+ function RxTextBoxUtils.observeIsFocused(textBox: TextBox)
19
19
  assert(typeof(textBox) == "Instance" and textBox:IsA("TextBox"), "Bad textBox")
20
20
 
21
21
  return Observable.new(function(sub)
@@ -35,4 +35,4 @@ function RxTextBoxUtils.observeIsFocused(textBox)
35
35
  end)
36
36
  end
37
37
 
38
- return RxTextBoxUtils
38
+ return RxTextBoxUtils