tailjng 0.0.55 → 0.0.57

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.
Files changed (24) hide show
  1. package/cli/settings/components-list.js +8 -0
  2. package/cli/settings/header-generator.js +1 -1
  3. package/fesm2022/tailjng.mjs.map +1 -1
  4. package/lib/interfaces/crud/crud.interface.d.ts +5 -2
  5. package/lib/interfaces/crud/filter.interface.d.ts +4 -0
  6. package/package.json +1 -1
  7. package/src/lib/components/card/card-complete/complete-card.component.html +104 -0
  8. package/src/lib/components/card/card-complete/complete-card.component.scss +35 -0
  9. package/src/lib/components/card/card-complete/complete-card.component.ts +652 -0
  10. package/src/lib/components/coach-mark/coach-mark.component.html +36 -0
  11. package/src/lib/components/coach-mark/coach-mark.component.scss +20 -0
  12. package/src/lib/components/coach-mark/coach-mark.component.ts +45 -0
  13. package/src/lib/components/coach-mark/coach-mark.directive.ts +256 -0
  14. package/src/lib/components/filter/filter-complete/complete-filter.component.html +194 -178
  15. package/src/lib/components/filter/filter-complete/complete-filter.component.ts +11 -1
  16. package/src/lib/components/form/form-validation/validation-form.component.html +1 -1
  17. package/src/lib/components/input/input/input.component.html +1 -1
  18. package/src/lib/components/input/input-file/file-input.component.html +3 -3
  19. package/src/lib/components/input/input-textarea/textarea-input.component.html +23 -19
  20. package/src/lib/components/select/select-dropdown/dropdown-select.component.html +5 -4
  21. package/src/lib/components/select/select-dropdown/dropdown-select.component.ts +3 -0
  22. package/src/lib/components/select/select-multi-dropdown/multi-dropdown-select.component.html +2 -1
  23. package/src/lib/components/table/table-crud-complete/complete-crud-table.component.html +3 -1
  24. package/src/lib/components/table/table-crud-complete/complete-crud-table.component.ts +7 -1
@@ -14,6 +14,10 @@ function getComponentList() {
14
14
  path: "src/lib/components/tooltip",
15
15
  dependencies: [],
16
16
  },
17
+ 'coach-mark': {
18
+ path: "src/lib/components/coach-mark",
19
+ dependencies: [],
20
+ },
17
21
  'badge': {
18
22
  path: "src/lib/components/badge",
19
23
  dependencies: ["tooltip"],
@@ -118,6 +122,10 @@ function getComponentList() {
118
122
  path: "src/lib/components/card/card-crud-complete",
119
123
  dependencies: ["paginator-complete", "filter-complete"],
120
124
  },
125
+ 'card-complete': {
126
+ path: "src/lib/components/card/card-complete",
127
+ dependencies: ["paginator-complete", "filter-complete"],
128
+ },
121
129
  'menu-options-table': {
122
130
  path: "src/lib/components/menu/menu-options-table",
123
131
  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.55
30
+ Version: 0.0.57
31
31
  Creation Date: 2025-01-04
32
32
  ===============================================`
33
33