najm-kit 2.11.19 → 2.11.20
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/CHANGELOG.md +10 -10
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## 2.11.19 - 2026-09-06
|
|
4
|
-
|
|
5
|
-
- Made native calendar month and year dropdowns follow the resolved Najm light
|
|
6
|
-
or dark theme instead of opening with the browser's light color scheme.
|
|
7
|
-
- Added pointer cursors to interactive calendar days while retaining the
|
|
8
|
-
not-allowed cursor for disabled dates.
|
|
9
|
-
|
|
10
|
-
## 2.11.18 - 2026-09-06
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 2.11.19 - 2026-09-06
|
|
4
|
+
|
|
5
|
+
- Made native calendar month and year dropdowns follow the resolved Najm light
|
|
6
|
+
or dark theme instead of opening with the browser's light color scheme.
|
|
7
|
+
- Added pointer cursors to interactive calendar days while retaining the
|
|
8
|
+
not-allowed cursor for disabled dates.
|
|
9
|
+
|
|
10
|
+
## 2.11.18 - 2026-09-06
|
|
11
11
|
|
|
12
12
|
- Added a resolved-state render-prop form of `NSidebar.footer`, matching the
|
|
13
13
|
existing logo contract. Custom footers now receive the actual desktop
|
package/dist/index.d.ts
CHANGED
|
@@ -846,6 +846,7 @@ interface NConfirmDialogProps {
|
|
|
846
846
|
declare function NConfirmDialog({ open, onOpenChange, title, description, confirmLabel, cancelLabel, onConfirm, variant, loading, children, icon, }: NConfirmDialogProps): React__default.JSX.Element;
|
|
847
847
|
|
|
848
848
|
interface NDeleteDialogContentProps {
|
|
849
|
+
title?: ReactNode;
|
|
849
850
|
itemName: string;
|
|
850
851
|
itemType?: string;
|
|
851
852
|
icon?: NIconSource;
|
|
@@ -866,7 +867,7 @@ interface NDeleteDialogProps extends Omit<NDeleteDialogContentProps, "className"
|
|
|
866
867
|
onConfirm?: () => void | Promise<void>;
|
|
867
868
|
onCancel?: () => void | Promise<void>;
|
|
868
869
|
}
|
|
869
|
-
declare function NDeleteDialogContent({ itemName, itemType, icon: Icon, warningText, className, }: NDeleteDialogContentProps): React$1.JSX.Element;
|
|
870
|
+
declare function NDeleteDialogContent({ title, itemName, itemType, icon: Icon, warningText, className, }: NDeleteDialogContentProps): React$1.JSX.Element;
|
|
870
871
|
declare function NDeleteDialog({ open, title, description, itemName, itemType, icon, warningText, confirmText, cancelText, loading, zIndex, className, contentClassName, onOpenChange, onConfirm, onCancel, }: NDeleteDialogProps): React$1.JSX.Element;
|
|
871
872
|
|
|
872
873
|
declare function NPortalScopeProvider({ className, children }: {
|
package/dist/index.mjs
CHANGED
|
@@ -2233,6 +2233,7 @@ function NConfirmDialog({
|
|
|
2233
2233
|
] }) });
|
|
2234
2234
|
}
|
|
2235
2235
|
function NDeleteDialogContent({
|
|
2236
|
+
title = "Delete",
|
|
2236
2237
|
itemName,
|
|
2237
2238
|
itemType,
|
|
2238
2239
|
icon: Icon2 = "trash-2",
|
|
@@ -2242,10 +2243,10 @@ function NDeleteDialogContent({
|
|
|
2242
2243
|
return /* @__PURE__ */ jsx("form", { id: "najm-delete-form", onSubmit: (e) => e.preventDefault(), children: /* @__PURE__ */ jsxs("div", { className: cn("flex flex-col items-center text-center", className), children: [
|
|
2243
2244
|
/* @__PURE__ */ jsx("div", { className: "mb-6 flex size-16 items-center justify-center rounded-[20px] bg-destructive/10 text-destructive dark:bg-[#5a1822] dark:text-white", children: /* @__PURE__ */ jsx(NIcon, { icon: Icon2, className: "size-7" }) }),
|
|
2244
2245
|
/* @__PURE__ */ jsxs("div", { className: "space-y-3", children: [
|
|
2245
|
-
/* @__PURE__ */ jsx("h2", { className: "text-xl font-semibold leading-none text-card-foreground dark:text-white", children:
|
|
2246
|
+
/* @__PURE__ */ jsx("h2", { className: "text-xl font-semibold leading-none text-card-foreground dark:text-white", children: title }),
|
|
2246
2247
|
/* @__PURE__ */ jsxs("div", { className: "space-y-1.5", children: [
|
|
2247
2248
|
/* @__PURE__ */ jsx("p", { className: "text-sm font-medium leading-5 text-muted-foreground dark:text-[#aab4c2]", children: warningText }),
|
|
2248
|
-
/* @__PURE__ */ jsxs("p", { className: "max-w-[280px]
|
|
2249
|
+
/* @__PURE__ */ jsxs("p", { className: "mx-auto max-w-[280px] break-words text-center text-sm font-bold leading-5 text-card-foreground dark:text-white", children: [
|
|
2249
2250
|
'"',
|
|
2250
2251
|
itemName,
|
|
2251
2252
|
'"',
|
|
@@ -2296,6 +2297,7 @@ function NDeleteDialog({
|
|
|
2296
2297
|
/* @__PURE__ */ jsx(
|
|
2297
2298
|
NDeleteDialogContent,
|
|
2298
2299
|
{
|
|
2300
|
+
title,
|
|
2299
2301
|
itemName,
|
|
2300
2302
|
itemType,
|
|
2301
2303
|
icon,
|
|
@@ -2312,7 +2314,7 @@ function NDeleteDialog({
|
|
|
2312
2314
|
variant: "outline",
|
|
2313
2315
|
onClick: onCancel,
|
|
2314
2316
|
disabled: loading,
|
|
2315
|
-
className: "h-10 w-full rounded-[10px] border border-
|
|
2317
|
+
className: "h-10 w-full rounded-[10px] border border-destructive bg-transparent text-sm font-bold text-card-foreground shadow-none hover:bg-transparent hover:text-card-foreground dark:border-destructive dark:bg-transparent dark:text-white dark:hover:bg-transparent dark:hover:text-white",
|
|
2316
2318
|
children: cancelText
|
|
2317
2319
|
}
|
|
2318
2320
|
),
|