@quenty/colorpalette 10.25.0 → 10.25.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
|
+
## [10.25.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpalette@10.25.0...@quenty/colorpalette@10.25.1) (2025-11-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/colorpalette
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [10.25.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpalette@10.24.0...@quenty/colorpalette@10.25.0) (2025-10-08)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/colorpalette",
|
|
3
|
-
"version": "10.25.
|
|
3
|
+
"version": "10.25.1",
|
|
4
4
|
"description": "Color palette system for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -29,18 +29,18 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@quenty/baseobject": "^10.9.0",
|
|
32
|
-
"@quenty/blend": "^12.22.
|
|
32
|
+
"@quenty/blend": "^12.22.1",
|
|
33
33
|
"@quenty/brio": "^14.20.0",
|
|
34
|
-
"@quenty/color3utils": "^11.22.
|
|
35
|
-
"@quenty/colorpicker": "^10.23.
|
|
34
|
+
"@quenty/color3utils": "^11.22.1",
|
|
35
|
+
"@quenty/colorpicker": "^10.23.1",
|
|
36
36
|
"@quenty/loader": "^10.9.0",
|
|
37
37
|
"@quenty/maid": "^3.5.0",
|
|
38
38
|
"@quenty/math": "^2.7.3",
|
|
39
|
-
"@quenty/observablecollection": "^12.24.
|
|
39
|
+
"@quenty/observablecollection": "^12.24.1",
|
|
40
40
|
"@quenty/rx": "^13.20.0",
|
|
41
41
|
"@quenty/signal": "^7.11.1",
|
|
42
42
|
"@quenty/table": "^3.8.0",
|
|
43
|
-
"@quenty/valueobject": "^13.21.
|
|
43
|
+
"@quenty/valueobject": "^13.21.1"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "f14f6bf0f8ca2b041c70ed27b68ad385a76e6164"
|
|
46
46
|
}
|
|
@@ -72,14 +72,14 @@ return function(target)
|
|
|
72
72
|
|
|
73
73
|
return Blend.New "Frame" {
|
|
74
74
|
BackgroundColor3 = palette:ObserveColor("surface"),
|
|
75
|
-
Size = UDim2.
|
|
75
|
+
Size = UDim2.fromOffset(250, 100),
|
|
76
76
|
|
|
77
77
|
[Blend.Children] = {
|
|
78
78
|
Blend.New "TextLabel" {
|
|
79
79
|
TextColor3 = palette:ObserveColor("text"),
|
|
80
80
|
Text = labelText,
|
|
81
81
|
Font = Enum.Font.FredokaOne,
|
|
82
|
-
Size = UDim2.
|
|
82
|
+
Size = UDim2.fromScale(1, 1),
|
|
83
83
|
BackgroundTransparency = 1,
|
|
84
84
|
TextScaled = true,
|
|
85
85
|
ZIndex = 2,
|
|
@@ -149,7 +149,7 @@ return function(target)
|
|
|
149
149
|
Text = "Action",
|
|
150
150
|
TextScaled = true,
|
|
151
151
|
Font = Enum.Font.FredokaOne,
|
|
152
|
-
Size = UDim2.
|
|
152
|
+
Size = UDim2.fromScale(1, 1),
|
|
153
153
|
BackgroundTransparency = 1,
|
|
154
154
|
ZIndex = 2,
|
|
155
155
|
},
|
|
@@ -197,10 +197,10 @@ return function(target)
|
|
|
197
197
|
end
|
|
198
198
|
|
|
199
199
|
maid:GiveTask((Blend.New "ScrollingFrame" {
|
|
200
|
-
Size = UDim2.
|
|
200
|
+
Size = UDim2.fromScale(1, 1),
|
|
201
201
|
BackgroundColor3 = Color3.new(0, 0, 0),
|
|
202
202
|
AutomaticCanvasSize = Enum.AutomaticSize.Y,
|
|
203
|
-
CanvasSize = UDim2.
|
|
203
|
+
CanvasSize = UDim2.fromScale(1, 0),
|
|
204
204
|
Parent = target,
|
|
205
205
|
[Blend.Children] = {
|
|
206
206
|
ColorPickerStoryUtils.create(maid, function(createPicker)
|
|
@@ -211,7 +211,7 @@ return function(target)
|
|
|
211
211
|
end),
|
|
212
212
|
|
|
213
213
|
Blend.New "Frame" {
|
|
214
|
-
Size = UDim2.
|
|
214
|
+
Size = UDim2.fromScale(1, 0),
|
|
215
215
|
BackgroundTransparency = 1,
|
|
216
216
|
AutomaticSize = Enum.AutomaticSize.Y,
|
|
217
217
|
|
|
@@ -240,7 +240,7 @@ return function(target)
|
|
|
240
240
|
|
|
241
241
|
Blend.New "Frame" {
|
|
242
242
|
Name = "TestCustomColor",
|
|
243
|
-
Size = UDim2.
|
|
243
|
+
Size = UDim2.fromOffset(30, 30),
|
|
244
244
|
BackgroundColor3 = palette:ObserveColor(Color3.new(0, 0, 1), "text"),
|
|
245
245
|
},
|
|
246
246
|
},
|
|
@@ -61,14 +61,14 @@ return function(target)
|
|
|
61
61
|
|
|
62
62
|
return Blend.New "Frame" {
|
|
63
63
|
BackgroundColor3 = surface:ObserveGraded(gradePalette:ObserveGrade("surface")),
|
|
64
|
-
Size = UDim2.
|
|
64
|
+
Size = UDim2.fromOffset(250, 100),
|
|
65
65
|
|
|
66
66
|
[Blend.Children] = {
|
|
67
67
|
Blend.New "TextLabel" {
|
|
68
68
|
TextColor3 = text:ObserveGraded(gradePalette:ObserveGrade("text")),
|
|
69
69
|
Text = labelText,
|
|
70
70
|
Font = Enum.Font.FredokaOne,
|
|
71
|
-
Size = UDim2.
|
|
71
|
+
Size = UDim2.fromScale(1, 1),
|
|
72
72
|
BackgroundTransparency = 1,
|
|
73
73
|
TextScaled = true,
|
|
74
74
|
ZIndex = 2,
|
|
@@ -137,7 +137,7 @@ return function(target)
|
|
|
137
137
|
Text = "Action",
|
|
138
138
|
TextScaled = true,
|
|
139
139
|
Font = Enum.Font.FredokaOne,
|
|
140
|
-
Size = UDim2.
|
|
140
|
+
Size = UDim2.fromScale(1, 1),
|
|
141
141
|
BackgroundTransparency = 1,
|
|
142
142
|
ZIndex = 2,
|
|
143
143
|
},
|
|
@@ -181,10 +181,10 @@ return function(target)
|
|
|
181
181
|
end
|
|
182
182
|
|
|
183
183
|
maid:GiveTask((Blend.New "ScrollingFrame" {
|
|
184
|
-
Size = UDim2.
|
|
184
|
+
Size = UDim2.fromScale(1, 1),
|
|
185
185
|
BackgroundColor3 = Color3.new(0, 0, 0),
|
|
186
186
|
AutomaticCanvasSize = Enum.AutomaticSize.Y,
|
|
187
|
-
CanvasSize = UDim2.
|
|
187
|
+
CanvasSize = UDim2.fromScale(1, 0),
|
|
188
188
|
Parent = target,
|
|
189
189
|
|
|
190
190
|
[Blend.Children] = {
|
|
@@ -196,7 +196,7 @@ return function(target)
|
|
|
196
196
|
end),
|
|
197
197
|
|
|
198
198
|
Blend.New "Frame" {
|
|
199
|
-
Size = UDim2.
|
|
199
|
+
Size = UDim2.fromScale(1, 0),
|
|
200
200
|
BackgroundTransparency = 1,
|
|
201
201
|
AutomaticSize = Enum.AutomaticSize.Y,
|
|
202
202
|
|
|
@@ -15,19 +15,19 @@ return function(target)
|
|
|
15
15
|
local function entry(color, text, isBaseColor)
|
|
16
16
|
return Blend.New "Frame" {
|
|
17
17
|
Name = "Entry",
|
|
18
|
-
Size = UDim2.
|
|
18
|
+
Size = UDim2.fromOffset(25, 45),
|
|
19
19
|
BackgroundTransparency = 1,
|
|
20
20
|
|
|
21
21
|
[Blend.Children] = {
|
|
22
22
|
Blend.New "Frame" {
|
|
23
23
|
BackgroundColor3 = color,
|
|
24
|
-
Size = UDim2.
|
|
24
|
+
Size = UDim2.fromOffset(25, 25),
|
|
25
25
|
},
|
|
26
26
|
|
|
27
27
|
Blend.New "TextLabel" {
|
|
28
28
|
Text = tostring(text),
|
|
29
29
|
Size = UDim2.new(1, 0, 0, 15),
|
|
30
|
-
Position = UDim2.
|
|
30
|
+
Position = UDim2.fromScale(0, 1),
|
|
31
31
|
AnchorPoint = Vector2.new(0, 1),
|
|
32
32
|
Font = Enum.Font.Code,
|
|
33
33
|
TextScaled = true,
|
|
@@ -70,7 +70,7 @@ return function(target)
|
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
maid:GiveTask((Blend.New "ScrollingFrame" {
|
|
73
|
-
Size = UDim2.
|
|
73
|
+
Size = UDim2.fromScale(1, 1),
|
|
74
74
|
Parent = target,
|
|
75
75
|
[Blend.Children] = {
|
|
76
76
|
palette(Color3.new(0, 0, 0)),
|