@rovula/ui 0.1.40 → 0.1.42

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.
Files changed (30) hide show
  1. package/dist/cjs/bundle.css +3 -0
  2. package/dist/cjs/bundle.js +4 -4
  3. package/dist/cjs/bundle.js.map +1 -1
  4. package/dist/cjs/types/components/AutoComplete/AutoComplete.d.ts +74 -0
  5. package/dist/cjs/types/components/AutoComplete/AutoComplete.stories.d.ts +361 -0
  6. package/dist/cjs/types/components/AutoComplete/index.d.ts +2 -0
  7. package/dist/cjs/types/index.d.ts +3 -0
  8. package/dist/components/AutoComplete/AutoComplete.js +103 -0
  9. package/dist/components/AutoComplete/AutoComplete.stories.js +212 -0
  10. package/dist/components/AutoComplete/index.js +1 -0
  11. package/dist/components/Dialog/Dialog.js +5 -1
  12. package/dist/components/TextInput/TextInput.js +2 -1
  13. package/dist/esm/bundle.css +3 -0
  14. package/dist/esm/bundle.js +4 -4
  15. package/dist/esm/bundle.js.map +1 -1
  16. package/dist/esm/types/components/AutoComplete/AutoComplete.d.ts +74 -0
  17. package/dist/esm/types/components/AutoComplete/AutoComplete.stories.d.ts +361 -0
  18. package/dist/esm/types/components/AutoComplete/index.d.ts +2 -0
  19. package/dist/esm/types/index.d.ts +3 -0
  20. package/dist/index.d.ts +75 -2
  21. package/dist/index.js +2 -0
  22. package/dist/src/theme/global.css +35 -31
  23. package/package.json +1 -1
  24. package/src/components/AutoComplete/AutoComplete.stories.tsx +525 -0
  25. package/src/components/AutoComplete/AutoComplete.tsx +374 -0
  26. package/src/components/AutoComplete/index.ts +2 -0
  27. package/src/components/Dialog/Dialog.tsx +4 -0
  28. package/src/components/TextInput/TextInput.tsx +13 -8
  29. package/src/index.ts +3 -0
  30. package/src/theme/themes/variable.css +31 -31
@@ -50,13 +50,13 @@
50
50
  --state-primary-default-skyller: #2563eb;
51
51
  --state-primary-hover-xspector: #ddcd00;
52
52
  --state-primary-hover-report-xspector-light-mode: #35475b;
53
- --state-primary-hover-skyller: #6692f1;
53
+ --state-primary-hover-skyller: #1e4fbc;
54
54
  --state-primary-stroke-xspector: rgba(177 164 0 / 0.48);
55
55
  --state-primary-stroke-report-xspector-light-mode: rgba(30 50 73 / 0.64);
56
56
  --state-primary-stroke-skyller: rgba(189 189 189 / 0.64);
57
57
  --state-primary-hover-bg-xspector: rgba(221 205 0 / 0.08);
58
58
  --state-primary-hover-bg-report-xspector-light-mode: rgba(30 50 73 / 0.08);
59
- --state-primary-hover-bg-skyller: rgba(102 146 241 / 0.08);
59
+ --state-primary-hover-bg-skyller: rgba(30 79 188 / 0.08);
60
60
  --state-primary-pressed-xspector: #6f6700;
61
61
  --state-primary-pressed-report-xspector-light-mode: #152333;
62
62
  --state-primary-pressed-skyller: #1e40af;
@@ -71,7 +71,7 @@
71
71
  --state-primary-text-outline-skyller: #2563eb;
72
72
  --state-primary-text-hover-xspector: #ddcd00;
73
73
  --state-primary-text-hover-report-xspector-light-mode: #35475b;
74
- --state-primary-text-hover-skyller: #6692f1;
74
+ --state-primary-text-hover-skyller: #1e4fbc;
75
75
  --state-primary-text-pressed-xspector: #6f6700;
76
76
  --state-primary-text-pressed-report-xspector-light-mode: #152333;
77
77
  --state-primary-text-pressed-skyller: #1e40af;
@@ -80,13 +80,13 @@
80
80
  --state-secondary-default-skyller: #171717;
