tailjng 0.0.46 → 0.0.47
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 +1 -0
- package/fesm2022/tailjng.mjs.map +1 -1
- package/lib/interfaces/crud/crud.interface.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/components/card/card-crud-complete/complete-crud-card.component.ts +4 -7
- package/src/lib/components/checkbox/checkbox-input/input-checkbox.component.html +37 -8
- package/src/lib/components/checkbox/checkbox-input/input-checkbox.component.ts +13 -8
- package/src/lib/components/progress-bar/progress-bar.component.html +22 -5
- package/src/lib/components/progress-bar/progress-bar.component.ts +1 -1
- package/src/lib/components/select/select-dropdown/dropdown-select.component.ts +3 -1
- package/src/lib/components/select/select-multi-dropdown/multi-dropdown-select.component.ts +3 -1
- package/src/lib/components/sidebar/sidebar-static/static-sidebar.component.html +60 -0
- package/src/lib/components/sidebar/sidebar-static/static-sidebar.component.scss +0 -0
- package/src/lib/components/sidebar/sidebar-static/static-sidebar.component.ts +54 -0
- package/src/lib/components/table/table-crud-complete/complete-crud-table.component.html +108 -97
- package/src/lib/components/table/table-crud-complete/complete-crud-table.component.ts +22 -7
|
@@ -90,6 +90,10 @@ function getComponentList() {
|
|
|
90
90
|
path: "src/lib/components/select/select-dropdown",
|
|
91
91
|
dependencies: [],
|
|
92
92
|
},
|
|
93
|
+
'sidebar-static': {
|
|
94
|
+
path: "src/lib/components/sidebar/sidebar-static",
|
|
95
|
+
dependencies: ["checkbox-switch"],
|
|
96
|
+
},
|
|
93
97
|
'form-container': {
|
|
94
98
|
path: "src/lib/components/form/form-container",
|
|
95
99
|
dependencies: [],
|
package/fesm2022/tailjng.mjs
CHANGED
|
@@ -2011,6 +2011,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
2011
2011
|
// cd dist/tailjng
|
|
2012
2012
|
// npm publish --access public
|
|
2013
2013
|
// npx tailjng add [component]
|
|
2014
|
+
// npm login
|
|
2014
2015
|
|
|
2015
2016
|
/**
|
|
2016
2017
|
* Generated bundle index. Do not edit.
|