@annalib/anna-core 30.2.0 → 30.2.2
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/esm2022/lib/anna-core-shared-lib/constants/shared.constant.mjs +2 -2
- package/esm2022/lib/anna-core-shared-lib/services/anna-filter.service.mjs +17 -1
- package/esm2022/lib/anna-core-shared-lib/services/anna-persisting-filter.service.mjs +5 -1
- package/esm2022/lib/anna-dropdown-lib/components/anna-calendar-filter/anna-calendar-filter.component.mjs +2 -2
- package/esm2022/lib/anna-generic-table-lib/components/anna-non-editable-generic-table/anna-non-editable-generic-table.component.mjs +21 -20
- package/fesm2022/annalib-anna-core.mjs +42 -21
- package/fesm2022/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/constants/shared.constant.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/anna-common-scss/_customDropdown.scss +1 -0
|
@@ -2,7 +2,7 @@ export declare class Constants {
|
|
|
2
2
|
static readonly SUCCESS_STRING = "success";
|
|
3
3
|
static readonly BACKEND_SERVER_URL = "/server/public/index.php/api";
|
|
4
4
|
static readonly ERROR_MSG = "Error occurred please try again.";
|
|
5
|
-
static readonly NO_DATA_MSG = "No
|
|
5
|
+
static readonly NO_DATA_MSG = "No data to display";
|
|
6
6
|
static readonly SERVER_ERROR = "Server error. Please try Again";
|
|
7
7
|
static readonly USER_ORIGIN = "ANNA";
|
|
8
8
|
static readonly ACTIVE_USER_STATUS = "active";
|
package/package.json
CHANGED