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.
- package/cli/settings/components-list.js +4 -0
- package/cli/settings/header-generator.js +1 -1
- package/fesm2022/tailjng.mjs +2 -0
- package/fesm2022/tailjng.mjs.map +1 -1
- package/lib/interfaces/alert/toast-alert.interface.d.ts +2 -0
- package/lib/interfaces/crud/crud.interface.d.ts +5 -2
- package/lib/interfaces/crud/filter.interface.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/components/alert/alert-toast/toast-alert.component.html +75 -58
- package/src/lib/components/card/card-complete/complete-card.component.html +104 -0
- package/src/lib/components/card/card-complete/complete-card.component.scss +35 -0
- package/src/lib/components/card/card-complete/complete-card.component.ts +652 -0
- package/src/lib/components/filter/filter-complete/complete-filter.component.html +194 -178
- package/src/lib/components/filter/filter-complete/complete-filter.component.ts +11 -1
- package/src/lib/components/select/select-dropdown/dropdown-select.component.html +4 -3
- package/src/lib/components/select/select-dropdown/dropdown-select.component.ts +3 -0
- package/src/lib/components/table/table-crud-complete/complete-crud-table.component.html +3 -1
- package/src/lib/components/table/table-crud-complete/complete-crud-table.component.ts +7 -1
|
@@ -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"],
|
package/fesm2022/tailjng.mjs
CHANGED
|
@@ -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
|