@quenty/blend 12.1.1 → 12.2.1-canary.468.ea8a226.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,31 @@
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
+ ## [12.2.1-canary.468.ea8a226.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.2.0...@quenty/blend@12.2.1-canary.468.ea8a226.0) (2024-05-09)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Bootstrap specifically to loader ([7f4d4f9](https://github.com/Quenty/NevermoreEngine/commit/7f4d4f9cd4a6602af8daaf04983bb349dafc7e95))
12
+ * Fix .package-lock.json replicating in packages ([75d0efe](https://github.com/Quenty/NevermoreEngine/commit/75d0efeef239f221d93352af71a5b3e930ec23c5))
13
+
14
+
15
+ ### Features
16
+
17
+ * Still allow spring objects to work on server ([65cadaf](https://github.com/Quenty/NevermoreEngine/commit/65cadafc84015294b4946f1d4cae228a9a7786e2))
18
+
19
+
20
+
21
+
22
+
23
+ # [12.2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.1.1...@quenty/blend@12.2.0) (2024-04-27)
24
+
25
+ **Note:** Version bump only for package @quenty/blend
26
+
27
+
28
+
29
+
30
+
6
31
  ## [12.1.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.1.0...@quenty/blend@12.1.1) (2024-04-23)
7
32
 
8
33
  **Note:** Version bump only for package @quenty/blend
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "blend",
3
+ "globIgnorePaths": [ "**/.package-lock.json" ],
3
4
  "tree": {
4
5
  "$path": "src"
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/blend",
3
- "version": "12.1.1",
3
+ "version": "12.2.1-canary.468.ea8a226.0",
4
4
  "description": "Declarative UI system.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,24 +27,24 @@
27
27
  "access": "public"
28
28
  },
29
29
  "dependencies": {
30
- "@quenty/acceltween": "^2.3.0",
31
- "@quenty/brio": "^14.1.0",
32
- "@quenty/ducktype": "^5.1.0",
33
- "@quenty/instanceutils": "^13.1.0",
34
- "@quenty/loader": "^10.1.0",
35
- "@quenty/maid": "^3.1.0",
36
- "@quenty/promise": "^10.1.0",
37
- "@quenty/rx": "^13.1.0",
38
- "@quenty/signal": "^7.1.0",
39
- "@quenty/spring": "^10.1.1",
40
- "@quenty/steputils": "^3.3.0",
41
- "@quenty/string": "^3.1.0",
42
- "@quenty/valuebaseutils": "^13.1.0",
43
- "@quenty/valueobject": "^13.1.0"
30
+ "@quenty/acceltween": "2.3.1-canary.468.ea8a226.0",
31
+ "@quenty/brio": "14.2.1-canary.468.ea8a226.0",
32
+ "@quenty/ducktype": "5.2.1-canary.468.ea8a226.0",
33
+ "@quenty/instanceutils": "13.2.1-canary.468.ea8a226.0",
34
+ "@quenty/loader": "10.2.1-canary.468.ea8a226.0",
35
+ "@quenty/maid": "3.1.1-canary.468.ea8a226.0",
36
+ "@quenty/promise": "10.2.1-canary.468.ea8a226.0",
37
+ "@quenty/rx": "13.2.1-canary.468.ea8a226.0",
38
+ "@quenty/signal": "7.2.1-canary.468.ea8a226.0",
39
+ "@quenty/spring": "10.2.1-canary.468.ea8a226.0",
40
+ "@quenty/steputils": "3.3.1-canary.468.ea8a226.0",
41
+ "@quenty/string": "3.1.1-canary.468.ea8a226.0",
42
+ "@quenty/valuebaseutils": "13.2.1-canary.468.ea8a226.0",
43
+ "@quenty/valueobject": "13.2.1-canary.468.ea8a226.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@quenty/contentproviderutils": "^12.1.0",
47
- "@quenty/playerthumbnailutils": "^10.1.0"
46
+ "@quenty/contentproviderutils": "12.2.1-canary.468.ea8a226.0",
47
+ "@quenty/playerthumbnailutils": "10.2.1-canary.468.ea8a226.0"
48
48
  },
49
- "gitHead": "cd35ea3858c97294f1f467fe64a731ee4be9babb"
49
+ "gitHead": "ea8a2260a364aaf6d6c246a93632b789935da134"
50
50
  }
@@ -1,4 +1,6 @@
1
1
  --[=[
2
+ This is like a [Spring], but it can be observed, and emits events. It handles [Observable]s and
3
+
2
4
  @class SpringObject
3
5
  ]=]
4
6
 
@@ -82,7 +84,11 @@ end
82
84
  @return Observable<T>
83
85
  ]=]
84
86
  function SpringObject:Observe()
85
- return self:ObserveRenderStepped()
87
+ if RunService:IsClient() then
88
+ return self:ObserveOnSignal(RunService.RenderStepped)
89
+ else
90
+ return self:ObserveOnSignal(RunService.Stepped)
91
+ end
86
92
  end
87
93
 
88
94
  --[=[
@@ -2,7 +2,7 @@
2
2
  @class Blend.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local RunService = game:GetService("RunService")
8
8
 
@@ -2,7 +2,7 @@
2
2
  @class Blend.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local Blend = require("Blend")
8
8
  local Maid = require("Maid")
@@ -2,7 +2,7 @@
2
2
  @class Blend.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local RunService = game:GetService("RunService")
8
8
 
@@ -2,7 +2,7 @@
2
2
  @class BlendTextbox.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local RunService = game:GetService("RunService")
8
8
 
@@ -2,7 +2,7 @@
2
2
  @class BlendSingle.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local Maid = require("Maid")
8
8
  local Observable = require("Observable")
@@ -2,7 +2,7 @@
2
2
  @class Blend.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local RunService = game:GetService("RunService")
8
8
 
@@ -2,7 +2,7 @@
2
2
  @class BlendTextbox.story
3
3
  ]]
4
4
 
5
- local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).load(script)
5
+ local require = require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
6
 
7
7
  local Blend = require("Blend")
8
8
  local Maid = require("Maid")