Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/components/releaseNotes/components.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# @labkey/components
Components, models, actions, and utility functions for LabKey applications and pages

### version 7.X.0
*Released*: ? February 2026
- Remove GridAliquotViewSelector
- Remove SampleAliquotViewSelector
- Remove isSampleAliquotSelectorEnabled

### version 7.16.0
*Released*: 5 February 2026
- File import warnings for cross type sample import case
Expand Down
6 changes: 0 additions & 6 deletions packages/components/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,6 @@ import {
} from './internal/components/entities/models';
import { EntityMoveModal } from './internal/components/entities/EntityMoveModal';
import { EntityMoveConfirmationModal } from './internal/components/entities/EntityMoveConfirmationModal';
import { SampleAliquotViewSelector } from './internal/components/entities/SampleAliquotViewSelector';
import { GridAliquotViewSelector } from './internal/components/entities/GridAliquotViewSelector';
import {
FindDerivativesButton,
FindDerivativesMenuItem,
Expand Down Expand Up @@ -733,7 +731,6 @@ import {
isProjectContainer,
isProtectedDataEnabled,
isRegistryEnabled,
isSampleAliquotSelectorEnabled,
isSampleStatusEnabled,
isSharedContainer,
isSourceTypeEnabled,
Expand Down Expand Up @@ -939,7 +936,6 @@ const App = {
isPlatesEnabled,
isBiologicsEnabled,
isPremiumApplication,
isSampleAliquotSelectorEnabled,
isProjectContainer,
isProtectedDataEnabled,
isDataChangeCommentRequirementFeatureEnabled,
Expand Down Expand Up @@ -1429,7 +1425,6 @@ export {
GlobalStateContextProvider,
Grid,
GRID_CHECKBOX_OPTIONS,
GridAliquotViewSelector,
getTextAlignClassName,
GridColumn,
GridPanel,
Expand Down Expand Up @@ -1645,7 +1640,6 @@ export {
SAMPLE_TYPE_AUDIT_QUERY,
SAMPLE_TYPE_CONCEPT_URI,
SAMPLE_TYPE_DESIGNER_ROLE,
SampleAliquotViewSelector,
SampleAmountEditModal,
sampleDeleteDependencyText,
SampleOperation,
Expand Down
1 change: 0 additions & 1 deletion packages/components/src/internal/app/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ export const SERVER_NOTIFICATION_MAX_ROWS = 8;
export const EXPERIMENTAL_PRODUCT_ALL_FOLDER_LOOKUPS = 'queryProductAllFolderLookups';
export const EXPERIMENTAL_PRODUCT_FOLDER_DATA_LISTING_SCOPED = 'queryProductProjectDataListingScoped';
export const EXPERIMENTAL_REQUESTS_MENU = 'experimental-biologics-requests-menu';
export const EXPERIMENTAL_SAMPLE_ALIQUOT_SELECTOR = 'experimental-sample-aliquot-selector';

export const FOLDER_DATA_TYPE_EXCLUSIONS = 'dataTypeExclusions';
export const ARCHIVED_FOLDERS = 'archivedContainers';
Expand Down
5 changes: 0 additions & 5 deletions packages/components/src/internal/app/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import {
EXPERIMENTAL_PRODUCT_ALL_FOLDER_LOOKUPS,
EXPERIMENTAL_PRODUCT_FOLDER_DATA_LISTING_SCOPED,
EXPERIMENTAL_REQUESTS_MENU,
EXPERIMENTAL_SAMPLE_ALIQUOT_SELECTOR,
FOLDER_DATA_TYPE_EXCLUSIONS,
FREEZER_MANAGER_APP_PROPERTIES,
FREEZERS_KEY,
Expand Down Expand Up @@ -419,10 +418,6 @@ export function isFeatureEnabled(flag: ProductFeature, moduleContext?: ModuleCon
return resolveModuleContext(moduleContext)?.core?.productFeatures?.indexOf(flag) >= 0;
}

export function isSampleAliquotSelectorEnabled(moduleContext?: ModuleContext): boolean {
return resolveModuleContext(moduleContext)?.samplemanagement?.[EXPERIMENTAL_SAMPLE_ALIQUOT_SELECTOR] === true;
}

export function hasModule(moduleName: string, moduleContext?: ModuleContext): boolean {
return resolveModuleContext(moduleContext).api?.moduleNames?.indexOf(moduleName.toLowerCase()) >= 0;
}
Expand Down

This file was deleted.

This file was deleted.

Loading