@web-noise/core 0.0.14 → 0.0.15-alpha.2
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/cjs/components.js +119 -84
- package/dist/cjs/components.js.map +1 -1
- package/dist/esm/components.js +172 -137
- package/dist/esm/components.js.map +1 -1
- package/dist/main.js +123 -88
- package/dist/main.js.map +1 -1
- package/dist/module.js +191 -156
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +21 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -40,7 +40,27 @@ export const theme: {
|
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
42
|
export type Theme = typeof theme;
|
|
43
|
-
export const useTheme: () =>
|
|
43
|
+
export const useTheme: () => {
|
|
44
|
+
colors: {
|
|
45
|
+
readonly elevation1: "#292d39";
|
|
46
|
+
readonly elevation2: "#181c20";
|
|
47
|
+
readonly elevation3: "#373c4b";
|
|
48
|
+
readonly accent1: "#0066dc";
|
|
49
|
+
readonly accent2: "#007bff";
|
|
50
|
+
readonly accent3: "#3c93ff";
|
|
51
|
+
readonly highlight1: "#535760";
|
|
52
|
+
readonly highlight2: "#8c92a4";
|
|
53
|
+
readonly highlight3: "#fefefe";
|
|
54
|
+
readonly vivid1: "#14df42";
|
|
55
|
+
readonly whitePrimary: "#ffffff";
|
|
56
|
+
readonly error: "#db5353";
|
|
57
|
+
};
|
|
58
|
+
zIndex: {
|
|
59
|
+
readonly modal: 9998;
|
|
60
|
+
readonly controlPanel: 9999;
|
|
61
|
+
readonly resumeContextLayout: 10003;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
44
64
|
interface EditableLabelProps {
|
|
45
65
|
onChange: (value: string) => void;
|
|
46
66
|
value?: string;
|