@quenty/colorpicker 10.23.2 → 10.23.3-canary.607f741.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
|
+
## [10.23.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpicker@10.23.2...@quenty/colorpicker@10.23.3-canary.607f741.0) (2025-12-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/colorpicker
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [10.23.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpicker@10.23.1...@quenty/colorpicker@10.23.2) (2025-11-22)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/colorpicker
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/colorpicker",
|
|
3
|
-
"version": "10.23.
|
|
3
|
+
"version": "10.23.3-canary.607f741.0",
|
|
4
4
|
"description": "Color picking UI system for Roblox.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@quenty/baseobject": "
|
|
32
|
-
"@quenty/basicpane": "
|
|
33
|
-
"@quenty/blend": "
|
|
34
|
-
"@quenty/buttondragmodel": "
|
|
35
|
-
"@quenty/color3utils": "
|
|
36
|
-
"@quenty/inputobjectutils": "
|
|
37
|
-
"@quenty/instanceutils": "
|
|
38
|
-
"@quenty/loader": "
|
|
39
|
-
"@quenty/maid": "
|
|
40
|
-
"@quenty/math": "
|
|
41
|
-
"@quenty/valueobject": "
|
|
31
|
+
"@quenty/baseobject": "10.9.0",
|
|
32
|
+
"@quenty/basicpane": "13.21.3-canary.607f741.0",
|
|
33
|
+
"@quenty/blend": "12.22.3-canary.607f741.0",
|
|
34
|
+
"@quenty/buttondragmodel": "1.19.3-canary.607f741.0",
|
|
35
|
+
"@quenty/color3utils": "11.22.3-canary.607f741.0",
|
|
36
|
+
"@quenty/inputobjectutils": "4.21.1-canary.607f741.0",
|
|
37
|
+
"@quenty/instanceutils": "13.20.2",
|
|
38
|
+
"@quenty/loader": "10.9.0",
|
|
39
|
+
"@quenty/maid": "3.5.0",
|
|
40
|
+
"@quenty/math": "2.7.3",
|
|
41
|
+
"@quenty/valueobject": "13.21.3-canary.607f741.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
|
|
44
44
|
}
|
|
@@ -19,20 +19,22 @@ local ColorPickerCursorPreview = setmetatable({}, BasicPane)
|
|
|
19
19
|
ColorPickerCursorPreview.ClassName = "ColorPickerCursorPreview"
|
|
20
20
|
ColorPickerCursorPreview.__index = ColorPickerCursorPreview
|
|
21
21
|
|
|
22
|
-
export type ColorPickerCursorPreview =
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
22
|
+
export type ColorPickerCursorPreview =
|
|
23
|
+
typeof(setmetatable(
|
|
24
|
+
{} :: {
|
|
25
|
+
Gui: Frame?,
|
|
26
|
+
_transparency: ValueObject.ValueObject<number>,
|
|
27
|
+
_backgroundColorHint: ValueObject.ValueObject<Color3>,
|
|
28
|
+
_colorValue: ValueObject.ValueObject<Color3>,
|
|
29
|
+
_heightAbs: ValueObject.ValueObject<number>,
|
|
30
|
+
_offsetAbs: ValueObject.ValueObject<number>,
|
|
31
|
+
_position: ValueObject.ValueObject<Vector2>,
|
|
32
|
+
|
|
33
|
+
PositionChanged: Signal.Signal<Vector2>,
|
|
34
|
+
},
|
|
35
|
+
{} :: typeof({ __index = ColorPickerCursorPreview })
|
|
36
|
+
))
|
|
37
|
+
& BasicPane.BasicPane
|
|
36
38
|
|
|
37
39
|
function ColorPickerCursorPreview.new(): ColorPickerCursorPreview
|
|
38
40
|
local self: ColorPickerCursorPreview = setmetatable(BasicPane.new() :: any, ColorPickerCursorPreview)
|
|
@@ -16,16 +16,18 @@ local ColorPickerTriangle = setmetatable({}, BaseObject)
|
|
|
16
16
|
ColorPickerTriangle.ClassName = "ColorPickerTriangle"
|
|
17
17
|
ColorPickerTriangle.__index = ColorPickerTriangle
|
|
18
18
|
|
|
19
|
-
export type ColorPickerTriangle =
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
19
|
+
export type ColorPickerTriangle =
|
|
20
|
+
typeof(setmetatable(
|
|
21
|
+
{} :: {
|
|
22
|
+
Gui: Frame?,
|
|
23
|
+
_transparency: ValueObject.ValueObject<number>,
|
|
24
|
+
_backgroundColorHint: ValueObject.ValueObject<Color3>,
|
|
25
|
+
_color: ValueObject.ValueObject<Color3>,
|
|
26
|
+
_sizeValue: ValueObject.ValueObject<Vector2>,
|
|
27
|
+
},
|
|
28
|
+
{} :: typeof({ __index = ColorPickerTriangle })
|
|
29
|
+
))
|
|
30
|
+
& BaseObject.BaseObject
|
|
29
31
|
|
|
30
32
|
function ColorPickerTriangle.new(): ColorPickerTriangle
|
|
31
33
|
local self: ColorPickerTriangle = setmetatable(BaseObject.new() :: any, ColorPickerTriangle)
|
|
@@ -17,20 +17,22 @@ local HSColorPickerCursor = setmetatable({}, BaseObject)
|
|
|
17
17
|
HSColorPickerCursor.ClassName = "HSColorPickerCursor"
|
|
18
18
|
HSColorPickerCursor.__index = HSColorPickerCursor
|
|
19
19
|
|
|
20
|
-
export type HSColorPickerCursor =
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
20
|
+
export type HSColorPickerCursor =
|
|
21
|
+
typeof(setmetatable(
|
|
22
|
+
{} :: {
|
|
23
|
+
Gui: Frame?,
|
|
24
|
+
_backgroundColorHint: ValueObject.ValueObject<Color3>,
|
|
25
|
+
_height: ValueObject.ValueObject<number>,
|
|
26
|
+
_crossHairWidthAbs: ValueObject.ValueObject<number>,
|
|
27
|
+
_verticalHairVisible: ValueObject.ValueObject<boolean>,
|
|
28
|
+
_horizontalHairVisible: ValueObject.ValueObject<boolean>,
|
|
29
|
+
_position: ValueObject.ValueObject<Vector2>,
|
|
30
|
+
_transparency: ValueObject.ValueObject<number>,
|
|
31
|
+
PositionChanged: Signal.Signal<Vector2>,
|
|
32
|
+
},
|
|
33
|
+
{} :: typeof({ __index = HSColorPickerCursor })
|
|
34
|
+
))
|
|
35
|
+
& BaseObject.BaseObject
|
|
34
36
|
|
|
35
37
|
function HSColorPickerCursor.new(): HSColorPickerCursor
|
|
36
38
|
local self: HSColorPickerCursor = setmetatable(BaseObject.new() :: any, HSColorPickerCursor)
|