@quenty/blend 7.4.0 → 8.0.0-canary.439.eb597ee.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 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
+ # [8.0.0-canary.439.eb597ee.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@7.4.0...@quenty/blend@8.0.0-canary.439.eb597ee.0) (2024-01-17)
7
+
8
+ **Note:** Version bump only for package @quenty/blend
9
+
10
+
11
+
12
+
13
+
6
14
  # [7.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@7.3.0...@quenty/blend@7.4.0) (2024-01-08)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/blend",
3
- "version": "7.4.0",
3
+ "version": "8.0.0-canary.439.eb597ee.0",
4
4
  "description": "Declarative UI system.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,23 +27,24 @@
27
27
  "access": "public"
28
28
  },
29
29
  "dependencies": {
30
- "@quenty/acceltween": "^2.3.0",
31
- "@quenty/brio": "^9.4.0",
32
- "@quenty/instanceutils": "^8.4.0",
33
- "@quenty/loader": "^7.3.0",
34
- "@quenty/maid": "^2.6.0",
35
- "@quenty/promise": "^7.2.0",
36
- "@quenty/rx": "^8.4.0",
37
- "@quenty/signal": "^3.2.0",
38
- "@quenty/spring": "^7.2.0",
39
- "@quenty/steputils": "^3.3.0",
40
- "@quenty/string": "^3.1.0",
41
- "@quenty/valuebaseutils": "^8.4.0",
42
- "@quenty/valueobject": "^8.4.0"
30
+ "@quenty/acceltween": "2.3.0",
31
+ "@quenty/brio": "10.0.0-canary.439.eb597ee.0",
32
+ "@quenty/ducktype": "3.0.0-canary.439.eb597ee.0",
33
+ "@quenty/instanceutils": "9.0.0-canary.439.eb597ee.0",
34
+ "@quenty/loader": "8.0.0-canary.439.eb597ee.0",
35
+ "@quenty/maid": "2.6.0",
36
+ "@quenty/promise": "8.0.0-canary.439.eb597ee.0",
37
+ "@quenty/rx": "9.0.0-canary.439.eb597ee.0",
38
+ "@quenty/signal": "4.0.0-canary.439.eb597ee.0",
39
+ "@quenty/spring": "8.0.0-canary.439.eb597ee.0",
40
+ "@quenty/steputils": "3.3.0",
41
+ "@quenty/string": "3.1.0",
42
+ "@quenty/valuebaseutils": "9.0.0-canary.439.eb597ee.0",
43
+ "@quenty/valueobject": "9.0.0-canary.439.eb597ee.0"
43
44
  },
44
45
  "devDependencies": {
45
- "@quenty/contentproviderutils": "^7.4.0",
46
- "@quenty/playerthumbnailutils": "^7.2.0"
46
+ "@quenty/contentproviderutils": "8.0.0-canary.439.eb597ee.0",
47
+ "@quenty/playerthumbnailutils": "8.0.0-canary.439.eb597ee.0"
47
48
  },
48
- "gitHead": "075fb03a03f12ade8758f667767ba738204e0c4b"
49
+ "gitHead": "eb597ee01e62e4dd91190bb7abd1d1404652d5ff"
49
50
  }
@@ -6,15 +6,16 @@ local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local RunService= game:GetService("RunService")
8
8
 
9
- local Spring = require("Spring")
9
+ local Blend = require("Blend")
10
+ local DuckTypeUtils = require("DuckTypeUtils")
10
11
  local Maid = require("Maid")
11
- local Signal = require("Signal")
12
- local StepUtils = require("StepUtils")
13
12
  local Observable = require("Observable")
14
- local SpringUtils = require("SpringUtils")
15
- local Blend = require("Blend")
16
- local Rx = require("Rx")
17
13
  local Promise = require("Promise")
14
+ local Rx = require("Rx")
15
+ local Signal = require("Signal")
16
+ local Spring = require("Spring")
17
+ local SpringUtils = require("SpringUtils")
18
+ local StepUtils = require("StepUtils")
18
19
 
19
20
  local SpringObject = {}
20
21
  SpringObject.ClassName = "SpringObject"
@@ -64,7 +65,7 @@ end
64
65
  @return boolean
65
66
  ]=]
66
67
  function SpringObject.isSpringObject(value)
67
- return type(value) == "table" and getmetatable(value) == SpringObject
68
+ return DuckTypeUtils.isImplementation(SpringObject, value)
68
69
  end
69
70
 
70
71
  --[=[