@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.
@@ -5,13 +5,13 @@
5
5
  CLI Target: esnext
6
6
  CJS Build start
7
7
  ESM Build start
8
- ESM dist/index.mjs 182.50 KB
9
- ESM dist/index.mjs.map 402.42 KB
10
- ESM ⚡️ Build success in 76ms
11
- CJS dist/index.js 198.78 KB
12
- CJS dist/index.js.map 402.70 KB
13
- CJS ⚡️ Build success in 76ms
8
+ CJS dist/index.js 198.96 KB
9
+ CJS dist/index.js.map 403.34 KB
10
+ CJS ⚡️ Build success in 70ms
11
+ ESM dist/index.mjs 182.68 KB
12
+ ESM dist/index.mjs.map 403.05 KB
13
+ ESM ⚡️ Build success in 70ms
14
14
  DTS Build start
15
- DTS ⚡️ Build success in 6033ms
16
- DTS dist/index.d.ts 53.87 KB
17
- DTS dist/index.d.mts 53.87 KB
15
+ DTS ⚡️ Build success in 5910ms
16
+ DTS dist/index.d.ts 54.16 KB
17
+ DTS dist/index.d.mts 54.16 KB
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"