@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/dist/index.mjs
CHANGED
|
@@ -641,7 +641,13 @@ var colors = {
|
|
|
641
641
|
},
|
|
642
642
|
selection: "rgb(179,215,254)",
|
|
643
643
|
thumbnailBackground: "#f0efff",
|
|
644
|
-
thumbnailShadow: "#D3CEED66"
|
|
644
|
+
thumbnailShadow: "#D3CEED66",
|
|
645
|
+
inlineCode: {
|
|
646
|
+
text: "rgb(103, 70, 255)",
|
|
647
|
+
background: "rgb(240, 242, 246)"
|
|
648
|
+
},
|
|
649
|
+
textLink: "rgb(103, 70, 255)",
|
|
650
|
+
textLinkFocused: "rgb(147, 86, 255)"
|
|
645
651
|
};
|
|
646
652
|
var fonts = {
|
|
647
653
|
normal: "'__Inter_6b0edc', '__Inter_Fallback_6b0edc', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif",
|
|
@@ -738,6 +744,9 @@ var textStyles = {
|
|
|
738
744
|
}
|
|
739
745
|
};
|
|
740
746
|
var sizes = {
|
|
747
|
+
inset: {
|
|
748
|
+
top: 46
|
|
749
|
+
},
|
|
741
750
|
sidebarWidth: 260,
|
|
742
751
|
toolbar: {
|
|
743
752
|
height: 46,
|
|
@@ -7131,6 +7140,7 @@ export {
|
|
|
7131
7140
|
Heading4,
|
|
7132
7141
|
Heading5,
|
|
7133
7142
|
IconButton,
|
|
7143
|
+
Icons,
|
|
7134
7144
|
ImageDataProvider,
|
|
7135
7145
|
InputElement,
|
|
7136
7146
|
InputField,
|
|
@@ -7176,6 +7186,7 @@ export {
|
|
|
7176
7186
|
light_exports as lightTheme,
|
|
7177
7187
|
mediaQuery,
|
|
7178
7188
|
normalizeListDestinationIndex,
|
|
7189
|
+
renderIcon,
|
|
7179
7190
|
rgbaToSketchColor,
|
|
7180
7191
|
size,
|
|
7181
7192
|
sketchColorToHex,
|