@equinor/echo-components 0.11.18 → 0.11.20

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/echo-components",
3
- "version": "0.11.18",
3
+ "version": "0.11.20",
4
4
  "dependencies": {
5
5
  "chart.js": "4.4.6",
6
6
  "react-datepicker": "7.5.0",
@@ -21,7 +21,6 @@ export * from './iconLink/compactIconLink/CompactIconLink';
21
21
  export * from './iconLink/inlineTagIconLink/InlineTagIconLink';
22
22
  export * from './itemMarker/ItemMarker';
23
23
  export type { ItemMarkerChipProps } from './itemMarker/ItemMarkerChip';
24
- export * from './itemMarker/ItemMarkerExpanded';
25
24
  export * from './itemMarker/ItemMarkerIcon';
26
25
  export * from './itemMarker/MultipleItemMarkers';
27
26
  export * from './itemMarker/utils/itemMarkerUtils';
@@ -1,8 +1,14 @@
1
1
  import { TabProps, Tabs } from '@equinor/eds-core-react';
2
2
  import { ReactElement } from 'react';
3
3
  export type PredefinedTab = {
4
+ /** The tab content. */
4
5
  title: string;
6
+ /** Options which are passed on to Tabs.Tab component. */
5
7
  options?: TabProps;
8
+ variant?: {
9
+ /** Title is preceeded by a circular loading indicator. */
10
+ loading?: boolean;
11
+ };
6
12
  };
7
13
  export interface MultilineTabsProps {
8
14
  className?: string;
@@ -10,19 +10,44 @@ export interface WorkOrderItem {
10
10
  orderType: string;
11
11
  isActive: boolean;
12
12
  requiredEndDateTime?: Date;
13
+ requiredEndDateStatus?: string;
14
+ requiredEndDateStatusDescription?: string;
13
15
  maintenancePlanDate?: Date;
14
16
  planningPlant?: string;
17
+ planningPlantId?: string;
18
+ basicFinishDateTime?: Date;
19
+ basicFinishDateStatus?: string;
20
+ basicFinishDateStatusDescription?: string;
21
+ earlyStartDate?: Date;
22
+ earlyFinishDate?: Date;
15
23
  description?: string;
24
+ title?: string;
16
25
  workCenter?: string;
17
26
  workCenterId?: string;
18
- requiredEndDateStatus?: string;
19
27
  operationId?: string;
20
- earlyStartDate?: Date;
21
- earlyFinishDate?: Date;
22
- basicFinishDateStatus?: string;
23
- basicFinishDateTime?: Date;
24
28
  sortField?: string;
25
29
  hasPrts?: boolean;
26
30
  recordTypeIds?: string[];
27
31
  hasB30Document?: boolean;
32
+ activeStatusIds?: string;
33
+ userStatus?: string;
34
+ tag?: {
35
+ functionalLocationId?: string;
36
+ tagId?: string;
37
+ plantId?: string;
38
+ categoryId?: string;
39
+ category?: string;
40
+ instCode?: string;
41
+ };
42
+ plannerGroupId?: string;
43
+ plantId?: string;
44
+ instCode?: string;
45
+ functionalLocationId?: string;
46
+ tagPlantId?: string;
47
+ tagId?: string;
48
+ tagCategory?: string;
49
+ tagCategoryId?: string;
50
+ mapLocationId?: string;
51
+ maintenancePlantId?: string;
52
+ maintenancePlant?: string;
28
53
  }
@@ -1,7 +0,0 @@
1
- interface ItemMarkerExpandedProps {
2
- title: string;
3
- description: string;
4
- onClick?: () => void;
5
- }
6
- export declare const ItemMarkerExpanded: ({ title, description, onClick }: ItemMarkerExpandedProps) => import("react/jsx-runtime").JSX.Element;
7
- export {};