herum-shared 0.1.36 → 0.1.38
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/constants/index.d.ts +13 -11
- package/fesm2022/herum-shared-atoms.mjs +3 -6
- package/fesm2022/herum-shared-atoms.mjs.map +1 -1
- package/fesm2022/herum-shared-constants.mjs +13 -11
- package/fesm2022/herum-shared-constants.mjs.map +1 -1
- package/fesm2022/herum-shared-utils.mjs +1 -2
- package/fesm2022/herum-shared-utils.mjs.map +1 -1
- package/fesm2022/herum-shared.mjs +25 -28
- package/fesm2022/herum-shared.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -135,16 +135,6 @@ const dateRangePlaceHolder = `${datePlaceHolder}-${datePlaceHolder}`;
|
|
|
135
135
|
const dateRangeTimeRangePlaceHolder = `${dateTimePlaceHolder}-${dateTimePlaceHolder}`;
|
|
136
136
|
const dateRangeTimeRangeWithoutSecondsPlaceHolder = `${dateTimeWithoutSecondsPlaceHolder}-${dateTimeWithoutSecondsPlaceHolder}`;
|
|
137
137
|
|
|
138
|
-
const calendarActiveColorCssVariable = '--active-calendar-color';
|
|
139
|
-
const calendarHoverColorCssVariable = '--hover-calendar-color';
|
|
140
|
-
const calendarLibrarySelector = 'mat-calendar';
|
|
141
|
-
const calendarLibraryBodyCellSelector = 'td.mat-calendar-body-cell';
|
|
142
|
-
const timerActiveColorCssVariable = '--active-timer-color';
|
|
143
|
-
const timerHoverColorCssVariable = '--hover-timer-color';
|
|
144
|
-
const timerItemSizeColorCssVariable = '--hover-timer-color';
|
|
145
|
-
const dayInMilliSeconds = 60 * 60 * 24 * 1000;
|
|
146
|
-
const timePattern = 'HH:mm:ss';
|
|
147
|
-
|
|
148
138
|
const resourceIdPlaceholder = "$resourceId";
|
|
149
139
|
const defaultCloseTime = new Date('01-01-2999');
|
|
150
140
|
const defaultOpenTime = new Date('01-01-1999');
|
|
@@ -703,9 +693,21 @@ const insuranceDialogPageNavigationData = {
|
|
|
703
693
|
closeActionButton: dialogsCloseActionButtons.pageNavigation
|
|
704
694
|
};
|
|
705
695
|
|
|
696
|
+
const calendarActiveColorCssVariable = '--active-calendar-color';
|
|
697
|
+
const calendarHoverColorCssVariable = '--hover-calendar-color';
|
|
698
|
+
const calendarLibrarySelector = 'mat-calendar';
|
|
699
|
+
const calendarLibraryBodyCellSelector = 'td.mat-calendar-body-cell';
|
|
700
|
+
const timerActiveColorCssVariable = '--active-timer-color';
|
|
701
|
+
const timerHoverColorCssVariable = '--hover-timer-color';
|
|
702
|
+
const timerItemSizeColorCssVariable = '--hover-timer-color';
|
|
703
|
+
const dayInMilliSeconds = 60 * 60 * 24 * 1000;
|
|
704
|
+
const secondInMilliseconds = 1000;
|
|
705
|
+
const minuteInMilliseconds = 60 * secondInMilliseconds;
|
|
706
|
+
const timePattern = 'HH:mm:ss';
|
|
707
|
+
|
|
706
708
|
/**
|
|
707
709
|
* Generated bundle index. Do not edit.
|
|
708
710
|
*/
|
|
709
711
|
|
|
710
|
-
export { activeDragPath, anySubFileTypeWildCard, assignmentMetadata, attributes, audioAndVideoPreviewSupportedMimes, audioAndVideoPreviewSupportedSuffixes, audioPreviewSupportedMimes, audioPreviewSupportedSuffixes, calendarActiveColorCssVariable, calendarHoverColorCssVariable, calendarLibraryBodyCellSelector, calendarLibrarySelector, collectionFormKeys, collectionFormValues, datePlaceHolder, dateRangePlaceHolder, dateRangeTimeRangePlaceHolder, dateRangeTimeRangeWithoutSecondsPlaceHolder, dateTimePlaceHolder, dateTimeWithoutSecondsPlaceHolder, dayInMilliSeconds, defaultAuthorizationObject, defaultCloseTime, defaultGrade, defaultOpenTime, defaultPlaceholder, defaultTrackTextChangesStyle, defaultUploadsManagerTitle, defaultUserId, dialogsCloseActionButtons, dialogsDescriptions, dialogsNotes, dialogsSubmitActionButtons, dialogsTitles, dragPath, errorHeadersToSet, femaleAvatarPath, filesSuffixes, formStatuses, formatError, formsErrorMessages, generalKeys, getMediaDefaultAuthorizations, getMongoMethodsDisplayedNamesMap, getPropertyPathsOfPublishAuthorization, getPublishAuthorization, getQuizDefaultAuthorizations, getSignUpFormFieldsByFields, getSignUpMethod, getToastsTemplates, herumClosedListMultiSelectType, initialMediaSettings, inputs, insuranceDialogPageNavigationData, keyboardAsciiCodes, maleAvatarPath, minDateError, previewImageKey, readynessDisplayName, regexExpressions, resourceFileTypes, resourceFormKeys, resourceIdPlaceholder, resourceKeys, resourceTypes, resourcesFilesSuffixes, routes, sideBarSizeButtonId, signUpFormFields, signUpFormFieldsData, signUpFormKeys, skipToastHeader, socketUpdateKeys, startEndDateError, statusCodes, svgsStrings, system, tableRowHeights, timePattern, timePlaceHolder, timeWithoutSecondsPlaceHolder, timerActiveColorCssVariable, timerHoverColorCssVariable, timerItemSizeColorCssVariable, timestampError, toastContext, toastStates, toastStatuses, toastsKeys, toastsTemplatesKeys, types, uploadStatuses, uploadsManagerKeys, uploadsProgressMetadataTypes, validatorsNames, videoPreviewSupportedMimes, videoPreviewSupportedSuffixes, viewPermissionLabel };
|
|
712
|
+
export { activeDragPath, anySubFileTypeWildCard, assignmentMetadata, attributes, audioAndVideoPreviewSupportedMimes, audioAndVideoPreviewSupportedSuffixes, audioPreviewSupportedMimes, audioPreviewSupportedSuffixes, calendarActiveColorCssVariable, calendarHoverColorCssVariable, calendarLibraryBodyCellSelector, calendarLibrarySelector, collectionFormKeys, collectionFormValues, datePlaceHolder, dateRangePlaceHolder, dateRangeTimeRangePlaceHolder, dateRangeTimeRangeWithoutSecondsPlaceHolder, dateTimePlaceHolder, dateTimeWithoutSecondsPlaceHolder, dayInMilliSeconds, defaultAuthorizationObject, defaultCloseTime, defaultGrade, defaultOpenTime, defaultPlaceholder, defaultTrackTextChangesStyle, defaultUploadsManagerTitle, defaultUserId, dialogsCloseActionButtons, dialogsDescriptions, dialogsNotes, dialogsSubmitActionButtons, dialogsTitles, dragPath, errorHeadersToSet, femaleAvatarPath, filesSuffixes, formStatuses, formatError, formsErrorMessages, generalKeys, getMediaDefaultAuthorizations, getMongoMethodsDisplayedNamesMap, getPropertyPathsOfPublishAuthorization, getPublishAuthorization, getQuizDefaultAuthorizations, getSignUpFormFieldsByFields, getSignUpMethod, getToastsTemplates, herumClosedListMultiSelectType, initialMediaSettings, inputs, insuranceDialogPageNavigationData, keyboardAsciiCodes, maleAvatarPath, minDateError, minuteInMilliseconds, previewImageKey, readynessDisplayName, regexExpressions, resourceFileTypes, resourceFormKeys, resourceIdPlaceholder, resourceKeys, resourceTypes, resourcesFilesSuffixes, routes, secondInMilliseconds, sideBarSizeButtonId, signUpFormFields, signUpFormFieldsData, signUpFormKeys, skipToastHeader, socketUpdateKeys, startEndDateError, statusCodes, svgsStrings, system, tableRowHeights, timePattern, timePlaceHolder, timeWithoutSecondsPlaceHolder, timerActiveColorCssVariable, timerHoverColorCssVariable, timerItemSizeColorCssVariable, timestampError, toastContext, toastStates, toastStatuses, toastsKeys, toastsTemplatesKeys, types, uploadStatuses, uploadsManagerKeys, uploadsProgressMetadataTypes, validatorsNames, videoPreviewSupportedMimes, videoPreviewSupportedSuffixes, viewPermissionLabel };
|
|
711
713
|
//# sourceMappingURL=herum-shared-constants.mjs.map
|