@openmrs/esm-service-queues-app 9.2.1-pre.7125 → 9.2.1-pre.7126

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.
@@ -6,7 +6,8 @@
6
6
  .queueEntryStatusContainer {
7
7
  display: flex;
8
8
  align-items: center;
9
- gap: layout.$spacing-02;
9
+ column-gap: layout.$spacing-02;
10
+ margin: 0 layout.$spacing-02;
10
11
  }
11
12
 
12
13
  .navDivider {
@@ -1,7 +1,7 @@
1
1
  import React, { useMemo } from 'react';
2
2
  import { useTranslation } from 'react-i18next';
3
- import QueuePatientBaseTable from './queue-linelist-base-table.component';
4
3
  import { useServiceQueueEntries } from '../service-queues.resource';
4
+ import QueuePatientBaseTable from './queue-linelist-base-table.component';
5
5
 
6
6
  const ServicesTable: React.FC = () => {
7
7
  const { t } = useTranslation();
@@ -1,9 +1,9 @@
1
1
  import React from 'react';
2
+ import classNames from 'classnames';
2
3
  import { DefinitionTooltip, Tag } from '@carbon/react';
3
- import styles from './queue-priority.scss';
4
4
  import { type PriorityConfig } from '../../config-schema';
5
5
  import { type Concept } from '../../types';
6
- import classNames from 'classnames';
6
+ import styles from './queue-priority.scss';
7
7
 
8
8
  interface QueuePriorityProps {
9
9
  priority: Concept;
@@ -1,9 +1,9 @@
1
+ @use '@carbon/colors';
1
2
  @use '@carbon/layout';
2
3
  @use '@openmrs/esm-styleguide/src/vars' as *;
3
- @use '@carbon/colors';
4
4
 
5
5
  .tag {
6
- margin: layout.$spacing-02 0;
6
+ margin: 0 layout.$spacing-02;
7
7
  white-space: nowrap;
8
8
  }
9
9