hh-contracts 0.0.15 → 0.0.17
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/build/common/constants/app-ability.constant.js +1 -1
- package/build/common/constants/default-pagination-config.constant.js +1 -1
- package/build/common/constants/icon-key.constant.js +4 -0
- package/common/constants/app-ability.constant.ts +1 -1
- package/common/constants/default-pagination-config.constant.ts +1 -1
- package/common/constants/icon-key.constant.ts +4 -0
- package/package.json +1 -1
|
@@ -5,7 +5,11 @@ exports.ICON_KEY = {
|
|
|
5
5
|
EyeIcon: 'EyeIcon',
|
|
6
6
|
EyeSlashIcon: 'EyeSlashIcon',
|
|
7
7
|
ChevronRightIcon: 'ChevronRightIcon',
|
|
8
|
+
MoonIcon: 'MoonIcon',
|
|
9
|
+
SunIcon: 'SunIcon',
|
|
8
10
|
LogoIcon: 'LogoIcon',
|
|
9
11
|
HousekeepingIcon: 'HousekeepingIcon',
|
|
10
12
|
Bars3CenterLeftIcon: 'Bars3CenterLeftIcon',
|
|
13
|
+
CountryFlagIconGB: 'CountryFlagIconGB',
|
|
14
|
+
CountryFlagIconRU: 'CountryFlagIconRU',
|
|
11
15
|
};
|
|
@@ -5,7 +5,7 @@ export namespace AppAbility {
|
|
|
5
5
|
read: 'read',
|
|
6
6
|
update: 'update',
|
|
7
7
|
delete: 'delete',
|
|
8
|
-
|
|
8
|
+
hotelClientMessaging: 'hotelClientMessaging',
|
|
9
9
|
} as const;
|
|
10
10
|
export type TAction = (typeof ACTION)[keyof typeof ACTION];
|
|
11
11
|
export const ACTION_VALUES = Object.values(ACTION) as [TAction];
|
|
@@ -2,9 +2,13 @@ export const ICON_KEY = {
|
|
|
2
2
|
EyeIcon: 'EyeIcon',
|
|
3
3
|
EyeSlashIcon: 'EyeSlashIcon',
|
|
4
4
|
ChevronRightIcon: 'ChevronRightIcon',
|
|
5
|
+
MoonIcon: 'MoonIcon',
|
|
6
|
+
SunIcon: 'SunIcon',
|
|
5
7
|
LogoIcon: 'LogoIcon',
|
|
6
8
|
HousekeepingIcon: 'HousekeepingIcon',
|
|
7
9
|
Bars3CenterLeftIcon: 'Bars3CenterLeftIcon',
|
|
10
|
+
CountryFlagIconGB: 'CountryFlagIconGB',
|
|
11
|
+
CountryFlagIconRU: 'CountryFlagIconRU',
|
|
8
12
|
} as const;
|
|
9
13
|
|
|
10
14
|
export type TIconKey = (typeof ICON_KEY)[keyof typeof ICON_KEY];
|