@quenty/blend 12.22.6 → 12.22.7-canary.90de6eb.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
+ ## [12.22.7-canary.90de6eb.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.22.6...@quenty/blend@12.22.7-canary.90de6eb.0) (2026-01-03)
7
+
8
+ **Note:** Version bump only for package @quenty/blend
9
+
10
+
11
+
12
+
13
+
6
14
  ## [12.22.6](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@12.22.5...@quenty/blend@12.22.6) (2025-12-31)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/blend",
3
- "version": "12.22.6",
3
+ "version": "12.22.7-canary.90de6eb.0",
4
4
  "description": "Declarative UI system.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,25 +27,25 @@
27
27
  "access": "public"
28
28
  },
29
29
  "dependencies": {
30
- "@quenty/acceltween": "^2.5.3",
31
- "@quenty/brio": "^14.20.4",
32
- "@quenty/ducktype": "^5.9.0",
33
- "@quenty/instanceutils": "^13.20.5",
34
- "@quenty/loader": "^10.9.0",
35
- "@quenty/maid": "^3.5.0",
36
- "@quenty/promise": "^10.12.3",
37
- "@quenty/rx": "^13.20.3",
38
- "@quenty/signal": "^7.11.2",
39
- "@quenty/spring": "^10.9.1",
40
- "@quenty/steputils": "^3.6.0",
41
- "@quenty/string": "^3.3.3",
42
- "@quenty/uiobjectutils": "^6.19.5",
43
- "@quenty/valuebaseutils": "^13.20.6",
44
- "@quenty/valueobject": "^13.21.6"
30
+ "@quenty/acceltween": "2.5.3",
31
+ "@quenty/brio": "14.20.5-canary.90de6eb.0",
32
+ "@quenty/ducktype": "5.9.1-canary.90de6eb.0",
33
+ "@quenty/instanceutils": "13.20.6-canary.90de6eb.0",
34
+ "@quenty/loader": "10.9.1-canary.90de6eb.0",
35
+ "@quenty/maid": "3.5.1-canary.90de6eb.0",
36
+ "@quenty/promise": "10.12.4-canary.90de6eb.0",
37
+ "@quenty/rx": "13.20.4-canary.90de6eb.0",
38
+ "@quenty/signal": "7.11.3-canary.90de6eb.0",
39
+ "@quenty/spring": "10.9.2-canary.90de6eb.0",
40
+ "@quenty/steputils": "3.6.1-canary.90de6eb.0",
41
+ "@quenty/string": "3.3.4-canary.90de6eb.0",
42
+ "@quenty/uiobjectutils": "6.19.6-canary.90de6eb.0",
43
+ "@quenty/valuebaseutils": "13.20.7-canary.90de6eb.0",
44
+ "@quenty/valueobject": "13.21.7-canary.90de6eb.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@quenty/contentproviderutils": "^12.21.6",
48
- "@quenty/playerthumbnailutils": "^10.12.3"
47
+ "@quenty/contentproviderutils": "12.21.7-canary.90de6eb.0",
48
+ "@quenty/playerthumbnailutils": "10.12.4-canary.90de6eb.0"
49
49
  },
50
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
50
+ "gitHead": "90de6ebb6e0cb5e6798e08b312cb1864c1d3354c"
51
51
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Declarative UI system inspired by Fusion.
3
4
  @class Blend
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  Stores 'sensible default' properties to be applied to instances created by
3
4
  the New function.
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class Blend.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local RunService = game:GetService("RunService")
9
11
 
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class Blend.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local Blend = require("Blend")
9
11
  local Maid = require("Maid")
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class Blend.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local RunService = game:GetService("RunService")
9
11
 
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class BlendTextbox.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local RunService = game:GetService("RunService")
9
11
 
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class BlendSingle.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local Blend = require("Blend")
9
11
  local Maid = require("Maid")
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class Blend.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local RunService = game:GetService("RunService")
9
11
 
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class BlendTextbox.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local Blend = require("Blend")
9
11
  local Maid = require("Maid")
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ClientMain
3
4
  ]]
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ServerMain
3
4
  ]]