kwant-ui 3.14.9-alpha.0 → 3.14.9-alpha.2
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/GlobalStyles/index.ts
CHANGED
|
@@ -223,6 +223,8 @@ const GlobalStyles = createGlobalStyle<{ theme: Color }>`
|
|
|
223
223
|
|
|
224
224
|
|
|
225
225
|
.rmdp-day.rmdp-range{
|
|
226
|
+
display: flex;
|
|
227
|
+
align-items: center;
|
|
226
228
|
&.start, &.end{
|
|
227
229
|
background-color: ${theme.blue.blue100};
|
|
228
230
|
span{
|
|
@@ -240,10 +242,12 @@ const GlobalStyles = createGlobalStyle<{ theme: Color }>`
|
|
|
240
242
|
}
|
|
241
243
|
|
|
242
244
|
&.start{
|
|
245
|
+
justify-content: flex-start;
|
|
243
246
|
border-radius: 50% 0 0 50% !important;
|
|
244
247
|
}
|
|
245
248
|
|
|
246
249
|
&.end{
|
|
250
|
+
justify-content: flex-end;
|
|
247
251
|
border-radius: 0 50% 50% 0 !important;
|
|
248
252
|
}
|
|
249
253
|
}
|
|
@@ -11,11 +11,8 @@ export declare const CALENDAR_CONSTANTS: {
|
|
|
11
11
|
LAST_30_DAYS: DateObject[];
|
|
12
12
|
THIS_MONTH: DateObject[];
|
|
13
13
|
};
|
|
14
|
-
export declare const getSidebarOptions: (projectDuration?: ICalendar.ProjectDuration) =>
|
|
14
|
+
export declare const getSidebarOptions: (projectDuration?: ICalendar.ProjectDuration) => {
|
|
15
15
|
title: string;
|
|
16
16
|
value: () => DateObject[];
|
|
17
|
-
}
|
|
18
|
-
title: string;
|
|
19
|
-
value?: undefined;
|
|
20
|
-
})[];
|
|
17
|
+
}[];
|
|
21
18
|
export { fullMonthsText, regexInputValidate, weeks };
|