@quenty/blend 10.0.0 → 11.0.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,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
+ # [11.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@10.0.0...@quenty/blend@11.0.0) (2024-02-13)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix bootstrap of test environments and loader samples ([441e4a9](https://github.com/Quenty/NevermoreEngine/commit/441e4a90d19fcc203da2fdedc08e532c20d52f99))
12
+
13
+
14
+
15
+
16
+
6
17
  # [10.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/blend@9.0.0...@quenty/blend@10.0.0) (2024-02-13)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/blend
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2014-2023 James Onnen (Quenty)
3
+ Copyright (c) 2014-2024 James Onnen (Quenty)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/blend",
3
- "version": "10.0.0",
3
+ "version": "11.0.0",
4
4
  "description": "Declarative UI system.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,23 +28,23 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@quenty/acceltween": "^2.3.0",
31
- "@quenty/brio": "^12.0.0",
32
- "@quenty/ducktype": "^3.0.0",
33
- "@quenty/instanceutils": "^11.0.0",
34
- "@quenty/loader": "^8.0.0",
31
+ "@quenty/brio": "^13.0.0",
32
+ "@quenty/ducktype": "^4.0.0",
33
+ "@quenty/instanceutils": "^12.0.0",
34
+ "@quenty/loader": "^9.0.0",
35
35
  "@quenty/maid": "^3.0.0",
36
- "@quenty/promise": "^8.0.0",
37
- "@quenty/rx": "^11.0.0",
38
- "@quenty/signal": "^5.0.0",
39
- "@quenty/spring": "^8.0.0",
36
+ "@quenty/promise": "^9.0.0",
37
+ "@quenty/rx": "^12.0.0",
38
+ "@quenty/signal": "^6.0.0",
39
+ "@quenty/spring": "^9.0.0",
40
40
  "@quenty/steputils": "^3.3.0",
41
41
  "@quenty/string": "^3.1.0",
42
- "@quenty/valuebaseutils": "^11.0.0",
43
- "@quenty/valueobject": "^11.0.0"
42
+ "@quenty/valuebaseutils": "^12.0.0",
43
+ "@quenty/valueobject": "^12.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@quenty/contentproviderutils": "^10.0.0",
47
- "@quenty/playerthumbnailutils": "^8.0.0"
46
+ "@quenty/contentproviderutils": "^11.0.0",
47
+ "@quenty/playerthumbnailutils": "^9.0.0"
48
48
  },
49
- "gitHead": "87df864b5b6a9a9cef7544f6e8054a12cdd120bd"
49
+ "gitHead": "f113de0adce246ebd8115adf49a80533ede329cc"
50
50
  }
@@ -1,14 +1,16 @@
1
- -- Main injection point
2
-
3
- local packages = game:GetService("ReplicatedStorage"):WaitForChild("Packages")
4
-
5
- local Blend = require(packages.Blend)
1
+ --[[
2
+ @class ClientMain
3
+ ]]
4
+ local loader = game:GetService("ReplicatedStorage"):WaitForChild("blend"):WaitForChild("loader")
5
+ local require = require(loader).bootstrapGame(loader.Parent)
6
6
 
7
+ local Blend = require("Blend")
8
+ local PlayerGuiUtils = require("PlayerGuiUtils")
7
9
 
8
10
  local state = Blend.State("a")
9
11
 
10
12
  Blend.New "ScreenGui" {
11
- Parent = require(packages.PlayerGuiUtils).getPlayerGui();
13
+ Parent = PlayerGuiUtils.getPlayerGui();
12
14
  [Blend.Children] = {
13
15
  Blend.New "TextLabel" {
14
16
  Size = UDim2.new(0, 100, 0, 50);