81
81
  --state-secondary-hover-xspector: #fafafa;
82
82
  --state-secondary-hover-report-xspector-light-mode: #b1a400;
83
- --state-secondary-hover-skyller: #424242;
83
+ --state-secondary-hover-skyller: #000000;
84
84
  --state-secondary-stroke-xspector: rgba(236 236 236 / 0.48);
85
85
  --state-secondary-stroke-report-xspector-light-mode: rgba(155 143 0 / 0.64);
86
86
  --state-secondary-stroke-skyller: rgba(189 189 189 / 0.64);
87
87
  --state-secondary-hover-bg-xspector: rgba(250 250 250 / 0.08);
88
88
  --state-secondary-hover-bg-report-xspector-light-mode: rgba(221 205 0 / 0.08);
89
- --state-secondary-hover-bg-skyller: rgba(66 66 66 / 0.08);
89
+ --state-secondary-hover-bg-skyller: rgba(0 0 0 / 0.08);
90
90
  --state-secondary-pressed-xspector: #bbbbbb;
91
91
  --state-secondary-pressed-report-xspector-light-mode: #6f6700;
92
92
  --state-secondary-pressed-skyller: #000000;
@@ -101,7 +101,7 @@
101
101
  --state-secondary-text-outline-skyller: #171717;
102
102
  --state-secondary-text-hover-xspector: #fafafa;
103
103
  --state-secondary-text-hover-report-xspector-light-mode: #b1a400;
104
- --state-secondary-text-hover-skyller: #424242;
104
+ --state-secondary-text-hover-skyller: #000000;
105
105
  --state-secondary-text-pressed-xspector: #c5c5c5;
106
106
  --state-secondary-text-pressed-report-xspector-light-mode: #6f6700;
107
107
  --state-secondary-text-pressed-skyller: #000000;
@@ -110,13 +110,13 @@
110
110
  --state-tertiary-default-skyller: #60a5fa;
111
111
  --state-tertiary-hover-xspector: #adcad6;
112
112
  --state-tertiary-hover-report-xspector-light-mode: #6f6f6f;
113
- --state-tertiary-hover-skyller: #90c0fc;
113
+ --state-tertiary-hover-skyller: #4d84c8;
114
114
  --state-tertiary-stroke-xspector: rgba(138 162 171 / 0.48);
115
115
  --state-tertiary-stroke-report-xspector-light-mode: rgba(79 79 79 / 0.48);
116
116
  --state-tertiary-stroke-skyller: rgba(189 189 189 / 0.48);
117
117
  --state-tertiary-hover-bg-xspector: rgba(173 202 214 / 0.08);
118
118
  --state-tertiary-hover-bg-report-xspector-light-mode: rgba(158 158 158 / 0.08);
119
- --state-tertiary-hover-bg-skyller: rgba(144 192 252 / 0.08);
119
+ --state-tertiary-hover-bg-skyller: rgba(77 132 200 / 0.08);
120
120
  --state-tertiary-pressed-xspector: #57656b;
121
121
  --state-tertiary-pressed-report-xspector-light-mode: #b1b1b1;
122
122
  --state-tertiary-pressed-skyller: #1e40af;
@@ -131,7 +131,7 @@
131
131
  --state-tertiary-text-outline-skyller: #60a5fa;
132
132
  --state-tertiary-text-hover-xspector: #adcad6;
133
133
  --state-tertiary-text-hover-report-xspector-light-mode: #6f6f6f;
134
- --state-tertiary-text-hover-skyller: #90c0fc;
134
+ --state-tertiary-text-hover-skyller: #4d84c8;
135
135
  --state-tertiary-text-pressed-xspector: #57656b;
136
136
  --state-tertiary-text-pressed-report-xspector-light-mode: #b1b1b1;
137
137
  --state-tertiary-text-pressed-skyller: #1e40af;
@@ -140,13 +140,13 @@
140
140
  --state-info-default-skyller: #2563eb;
141
141
  --state-info-hover-xspector: #2998ff;
142
142
  --state-info-hover-report-xspector-light-mode: #2998ff;
143
- --state-info-hover-skyller: #6692f1;
143
+ --state-info-hover-skyller: #1d4ed8;
144
144
  --state-info-stroke-xspector: rgba(27 125 245 / 0.48);
