@noya-app/noya-designsystem 0.1.26 → 0.1.27
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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +7 -0
- package/dist/index.d.mts +19 -1
- package/dist/index.d.ts +19 -1
- package/dist/index.js +14 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/index.tsx +1 -0
- package/src/theme/light.ts +9 -0
package/package.json
CHANGED
package/src/index.tsx
CHANGED
|
@@ -30,6 +30,7 @@ export * from "./components/GradientPicker";
|
|
|
30
30
|
export * from "./components/Grid";
|
|
31
31
|
export * from "./components/GridView";
|
|
32
32
|
export * from "./components/IconButton";
|
|
33
|
+
export * from "./components/Icons";
|
|
33
34
|
export * from "./components/InputField";
|
|
34
35
|
export * from "./components/InputFieldWithCompletions";
|
|
35
36
|
export * from "./components/InspectorContainer";
|
package/src/theme/light.ts
CHANGED
|
@@ -91,6 +91,12 @@ export const colors = {
|
|
|
91
91
|
selection: "rgb(179,215,254)",
|
|
92
92
|
thumbnailBackground: "#f0efff",
|
|
93
93
|
thumbnailShadow: "#D3CEED66",
|
|
94
|
+
inlineCode: {
|
|
95
|
+
text: "rgb(103, 70, 255)",
|
|
96
|
+
background: "rgb(240, 242, 246)",
|
|
97
|
+
},
|
|
98
|
+
textLink: "rgb(103, 70, 255)",
|
|
99
|
+
textLinkFocused: "rgb(147, 86, 255)",
|
|
94
100
|
};
|
|
95
101
|
|
|
96
102
|
export const fonts = {
|
|
@@ -193,6 +199,9 @@ export const textStyles = {
|
|
|
193
199
|
};
|
|
194
200
|
|
|
195
201
|
export const sizes = {
|
|
202
|
+
inset: {
|
|
203
|
+
top: 46,
|
|
204
|
+
},
|
|
196
205
|
sidebarWidth: 260,
|
|
197
206
|
toolbar: {
|
|
198
207
|
height: 46,
|