@quenty/colorpalette 10.25.2-canary.a3ac54d.0 → 10.25.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,7 +3,15 @@
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.2-canary.a3ac54d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpalette@10.25.1...@quenty/colorpalette@10.25.2-canary.a3ac54d.0) (2025-11-22)
6
+ ## [10.25.3-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpalette@10.25.2...@quenty/colorpalette@10.25.3-canary.607f741.0) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/colorpalette
9
+
10
+
11
+
12
+
13
+
14
+ ## [10.25.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpalette@10.25.1...@quenty/colorpalette@10.25.2) (2025-11-22)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/colorpalette
9
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/colorpalette",
3
- "version": "10.25.2-canary.a3ac54d.0",
3
+ "version": "10.25.3-canary.607f741.0",
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.2-canary.a3ac54d.0",
33
- "@quenty/brio": "14.20.1-canary.a3ac54d.0",
34
- "@quenty/color3utils": "11.22.2-canary.a3ac54d.0",
35
- "@quenty/colorpicker": "10.23.2-canary.a3ac54d.0",
32
+ "@quenty/blend": "12.22.3-canary.607f741.0",
33
+ "@quenty/brio": "14.20.1",
34
+ "@quenty/color3utils": "11.22.3-canary.607f741.0",
35
+ "@quenty/colorpicker": "10.23.3-canary.607f741.0",
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.2-canary.a3ac54d.0",
39
+ "@quenty/observablecollection": "12.24.3-canary.607f741.0",
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.2-canary.a3ac54d.0"
43
+ "@quenty/valueobject": "13.21.3-canary.607f741.0"
44
44
  },
45
- "gitHead": "a3ac54d43aafa1c37b0e8c9b6e7b20b3f3362742"
45
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
46
46
  }
@@ -22,20 +22,22 @@ local ColorPalette = setmetatable({}, BaseObject)
22
22
  ColorPalette.ClassName = "ColorPalette"
23
23
  ColorPalette.__index = ColorPalette
24
24
 
25
- export type ColorPalette = typeof(setmetatable(
26
- {} :: {
27
- _swatches: { ColorSwatch.ColorSwatch },
28
- _gradePalette: ColorGradePalette.ColorGradePalette,
29
- _swatchMap: any,
30
- _colorGradeMap: any,
31
- _colorValues: { [string]: ValueObject.ValueObject<Color3> },
32
- _vividnessValues: { [string]: ValueObject.ValueObject<number> },
33
-
34
- ColorSwatchAdded: Signal.Signal<string>,
35
- ColorGradeAdded: Signal.Signal<string>,
36
- },
37
- {} :: typeof({ __index = ColorPalette })
38
- )) & BaseObject.BaseObject
25
+ export type ColorPalette =
26
+ typeof(setmetatable(
27
+ {} :: {
28
+ _swatches: { ColorSwatch.ColorSwatch },
29
+ _gradePalette: ColorGradePalette.ColorGradePalette,
30
+ _swatchMap: any,
31
+ _colorGradeMap: any,
32
+ _colorValues: { [string]: ValueObject.ValueObject<Color3> },
33
+ _vividnessValues: { [string]: ValueObject.ValueObject<number> },
34
+
35
+ ColorSwatchAdded: Signal.Signal<string>,
36
+ ColorGradeAdded: Signal.Signal<string>,
37
+ },
38
+ {} :: typeof({ __index = ColorPalette })
39
+ ))
40
+ & BaseObject.BaseObject
39
41
 
40
42
  function ColorPalette.new(): ColorPalette
41
43
  local self: ColorPalette = setmetatable(BaseObject.new() :: any, ColorPalette)
@@ -18,16 +18,18 @@ local FontPalette = setmetatable({}, BaseObject)
18
18
  FontPalette.ClassName = "FontPalette"
19
19
  FontPalette.__index = FontPalette
20
20
 
21
- export type FontPalette = typeof(setmetatable(
22
- {} :: {
23
- FontAdded: Signal.Signal<string>,
24
- _fontKeys: ObservableSet.ObservableSet<string>,
25
- _fonts: { [string]: ValueObject.ValueObject<Enum.Font> },
26
- _fontFaces: { [string]: ValueObject.ValueObject<Font> },
27
- _defaultFontMap: { [string]: Enum.Font | Font },
28
- },
29
- {} :: typeof({ __index = FontPalette })
30
- )) & BaseObject.BaseObject
21
+ export type FontPalette =
22
+ typeof(setmetatable(
23
+ {} :: {
24
+ FontAdded: Signal.Signal<string>,
25
+ _fontKeys: ObservableSet.ObservableSet<string>,
26
+ _fonts: { [string]: ValueObject.ValueObject<Enum.Font> },
27
+ _fontFaces: { [string]: ValueObject.ValueObject<Font> },
28
+ _defaultFontMap: { [string]: Enum.Font | Font },
29
+ },
30
+ {} :: typeof({ __index = FontPalette })
31
+ ))
32
+ & BaseObject.BaseObject
31
33
 
32
34
  --[=[
33
35
  Constructs a new font palette.
@@ -15,14 +15,16 @@ local ColorGradePalette = setmetatable({}, BaseObject)
15
15
  ColorGradePalette.ClassName = "ColorGradePalette"
16
16
  ColorGradePalette.__index = ColorGradePalette
17
17
 
18
- export type ColorGradePalette = typeof(setmetatable(
19
- {} :: {
20
- _grades: { [string]: Observable.Observable<number> },
21
- _vividness: { [string]: Observable.Observable<number> },
22
- _defaultSurfaceName: ValueObject.ValueObject<string>,
23
- },
24
- {} :: typeof({ __index = ColorGradePalette })
25
- )) & BaseObject.BaseObject
18
+ export type ColorGradePalette =
19
+ typeof(setmetatable(
20
+ {} :: {
21
+ _grades: { [string]: Observable.Observable<number> },
22
+ _vividness: { [string]: Observable.Observable<number> },
23
+ _defaultSurfaceName: ValueObject.ValueObject<string>,
24
+ },
25
+ {} :: typeof({ __index = ColorGradePalette })
26
+ ))
27
+ & BaseObject.BaseObject
26
28
 
27
29
  function ColorGradePalette.new(): ColorGradePalette
28
30
  local self: ColorGradePalette = setmetatable(BaseObject.new() :: any, ColorGradePalette)
@@ -22,14 +22,16 @@ local ColorSwatch = setmetatable({}, BaseObject)
22
22
  ColorSwatch.ClassName = "ColorSwatch"
23
23
  ColorSwatch.__index = ColorSwatch
24
24
 
25
- export type ColorSwatch = typeof(setmetatable(
26
- {} :: {
27
- _color: ValueObject.ValueObject<Color3>,
28
- _vividness: ValueObject.ValueObject<number>,
29
- Changed: Signal.Signal<Color3, Color3>,
30
- },
31
- {} :: typeof({ __index = ColorSwatch })
32
- )) & BaseObject.BaseObject
25
+ export type ColorSwatch =
26
+ typeof(setmetatable(
27
+ {} :: {
28
+ _color: ValueObject.ValueObject<Color3>,
29
+ _vividness: ValueObject.ValueObject<number>,
30
+ Changed: Signal.Signal<Color3, Color3>,
31
+ },
32
+ {} :: typeof({ __index = ColorSwatch })
33
+ ))
34
+ & BaseObject.BaseObject
33
35
 
34
36
  function ColorSwatch.new(color: ValueObject.Mountable<Color3>, vividness: number?): ColorSwatch
35
37
  local self: ColorSwatch = setmetatable(BaseObject.new() :: any, ColorSwatch)