145
145
  --state-info-stroke-report-xspector-light-mode: rgba(41 152 255 / 0.48);
146
146
  --state-info-stroke-skyller: rgba(37 99 235 / 0.48);
147
147
  --state-info-hover-bg-xspector: rgba(41 152 255 / 0.08);
148
148
  --state-info-hover-bg-report-xspector-light-mode: rgba(41 152 255 / 0.08);
149
- --state-info-hover-bg-skyller: rgba(102 146 241 / 0.08);
149
+ --state-info-hover-bg-skyller: rgba(29 78 216 / 0.08);
150
150
  --state-info-pressed-xspector: #1752b6;
151
151
  --state-info-pressed-report-xspector-light-mode: #1752b6;
152
152
  --state-info-pressed-skyller: #1e40af;
@@ -161,7 +161,7 @@
161
161
  --state-info-text-outline-skyller: #2563eb;
162
162
  --state-info-text-hover-xspector: #2998ff;
163
163
  --state-info-text-hover-report-xspector-light-mode: #2998ff;
164
- --state-info-text-hover-skyller: #6692f1;
164
+ --state-info-text-hover-skyller: #1d4ed8;
165
165
  --state-info-text-pressed-xspector: #1752b6;
166
166
  --state-info-text-pressed-report-xspector-light-mode: #1752b6;
167
167
  --state-info-text-pressed-skyller: #1e40af;
@@ -170,13 +170,13 @@
170
170
  --state-success-default-skyller: #16a34a;
171
171
  --state-success-hover-xspector: #54d62c;
172
172
  --state-success-hover-report-xspector-light-mode: #54d62c;
173
- --state-success-hover-skyller: #4ade80;
173
+ --state-success-hover-skyller: #15803d;
174
174
  --state-success-stroke-xspector: rgba(49 153 23 / 0.48);
175
175
  --state-success-stroke-report-xspector-light-mode: rgba(68 192 34 / 0.48);
176
176
  --state-success-stroke-skyller: rgba(22 163 74 / 0.48);
177
177
  --state-success-hover-bg-xspector: rgba(84 214 44 / 0.08);
178
178
  --state-success-hover-bg-report-xspector-light-mode: rgba(84 214 44 / 0.08);
179
- --state-success-hover-bg-skyller: rgba(74 222 128 / 0.08);
179
+ --state-success-hover-bg-skyller: rgba(21 128 61 / 0.08);
180
180
  --state-success-pressed-xspector: #235d17;
181
181
  --state-success-pressed-report-xspector-light-mode: #235d17;
182
182
  --state-success-pressed-skyller: #166534;
@@ -191,7 +191,7 @@
191
191
  --state-success-text-outline-skyller: #16a34a;
192
192
  --state-success-text-hover-xspector: #54d62c;
193
193
  --state-success-text-hover-report-xspector-light-mode: #54d62c;
194
- --state-success-text-hover-skyller: #4ade80;
194
+ --state-success-text-hover-skyller: #15803d;
195
195
  --state-success-text-pressed-xspector: #235d17;
196
196
  --state-success-text-pressed-report-xspector-light-mode: #235d17;
197
197
  --state-success-text-pressed-skyller: #166534;
@@ -200,13 +200,13 @@
200
200
  --state-warning-default-skyller: #f59e0b;
201
201
  --state-warning-hover-xspector: #ffdf1b;
202
202
  --state-warning-hover-report-xspector-light-mode: #ffdf1b;
203
- --state-warning-hover-skyller: #fbbf24;
203
+ --state-warning-hover-skyller: #d97706;
204
204
  --state-warning-stroke-xspector: rgba(255 193 7 / 0.48);
205
205
  --state-warning-stroke-report-xspector-light-mode: rgba(255 223 27 / 0.48);
206
206
  --state-warning-stroke-skyller: rgba(245 158 11 / 0.48);
207
207
  --state-warning-hover-bg-xspector: rgba(255 193 7 / 0.08);
208
208
  --state-warning-hover-bg-report-xspector-light-mode: rgba(255 193 7 / 0.08);
