@noya-app/noya-designsystem 0.1.3 → 0.1.5
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 +13 -0
- package/dist/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/components/Stack.tsx +1 -0
- package/src/components/internal/Menu.tsx +2 -3
- package/src/theme/light.ts +11 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
[34mCLI[39m Target: esnext
|
|
6
6
|
[34mCJS[39m Build start
|
|
7
7
|
[34mESM[39m Build start
|
|
8
|
-
[
|
|
9
|
-
[
|
|
10
|
-
[
|
|
11
|
-
[
|
|
12
|
-
[
|
|
13
|
-
[
|
|
8
|
+
[32mCJS[39m [1mdist/index.js [22m[32m198.96 KB[39m
|
|
9
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m403.34 KB[39m
|
|
10
|
+
[32mCJS[39m ⚡️ Build success in 70ms
|
|
11
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m182.68 KB[39m
|
|
12
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m403.05 KB[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 70ms
|
|
14
14
|
[34mDTS[39m Build start
|
|
15
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
|
15
|
+
[32mDTS[39m ⚡️ Build success in 5910ms
|
|
16
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m54.16 KB[39m
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m54.16 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @noya-app/noya-designsystem
|
|
2
2
|
|
|
3
|
+
## 0.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @noya-app/noya-colorpicker@0.1.3
|
|
8
|
+
|
|
9
|
+
## 0.1.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [e2253f0]
|
|
14
|
+
- @noya-app/noya-geometry@0.1.1
|
|
15
|
+
|
|
3
16
|
## 0.1.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -114,6 +114,11 @@ declare const colors$1: {
|
|
|
114
114
|
activeBackground: string;
|
|
115
115
|
scrollbar: string;
|
|
116
116
|
placeholderDots: string;
|
|
117
|
+
breadcrumb: {
|
|
118
|
+
readonly text: string;
|
|
119
|
+
readonly textHover: string;
|
|
120
|
+
readonly icon: string;
|
|
121
|
+
};
|
|
117
122
|
listView: {
|
|
118
123
|
raisedBackground: string;
|
|
119
124
|
editingBackground: string;
|
|
@@ -878,6 +883,7 @@ interface StyleProps$1 {
|
|
|
878
883
|
pointerEvents?: CSSProperties["pointerEvents"];
|
|
879
884
|
lineHeight?: CSSProperties["lineHeight"];
|
|
880
885
|
isolation?: CSSProperties["isolation"];
|
|
886
|
+
backdropFilter?: CSSProperties["backdropFilter"];
|
|
881
887
|
}
|
|
882
888
|
type StackBreakpointList = BreakpointCollection<StyleProps$1>;
|
|
883
889
|
interface Props$4 extends StyleProps$1 {
|
|
@@ -1142,6 +1148,11 @@ declare const colors: {
|
|
|
1142
1148
|
activeBackground: string;
|
|
1143
1149
|
scrollbar: string;
|
|
1144
1150
|
placeholderDots: string;
|
|
1151
|
+
breadcrumb: {
|
|
1152
|
+
readonly text: string;
|
|
1153
|
+
readonly textHover: string;
|
|
1154
|
+
readonly icon: string;
|
|
1155
|
+
};
|
|
1145
1156
|
listView: {
|
|
1146
1157
|
raisedBackground: string;
|
|
1147
1158
|
editingBackground: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -114,6 +114,11 @@ declare const colors$1: {
|
|
|
114
114
|
activeBackground: string;
|
|
115
115
|
scrollbar: string;
|
|
116
116
|
placeholderDots: string;
|
|
117
|
+
breadcrumb: {
|
|
118
|
+
readonly text: string;
|
|
119
|
+
readonly textHover: string;
|
|
120
|
+
readonly icon: string;
|
|
121
|
+
};
|
|
117
122
|
listView: {
|
|
118
123
|
raisedBackground: string;
|
|
119
124
|
editingBackground: string;
|
|
@@ -878,6 +883,7 @@ interface StyleProps$1 {
|
|
|
878
883
|
pointerEvents?: CSSProperties["pointerEvents"];
|
|
879
884
|
lineHeight?: CSSProperties["lineHeight"];
|
|
880
885
|
isolation?: CSSProperties["isolation"];
|
|
886
|
+
backdropFilter?: CSSProperties["backdropFilter"];
|
|
881
887
|
}
|
|
882
888
|
type StackBreakpointList = BreakpointCollection<StyleProps$1>;
|
|
883
889
|
interface Props$4 extends StyleProps$1 {
|
|
@@ -1142,6 +1148,11 @@ declare const colors: {
|
|
|
1142
1148
|
activeBackground: string;
|
|
1143
1149
|
scrollbar: string;
|
|
1144
1150
|
placeholderDots: string;
|
|
1151
|
+
breadcrumb: {
|
|
1152
|
+
readonly text: string;
|
|
1153
|
+
readonly textHover: string;
|
|
1154
|
+
readonly icon: string;
|
|
1155
|
+
};
|
|
1145
1156
|
listView: {
|
|
1146
1157
|
raisedBackground: string;
|
|
1147
1158
|
editingBackground: string;
|
package/dist/index.js
CHANGED
|
@@ -5365,6 +5365,17 @@ var colors = {
|
|
|
5365
5365
|
activeBackground: "rgba(0,0,0,0.1)",
|
|
5366
5366
|
scrollbar: "rgba(199,199,199,0.8)",
|
|
5367
5367
|
placeholderDots: "rgba(0,0,0,0.3)",
|
|
5368
|
+
breadcrumb: {
|
|
5369
|
+
get text() {
|
|
5370
|
+
return colors.textMuted;
|
|
5371
|
+
},
|
|
5372
|
+
get textHover() {
|
|
5373
|
+
return colors.textSubtle;
|
|
5374
|
+
},
|
|
5375
|
+
get icon() {
|
|
5376
|
+
return colors.icon;
|
|
5377
|
+
}
|
|
5378
|
+
},
|
|
5368
5379
|
listView: {
|
|
5369
5380
|
raisedBackground: "rgba(0,0,0,0.03)",
|
|
5370
5381
|
editingBackground: "#fff"
|