@adatechnology/scheduling-ui 0.1.0-rc.6 → 0.1.0-rc.7
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/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -684,7 +684,7 @@ function AgendaGrid({ bookings, days, now, onSelect }) {
|
|
|
684
684
|
/* @__PURE__ */ jsxs(
|
|
685
685
|
"div",
|
|
686
686
|
{
|
|
687
|
-
className: `${HEADER_CLASS} flex items-center gap-1 border-b border-gray-200 dark:border-gray-800 ${isToday ? "text-brand-700 dark:text-brand-
|
|
687
|
+
className: `${HEADER_CLASS} flex items-center gap-1 border-b border-gray-200 dark:border-gray-800 ${isToday ? "text-brand-700 dark:text-brand-400" : ""}`,
|
|
688
688
|
children: [
|
|
689
689
|
day.toLocaleDateString(locale, { weekday: "short", day: "2-digit", month: "2-digit" }),
|
|
690
690
|
isToday && /* @__PURE__ */ jsx3("span", { className: "h-1.5 w-1.5 rounded-full bg-brand-600", "aria-hidden": "true" })
|
|
@@ -1471,7 +1471,7 @@ function AgendaArea() {
|
|
|
1471
1471
|
type: "button",
|
|
1472
1472
|
onClick: () => setView(value),
|
|
1473
1473
|
"aria-pressed": isActive,
|
|
1474
|
-
className: `${BUTTON_BASE} flex-1 ${isActive ? "bg-white text-brand-700 shadow-sm dark:bg-gray-900 dark:text-brand-
|
|
1474
|
+
className: `${BUTTON_BASE} flex-1 ${isActive ? "bg-white text-brand-700 shadow-sm dark:bg-gray-900 dark:text-brand-400" : "text-gray-600 dark:text-gray-400"}`,
|
|
1475
1475
|
children: label
|
|
1476
1476
|
}
|
|
1477
1477
|
);
|
|
@@ -2017,7 +2017,7 @@ function BookingsTable({
|
|
|
2017
2017
|
{
|
|
2018
2018
|
type: "button",
|
|
2019
2019
|
onClick: () => onStateChange?.(DEFAULT_BOOKINGS_TABLE_STATE),
|
|
2020
|
-
className: "min-h-11 px-3 text-sm font-medium text-brand-700 hover:underline dark:text-brand-
|
|
2020
|
+
className: "min-h-11 px-3 text-sm font-medium text-brand-700 hover:underline dark:text-brand-400",
|
|
2021
2021
|
children: messages["common.clearFilters"]
|
|
2022
2022
|
}
|
|
2023
2023
|
)
|
|
@@ -2605,7 +2605,7 @@ function isSchedulingWorkspaceArea(value) {
|
|
|
2605
2605
|
// src/workspace/WorkspaceAreaNav.tsx
|
|
2606
2606
|
import { jsx as jsx23, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
2607
2607
|
var ITEM_BASE = "flex items-center gap-2 px-3 py-2 -mb-px border-b-2 text-sm font-medium transition-colors min-h-11 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-brand-500";
|
|
2608
|
-
var ITEM_ACTIVE = "border-brand-600 text-brand-700 dark:text-brand-
|
|
2608
|
+
var ITEM_ACTIVE = "border-brand-600 text-brand-700 dark:text-brand-400";
|
|
2609
2609
|
var ITEM_IDLE = "border-transparent text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100";
|
|
2610
2610
|
var AREA_ICON = {
|
|
2611
2611
|
[SCHEDULING_WORKSPACE_AREA.AGENDA]: CalendarDays2,
|
package/package.json
CHANGED