najm-kit 0.0.25 → 0.0.26

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.d.ts CHANGED
@@ -528,6 +528,7 @@ interface DeleteDialogOptions {
528
528
  itemName: string;
529
529
  itemType?: string;
530
530
  icon?: NIconSource;
531
+ warningText?: string;
531
532
  confirmText?: string;
532
533
  cancelText?: string;
533
534
  size?: DialogSize;
package/dist/index.mjs CHANGED
@@ -2561,6 +2561,7 @@ function useDialog(store) {
2561
2561
  itemName: options.itemName,
2562
2562
  itemType: options.itemType,
2563
2563
  icon: options.icon,
2564
+ warningText: options.warningText,
2564
2565
  title: dialog.title,
2565
2566
  description: dialog.description,
2566
2567
  confirmText: dialog.primaryButton?.text,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "najm-kit",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "type": "module",
5
5
  "description": "Reusable React UI component package for Najm framework",
6
6
  "main": "./dist/index.mjs",