209
- --state-warning-hover-bg-skyller: rgba(251 191 36 / 0.08);
209
+ --state-warning-hover-bg-skyller: rgba(217 119 6 / 0.08);
210
210
  --state-warning-pressed-xspector: #985108;
211
211
  --state-warning-pressed-report-xspector-light-mode: #985108;
212
212
  --state-warning-pressed-skyller: #d97706;
@@ -221,22 +221,22 @@
221
221
  --state-warning-text-outline-skyller: #f59e0b;
222
222
  --state-warning-text-hover-xspector: #ffdf1b;
223
223
  --state-warning-text-hover-report-xspector-light-mode: #ffdf1b;
224
- --state-warning-text-hover-skyller: #fbbf24;
224
+ --state-warning-text-hover-skyller: #d97706;
225
225
  --state-warning-text-pressed-xspector: #985108;
226
226
  --state-warning-text-pressed-report-xspector-light-mode: #985108;
227
- --state-warning-text-pressed-skyller: #d97706;
227
+ --state-warning-text-pressed-skyller: #92400e;
228
228
  --state-error-default-xspector: #ff4d35;
229
229
  --state-error-default-report-xspector-light-mode: #ed2f15;
230
230
  --state-error-default-skyller: #ef4444;
231
231
  --state-error-hover-xspector: #f87171;
232
232
  --state-error-hover-report-xspector-light-mode: #ff4d35;
233
- --state-error-hover-skyller: #f87171;
233
+ --state-error-hover-skyller: #b91c1c;
234
234
  --state-error-stroke-xspector: rgba(255 77 53 / 0.48);
235
235
  --state-error-stroke-report-xspector-light-mode: rgba(237 47 21 / 0.64);
236
236
  --state-error-stroke-skyller: rgba(220 38 38 / 0.64);
237
237
  --state-error-hover-bg-xspector: rgba(248 113 113 / 0.08);
238
238
  --state-error-hover-bg-report-xspector-light-mode: rgba(255 77 53 / 0.08);
239
- --state-error-hover-bg-skyller: rgba(248 113 113 / 0.08);
239
+ --state-error-hover-bg-skyller: rgba(185 28 28 / 0.08);
240
240
  --state-error-pressed-xspector: #a5210f;
241
241
  --state-error-pressed-report-xspector-light-mode: #a5210f;
242
242
  --state-error-pressed-skyller: #991b1b;
@@ -251,7 +251,7 @@
251
251
  --state-error-text-outline-skyller: #dc2626;
252
252
  --state-error-text-hover-xspector: #f87171;
253
253
  --state-error-text-hover-report-xspector-light-mode: #ff4d35;
254
- --state-error-text-hover-skyller: #f87171;
254
+ --state-error-text-hover-skyller: #b91c1c;
255
255
  --state-error-text-pressed-xspector: #a5210f;
256
256
  --state-error-text-pressed-report-xspector-light-mode: #a5210f;
257
257
  --state-error-text-pressed-skyller: #991b1b;
@@ -872,13 +872,13 @@
872
872
  --function-default-solid-skyller: #171717;
873
873
  --function-default-hover-xspector: #fafafa;
874
874
  --function-default-hover-report-xspector-light-mode: #35475b;
875
- --function-default-hover-skyller: #424242;
875
+ --function-default-hover-skyller: #000000;
876
876
  --function-default-hover-bg-xspector: rgba(250 250 250 / 0.08);
877
877
  --function-default-hover-bg-report-xspector-light-mode: rgba(30 50 73 / 0.08);
878
878
  --function-default-hover-bg-skyller: rgba(23 23 23 / 0.08);
879
879
  --function-default-stroke-xspector: rgba(158 158 158 / 0.24);
880
880
  --function-default-stroke-report-xspector-light-mode: rgba(30 50 73 / 0.48);
881
- --function-default-stroke-skyller: rgba(189 189 189 / 0.48);
881
+ --function-default-stroke-skyller: rgba(0 0 0 / 0.48);
882
882
  --function-default-icon-xspector: #212b36;
883
883
  --function-default-icon-report-xspector-light-mode: #ffffff;
884
884
  --function-default-icon-skyller: #ffffff;
@@ -890,13 +890,13 @@
890
890
  --function-active-solid-skyller: #2563eb;
