@driveflux/beam 1.11.14 → 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/base-styles.css +173 -0
- 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 +3400 -0
- 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,173 @@
|
|
|
1
|
+
@import "./root.css";
|
|
2
|
+
@import "./datepicker/calendar.css";
|
|
3
|
+
@tailwind base;
|
|
4
|
+
@tailwind components;
|
|
5
|
+
@tailwind utilities;
|
|
6
|
+
|
|
7
|
+
@font-face {
|
|
8
|
+
font-family: "Gotham-Black";
|
|
9
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Black.woff2")
|
|
10
|
+
format("woff2"), url("https://driveflux.com/static/fonts/Gotham-Black.woff")
|
|
11
|
+
format("woff"), url("https://driveflux.com/static/fonts/gotham-black.otf")
|
|
12
|
+
format("otf");
|
|
13
|
+
font-weight: 500;
|
|
14
|
+
font-style: normal;
|
|
15
|
+
font-display: swap;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@font-face {
|
|
19
|
+
font-family: "Gotham-Light";
|
|
20
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Light.woff2")
|
|
21
|
+
format("woff2"), url("https://driveflux.com/static/fonts/Gotham-Light.woff")
|
|
22
|
+
format("woff"), url("https://driveflux.com/static/fonts/gotham-light.otf")
|
|
23
|
+
format("otf");
|
|
24
|
+
font-weight: 300;
|
|
25
|
+
font-style: normal;
|
|
26
|
+
font-display: swap;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@font-face {
|
|
30
|
+
font-family: "Gotham-Medium";
|
|
31
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Medium.woff2")
|
|
32
|
+
format("woff2"),
|
|
33
|
+
url("https://driveflux.com/static/fonts/Gotham-Medium.woff") format("woff"),
|
|
34
|
+
url("https://driveflux.com/static/fonts/gotham-medium.otf") format("otf");
|
|
35
|
+
font-weight: 500;
|
|
36
|
+
font-style: normal;
|
|
37
|
+
font-display: swap;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@font-face {
|
|
41
|
+
font-family: "Gotham-Bold";
|
|
42
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Bold.woff2")
|
|
43
|
+
format("woff2"), url("https://driveflux.com/static/fonts/Gotham-Bold.woff")
|
|
44
|
+
format("woff"), url("https://driveflux.com/static/fonts/gotham-bold.otf")
|
|
45
|
+
format("otf");
|
|
46
|
+
font-weight: bold;
|
|
47
|
+
font-style: normal;
|
|
48
|
+
font-display: swap;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@font-face {
|
|
52
|
+
font-family: "Gotham-Book";
|
|
53
|
+
src: url("https://driveflux.com/static/fonts/Gotham-Book.woff2")
|
|
54
|
+
format("woff2"), url("https://driveflux.com/static/fonts/Gotham-Book.woff")
|
|
55
|
+
format("woff"), url("https://driveflux.com/static/fonts/gotham-book.otf")
|
|
56
|
+
format("otf");
|
|
57
|
+
font-weight: normal;
|
|
58
|
+
font-style: normal;
|
|
59
|
+
font-display: swap;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
html {
|
|
63
|
+
line-height: 1.15;
|
|
64
|
+
-webkit-text-size-adjust: 100%;
|
|
65
|
+
height: 100%;
|
|
66
|
+
box-sizing: border-box;
|
|
67
|
+
line-height: 1.65;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
*,
|
|
71
|
+
*:before,
|
|
72
|
+
*:after {
|
|
73
|
+
box-sizing: inherit;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
body {
|
|
77
|
+
position: relative;
|
|
78
|
+
min-height: 100%;
|
|
79
|
+
margin: 0;
|
|
80
|
+
|
|
81
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu",
|
|
82
|
+
"Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
|
83
|
+
font-weight: 400;
|
|
84
|
+
min-width: 320px;
|
|
85
|
+
direction: ltr;
|
|
86
|
+
font-feature-settings: "kern";
|
|
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
|
+
}
|
|
93
|
+
|
|
94
|
+
html,
|
|
95
|
+
body {
|
|
96
|
+
background-color: var(--white);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
::selection {
|
|
100
|
+
background-color: var(--primary);
|
|
101
|
+
color: var(--white);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
[role="grid"]:focus {
|
|
105
|
+
outline: none;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
svg {
|
|
109
|
+
text-rendering: optimizeLegibility;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
h1,
|
|
113
|
+
h2,
|
|
114
|
+
h3 {
|
|
115
|
+
margin: 0;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
a {
|
|
119
|
+
color: var(--links);
|
|
120
|
+
text-decoration: none;
|
|
121
|
+
transition: color 0.2s ease;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
a:hover {
|
|
125
|
+
text-decoration: none;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
* {
|
|
129
|
+
overflow: visible;
|
|
130
|
+
box-sizing: border-box;
|
|
131
|
+
text-align: left;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
strong {
|
|
135
|
+
font-family: var(--primaryBold);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.svg-icon {
|
|
139
|
+
width: 100%;
|
|
140
|
+
height: 100%;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
input:-webkit-autofill,
|
|
144
|
+
input:-webkit-autofill:hover,
|
|
145
|
+
input:-webkit-autofill:focus,
|
|
146
|
+
textarea:-webkit-autofill,
|
|
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
|
+
}
|
|
157
|
+
|
|
158
|
+
li::marker {
|
|
159
|
+
font-size: 15px;
|
|
160
|
+
margin-left: 10px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.full-width {
|
|
164
|
+
width: 100%;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.h-safe-bottom-edge {
|
|
168
|
+
height: env(safe-area-inset-bottom);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
::-ms-reveal {
|
|
172
|
+
display: none;
|
|
173
|
+
}
|
|
@@ -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
|
]);
|