@rbxts-ui/theme 1.3.0 → 2.0.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/dist/index.d.ts +3 -0
- package/dist/init.luau +12 -3
- package/dist/palette.d.ts +94 -0
- package/dist/palette.luau +106 -0
- package/dist/provider.d.ts +36 -0
- package/dist/provider.luau +112 -0
- package/dist/tokens.d.ts +46 -0
- package/dist/tokens.luau +61 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -3
package/dist/index.d.ts
CHANGED
package/dist/init.luau
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
-- Compiled with roblox-ts v3.0.0
|
|
2
2
|
local TS = _G[script]
|
|
3
|
+
local exports = {}
|
|
3
4
|
local config = TS.import(script, TS.getModule(script, "@rbxts", "ripple").src).config
|
|
5
|
+
for _k, _v in TS.import(script, script, "tokens") or {} do
|
|
6
|
+
exports[_k] = _v
|
|
7
|
+
end
|
|
8
|
+
for _k, _v in TS.import(script, script, "provider") or {} do
|
|
9
|
+
exports[_k] = _v
|
|
10
|
+
end
|
|
11
|
+
for _k, _v in TS.import(script, script, "palette") or {} do
|
|
12
|
+
exports[_k] = _v
|
|
13
|
+
end
|
|
4
14
|
local defaultPalette = {
|
|
5
15
|
white = Color3.fromRGB(255, 255, 255),
|
|
6
16
|
offwhite = Color3.fromRGB(234, 238, 253),
|
|
@@ -58,6 +68,5 @@ local defaultTheme = {
|
|
|
58
68
|
fonts = defaultFonts,
|
|
59
69
|
springs = defaultSprings,
|
|
60
70
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
71
|
+
exports.defaultTheme = defaultTheme
|
|
72
|
+
return exports
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/** Catppuccin Mocha Accents */
|
|
2
|
+
export declare const accents: {
|
|
3
|
+
readonly rosewater: Color3;
|
|
4
|
+
readonly flamingo: Color3;
|
|
5
|
+
readonly pink: Color3;
|
|
6
|
+
readonly mauve: Color3;
|
|
7
|
+
readonly red: Color3;
|
|
8
|
+
readonly darkRed: Color3;
|
|
9
|
+
readonly maroon: Color3;
|
|
10
|
+
readonly peach: Color3;
|
|
11
|
+
readonly yellow: Color3;
|
|
12
|
+
readonly darkYellow: Color3;
|
|
13
|
+
readonly green: Color3;
|
|
14
|
+
readonly darkGreen: Color3;
|
|
15
|
+
readonly teal: Color3;
|
|
16
|
+
readonly sky: Color3;
|
|
17
|
+
readonly sapphire: Color3;
|
|
18
|
+
readonly blue: Color3;
|
|
19
|
+
readonly darkBlue: Color3;
|
|
20
|
+
readonly lavender: Color3;
|
|
21
|
+
};
|
|
22
|
+
/** Catppuccin Mocha Neutrals */
|
|
23
|
+
export declare const neutrals: {
|
|
24
|
+
readonly text: Color3;
|
|
25
|
+
readonly subtext1: Color3;
|
|
26
|
+
readonly subtext0: Color3;
|
|
27
|
+
readonly overlay2: Color3;
|
|
28
|
+
readonly overlay1: Color3;
|
|
29
|
+
readonly overlay0: Color3;
|
|
30
|
+
readonly surface2: Color3;
|
|
31
|
+
readonly surface1: Color3;
|
|
32
|
+
readonly surface0: Color3;
|
|
33
|
+
readonly base: Color3;
|
|
34
|
+
readonly mantle: Color3;
|
|
35
|
+
readonly crust: Color3;
|
|
36
|
+
readonly disabled: Color3;
|
|
37
|
+
readonly lightblue: Color3;
|
|
38
|
+
};
|
|
39
|
+
/** Catppuccin Mocha palette — mutated in place by `@rbxts-ui/studio-theme`. */
|
|
40
|
+
export declare const palette: {
|
|
41
|
+
readonly blueishColor: Color3;
|
|
42
|
+
readonly lightBlueishColor: Color3;
|
|
43
|
+
readonly greenishColor: Color3;
|
|
44
|
+
readonly redishColor: Color3;
|
|
45
|
+
readonly yellowishColor: Color3;
|
|
46
|
+
readonly macRed: Color3;
|
|
47
|
+
readonly macYellow: Color3;
|
|
48
|
+
readonly macGreen: Color3;
|
|
49
|
+
readonly white: Color3;
|
|
50
|
+
readonly offwhite: Color3;
|
|
51
|
+
readonly black: Color3;
|
|
52
|
+
readonly darkgray: Color3;
|
|
53
|
+
readonly text: Color3;
|
|
54
|
+
readonly subtext1: Color3;
|
|
55
|
+
readonly subtext0: Color3;
|
|
56
|
+
readonly overlay2: Color3;
|
|
57
|
+
readonly overlay1: Color3;
|
|
58
|
+
readonly overlay0: Color3;
|
|
59
|
+
readonly surface2: Color3;
|
|
60
|
+
readonly surface1: Color3;
|
|
61
|
+
readonly surface0: Color3;
|
|
62
|
+
readonly base: Color3;
|
|
63
|
+
readonly mantle: Color3;
|
|
64
|
+
readonly crust: Color3;
|
|
65
|
+
readonly disabled: Color3;
|
|
66
|
+
readonly lightblue: Color3;
|
|
67
|
+
readonly rosewater: Color3;
|
|
68
|
+
readonly flamingo: Color3;
|
|
69
|
+
readonly pink: Color3;
|
|
70
|
+
readonly mauve: Color3;
|
|
71
|
+
readonly red: Color3;
|
|
72
|
+
readonly darkRed: Color3;
|
|
73
|
+
readonly maroon: Color3;
|
|
74
|
+
readonly peach: Color3;
|
|
75
|
+
readonly yellow: Color3;
|
|
76
|
+
readonly darkYellow: Color3;
|
|
77
|
+
readonly green: Color3;
|
|
78
|
+
readonly darkGreen: Color3;
|
|
79
|
+
readonly teal: Color3;
|
|
80
|
+
readonly sky: Color3;
|
|
81
|
+
readonly sapphire: Color3;
|
|
82
|
+
readonly blue: Color3;
|
|
83
|
+
readonly darkBlue: Color3;
|
|
84
|
+
readonly lavender: Color3;
|
|
85
|
+
};
|
|
86
|
+
/** Ordered list of accent color names. */
|
|
87
|
+
export declare const accentList: readonly ["rosewater", "flamingo", "pink", "mauve", "red", "maroon", "peach", "yellow", "green", "teal", "sky", "sapphire", "blue", "lavender"];
|
|
88
|
+
export declare function getRandomAccent(): Color3;
|
|
89
|
+
export declare const gradientPurpleRed: ColorSequence;
|
|
90
|
+
export declare const gradientGreenBlue: ColorSequence;
|
|
91
|
+
export declare const gradientBluePurple: ColorSequence;
|
|
92
|
+
export declare const gradientTabActive: ColorSequence;
|
|
93
|
+
export declare const gradientProductBackground: ColorSequence;
|
|
94
|
+
//# sourceMappingURL=palette.d.ts.map
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
-- Compiled with roblox-ts v3.0.0
|
|
2
|
+
local TS = _G[script]
|
|
3
|
+
local Object = TS.import(script, TS.getModule(script, "@rbxts", "object-utils"))
|
|
4
|
+
--[[
|
|
5
|
+
*
|
|
6
|
+
* The full Catppuccin Mocha palette used by plugin views for specific hues
|
|
7
|
+
* (accents, gradients) alongside the semantic `tokens`. `@rbxts-ui/studio-theme`
|
|
8
|
+
* mutates this object in place on light/dark switch, so `palette.X` reads at
|
|
9
|
+
* module scope, in services, and in render all follow the active theme.
|
|
10
|
+
*
|
|
11
|
+
* @see https://github.com/catppuccin/catppuccin
|
|
12
|
+
|
|
13
|
+
]]
|
|
14
|
+
local blueishColor = Color3.fromRGB(0, 204, 255)
|
|
15
|
+
local lightBlueishColor = Color3.fromRGB(131, 230, 255)
|
|
16
|
+
local greenishColor = Color3.fromRGB(0, 254, 96)
|
|
17
|
+
local redishColor = Color3.fromRGB(255, 0, 0)
|
|
18
|
+
local yellowishColor = Color3.fromRGB(255, 255, 0)
|
|
19
|
+
local macRed = Color3.fromRGB(255, 96, 92)
|
|
20
|
+
local macYellow = Color3.fromRGB(255, 189, 68)
|
|
21
|
+
local macGreen = Color3.fromRGB(0, 202, 78)
|
|
22
|
+
--* Catppuccin Mocha Accents
|
|
23
|
+
local accents = {
|
|
24
|
+
rosewater = Color3.fromRGB(245, 224, 220),
|
|
25
|
+
flamingo = Color3.fromRGB(242, 205, 205),
|
|
26
|
+
pink = Color3.fromRGB(245, 194, 231),
|
|
27
|
+
mauve = Color3.fromRGB(203, 166, 247),
|
|
28
|
+
red = Color3.fromRGB(243, 139, 168),
|
|
29
|
+
darkRed = Color3.fromRGB(252, 28, 28),
|
|
30
|
+
maroon = Color3.fromRGB(235, 160, 172),
|
|
31
|
+
peach = Color3.fromRGB(250, 179, 135),
|
|
32
|
+
yellow = Color3.fromRGB(249, 226, 175),
|
|
33
|
+
darkYellow = Color3.fromRGB(255, 255, 0),
|
|
34
|
+
green = Color3.fromRGB(166, 227, 161),
|
|
35
|
+
darkGreen = Color3.fromRGB(0, 153, 0),
|
|
36
|
+
teal = Color3.fromRGB(148, 226, 213),
|
|
37
|
+
sky = Color3.fromRGB(137, 220, 235),
|
|
38
|
+
sapphire = Color3.fromRGB(116, 199, 236),
|
|
39
|
+
blue = Color3.fromRGB(137, 180, 250),
|
|
40
|
+
darkBlue = Color3.fromRGB(0, 26, 255),
|
|
41
|
+
lavender = Color3.fromRGB(180, 190, 254),
|
|
42
|
+
}
|
|
43
|
+
--* Catppuccin Mocha Neutrals
|
|
44
|
+
local neutrals = {
|
|
45
|
+
text = Color3.fromRGB(205, 214, 244),
|
|
46
|
+
subtext1 = Color3.fromRGB(186, 194, 222),
|
|
47
|
+
subtext0 = Color3.fromRGB(166, 173, 200),
|
|
48
|
+
overlay2 = Color3.fromRGB(147, 153, 178),
|
|
49
|
+
overlay1 = Color3.fromRGB(127, 132, 156),
|
|
50
|
+
overlay0 = Color3.fromRGB(108, 112, 134),
|
|
51
|
+
surface2 = Color3.fromRGB(88, 91, 112),
|
|
52
|
+
surface1 = Color3.fromRGB(69, 71, 90),
|
|
53
|
+
surface0 = Color3.fromRGB(49, 50, 68),
|
|
54
|
+
base = Color3.fromRGB(30, 30, 46),
|
|
55
|
+
mantle = Color3.fromRGB(24, 24, 37),
|
|
56
|
+
crust = Color3.fromRGB(17, 17, 27),
|
|
57
|
+
disabled = Color3.fromRGB(108, 112, 134),
|
|
58
|
+
lightblue = Color3.fromRGB(215, 223, 255),
|
|
59
|
+
}
|
|
60
|
+
local base = {
|
|
61
|
+
white = Color3.fromRGB(255, 255, 255),
|
|
62
|
+
offwhite = Color3.fromRGB(234, 238, 253),
|
|
63
|
+
black = Color3.fromRGB(0, 0, 0),
|
|
64
|
+
darkgray = Color3.fromRGB(69, 69, 79),
|
|
65
|
+
}
|
|
66
|
+
--* Catppuccin Mocha palette — mutated in place by `@rbxts-ui/studio-theme`.
|
|
67
|
+
local _object = table.clone(accents)
|
|
68
|
+
setmetatable(_object, nil)
|
|
69
|
+
for _k, _v in neutrals do
|
|
70
|
+
_object[_k] = _v
|
|
71
|
+
end
|
|
72
|
+
for _k, _v in base do
|
|
73
|
+
_object[_k] = _v
|
|
74
|
+
end
|
|
75
|
+
_object.blueishColor = blueishColor
|
|
76
|
+
_object.lightBlueishColor = lightBlueishColor
|
|
77
|
+
_object.greenishColor = greenishColor
|
|
78
|
+
_object.redishColor = redishColor
|
|
79
|
+
_object.yellowishColor = yellowishColor
|
|
80
|
+
_object.macRed = macRed
|
|
81
|
+
_object.macYellow = macYellow
|
|
82
|
+
_object.macGreen = macGreen
|
|
83
|
+
local palette = _object
|
|
84
|
+
--* Ordered list of accent color names.
|
|
85
|
+
local accentList = { "rosewater", "flamingo", "pink", "mauve", "red", "maroon", "peach", "yellow", "green", "teal", "sky", "sapphire", "blue", "lavender" }
|
|
86
|
+
local function getRandomAccent()
|
|
87
|
+
local values = Object.values(accents)
|
|
88
|
+
return values[math.random(0, #values - 1) + 1]
|
|
89
|
+
end
|
|
90
|
+
local gradientPurpleRed = ColorSequence.new(Color3.fromHex("#9004B2"), Color3.fromHex("#FB2E2E"))
|
|
91
|
+
local gradientGreenBlue = ColorSequence.new(Color3.fromHex("#04B257"), Color3.fromHex("#2EADFB"))
|
|
92
|
+
local gradientBluePurple = ColorSequence.new(Color3.fromHex("#B204AF"), Color3.fromHex("#6A2EFB"))
|
|
93
|
+
local gradientTabActive = ColorSequence.new(Color3.fromHex("#1F23F3"), Color3.fromHex("#A265F7"))
|
|
94
|
+
local gradientProductBackground = ColorSequence.new(Color3.fromHex("#5AE2F4"), Color3.fromHex("#A4FFFA"))
|
|
95
|
+
return {
|
|
96
|
+
getRandomAccent = getRandomAccent,
|
|
97
|
+
accents = accents,
|
|
98
|
+
neutrals = neutrals,
|
|
99
|
+
palette = palette,
|
|
100
|
+
accentList = accentList,
|
|
101
|
+
gradientPurpleRed = gradientPurpleRed,
|
|
102
|
+
gradientGreenBlue = gradientGreenBlue,
|
|
103
|
+
gradientBluePurple = gradientBluePurple,
|
|
104
|
+
gradientTabActive = gradientTabActive,
|
|
105
|
+
gradientProductBackground = gradientProductBackground,
|
|
106
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import React from "@rbxts/react";
|
|
2
|
+
import { ThemeMode, ThemeTokens } from "./tokens";
|
|
3
|
+
export interface ThemeProviderProps {
|
|
4
|
+
/** Active mode. Controlled — `@rbxts-ui/studio-theme` derives this from Studio. */
|
|
5
|
+
mode?: ThemeMode;
|
|
6
|
+
/** Global token overrides (typed) applied over the mode's tokens, e.g. `{ accent }`. */
|
|
7
|
+
tokens?: Partial<ThemeTokens>;
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export declare function ThemeProvider({ mode, tokens: tokenOverrides, children }: ThemeProviderProps): JSX.Element;
|
|
11
|
+
/** Current mode + token set. */
|
|
12
|
+
export declare function useTheme(): {
|
|
13
|
+
mode: ThemeMode;
|
|
14
|
+
tokens: ThemeTokens;
|
|
15
|
+
};
|
|
16
|
+
/** A component style declaration: slot name → semantic token key. */
|
|
17
|
+
export type StyleSpec = {
|
|
18
|
+
readonly [slot: string]: keyof ThemeTokens;
|
|
19
|
+
};
|
|
20
|
+
/** Resolved style: every declared slot as a concrete `Color3`. */
|
|
21
|
+
export type ResolvedStyle<S extends StyleSpec> = {
|
|
22
|
+
[K in keyof S]: Color3;
|
|
23
|
+
};
|
|
24
|
+
/** A partial, typed override of a style's slots (call-site or default). */
|
|
25
|
+
export type StyleOverride<S extends StyleSpec> = Partial<ResolvedStyle<S>>;
|
|
26
|
+
/** Extracts a component style hook's override type, for the component's `style?` prop. */
|
|
27
|
+
export type StyleProps<H> = H extends (override?: infer O) => unknown ? O : never;
|
|
28
|
+
export declare function makeStyle<S extends StyleSpec>(spec: S): (override?: StyleOverride<S>) => ResolvedStyle<S>;
|
|
29
|
+
/**
|
|
30
|
+
* Picks a value for the active mode at call sites that cannot use a hook
|
|
31
|
+
* (module scope, plain helpers). Reads the module-level mode kept current by
|
|
32
|
+
* `ThemeProvider`.
|
|
33
|
+
*/
|
|
34
|
+
export declare function pickTheme<T>(light: T, dark: T): T;
|
|
35
|
+
export declare function getActiveMode(): ThemeMode;
|
|
36
|
+
//# sourceMappingURL=provider.d.ts.map
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
-- Compiled with roblox-ts v3.0.0
|
|
2
|
+
local TS = _G[script]
|
|
3
|
+
local _react = TS.import(script, TS.getModule(script, "@rbxts", "react"))
|
|
4
|
+
local React = _react
|
|
5
|
+
local useContext = _react.useContext
|
|
6
|
+
local useMemo = _react.useMemo
|
|
7
|
+
local tokensForMode = TS.import(script, script.Parent, "tokens").tokensForMode
|
|
8
|
+
local ThemeContext = React.createContext({
|
|
9
|
+
mode = "light",
|
|
10
|
+
tokens = tokensForMode("light"),
|
|
11
|
+
})
|
|
12
|
+
--[[
|
|
13
|
+
*
|
|
14
|
+
* Module-level mirror of the active mode so the non-hook `pickTheme(light, dark)`
|
|
15
|
+
* helper (used at plugin call sites outside render) stays in sync. `ThemeProvider`
|
|
16
|
+
* keeps it current.
|
|
17
|
+
|
|
18
|
+
]]
|
|
19
|
+
local activeMode = "light"
|
|
20
|
+
local function ThemeProvider(_param)
|
|
21
|
+
local mode = _param.mode
|
|
22
|
+
if mode == nil then
|
|
23
|
+
mode = "light"
|
|
24
|
+
end
|
|
25
|
+
local tokenOverrides = _param.tokens
|
|
26
|
+
local children = _param.children
|
|
27
|
+
activeMode = mode
|
|
28
|
+
local value = useMemo(function()
|
|
29
|
+
local base = tokensForMode(mode)
|
|
30
|
+
if tokenOverrides == nil then
|
|
31
|
+
return {
|
|
32
|
+
mode = mode,
|
|
33
|
+
tokens = base,
|
|
34
|
+
}
|
|
35
|
+
end
|
|
36
|
+
local _object = table.clone(base)
|
|
37
|
+
setmetatable(_object, nil)
|
|
38
|
+
local merged = _object
|
|
39
|
+
for key, color in pairs(tokenOverrides) do
|
|
40
|
+
merged[key] = color
|
|
41
|
+
end
|
|
42
|
+
return {
|
|
43
|
+
mode = mode,
|
|
44
|
+
tokens = merged,
|
|
45
|
+
}
|
|
46
|
+
end, { mode, tokenOverrides })
|
|
47
|
+
return React.createElement(ThemeContext.Provider, {
|
|
48
|
+
value = value,
|
|
49
|
+
}, children)
|
|
50
|
+
end
|
|
51
|
+
--* Current mode + token set.
|
|
52
|
+
local function useTheme()
|
|
53
|
+
local ctx = useContext(ThemeContext)
|
|
54
|
+
return {
|
|
55
|
+
mode = ctx.mode,
|
|
56
|
+
tokens = ctx.tokens,
|
|
57
|
+
}
|
|
58
|
+
end
|
|
59
|
+
-- ---------------------------------------------------------------------------
|
|
60
|
+
-- Component styles
|
|
61
|
+
--
|
|
62
|
+
-- A style is declared once, outside the component body, as a typed map of named
|
|
63
|
+
-- slots to semantic token keys — no `(t) =>` callback, no stringly-typed registry:
|
|
64
|
+
--
|
|
65
|
+
-- const useInputRoundStyle = makeStyle({
|
|
66
|
+
-- bgColor: "surface",
|
|
67
|
+
-- outlineColor: "border",
|
|
68
|
+
-- });
|
|
69
|
+
--
|
|
70
|
+
-- `makeStyle` returns a typed hook. Inside the body, `useInputRoundStyle(props.style)`
|
|
71
|
+
-- resolves each slot against the active tokens and merges an optional, fully typed
|
|
72
|
+
-- call-site override. Expose `style?: StyleProps<typeof useInputRoundStyle>` as a prop.
|
|
73
|
+
-- ---------------------------------------------------------------------------
|
|
74
|
+
--* A component style declaration: slot name → semantic token key.
|
|
75
|
+
--* Resolved style: every declared slot as a concrete `Color3`.
|
|
76
|
+
--* A partial, typed override of a style's slots (call-site or default).
|
|
77
|
+
--* Extracts a component style hook's override type, for the component's `style?` prop.
|
|
78
|
+
local function makeStyle(spec)
|
|
79
|
+
return function(override)
|
|
80
|
+
local ctx = useContext(ThemeContext)
|
|
81
|
+
local result = {}
|
|
82
|
+
for slot, tokenKey in pairs(spec) do
|
|
83
|
+
result[slot] = ctx.tokens[tokenKey]
|
|
84
|
+
end
|
|
85
|
+
if override ~= nil then
|
|
86
|
+
for slot, color in pairs(override) do
|
|
87
|
+
result[slot] = color
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
return result
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
--[[
|
|
94
|
+
*
|
|
95
|
+
* Picks a value for the active mode at call sites that cannot use a hook
|
|
96
|
+
* (module scope, plain helpers). Reads the module-level mode kept current by
|
|
97
|
+
* `ThemeProvider`.
|
|
98
|
+
|
|
99
|
+
]]
|
|
100
|
+
local function pickTheme(light, dark)
|
|
101
|
+
return if activeMode == "dark" then dark else light
|
|
102
|
+
end
|
|
103
|
+
local function getActiveMode()
|
|
104
|
+
return activeMode
|
|
105
|
+
end
|
|
106
|
+
return {
|
|
107
|
+
ThemeProvider = ThemeProvider,
|
|
108
|
+
useTheme = useTheme,
|
|
109
|
+
makeStyle = makeStyle,
|
|
110
|
+
pickTheme = pickTheme,
|
|
111
|
+
getActiveMode = getActiveMode,
|
|
112
|
+
}
|
package/dist/tokens.d.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Semantic design tokens. Components reference roles (e.g. `surface`, `border`)
|
|
3
|
+
* instead of raw palette colors, so the same component themes correctly in light
|
|
4
|
+
* and dark. Light values are the original Catppuccin theme palette; dark values
|
|
5
|
+
* are the standalone graphite scheme (not a mechanical flip of light).
|
|
6
|
+
*/
|
|
7
|
+
export interface ThemeTokens {
|
|
8
|
+
/** Control / panel backgrounds. */
|
|
9
|
+
surface: Color3;
|
|
10
|
+
/** Hover state over a surface. */
|
|
11
|
+
surfaceHover: Color3;
|
|
12
|
+
/** Sunken wells — toggle tracks, sliders. */
|
|
13
|
+
surfaceSunken: Color3;
|
|
14
|
+
/** Raised strong surfaces — resize grips. */
|
|
15
|
+
surfaceRaised: Color3;
|
|
16
|
+
/** Primary text. */
|
|
17
|
+
textPrimary: Color3;
|
|
18
|
+
/** Text on an accent / inverse surface. */
|
|
19
|
+
textInverse: Color3;
|
|
20
|
+
/** Muted / disabled text. */
|
|
21
|
+
textMuted: Color3;
|
|
22
|
+
/** Outlines and dividers. */
|
|
23
|
+
border: Color3;
|
|
24
|
+
/** High-contrast marks — checkmarks, pills, tooltip backgrounds. */
|
|
25
|
+
mark: Color3;
|
|
26
|
+
/** Primary accent. */
|
|
27
|
+
accent: Color3;
|
|
28
|
+
/** Text/icon drawn on `accent`. */
|
|
29
|
+
accentText: Color3;
|
|
30
|
+
danger: Color3;
|
|
31
|
+
success: Color3;
|
|
32
|
+
warning: Color3;
|
|
33
|
+
info: Color3;
|
|
34
|
+
/** Neutral "dark gray" button variant. */
|
|
35
|
+
neutralButton: Color3;
|
|
36
|
+
/** Window title bar. */
|
|
37
|
+
titlebar: Color3;
|
|
38
|
+
windowClose: Color3;
|
|
39
|
+
windowMinimize: Color3;
|
|
40
|
+
windowMaximize: Color3;
|
|
41
|
+
}
|
|
42
|
+
export declare const lightTokens: ThemeTokens;
|
|
43
|
+
export declare const darkTokens: ThemeTokens;
|
|
44
|
+
export type ThemeMode = "light" | "dark";
|
|
45
|
+
export declare function tokensForMode(mode: ThemeMode): ThemeTokens;
|
|
46
|
+
//# sourceMappingURL=tokens.d.ts.map
|
package/dist/tokens.luau
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
-- Compiled with roblox-ts v3.0.0
|
|
2
|
+
--[[
|
|
3
|
+
*
|
|
4
|
+
* Semantic design tokens. Components reference roles (e.g. `surface`, `border`)
|
|
5
|
+
* instead of raw palette colors, so the same component themes correctly in light
|
|
6
|
+
* and dark. Light values are the original Catppuccin theme palette; dark values
|
|
7
|
+
* are the standalone graphite scheme (not a mechanical flip of light).
|
|
8
|
+
|
|
9
|
+
]]
|
|
10
|
+
local lightTokens = {
|
|
11
|
+
surface = Color3.fromRGB(255, 255, 255),
|
|
12
|
+
surfaceHover = Color3.fromRGB(234, 238, 253),
|
|
13
|
+
surfaceSunken = Color3.fromRGB(69, 71, 90),
|
|
14
|
+
surfaceRaised = Color3.fromRGB(88, 91, 112),
|
|
15
|
+
textPrimary = Color3.fromRGB(17, 17, 27),
|
|
16
|
+
textInverse = Color3.fromRGB(255, 255, 255),
|
|
17
|
+
textMuted = Color3.fromRGB(108, 112, 134),
|
|
18
|
+
border = Color3.fromRGB(17, 17, 27),
|
|
19
|
+
mark = Color3.fromRGB(0, 0, 0),
|
|
20
|
+
accent = Color3.fromRGB(137, 180, 250),
|
|
21
|
+
accentText = Color3.fromRGB(255, 255, 255),
|
|
22
|
+
danger = Color3.fromRGB(243, 139, 168),
|
|
23
|
+
success = Color3.fromRGB(166, 227, 161),
|
|
24
|
+
warning = Color3.fromRGB(249, 226, 175),
|
|
25
|
+
info = Color3.fromRGB(0, 204, 255),
|
|
26
|
+
neutralButton = Color3.fromRGB(69, 69, 79),
|
|
27
|
+
titlebar = Color3.fromRGB(215, 223, 255),
|
|
28
|
+
windowClose = Color3.fromRGB(255, 96, 92),
|
|
29
|
+
windowMinimize = Color3.fromRGB(255, 189, 68),
|
|
30
|
+
windowMaximize = Color3.fromRGB(0, 202, 78),
|
|
31
|
+
}
|
|
32
|
+
local darkTokens = {
|
|
33
|
+
surface = Color3.fromRGB(24, 25, 29),
|
|
34
|
+
surfaceHover = Color3.fromRGB(36, 38, 44),
|
|
35
|
+
surfaceSunken = Color3.fromRGB(44, 47, 54),
|
|
36
|
+
surfaceRaised = Color3.fromRGB(58, 62, 71),
|
|
37
|
+
textPrimary = Color3.fromRGB(222, 225, 233),
|
|
38
|
+
textInverse = Color3.fromRGB(255, 255, 255),
|
|
39
|
+
textMuted = Color3.fromRGB(122, 128, 140),
|
|
40
|
+
border = Color3.fromRGB(222, 225, 233),
|
|
41
|
+
mark = Color3.fromRGB(240, 242, 247),
|
|
42
|
+
accent = Color3.fromRGB(137, 180, 250),
|
|
43
|
+
accentText = Color3.fromRGB(255, 255, 255),
|
|
44
|
+
danger = Color3.fromRGB(243, 139, 168),
|
|
45
|
+
success = Color3.fromRGB(166, 227, 161),
|
|
46
|
+
warning = Color3.fromRGB(249, 226, 175),
|
|
47
|
+
info = Color3.fromRGB(0, 204, 255),
|
|
48
|
+
neutralButton = Color3.fromRGB(50, 53, 61),
|
|
49
|
+
titlebar = Color3.fromRGB(16, 17, 20),
|
|
50
|
+
windowClose = Color3.fromRGB(255, 96, 92),
|
|
51
|
+
windowMinimize = Color3.fromRGB(255, 189, 68),
|
|
52
|
+
windowMaximize = Color3.fromRGB(0, 202, 78),
|
|
53
|
+
}
|
|
54
|
+
local function tokensForMode(mode)
|
|
55
|
+
return if mode == "dark" then darkTokens else lightTokens
|
|
56
|
+
end
|
|
57
|
+
return {
|
|
58
|
+
tokensForMode = tokensForMode,
|
|
59
|
+
lightTokens = lightTokens,
|
|
60
|
+
darkTokens = darkTokens,
|
|
61
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/.pnpm/@rbxts+ripple@0.9.3/node_modules/@rbxts/ripple/src/index.d.ts","../src/index.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/generated/enums.d.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/generated/None.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/Array.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/callMacros.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/Iterable.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/Map.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/Promise.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/Set.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/String.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/Symbol.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/typeUtils.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/eslintIgnore.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/core.d.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/lua.d.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/macro_math.d.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/roblox.d.ts","../../../node_modules/.pnpm/@rbxts+object-utils@1.0.4/node_modules/@rbxts/object-utils/index.d.ts","../../../node_modules/.pnpm/@rbxts+react@17.2.3/node_modules/@rbxts/react/src/prop-types.d.ts","../../../node_modules/.pnpm/@rbxts+react@17.2.3/node_modules/@rbxts/react/src/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/utils/binding.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/utils/hoarcekat.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/utils/math.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/utils/testez.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async-callback/use-async-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async/use-async.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async-effect/use-async-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-binding-listener/use-binding-listener.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-binding-listener/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-binding-state/use-binding-state.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-binding-state/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-camera/use-camera.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-camera/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-composed-ref/use-composed-ref.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-composed-ref/index.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/set-countdown.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/set-interval.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/set-timeout.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/debounce.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/throttle.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-callback/use-debounce-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-effect/use-debounce-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-state/use-debounce-state.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-state/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-callback/use-defer-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-effect/use-defer-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-state/use-defer-state.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-state/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-event-listener/use-event-listener.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-event-listener/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-interval/use-interval.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-interval/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-key-press/use-key-press.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-key-press/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-previous/use-previous.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-previous/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-latest/use-latest.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-latest/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-latest-callback/use-latest-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-latest-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-lifetime/use-lifetime.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-lifetime/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-motion/use-motion.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-motion/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-mount-effect/use-mount-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-mount-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-mouse/use-mouse.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-mouse/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-spring/use-spring.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-spring/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-tagged/use-tagged.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-tagged/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-callback/use-throttle-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-effect/use-throttle-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-state/use-throttle-state.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-state/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-timeout/use-timeout.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-timeout/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-timer/use-timer.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-timer/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-unmount-effect/use-unmount-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-unmount-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-update/use-update.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-update/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-update-effect/use-update-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-update-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-viewport/use-viewport.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-viewport/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/index.d.ts","../../../node_modules/.pnpm/@rbxts+reflex@4.3.1/node_modules/@rbxts/reflex/src/index.d.ts","../../../node_modules/.pnpm/@rbxts+react-reflex@0.3.7_@rbxts+react@17.2.3_@rbxts+reflex@4.3.1/node_modules/@rbxts/react-reflex/src/index.d.ts","../../../node_modules/.pnpm/@rbxts+react-roblox@17.2.3/node_modules/@rbxts/react-roblox/src/index.d.ts","../../../node_modules/.pnpm/@rbxts+react-vendor@17.2.3/node_modules/@rbxts/react-vendor/types.d.ts","../../../node_modules/.pnpm/@rbxts+services@1.6.0/node_modules/@rbxts/services/index.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/ControlTypings/Advanced.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/ControlTypings/ControlUtils.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/ControlTypings/Typing.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/ControlTypings/Datatypes.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/ControlTypings/ControlConversion.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/ControlTypings/Primitives.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Libraries/Signal.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Typing/Typing.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Typing/React.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Typing/Fusion.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Typing/Roact.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/HKT.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Typing/Generic.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Typing/Iris.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Typing/Vide.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/StoryCreators.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Utils/index.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Libraries/Janitor.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/Environment.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/index.d.ts"],"fileInfos":[{"version":"e73fa51bae8d56d020872d61c01cf385b4f79633d1a41da05202e6a7f0384756","signature":false},{"version":"febd682dd75387d796ae37fe51b6e1913361c9ba1579bc555c2d11a1483680d9","signature":false},{"version":"1f3cf1b74a094386e33cd8ecce7176b285ca9b83fbc619f8544396b225e4fe5a","signature":false,"affectsGlobalScope":true},{"version":"b716c802ba27271e22a3912b94938ea7c5bfa0682aa6d7e2785277ea94b4af0e","signature":false,"affectsGlobalScope":true},{"version":"6826347cbacd3a749bdc7aab01f6e1ac2f16d62bdb46902a0c77c742bf42c619","signature":false,"affectsGlobalScope":true},{"version":"7c76ee8d0688477186ff292b7178fbd7b123c9bc385c7f0ac43742c8cfbcda7b","signature":false,"affectsGlobalScope":true},{"version":"d912c5d11ede33cefb967dc4886ac08cae34192d1a27f12f52201ea593bdf27d","signature":false,"affectsGlobalScope":true},{"version":"22bc177f25b0bff44aaa9a3428bb208088a764d38e18623ef878cc7cc72d07ee","signature":false,"affectsGlobalScope":true},{"version":"a95f106856dbc5289da510b0e24a633f9a2a2d0cb6c60ad93947efa13fcdf566","signature":false,"affectsGlobalScope":true},{"version":"346bca4a6e2c0ec0e4cc65a2f35ec773268d74288f83830e594ca983f473677c","signature":false,"affectsGlobalScope":true},{"version":"3501c467f99e26c1998f994bf5aa9673c7f9584bed3203dc6b3cd63596db3874","signature":false,"affectsGlobalScope":true},{"version":"28010932b8959e9c72e2d049f5526b8574b607ad615bdaa12c37dcdb789030d2","signature":false,"affectsGlobalScope":true},{"version":"adec607f45293974b4b7d6beb09f18cedc138bf788808918bc20c05a3649c45b","signature":false,"affectsGlobalScope":true},{"version":"70ab04fb9d57ca14cab8efcf963f48a18d4617f029afdbfd504777819415c3c9","signature":false,"affectsGlobalScope":true},{"version":"3a3c41569b2ef6dd6bb29b55a166da966ca7147ccfc1d93660bda725e1c14e48","signature":false,"affectsGlobalScope":true},{"version":"906abfeda44b050261b28ef1202799562dbf04817e2c96604190c5e01be745c6","signature":false,"affectsGlobalScope":true},{"version":"5b085ee9c23bd80318692ccc376f8af00cd6111b7a77238c27b595e3a7c4199a","signature":false,"affectsGlobalScope":true},{"version":"6308d83e703435596164139c9fda683c700ab2b2215bb6673e82f2d1d168fed9","signature":false,"affectsGlobalScope":true},{"version":"87fd940c248c634155a32502c6f97417500b117138eb978f37c5c0975f6fcf30","signature":false},{"version":"625ed1a16487d3f73dd4289bc9f370a2f06132f14508b4e9c08e4a7395c73183","signature":false},{"version":"aed331f294a6f09732331c8f7c0f51250cd52205a0c531088551bf6022e3c609","signature":false,"affectsGlobalScope":true},{"version":"241cf589205e3c6ff57f6827333d0fcc1c472a843a1cab63892a171755389914","signature":false},{"version":"d947f5e76180259916a18f1b5dac5ceca2c8c7149f85858eb8d27c6cc01f55af","signature":false},{"version":"69c276de36e29f44d07bcdbe62cef225945edc921658929210ccb88c6fe56f74","signature":false},{"version":"aa31e703843c69af40a8462785084e81ffcb177614bc8098ba05c813491a4029","signature":false},{"version":"2b3c557a5d7ade7ec15a540385396d2332c6f97f27a79fdecd82e4e00584f834","signature":false},{"version":"c6466dd42d4ec02fdfc515c664922d5ccf75c85960e238a470387fa438cfb4c2","signature":false},{"version":"0edbfc3979e9302a4ee2a6d73a86ffe16ba97720ab7fc2a690f84e110fbaefa4","signature":false},{"version":"e7c94b96b24c4c09f11ae471a31b5a940fec74f777fb14511ce45f7a1773ff5b","signature":false},{"version":"ff0339a9fd258efbd3805fde56e5bfb216fce5c58801bc6a6358d71fce162d75","signature":false},{"version":"e12838e5bfbf02ddcc2b53ae1a97bd873b5aadf91c4260bc431eed876b479c41","signature":false},{"version":"fc1695de37837b2250fc36bf08151bfa09733eb8f60ee78fd2a0bfe312581d44","signature":false},{"version":"8eb206d510db25d59774a8523052f700ac86514a53152e8a323985f6bae56747","signature":false},{"version":"433cf7766c43a9442bcfb9387617a0042fe3a056a00705d5c4230828c75a49b6","signature":false},{"version":"34fb5cf7cfe29743fb01a1fd562ca9774d90fe249627412c4c89b6c000a4220b","signature":false},{"version":"665a993f524f01193e6632829fe85a63584d67e94fd31024728e2721e3d06c41","signature":false},{"version":"6bbcd1b9ceaa879e21094d22858058f1d7850d8875e9c5583733e4f9f416f4b6","signature":false},{"version":"b2f894734a3dc3926781e9781b12f556e2dc5dfc36be0c0815b7877180f8ad7c","signature":false},{"version":"11554b39929bfe9d18bc046fc935d6c38e0a6e17635d08ee1a2ae0de8bb3646d","signature":false},{"version":"fef8a1b789406595fa0950b6b130d590e1e0a750f134a5dda584d2669a546d12","signature":false},{"version":"ea98028839518e593d6d8e43c259301b4c6ae05afa33c2d5b92534821ca05e87","signature":false},{"version":"f08a2df180ebf4cede8119ec58fa5a9155bee2878a34a244d6c98d743b8369a3","signature":false},{"version":"c94682e2cc4aa9bf7ed76a08cc79096401910195a22bea256ad31df80015248b","signature":false},{"version":"587f21dcb0835b9fa8a98b5e93a97895a295be240881b762c726ca1239128468","signature":false},{"version":"a56c3d1575660b9bf90bc21535db885ad60a4cd167dc161ab270277940bba582","signature":false},{"version":"26c163c35f93bb9e97bc0931ad11ada590a2ab6f719913fd92ca147c3ad5c25a","signature":false},{"version":"76bc14577c66ce511492107fd34f0f0d74a6a76252c3758e9d063dbc5e4e4b69","signature":false},{"version":"34e8c2eb813adb271f25e939cd1069b089715ef8ecab5dfd0b31f1c73ec0e1d0","signature":false},{"version":"cde7f7a065be12d3292236bc1433aec30345c780fcaee656458a5d7f1b26f42a","signature":false},{"version":"b7397348676e937750b816214c0e24f864081a8e15ba51b58e3187a78b20e398","signature":false},{"version":"0d7494180ee376bbe033211b1a0717219b9b4296d2f459a2b280776dcb0ee382","signature":false},{"version":"b1eeb17f27376c44e01145bb8f803a534884f36c8747a71aa02724ea743aa5c8","signature":false},{"version":"2e520d1512f7dc3c869b3cb19668fb5faab25a92335cf0884eff5005bcce0cff","signature":false},{"version":"40c31ae425ac23e47a62132ff99a8d86ea3356c22cf9bb4a8e7bfb4e866fdb88","signature":false},{"version":"9c87f4d075e4ad1a58e2eb33a7bd7f99ad8b9d159ddcbd3ef16828740ca02eaa","signature":false},{"version":"bba99e348990f81d3f018f50e2044db89114bbc627b4593391f64ed16561433f","signature":false},{"version":"46c7c7338a04ca27cfa40154ff173c589d8c5ea37d9476a116db6562e9cfd10f","signature":false},{"version":"38d9b0c0d120c78d46dec7f3abcac3eadec0762c2b5a2848e753252324abd89b","signature":false},{"version":"8603c335f32c29834eaafc1d201604e7487192febe86208cc50547908a3994d5","signature":false},{"version":"3fd76f78fabaa3cd49e37620198b973412d4a9e277cb3e9c64ef4ed1b23d90c0","signature":false},{"version":"b8366fe133bee68fc49de7252e3e79ca0f90dec6b797cff16075f821704d2bdd","signature":false},{"version":"014596c107ecc0f2c144e87350e7b6af9081dfcc95a6e29a9fd8c87be361dbc1","signature":false},{"version":"5f44099d415d45fb12ff1d0746d910a8cb93dd02f1edb8829569c662ca6ccff7","signature":false},{"version":"33b82e8bbb289db34df37ccd2c1ba8230f454d54fe6efb071bc4147c3fbe1468","signature":false},{"version":"342ac6287f31337b5d07be76d1f5887f43b239485c2146bdda49493abb189080","signature":false},{"version":"02b18e298513ad27ac0fcda7135d2c865a5d5db7bc67b99ae9d68b971cea3654","signature":false},{"version":"15412a222d7bc5f15591327f7be1f55b4f19c001685bbe05a5418e21e94ff2fa","signature":false},{"version":"5e03784218da14ee92ea75c8063b4d9b47c3ebf16bc7eb522e452d44050c2b3c","signature":false},{"version":"1e6d72cd14296eb245e526aa394bb5b0907c94eb5b1a5c6736f3c8c02b0241d3","signature":false},{"version":"907daf420a7c00e8ccafa3a978d6e7bc06093e975fd9bd248180deea7f0169b7","signature":false},{"version":"e2395706e48cd6d81019fc0e90c41c4811a41b09aad7956facb8589b7efb67cf","signature":false},{"version":"e7fd1fe3dfd3069ffd43826dbf0f23b608aeb7e63fb0c18d9d12383dc5d3b2f7","signature":false},{"version":"e41ce6be69f330fe23338d59d7104d43a8634236dfe597cc1b35d6c5909d42bf","signature":false},{"version":"371496d7d6b2345de63ba7a93317eb6f6652046ed06b0ef2ba43aca307a3035b","signature":false},{"version":"8cbffa3caa38c7e83065ef0b01834f050e995c03233076e1048068d5fb838989","signature":false},{"version":"2ac125c4ccaed48bd0d112d9e8f8ef0f207e6dc140edadd5596165ff14adc104","signature":false},{"version":"00cece9fce81da23bda0de5d32b2da65aae65629a76dfb53086aae7a24f473b8","signature":false},{"version":"a179053dd67d6054d21361b7f4d05d7ac9ba6334d3ab610b35efaf051a1e4783","signature":false},{"version":"2423522f73e4c93d389f13c29380515d55ae68e139aecdc3bd051dcf0e4dbc01","signature":false},{"version":"b14207b04f64afb84a5d07158981c7a4aff23655e9e78225edcf6d8a2a55711d","signature":false},{"version":"00727c18bab94e021cccdea6045c68b118bfd426e86456218a5de854b937e95d","signature":false},{"version":"41256b98251baf29bc1403c1d6331623c100907d20dd2983ff6ba73a37aba305","signature":false},{"version":"7a2f317ebc12c02849987897882168da467b8307e06477679552a1c15ee6df91","signature":false},{"version":"ac1277442023970b625915c14ca9014d9a29c3147d43ec4d555981a469ace3fc","signature":false},{"version":"62d000b92a1f333e73abfc9aaba1110bfc00811d9506c46507afebae07e8a106","signature":false},{"version":"76a7fcfae63681d47937bfeae33abc9f630736f3e61da6d5fcfe70a5706c551b","signature":false},{"version":"bcbb30cfc5168a1554181509a637a9191047e0c6d2344da8958fd8f22d2cf37c","signature":false},{"version":"0c379446ff28be9ac441c387962ff9739993f88442ef33b8bb459094fc70246f","signature":false},{"version":"5097dedbab0c5bb2cb7971c65f632861f8bff4eb30a7863b0b53b6a15aed6c06","signature":false},{"version":"c4bb63be5b5b107ef6e8de6f763b3a0a1a3a2fd088e7632dceb52f28db67f46b","signature":false},{"version":"b9f5d7ca08105ee67b616de7f1575424e3b1730381a11c0a69fac7e374e3fb6e","signature":false},{"version":"54c78be04efa9d06fd7e87aca48f5eb87634571759c42a2dec83afba90ac1256","signature":false},{"version":"3456581b2b5b53b30cc9e09eb1238dafc10b4f64ab3a350725d02e9d493bb512","signature":false},{"version":"43a87d123d66885f4cbdef53956652c141128595125017d0c189876c68b294d6","signature":false},{"version":"0708e1271aae20cb6820d3bf68afbbef60d707fa8b75c6cf2c914a48726d6c69","signature":false},{"version":"9be3cb6ba639e16d937f304b60f18473f0882853643f8de6dc7513cf2cc7ee2b","signature":false},{"version":"a575eddbf5db63a0cbf1815cb6277e0a6f1538fbe0980dbd04fe4a1c9b5d0c81","signature":false},{"version":"3d7d0c0f8cb0770b426ffc4be86ee230bfae44293cd4a990c47e0fe6dc0df259","signature":false},{"version":"5cfa88b6bbdeaec71f127942200e124c91a0da064cb0e9c3b3ced6a1c6dceb1c","signature":false},{"version":"72777b3328a43a6ecffc5515fd054b020403ee58e4c453e0efe86ef2b375f7ad","signature":false},{"version":"bf96c4d0dc4d7839c0fe70162ceb53e6d4d4835fea761a4e3e1510802bb775d9","signature":false},{"version":"e4dc7b6019c92131680dddfd50f0622678811698929cfeced57fdb8ffff471a3","signature":false},{"version":"2c6981619b6f73537fab165183b48e4476801c71115774f20ff2d3a703c7cbe3","signature":false},{"version":"96fc57850bda6f5318c8a911e68e50e9f6c254c48b1df7aa72fa40778909a2c0","signature":false},{"version":"3d039194e6c9f291312e5237dfeaf446e626ef58725e8ee872a3817eae7f3be5","signature":false},{"version":"a872f47d32b1b2a496c7a5ac91fd9923f5c5106125d35c4cc47c9ad11b5c4a15","signature":false},{"version":"1b6e3bcb48fdc53316b665057fc9267bb3e44ea577166bc9c92bc7b56a3b7377","signature":false},{"version":"04acbe3bb785b1bbd6ca814bd08fbcd4a7344e51b450784fdccf500b4d4d2ad9","signature":false},{"version":"462a1bc932e760bb455064483977f320e88daa988334bbc41d598706ebe4490c","signature":false},{"version":"a063fd8b7216b3c73464f5d1e22a555e05376d56054e483cd83999ea1679cbbc","signature":false},{"version":"5766ef0d626d2571e710f95c4dcacd782f3bb83eb077821417499306a2af4796","signature":false},{"version":"e10dff256e64382eeeb3a5d9f4e157d9c96ef81ccd346a85fdafe3d4b0d444d4","signature":false},{"version":"df710270d13fb625406e240ae26f9296fe36abfb29dbbe85d7c6732ec1405547","signature":false},{"version":"cc35385a16df6b892589b87e54349f22fcee2631ca8fc87aa92c7d618a9ba935","signature":false},{"version":"a08f77859155e0fcc36692fe4902ea5d7ae6b3951c2cf686123a67c48de4045c","signature":false},{"version":"f30ca79f8b90fb04fc74536dae424f4f01c7cc43f70817a98a3a8075bd6b6fc1","signature":false},{"version":"1dfd003bbc6a15bedb9fdf96cc20fcfea836efcf1aac730a237cea0e20fda4ea","signature":false},{"version":"a89c6c77f3c4ea69d86ca19acba2195b89dda9855623e19dd681cd40ddd208f6","signature":false},{"version":"550de015f2fa82d6fc6cf3d2822d9b278f4c6c45cd87b6efb8578958d3ce59b1","signature":false},{"version":"df56d021512cd39eb53c01848a52e2aafd0295006081da498376326851b2e6d8","signature":false},{"version":"02f1cc7e44e93e6ee2e0b089871840ef0c9c1bac6ba87900b8a20c4e6ef64c53","signature":false},{"version":"b9bc5d339a8e92ff5009c9adb5a486593a3cefa672a38aca083006fc845f48a0","signature":false},{"version":"788911dfe293538a19b2b3c3b2d839f50722295d60542c25d34e5dbf0a885b56","signature":false},{"version":"fa9cebd2fdf84f8261935a6ca2de37d44228bef315317ca12224c5e015020ea8","signature":false},{"version":"38d31551bef50319a724c3e72bdd4c7f65b2f81b5d45608486af2981aa6e73ba","signature":false}],"root":[2],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"experimentalDecorators":true,"jsx":2,"module":1,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"fileIdsList":[[18],[5,6,7,8,9,10,11,12,13,14,18],[22,23,24,25,27,29,31,33,35,37,39,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95,97,99],[26],[30],[28],[27],[32],[21],[34],[36],[38],[46],[45],[48],[47],[50],[21,47],[52],[54],[56],[58],[60],[62],[68],[66],[21,65],[70],[72],[1,21],[74],[76],[64],[78],[80],[82],[45,47],[84],[83],[86],[21,83],[88],[90],[92],[96],[94],[98],[21,101],[20],[15],[40,41,42,43,44],[15,43],[3,18],[4,15],[3,4,15,16,17],[108],[108,109,111],[108,110],[106,107,109,111],[113,123],[21,113,114,115,116,118,119,120],[107,108,113],[107,108,113,117],[21,103,113],[113],[21,103,107,108,109,111,112],[108,118],[106,107,109,110,111,113,114,115,116,117,118,119,120,121,122,124],[1]],"referencedMap":[[5,1],[7,1],[8,1],[9,1],[10,1],[11,1],[12,1],[6,1],[15,2],[14,1],[13,1],[100,3],[27,4],[31,5],[29,6],[28,7],[33,8],[32,9],[35,10],[34,9],[37,11],[39,12],[47,13],[46,14],[49,15],[48,16],[51,17],[50,18],[53,19],[55,20],[57,21],[56,9],[59,22],[61,23],[63,24],[62,9],[69,25],[67,26],[66,27],[71,28],[70,9],[73,29],[72,30],[75,31],[74,9],[77,32],[76,9],[65,33],[79,34],[78,30],[81,35],[83,36],[82,37],[85,38],[84,39],[87,40],[86,41],[89,42],[91,43],[90,9],[93,44],[97,45],[95,46],[99,47],[98,9],[22,9],[23,9],[102,48],[103,9],[21,49],[43,50],[45,51],[40,50],[44,52],[4,53],[3,1],[16,54],[18,55],[106,56],[110,57],[107,58],[109,58],[111,58],[108,59],[124,60],[121,61],[115,62],[118,63],[119,62],[114,64],[116,65],[113,66],[120,62],[122,67],[125,68],[2,69]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125]},"version":"5.5.3"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/@rbxts+ripple@0.9.3/node_modules/@rbxts/ripple/src/index.d.ts","../src/tokens.ts","../../../node_modules/.pnpm/@rbxts+react@17.2.3/node_modules/@rbxts/react/src/prop-types.d.ts","../../../node_modules/.pnpm/@rbxts+react@17.2.3/node_modules/@rbxts/react/src/index.d.ts","../src/provider.tsx","../../../node_modules/.pnpm/@rbxts+object-utils@1.0.4/node_modules/@rbxts/object-utils/index.d.ts","../src/palette.ts","../src/index.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/generated/enums.d.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/generated/none.d.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/lua.d.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/macro_math.d.ts","../../../node_modules/.pnpm/@rbxts+types@1.0.896/node_modules/@rbxts/types/include/roblox.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/array.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/callmacros.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/iterable.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/map.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/promise.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/set.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/string.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/symbol.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/typeutils.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/eslintignore.d.ts","../../../node_modules/.pnpm/@rbxts+compiler-types@3.0.0-types.0/node_modules/@rbxts/compiler-types/types/core.d.ts","../../../node_modules/@rbxts/beacon/out/index.d.ts","../../../node_modules/@rbxts/emittery/src/index.d.ts","../../../node_modules/@rbxts/pretty-format/src/types.d.ts","../../../node_modules/@rbxts/pretty-format/src/index.d.ts","../../../node_modules/@rbxts/jest-matcher-utils/src/index.d.ts","../../../node_modules/@rbxts/maid/maid.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/utils/binding.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/utils/hoarcekat.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/utils/math.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/utils/testez.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async-callback/use-async-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async/use-async.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async-effect/use-async-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-async-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-binding-listener/use-binding-listener.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-binding-listener/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-binding-state/use-binding-state.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-binding-state/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-camera/use-camera.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-camera/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-composed-ref/use-composed-ref.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-composed-ref/index.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/set-countdown.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/set-interval.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/set-timeout.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/debounce.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/throttle.d.ts","../../../node_modules/.pnpm/@rbxts+set-timeout@1.1.2/node_modules/@rbxts/set-timeout/out/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-callback/use-debounce-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-effect/use-debounce-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-state/use-debounce-state.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-debounce-state/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-callback/use-defer-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-effect/use-defer-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-state/use-defer-state.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-defer-state/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-event-listener/use-event-listener.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-event-listener/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-interval/use-interval.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-interval/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-key-press/use-key-press.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-key-press/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-previous/use-previous.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-previous/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-latest/use-latest.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-latest/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-latest-callback/use-latest-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-latest-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-lifetime/use-lifetime.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-lifetime/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-motion/use-motion.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-motion/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-mount-effect/use-mount-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-mount-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-mouse/use-mouse.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-mouse/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-spring/use-spring.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-spring/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-tagged/use-tagged.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-tagged/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-callback/use-throttle-callback.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-callback/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-effect/use-throttle-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-state/use-throttle-state.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-throttle-state/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-timeout/use-timeout.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-timeout/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-timer/use-timer.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-timer/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-unmount-effect/use-unmount-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-unmount-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-update/use-update.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-update/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-update-effect/use-update-effect.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-update-effect/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-viewport/use-viewport.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/use-viewport/index.d.ts","../../../node_modules/.pnpm/@rbxts+pretty-react-hooks@0.6.4_@rbxts+react-roblox@17.2.3_@rbxts+react@17.2.3/node_modules/@rbxts/pretty-react-hooks/out/index.d.ts","../../../node_modules/.pnpm/@rbxts+reflex@4.3.1/node_modules/@rbxts/reflex/src/index.d.ts","../../../node_modules/.pnpm/@rbxts+react-reflex@0.3.7_@rbxts+react@17.2.3_@rbxts+reflex@4.3.1/node_modules/@rbxts/react-reflex/src/index.d.ts","../../../node_modules/.pnpm/@rbxts+react-roblox@17.2.3/node_modules/@rbxts/react-roblox/src/index.d.ts","../../../node_modules/.pnpm/@rbxts+react-vendor@17.2.3/node_modules/@rbxts/react-vendor/types.d.ts","../../../node_modules/.pnpm/@rbxts+services@1.6.0/node_modules/@rbxts/services/index.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/controltypings/advanced.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/controltypings/controlutils.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/controltypings/typing.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/controltypings/datatypes.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/controltypings/controlconversion.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/controltypings/primitives.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/libraries/signal.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/typing/typing.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/typing/react.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/typing/fusion.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/typing/roact.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/hkt.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/typing/generic.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/typing/iris.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/typing/vide.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/storycreators.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/utils/index.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/libraries/janitor.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/environment.d.ts","../../../node_modules/.pnpm/@rbxts+ui-labs@2.4.2/node_modules/@rbxts/ui-labs/src/index.d.ts","../../../node_modules/@rbxts/wait-for/out/index.d.ts"],"fileInfos":[{"version":"e73fa51bae8d56d020872d61c01cf385b4f79633d1a41da05202e6a7f0384756","signature":false},{"version":"336de31b373a74a16d704168184f572b8fb7bee7d82a0a378457dd9664ffd5da","signature":false},{"version":"625ed1a16487d3f73dd4289bc9f370a2f06132f14508b4e9c08e4a7395c73183","signature":false},{"version":"aed331f294a6f09732331c8f7c0f51250cd52205a0c531088551bf6022e3c609","signature":false,"affectsGlobalScope":true},{"version":"86818f6a8e00c9cc96e421f3c8d9c13acdbf18b503daf30e5d7cbf654edf5b66","signature":false},{"version":"87fd940c248c634155a32502c6f97417500b117138eb978f37c5c0975f6fcf30","signature":false},{"version":"13e3ed673f4ea4f2054d68d3d6eeba7ae73826d3015e488f4eabca4754c7b580","signature":false},{"version":"850e035382ff2970a0905b149b8b5d879a9c9fbc2f60792cdfbb5239a02f0727","signature":false},{"version":"1f3cf1b74a094386e33cd8ecce7176b285ca9b83fbc619f8544396b225e4fe5a","signature":false,"affectsGlobalScope":true},{"version":"b716c802ba27271e22a3912b94938ea7c5bfa0682aa6d7e2785277ea94b4af0e","signature":false,"affectsGlobalScope":true},{"version":"906abfeda44b050261b28ef1202799562dbf04817e2c96604190c5e01be745c6","signature":false,"affectsGlobalScope":true},{"version":"5b085ee9c23bd80318692ccc376f8af00cd6111b7a77238c27b595e3a7c4199a","signature":false,"affectsGlobalScope":true},{"version":"6308d83e703435596164139c9fda683c700ab2b2215bb6673e82f2d1d168fed9","signature":false,"affectsGlobalScope":true},{"version":"6826347cbacd3a749bdc7aab01f6e1ac2f16d62bdb46902a0c77c742bf42c619","signature":false,"affectsGlobalScope":true},{"version":"7c76ee8d0688477186ff292b7178fbd7b123c9bc385c7f0ac43742c8cfbcda7b","signature":false,"affectsGlobalScope":true},{"version":"d912c5d11ede33cefb967dc4886ac08cae34192d1a27f12f52201ea593bdf27d","signature":false,"affectsGlobalScope":true},{"version":"22bc177f25b0bff44aaa9a3428bb208088a764d38e18623ef878cc7cc72d07ee","signature":false,"affectsGlobalScope":true},{"version":"a95f106856dbc5289da510b0e24a633f9a2a2d0cb6c60ad93947efa13fcdf566","signature":false,"affectsGlobalScope":true},{"version":"346bca4a6e2c0ec0e4cc65a2f35ec773268d74288f83830e594ca983f473677c","signature":false,"affectsGlobalScope":true},{"version":"3501c467f99e26c1998f994bf5aa9673c7f9584bed3203dc6b3cd63596db3874","signature":false,"affectsGlobalScope":true},{"version":"28010932b8959e9c72e2d049f5526b8574b607ad615bdaa12c37dcdb789030d2","signature":false,"affectsGlobalScope":true},{"version":"adec607f45293974b4b7d6beb09f18cedc138bf788808918bc20c05a3649c45b","signature":false,"affectsGlobalScope":true},{"version":"70ab04fb9d57ca14cab8efcf963f48a18d4617f029afdbfd504777819415c3c9","signature":false,"affectsGlobalScope":true},{"version":"3a3c41569b2ef6dd6bb29b55a166da966ca7147ccfc1d93660bda725e1c14e48","signature":false,"affectsGlobalScope":true},{"version":"5a8a53cc4608a649dbf630ac95763c5d7d4f7256a80cafec906073a91cab6c15","signature":false},{"version":"9b866f22eb092feefd9055ada011b9a748a8e903433dba57175b097b4ddb10f5","signature":false},{"version":"1b1a1ac09d576930fde73f7900b299fa9abb847a805dc11e5366c216eb408451","signature":false},{"version":"31bf059a5fc9662dc30885109b9f0d0b99f9e14d08adae02e44eef04b821e81b","signature":false},{"version":"eb1916e11b9ba7ee33ddc2f3a23b7a0cdcb90c9c2455df84e9ddbfd11c98f6c3","signature":false},{"version":"05beea341a2163631aec062be2ab181d6d634ef3d4151686cd4e8a03f5a8ffeb","signature":false},{"version":"241cf589205e3c6ff57f6827333d0fcc1c472a843a1cab63892a171755389914","signature":false},{"version":"d947f5e76180259916a18f1b5dac5ceca2c8c7149f85858eb8d27c6cc01f55af","signature":false},{"version":"69c276de36e29f44d07bcdbe62cef225945edc921658929210ccb88c6fe56f74","signature":false},{"version":"aa31e703843c69af40a8462785084e81ffcb177614bc8098ba05c813491a4029","signature":false},{"version":"2b3c557a5d7ade7ec15a540385396d2332c6f97f27a79fdecd82e4e00584f834","signature":false},{"version":"c6466dd42d4ec02fdfc515c664922d5ccf75c85960e238a470387fa438cfb4c2","signature":false},{"version":"0edbfc3979e9302a4ee2a6d73a86ffe16ba97720ab7fc2a690f84e110fbaefa4","signature":false},{"version":"e7c94b96b24c4c09f11ae471a31b5a940fec74f777fb14511ce45f7a1773ff5b","signature":false},{"version":"ff0339a9fd258efbd3805fde56e5bfb216fce5c58801bc6a6358d71fce162d75","signature":false},{"version":"e12838e5bfbf02ddcc2b53ae1a97bd873b5aadf91c4260bc431eed876b479c41","signature":false},{"version":"fc1695de37837b2250fc36bf08151bfa09733eb8f60ee78fd2a0bfe312581d44","signature":false},{"version":"8eb206d510db25d59774a8523052f700ac86514a53152e8a323985f6bae56747","signature":false},{"version":"433cf7766c43a9442bcfb9387617a0042fe3a056a00705d5c4230828c75a49b6","signature":false},{"version":"34fb5cf7cfe29743fb01a1fd562ca9774d90fe249627412c4c89b6c000a4220b","signature":false},{"version":"665a993f524f01193e6632829fe85a63584d67e94fd31024728e2721e3d06c41","signature":false},{"version":"6bbcd1b9ceaa879e21094d22858058f1d7850d8875e9c5583733e4f9f416f4b6","signature":false},{"version":"b2f894734a3dc3926781e9781b12f556e2dc5dfc36be0c0815b7877180f8ad7c","signature":false},{"version":"11554b39929bfe9d18bc046fc935d6c38e0a6e17635d08ee1a2ae0de8bb3646d","signature":false},{"version":"fef8a1b789406595fa0950b6b130d590e1e0a750f134a5dda584d2669a546d12","signature":false},{"version":"ea98028839518e593d6d8e43c259301b4c6ae05afa33c2d5b92534821ca05e87","signature":false},{"version":"f08a2df180ebf4cede8119ec58fa5a9155bee2878a34a244d6c98d743b8369a3","signature":false},{"version":"c94682e2cc4aa9bf7ed76a08cc79096401910195a22bea256ad31df80015248b","signature":false},{"version":"587f21dcb0835b9fa8a98b5e93a97895a295be240881b762c726ca1239128468","signature":false},{"version":"a56c3d1575660b9bf90bc21535db885ad60a4cd167dc161ab270277940bba582","signature":false},{"version":"26c163c35f93bb9e97bc0931ad11ada590a2ab6f719913fd92ca147c3ad5c25a","signature":false},{"version":"76bc14577c66ce511492107fd34f0f0d74a6a76252c3758e9d063dbc5e4e4b69","signature":false},{"version":"34e8c2eb813adb271f25e939cd1069b089715ef8ecab5dfd0b31f1c73ec0e1d0","signature":false},{"version":"cde7f7a065be12d3292236bc1433aec30345c780fcaee656458a5d7f1b26f42a","signature":false},{"version":"b7397348676e937750b816214c0e24f864081a8e15ba51b58e3187a78b20e398","signature":false},{"version":"0d7494180ee376bbe033211b1a0717219b9b4296d2f459a2b280776dcb0ee382","signature":false},{"version":"b1eeb17f27376c44e01145bb8f803a534884f36c8747a71aa02724ea743aa5c8","signature":false},{"version":"2e520d1512f7dc3c869b3cb19668fb5faab25a92335cf0884eff5005bcce0cff","signature":false},{"version":"40c31ae425ac23e47a62132ff99a8d86ea3356c22cf9bb4a8e7bfb4e866fdb88","signature":false},{"version":"9c87f4d075e4ad1a58e2eb33a7bd7f99ad8b9d159ddcbd3ef16828740ca02eaa","signature":false},{"version":"bba99e348990f81d3f018f50e2044db89114bbc627b4593391f64ed16561433f","signature":false},{"version":"46c7c7338a04ca27cfa40154ff173c589d8c5ea37d9476a116db6562e9cfd10f","signature":false},{"version":"38d9b0c0d120c78d46dec7f3abcac3eadec0762c2b5a2848e753252324abd89b","signature":false},{"version":"8603c335f32c29834eaafc1d201604e7487192febe86208cc50547908a3994d5","signature":false},{"version":"3fd76f78fabaa3cd49e37620198b973412d4a9e277cb3e9c64ef4ed1b23d90c0","signature":false},{"version":"b8366fe133bee68fc49de7252e3e79ca0f90dec6b797cff16075f821704d2bdd","signature":false},{"version":"014596c107ecc0f2c144e87350e7b6af9081dfcc95a6e29a9fd8c87be361dbc1","signature":false},{"version":"5f44099d415d45fb12ff1d0746d910a8cb93dd02f1edb8829569c662ca6ccff7","signature":false},{"version":"33b82e8bbb289db34df37ccd2c1ba8230f454d54fe6efb071bc4147c3fbe1468","signature":false},{"version":"342ac6287f31337b5d07be76d1f5887f43b239485c2146bdda49493abb189080","signature":false},{"version":"02b18e298513ad27ac0fcda7135d2c865a5d5db7bc67b99ae9d68b971cea3654","signature":false},{"version":"15412a222d7bc5f15591327f7be1f55b4f19c001685bbe05a5418e21e94ff2fa","signature":false},{"version":"5e03784218da14ee92ea75c8063b4d9b47c3ebf16bc7eb522e452d44050c2b3c","signature":false},{"version":"1e6d72cd14296eb245e526aa394bb5b0907c94eb5b1a5c6736f3c8c02b0241d3","signature":false},{"version":"907daf420a7c00e8ccafa3a978d6e7bc06093e975fd9bd248180deea7f0169b7","signature":false},{"version":"e2395706e48cd6d81019fc0e90c41c4811a41b09aad7956facb8589b7efb67cf","signature":false},{"version":"e7fd1fe3dfd3069ffd43826dbf0f23b608aeb7e63fb0c18d9d12383dc5d3b2f7","signature":false},{"version":"e41ce6be69f330fe23338d59d7104d43a8634236dfe597cc1b35d6c5909d42bf","signature":false},{"version":"371496d7d6b2345de63ba7a93317eb6f6652046ed06b0ef2ba43aca307a3035b","signature":false},{"version":"8cbffa3caa38c7e83065ef0b01834f050e995c03233076e1048068d5fb838989","signature":false},{"version":"2ac125c4ccaed48bd0d112d9e8f8ef0f207e6dc140edadd5596165ff14adc104","signature":false},{"version":"00cece9fce81da23bda0de5d32b2da65aae65629a76dfb53086aae7a24f473b8","signature":false},{"version":"a179053dd67d6054d21361b7f4d05d7ac9ba6334d3ab610b35efaf051a1e4783","signature":false},{"version":"2423522f73e4c93d389f13c29380515d55ae68e139aecdc3bd051dcf0e4dbc01","signature":false},{"version":"b14207b04f64afb84a5d07158981c7a4aff23655e9e78225edcf6d8a2a55711d","signature":false},{"version":"00727c18bab94e021cccdea6045c68b118bfd426e86456218a5de854b937e95d","signature":false},{"version":"41256b98251baf29bc1403c1d6331623c100907d20dd2983ff6ba73a37aba305","signature":false},{"version":"7a2f317ebc12c02849987897882168da467b8307e06477679552a1c15ee6df91","signature":false},{"version":"ac1277442023970b625915c14ca9014d9a29c3147d43ec4d555981a469ace3fc","signature":false},{"version":"62d000b92a1f333e73abfc9aaba1110bfc00811d9506c46507afebae07e8a106","signature":false},{"version":"76a7fcfae63681d47937bfeae33abc9f630736f3e61da6d5fcfe70a5706c551b","signature":false},{"version":"bcbb30cfc5168a1554181509a637a9191047e0c6d2344da8958fd8f22d2cf37c","signature":false},{"version":"0c379446ff28be9ac441c387962ff9739993f88442ef33b8bb459094fc70246f","signature":false},{"version":"5097dedbab0c5bb2cb7971c65f632861f8bff4eb30a7863b0b53b6a15aed6c06","signature":false},{"version":"c4bb63be5b5b107ef6e8de6f763b3a0a1a3a2fd088e7632dceb52f28db67f46b","signature":false},{"version":"b9f5d7ca08105ee67b616de7f1575424e3b1730381a11c0a69fac7e374e3fb6e","signature":false},{"version":"54c78be04efa9d06fd7e87aca48f5eb87634571759c42a2dec83afba90ac1256","signature":false},{"version":"3456581b2b5b53b30cc9e09eb1238dafc10b4f64ab3a350725d02e9d493bb512","signature":false},{"version":"43a87d123d66885f4cbdef53956652c141128595125017d0c189876c68b294d6","signature":false},{"version":"0708e1271aae20cb6820d3bf68afbbef60d707fa8b75c6cf2c914a48726d6c69","signature":false},{"version":"9be3cb6ba639e16d937f304b60f18473f0882853643f8de6dc7513cf2cc7ee2b","signature":false},{"version":"a575eddbf5db63a0cbf1815cb6277e0a6f1538fbe0980dbd04fe4a1c9b5d0c81","signature":false},{"version":"3d7d0c0f8cb0770b426ffc4be86ee230bfae44293cd4a990c47e0fe6dc0df259","signature":false},{"version":"5cfa88b6bbdeaec71f127942200e124c91a0da064cb0e9c3b3ced6a1c6dceb1c","signature":false},{"version":"72777b3328a43a6ecffc5515fd054b020403ee58e4c453e0efe86ef2b375f7ad","signature":false},{"version":"bf96c4d0dc4d7839c0fe70162ceb53e6d4d4835fea761a4e3e1510802bb775d9","signature":false},{"version":"e4dc7b6019c92131680dddfd50f0622678811698929cfeced57fdb8ffff471a3","signature":false},{"version":"2c6981619b6f73537fab165183b48e4476801c71115774f20ff2d3a703c7cbe3","signature":false},{"version":"96fc57850bda6f5318c8a911e68e50e9f6c254c48b1df7aa72fa40778909a2c0","signature":false},{"version":"3d039194e6c9f291312e5237dfeaf446e626ef58725e8ee872a3817eae7f3be5","signature":false},{"version":"a872f47d32b1b2a496c7a5ac91fd9923f5c5106125d35c4cc47c9ad11b5c4a15","signature":false},{"version":"1b6e3bcb48fdc53316b665057fc9267bb3e44ea577166bc9c92bc7b56a3b7377","signature":false},{"version":"04acbe3bb785b1bbd6ca814bd08fbcd4a7344e51b450784fdccf500b4d4d2ad9","signature":false},{"version":"462a1bc932e760bb455064483977f320e88daa988334bbc41d598706ebe4490c","signature":false},{"version":"a063fd8b7216b3c73464f5d1e22a555e05376d56054e483cd83999ea1679cbbc","signature":false},{"version":"5766ef0d626d2571e710f95c4dcacd782f3bb83eb077821417499306a2af4796","signature":false},{"version":"e10dff256e64382eeeb3a5d9f4e157d9c96ef81ccd346a85fdafe3d4b0d444d4","signature":false},{"version":"df710270d13fb625406e240ae26f9296fe36abfb29dbbe85d7c6732ec1405547","signature":false},{"version":"cc35385a16df6b892589b87e54349f22fcee2631ca8fc87aa92c7d618a9ba935","signature":false},{"version":"a08f77859155e0fcc36692fe4902ea5d7ae6b3951c2cf686123a67c48de4045c","signature":false},{"version":"f30ca79f8b90fb04fc74536dae424f4f01c7cc43f70817a98a3a8075bd6b6fc1","signature":false},{"version":"1dfd003bbc6a15bedb9fdf96cc20fcfea836efcf1aac730a237cea0e20fda4ea","signature":false},{"version":"a89c6c77f3c4ea69d86ca19acba2195b89dda9855623e19dd681cd40ddd208f6","signature":false},{"version":"550de015f2fa82d6fc6cf3d2822d9b278f4c6c45cd87b6efb8578958d3ce59b1","signature":false},{"version":"df56d021512cd39eb53c01848a52e2aafd0295006081da498376326851b2e6d8","signature":false},{"version":"02f1cc7e44e93e6ee2e0b089871840ef0c9c1bac6ba87900b8a20c4e6ef64c53","signature":false},{"version":"b9bc5d339a8e92ff5009c9adb5a486593a3cefa672a38aca083006fc845f48a0","signature":false},{"version":"788911dfe293538a19b2b3c3b2d839f50722295d60542c25d34e5dbf0a885b56","signature":false},{"version":"fa9cebd2fdf84f8261935a6ca2de37d44228bef315317ca12224c5e015020ea8","signature":false},{"version":"38d31551bef50319a724c3e72bdd4c7f65b2f81b5d45608486af2981aa6e73ba","signature":false},{"version":"6414419a209fe9054605a8d7fa20ed7a041406d23fbb81ef1705e626be9bd819","signature":false}],"root":[2,5,7,8],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"experimentalDecorators":true,"jsx":2,"module":1,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":99,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"fileIdsList":[[13],[13,14,15,16,17,18,19,20,21,22,23],[31,32,33,34,36,38,40,42,44,46,48,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108],[35],[39],[37],[36],[41],[4],[43],[45],[47],[55],[54],[57],[56],[59],[4,56],[61],[63],[65],[67],[69],[71],[77],[75],[4,74],[79],[81],[1,4],[83],[85],[73],[87],[89],[91],[54,56],[93],[92],[95],[4,92],[97],[99],[101],[105],[103],[107],[4,110],[3],[24],[49,50,51,52,53],[24,52],[9,13],[10,24],[9,10,11,12,24],[117],[117,118,120],[117,119],[115,116,118,120],[122,132],[115,116,118,119,120,122,123,124,125,126,127,128,129,130,131,133],[4,122,123,124,125,127,128,129],[116,117,122],[116,117,122,126],[4,112,122],[122],[4,112,116,117,118,120,121],[117,127],[28],[27],[13,24],[1,2,5,7],[6],[2,4]],"referencedMap":[[14,1],[15,1],[24,2],[23,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[109,3],[36,4],[40,5],[38,6],[37,7],[42,8],[41,9],[44,10],[43,9],[46,11],[48,12],[56,13],[55,14],[58,15],[57,16],[60,17],[59,18],[62,19],[64,20],[66,21],[65,9],[68,22],[70,23],[72,24],[71,9],[78,25],[76,26],[75,27],[80,28],[79,9],[82,29],[81,30],[84,31],[83,9],[86,32],[85,9],[74,33],[88,34],[87,30],[90,35],[92,36],[91,37],[94,38],[93,39],[96,40],[95,41],[98,42],[100,43],[99,9],[102,44],[106,45],[104,46],[108,47],[107,9],[31,9],[32,9],[111,48],[112,9],[4,49],[52,50],[54,51],[49,50],[53,52],[9,1],[10,53],[11,54],[13,55],[115,56],[119,57],[116,58],[118,58],[120,58],[117,59],[133,60],[134,61],[130,62],[124,63],[127,64],[128,63],[123,65],[125,66],[122,67],[129,63],[131,68],[25,50],[29,69],[28,70],[135,71],[8,72],[7,73],[5,74]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135]},"version":"5.5.3"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rbxts-ui/theme",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Design tokens, theme provider, and styling hooks for roblox-ts UI components",
|
|
5
5
|
"main": "dist/init.lua",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"readme": "README.md",
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"@rbxts/types": "*",
|
|
21
|
-
"@rbxts/ripple": "*"
|
|
21
|
+
"@rbxts/ripple": "*",
|
|
22
|
+
"@rbxts/react": "*",
|
|
23
|
+
"@rbxts/object-utils": "*",
|
|
24
|
+
"@rbxts/compiler-types": "*"
|
|
22
25
|
},
|
|
23
26
|
"devDependencies": {},
|
|
24
27
|
"publishConfig": {
|