@quenty/colorpicker 10.23.6-canary.b2b6e1d.0 → 10.23.7-canary.90de6eb.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,12 +3,20 @@
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.6-canary.b2b6e1d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpicker@10.23.5...@quenty/colorpicker@10.23.6-canary.b2b6e1d.0) (2025-12-30)
6
+ ## [10.23.7-canary.90de6eb.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpicker@10.23.6...@quenty/colorpicker@10.23.7-canary.90de6eb.0) (2026-01-03)
7
+
8
+ **Note:** Version bump only for package @quenty/colorpicker
9
+
10
+
11
+
12
+
13
+
14
+ ## [10.23.6](https://github.com/Quenty/NevermoreEngine/compare/@quenty/colorpicker@10.23.5...@quenty/colorpicker@10.23.6) (2025-12-31)
7
15
 
8
16
 
9
17
  ### Bug Fixes
10
18
 
11
- * Fix dependencies missing in packages ([f294cf2](https://github.com/Quenty/NevermoreEngine/commit/f294cf2eec1dd0e95b09d4126287b812b77e1e72))
19
+ * Fix dependencies missing in packages ([97bd47d](https://github.com/Quenty/NevermoreEngine/commit/97bd47d341017152f91a28d8444252d20a8de9fa))
12
20
 
13
21
 
14
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/colorpicker",
3
- "version": "10.23.6-canary.b2b6e1d.0",
3
+ "version": "10.23.7-canary.90de6eb.0",
4
4
  "description": "Color picking UI system for Roblox.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,18 +28,18 @@
28
28
  "access": "public"
29
29
  },
30
30
  "dependencies": {
31
- "@quenty/baseobject": "10.9.0",
32
- "@quenty/basicpane": "13.21.6-canary.b2b6e1d.0",
33
- "@quenty/blend": "12.22.6-canary.b2b6e1d.0",
34
- "@quenty/buttondragmodel": "1.19.6-canary.b2b6e1d.0",
35
- "@quenty/color3utils": "11.22.6-canary.b2b6e1d.0",
36
- "@quenty/inputobjectutils": "4.21.4-canary.b2b6e1d.0",
37
- "@quenty/instanceutils": "13.20.5-canary.b2b6e1d.0",
38
- "@quenty/loader": "10.9.0",
39
- "@quenty/maid": "3.5.0",
31
+ "@quenty/baseobject": "10.9.1-canary.90de6eb.0",
32
+ "@quenty/basicpane": "13.21.7-canary.90de6eb.0",
33
+ "@quenty/blend": "12.22.7-canary.90de6eb.0",
34
+ "@quenty/buttondragmodel": "1.19.7-canary.90de6eb.0",
35
+ "@quenty/color3utils": "11.22.7-canary.90de6eb.0",
36
+ "@quenty/inputobjectutils": "4.21.5-canary.90de6eb.0",
37
+ "@quenty/instanceutils": "13.20.6-canary.90de6eb.0",
38
+ "@quenty/loader": "10.9.1-canary.90de6eb.0",
39
+ "@quenty/maid": "3.5.1-canary.90de6eb.0",
40
40
  "@quenty/math": "2.7.3",
41
- "@quenty/signal": "7.11.3-canary.b2b6e1d.0",
42
- "@quenty/valueobject": "13.21.6-canary.b2b6e1d.0"
41
+ "@quenty/signal": "7.11.3-canary.90de6eb.0",
42
+ "@quenty/valueobject": "13.21.7-canary.90de6eb.0"
43
43
  },
44
- "gitHead": "b2b6e1d9fe6e894de48351ee64859d59d82468fe"
44
+ "gitHead": "90de6ebb6e0cb5e6798e08b312cb1864c1d3354c"
45
45
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Picker for hue and Saturation in HSV. See [HSVColorPicker] for the full color picker,
3
4
  which also allows you to select "Value".
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class serviceBag.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local HSColorPicker = require("HSColorPicker")
9
11
  local Maid = require("Maid")
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  A HSV color picker component which can be used to select colors using
3
4
  an interface standard to Roblox Studio.
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class HSVColorPicker.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local HSVColorPicker = require("HSVColorPicker")
9
11
  local Maid = require("Maid")
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Picker for value in HSV. See [HSVColorPicker] for usage.
3
4
 
@@ -1,9 +1,11 @@
1
+ --!nonstrict
1
2
  --[[
2
3
  @class ValueColorPicker.story
3
4
  ]]
4
5
 
5
- local require =
6
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
6
+ local require = (require :: any)(
7
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
8
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
7
9
 
8
10
  local Maid = require("Maid")
9
11
  local ValueColorPicker = require("ValueColorPicker")
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class ColorPickerStoryUtils
3
4
  ]=]