Merge branch 'main' of https://gitea.armco.dev/Restruct-Corporate-Advantage/calendar
All checks were successful
armco-org/Calendar/pipeline/head This commit looks good
All checks were successful
armco-org/Calendar/pipeline/head This commit looks good
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -26,4 +26,4 @@ EventList
|
||||
EventManager
|
||||
JustCalendar
|
||||
MonthNavigator
|
||||
MonthSelector
|
||||
MonthSelector
|
||||
|
||||
@@ -33,4 +33,4 @@ fi
|
||||
echo "[BUILD:SH] Running post processor scripts..."
|
||||
# Run Post processors: Update style imports in .js files, create component modules
|
||||
node "$SCRIPT_DIR/post-processor.js" build/cjs $DEV_FLAG
|
||||
node "$SCRIPT_DIR/post-processor.js" build/es $DEV_FLAG
|
||||
node "$SCRIPT_DIR/post-processor.js" build/es $DEV_FLAG
|
||||
|
||||
@@ -43,8 +43,8 @@ const MonthSelector = (props: MonthSelectorProps) => {
|
||||
<div className="ar-MonthSelector position-absolute h-100 d-flex w-100 overflow-hidden">
|
||||
<div
|
||||
className={`ar-MonthSelector__decade-selector position-absolute h-100 w-100 d-flex flex-wrap${currentMonthNavView === ArMonthSelectorViews.DECADE
|
||||
? " start-0"
|
||||
: " start-100"
|
||||
? " start-0"
|
||||
: " start-100"
|
||||
}`}
|
||||
>
|
||||
{currentDecade &&
|
||||
@@ -70,10 +70,10 @@ const MonthSelector = (props: MonthSelectorProps) => {
|
||||
</div>
|
||||
<div
|
||||
className={`ar-MonthSelector__year-selector position-absolute w-100 h-100 d-flex flex-wrap${currentMonthNavView === ArMonthSelectorViews.YEAR
|
||||
? " start-0"
|
||||
: currentMonthNavView === ArMonthSelectorViews.MONTH
|
||||
? " start-100"
|
||||
: " start-n100"
|
||||
? " start-0"
|
||||
: currentMonthNavView === ArMonthSelectorViews.MONTH
|
||||
? " start-100"
|
||||
: " start-n100"
|
||||
}`}
|
||||
>
|
||||
{currentDecade &&
|
||||
@@ -99,8 +99,8 @@ const MonthSelector = (props: MonthSelectorProps) => {
|
||||
</div>
|
||||
<div
|
||||
className={`ar-MonthSelector__month-selector position-absolute w-100 h-100 d-flex flex-wrap${currentMonthNavView === ArMonthSelectorViews.MONTH
|
||||
? " start-0"
|
||||
: " start-n100"
|
||||
? " start-0"
|
||||
: " start-n100"
|
||||
}`}
|
||||
>
|
||||
{MONTH_INDEX.map((month, index) => (
|
||||
|
||||
Reference in New Issue
Block a user