891
891
  --function-active-hover-xspector: #ddcd00;
892
892
  --function-active-hover-report-xspector-light-mode: #b1a400;
893
- --function-active-hover-skyller: #5182ef;
893
+ --function-active-hover-skyller: #1e4fbc;
894
894
  --function-active-hover-bg-xspector: rgba(221 205 0 / 0.08);
895
895
  --function-active-hover-bg-report-xspector-light-mode: rgba(221 205 0 / 0.08);
896
896
  --function-active-hover-bg-skyller: rgba(81 130 239 / 0.08);
897
897
  --function-active-stroke-xspector: rgba(177 164 0 / 0.48);
898
898
  --function-active-stroke-report-xspector-light-mode: rgba(177 164 0 / 0.48);
899
- --function-active-stroke-skyller: rgba(37 99 235 / 0.48);
899
+ --function-active-stroke-skyller: rgba(30 79 188 / 0.48);
900
900
  --function-active-icon-xspector: #212b36;
901
901
  --function-active-icon-report-xspector-light-mode: #ffffff;
902
902
  --function-active-icon-skyller: #ffffff;
@@ -1055,7 +1055,7 @@
1055
1055
  --bg-stroke5-skyller: #000000;
1056
1056
  --table-bg-main-xspector: #091a2a;
1057
1057
  --table-bg-main-report-xspector-light-mode: #e5e5e5;
1058
- --table-bg-main-skyller: #d4d4d6;
1058
+ --table-bg-main-skyller: #bfdbfd;
1059
1059
  --table-bg-line-xspector: #1c3955;
1060
1060
  --table-bg-line-report-xspector-light-mode: #d2d2d2;
1061
1061
  --table-bg-line-skyller: #ececec;
@@ -1064,13 +1064,13 @@
1064
1064
  --table-bg-a-skyller: #fdfdfd;
1065
1065
  --table-bg-b-xspector: #0f2f50;
1066
1066
  --table-bg-b-report-xspector-light-mode: #f3f3f3;
1067
- --table-bg-b-skyller: #f1f1f1;
1067
+ --table-bg-b-skyller: #eff6ff;
1068
1068
  --table-panel-hover-xspector: #343638;
1069
1069
  --table-panel-hover-report-xspector-light-mode: #d4d4d4;
1070
- --table-panel-hover-skyller: #eff6fe;
1070
+ --table-panel-hover-skyller: #dfedfe;
1071
1071
  --table-bg-hover-xspector: #103861;
1072
1072
  --table-bg-hover-report-xspector-light-mode: #ffffff;
1073
- --table-bg-hover-skyller: #eff6fe;
1073
+ --table-bg-hover-skyller: #cfe4fd;
1074
1074
  --table-panel-sub-line-xspector: #393b3f;
1075
1075
  --table-panel-sub-line-report-xspector-light-mode: #d4d4d4;
1076
1076
  --table-panel-sub-line-skyller: #ececec;
@@ -1079,7 +1079,7 @@
1079
1079
  --table-panel-main-line-skyller: #d4d4d4;
1080
1080
  --table-panel-selected-xspector: #6f6700;
1081
1081
  --table-panel-selected-report-xspector-light-mode: #d4d4d4;
1082
- --table-panel-selected-skyller: #bfdbfd;
1082
+ --table-panel-selected-skyller: #afd2fd;
1083
1083
  --modal-dropdown-surface-xspector: #252628;
1084
1084
  --modal-dropdown-surface-report-xspector-light-mode: #ffffff;
1085
1085
  --modal-dropdown-surface-skyller: #ffffff;
@@ -4761,6 +4761,10 @@ input[type=number] {
4761
4761
  max-width: 28rem;
4762
4762
  }
4763
4763
 
4764
+ .max-w-sm {
4765
+ max-width: 24rem;
4766
+ }
4767
+
4764
4768
  .flex-1 {
4765
4769
  flex: 1 1 0%;
4766
4770
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rovula/ui",
3
- "version": "0.1.40",
3
+ "version": "0.1.42",
4
4
  "main": "dist/cjs/bundle.js",
5
5
  "module": "dist/esm/bundle.js",
6
6
  "types": "dist/index.d.ts",