@driveflux/beam 1.11.16 → 2.0.1
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/dist/badge/Badge.js +1 -1
- package/dist/base-styles.css +265 -96
- package/dist/command/command.js +2 -2
- package/dist/datepicker/DatePicker.d.ts +2 -2
- package/dist/datepicker/DatePicker.d.ts.map +1 -1
- package/dist/datepicker/DatePicker.js.map +1 -1
- package/dist/drawer/index.js +1 -1
- package/dist/dropdown/Dropdown.js +4 -4
- package/dist/field-wrapper/FieldWrapper.js.map +1 -1
- package/dist/icons/IconCancel.d.ts.map +1 -1
- package/dist/icons/IconCancel.js +20 -13
- package/dist/icons/IconCollapseAll.js +1 -1
- package/dist/icons/IconDot.js.map +1 -1
- package/dist/input-select/InputSelect.js +2 -2
- package/dist/input-select/InputSelect.js.map +1 -1
- package/dist/input-select/InputSelect.stories.d.ts.map +1 -1
- package/dist/popover/popover.js +1 -1
- package/dist/search-input-select/SearchInputSelect.js +3 -3
- package/dist/select/Select.js +4 -4
- package/dist/select/Select.stories.d.ts.map +1 -1
- package/dist/styles.css +2801 -3286
- package/dist/table/Table.js +1 -1
- package/dist/tabs/Tabs.js +1 -1
- package/package.json +56 -51
- package/dist/datepicker/calendar.css +0 -145
- package/dist/datepicker/root-calendar.css +0 -155
- package/dist/icons/IconCollapseAll.js.map +0 -1
- package/dist/icons/IconDownload.d.ts +0 -8
- package/dist/icons/IconDownload.d.ts.map +0 -1
- package/dist/icons/IconDownload.js +0 -82
- package/dist/icons/IconDownload.js.map +0 -1
- package/dist/icons/IconExpandAll.js.map +0 -1
- package/dist/icons/IconReport.js.map +0 -1
- package/dist/root.css +0 -24
package/dist/badge/Badge.js
CHANGED
|
@@ -81,7 +81,7 @@ import { jsx as _jsx } from "react/jsx-runtime";
|
|
|
81
81
|
import { cva } from 'class-variance-authority';
|
|
82
82
|
import Box from '../box/Box';
|
|
83
83
|
import { cn } from '../utils';
|
|
84
|
-
var badgeVariants = cva('inline-flex text-white
|
|
84
|
+
var badgeVariants = cva('inline-flex text-white h-5 px-2 py-2 font-bold text-xs tracking-normal uppercase bg-black', {
|
|
85
85
|
variants: {
|
|
86
86
|
colorScheme: {
|
|
87
87
|
success: 'bg-success4',
|
package/dist/base-styles.css
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
@import "tailwindcss" important;
|
|
1
2
|
@import "./root.css";
|
|
2
3
|
@import "./datepicker/calendar.css";
|
|
3
|
-
|
|
4
|
-
@
|
|
5
|
-
|
|
4
|
+
|
|
5
|
+
@plugin 'tailwindcss-animate';
|
|
6
|
+
|
|
7
|
+
@custom-variant dark (&:is(.dark *));
|
|
6
8
|
|
|
7
9
|
@font-face {
|
|
8
10
|
font-family: "Gotham-Black";
|
|
@@ -59,115 +61,282 @@
|
|
|
59
61
|
font-display: swap;
|
|
60
62
|
}
|
|
61
63
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
-webkit-text-size-adjust: 100%;
|
|
65
|
-
height: 100%;
|
|
66
|
-
box-sizing: border-box;
|
|
67
|
-
line-height: 1.65;
|
|
68
|
-
}
|
|
64
|
+
@theme {
|
|
65
|
+
--height-button: 48px;
|
|
69
66
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
67
|
+
--font-bold: Gotham-Bold;
|
|
68
|
+
--font-normal: Gotham-Book;
|
|
69
|
+
--font-medium: Gotham-Medium;
|
|
70
|
+
--font-black: Gotham-Black;
|
|
71
|
+
--font-light: Gotham-Light;
|
|
75
72
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
text-rendering: optimizeLegibility;
|
|
88
|
-
-webkit-font-smoothing: antialiased;
|
|
89
|
-
-moz-osx-font-smoothing: grayscale;
|
|
90
|
-
scroll-behavior: smooth;
|
|
91
|
-
font-family: var(--primaryNormal);
|
|
92
|
-
}
|
|
73
|
+
--text-xs: 10px;
|
|
74
|
+
--text-sm: 12px;
|
|
75
|
+
--text-base: 14px;
|
|
76
|
+
--text-xl: 16px;
|
|
77
|
+
--text-2xl: 18px;
|
|
78
|
+
--text-3xl: 20px;
|
|
79
|
+
--text-4xl: 22px;
|
|
80
|
+
--text-5xl: 24px;
|
|
81
|
+
--text-6xl: 26px;
|
|
82
|
+
--text-7xl: 28px;
|
|
83
|
+
--text-8xl: 30px;
|
|
93
84
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
85
|
+
--tracking-normal: 0;
|
|
86
|
+
--tracking-wide: 1px;
|
|
87
|
+
--tracking-wider: 2px;
|
|
88
|
+
--tracking-widest: 3px;
|
|
98
89
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
color:
|
|
102
|
-
|
|
90
|
+
--color-primary1: #efeff0;
|
|
91
|
+
--color-primary2: #cacaca;
|
|
92
|
+
--color-primary3: #585858;
|
|
93
|
+
--color-primary4: #191919;
|
|
94
|
+
--color-accent4: #e55867;
|
|
95
|
+
--color-links1: #eefafd;
|
|
96
|
+
--color-links2: #ade0ee;
|
|
97
|
+
--color-links: #50c8e8;
|
|
98
|
+
--color-lite: #d6f0f7;
|
|
99
|
+
--color-alert4: #e24657;
|
|
100
|
+
--color-danger: #e24657;
|
|
101
|
+
--color-warning4: #f4b25c;
|
|
102
|
+
--color-success4: #4fd9c2;
|
|
103
|
+
--color-green: #4fd9c2;
|
|
104
|
+
--color-black: #000000;
|
|
105
|
+
--color-white: #ffffff;
|
|
106
|
+
--color-white-hover: #e6e6e6;
|
|
107
|
+
--color-placeholder: #f4f4f4;
|
|
108
|
+
--color-highlight: #f9f7d7;
|
|
103
109
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
110
|
+
--color-primary-25: #fafafa;
|
|
111
|
+
--color-primary-50: #d6f5f0;
|
|
112
|
+
--color-primary-100: #98e6d6;
|
|
113
|
+
--color-primary-200: #191919;
|
|
114
|
+
--color-primary-300: #191919;
|
|
115
|
+
--color-primary-400: #3bd5bb;
|
|
116
|
+
--color-primary-500: #000000;
|
|
117
|
+
--color-primary-600: #000000;
|
|
118
|
+
--color-primary-700: #000000;
|
|
119
|
+
--color-primary-800: #000000;
|
|
120
|
+
--color-primary-900: #000000;
|
|
107
121
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
122
|
+
--color-success-50: #d8f7f2;
|
|
123
|
+
--color-success-100: #98e6d6;
|
|
124
|
+
--color-success-200: #3bd5bc;
|
|
125
|
+
--color-success-300: #4fd9c2;
|
|
126
|
+
--color-success-400: #3bd5bb;
|
|
127
|
+
--color-success-500: #3bd5bb;
|
|
128
|
+
--color-success-600: #2ea692;
|
|
129
|
+
--color-success-700: #00825c;
|
|
130
|
+
--color-success-800: #00724d;
|
|
131
|
+
--color-success-900: #005530;
|
|
111
132
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
133
|
+
--color-accent-50: #fceaee;
|
|
134
|
+
--color-accent-100: #f8cad3;
|
|
135
|
+
--color-accent-200: #e55867;
|
|
136
|
+
--color-accent-300: #e55867;
|
|
137
|
+
--color-accent-400: #e24657;
|
|
138
|
+
--color-accent-500: #e24657;
|
|
139
|
+
--color-accent-600: #d8253f;
|
|
140
|
+
--color-accent-700: #c61a38;
|
|
141
|
+
--color-accent-800: #b91231;
|
|
142
|
+
--color-accent-900: #aa0026;
|
|
117
143
|
|
|
118
|
-
|
|
119
|
-
color:
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
144
|
+
--color-warning-50: #fdf0de;
|
|
145
|
+
--color-warning-100: #f4b25c;
|
|
146
|
+
--color-warning-200: #f4b25c;
|
|
147
|
+
--color-warning-300: #f4b25c;
|
|
148
|
+
--color-warning-400: #f4b25c;
|
|
149
|
+
--color-warning-500: #f4b25c;
|
|
150
|
+
--color-warning-600: #bf7f2c;
|
|
151
|
+
--color-warning-700: #f4b25c;
|
|
152
|
+
--color-warning-800: #f4b25c;
|
|
153
|
+
--color-warning-900: #f4b25c;
|
|
123
154
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
155
|
+
--color-info-25: #eefafc;
|
|
156
|
+
--color-info-50: #cdf1fa;
|
|
157
|
+
--color-info-100: #50c8e8;
|
|
158
|
+
--color-info-200: #50c8e8;
|
|
159
|
+
--color-info-300: #50c8e8;
|
|
160
|
+
--color-info-400: #50c8e8;
|
|
161
|
+
--color-info-500: #50c8e8;
|
|
162
|
+
--color-info-600: #3ea5c0;
|
|
163
|
+
--color-info-700: #50c8e8;
|
|
164
|
+
--color-info-800: #50c8e8;
|
|
165
|
+
--color-info-900: #183c46;
|
|
127
166
|
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
167
|
+
--color-alert-50: #e24657;
|
|
168
|
+
--color-alert-100: #e24657;
|
|
169
|
+
--color-alert-200: #e24657;
|
|
170
|
+
--color-alert-300: #e24657;
|
|
171
|
+
--color-alert-400: #e24657;
|
|
172
|
+
--color-alert-500: #e24657;
|
|
173
|
+
--color-alert-600: #e24657;
|
|
174
|
+
--color-alert-700: #e24657;
|
|
175
|
+
--color-alert-800: #e24657;
|
|
176
|
+
--color-alert-900: #e24657;
|
|
133
177
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
178
|
+
--animate-accordion-down: accordion-down 0.2s ease-out;
|
|
179
|
+
--animate-accordion-up: accordion-up 0.2s ease-out;
|
|
180
|
+
--animate-spin: rotate 0.6s linear infinite;
|
|
137
181
|
|
|
138
|
-
|
|
139
|
-
width: 100%;
|
|
140
|
-
height: 100%;
|
|
141
|
-
}
|
|
182
|
+
--leading-14: 14px;
|
|
142
183
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
textarea:-webkit-autofill:hover,
|
|
148
|
-
textarea:-webkit-autofill:focus,
|
|
149
|
-
select:-webkit-autofill,
|
|
150
|
-
select:-webkit-autofill:hover,
|
|
151
|
-
select:-webkit-autofill:focus {
|
|
152
|
-
background-color: var(--white) !important;
|
|
153
|
-
-webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
|
|
154
|
-
color: #000 !important;
|
|
155
|
-
font-size: 14px !important;
|
|
156
|
-
}
|
|
184
|
+
@keyframes accordion-down {
|
|
185
|
+
from {
|
|
186
|
+
height: 0;
|
|
187
|
+
}
|
|
157
188
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
}
|
|
189
|
+
to {
|
|
190
|
+
height: var(--radix-accordion-content-height);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
162
193
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
194
|
+
@keyframes accordion-up {
|
|
195
|
+
from {
|
|
196
|
+
height: var(--radix-accordion-content-height);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
to {
|
|
200
|
+
height: 0;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
@keyframes rotate {
|
|
205
|
+
0% {
|
|
206
|
+
transform: rotate(0deg);
|
|
207
|
+
}
|
|
166
208
|
|
|
167
|
-
|
|
168
|
-
|
|
209
|
+
100% {
|
|
210
|
+
transform: rotate(360deg);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
169
213
|
}
|
|
170
214
|
|
|
171
|
-
|
|
172
|
-
|
|
215
|
+
@layer base {
|
|
216
|
+
*,
|
|
217
|
+
::after,
|
|
218
|
+
::before,
|
|
219
|
+
::backdrop,
|
|
220
|
+
::file-selector-button {
|
|
221
|
+
border-color: var(--color-gray-200, currentcolor);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
a {
|
|
225
|
+
color: var(--links);
|
|
226
|
+
text-decoration: none;
|
|
227
|
+
transition: color 0.2s ease;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
a:hover {
|
|
231
|
+
text-decoration: none;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
html {
|
|
235
|
+
line-height: 1.15;
|
|
236
|
+
-webkit-text-size-adjust: 100%;
|
|
237
|
+
height: 100%;
|
|
238
|
+
box-sizing: border-box;
|
|
239
|
+
line-height: 1.65;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
*,
|
|
243
|
+
*:before,
|
|
244
|
+
*:after {
|
|
245
|
+
box-sizing: inherit;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
body {
|
|
249
|
+
position: relative;
|
|
250
|
+
min-height: 100%;
|
|
251
|
+
margin: 0;
|
|
252
|
+
|
|
253
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen",
|
|
254
|
+
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
255
|
+
sans-serif;
|
|
256
|
+
font-weight: 400;
|
|
257
|
+
min-width: 320px;
|
|
258
|
+
direction: ltr;
|
|
259
|
+
font-feature-settings: "kern";
|
|
260
|
+
text-rendering: optimizeLegibility;
|
|
261
|
+
-webkit-font-smoothing: antialiased;
|
|
262
|
+
-moz-osx-font-smoothing: grayscale;
|
|
263
|
+
scroll-behavior: smooth;
|
|
264
|
+
font-family: var(--primaryNormal);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
html,
|
|
268
|
+
body {
|
|
269
|
+
background-color: var(--white);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
::selection {
|
|
273
|
+
background-color: var(--primary);
|
|
274
|
+
color: var(--white);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
[role="grid"]:focus {
|
|
278
|
+
outline: none;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
svg {
|
|
282
|
+
text-rendering: optimizeLegibility;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
h1,
|
|
286
|
+
h2,
|
|
287
|
+
h3 {
|
|
288
|
+
margin: 0;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
* {
|
|
292
|
+
overflow: visible;
|
|
293
|
+
box-sizing: border-box;
|
|
294
|
+
text-align: left;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
button:not(:disabled),
|
|
298
|
+
[role="button"]:not(:disabled) {
|
|
299
|
+
cursor: pointer;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
strong {
|
|
303
|
+
font-family: var(--primaryBold);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.svg-icon {
|
|
307
|
+
width: 100%;
|
|
308
|
+
height: 100%;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
input:-webkit-autofill,
|
|
312
|
+
input:-webkit-autofill:hover,
|
|
313
|
+
input:-webkit-autofill:focus,
|
|
314
|
+
textarea:-webkit-autofill,
|
|
315
|
+
textarea:-webkit-autofill:hover,
|
|
316
|
+
textarea:-webkit-autofill:focus,
|
|
317
|
+
select:-webkit-autofill,
|
|
318
|
+
select:-webkit-autofill:hover,
|
|
319
|
+
select:-webkit-autofill:focus {
|
|
320
|
+
background-color: var(--white) !important;
|
|
321
|
+
-webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
|
|
322
|
+
color: #000 !important;
|
|
323
|
+
font-size: 14px !important;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
li::marker {
|
|
327
|
+
font-size: 15px;
|
|
328
|
+
margin-left: 10px;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.full-width {
|
|
332
|
+
width: 100%;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.h-safe-bottom-edge {
|
|
336
|
+
height: env(safe-area-inset-bottom);
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
::-ms-reveal {
|
|
340
|
+
display: none;
|
|
341
|
+
}
|
|
173
342
|
}
|
package/dist/command/command.js
CHANGED
|
@@ -122,7 +122,7 @@ var CommandInput = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
|
122
122
|
}),
|
|
123
123
|
/*#__PURE__*/ _jsx(CommandPrimitive.Input, _object_spread({
|
|
124
124
|
ref: ref,
|
|
125
|
-
className: cn('flex w-full rounded-md bg-transparent py-3 text-sm outline-
|
|
125
|
+
className: cn('flex w-full rounded-md bg-transparent py-3 text-sm outline-hidden placeholder:text-zinc-500 disabled:cursor-not-allowed disabled:opacity-50 dark:placeholder:text-zinc-400', className)
|
|
126
126
|
}, props))
|
|
127
127
|
]
|
|
128
128
|
});
|
|
@@ -171,7 +171,7 @@ var CommandItem = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
|
171
171
|
]);
|
|
172
172
|
return /*#__PURE__*/ _jsx(CommandPrimitive.Item, _object_spread({
|
|
173
173
|
ref: ref,
|
|
174
|
-
className: cn("relative flex cursor-default select-none items-center rounded-
|
|
174
|
+
className: cn("relative flex cursor-default select-none items-center rounded-xs px-2 py-1.5 text-sm outline-hidden data-[disabled=true]:pointer-events-none data-[selected='true']:bg-zinc-100 data-[selected=true]:text-zinc-900 data-[disabled=true]:opacity-50 dark:data-[selected='true']:bg-zinc-800 dark:data-[selected=true]:text-zinc-50", className)
|
|
175
175
|
}, props));
|
|
176
176
|
});
|
|
177
177
|
CommandItem.displayName = CommandPrimitive.Item.displayName;
|
|
@@ -10,7 +10,7 @@ export type DatePickerProps = {
|
|
|
10
10
|
placeholder?: string;
|
|
11
11
|
calendarType?: CalendarType;
|
|
12
12
|
isDisabled?: boolean;
|
|
13
|
-
error?: string;
|
|
13
|
+
error?: string | Error;
|
|
14
14
|
onError?: (type: 'start-gte-end') => void;
|
|
15
15
|
inputProps?: Omit<InputProps, 'htmlFor'>;
|
|
16
16
|
drawerTitle?: string;
|
|
@@ -45,7 +45,7 @@ export type DatePickerChildProps = {
|
|
|
45
45
|
handleSelect: (value: Value) => void;
|
|
46
46
|
handleCancel: () => void;
|
|
47
47
|
handleApply: () => void;
|
|
48
|
-
error?: string;
|
|
48
|
+
error?: string | Error;
|
|
49
49
|
};
|
|
50
50
|
declare const DatePicker: FC<DatePickerProps>;
|
|
51
51
|
export default DatePicker;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../src/datepicker/DatePicker.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,EAAY,MAAM,OAAO,CAAA;AACzC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAClD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,yCAAyC,CAAA;AAEpE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAKhD,MAAM,MAAM,eAAe,GAAG;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,IAAI,CAAA;IACd,OAAO,CAAC,EAAE,IAAI,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,YAAY,CAAA;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,KAAK,CAAC,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"DatePicker.d.ts","sourceRoot":"","sources":["../../src/datepicker/DatePicker.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,EAAY,MAAM,OAAO,CAAA;AACzC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAClD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,yCAAyC,CAAA;AAEpE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAKhD,MAAM,MAAM,eAAe,GAAG;IAC7B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,IAAI,CAAA;IACd,OAAO,CAAC,EAAE,IAAI,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,YAAY,CAAA;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,KAAK,CAAC,EAAE,MAAM,GAAG,KAAK,CAAA;IACtB,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,eAAe,KAAK,IAAI,CAAA;IACzC,UAAU,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC,CAAA;IACxC,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE;QACrB,eAAe,EAAE,IAAI,CAAA;QACrB,IAAI,EAAE,IAAI,CAAA;QACV,IAAI,EAAE,OAAO,GAAG,MAAM,GAAG,QAAQ,GAAG,SAAS,CAAA;KAC7C,KAAK,OAAO,CAAA;IACb,YAAY,CAAC,EAAE;QACd,KAAK,CAAC,EAAE,MAAM,CAAA;KACd,CAAA;IACD,WAAW,CAAC,EAAE;QACb,KAAK,CAAC,EAAE,MAAM,CAAA;KACd,CAAA;CACD,GAAG,CACD;IACA,OAAO,EAAE,IAAI,CAAA;IACb,KAAK,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC,CAAA;IACpB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,IAAI,CAAA;CACvC,GACD;IACA,OAAO,CAAC,EAAE,KAAK,CAAA;IACf,KAAK,CAAC,EAAE,IAAI,CAAA;IACZ,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,IAAI,KAAK,IAAI,CAAA;CAC/B,CACH,CAAA;AAED,MAAM,MAAM,oBAAoB,GAAG;IAClC,UAAU,EAAE,IAAI,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,SAAS,CAAA;IAC3C,aAAa,EAAE,CAAC,KAAK,EAAE,IAAI,GAAG,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,SAAS,KAAK,IAAI,CAAA;IAC/D,UAAU,EAAE,MAAM,CAAA;IAClB,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACtC,OAAO,EAAE,OAAO,CAAA;IAChB,UAAU,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;IACpC,YAAY,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAA;IACpC,YAAY,EAAE,MAAM,IAAI,CAAA;IACxB,WAAW,EAAE,MAAM,IAAI,CAAA;IACvB,KAAK,CAAC,EAAE,MAAM,GAAG,KAAK,CAAA;CACtB,CAAA;AAED,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CA4GnC,CAAA;AAED,eAAe,UAAU,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatePicker.js","sourceRoot":"","sources":["../../src/datepicker/DatePicker.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAA;;AAEZ,OAAO,EAAW,QAAQ,EAAE,MAAM,OAAO,CAAA;AAGzC,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA;AAEtD,OAAO,gBAAgB,MAAM,oBAAoB,CAAA;AACjD,OAAO,iBAAiB,MAAM,qBAAqB,CAAA;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"DatePicker.js","sourceRoot":"","sources":["../../src/datepicker/DatePicker.tsx"],"names":[],"mappings":"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"}
|
package/dist/drawer/index.js
CHANGED
|
@@ -116,7 +116,7 @@ var DrawerContent = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
|
116
116
|
/*#__PURE__*/ _jsx(DrawerOverlay, {}),
|
|
117
117
|
/*#__PURE__*/ _jsxs(DrawerPrimitive.Content, _object_spread_props(_object_spread({
|
|
118
118
|
ref: ref,
|
|
119
|
-
className: cn('fixed inset-x-0 bottom-0 z-50 mt-50 flex h-auto flex-col bg-white outline-
|
|
119
|
+
className: cn('fixed inset-x-0 bottom-0 z-50 mt-50 flex h-auto flex-col bg-white outline-hidden dark:border-zinc-800 dark:bg-zinc-950', hideGrabber ? 'rounded-none' : 'rounded-t-3xl', className)
|
|
120
120
|
}, props), {
|
|
121
121
|
children: [
|
|
122
122
|
!hideGrabber && /*#__PURE__*/ _jsx(Box, {
|
|
@@ -98,7 +98,7 @@ var DropdownMenuSubTrigger = /*#__PURE__*/ React.forwardRef(function(_param, ref
|
|
|
98
98
|
]);
|
|
99
99
|
return /*#__PURE__*/ _jsxs(DropdownMenuPrimitive.SubTrigger, _object_spread_props(_object_spread({
|
|
100
100
|
ref: ref,
|
|
101
|
-
className: cn('flex cursor-default select-none items-center rounded-
|
|
101
|
+
className: cn('flex cursor-default select-none items-center rounded-xs px-2 py-1.5 text-sm outline-hidden focus:bg-zinc-100 data-[state=open]:bg-zinc-100 dark:focus:bg-zinc-800 dark:data-[state=open]:bg-zinc-800', inset && 'pl-8', className)
|
|
102
102
|
}, props), {
|
|
103
103
|
children: [
|
|
104
104
|
children,
|
|
@@ -141,7 +141,7 @@ var DropdownMenuItem = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
|
141
141
|
]);
|
|
142
142
|
return /*#__PURE__*/ _jsx(DropdownMenuPrimitive.Item, _object_spread({
|
|
143
143
|
ref: ref,
|
|
144
|
-
className: cn('relative flex cursor-default select-none items-center w-full outline-
|
|
144
|
+
className: cn('relative flex cursor-default select-none items-center w-full outline-hidden transition-colors', selected ? 'bg-black text-white' : 'focus:bg-zinc-100 focus:text-zinc-900 dark:focus:bg-zinc-800 dark:focus:text-zinc-50', 'px-[18px] py-[13px] text-sm tracking-normal', inset && 'pl-8', className)
|
|
145
145
|
}, props));
|
|
146
146
|
});
|
|
147
147
|
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
|
|
@@ -153,7 +153,7 @@ var DropdownMenuCheckboxItem = /*#__PURE__*/ React.forwardRef(function(_param, r
|
|
|
153
153
|
]);
|
|
154
154
|
return /*#__PURE__*/ _jsxs(DropdownMenuPrimitive.CheckboxItem, _object_spread_props(_object_spread({
|
|
155
155
|
ref: ref,
|
|
156
|
-
className: cn('relative flex cursor-default select-none items-center rounded-
|
|
156
|
+
className: cn('relative flex cursor-default select-none items-center rounded-xs py-1.5 pl-8 pr-2 text-sm outline-hidden transition-colors focus:bg-zinc-100 focus:text-zinc-900 data-disabled:pointer-events-none data-disabled:opacity-50 dark:focus:bg-zinc-800 dark:focus:text-zinc-50', className),
|
|
157
157
|
checked: checked
|
|
158
158
|
}, props), {
|
|
159
159
|
children: [
|
|
@@ -177,7 +177,7 @@ var DropdownMenuRadioItem = /*#__PURE__*/ React.forwardRef(function(_param, ref)
|
|
|
177
177
|
]);
|
|
178
178
|
return /*#__PURE__*/ _jsxs(DropdownMenuPrimitive.RadioItem, _object_spread_props(_object_spread({
|
|
179
179
|
ref: ref,
|
|
180
|
-
className: cn('relative flex cursor-default select-none items-center rounded-
|
|
180
|
+
className: cn('relative flex cursor-default select-none items-center rounded-xs py-1.5 pl-8 pr-2 text-sm outline-hidden transition-colors focus:bg-zinc-100 focus:text-zinc-900 data-disabled:pointer-events-none data-disabled:opacity-50 dark:focus:bg-zinc-800 dark:focus:text-zinc-50', className)
|
|
181
181
|
}, props), {
|
|
182
182
|
children: [
|
|
183
183
|
/*#__PURE__*/ _jsx("span", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldWrapper.js","sourceRoot":"","sources":["../../src/field-wrapper/FieldWrapper.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,EAAE,EAAE,MAAM,UAAU,CAAA;AAiB7B,MAAM,YAAY,GAAG,KAAK,CAAC,UAAU,CACpC,CACC,EACC,QAAQ,EACR,OAAO,EACP,KAAK,EACL,UAAU,EACV,YAAY,EACZ,YAAY,EACZ,WAAW,EACX,WAAW,EACX,KAAK,EACL,SAAS,EACT,GAAG,KAAK,EACR,EACD,GAAG,EACF,EAAE;IACH,OAAO,CACN,eACC,GAAG,EAAE,GAAG,EACR,SAAS,EAAE,EAAE,CAAC,4BAA4B,EAAE,SAAS,CAAC,KAClD,KAAK,aAER,KAAK,IAAI,CACT,iBACC,OAAO,EAAE,OAAO,EAChB,SAAS,EAAC,mEAAmE,aAE5E,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,CAC5B,eAAM,SAAS,EAAC,yCAAyC,YACvD,KAAK,GACA,CACP,CAAC,CAAC,CAAC,CACH,KAAK,CACL,EACA,YAAY,IAAI,CAAC,CAAC,KAAK,IAAI,eAAM,SAAS,EAAC,aAAa,kBAAS,EACjE,YAAY,CAAC,CAAC,CAAC,CACf,OAAO,YAAY,KAAK,QAAQ,CAAC,CAAC,CAAC,CAClC,eAAM,SAAS,EAAC,sCAAsC,YACpD,YAAY,GACP,CACP,CAAC,CAAC,CAAC,CACH,eAAM,SAAS,EAAC,sCAAsC,2BAE/C,CACP,CACD,CAAC,CAAC,CAAC,IAAI,IACD,CACR,EACD,eAAK,SAAS,EAAC,yBAAyB,aACtC,WAAW,EACX,QAAQ,EACR,WAAW,IACP,EACL,CAAC,CAAC,KAAK,IAAI,
|
|
1
|
+
{"version":3,"file":"FieldWrapper.js","sourceRoot":"","sources":["../../src/field-wrapper/FieldWrapper.tsx"],"names":[],"mappings":";AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,EAAE,EAAE,MAAM,UAAU,CAAA;AAiB7B,MAAM,YAAY,GAAG,KAAK,CAAC,UAAU,CACpC,CACC,EACC,QAAQ,EACR,OAAO,EACP,KAAK,EACL,UAAU,EACV,YAAY,EACZ,YAAY,EACZ,WAAW,EACX,WAAW,EACX,KAAK,EACL,SAAS,EACT,GAAG,KAAK,EACR,EACD,GAAG,EACF,EAAE;IACH,OAAO,CACN,eACC,GAAG,EAAE,GAAG,EACR,SAAS,EAAE,EAAE,CAAC,4BAA4B,EAAE,SAAS,CAAC,KAClD,KAAK,aAER,KAAK,IAAI,CACT,iBACC,OAAO,EAAE,OAAO,EAChB,SAAS,EAAC,mEAAmE,aAE5E,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,CAC5B,eAAM,SAAS,EAAC,yCAAyC,YACvD,KAAK,GACA,CACP,CAAC,CAAC,CAAC,CACH,KAAK,CACL,EACA,YAAY,IAAI,CAAC,CAAC,KAAK,IAAI,eAAM,SAAS,EAAC,aAAa,kBAAS,EACjE,YAAY,CAAC,CAAC,CAAC,CACf,OAAO,YAAY,KAAK,QAAQ,CAAC,CAAC,CAAC,CAClC,eAAM,SAAS,EAAC,sCAAsC,YACpD,YAAY,GACP,CACP,CAAC,CAAC,CAAC,CACH,eAAM,SAAS,EAAC,sCAAsC,2BAE/C,CACP,CACD,CAAC,CAAC,CAAC,IAAI,IACD,CACR,EACD,eAAK,SAAS,EAAC,yBAAyB,aACtC,WAAW,EACX,QAAQ,EACR,WAAW,IACP,EACL,CAAC,CAAC,KAAK,IAAI,YAAG,SAAS,EAAC,kCAAkC,YAAE,KAAK,GAAK,EACtE,CAAC,CAAC,UAAU,IAAI,YAAG,SAAS,EAAC,sBAAsB,YAAE,UAAU,GAAK,IAChE,CACN,CAAA;AACF,CAAC,CACD,CAAA;AACD,YAAY,CAAC,WAAW,GAAG,cAAc,CAAA;AAEzC,eAAe,YAAY,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconCancel.d.ts","sourceRoot":"","sources":["../../src/icons/IconCancel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAA;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,QAAQ,CAAA;AAE7C,QAAA,MAAM,QAAQ;;;CAiBb,CAAA;AAED,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"IconCancel.d.ts","sourceRoot":"","sources":["../../src/icons/IconCancel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAA;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,QAAQ,CAAA;AAE7C,QAAA,MAAM,QAAQ;;;CAiBb,CAAA;AAED,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAIwB,CAAA;AAEvE,eAAe,UAAU,CAAA"}
|
package/dist/icons/IconCancel.js
CHANGED
|
@@ -53,28 +53,35 @@ function _object_without_properties_loose(source, excluded) {
|
|
|
53
53
|
}
|
|
54
54
|
return target;
|
|
55
55
|
}
|
|
56
|
-
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
|
|
56
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
57
57
|
import { Icon } from './Icon';
|
|
58
58
|
var variants = {
|
|
59
|
-
filled: /*#__PURE__*/
|
|
60
|
-
children:
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
59
|
+
filled: /*#__PURE__*/ _jsxs(_Fragment, {
|
|
60
|
+
children: [
|
|
61
|
+
/*#__PURE__*/ _jsx("path", {
|
|
62
|
+
d: "M16 4C9.3824 4 4 9.3824 4 16C4 22.6176 9.3824 28 16 28C22.6176 28 28 22.6176 28 16C28 9.3824 22.6176 4 16 4ZM21.216 19.7824L19.776 21.2224L16 17.44L12.2176 21.2224L10.7776 19.7824L14.56 16L10.7776 12.2176L12.2176 10.7776L16 14.56L19.7824 10.7776L21.2224 12.2176L17.44 16L21.216 19.7824Z",
|
|
63
|
+
fill: "currentColor"
|
|
64
|
+
}),
|
|
65
|
+
' '
|
|
66
|
+
]
|
|
64
67
|
}),
|
|
65
|
-
outline: /*#__PURE__*/
|
|
66
|
-
children:
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
68
|
+
outline: /*#__PURE__*/ _jsxs(_Fragment, {
|
|
69
|
+
children: [
|
|
70
|
+
/*#__PURE__*/ _jsx("path", {
|
|
71
|
+
d: "M16 4C9.3824 4 4 9.3824 4 16C4 22.6176 9.3824 28 16 28C22.6176 28 28 22.6176 28 16C28 9.3824 22.6176 4 16 4ZM16 6.0032C21.536 6.0032 25.9968 10.4704 25.9968 16C25.9968 21.5296 21.536 25.9968 16 25.9968C10.464 25.9968 6.0032 21.536 6.0032 16C6.0032 10.464 10.464 6.0032 16 6.0032ZM12.2176 10.784L10.7776 12.224L14.56 16.0064L10.7776 19.7888L12.2176 21.2288L16 17.4464L19.7824 21.2288L21.2224 19.7888L17.44 16L21.2224 12.2176L19.7824 10.7776L16 14.56L12.2176 10.784Z",
|
|
72
|
+
fill: "currentColor"
|
|
73
|
+
}),
|
|
74
|
+
' '
|
|
75
|
+
]
|
|
70
76
|
})
|
|
71
77
|
};
|
|
72
78
|
var IconCancel = function(_param) {
|
|
73
|
-
var _param_variant = _param.variant, variant = _param_variant === void 0 ? 'outline' : _param_variant, props = _object_without_properties(_param, [
|
|
79
|
+
var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 32 32' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'outline' : _param_variant, props = _object_without_properties(_param, [
|
|
80
|
+
"viewBox",
|
|
74
81
|
"variant"
|
|
75
82
|
]);
|
|
76
83
|
return /*#__PURE__*/ _jsx(Icon, _object_spread({
|
|
77
|
-
viewBox:
|
|
84
|
+
viewBox: viewBox,
|
|
78
85
|
element: variants[variant]
|
|
79
86
|
}, props));
|
|
80
87
|
};
|
|
@@ -78,7 +78,7 @@ var variants = {
|
|
|
78
78
|
mask: "url(#mask0_6490_9460)",
|
|
79
79
|
children: /*#__PURE__*/ _jsx("path", {
|
|
80
80
|
d: "M4.93333 14.6693L4 13.7359L8 9.73594L12 13.7359L11.0667 14.6693L8 11.6026L4.93333 14.6693ZM8 6.26927L4 2.26927L4.93333 1.33594L8 4.4026L11.0667 1.33594L12 2.26927L8 6.26927Z",
|
|
81
|
-
fill: "
|
|
81
|
+
fill: "#1C1B1F"
|
|
82
82
|
})
|
|
83
83
|
})
|
|
84
84
|
]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IconDot.js","sourceRoot":"","sources":["../../src/icons/IconDot.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,OAAO,EAAE,CACR,4BACC,iBAAQ,IAAI,EAAC,cAAc,EAAC,EAAE,EAAC,GAAG,EAAC,EAAE,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,GAAG,GAChD,CACH;IACD,QAAQ,EAAE,CACT,8BACC,eACC,CAAC,EAAC,
|
|
1
|
+
{"version":3,"file":"IconDot.js","sourceRoot":"","sources":["../../src/icons/IconDot.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,OAAO,EAAE,CACR,4BACC,iBAAQ,IAAI,EAAC,cAAc,EAAC,EAAE,EAAC,GAAG,EAAC,EAAE,EAAC,GAAG,EAAC,CAAC,EAAC,GAAG,GAAG,GAChD,CACH;IACD,QAAQ,EAAE,CACT,8BACC,eACC,CAAC,EAAC,yKAAyK,EAC3K,IAAI,EAAC,cAAc,GAClB,EACF,eACC,CAAC,EAAC,8GAA8G,EAChH,IAAI,EAAC,cAAc,GAClB,IACA,CACH;CACD,CAAA;AAED,MAAM,OAAO,GAAmC,CAAC,EAChD,OAAO,GAAG,WAAW,EACrB,OAAO,GAAG,SAAS,EACnB,GAAG,KAAK,EACR,EAAE,EAAE,CAAC,KAAC,IAAI,IAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,OAAO,CAAC,KAAM,KAAK,GAAI,CAAA;AAEvE,eAAe,OAAO,CAAA"}
|
|
@@ -158,7 +158,7 @@ var CommandInput = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
|
158
158
|
children: [
|
|
159
159
|
prefix,
|
|
160
160
|
/*#__PURE__*/ _jsx(CommandPrimitive.Input, _object_spread_props(_object_spread({
|
|
161
|
-
className: cn('border-none h-full px-3 outline-
|
|
161
|
+
className: cn('border-none h-full px-3 outline-hidden text-ellipsis placeholder:text-primary2 placeholder:tracking-normal w-full cursor-pointer disabled:cursor-not-allowed disabled:bg-primary1 disabled:text-primary3'),
|
|
162
162
|
disabled: props.disabled
|
|
163
163
|
}, props), {
|
|
164
164
|
onClick: function(e) {
|
|
@@ -236,7 +236,7 @@ var CommandItem = /*#__PURE__*/ React.forwardRef(function(_param, ref) {
|
|
|
236
236
|
]);
|
|
237
237
|
return /*#__PURE__*/ _jsx(CommandPrimitive.Item, _object_spread({
|
|
238
238
|
ref: ref,
|
|
239
|
-
className: cn('relative flex cursor-pointer select-none items-center rounded-
|
|
239
|
+
className: cn('relative flex cursor-pointer select-none items-center rounded-xs px-4 h-10 text-sm outline-hidden data-[disabled=true]:pointer-events-none data-[disabled=true]:bg-primary1 data-[disabled=true]:text-primary2 data-[selected=true]:bg-zinc-100 data-[selected=true]:text-zinc-900 dark:data-[selected=true]:bg-zinc-800 dark:data-[selected=true]:text-zinc-50', className)
|
|
240
240
|
}, props));
|
|
241
241
|
});
|
|
242
242
|
CommandItem.displayName = CommandPrimitive.Item.displayName;
|