@quenty/radial-image 9.23.0 → 9.23.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
+ ## [9.23.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/radial-image@9.23.0...@quenty/radial-image@9.23.1) (2025-11-12)
7
+
8
+ **Note:** Version bump only for package @quenty/radial-image
9
+
10
+
11
+
12
+
13
+
6
14
  # [9.23.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/radial-image@9.22.0...@quenty/radial-image@9.23.0) (2025-10-08)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/radial-image
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/radial-image",
3
- "version": "9.23.0",
3
+ "version": "9.23.1",
4
4
  "description": "Quenty's radial image system",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,15 +27,15 @@
27
27
  ],
28
28
  "dependencies": {
29
29
  "@quenty/baseobject": "^10.9.0",
30
- "@quenty/blend": "^12.22.0",
30
+ "@quenty/blend": "^12.22.1",
31
31
  "@quenty/loader": "^10.9.0",
32
32
  "@quenty/maid": "^3.5.0",
33
33
  "@quenty/math": "^2.7.3",
34
34
  "@quenty/rx": "^13.20.0",
35
- "@quenty/valueobject": "^13.21.0"
35
+ "@quenty/valueobject": "^13.21.1"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "d396d6f77d25ba25f1f45bbc252216131f88eeed"
40
+ "gitHead": "f14f6bf0f8ca2b041c70ed27b68ad385a76e6164"
41
41
  }
@@ -167,7 +167,7 @@ end
167
167
  function RadialImage:_render()
168
168
  return Blend.New "Frame" {
169
169
  Name = "RadialImage",
170
- Size = UDim2.new(1, 0, 1, 0),
170
+ Size = UDim2.fromScale(1, 1),
171
171
  BackgroundTransparency = 1,
172
172
  [Blend.OnChange("AbsoluteSize")] = self._absoluteSize,
173
173
 
@@ -185,15 +185,15 @@ function RadialImage:_render()
185
185
  if size.x % 2 ~= 0 then
186
186
  return UDim2.new(0.5, 1, 1, 0)
187
187
  else
188
- return UDim2.new(0.5, 0, 1, 0)
188
+ return UDim2.fromScale(0.5, 1)
189
189
  end
190
190
  end),
191
- Position = UDim2.new(0, 0, 0, 0),
191
+ Position = UDim2.fromScale(0, 0),
192
192
  BackgroundTransparency = 1,
193
193
  ClipsDescendants = true,
194
194
 
195
195
  Blend.New "ImageLabel" {
196
- Size = UDim2.new(2, 0, 1, 0),
196
+ Size = UDim2.fromScale(2, 1),
197
197
  BackgroundTransparency = 1,
198
198
  ImageTransparency = self._transparency,
199
199
  Image = self._image,
@@ -229,15 +229,15 @@ function RadialImage:_render()
229
229
 
230
230
  Blend.New "Frame" {
231
231
  Name = "RightFrame",
232
- Size = UDim2.new(0.5, 0, 1, 0),
233
- Position = UDim2.new(0.5, 0, 0, 0),
232
+ Size = UDim2.fromScale(0.5, 1),
233
+ Position = UDim2.fromScale(0.5, 0),
234
234
  BackgroundTransparency = 1,
235
235
  ClipsDescendants = true,
236
236
 
237
237
  Blend.New "ImageLabel" {
238
- Size = UDim2.new(2, 0, 1, 0),
238
+ Size = UDim2.fromScale(2, 1),
239
239
  AnchorPoint = Vector2.new(1, 0),
240
- Position = UDim2.new(1, 0, 0, 0),
240
+ Position = UDim2.fromScale(1, 0),
241
241
  BackgroundTransparency = 1,
242
242
  ImageTransparency = self._transparency,
243
243
  Image = self._image,