@alfresco/aca-shared 8.0.0-16588083460 → 8.0.0-16618695358
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.
|
@@ -3470,6 +3470,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3470
3470
|
}]
|
|
3471
3471
|
}] });
|
|
3472
3472
|
|
|
3473
|
+
/*!
|
|
3474
|
+
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
3475
|
+
*
|
|
3476
|
+
* Alfresco Example Content Application
|
|
3477
|
+
*
|
|
3478
|
+
* This file is part of the Alfresco Example Content Application.
|
|
3479
|
+
* If the software was purchased under a paid Alfresco license, the terms of
|
|
3480
|
+
* the paid license agreement will prevail. Otherwise, the software is
|
|
3481
|
+
* provided under the following open source license terms:
|
|
3482
|
+
*
|
|
3483
|
+
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
3484
|
+
* it under the terms of the GNU Lesser General Public License as published by
|
|
3485
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
3486
|
+
* (at your option) any later version.
|
|
3487
|
+
*
|
|
3488
|
+
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
3489
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
3490
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
3491
|
+
* GNU Lesser General Public License for more details.
|
|
3492
|
+
*
|
|
3493
|
+
* You should have received a copy of the GNU Lesser General Public License
|
|
3494
|
+
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
3495
|
+
*/
|
|
3496
|
+
const noWhitespaceValidator = () => {
|
|
3497
|
+
return (control) => {
|
|
3498
|
+
const rawValue = control.value;
|
|
3499
|
+
if (!rawValue) {
|
|
3500
|
+
return null;
|
|
3501
|
+
}
|
|
3502
|
+
const trimmedValue = rawValue.toString().trim();
|
|
3503
|
+
return trimmedValue.length === 0 ? { whitespace: true } : null;
|
|
3504
|
+
};
|
|
3505
|
+
};
|
|
3506
|
+
|
|
3473
3507
|
/*!
|
|
3474
3508
|
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
3475
3509
|
*
|
|
@@ -3498,5 +3532,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
3498
3532
|
* Generated bundle index. Do not edit.
|
|
3499
3533
|
*/
|
|
3500
3534
|
|
|
3501
|
-
export { AppExtensionService, AppHookService, AppService, AppSettingsService, AppSharedRuleGuard, AutoDownloadService, ContentApiService, ContextActionsDirective, DefaultExtensionLoaderFactory, DefaultMimeTypes, DocumentBasePageService, DocumentBasePageServiceMock, EXTENSION_DATA_LOADERS, ExtensionsDataLoaderGuard, GenericErrorComponent, InfoDrawerComponent, LibTestingModule, LockedByComponent, NavigationHistoryService, NodePermissionService, OpenInAppComponent, PageComponent, PageLayoutComponent, PageLayoutContentComponent, PageLayoutErrorComponent, PageLayoutHeaderComponent, PageLayoutModule, PaginationDirective, PluginEnabledGuard, RouterExtensionService, ToolbarActionComponent, ToolbarButtonComponent, ToolbarButtonType, ToolbarComponent, ToolbarMenuComponent, ToolbarMenuItemComponent, UserProfileService, discoveryApiServiceMockValue, initialState, isLibrary, isLocked, resetInvoked };
|
|
3535
|
+
export { AppExtensionService, AppHookService, AppService, AppSettingsService, AppSharedRuleGuard, AutoDownloadService, ContentApiService, ContextActionsDirective, DefaultExtensionLoaderFactory, DefaultMimeTypes, DocumentBasePageService, DocumentBasePageServiceMock, EXTENSION_DATA_LOADERS, ExtensionsDataLoaderGuard, GenericErrorComponent, InfoDrawerComponent, LibTestingModule, LockedByComponent, NavigationHistoryService, NodePermissionService, OpenInAppComponent, PageComponent, PageLayoutComponent, PageLayoutContentComponent, PageLayoutErrorComponent, PageLayoutHeaderComponent, PageLayoutModule, PaginationDirective, PluginEnabledGuard, RouterExtensionService, ToolbarActionComponent, ToolbarButtonComponent, ToolbarButtonType, ToolbarComponent, ToolbarMenuComponent, ToolbarMenuItemComponent, UserProfileService, discoveryApiServiceMockValue, initialState, isLibrary, isLocked, noWhitespaceValidator, resetInvoked };
|
|
3502
3536
|
//# sourceMappingURL=alfresco-aca-shared.mjs.map
|