@driveflux/beam 1.11.15 → 1.11.16
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.d.ts +1 -1
- package/dist/badge/Badge.js +1 -1
- package/dist/datepicker/calendar.css +145 -0
- package/dist/datepicker/root-calendar.css +155 -0
- package/dist/icons/IconCancel.d.ts.map +1 -1
- package/dist/icons/IconCancel.js +13 -20
- package/dist/icons/IconCollapseAll.d.ts +8 -0
- package/dist/icons/IconCollapseAll.d.ts.map +1 -0
- package/dist/icons/IconCollapseAll.js +97 -0
- package/dist/icons/IconCollapseAll.js.map +1 -0
- package/dist/icons/IconDot.js +3 -3
- package/dist/icons/IconDot.js.map +1 -1
- package/dist/icons/IconDownload.d.ts +8 -0
- package/dist/icons/IconDownload.d.ts.map +1 -0
- package/dist/icons/IconDownload.js +82 -0
- package/dist/icons/IconDownload.js.map +1 -0
- package/dist/icons/IconExpandAll.d.ts +8 -0
- package/dist/icons/IconExpandAll.d.ts.map +1 -0
- package/dist/icons/IconExpandAll.js +97 -0
- package/dist/icons/IconExpandAll.js.map +1 -0
- package/dist/icons/IconReport.d.ts +9 -0
- package/dist/icons/IconReport.d.ts.map +1 -0
- package/dist/icons/IconReport.js +92 -0
- package/dist/icons/IconReport.js.map +1 -0
- package/dist/root.css +24 -0
- package/dist/select/Select.js +1 -1
- package/dist/styles.css +5 -1
- package/package.json +1 -1
package/dist/badge/Badge.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type VariantProps } from 'class-variance-authority';
|
|
2
2
|
import type * as React from 'react';
|
|
3
3
|
declare const badgeVariants: (props?: ({
|
|
4
|
-
colorScheme?: "
|
|
4
|
+
colorScheme?: "success" | "accent" | "warning" | "info" | null | undefined;
|
|
5
5
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
6
6
|
export interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
7
7
|
}
|
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 h-5 px-2 py-2 font-
|
|
84
|
+
var badgeVariants = cva('inline-flex text-white w-max h-5 px-2 py-2 font-medium text-xs tracking-[0.5px] leading-[18px] uppercase bg-black', {
|
|
85
85
|
variants: {
|
|
86
86
|
colorScheme: {
|
|
87
87
|
success: 'bg-success4',
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
@import "./root-calendar.css";
|
|
2
|
+
|
|
3
|
+
.react-calendar {
|
|
4
|
+
font-family: "Gotham-Light", sans-serif;
|
|
5
|
+
color: var(--primary4);
|
|
6
|
+
text-transform: uppercase;
|
|
7
|
+
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
row-gap: 8px;
|
|
11
|
+
|
|
12
|
+
width: 100%;
|
|
13
|
+
|
|
14
|
+
border: none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* ======================= top navigation start ======================= */
|
|
18
|
+
.react-calendar__navigation {
|
|
19
|
+
margin-bottom: 16px;
|
|
20
|
+
padding-bottom: 16px;
|
|
21
|
+
border-bottom: 1px solid var(--primary1) !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.react-calendar__navigation button {
|
|
25
|
+
display: flex;
|
|
26
|
+
align-items: center;
|
|
27
|
+
justify-content: center;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.react-calendar__navigation button:enabled:hover {
|
|
31
|
+
background-color: var(--primary1);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.react-calendar__navigation button:disabled {
|
|
35
|
+
background-color: transparent;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.react-calendar__navigation button:disabled path {
|
|
39
|
+
fill: var(--primary2);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.react-calendar__navigation__label {
|
|
43
|
+
font-family: "Gotham", sans-serif;
|
|
44
|
+
font-size: 14px;
|
|
45
|
+
font-weight: 700;
|
|
46
|
+
letter-spacing: 0.5px;
|
|
47
|
+
text-transform: uppercase;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/* ======================= top navigation end ======================= */
|
|
51
|
+
|
|
52
|
+
/* ========================= calendar start ========================= */
|
|
53
|
+
.react-calendar__month-view__days,
|
|
54
|
+
.react-calendar__year-view__months,
|
|
55
|
+
.react-calendar__decade-view__years,
|
|
56
|
+
.react-calendar__century-view__decades {
|
|
57
|
+
border-top: 1px solid var(--primary1);
|
|
58
|
+
border-left: 1px solid var(--primary1);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.react-calendar__month-view__weekdays {
|
|
62
|
+
margin-bottom: 4px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.react-calendar__month-view__weekdays__weekday {
|
|
66
|
+
display: flex;
|
|
67
|
+
justify-content: center;
|
|
68
|
+
font-weight: 700;
|
|
69
|
+
font-family: "Gotham", sans-serif;
|
|
70
|
+
color: var(--primary3);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.react-calendar__month-view__weekdays__weekday abbr {
|
|
74
|
+
text-decoration: none;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.react-calendar__tile {
|
|
78
|
+
letter-spacing: 1px;
|
|
79
|
+
font-size: 12px;
|
|
80
|
+
text-transform: uppercase;
|
|
81
|
+
border-right: 1px solid var(--primary1) !important;
|
|
82
|
+
border-bottom: 1px solid var(--primary1) !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.react-calendar__tile:enabled:hover {
|
|
86
|
+
background: var(--primary1);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* today's date - default state */
|
|
90
|
+
.react-calendar__tile--now {
|
|
91
|
+
background: transparent;
|
|
92
|
+
color: var(--primary4);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* today's date - hover */
|
|
96
|
+
.react-calendar__tile--now:enabled:hover,
|
|
97
|
+
.react-calendar__tile--now:enabled:focus {
|
|
98
|
+
background: var(--primary1);
|
|
99
|
+
color: var(--primary4);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.react-calendar__month-view__days__day--neighboringMonth {
|
|
103
|
+
color: var(--primary2);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/* weekends */
|
|
107
|
+
.react-calendar__month-view__days__day--weekend {
|
|
108
|
+
color: var(--accent);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/* range tiles before selected */
|
|
112
|
+
.react-calendar--selectRange .react-calendar__tile--hover {
|
|
113
|
+
background-color: var(--primary2);
|
|
114
|
+
color: var(--primary4);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* range tiles after selected */
|
|
118
|
+
.react-calendar__tile--active,
|
|
119
|
+
.react-calendar__tile--active:enabled:focus,
|
|
120
|
+
.react-calendar__tile--active:enabled:hover {
|
|
121
|
+
background: var(--primary1);
|
|
122
|
+
color: black;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/** applicable to single date or range **/
|
|
126
|
+
/* first and last range tiles selected */
|
|
127
|
+
.react-calendar__tile--rangeStart,
|
|
128
|
+
.react-calendar__tile--rangeStart:enabled:focus,
|
|
129
|
+
.react-calendar__tile--rangeStart:enabled:hover,
|
|
130
|
+
.react-calendar__tile--rangeEnd,
|
|
131
|
+
.react-calendar__tile--rangeEnd:enabled:focus,
|
|
132
|
+
.react-calendar__tile--rangeEnd:enabled:hover {
|
|
133
|
+
background: var(--primary4);
|
|
134
|
+
color: white;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/* month and year tiles where active */
|
|
138
|
+
.react-calendar__tile--hasActive,
|
|
139
|
+
.react-calendar__tile--hasActive:enabled:focus,
|
|
140
|
+
.react-calendar__tile--hasActive:enabled:hover {
|
|
141
|
+
background: var(--primary4);
|
|
142
|
+
color: white;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/* ========================= calendar end ========================= */
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
.react-calendar {
|
|
2
|
+
width: 350px;
|
|
3
|
+
max-width: 100%;
|
|
4
|
+
background: white;
|
|
5
|
+
border: 1px solid #a0a096;
|
|
6
|
+
font-family: 'Arial', 'Helvetica', sans-serif;
|
|
7
|
+
line-height: 1.125em;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.react-calendar--doubleView {
|
|
11
|
+
width: 700px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.react-calendar--doubleView .react-calendar__viewContainer {
|
|
15
|
+
display: flex;
|
|
16
|
+
margin: -0.5em;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.react-calendar--doubleView .react-calendar__viewContainer > * {
|
|
20
|
+
width: 50%;
|
|
21
|
+
margin: 0.5em;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.react-calendar,
|
|
25
|
+
.react-calendar *,
|
|
26
|
+
.react-calendar *:before,
|
|
27
|
+
.react-calendar *:after {
|
|
28
|
+
-moz-box-sizing: border-box;
|
|
29
|
+
-webkit-box-sizing: border-box;
|
|
30
|
+
box-sizing: border-box;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.react-calendar button {
|
|
34
|
+
margin: 0;
|
|
35
|
+
border: 0;
|
|
36
|
+
outline: none;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.react-calendar button:enabled:hover {
|
|
40
|
+
cursor: pointer;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.react-calendar__navigation {
|
|
44
|
+
display: flex;
|
|
45
|
+
height: 44px;
|
|
46
|
+
margin-bottom: 1em;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.react-calendar__navigation button {
|
|
50
|
+
min-width: 44px;
|
|
51
|
+
background: none;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.react-calendar__navigation button:disabled {
|
|
55
|
+
background-color: #f0f0f0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.react-calendar__navigation button:enabled:hover,
|
|
59
|
+
.react-calendar__navigation button:enabled:focus {
|
|
60
|
+
background-color: #e6e6e6;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.react-calendar__month-view__weekdays {
|
|
64
|
+
text-align: center;
|
|
65
|
+
text-transform: uppercase;
|
|
66
|
+
font: inherit;
|
|
67
|
+
font-size: 0.75em;
|
|
68
|
+
font-weight: bold;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.react-calendar__month-view__weekdays__weekday {
|
|
72
|
+
padding: 0.5em;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.react-calendar__month-view__weekNumbers .react-calendar__tile {
|
|
76
|
+
display: flex;
|
|
77
|
+
align-items: center;
|
|
78
|
+
justify-content: center;
|
|
79
|
+
font: inherit;
|
|
80
|
+
font-size: 0.75em;
|
|
81
|
+
font-weight: bold;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.react-calendar__month-view__days__day--weekend {
|
|
85
|
+
color: #d10000;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.react-calendar__month-view__days__day--neighboringMonth,
|
|
89
|
+
.react-calendar__decade-view__years__year--neighboringDecade,
|
|
90
|
+
.react-calendar__century-view__decades__decade--neighboringCentury {
|
|
91
|
+
color: #757575;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.react-calendar__year-view .react-calendar__tile,
|
|
95
|
+
.react-calendar__decade-view .react-calendar__tile,
|
|
96
|
+
.react-calendar__century-view .react-calendar__tile {
|
|
97
|
+
padding: 2em 0.5em;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.react-calendar__tile {
|
|
101
|
+
max-width: 100%;
|
|
102
|
+
padding: 10px 6.6667px;
|
|
103
|
+
background: none;
|
|
104
|
+
text-align: center;
|
|
105
|
+
font: inherit;
|
|
106
|
+
font-size: 0.833em;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.react-calendar__tile:disabled {
|
|
110
|
+
background-color: #f0f0f0;
|
|
111
|
+
color: #ababab;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.react-calendar__month-view__days__day--neighboringMonth:disabled,
|
|
115
|
+
.react-calendar__decade-view__years__year--neighboringDecade:disabled,
|
|
116
|
+
.react-calendar__century-view__decades__decade--neighboringCentury:disabled {
|
|
117
|
+
color: #cdcdcd;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.react-calendar__tile:enabled:hover,
|
|
121
|
+
.react-calendar__tile:enabled:focus {
|
|
122
|
+
background-color: #e6e6e6;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.react-calendar__tile--now {
|
|
126
|
+
background: #ffff76;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.react-calendar__tile--now:enabled:hover,
|
|
130
|
+
.react-calendar__tile--now:enabled:focus {
|
|
131
|
+
background: #ffffa9;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.react-calendar__tile--hasActive {
|
|
135
|
+
background: #76baff;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.react-calendar__tile--hasActive:enabled:hover,
|
|
139
|
+
.react-calendar__tile--hasActive:enabled:focus {
|
|
140
|
+
background: #a9d4ff;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.react-calendar__tile--active {
|
|
144
|
+
background: #006edc;
|
|
145
|
+
color: white;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.react-calendar__tile--active:enabled:hover,
|
|
149
|
+
.react-calendar__tile--active:enabled:focus {
|
|
150
|
+
background: #1087ff;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.react-calendar--selectRange .react-calendar__tile--hover {
|
|
154
|
+
background-color: #e6e6e6;
|
|
155
|
+
}
|
|
@@ -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,CAS9C,CAAA;AAED,eAAe,UAAU,CAAA"}
|
package/dist/icons/IconCancel.js
CHANGED
|
@@ -53,35 +53,28 @@ function _object_without_properties_loose(source, excluded) {
|
|
|
53
53
|
}
|
|
54
54
|
return target;
|
|
55
55
|
}
|
|
56
|
-
import { jsx as _jsx,
|
|
56
|
+
import { jsx as _jsx, 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
|
-
|
|
64
|
-
}),
|
|
65
|
-
' '
|
|
66
|
-
]
|
|
59
|
+
filled: /*#__PURE__*/ _jsx(_Fragment, {
|
|
60
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
61
|
+
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",
|
|
62
|
+
fill: "currentColor"
|
|
63
|
+
})
|
|
67
64
|
}),
|
|
68
|
-
outline: /*#__PURE__*/
|
|
69
|
-
children:
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
}),
|
|
74
|
-
' '
|
|
75
|
-
]
|
|
65
|
+
outline: /*#__PURE__*/ _jsx(_Fragment, {
|
|
66
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
67
|
+
d: "M9 0.667969C4.0368 0.667969 0 4.70477 0 9.66797C0 14.6312 4.0368 18.668 9 18.668C13.9632 18.668 18 14.6312 18 9.66797C18 4.70477 13.9632 0.667969 9 0.667969ZM9 2.17037C13.152 2.17037 16.4976 5.52077 16.4976 9.66797C16.4976 13.8152 13.152 17.1656 9 17.1656C4.848 17.1656 1.5024 13.82 1.5024 9.66797C1.5024 5.51597 4.848 2.17037 9 2.17037ZM6.1632 5.75597L5.0832 6.83597L7.92 9.67277L5.0832 12.5096L6.1632 13.5896L9 10.7528L11.8368 13.5896L12.9168 12.5096L10.08 9.66797L12.9168 6.83117L11.8368 5.75117L9 8.58797L6.1632 5.75597Z",
|
|
68
|
+
fill: "currentColor"
|
|
69
|
+
})
|
|
76
70
|
})
|
|
77
71
|
};
|
|
78
72
|
var IconCancel = function(_param) {
|
|
79
|
-
var
|
|
80
|
-
"viewBox",
|
|
73
|
+
var _param_variant = _param.variant, variant = _param_variant === void 0 ? 'outline' : _param_variant, props = _object_without_properties(_param, [
|
|
81
74
|
"variant"
|
|
82
75
|
]);
|
|
83
76
|
return /*#__PURE__*/ _jsx(Icon, _object_spread({
|
|
84
|
-
viewBox:
|
|
77
|
+
viewBox: variant === 'filled' ? '0 0 32 32' : '0 0 18 19',
|
|
85
78
|
element: variants[variant]
|
|
86
79
|
}, props));
|
|
87
80
|
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FC } from 'react';
|
|
2
|
+
import { type IconProps } from './Icon';
|
|
3
|
+
declare const variants: {
|
|
4
|
+
default: import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
};
|
|
6
|
+
declare const IconCollapseAll: FC<IconProps<typeof variants>>;
|
|
7
|
+
export default IconCollapseAll;
|
|
8
|
+
//# sourceMappingURL=IconCollapseAll.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconCollapseAll.d.ts","sourceRoot":"","sources":["../../src/icons/IconCollapseAll.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;;CAsBb,CAAA;AAED,QAAA,MAAM,eAAe,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAImB,CAAA;AAEvE,eAAe,eAAe,CAAA"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
function _define_property(obj, key, value) {
|
|
2
|
+
if (key in obj) {
|
|
3
|
+
Object.defineProperty(obj, key, {
|
|
4
|
+
value: value,
|
|
5
|
+
enumerable: true,
|
|
6
|
+
configurable: true,
|
|
7
|
+
writable: true
|
|
8
|
+
});
|
|
9
|
+
} else {
|
|
10
|
+
obj[key] = value;
|
|
11
|
+
}
|
|
12
|
+
return obj;
|
|
13
|
+
}
|
|
14
|
+
function _object_spread(target) {
|
|
15
|
+
for(var i = 1; i < arguments.length; i++){
|
|
16
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
17
|
+
var ownKeys = Object.keys(source);
|
|
18
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
19
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
20
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
ownKeys.forEach(function(key) {
|
|
24
|
+
_define_property(target, key, source[key]);
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
return target;
|
|
28
|
+
}
|
|
29
|
+
function _object_without_properties(source, excluded) {
|
|
30
|
+
if (source == null) return {};
|
|
31
|
+
var target = _object_without_properties_loose(source, excluded);
|
|
32
|
+
var key, i;
|
|
33
|
+
if (Object.getOwnPropertySymbols) {
|
|
34
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
35
|
+
for(i = 0; i < sourceSymbolKeys.length; i++){
|
|
36
|
+
key = sourceSymbolKeys[i];
|
|
37
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
38
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
39
|
+
target[key] = source[key];
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
function _object_without_properties_loose(source, excluded) {
|
|
45
|
+
if (source == null) return {};
|
|
46
|
+
var target = {};
|
|
47
|
+
var sourceKeys = Object.keys(source);
|
|
48
|
+
var key, i;
|
|
49
|
+
for(i = 0; i < sourceKeys.length; i++){
|
|
50
|
+
key = sourceKeys[i];
|
|
51
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
52
|
+
target[key] = source[key];
|
|
53
|
+
}
|
|
54
|
+
return target;
|
|
55
|
+
}
|
|
56
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
57
|
+
import { Icon } from './Icon';
|
|
58
|
+
var variants = {
|
|
59
|
+
default: /*#__PURE__*/ _jsxs(_Fragment, {
|
|
60
|
+
children: [
|
|
61
|
+
/*#__PURE__*/ _jsx("mask", {
|
|
62
|
+
id: "mask0_6490_9460",
|
|
63
|
+
style: {
|
|
64
|
+
maskType: 'alpha'
|
|
65
|
+
},
|
|
66
|
+
maskUnits: "userSpaceOnUse",
|
|
67
|
+
x: "0",
|
|
68
|
+
y: "0",
|
|
69
|
+
width: "16",
|
|
70
|
+
height: "16",
|
|
71
|
+
children: /*#__PURE__*/ _jsx("rect", {
|
|
72
|
+
width: "16",
|
|
73
|
+
height: "16",
|
|
74
|
+
fill: "currentColor"
|
|
75
|
+
})
|
|
76
|
+
}),
|
|
77
|
+
/*#__PURE__*/ _jsx("g", {
|
|
78
|
+
mask: "url(#mask0_6490_9460)",
|
|
79
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
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: "currentColor"
|
|
82
|
+
})
|
|
83
|
+
})
|
|
84
|
+
]
|
|
85
|
+
})
|
|
86
|
+
};
|
|
87
|
+
var IconCollapseAll = function(_param) {
|
|
88
|
+
var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 16 16' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'default' : _param_variant, props = _object_without_properties(_param, [
|
|
89
|
+
"viewBox",
|
|
90
|
+
"variant"
|
|
91
|
+
]);
|
|
92
|
+
return /*#__PURE__*/ _jsx(Icon, _object_spread({
|
|
93
|
+
viewBox: viewBox,
|
|
94
|
+
element: variants[variant]
|
|
95
|
+
}, props));
|
|
96
|
+
};
|
|
97
|
+
export default IconCollapseAll;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconCollapseAll.js","sourceRoot":"","sources":["../../src/icons/IconCollapseAll.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,OAAO,EAAE,CACR,8BACC,eACC,EAAE,EAAC,iBAAiB,EACpB,KAAK,EAAE,EAAE,QAAQ,EAAE,OAAO,EAAE,EAC5B,SAAS,EAAC,gBAAgB,EAC1B,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,YAEX,eAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAC,cAAc,GAAG,GAC7C,EACP,YAAG,IAAI,EAAC,uBAAuB,YAC9B,eACC,CAAC,EAAC,+KAA+K,EACjL,IAAI,EAAC,cAAc,GAClB,GACC,IACF,CACH;CACD,CAAA;AAED,MAAM,eAAe,GAAmC,CAAC,EACxD,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,eAAe,CAAA"}
|
package/dist/icons/IconDot.js
CHANGED
|
@@ -67,18 +67,18 @@ var variants = {
|
|
|
67
67
|
bordered: /*#__PURE__*/ _jsxs(_Fragment, {
|
|
68
68
|
children: [
|
|
69
69
|
/*#__PURE__*/ _jsx("path", {
|
|
70
|
-
d: "
|
|
70
|
+
d: "M8 2C4.7 2 2 4.7 2 8C2 11.3 4.7 14 8 14C11.3 14 14 11.3 14 8C14 4.7 11.3 2 8 2ZM8 13C5.225 13 3 10.775 3 8C3 5.225 5.225 3 8 3C10.775 3 13 5.225 13 8C13 10.775 10.775 13 8 13Z",
|
|
71
71
|
fill: "currentColor"
|
|
72
72
|
}),
|
|
73
73
|
/*#__PURE__*/ _jsx("path", {
|
|
74
|
-
d: "
|
|
74
|
+
d: "M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12Z",
|
|
75
75
|
fill: "currentColor"
|
|
76
76
|
})
|
|
77
77
|
]
|
|
78
78
|
})
|
|
79
79
|
};
|
|
80
80
|
var IconDot = function(_param) {
|
|
81
|
-
var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0
|
|
81
|
+
var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 16 16' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'default' : _param_variant, props = _object_without_properties(_param, [
|
|
82
82
|
"viewBox",
|
|
83
83
|
"variant"
|
|
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,iLAAiL,EACnL,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"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FC } from 'react';
|
|
2
|
+
import { type IconProps } from './Icon';
|
|
3
|
+
declare const variants: {
|
|
4
|
+
default: import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
};
|
|
6
|
+
declare const IconDownload: FC<IconProps<typeof variants>>;
|
|
7
|
+
export default IconDownload;
|
|
8
|
+
//# sourceMappingURL=IconDownload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconDownload.d.ts","sourceRoot":"","sources":["../../src/icons/IconDownload.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;;CAUb,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAIsB,CAAA;AAEvE,eAAe,YAAY,CAAA"}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
function _define_property(obj, key, value) {
|
|
2
|
+
if (key in obj) {
|
|
3
|
+
Object.defineProperty(obj, key, {
|
|
4
|
+
value: value,
|
|
5
|
+
enumerable: true,
|
|
6
|
+
configurable: true,
|
|
7
|
+
writable: true
|
|
8
|
+
});
|
|
9
|
+
} else {
|
|
10
|
+
obj[key] = value;
|
|
11
|
+
}
|
|
12
|
+
return obj;
|
|
13
|
+
}
|
|
14
|
+
function _object_spread(target) {
|
|
15
|
+
for(var i = 1; i < arguments.length; i++){
|
|
16
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
17
|
+
var ownKeys = Object.keys(source);
|
|
18
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
19
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
20
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
ownKeys.forEach(function(key) {
|
|
24
|
+
_define_property(target, key, source[key]);
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
return target;
|
|
28
|
+
}
|
|
29
|
+
function _object_without_properties(source, excluded) {
|
|
30
|
+
if (source == null) return {};
|
|
31
|
+
var target = _object_without_properties_loose(source, excluded);
|
|
32
|
+
var key, i;
|
|
33
|
+
if (Object.getOwnPropertySymbols) {
|
|
34
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
35
|
+
for(i = 0; i < sourceSymbolKeys.length; i++){
|
|
36
|
+
key = sourceSymbolKeys[i];
|
|
37
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
38
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
39
|
+
target[key] = source[key];
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
function _object_without_properties_loose(source, excluded) {
|
|
45
|
+
if (source == null) return {};
|
|
46
|
+
var target = {};
|
|
47
|
+
var sourceKeys = Object.keys(source);
|
|
48
|
+
var key, i;
|
|
49
|
+
for(i = 0; i < sourceKeys.length; i++){
|
|
50
|
+
key = sourceKeys[i];
|
|
51
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
52
|
+
target[key] = source[key];
|
|
53
|
+
}
|
|
54
|
+
return target;
|
|
55
|
+
}
|
|
56
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
57
|
+
import { Icon } from './Icon';
|
|
58
|
+
var variants = {
|
|
59
|
+
default: /*#__PURE__*/ _jsxs(_Fragment, {
|
|
60
|
+
children: [
|
|
61
|
+
/*#__PURE__*/ _jsx("path", {
|
|
62
|
+
d: "M11.8484 9.26797L7.99844 13.168L4.14844 9.26797L4.84844 8.56797L7.49844 11.218V2.66797H8.49844V11.218L11.1484 8.56797L11.8484 9.26797Z",
|
|
63
|
+
fill: "currentColor"
|
|
64
|
+
}),
|
|
65
|
+
/*#__PURE__*/ _jsx("path", {
|
|
66
|
+
d: "M12.5 13.668H3.5V14.668H12.5V13.668Z",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
})
|
|
69
|
+
]
|
|
70
|
+
})
|
|
71
|
+
};
|
|
72
|
+
var IconDownload = function(_param) {
|
|
73
|
+
var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 16 16' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'default' : _param_variant, props = _object_without_properties(_param, [
|
|
74
|
+
"viewBox",
|
|
75
|
+
"variant"
|
|
76
|
+
]);
|
|
77
|
+
return /*#__PURE__*/ _jsx(Icon, _object_spread({
|
|
78
|
+
viewBox: viewBox,
|
|
79
|
+
element: variants[variant]
|
|
80
|
+
}, props));
|
|
81
|
+
};
|
|
82
|
+
export default IconDownload;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconDownload.js","sourceRoot":"","sources":["../../src/icons/IconDownload.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,OAAO,EAAE,CACR,8BACC,eACC,CAAC,EAAC,wIAAwI,EAC1I,IAAI,EAAC,cAAc,GAClB,EACF,eAAM,CAAC,EAAC,sCAAsC,EAAC,IAAI,EAAC,cAAc,GAAG,IACnE,CACH;CACD,CAAA;AAED,MAAM,YAAY,GAAmC,CAAC,EACrD,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,YAAY,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { FC } from 'react';
|
|
2
|
+
import { type IconProps } from './Icon';
|
|
3
|
+
declare const variants: {
|
|
4
|
+
default: import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
};
|
|
6
|
+
declare const IconExpandAll: FC<IconProps<typeof variants>>;
|
|
7
|
+
export default IconExpandAll;
|
|
8
|
+
//# sourceMappingURL=IconExpandAll.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconExpandAll.d.ts","sourceRoot":"","sources":["../../src/icons/IconExpandAll.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;;CAsBb,CAAA;AAED,QAAA,MAAM,aAAa,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAIqB,CAAA;AAEvE,eAAe,aAAa,CAAA"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
function _define_property(obj, key, value) {
|
|
2
|
+
if (key in obj) {
|
|
3
|
+
Object.defineProperty(obj, key, {
|
|
4
|
+
value: value,
|
|
5
|
+
enumerable: true,
|
|
6
|
+
configurable: true,
|
|
7
|
+
writable: true
|
|
8
|
+
});
|
|
9
|
+
} else {
|
|
10
|
+
obj[key] = value;
|
|
11
|
+
}
|
|
12
|
+
return obj;
|
|
13
|
+
}
|
|
14
|
+
function _object_spread(target) {
|
|
15
|
+
for(var i = 1; i < arguments.length; i++){
|
|
16
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
17
|
+
var ownKeys = Object.keys(source);
|
|
18
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
19
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
20
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
ownKeys.forEach(function(key) {
|
|
24
|
+
_define_property(target, key, source[key]);
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
return target;
|
|
28
|
+
}
|
|
29
|
+
function _object_without_properties(source, excluded) {
|
|
30
|
+
if (source == null) return {};
|
|
31
|
+
var target = _object_without_properties_loose(source, excluded);
|
|
32
|
+
var key, i;
|
|
33
|
+
if (Object.getOwnPropertySymbols) {
|
|
34
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
35
|
+
for(i = 0; i < sourceSymbolKeys.length; i++){
|
|
36
|
+
key = sourceSymbolKeys[i];
|
|
37
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
38
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
39
|
+
target[key] = source[key];
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
function _object_without_properties_loose(source, excluded) {
|
|
45
|
+
if (source == null) return {};
|
|
46
|
+
var target = {};
|
|
47
|
+
var sourceKeys = Object.keys(source);
|
|
48
|
+
var key, i;
|
|
49
|
+
for(i = 0; i < sourceKeys.length; i++){
|
|
50
|
+
key = sourceKeys[i];
|
|
51
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
52
|
+
target[key] = source[key];
|
|
53
|
+
}
|
|
54
|
+
return target;
|
|
55
|
+
}
|
|
56
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
57
|
+
import { Icon } from './Icon';
|
|
58
|
+
var variants = {
|
|
59
|
+
default: /*#__PURE__*/ _jsxs(_Fragment, {
|
|
60
|
+
children: [
|
|
61
|
+
/*#__PURE__*/ _jsx("mask", {
|
|
62
|
+
id: "mask0_6490_6481",
|
|
63
|
+
style: {
|
|
64
|
+
maskType: 'alpha'
|
|
65
|
+
},
|
|
66
|
+
maskUnits: "userSpaceOnUse",
|
|
67
|
+
x: "0",
|
|
68
|
+
y: "0",
|
|
69
|
+
width: "16",
|
|
70
|
+
height: "16",
|
|
71
|
+
children: /*#__PURE__*/ _jsx("rect", {
|
|
72
|
+
width: "16",
|
|
73
|
+
height: "16",
|
|
74
|
+
fill: "currentColor"
|
|
75
|
+
})
|
|
76
|
+
}),
|
|
77
|
+
/*#__PURE__*/ _jsx("g", {
|
|
78
|
+
mask: "url(#mask0_6490_6481)",
|
|
79
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
80
|
+
d: "M8 14.6693L4 10.6693L4.95 9.71927L8 12.7693L11.05 9.71927L12 10.6693L8 14.6693ZM4.96667 6.26927L4 5.33594L8 1.33594L12 5.33594L11.0333 6.26927L8 3.23594L4.96667 6.26927Z",
|
|
81
|
+
fill: "currentColor"
|
|
82
|
+
})
|
|
83
|
+
})
|
|
84
|
+
]
|
|
85
|
+
})
|
|
86
|
+
};
|
|
87
|
+
var IconExpandAll = function(_param) {
|
|
88
|
+
var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 16 16' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'default' : _param_variant, props = _object_without_properties(_param, [
|
|
89
|
+
"viewBox",
|
|
90
|
+
"variant"
|
|
91
|
+
]);
|
|
92
|
+
return /*#__PURE__*/ _jsx(Icon, _object_spread({
|
|
93
|
+
viewBox: viewBox,
|
|
94
|
+
element: variants[variant]
|
|
95
|
+
}, props));
|
|
96
|
+
};
|
|
97
|
+
export default IconExpandAll;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconExpandAll.js","sourceRoot":"","sources":["../../src/icons/IconExpandAll.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,OAAO,EAAE,CACR,8BACC,eACC,EAAE,EAAC,iBAAiB,EACpB,KAAK,EAAE,EAAE,QAAQ,EAAE,OAAO,EAAE,EAC5B,SAAS,EAAC,gBAAgB,EAC1B,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,YAEX,eAAM,KAAK,EAAC,IAAI,EAAC,MAAM,EAAC,IAAI,EAAC,IAAI,EAAC,cAAc,GAAG,GAC7C,EACP,YAAG,IAAI,EAAC,uBAAuB,YAC9B,eACC,CAAC,EAAC,2KAA2K,EAC7K,IAAI,EAAC,cAAc,GAClB,GACC,IACF,CACH;CACD,CAAA;AAED,MAAM,aAAa,GAAmC,CAAC,EACtD,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,aAAa,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { FC } from 'react';
|
|
2
|
+
import { type IconProps } from './Icon';
|
|
3
|
+
declare const variants: {
|
|
4
|
+
filled: import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
outline: import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
};
|
|
7
|
+
declare const IconReport: FC<IconProps<typeof variants>>;
|
|
8
|
+
export default IconReport;
|
|
9
|
+
//# sourceMappingURL=IconReport.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconReport.d.ts","sourceRoot":"","sources":["../../src/icons/IconReport.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;;;CAwBb,CAAA;AACD,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,SAAS,CAAC,OAAO,QAAQ,CAAC,CAIwB,CAAA;AAEvE,eAAe,UAAU,CAAA"}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
function _define_property(obj, key, value) {
|
|
2
|
+
if (key in obj) {
|
|
3
|
+
Object.defineProperty(obj, key, {
|
|
4
|
+
value: value,
|
|
5
|
+
enumerable: true,
|
|
6
|
+
configurable: true,
|
|
7
|
+
writable: true
|
|
8
|
+
});
|
|
9
|
+
} else {
|
|
10
|
+
obj[key] = value;
|
|
11
|
+
}
|
|
12
|
+
return obj;
|
|
13
|
+
}
|
|
14
|
+
function _object_spread(target) {
|
|
15
|
+
for(var i = 1; i < arguments.length; i++){
|
|
16
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
17
|
+
var ownKeys = Object.keys(source);
|
|
18
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
19
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
20
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
ownKeys.forEach(function(key) {
|
|
24
|
+
_define_property(target, key, source[key]);
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
return target;
|
|
28
|
+
}
|
|
29
|
+
function _object_without_properties(source, excluded) {
|
|
30
|
+
if (source == null) return {};
|
|
31
|
+
var target = _object_without_properties_loose(source, excluded);
|
|
32
|
+
var key, i;
|
|
33
|
+
if (Object.getOwnPropertySymbols) {
|
|
34
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
35
|
+
for(i = 0; i < sourceSymbolKeys.length; i++){
|
|
36
|
+
key = sourceSymbolKeys[i];
|
|
37
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
38
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
39
|
+
target[key] = source[key];
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
function _object_without_properties_loose(source, excluded) {
|
|
45
|
+
if (source == null) return {};
|
|
46
|
+
var target = {};
|
|
47
|
+
var sourceKeys = Object.keys(source);
|
|
48
|
+
var key, i;
|
|
49
|
+
for(i = 0; i < sourceKeys.length; i++){
|
|
50
|
+
key = sourceKeys[i];
|
|
51
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
52
|
+
target[key] = source[key];
|
|
53
|
+
}
|
|
54
|
+
return target;
|
|
55
|
+
}
|
|
56
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
57
|
+
import { Icon } from './Icon';
|
|
58
|
+
var variants = {
|
|
59
|
+
filled: /*#__PURE__*/ _jsx(_Fragment, {
|
|
60
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
61
|
+
d: "M14.1 3.75C13.8 2.85 12.975 2.25 12 2.25C11.025 2.25 10.2 2.85 9.9 3.75H4.5V21H19.5V3.75H14.1ZM15.975 15.525L15 14.55L12 17.475L9.75 15.225L8.025 16.95L6.975 15.9L9.825 13.05L12.075 15.3L15 12.375L17.025 14.4L15.975 15.525ZM16.5 9.75V11.25H7.5V9.75H16.5ZM9 5.25H11.25V4.425C11.25 4.05 11.55 3.75 12 3.75C12.375 3.75 12.675 4.05 12.675 4.35V5.25H15V6.75H9V5.25Z",
|
|
62
|
+
fill: "currentColor"
|
|
63
|
+
})
|
|
64
|
+
}),
|
|
65
|
+
outline: /*#__PURE__*/ _jsxs(_Fragment, {
|
|
66
|
+
children: [
|
|
67
|
+
/*#__PURE__*/ _jsx("path", {
|
|
68
|
+
d: "M14.1 3.75C13.8 2.85 12.975 2.25 12 2.25C11.025 2.25 10.2 2.85 9.9 3.75H4.5V21H19.5V3.75H14.1ZM9 5.25H11.25V4.425C11.25 4.05 11.55 3.75 12 3.75C12.375 3.75 12.675 4.05 12.675 4.35V5.25H15V6.75H9V5.25ZM18 19.5H6V5.25H7.5V8.25H16.5V5.25H18V19.5Z",
|
|
69
|
+
fill: "currentColor"
|
|
70
|
+
}),
|
|
71
|
+
/*#__PURE__*/ _jsx("path", {
|
|
72
|
+
d: "M16.5 9.75H7.5V11.25H16.5V9.75Z",
|
|
73
|
+
fill: "currentColor"
|
|
74
|
+
}),
|
|
75
|
+
/*#__PURE__*/ _jsx("path", {
|
|
76
|
+
d: "M12 17.4751L9.82504 15.3001L8.02504 17.0251L6.97504 15.9751L9.82504 13.1251L12 15.3751L15 12.4501L17.025 14.4751L15.975 15.5251L15 14.5501L12 17.4751Z",
|
|
77
|
+
fill: "currentColor"
|
|
78
|
+
})
|
|
79
|
+
]
|
|
80
|
+
})
|
|
81
|
+
};
|
|
82
|
+
var IconReport = function(_param) {
|
|
83
|
+
var _param_viewBox = _param.viewBox, viewBox = _param_viewBox === void 0 ? '0 0 24 24' : _param_viewBox, _param_variant = _param.variant, variant = _param_variant === void 0 ? 'outline' : _param_variant, props = _object_without_properties(_param, [
|
|
84
|
+
"viewBox",
|
|
85
|
+
"variant"
|
|
86
|
+
]);
|
|
87
|
+
return /*#__PURE__*/ _jsx(Icon, _object_spread({
|
|
88
|
+
viewBox: viewBox,
|
|
89
|
+
element: variants[variant]
|
|
90
|
+
}, props));
|
|
91
|
+
};
|
|
92
|
+
export default IconReport;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IconReport.js","sourceRoot":"","sources":["../../src/icons/IconReport.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,IAAI,EAAkB,MAAM,QAAQ,CAAA;AAE7C,MAAM,QAAQ,GAAG;IAChB,MAAM,EAAE,CACP,4BACC,eACC,CAAC,EAAC,kXACmL,EACrL,IAAI,EAAC,cAAc,GAClB,GACA,CACH;IACD,OAAO,EAAE,CACR,8BACC,eACC,CAAC,EAAC,6PACwF,EAC1F,IAAI,EAAC,cAAc,GAClB,EACF,eAAM,CAAC,EAAC,iCAAiC,EAAC,IAAI,EAAC,cAAc,GAAG,EAChE,eACC,CAAC,EAAC,wJAAwJ,EAC1J,IAAI,EAAC,cAAc,GAClB,IACA,CACH;CACD,CAAA;AACD,MAAM,UAAU,GAAmC,CAAC,EACnD,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,UAAU,CAAA"}
|
package/dist/root.css
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/* copy of dump/assets/global.css */
|
|
2
|
+
:root {
|
|
3
|
+
--primary1: #efeff0;
|
|
4
|
+
--primary2: #cacaca;
|
|
5
|
+
--primary3: #585858;
|
|
6
|
+
--primary4: #191919;
|
|
7
|
+
--primary: #000000;
|
|
8
|
+
--accent4: #e55867;
|
|
9
|
+
--accent: #e24657;
|
|
10
|
+
--links: #50c8e8;
|
|
11
|
+
--alert: #e24657;
|
|
12
|
+
--warning: #f4b25c;
|
|
13
|
+
--success4: #4fd9c2;
|
|
14
|
+
--success: #3bd5bc;
|
|
15
|
+
--black: #000000;
|
|
16
|
+
--white: #fff;
|
|
17
|
+
--whiteHover: #e6e6e6;
|
|
18
|
+
--placeholder: #f4f4f4;
|
|
19
|
+
|
|
20
|
+
--primaryBold: "Gotham-Bold";
|
|
21
|
+
--primaryNormal: "Gotham-Book";
|
|
22
|
+
--primaryMedium: "Gotham-Medium";
|
|
23
|
+
--primaryBlack: "Gotham-Black";
|
|
24
|
+
}
|
package/dist/select/Select.js
CHANGED
|
@@ -281,7 +281,7 @@ var Select = /*#__PURE__*/ React.forwardRef(function(props, ref) {
|
|
|
281
281
|
]);
|
|
282
282
|
var _React_useState = _sliced_to_array(React.useState(providedValue), 2), value = _React_useState[0], setValue = _React_useState[1];
|
|
283
283
|
var handleValueChange = function(value) {
|
|
284
|
-
var parsedValue = JSON.parse(value);
|
|
284
|
+
var parsedValue = value ? JSON.parse(value) : undefined;
|
|
285
285
|
setValue(parsedValue);
|
|
286
286
|
onChange === null || onChange === void 0 ? void 0 : onChange(parsedValue);
|
|
287
287
|
};
|
package/dist/styles.css
CHANGED
|
@@ -1766,7 +1766,7 @@ video {
|
|
|
1766
1766
|
|
|
1767
1767
|
.bg-success-50 {
|
|
1768
1768
|
--tw-bg-opacity: 1;
|
|
1769
|
-
background-color: rgb(
|
|
1769
|
+
background-color: rgb(241 249 244 / var(--tw-bg-opacity, 1));
|
|
1770
1770
|
}
|
|
1771
1771
|
|
|
1772
1772
|
.bg-success4 {
|
|
@@ -2077,6 +2077,10 @@ video {
|
|
|
2077
2077
|
font-style: italic;
|
|
2078
2078
|
}
|
|
2079
2079
|
|
|
2080
|
+
.leading-\[18px\] {
|
|
2081
|
+
line-height: 18px;
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2080
2084
|
.leading-\[19\.6px\] {
|
|
2081
2085
|
line-height: 19.6px;
|
|
2082
2086
|
}
|