tailjng 0.0.54 → 0.0.56

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.
@@ -118,6 +118,10 @@ function getComponentList() {
118
118
  path: "src/lib/components/card/card-crud-complete",
119
119
  dependencies: ["paginator-complete", "filter-complete"],
120
120
  },
121
+ 'card-complete': {
122
+ path: "src/lib/components/card/card-complete",
123
+ dependencies: ["paginator-complete", "filter-complete"],
124
+ },
121
125
  'menu-options-table': {
122
126
  path: "src/lib/components/menu/menu-options-table",
123
127
  dependencies: ["button"],
@@ -27,7 +27,7 @@ Authors:
27
27
  License:
28
28
  This project is licensed under the BSD 3-Clause - see the LICENSE file for more details.
29
29
 
30
- Version: 0.0.54
30
+ Version: 0.0.56
31
31
  Creation Date: 2025-01-04
32
32
  ===============================================`
33
33
 
@@ -57,6 +57,7 @@ class JAlertToastService {
57
57
  const onCancelCallback = "onCancel" in config ? config.onCancel : undefined;
58
58
  // Get action button text or use default
59
59
  const actionNameButton = config.actionButtonText ?? this.DEFAULT_ACTION_BUTTON_TEXT;
60
+ const btnClose = config.btnClose ?? true;
60
61
  const toast = {
61
62
  id: toastId,
62
63
  config,
@@ -65,6 +66,7 @@ class JAlertToastService {
65
66
  onActionCallback,
66
67
  onCancelCallback,
67
68
  actionNameButton, // Add the button text
69
+ btnClose, // Add the close button flag
68
70
  createdAt: Date.now()
69
71
  };
70
72
  // Add the toast to our list