@equinor/amplify-component-lib 10.0.6 → 10.2.0
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/dist/atoms/hooks/useLocalStorage.d.ts +2 -2
- package/dist/atoms/hooks/useSelect.d.ts +3 -3
- package/dist/atoms/hooks/useStatusNavigation.d.ts +19 -0
- package/dist/atoms/hooks/useStatusNavigation.js +1 -0
- package/dist/atoms/index.d.ts +1 -0
- package/dist/atoms/index.js +1 -1
- package/dist/atoms/style/colors.d.ts +3 -0
- package/dist/atoms/style/colors.js +1 -1
- package/dist/atoms/style/darkTokens.js +1 -0
- package/dist/atoms/style/lightTokens.js +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/molecules/Badge/Badge.styles.js +1 -1
- package/dist/molecules/Dialog/Dialog.d.ts +2 -2
- package/dist/molecules/EquinorLogo/EquinorLogo.d.ts +2 -2
- package/dist/molecules/IconCell/IconCell.d.ts +2 -2
- package/dist/molecules/ListItem/ListItem.d.ts +2 -2
- package/dist/molecules/OptionDrawer/OptionDrawer.d.ts +2 -2
- package/dist/molecules/OptionalTooltip/OptionalTooltip.d.ts +4 -4
- package/dist/molecules/ProfileAvatar/ProfileAvatar.d.ts +2 -2
- package/dist/molecules/RichTextEditor/MenuBar/MenuBar.d.ts +5 -5
- package/dist/molecules/Search/Search.d.ts +2 -2
- package/dist/molecules/Select/ComboBox/ComboBox.d.ts +2 -2
- package/dist/molecules/Select/Select.styles.d.ts +4 -4
- package/dist/molecules/Select/SingleSelect/SingleSelect.d.ts +2 -2
- package/dist/molecules/SelectionControls/Checkbox/Checkbox.d.ts +2 -2
- package/dist/molecules/SelectionControls/Radio/Radio.d.ts +2 -2
- package/dist/molecules/SelectionControls/Switch/Switch.d.ts +2 -2
- package/dist/molecules/Skeleton/SkeletonBase/SkeletonBase.d.ts +2 -2
- package/dist/organisms/Filter/Filter.d.ts +2 -2
- package/dist/organisms/Filter/QuickFilter.d.ts +2 -2
- package/dist/organisms/Filter/SortMenu.d.ts +2 -2
- package/dist/organisms/ReleaseNotesPage/ReleaseNotesPage.js +1 -1
- package/dist/organisms/SideBar/SideBar.d.ts +2 -2
- package/dist/organisms/Status/Action.d.ts +2 -2
- package/dist/organisms/Status/Description.d.ts +2 -2
- package/dist/organisms/Status/MissingAccesses.d.ts +2 -2
- package/dist/organisms/Status/Title.d.ts +2 -2
- package/dist/organisms/Status/collections/BadRequest.d.ts +13 -2
- package/dist/organisms/Status/collections/BadRequest.js +2 -2
- package/dist/organisms/Status/collections/GenericError.d.ts +15 -2
- package/dist/organisms/Status/collections/GenericError.js +1 -1
- package/dist/organisms/Status/collections/MissingPermissions.d.ts +15 -2
- package/dist/organisms/Status/collections/MissingPermissions.js +1 -1
- package/dist/organisms/Status/collections/PageNotFound.d.ts +13 -2
- package/dist/organisms/Status/collections/PageNotFound.js +1 -2
- package/dist/organisms/Status/collections/ServerError.d.ts +13 -2
- package/dist/organisms/Status/collections/ServerError.js +2 -2
- package/dist/organisms/TableOfContents/TableOfContents.constants.js +1 -1
- package/dist/organisms/TableOfContents/TableOfContents.d.ts +2 -3
- package/dist/organisms/TableOfContents/TableOfContents.js +1 -1
- package/dist/organisms/TableOfContents/TableOfContents.styles.js +56 -138
- package/dist/organisms/TableOfContents/TableOfContents.types.d.ts +2 -2
- package/dist/organisms/TableOfContents/TableOfContentsItem.js +1 -5
- package/dist/organisms/TopBar/Actions.d.ts +2 -2
- package/dist/organisms/TopBar/FieldMenu/FieldMenu.d.ts +2 -2
- package/dist/organisms/TopBar/Notifications/NotificationProvider.d.ts +2 -2
- package/dist/providers/AuthProvider/AuthProviderInner.js +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react123 from "react";
|
|
2
2
|
|
|
3
3
|
//#region src/atoms/hooks/useLocalStorage.d.ts
|
|
4
|
-
declare const useLocalStorage: <T>(key: string, defaultState: T, keepAliveMs?: number) => readonly [T,
|
|
4
|
+
declare const useLocalStorage: <T>(key: string, defaultState: T, keepAliveMs?: number) => readonly [T, react123.Dispatch<react123.SetStateAction<T>>, () => void];
|
|
5
5
|
//#endregion
|
|
6
6
|
export { useLocalStorage };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SelectOption, SelectOptionRequired } from "../../molecules/Select/Select.types.js";
|
|
2
2
|
import { SelectComponentProps } from "../../molecules/Select/Select.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react125 from "react";
|
|
4
4
|
import { ChangeEvent, KeyboardEvent } from "react";
|
|
5
5
|
|
|
6
6
|
//#region src/atoms/hooks/useSelect.d.ts
|
|
@@ -16,8 +16,8 @@ declare const useSelect: <T extends SelectOptionRequired>(props: SelectComponent
|
|
|
16
16
|
handleOnOpen: () => void;
|
|
17
17
|
handleOnRemoveItem: (item: SelectOption<T>) => void;
|
|
18
18
|
search: string;
|
|
19
|
-
searchRef:
|
|
20
|
-
itemRefs:
|
|
19
|
+
searchRef: react125.RefObject<HTMLInputElement | null>;
|
|
20
|
+
itemRefs: react125.RefObject<(HTMLButtonElement | null)[]>;
|
|
21
21
|
selectedValues: T[];
|
|
22
22
|
open: boolean;
|
|
23
23
|
tryingToRemoveItem: T | undefined;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
//#region src/atoms/hooks/useStatusNavigation.d.ts
|
|
2
|
+
interface UseStatusNavigationOptions {
|
|
3
|
+
/**
|
|
4
|
+
* Custom callback to execute instead of default navigation
|
|
5
|
+
*/
|
|
6
|
+
onBackClick?: () => void;
|
|
7
|
+
/**
|
|
8
|
+
* Fallback URL to navigate to when there's no browser history
|
|
9
|
+
* Defaults to '/' if not provided
|
|
10
|
+
*/
|
|
11
|
+
redirectFallbackUrl?: string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Hook for handling navigation in Status components
|
|
15
|
+
* Provides a consistent way to handle back navigation with fallbacks
|
|
16
|
+
*/
|
|
17
|
+
declare const useStatusNavigation: (options?: UseStatusNavigationOptions) => () => void;
|
|
18
|
+
//#endregion
|
|
19
|
+
export { useStatusNavigation };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{useRouter as e}from"@tanstack/react-router";const t=(t={})=>{let{onBackClick:n,redirectFallbackUrl:r}=t,{history:i,navigate:a}=e();return()=>{n?n():i.length>1?i.go(-1):a({to:r||`/`})}};export{t as useStatusNavigation};
|
package/dist/atoms/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { useFakeProgress } from "./hooks/useFakeProgress.js";
|
|
|
12
12
|
import { useLocalStorage } from "./hooks/useLocalStorage.js";
|
|
13
13
|
import { usePrevious } from "./hooks/usePrevious.js";
|
|
14
14
|
import { useSelect } from "./hooks/useSelect.js";
|
|
15
|
+
import { useStatusNavigation } from "./hooks/useStatusNavigation.js";
|
|
15
16
|
import { useOnScreenMultiple } from "./hooks/useOnScreenMultiple.js";
|
|
16
17
|
import { useNotification } from "../organisms/TopBar/Notifications/NotificationProvider.js";
|
|
17
18
|
import { usePrefetchRichTextImages } from "./hooks/usePrefetchRichTextImages.js";
|
package/dist/atoms/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{EnvironmentType as e}from"./enums/Environment.js";import{auth as ee,environment as t}from"./utils/auth_environment.js";import{animation as te}from"./style/animation.js";import{colors as n}from"./style/colors.js";import{spacings as r}from"./style/spacings.js";import{elevation as i,shape as a,style_exports as o,typography as s}from"./style/index.js";import{formatLatLng as c,formatUtm as l}from"./utils/coordinate.js";import{formatDate as u,formatDateTime as d,formatRelativeDateTime as f,isBetweenDates as p}from"./utils/date.js";import{exportComponent as m}from"./utils/export.js";import{setupIcons as h}from"./utils/favicon.js";import{convertLatLngToUtm as g,convertUtmToLatLng as _,degrees2radians as v,distanceLatLng as y,utmProjection as b}from"./utils/map.js";import{defaultQueryOptions as x}from"./utils/reactquery.js";import{IMG_WITH_ALT as S,IMG_WITH_SRC_AND_ALT as C,cleanRichTextValue as w,extractImageUrls as T,getFeatures as E,getImagesFromRichText as D,imageToB64 as O}from"./utils/richtext.js";import{formatBytes as k,formatDataSize as A,formatKiloBytes as j}from"./utils/size.js";import{sortByDate as M,sortByWellboreName as N}from"./utils/sort.js";import{Empty as P,capitalize as F}from"./utils/string.js";import{isValidUrl as I}from"./utils/url.js";import{getHighlightElementBoundingBox as L,highlightTutorialElementID as R}from"./utils/tutorials.js";import{getVariantIcon as z}from"./utils/forms.js";import{useAuth as B}from"../providers/AuthProvider/AuthProvider.js";import{useSideBar as V}from"../providers/SideBarProvider.js";import{useSnackbar as H}from"../providers/SnackbarProvider/SnackbarProvider.js";import{useOnScreenMultiple as U}from"./hooks/useOnScreenMultiple.js";import{useTableOfContents as W}from"../providers/TableOfContentsProvider.js";import{useLocalStorage as G}from"./hooks/useLocalStorage.js";import{useAmplifyKit as K}from"./hooks/useAmplifyKit.js";import{useDebounce as q}from"./hooks/useDebounce.js";import{useFakeProgress as J}from"./hooks/useFakeProgress.js";import{usePrevious as Y}from"./hooks/usePrevious.js";import{useSelect as X}from"./hooks/useSelect.js";import{
|
|
1
|
+
import{EnvironmentType as e}from"./enums/Environment.js";import{auth as ee,environment as t}from"./utils/auth_environment.js";import{animation as te}from"./style/animation.js";import{colors as n}from"./style/colors.js";import{spacings as r}from"./style/spacings.js";import{elevation as i,shape as a,style_exports as o,typography as s}from"./style/index.js";import{formatLatLng as c,formatUtm as l}from"./utils/coordinate.js";import{formatDate as u,formatDateTime as d,formatRelativeDateTime as f,isBetweenDates as p}from"./utils/date.js";import{exportComponent as m}from"./utils/export.js";import{setupIcons as h}from"./utils/favicon.js";import{convertLatLngToUtm as g,convertUtmToLatLng as _,degrees2radians as v,distanceLatLng as y,utmProjection as b}from"./utils/map.js";import{defaultQueryOptions as x}from"./utils/reactquery.js";import{IMG_WITH_ALT as S,IMG_WITH_SRC_AND_ALT as C,cleanRichTextValue as w,extractImageUrls as T,getFeatures as E,getImagesFromRichText as D,imageToB64 as O}from"./utils/richtext.js";import{formatBytes as k,formatDataSize as A,formatKiloBytes as j}from"./utils/size.js";import{sortByDate as M,sortByWellboreName as N}from"./utils/sort.js";import{Empty as P,capitalize as F}from"./utils/string.js";import{isValidUrl as I}from"./utils/url.js";import{getHighlightElementBoundingBox as L,highlightTutorialElementID as R}from"./utils/tutorials.js";import{getVariantIcon as z}from"./utils/forms.js";import{useAuth as B}from"../providers/AuthProvider/AuthProvider.js";import{useSideBar as V}from"../providers/SideBarProvider.js";import{useSnackbar as H}from"../providers/SnackbarProvider/SnackbarProvider.js";import{useOnScreenMultiple as U}from"./hooks/useOnScreenMultiple.js";import{useTableOfContents as W}from"../providers/TableOfContentsProvider.js";import{useLocalStorage as G}from"./hooks/useLocalStorage.js";import{useAmplifyKit as K}from"./hooks/useAmplifyKit.js";import{useDebounce as q}from"./hooks/useDebounce.js";import{useFakeProgress as J}from"./hooks/useFakeProgress.js";import{usePrevious as Y}from"./hooks/usePrevious.js";import{useSelect as X}from"./hooks/useSelect.js";import{useStatusNavigation as Z}from"./hooks/useStatusNavigation.js";import{useNotification as Q}from"../organisms/TopBar/Notifications/NotificationProvider.js";import{useStepper as ne}from"../providers/StepperProvider.js";import{Theme as re}from"./enums/Theme.js";import{useThemeProvider as ie}from"../providers/ThemeProvider/ThemeProvider.js";import{usePrefetchRichTextImages as ae}from"./hooks/usePrefetchRichTextImages.js";import{useFaqsInApplication as oe}from"./hooks/useFaqsInApplication.js";import{ErrorType as se}from"./enums/Errors.js";import{SpacingsMode as ce}from"./enums/SpacingsMode.js";import{amplify_failure as le,amplify_lwd as ue,amplify_success as de,amplify_wellbore as fe,amplify_wireline as pe,amplify_wireline_cased_hole as me,amplify_wireline_open_hole as he}from"./icons/drilling.js";import{amplify_calculator as ge,amplify_overlay as _e,amplify_sidebyside as ve}from"./icons/map.js";import{amplify_aml as ye,amplify_arrow_up_down as be,amplify_branch as xe,amplify_info_small as Se,amplify_merged as Ce,amplify_overview as we,amplify_resources as Te,amplify_sharepoint as Ee,amplify_shield_person as De,amplify_small_portal as Oe,amplify_snail as ke,amplify_sort_small as Ae,amplify_tutorials as je}from"./icons/other.js";import{amplify_h1 as Me,amplify_h2 as Ne,amplify_h3 as Pe,amplify_h4 as Fe,amplify_table_add_column_left as Ie,amplify_table_add_column_right as Le,amplify_table_add_row_above as Re,amplify_table_add_row_below as ze,amplify_table_column_heading as Be,amplify_table_merge_cells as Ve,amplify_table_remove_column as He,amplify_table_remove_row as Ue,amplify_table_row_heading as We,amplify_table_split_cell as Ge}from"./icons/wysiwyg.js";import{useReleaseNotes as Ke}from"../providers/ReleaseNotesProvider.js";const $=o;export{$ as style};
|
|
@@ -66,6 +66,9 @@ declare const colors: {
|
|
|
66
66
|
readonly tutorial__inactive_step: {
|
|
67
67
|
readonly rgba: "var(--amplify_interactive_tutorial_inactive_step, rgba(168, 206, 209, 1))";
|
|
68
68
|
};
|
|
69
|
+
readonly inner_hover: {
|
|
70
|
+
readonly rgba: "var(--amplify_interactive_inner_hover, rgba(198, 223, 225, 1))";
|
|
71
|
+
};
|
|
69
72
|
readonly primary__selected_highlight: {
|
|
70
73
|
hex: string;
|
|
71
74
|
hsla: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{tokens as e}from"../../node_modules/@equinor/eds-tokens/dist/esm/base/index.js";const{colors:t}=e,n={...t,ui:{...t.ui,background__light_medium:{rgba:`var(--amplify_ui_background_light_medium, rgba(235, 235, 235, 1))`},background__heavy:{rgba:`var(--amplify_ui_background_heavy, rgba(189, 189, 189, 1))`},background__tutorial_card:{rgba:`var(--amplify_ui_background_tutorial_card, rgba(222, 237, 238, 1))`}},interactive:{...t.interactive,primary__pressed:{rgba:`var(--amplify_interactive_primary_pressed, rgba(19, 46, 49, 1))`},tutorial__active_step:{rgba:`var(--amplify_interactive_tutorial_active_step, rgba(0, 112, 121, 1))`},tutorial__inactive_step:{rgba:`var(--amplify_interactive_tutorial_inactive_step, rgba(168, 206, 209, 1))`}},dataviz:{primary:{default:`var(--amplify_dataviz_primary_default, rgba(0, 107, 229, 1))`,darker:`var(--amplify_dataviz_primary_darker, rgba(0, 83, 178, 1))`,lighter:`var(--amplify_dataviz_primary_lighter, rgba(206, 229, 255, 1))`,primary10:`var(--amplify_dataviz_primary_10, rgba(235, 245, 255, 1))`,primary20:`var(--amplify_dataviz_primary_20, rgba(211, 231, 253, 1))`,primary30:`var(--amplify_dataviz_primary_30, rgba(167, 206, 251, 1))`,primary40:`var(--amplify_dataviz_primary_40, rgba(133, 187, 250, 1))`,primary50:`var(--amplify_dataviz_primary_50, rgba(89, 163, 248, 1))`,primary60:`var(--amplify_dataviz_primary_60, rgba(40, 136, 246, 1))`,primary70:`var(--amplify_dataviz_primary_70, rgba(0, 107, 229, 1))`,primary80:`var(--amplify_dataviz_primary_80, rgba(0, 83, 178, 1))`,primary90:`var(--amplify_dataviz_primary_90, rgba(5, 60, 122, 1))`},darkblue:{default:`var(--amplify_dataviz_darkblue_default, rgba(0, 71, 153, 1))`,darker:`var(--amplify_dataviz_darkblue_darker, rgba(4, 48, 98, 1))`,lighter:`var(--amplify_dataviz_darkblue_lighter, rgba(191, 220, 252, 1))`},lightblue:{default:`var(--amplify_dataviz_lightblue_default, rgba(133, 208, 250, 1))`,darker:`var(--amplify_dataviz_lightblue_darker, rgba(35, 170, 246, 1))`,lighter:`var(--amplify_dataviz_lightblue_lighter, rgba(211, 238, 253, 1))`},lightgreen:{default:`var(--amplify_dataviz_lightgreen_default, rgba(10, 194, 154, 1))`,darker:`var(--amplify_dataviz_lightgreen_darker, rgba(8, 145, 115, 1))`,lighter:`var(--amplify_dataviz_lightgreen_lighter, rgba(220, 241, 236, 1))`},darkgreen:{default:`var(--amplify_dataviz_darkgreen_default, rgba(0, 102, 76, 1))`,darker:`var(--amplify_dataviz_darkgreen_darker, rgba(0, 61, 46, 1))`,lighter:`var(--amplify_dataviz_darkgreen_lighter, rgba(200, 237, 227, 1))`},darkpink:{default:`var(--amplify_dataviz_darkpink_default, rgba(169, 30, 88, 1))`,darker:`var(--amplify_dataviz_darkpink_darker, rgba(135, 18, 67, 1))`,lighter:`var(--amplify_dataviz_darkpink_lighter, rgba(252, 212, 229, 1))`},lightpink:{default:`var(--amplify_dataviz_lightpink_default, rgba(255, 128, 138, 1))`,darker:`var(--amplify_dataviz_lightpink_darker, rgba(225, 81, 93, 1))`,lighter:`var(--amplify_dataviz_lightpink_lighter, rgba(255, 219, 222, 1))`},darkyellow:{default:`var(--amplify_dataviz_darkyellow_default, rgba(160, 112, 28, 1))`,darker:`var(--amplify_dataviz_darkyellow_darker, rgba(121, 85, 21, 1))`,lighter:`var(--amplify_dataviz_darkyellow_lighter, rgba(244, 226, 195, 1))`},lightyellow:{default:`var(--amplify_dataviz_lightyellow_default, rgba(253, 203, 53, 1))`,darker:`var(--amplify_dataviz_lightyellow_darker, rgba(227, 171, 2, 1))`,lighter:`var(--amplify_dataviz_lightyellow_lighter, rgba(255, 240, 194, 1))`},darkpurple:{default:`var(--amplify_dataviz_darkpurple_default, rgba(147, 20, 219, 1))`,darker:`var(--amplify_dataviz_darkpurple_darker, rgba(97, 1, 152, 1))`,lighter:`var(--amplify_dataviz_darkpurple_lighter, rgba(232, 209, 246, 1))`},lightpurple:{default:`var(--amplify_dataviz_lightpurple_default, rgba(186, 153, 255, 1))`,darker:`var(--amplify_dataviz_lightpurple_darker, rgba(155, 89, 242, 1))`,lighter:`var(--amplify_dataviz_lightpurple_lighter, rgba(234, 224, 255, 1))`},darkgray:{default:`var(--amplify_dataviz_darkgray_default, rgba(122, 122, 122,1))`,darker:`var(--amplify-dataviz_darkgray_darker, rgba(86, 86, 86,1))`,lighter:`var(--amplify-dataviz_darkgray_lighter, rgba(173, 173, 173, 1))`},lightgray:{default:`var(--amplify_dataviz_lightgray_default, rgba(144, 155, 162, 1))`,darker:`var(--amplify_dataviz_lightgray_darker, rgba(91, 102, 108, 1))`,lighter:`var(--amplify_dataviz_lightgray_lighter, rgba(194, 200, 204, 1))`}}},r={warning:n.interactive.warning__resting.rgba,error:n.interactive.danger__resting.rgba,success:n.interactive.success__resting.rgba,dirty:n.infographic.substitute__blue_ocean.rgba},i={warning:n.interactive.warning__hover.rgba,error:n.interactive.danger__hover.rgba,success:n.interactive.success__hover.rgba,dirty:n.infographic.substitute__blue_ocean.rgba};export{r as VARIANT_COLORS,i as VARIANT_HELPER_TEXT_COLORS,n as colors};
|
|
1
|
+
import{tokens as e}from"../../node_modules/@equinor/eds-tokens/dist/esm/base/index.js";const{colors:t}=e,n={...t,ui:{...t.ui,background__light_medium:{rgba:`var(--amplify_ui_background_light_medium, rgba(235, 235, 235, 1))`},background__heavy:{rgba:`var(--amplify_ui_background_heavy, rgba(189, 189, 189, 1))`},background__tutorial_card:{rgba:`var(--amplify_ui_background_tutorial_card, rgba(222, 237, 238, 1))`}},interactive:{...t.interactive,primary__pressed:{rgba:`var(--amplify_interactive_primary_pressed, rgba(19, 46, 49, 1))`},tutorial__active_step:{rgba:`var(--amplify_interactive_tutorial_active_step, rgba(0, 112, 121, 1))`},tutorial__inactive_step:{rgba:`var(--amplify_interactive_tutorial_inactive_step, rgba(168, 206, 209, 1))`},inner_hover:{rgba:`var(--amplify_interactive_inner_hover, rgba(198, 223, 225, 1))`}},dataviz:{primary:{default:`var(--amplify_dataviz_primary_default, rgba(0, 107, 229, 1))`,darker:`var(--amplify_dataviz_primary_darker, rgba(0, 83, 178, 1))`,lighter:`var(--amplify_dataviz_primary_lighter, rgba(206, 229, 255, 1))`,primary10:`var(--amplify_dataviz_primary_10, rgba(235, 245, 255, 1))`,primary20:`var(--amplify_dataviz_primary_20, rgba(211, 231, 253, 1))`,primary30:`var(--amplify_dataviz_primary_30, rgba(167, 206, 251, 1))`,primary40:`var(--amplify_dataviz_primary_40, rgba(133, 187, 250, 1))`,primary50:`var(--amplify_dataviz_primary_50, rgba(89, 163, 248, 1))`,primary60:`var(--amplify_dataviz_primary_60, rgba(40, 136, 246, 1))`,primary70:`var(--amplify_dataviz_primary_70, rgba(0, 107, 229, 1))`,primary80:`var(--amplify_dataviz_primary_80, rgba(0, 83, 178, 1))`,primary90:`var(--amplify_dataviz_primary_90, rgba(5, 60, 122, 1))`},darkblue:{default:`var(--amplify_dataviz_darkblue_default, rgba(0, 71, 153, 1))`,darker:`var(--amplify_dataviz_darkblue_darker, rgba(4, 48, 98, 1))`,lighter:`var(--amplify_dataviz_darkblue_lighter, rgba(191, 220, 252, 1))`},lightblue:{default:`var(--amplify_dataviz_lightblue_default, rgba(133, 208, 250, 1))`,darker:`var(--amplify_dataviz_lightblue_darker, rgba(35, 170, 246, 1))`,lighter:`var(--amplify_dataviz_lightblue_lighter, rgba(211, 238, 253, 1))`},lightgreen:{default:`var(--amplify_dataviz_lightgreen_default, rgba(10, 194, 154, 1))`,darker:`var(--amplify_dataviz_lightgreen_darker, rgba(8, 145, 115, 1))`,lighter:`var(--amplify_dataviz_lightgreen_lighter, rgba(220, 241, 236, 1))`},darkgreen:{default:`var(--amplify_dataviz_darkgreen_default, rgba(0, 102, 76, 1))`,darker:`var(--amplify_dataviz_darkgreen_darker, rgba(0, 61, 46, 1))`,lighter:`var(--amplify_dataviz_darkgreen_lighter, rgba(200, 237, 227, 1))`},darkpink:{default:`var(--amplify_dataviz_darkpink_default, rgba(169, 30, 88, 1))`,darker:`var(--amplify_dataviz_darkpink_darker, rgba(135, 18, 67, 1))`,lighter:`var(--amplify_dataviz_darkpink_lighter, rgba(252, 212, 229, 1))`},lightpink:{default:`var(--amplify_dataviz_lightpink_default, rgba(255, 128, 138, 1))`,darker:`var(--amplify_dataviz_lightpink_darker, rgba(225, 81, 93, 1))`,lighter:`var(--amplify_dataviz_lightpink_lighter, rgba(255, 219, 222, 1))`},darkyellow:{default:`var(--amplify_dataviz_darkyellow_default, rgba(160, 112, 28, 1))`,darker:`var(--amplify_dataviz_darkyellow_darker, rgba(121, 85, 21, 1))`,lighter:`var(--amplify_dataviz_darkyellow_lighter, rgba(244, 226, 195, 1))`},lightyellow:{default:`var(--amplify_dataviz_lightyellow_default, rgba(253, 203, 53, 1))`,darker:`var(--amplify_dataviz_lightyellow_darker, rgba(227, 171, 2, 1))`,lighter:`var(--amplify_dataviz_lightyellow_lighter, rgba(255, 240, 194, 1))`},darkpurple:{default:`var(--amplify_dataviz_darkpurple_default, rgba(147, 20, 219, 1))`,darker:`var(--amplify_dataviz_darkpurple_darker, rgba(97, 1, 152, 1))`,lighter:`var(--amplify_dataviz_darkpurple_lighter, rgba(232, 209, 246, 1))`},lightpurple:{default:`var(--amplify_dataviz_lightpurple_default, rgba(186, 153, 255, 1))`,darker:`var(--amplify_dataviz_lightpurple_darker, rgba(155, 89, 242, 1))`,lighter:`var(--amplify_dataviz_lightpurple_lighter, rgba(234, 224, 255, 1))`},darkgray:{default:`var(--amplify_dataviz_darkgray_default, rgba(122, 122, 122,1))`,darker:`var(--amplify-dataviz_darkgray_darker, rgba(86, 86, 86,1))`,lighter:`var(--amplify-dataviz_darkgray_lighter, rgba(173, 173, 173, 1))`},lightgray:{default:`var(--amplify_dataviz_lightgray_default, rgba(144, 155, 162, 1))`,darker:`var(--amplify_dataviz_lightgray_darker, rgba(91, 102, 108, 1))`,lighter:`var(--amplify_dataviz_lightgray_lighter, rgba(194, 200, 204, 1))`}}},r={warning:n.interactive.warning__resting.rgba,error:n.interactive.danger__resting.rgba,success:n.interactive.success__resting.rgba,dirty:n.infographic.substitute__blue_ocean.rgba},i={warning:n.interactive.warning__hover.rgba,error:n.interactive.danger__hover.rgba,success:n.interactive.success__hover.rgba,dirty:n.infographic.substitute__blue_ocean.rgba};export{r as VARIANT_COLORS,i as VARIANT_HELPER_TEXT_COLORS,n as colors};
|
|
@@ -8,6 +8,7 @@ import{css as e}from"styled-components";const t=e`
|
|
|
8
8
|
|
|
9
9
|
--amplify_interactive_tutorial_active_step: rgba(154, 202, 206, 1);
|
|
10
10
|
--amplify_interactive_tutorial_inactive_step: rgba(96, 125, 127, 1);
|
|
11
|
+
--amplify_interactive_inner_hover: rgba(101, 133, 135, 1);
|
|
11
12
|
|
|
12
13
|
/* Override super specific text colors to just default text color */
|
|
13
14
|
--eds_heading__h1_bold_color: var(--eds_text_static_icons__default);
|
|
@@ -7,6 +7,7 @@ import{css as e}from"styled-components";const t=e`
|
|
|
7
7
|
--amplify_interactive_primary_pressed: rgba(19, 46, 49, 1);
|
|
8
8
|
--amplify_interactive_tutorial_active_step: rgba(0, 112, 121, 1);
|
|
9
9
|
--amplify_interactive_tutorial_inactive_step: rgba(168, 206, 209, 1);
|
|
10
|
+
--amplify_interactive_inner_hover: rgba(198, 223, 225, 1);
|
|
10
11
|
|
|
11
12
|
--amplify_dataviz_primary_default: rgba(0, 107, 229, 1);
|
|
12
13
|
--amplify_dataviz_primary_darker: rgba(0, 83, 178, 1);
|
package/dist/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { useLocalStorage } from "./atoms/hooks/useLocalStorage.js";
|
|
|
17
17
|
import { usePrevious } from "./atoms/hooks/usePrevious.js";
|
|
18
18
|
import { SelectOption, SelectOptionRequired } from "./molecules/Select/Select.types.js";
|
|
19
19
|
import { useSelect } from "./atoms/hooks/useSelect.js";
|
|
20
|
+
import { useStatusNavigation } from "./atoms/hooks/useStatusNavigation.js";
|
|
20
21
|
import { useOnScreenMultiple } from "./atoms/hooks/useOnScreenMultiple.js";
|
|
21
22
|
import { useNotification } from "./organisms/TopBar/Notifications/NotificationProvider.js";
|
|
22
23
|
import { usePrefetchRichTextImages } from "./atoms/hooks/usePrefetchRichTextImages.js";
|
|
@@ -121,4 +122,4 @@ import { Card, CardProps, DataGridProps } from "./organisms/index.js";
|
|
|
121
122
|
import { ExpandingIconButton } from "./deprecated/ExpandingIconButton/ExpandingIconButton.js";
|
|
122
123
|
import { IconToggleButton } from "./deprecated/IconToggleButton.js";
|
|
123
124
|
import { OldStepper } from "./deprecated/OldStepper/OldStepper.js";
|
|
124
|
-
export { Accordion, AccordionHeaderActionsProps, AccordionHeaderProps, AccordionHeaderTitleProps, AccordionItemProps, AccordionPanelProps, AccordionProps, AmplifyBar, AmplifyKit, AnimatedCheckmark, ApiResponseError, AppIconProps, ApplicationIcon, ApplicationIconProps, AuthProvider, BadRequest, Badge, BadgeProps, Banner, BannerProps, BaseChipProps, BasicSideBarMenuItem, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonProps, Card, CardProps, Checkbox, CheckboxProps, Chip, CircularProgress, CircularProgressProps, ComboBox, ComboBoxChip, ContentProps, DEFAULT_FEATURES, DataGrid, DataGridProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerProps, Dialog, DialogAction, DialogProps, Divider, DividerProps, DotProgress, DotProgressProps, EDSDialog, EDSDialogProps, EditorMenu, EditorPanel, EditorText, ElementItem, Empty, EnvironmentType, EquinorLogo, EquinorLogoProps, ErrorContentType, ErrorType, ExpandingIconButton, Faq, FeaturesProps, FeedBackIcon, FeedBackIconProps, Field, FieldSelector, FieldSelectorProps, FileProgress, FileProgressProps, FileProgressPropsExtension, FileUploadArea, FileUploadAreaProps, Filter, FilterType, FullPageSpinner, FullPageSpinnerProps, GenericError, GroupedComboBoxProps, GroupedSingleSelectProps, GuidelineItem, GuidelineSections, IMG_WITH_ALT, IMG_WITH_SRC_AND_ALT, Icon, IconCell, IconCellColor, IconCellColorObject, IconCellColors, IconCellProps, IconCellState, IconCellStates, IconCellVariant, IconCellVariants, IconItem, IconProps, IconToggleButton, ImageExtensionFnProps, InfoElement, InfoElementProps, ItemType, LinearProgress, LinearProgressProps, ListComboBoxProps, ListItem, ListItemProps, ListSingleSelectProps, LoadingProvider, Menu, MenuProps, MissingAccessToApp, MissingPermissions, OldStepper, OptionDrawer, OptionDrawerProps, OptionDrawerSelectItem, OptionalTooltip, OptionalTooltipProps, PageNotFound, PageTitle, ProfileAvatar, ProfileAvatarProps, Radio, RadioProps, ReleaseNote, ReleaseNoteProps, ReleaseNotesPage, ReleaseNotesProvider, RichText, RichTextDisplay, RichTextDisplayProps, RichTextEditor, RichTextEditorFeatures, RichTextEditorProps, Search, SearchProps, SelectOption, SelectOptionRequired, ServerError, SettingsSection, SideBar, SideBarMenuItem, SideBarMenuItemWithItems, SideBarProvider, SingleSelect, SizeIconProps, SkeletonBase, SkeletonBaseProps, SkeletonGradient, SkeletonGradientProps, SnackbarProvider, SpacingsMode, Status, Stepper, StepperProps, StepperProvider, Switch, SwitchProps, Tab, TableMenuBar, TableOfContents, TableOfContentsItemType, TableOfContentsProps, TableOfContentsProvider, Tabs, TabsProps, Template, TemplateType, TextField, TextFieldProps, TextTable, Theme, ThemeProvider, ToggleGroup, TopBar, TutorialHighlight, TutorialHighlightingProvider, Typography, TypographyProps, Waves, amplify_aml, amplify_arrow_up_down, amplify_branch, amplify_calculator, amplify_failure, amplify_h1, amplify_h2, amplify_h3, amplify_h4, amplify_info_small, amplify_lwd, amplify_merged, amplify_overlay, amplify_overview, amplify_resources, amplify_sharepoint, amplify_shield_person, amplify_sidebyside, amplify_small_portal, amplify_snail, amplify_sort_small, amplify_success, amplify_table_add_column_left, amplify_table_add_column_right, amplify_table_add_row_above, amplify_table_add_row_below, amplify_table_column_heading, amplify_table_merge_cells, amplify_table_remove_column, amplify_table_remove_row, amplify_table_row_heading, amplify_table_split_cell, amplify_tutorials, amplify_wellbore, amplify_wireline, amplify_wireline_cased_hole, amplify_wireline_open_hole, animation, auth, capitalize, cleanRichTextValue, colors, convertLatLngToUtm, convertUtmToLatLng, defaultQueryOptions, degrees2radians, distanceLatLng, elevation, environment, exportComponent, extractImageUrls, formatBytes, formatDataSize, formatDate, formatDateTime, formatKiloBytes, formatLatLng, formatRelativeDateTime, formatUtm, getFeatures, getHighlightElementBoundingBox, getImagesFromRichText, getVariantIcon, highlightTutorialElementID, imageToB64, isBetweenDates, isValidUrl, setupIcons, shape, skeletonBaseloading, sortByDate, sortByWellboreName, spacings, style, typography, useAmplifyKit, useAuth, useDebounce, useFakeProgress, useFaqsInApplication, useLocalStorage, useNotification, useOnScreenMultiple, usePrefetchRichTextImages, usePrevious, useReleaseNotes, useSelect, useSideBar, useSnackbar, useStepper, useTableOfContents, useThemeProvider, utmProjection };
|
|
125
|
+
export { Accordion, AccordionHeaderActionsProps, AccordionHeaderProps, AccordionHeaderTitleProps, AccordionItemProps, AccordionPanelProps, AccordionProps, AmplifyBar, AmplifyKit, AnimatedCheckmark, ApiResponseError, AppIconProps, ApplicationIcon, ApplicationIconProps, AuthProvider, BadRequest, Badge, BadgeProps, Banner, BannerProps, BaseChipProps, BasicSideBarMenuItem, BreadcrumbProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonProps, Card, CardProps, Checkbox, CheckboxProps, Chip, CircularProgress, CircularProgressProps, ComboBox, ComboBoxChip, ContentProps, DEFAULT_FEATURES, DataGrid, DataGridProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerProps, Dialog, DialogAction, DialogProps, Divider, DividerProps, DotProgress, DotProgressProps, EDSDialog, EDSDialogProps, EditorMenu, EditorPanel, EditorText, ElementItem, Empty, EnvironmentType, EquinorLogo, EquinorLogoProps, ErrorContentType, ErrorType, ExpandingIconButton, Faq, FeaturesProps, FeedBackIcon, FeedBackIconProps, Field, FieldSelector, FieldSelectorProps, FileProgress, FileProgressProps, FileProgressPropsExtension, FileUploadArea, FileUploadAreaProps, Filter, FilterType, FullPageSpinner, FullPageSpinnerProps, GenericError, GroupedComboBoxProps, GroupedSingleSelectProps, GuidelineItem, GuidelineSections, IMG_WITH_ALT, IMG_WITH_SRC_AND_ALT, Icon, IconCell, IconCellColor, IconCellColorObject, IconCellColors, IconCellProps, IconCellState, IconCellStates, IconCellVariant, IconCellVariants, IconItem, IconProps, IconToggleButton, ImageExtensionFnProps, InfoElement, InfoElementProps, ItemType, LinearProgress, LinearProgressProps, ListComboBoxProps, ListItem, ListItemProps, ListSingleSelectProps, LoadingProvider, Menu, MenuProps, MissingAccessToApp, MissingPermissions, OldStepper, OptionDrawer, OptionDrawerProps, OptionDrawerSelectItem, OptionalTooltip, OptionalTooltipProps, PageNotFound, PageTitle, ProfileAvatar, ProfileAvatarProps, Radio, RadioProps, ReleaseNote, ReleaseNoteProps, ReleaseNotesPage, ReleaseNotesProvider, RichText, RichTextDisplay, RichTextDisplayProps, RichTextEditor, RichTextEditorFeatures, RichTextEditorProps, Search, SearchProps, SelectOption, SelectOptionRequired, ServerError, SettingsSection, SideBar, SideBarMenuItem, SideBarMenuItemWithItems, SideBarProvider, SingleSelect, SizeIconProps, SkeletonBase, SkeletonBaseProps, SkeletonGradient, SkeletonGradientProps, SnackbarProvider, SpacingsMode, Status, Stepper, StepperProps, StepperProvider, Switch, SwitchProps, Tab, TableMenuBar, TableOfContents, TableOfContentsItemType, TableOfContentsProps, TableOfContentsProvider, Tabs, TabsProps, Template, TemplateType, TextField, TextFieldProps, TextTable, Theme, ThemeProvider, ToggleGroup, TopBar, TutorialHighlight, TutorialHighlightingProvider, Typography, TypographyProps, Waves, amplify_aml, amplify_arrow_up_down, amplify_branch, amplify_calculator, amplify_failure, amplify_h1, amplify_h2, amplify_h3, amplify_h4, amplify_info_small, amplify_lwd, amplify_merged, amplify_overlay, amplify_overview, amplify_resources, amplify_sharepoint, amplify_shield_person, amplify_sidebyside, amplify_small_portal, amplify_snail, amplify_sort_small, amplify_success, amplify_table_add_column_left, amplify_table_add_column_right, amplify_table_add_row_above, amplify_table_add_row_below, amplify_table_column_heading, amplify_table_merge_cells, amplify_table_remove_column, amplify_table_remove_row, amplify_table_row_heading, amplify_table_split_cell, amplify_tutorials, amplify_wellbore, amplify_wireline, amplify_wireline_cased_hole, amplify_wireline_open_hole, animation, auth, capitalize, cleanRichTextValue, colors, convertLatLngToUtm, convertUtmToLatLng, defaultQueryOptions, degrees2radians, distanceLatLng, elevation, environment, exportComponent, extractImageUrls, formatBytes, formatDataSize, formatDate, formatDateTime, formatKiloBytes, formatLatLng, formatRelativeDateTime, formatUtm, getFeatures, getHighlightElementBoundingBox, getImagesFromRichText, getVariantIcon, highlightTutorialElementID, imageToB64, isBetweenDates, isValidUrl, setupIcons, shape, skeletonBaseloading, sortByDate, sortByWellboreName, spacings, style, typography, useAmplifyKit, useAuth, useDebounce, useFakeProgress, useFaqsInApplication, useLocalStorage, useNotification, useOnScreenMultiple, usePrefetchRichTextImages, usePrevious, useReleaseNotes, useSelect, useSideBar, useSnackbar, useStatusNavigation, useStepper, useTableOfContents, useThemeProvider, utmProjection };
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{EnvironmentType as e}from"./atoms/enums/Environment.js";import{auth as t,environment as n}from"./atoms/utils/auth_environment.js";import{animation as r}from"./atoms/style/animation.js";import{colors as i}from"./atoms/style/colors.js";import{spacings as a}from"./atoms/style/spacings.js";import{elevation as o,shape as s,typography as c}from"./atoms/style/index.js";import{FullPageSpinner as l}from"./molecules/FullPageSpinner/FullPageSpinner.js";import{formatLatLng as u,formatUtm as d}from"./atoms/utils/coordinate.js";import{formatDate as f,formatDateTime as p,formatRelativeDateTime as m,isBetweenDates as h}from"./atoms/utils/date.js";import{exportComponent as g}from"./atoms/utils/export.js";import{setupIcons as _}from"./atoms/utils/favicon.js";import{convertLatLngToUtm as v,convertUtmToLatLng as y,degrees2radians as b,distanceLatLng as x,utmProjection as S}from"./atoms/utils/map.js";import{defaultQueryOptions as C}from"./atoms/utils/reactquery.js";import{DEFAULT_FEATURES as w,RichTextEditorFeatures as T}from"./molecules/RichTextEditor/RichTextEditor.types.js";import{IMG_WITH_ALT as E,IMG_WITH_SRC_AND_ALT as D,cleanRichTextValue as O,extractImageUrls as k,getFeatures as A,getImagesFromRichText as j,imageToB64 as M}from"./atoms/utils/richtext.js";import{formatBytes as N,formatDataSize as P,formatKiloBytes as F}from"./atoms/utils/size.js";import{sortByDate as I,sortByWellboreName as L}from"./atoms/utils/sort.js";import{Empty as R,capitalize as z}from"./atoms/utils/string.js";import{isValidUrl as B}from"./atoms/utils/url.js";import{getHighlightElementBoundingBox as V,highlightTutorialElementID as H}from"./atoms/utils/tutorials.js";import{getVariantIcon as U}from"./atoms/utils/forms.js";import{Status as W}from"./organisms/Status/index.js";import{MissingAccessToApp as G}from"./organisms/Status/collections/MissingAccessToApp.js";import{AuthProvider as K,useAuth as q}from"./providers/AuthProvider/AuthProvider.js";import{SideBarProvider as J,useSideBar as Y}from"./providers/SideBarProvider.js";import{SnackbarProvider as X,useSnackbar as Z}from"./providers/SnackbarProvider/SnackbarProvider.js";import{useOnScreenMultiple as Q}from"./atoms/hooks/useOnScreenMultiple.js";import{TableOfContentsProvider as $,useTableOfContents as ee}from"./providers/TableOfContentsProvider.js";import{useLocalStorage as te}from"./atoms/hooks/useLocalStorage.js";import{AmplifyKit as ne}from"./molecules/RichTextEditor/custom-extensions/AmplifyKit.js";import{useAmplifyKit as re}from"./atoms/hooks/useAmplifyKit.js";import{useDebounce as ie}from"./atoms/hooks/useDebounce.js";import{useFakeProgress as ae}from"./atoms/hooks/useFakeProgress.js";import{usePrevious as oe}from"./atoms/hooks/usePrevious.js";import{useSelect as se}from"./atoms/hooks/useSelect.js";import{useNotification as ce}from"./organisms/TopBar/Notifications/NotificationProvider.js";import{StepperProvider as le,useStepper as ue}from"./providers/StepperProvider.js";import{Theme as de}from"./atoms/enums/Theme.js";import{ThemeProvider as fe,useThemeProvider as pe}from"./providers/ThemeProvider/ThemeProvider.js";import{usePrefetchRichTextImages as me}from"./atoms/hooks/usePrefetchRichTextImages.js";import{useFaqsInApplication as he}from"./atoms/hooks/useFaqsInApplication.js";import{ErrorType as ge}from"./atoms/enums/Errors.js";import{SpacingsMode as _e}from"./atoms/enums/SpacingsMode.js";import{amplify_failure as ve,amplify_lwd as ye,amplify_success as be,amplify_wellbore as xe,amplify_wireline as Se,amplify_wireline_cased_hole as Ce,amplify_wireline_open_hole as we}from"./atoms/icons/drilling.js";import{amplify_calculator as Te,amplify_overlay as Ee,amplify_sidebyside as De}from"./atoms/icons/map.js";import{amplify_aml as Oe,amplify_arrow_up_down as ke,amplify_branch as Ae,amplify_info_small as je,amplify_merged as Me,amplify_overview as Ne,amplify_resources as Pe,amplify_sharepoint as Fe,amplify_shield_person as Ie,amplify_small_portal as Le,amplify_snail as Re,amplify_sort_small as ze,amplify_tutorials as Be}from"./atoms/icons/other.js";import{amplify_h1 as Ve,amplify_h2 as He,amplify_h3 as Ue,amplify_h4 as We,amplify_table_add_column_left as Ge,amplify_table_add_column_right as Ke,amplify_table_add_row_above as qe,amplify_table_add_row_below as Je,amplify_table_column_heading as Ye,amplify_table_merge_cells as Xe,amplify_table_remove_column as Ze,amplify_table_remove_row as Qe,amplify_table_row_heading as $e,amplify_table_split_cell as et}from"./atoms/icons/wysiwyg.js";import{style as tt}from"./atoms/index.js";import{ReleaseNotesProvider as nt,useReleaseNotes as rt}from"./providers/ReleaseNotesProvider.js";import{TutorialHighlightingProvider as it}from"./providers/TutorialHighlightingProvider/TutorialHighlightingProvider.js";import{LoadingProvider as at}from"./providers/LoadingProvider.js";import{AnimatedCheckmark as ot}from"./molecules/AnimatedCheckmark/AnimatedCheckmark.js";import{ApplicationIcon as st}from"./molecules/ApplicationIcon/ApplicationIcon.js";import{Badge as ct}from"./molecules/Badge/Badge.js";import{Banner as lt}from"./molecules/Banner/Banner.js";import{Button as ut}from"./molecules/Button/Button.js";import{Chip as dt}from"./molecules/Chip/Chip.js";import{SkeletonBase as ft,skeletonBaseloading as pt}from"./molecules/Skeleton/SkeletonBase/SkeletonBase.js";import{DatePicker as mt}from"./molecules/DatePicker/DatePicker.js";import{DateRangePicker as ht}from"./molecules/DateRangePicker/DateRangePicker.js";import{OptionalTooltip as gt}from"./molecules/OptionalTooltip/OptionalTooltip.js";import{Dialog as _t}from"./molecules/Dialog/Dialog.js";import{EquinorLogo as vt}from"./molecules/EquinorLogo/EquinorLogo.js";import{FileProgress as yt}from"./molecules/FileProgress/FileProgress.js";import{FileUploadArea as bt}from"./molecules/FileUploadArea/FileUploadArea.js";import{IconCellColors as xt,IconCellStates as St,IconCellVariants as Ct}from"./molecules/IconCell/IconCell.types.js";import{IconCell as wt}from"./molecules/IconCell/IconCell.js";import{InfoElement as Tt}from"./molecules/InfoElement/InfoElement.js";import{ProfileAvatar as Et}from"./molecules/ProfileAvatar/ProfileAvatar.js";import{RichTextDisplay as Dt}from"./molecules/RichTextDisplay/RichTextDisplay.js";import{TableMenuBar as Ot,TextTable as kt}from"./molecules/RichTextEditor/MenuBar/Table/TableBar.js";import{TextField as At}from"./molecules/TextField/TextField.js";import{AmplifyBar as jt,EditorMenu as Mt,EditorText as Nt}from"./molecules/RichTextEditor/MenuBar/MenuBar.js";import{RichTextEditor as Pt}from"./molecules/RichTextEditor/RichTextEditor.js";import{RichText as Ft}from"./molecules/RichTextEditor/index.js";import{Tabs as It}from"./molecules/Tabs/Tabs.js";import{Search as Lt}from"./molecules/Search/Search.js";import{SkeletonGradient as Rt}from"./molecules/Skeleton/SkeletonGradient/SkeletonGradient.js";import{Stepper as zt}from"./molecules/Stepper/Stepper.js";import{OptionDrawer as Bt}from"./molecules/OptionDrawer/OptionDrawer.js";import{ComboBoxChip as Vt}from"./molecules/Select/Select.styles.js";import{ComboBox as Ht}from"./molecules/Select/ComboBox/ComboBox.js";import{SingleSelect as Ut}from"./molecules/Select/SingleSelect/SingleSelect.js";import{FeedBackIcon as Wt}from"./molecules/FeedBackIcon/FeedBackIcon.js";import{ListItem as Gt}from"./molecules/ListItem/ListItem.js";import{Checkbox as Kt}from"./molecules/SelectionControls/Checkbox/Checkbox.js";import{Radio as qt}from"./molecules/SelectionControls/Radio/Radio.js";import{Switch as Jt}from"./molecules/SelectionControls/Switch/Switch.js";import{Waves as Yt}from"./molecules/Waves/Waves.js";import{Accordion as Xt,Breadcrumbs as Zt,CircularProgress as Qt,Divider as $t,DotProgress as en,EDSDialog as tn,Icon as nn,LinearProgress as rn,Menu as an,Typography as on}from"./molecules/index.js";import{DataGrid as sn}from"./organisms/DataGrid/DataGrid.js";import{Template as cn}from"./organisms/Template/Template.js";import{FieldSelector as ln}from"./organisms/FieldSelector/FieldSelector.js";import{Filter as un}from"./organisms/Filter/index.js";import{SideBar as dn}from"./organisms/SideBar/index.js";import{ReleaseNote as fn}from"./organisms/ReleaseNote/ReleaseNote.js";import{TopBar as pn}from"./organisms/TopBar/index.js";import{BadRequest as mn}from"./organisms/Status/collections/BadRequest.js";import{GenericError as hn}from"./organisms/Status/collections/GenericError.js";import{MissingPermissions as gn}from"./organisms/Status/collections/MissingPermissions.js";import{PageNotFound as _n}from"./organisms/Status/collections/PageNotFound.js";import{ServerError as vn}from"./organisms/Status/collections/ServerError.js";import{ApiResponseError as yn}from"./organisms/Status/collections/ApiResponseError.js";import{TableOfContents as bn}from"./organisms/TableOfContents/TableOfContents.js";import{PageTitle as xn}from"./organisms/PageTitle/PageTitle.js";import{ToggleGroup as Sn}from"./organisms/ToggleGroup/index.js";import{Faq as Cn}from"./organisms/Faq/Faq.js";import{ReleaseNotesPage as wn}from"./organisms/ReleaseNotesPage/ReleaseNotesPage.js";import{Card as Tn}from"./organisms/index.js";import{ExpandingIconButton as En}from"./deprecated/ExpandingIconButton/ExpandingIconButton.js";import Dn from"./deprecated/IconToggleButton.js";import{OldStepper as On}from"./deprecated/OldStepper/OldStepper.js";export{Xt as Accordion,jt as AmplifyBar,ne as AmplifyKit,ot as AnimatedCheckmark,yn as ApiResponseError,st as ApplicationIcon,K as AuthProvider,mn as BadRequest,ct as Badge,lt as Banner,Zt as Breadcrumbs,ut as Button,Tn as Card,Kt as Checkbox,dt as Chip,Qt as CircularProgress,Ht as ComboBox,Vt as ComboBoxChip,w as DEFAULT_FEATURES,sn as DataGrid,mt as DatePicker,ht as DateRangePicker,_t as Dialog,$t as Divider,en as DotProgress,tn as EDSDialog,Mt as EditorMenu,Nt as EditorText,R as Empty,e as EnvironmentType,vt as EquinorLogo,ge as ErrorType,En as ExpandingIconButton,Cn as Faq,Wt as FeedBackIcon,ln as FieldSelector,yt as FileProgress,bt as FileUploadArea,un as Filter,l as FullPageSpinner,hn as GenericError,E as IMG_WITH_ALT,D as IMG_WITH_SRC_AND_ALT,nn as Icon,wt as IconCell,xt as IconCellColors,St as IconCellStates,Ct as IconCellVariants,Dn as IconToggleButton,Tt as InfoElement,rn as LinearProgress,Gt as ListItem,at as LoadingProvider,an as Menu,G as MissingAccessToApp,gn as MissingPermissions,On as OldStepper,Bt as OptionDrawer,gt as OptionalTooltip,_n as PageNotFound,xn as PageTitle,Et as ProfileAvatar,qt as Radio,fn as ReleaseNote,wn as ReleaseNotesPage,nt as ReleaseNotesProvider,Ft as RichText,Dt as RichTextDisplay,Pt as RichTextEditor,T as RichTextEditorFeatures,Lt as Search,vn as ServerError,dn as SideBar,J as SideBarProvider,Ut as SingleSelect,ft as SkeletonBase,Rt as SkeletonGradient,X as SnackbarProvider,_e as SpacingsMode,W as Status,zt as Stepper,le as StepperProvider,Jt as Switch,Ot as TableMenuBar,bn as TableOfContents,$ as TableOfContentsProvider,It as Tabs,cn as Template,At as TextField,kt as TextTable,de as Theme,fe as ThemeProvider,Sn as ToggleGroup,pn as TopBar,it as TutorialHighlightingProvider,on as Typography,Yt as Waves,Oe as amplify_aml,ke as amplify_arrow_up_down,Ae as amplify_branch,Te as amplify_calculator,ve as amplify_failure,Ve as amplify_h1,He as amplify_h2,Ue as amplify_h3,We as amplify_h4,je as amplify_info_small,ye as amplify_lwd,Me as amplify_merged,Ee as amplify_overlay,Ne as amplify_overview,Pe as amplify_resources,Fe as amplify_sharepoint,Ie as amplify_shield_person,De as amplify_sidebyside,Le as amplify_small_portal,Re as amplify_snail,ze as amplify_sort_small,be as amplify_success,Ge as amplify_table_add_column_left,Ke as amplify_table_add_column_right,qe as amplify_table_add_row_above,Je as amplify_table_add_row_below,Ye as amplify_table_column_heading,Xe as amplify_table_merge_cells,Ze as amplify_table_remove_column,Qe as amplify_table_remove_row,$e as amplify_table_row_heading,et as amplify_table_split_cell,Be as amplify_tutorials,xe as amplify_wellbore,Se as amplify_wireline,Ce as amplify_wireline_cased_hole,we as amplify_wireline_open_hole,r as animation,t as auth,z as capitalize,O as cleanRichTextValue,i as colors,v as convertLatLngToUtm,y as convertUtmToLatLng,C as defaultQueryOptions,b as degrees2radians,x as distanceLatLng,o as elevation,n as environment,g as exportComponent,k as extractImageUrls,N as formatBytes,P as formatDataSize,f as formatDate,p as formatDateTime,F as formatKiloBytes,u as formatLatLng,m as formatRelativeDateTime,d as formatUtm,A as getFeatures,V as getHighlightElementBoundingBox,j as getImagesFromRichText,U as getVariantIcon,H as highlightTutorialElementID,M as imageToB64,h as isBetweenDates,B as isValidUrl,_ as setupIcons,s as shape,pt as skeletonBaseloading,I as sortByDate,L as sortByWellboreName,a as spacings,tt as style,c as typography,re as useAmplifyKit,q as useAuth,ie as useDebounce,ae as useFakeProgress,he as useFaqsInApplication,te as useLocalStorage,ce as useNotification,Q as useOnScreenMultiple,me as usePrefetchRichTextImages,oe as usePrevious,rt as useReleaseNotes,se as useSelect,Y as useSideBar,Z as useSnackbar,ue as useStepper,ee as useTableOfContents,pe as useThemeProvider,S as utmProjection};
|
|
1
|
+
import{EnvironmentType as e}from"./atoms/enums/Environment.js";import{auth as t,environment as n}from"./atoms/utils/auth_environment.js";import{animation as r}from"./atoms/style/animation.js";import{colors as i}from"./atoms/style/colors.js";import{spacings as a}from"./atoms/style/spacings.js";import{elevation as o,shape as s,typography as c}from"./atoms/style/index.js";import{FullPageSpinner as l}from"./molecules/FullPageSpinner/FullPageSpinner.js";import{formatLatLng as u,formatUtm as d}from"./atoms/utils/coordinate.js";import{formatDate as f,formatDateTime as p,formatRelativeDateTime as m,isBetweenDates as h}from"./atoms/utils/date.js";import{exportComponent as g}from"./atoms/utils/export.js";import{setupIcons as _}from"./atoms/utils/favicon.js";import{convertLatLngToUtm as v,convertUtmToLatLng as y,degrees2radians as b,distanceLatLng as x,utmProjection as S}from"./atoms/utils/map.js";import{defaultQueryOptions as C}from"./atoms/utils/reactquery.js";import{DEFAULT_FEATURES as w,RichTextEditorFeatures as T}from"./molecules/RichTextEditor/RichTextEditor.types.js";import{IMG_WITH_ALT as E,IMG_WITH_SRC_AND_ALT as D,cleanRichTextValue as O,extractImageUrls as k,getFeatures as A,getImagesFromRichText as j,imageToB64 as M}from"./atoms/utils/richtext.js";import{formatBytes as N,formatDataSize as P,formatKiloBytes as F}from"./atoms/utils/size.js";import{sortByDate as I,sortByWellboreName as L}from"./atoms/utils/sort.js";import{Empty as R,capitalize as z}from"./atoms/utils/string.js";import{isValidUrl as B}from"./atoms/utils/url.js";import{getHighlightElementBoundingBox as V,highlightTutorialElementID as H}from"./atoms/utils/tutorials.js";import{getVariantIcon as U}from"./atoms/utils/forms.js";import{Status as W}from"./organisms/Status/index.js";import{MissingAccessToApp as G}from"./organisms/Status/collections/MissingAccessToApp.js";import{AuthProvider as K,useAuth as q}from"./providers/AuthProvider/AuthProvider.js";import{SideBarProvider as J,useSideBar as Y}from"./providers/SideBarProvider.js";import{SnackbarProvider as X,useSnackbar as Z}from"./providers/SnackbarProvider/SnackbarProvider.js";import{useOnScreenMultiple as Q}from"./atoms/hooks/useOnScreenMultiple.js";import{TableOfContentsProvider as $,useTableOfContents as ee}from"./providers/TableOfContentsProvider.js";import{useLocalStorage as te}from"./atoms/hooks/useLocalStorage.js";import{AmplifyKit as ne}from"./molecules/RichTextEditor/custom-extensions/AmplifyKit.js";import{useAmplifyKit as re}from"./atoms/hooks/useAmplifyKit.js";import{useDebounce as ie}from"./atoms/hooks/useDebounce.js";import{useFakeProgress as ae}from"./atoms/hooks/useFakeProgress.js";import{usePrevious as oe}from"./atoms/hooks/usePrevious.js";import{useSelect as se}from"./atoms/hooks/useSelect.js";import{useStatusNavigation as ce}from"./atoms/hooks/useStatusNavigation.js";import{useNotification as le}from"./organisms/TopBar/Notifications/NotificationProvider.js";import{StepperProvider as ue,useStepper as de}from"./providers/StepperProvider.js";import{Theme as fe}from"./atoms/enums/Theme.js";import{ThemeProvider as pe,useThemeProvider as me}from"./providers/ThemeProvider/ThemeProvider.js";import{usePrefetchRichTextImages as he}from"./atoms/hooks/usePrefetchRichTextImages.js";import{useFaqsInApplication as ge}from"./atoms/hooks/useFaqsInApplication.js";import{ErrorType as _e}from"./atoms/enums/Errors.js";import{SpacingsMode as ve}from"./atoms/enums/SpacingsMode.js";import{amplify_failure as ye,amplify_lwd as be,amplify_success as xe,amplify_wellbore as Se,amplify_wireline as Ce,amplify_wireline_cased_hole as we,amplify_wireline_open_hole as Te}from"./atoms/icons/drilling.js";import{amplify_calculator as Ee,amplify_overlay as De,amplify_sidebyside as Oe}from"./atoms/icons/map.js";import{amplify_aml as ke,amplify_arrow_up_down as Ae,amplify_branch as je,amplify_info_small as Me,amplify_merged as Ne,amplify_overview as Pe,amplify_resources as Fe,amplify_sharepoint as Ie,amplify_shield_person as Le,amplify_small_portal as Re,amplify_snail as ze,amplify_sort_small as Be,amplify_tutorials as Ve}from"./atoms/icons/other.js";import{amplify_h1 as He,amplify_h2 as Ue,amplify_h3 as We,amplify_h4 as Ge,amplify_table_add_column_left as Ke,amplify_table_add_column_right as qe,amplify_table_add_row_above as Je,amplify_table_add_row_below as Ye,amplify_table_column_heading as Xe,amplify_table_merge_cells as Ze,amplify_table_remove_column as Qe,amplify_table_remove_row as $e,amplify_table_row_heading as et,amplify_table_split_cell as tt}from"./atoms/icons/wysiwyg.js";import{style as nt}from"./atoms/index.js";import{ReleaseNotesProvider as rt,useReleaseNotes as it}from"./providers/ReleaseNotesProvider.js";import{TutorialHighlightingProvider as at}from"./providers/TutorialHighlightingProvider/TutorialHighlightingProvider.js";import{LoadingProvider as ot}from"./providers/LoadingProvider.js";import{AnimatedCheckmark as st}from"./molecules/AnimatedCheckmark/AnimatedCheckmark.js";import{ApplicationIcon as ct}from"./molecules/ApplicationIcon/ApplicationIcon.js";import{Badge as lt}from"./molecules/Badge/Badge.js";import{Banner as ut}from"./molecules/Banner/Banner.js";import{Button as dt}from"./molecules/Button/Button.js";import{Chip as ft}from"./molecules/Chip/Chip.js";import{SkeletonBase as pt,skeletonBaseloading as mt}from"./molecules/Skeleton/SkeletonBase/SkeletonBase.js";import{DatePicker as ht}from"./molecules/DatePicker/DatePicker.js";import{DateRangePicker as gt}from"./molecules/DateRangePicker/DateRangePicker.js";import{OptionalTooltip as _t}from"./molecules/OptionalTooltip/OptionalTooltip.js";import{Dialog as vt}from"./molecules/Dialog/Dialog.js";import{EquinorLogo as yt}from"./molecules/EquinorLogo/EquinorLogo.js";import{FileProgress as bt}from"./molecules/FileProgress/FileProgress.js";import{FileUploadArea as xt}from"./molecules/FileUploadArea/FileUploadArea.js";import{IconCellColors as St,IconCellStates as Ct,IconCellVariants as wt}from"./molecules/IconCell/IconCell.types.js";import{IconCell as Tt}from"./molecules/IconCell/IconCell.js";import{InfoElement as Et}from"./molecules/InfoElement/InfoElement.js";import{ProfileAvatar as Dt}from"./molecules/ProfileAvatar/ProfileAvatar.js";import{RichTextDisplay as Ot}from"./molecules/RichTextDisplay/RichTextDisplay.js";import{TableMenuBar as kt,TextTable as At}from"./molecules/RichTextEditor/MenuBar/Table/TableBar.js";import{TextField as jt}from"./molecules/TextField/TextField.js";import{AmplifyBar as Mt,EditorMenu as Nt,EditorText as Pt}from"./molecules/RichTextEditor/MenuBar/MenuBar.js";import{RichTextEditor as Ft}from"./molecules/RichTextEditor/RichTextEditor.js";import{RichText as It}from"./molecules/RichTextEditor/index.js";import{Tabs as Lt}from"./molecules/Tabs/Tabs.js";import{Search as Rt}from"./molecules/Search/Search.js";import{SkeletonGradient as zt}from"./molecules/Skeleton/SkeletonGradient/SkeletonGradient.js";import{Stepper as Bt}from"./molecules/Stepper/Stepper.js";import{OptionDrawer as Vt}from"./molecules/OptionDrawer/OptionDrawer.js";import{ComboBoxChip as Ht}from"./molecules/Select/Select.styles.js";import{ComboBox as Ut}from"./molecules/Select/ComboBox/ComboBox.js";import{SingleSelect as Wt}from"./molecules/Select/SingleSelect/SingleSelect.js";import{FeedBackIcon as Gt}from"./molecules/FeedBackIcon/FeedBackIcon.js";import{ListItem as Kt}from"./molecules/ListItem/ListItem.js";import{Checkbox as qt}from"./molecules/SelectionControls/Checkbox/Checkbox.js";import{Radio as Jt}from"./molecules/SelectionControls/Radio/Radio.js";import{Switch as Yt}from"./molecules/SelectionControls/Switch/Switch.js";import{Waves as Xt}from"./molecules/Waves/Waves.js";import{Accordion as Zt,Breadcrumbs as Qt,CircularProgress as $t,Divider as en,DotProgress as tn,EDSDialog as nn,Icon as rn,LinearProgress as an,Menu as on,Typography as sn}from"./molecules/index.js";import{DataGrid as cn}from"./organisms/DataGrid/DataGrid.js";import{Template as ln}from"./organisms/Template/Template.js";import{FieldSelector as un}from"./organisms/FieldSelector/FieldSelector.js";import{Filter as dn}from"./organisms/Filter/index.js";import{SideBar as fn}from"./organisms/SideBar/index.js";import{ReleaseNote as pn}from"./organisms/ReleaseNote/ReleaseNote.js";import{TopBar as mn}from"./organisms/TopBar/index.js";import{BadRequest as hn}from"./organisms/Status/collections/BadRequest.js";import{GenericError as gn}from"./organisms/Status/collections/GenericError.js";import{MissingPermissions as _n}from"./organisms/Status/collections/MissingPermissions.js";import{PageNotFound as vn}from"./organisms/Status/collections/PageNotFound.js";import{ServerError as yn}from"./organisms/Status/collections/ServerError.js";import{ApiResponseError as bn}from"./organisms/Status/collections/ApiResponseError.js";import{TableOfContents as xn}from"./organisms/TableOfContents/TableOfContents.js";import{PageTitle as Sn}from"./organisms/PageTitle/PageTitle.js";import{ToggleGroup as Cn}from"./organisms/ToggleGroup/index.js";import{Faq as wn}from"./organisms/Faq/Faq.js";import{ReleaseNotesPage as Tn}from"./organisms/ReleaseNotesPage/ReleaseNotesPage.js";import{Card as En}from"./organisms/index.js";import{ExpandingIconButton as Dn}from"./deprecated/ExpandingIconButton/ExpandingIconButton.js";import On from"./deprecated/IconToggleButton.js";import{OldStepper as kn}from"./deprecated/OldStepper/OldStepper.js";export{Zt as Accordion,Mt as AmplifyBar,ne as AmplifyKit,st as AnimatedCheckmark,bn as ApiResponseError,ct as ApplicationIcon,K as AuthProvider,hn as BadRequest,lt as Badge,ut as Banner,Qt as Breadcrumbs,dt as Button,En as Card,qt as Checkbox,ft as Chip,$t as CircularProgress,Ut as ComboBox,Ht as ComboBoxChip,w as DEFAULT_FEATURES,cn as DataGrid,ht as DatePicker,gt as DateRangePicker,vt as Dialog,en as Divider,tn as DotProgress,nn as EDSDialog,Nt as EditorMenu,Pt as EditorText,R as Empty,e as EnvironmentType,yt as EquinorLogo,_e as ErrorType,Dn as ExpandingIconButton,wn as Faq,Gt as FeedBackIcon,un as FieldSelector,bt as FileProgress,xt as FileUploadArea,dn as Filter,l as FullPageSpinner,gn as GenericError,E as IMG_WITH_ALT,D as IMG_WITH_SRC_AND_ALT,rn as Icon,Tt as IconCell,St as IconCellColors,Ct as IconCellStates,wt as IconCellVariants,On as IconToggleButton,Et as InfoElement,an as LinearProgress,Kt as ListItem,ot as LoadingProvider,on as Menu,G as MissingAccessToApp,_n as MissingPermissions,kn as OldStepper,Vt as OptionDrawer,_t as OptionalTooltip,vn as PageNotFound,Sn as PageTitle,Dt as ProfileAvatar,Jt as Radio,pn as ReleaseNote,Tn as ReleaseNotesPage,rt as ReleaseNotesProvider,It as RichText,Ot as RichTextDisplay,Ft as RichTextEditor,T as RichTextEditorFeatures,Rt as Search,yn as ServerError,fn as SideBar,J as SideBarProvider,Wt as SingleSelect,pt as SkeletonBase,zt as SkeletonGradient,X as SnackbarProvider,ve as SpacingsMode,W as Status,Bt as Stepper,ue as StepperProvider,Yt as Switch,kt as TableMenuBar,xn as TableOfContents,$ as TableOfContentsProvider,Lt as Tabs,ln as Template,jt as TextField,At as TextTable,fe as Theme,pe as ThemeProvider,Cn as ToggleGroup,mn as TopBar,at as TutorialHighlightingProvider,sn as Typography,Xt as Waves,ke as amplify_aml,Ae as amplify_arrow_up_down,je as amplify_branch,Ee as amplify_calculator,ye as amplify_failure,He as amplify_h1,Ue as amplify_h2,We as amplify_h3,Ge as amplify_h4,Me as amplify_info_small,be as amplify_lwd,Ne as amplify_merged,De as amplify_overlay,Pe as amplify_overview,Fe as amplify_resources,Ie as amplify_sharepoint,Le as amplify_shield_person,Oe as amplify_sidebyside,Re as amplify_small_portal,ze as amplify_snail,Be as amplify_sort_small,xe as amplify_success,Ke as amplify_table_add_column_left,qe as amplify_table_add_column_right,Je as amplify_table_add_row_above,Ye as amplify_table_add_row_below,Xe as amplify_table_column_heading,Ze as amplify_table_merge_cells,Qe as amplify_table_remove_column,$e as amplify_table_remove_row,et as amplify_table_row_heading,tt as amplify_table_split_cell,Ve as amplify_tutorials,Se as amplify_wellbore,Ce as amplify_wireline,we as amplify_wireline_cased_hole,Te as amplify_wireline_open_hole,r as animation,t as auth,z as capitalize,O as cleanRichTextValue,i as colors,v as convertLatLngToUtm,y as convertUtmToLatLng,C as defaultQueryOptions,b as degrees2radians,x as distanceLatLng,o as elevation,n as environment,g as exportComponent,k as extractImageUrls,N as formatBytes,P as formatDataSize,f as formatDate,p as formatDateTime,F as formatKiloBytes,u as formatLatLng,m as formatRelativeDateTime,d as formatUtm,A as getFeatures,V as getHighlightElementBoundingBox,j as getImagesFromRichText,U as getVariantIcon,H as highlightTutorialElementID,M as imageToB64,h as isBetweenDates,B as isValidUrl,_ as setupIcons,s as shape,mt as skeletonBaseloading,I as sortByDate,L as sortByWellboreName,a as spacings,nt as style,c as typography,re as useAmplifyKit,q as useAuth,ie as useDebounce,ae as useFakeProgress,ge as useFaqsInApplication,te as useLocalStorage,le as useNotification,Q as useOnScreenMultiple,he as usePrefetchRichTextImages,oe as usePrevious,it as useReleaseNotes,se as useSelect,Y as useSideBar,Z as useSnackbar,ce as useStatusNavigation,de as useStepper,ee as useTableOfContents,me as useThemeProvider,S as utmProjection};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{tokens as e}from"../../node_modules/@equinor/eds-tokens/dist/esm/base/index.js";import{colors as t}from"../../atoms/style/colors.js";import{spacings as n}from"../../atoms/style/spacings.js";import r from"styled-components";const{shape:i}=e,a=e=>({light:{background
|
|
1
|
+
import{tokens as e}from"../../node_modules/@equinor/eds-tokens/dist/esm/base/index.js";import{colors as t}from"../../atoms/style/colors.js";import{spacings as n}from"../../atoms/style/spacings.js";import r from"styled-components";const{shape:i}=e,a=e=>({light:{background:t.ui.background__light_medium.rgba,color:t.text.static_icons__tertiary.rgba},danger:{background:t.interactive.danger__resting.rgba,color:t.text.static_icons__primary_white.rgba},empty:{background:t.interactive.disabled__fill.rgba,color:t.interactive.disabled__text.rgba},default:{background:t.text.static_icons__tertiary.rgba,color:t.text.static_icons__primary_white.rgba}})[e],o=r.div`
|
|
2
2
|
display: flex;
|
|
3
3
|
align-items: center;
|
|
4
4
|
justify-content: center;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react13 from "react";
|
|
2
2
|
import { ReactNode } from "react";
|
|
3
3
|
import { ButtonProps, DialogProps } from "@equinor/eds-core-react";
|
|
4
4
|
import { IconData } from "@equinor/eds-icons";
|
|
@@ -51,6 +51,6 @@ interface DialogProps$1 extends Omit<DialogProps, 'title'> {
|
|
|
51
51
|
* @param additionalInfo - Defaults to empty, and won't show the additional info button
|
|
52
52
|
* Also inherits props from EDS dialog
|
|
53
53
|
*/
|
|
54
|
-
declare const Dialog$1:
|
|
54
|
+
declare const Dialog$1: react13.ForwardRefExoticComponent<DialogProps$1 & react13.RefAttributes<HTMLDivElement>>;
|
|
55
55
|
//#endregion
|
|
56
56
|
export { Dialog$1 as Dialog, DialogAction, DialogProps$1 as DialogProps };
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { SizeIconProps } from "../../atoms/types/Icon.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react15 from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/EquinorLogo/EquinorLogo.d.ts
|
|
5
5
|
interface EquinorLogoProps extends Partial<SizeIconProps> {
|
|
6
6
|
large?: boolean;
|
|
7
7
|
color?: 'red' | 'white' | 'black';
|
|
8
8
|
}
|
|
9
|
-
declare const EquinorLogo:
|
|
9
|
+
declare const EquinorLogo: react15.ForwardRefExoticComponent<EquinorLogoProps & react15.RefAttributes<SVGSVGElement>>;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { EquinorLogo, EquinorLogoProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IconCellColor, IconCellState, IconCellVariant, IconCellVariants } from "./IconCell.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react11 from "react";
|
|
3
3
|
import { HTMLAttributes, MouseEventHandler, ReactNode } from "react";
|
|
4
4
|
import { IconData } from "@equinor/eds-icons";
|
|
5
5
|
|
|
@@ -49,6 +49,6 @@ type IconCellProps = ScribbledOutProps | RegularIconCellProps;
|
|
|
49
49
|
* @param {React.Ref<HTMLButtonElement>} ref - Ref forwarded to the inner button element.
|
|
50
50
|
* @returns {JSX.Element} The rendered IconCell.
|
|
51
51
|
*/
|
|
52
|
-
declare const IconCell:
|
|
52
|
+
declare const IconCell: react11.ForwardRefExoticComponent<IconCellProps & react11.RefAttributes<HTMLButtonElement>>;
|
|
53
53
|
//#endregion
|
|
54
54
|
export { IconCell, IconCellProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react43 from "react";
|
|
2
2
|
import { FocusEventHandler, HTMLAttributes, MouseEventHandler, ReactNode } from "react";
|
|
3
3
|
import { IconData } from "@equinor/eds-icons";
|
|
4
4
|
|
|
@@ -15,6 +15,6 @@ interface ListItemProps extends HTMLAttributes<HTMLButtonElement> {
|
|
|
15
15
|
isChild?: boolean;
|
|
16
16
|
borderBottom?: boolean;
|
|
17
17
|
}
|
|
18
|
-
declare const ListItem:
|
|
18
|
+
declare const ListItem: react43.ForwardRefExoticComponent<ListItemProps & react43.RefAttributes<HTMLButtonElement>>;
|
|
19
19
|
//#endregion
|
|
20
20
|
export { ListItem, ListItemProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeEvent, MouseEvent } from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/OptionDrawer/OptionDrawer.d.ts
|
|
5
5
|
interface ToggleEventProps<T> {
|
|
@@ -43,7 +43,7 @@ declare const OptionDrawer: {
|
|
|
43
43
|
openAll,
|
|
44
44
|
showIntermediateParent,
|
|
45
45
|
parentHasNestedItems
|
|
46
|
-
}: OptionDrawerProps<T>):
|
|
46
|
+
}: OptionDrawerProps<T>): react_jsx_runtime1.JSX.Element;
|
|
47
47
|
displayName: string;
|
|
48
48
|
};
|
|
49
49
|
//#endregion
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react35 from "react";
|
|
2
2
|
import { TooltipProps } from "@equinor/eds-core-react";
|
|
3
3
|
import * as _floating_ui_utils0 from "@floating-ui/utils";
|
|
4
4
|
|
|
@@ -6,14 +6,14 @@ import * as _floating_ui_utils0 from "@floating-ui/utils";
|
|
|
6
6
|
type OptionalTooltipProps = {
|
|
7
7
|
textTransform?: string;
|
|
8
8
|
} & TooltipProps;
|
|
9
|
-
declare const OptionalTooltip:
|
|
9
|
+
declare const OptionalTooltip: react35.ForwardRefExoticComponent<{
|
|
10
10
|
textTransform?: string;
|
|
11
11
|
} & {
|
|
12
12
|
placement?: _floating_ui_utils0.Placement;
|
|
13
|
-
title?:
|
|
13
|
+
title?: react35.ReactNode;
|
|
14
14
|
children: React.ReactElement & React.RefAttributes<HTMLElement>;
|
|
15
15
|
enterDelay?: number;
|
|
16
16
|
portalContainer?: HTMLElement;
|
|
17
|
-
} & Omit<
|
|
17
|
+
} & Omit<react35.HTMLAttributes<HTMLDivElement>, "title"> & react35.RefAttributes<HTMLDivElement>>;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { OptionalTooltip, OptionalTooltipProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react25 from "react";
|
|
2
2
|
|
|
3
3
|
//#region src/molecules/ProfileAvatar/ProfileAvatar.d.ts
|
|
4
4
|
interface ProfileAvatarProps {
|
|
@@ -7,6 +7,6 @@ interface ProfileAvatarProps {
|
|
|
7
7
|
size?: 'small' | 'small-medium' | 'medium' | 'large' | 'x-large' | number;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
}
|
|
10
|
-
declare const ProfileAvatar:
|
|
10
|
+
declare const ProfileAvatar: react25.ForwardRefExoticComponent<ProfileAvatarProps & react25.RefAttributes<HTMLDivElement>>;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { ProfileAvatar, ProfileAvatarProps };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EditorPanel, ImageExtensionFnProps, RichTextEditorFeatures } from "../RichTextEditor.types.js";
|
|
2
2
|
import { MenuButtonProps } from "./MenuButton.js";
|
|
3
3
|
import { AddImageProps } from "./AddImageButton.js";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react27 from "react";
|
|
5
5
|
import { FC } from "react";
|
|
6
6
|
import * as styled_components0 from "styled-components";
|
|
7
7
|
import { Editor } from "@tiptap/react";
|
|
@@ -14,10 +14,10 @@ interface MenuBarProps extends Pick<ImageExtensionFnProps, 'onImageUpload'> {
|
|
|
14
14
|
}
|
|
15
15
|
declare const AmplifyBar: FC<MenuBarProps>;
|
|
16
16
|
declare const EditorMenu: {
|
|
17
|
-
Bar: styled_components_dist_types3.IStyledComponentBase<"web", styled_components0.FastOmit<
|
|
18
|
-
Bars: styled_components_dist_types3.IStyledComponentBase<"web", styled_components0.FastOmit<
|
|
19
|
-
Button:
|
|
20
|
-
Section: styled_components_dist_types3.IStyledComponentBase<"web", styled_components0.FastOmit<
|
|
17
|
+
Bar: styled_components_dist_types3.IStyledComponentBase<"web", styled_components0.FastOmit<react27.DetailedHTMLProps<react27.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
18
|
+
Bars: styled_components_dist_types3.IStyledComponentBase<"web", styled_components0.FastOmit<react27.DetailedHTMLProps<react27.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
19
|
+
Button: react27.ForwardRefExoticComponent<Omit<MenuButtonProps, "ref"> & react27.RefAttributes<HTMLButtonElement>>;
|
|
20
|
+
Section: styled_components_dist_types3.IStyledComponentBase<"web", styled_components0.FastOmit<react27.DetailedHTMLProps<react27.HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
|
|
21
21
|
AddImageButton: FC<AddImageProps>;
|
|
22
22
|
};
|
|
23
23
|
declare const EditorText: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react41 from "react";
|
|
2
2
|
import { SearchProps } from "@equinor/eds-core-react";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/Search/Search.d.ts
|
|
5
|
-
declare const Search$1:
|
|
5
|
+
declare const Search$1: react41.ForwardRefExoticComponent<SearchProps & react41.RefAttributes<HTMLInputElement>>;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { Search$1 as Search };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CommonSelectProps, GroupedSelectProps, ListSelectProps, MultiSelectCommon, SelectOptionRequired } from "../Select.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/Select/ComboBox/ComboBox.d.ts
|
|
5
5
|
type ListComboBoxProps<T extends SelectOptionRequired> = CommonSelectProps<T> & MultiSelectCommon<T> & ListSelectProps<T>;
|
|
@@ -18,6 +18,6 @@ type GroupedComboBoxProps<T extends SelectOptionRequired> = CommonSelectProps<T>
|
|
|
18
18
|
* @param showSelectedAsText - If values should be shown as "5/10 Selected", defaults to false
|
|
19
19
|
* @param customMenuItemComponent - Custom component to use for rendering menu item, defaults to a checkbox with label
|
|
20
20
|
*/
|
|
21
|
-
declare function ComboBox<T extends SelectOptionRequired>(props: ListComboBoxProps<T> | GroupedComboBoxProps<T>):
|
|
21
|
+
declare function ComboBox<T extends SelectOptionRequired>(props: ListComboBoxProps<T> | GroupedComboBoxProps<T>): react_jsx_runtime2.JSX.Element;
|
|
22
22
|
//#endregion
|
|
23
23
|
export { ComboBox, GroupedComboBoxProps, ListComboBoxProps };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseChipProps, ClickableChipProps, DeletableChipProps } from "../Chip/Chip.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react45 from "react";
|
|
3
3
|
import "@equinor/eds-core-react";
|
|
4
4
|
import "styled-components";
|
|
5
5
|
import * as styled_components_dist_types8 from "styled-components/dist/types";
|
|
@@ -11,12 +11,12 @@ interface ComboBoxChipProps {
|
|
|
11
11
|
$lightBackground?: boolean;
|
|
12
12
|
className: string;
|
|
13
13
|
}
|
|
14
|
-
declare const ComboBoxChip: styled_components_dist_types8.IStyledComponentBase<"web", styled_components_dist_types8.Substitute<((Omit<
|
|
14
|
+
declare const ComboBoxChip: styled_components_dist_types8.IStyledComponentBase<"web", styled_components_dist_types8.Substitute<((Omit<react45.HTMLAttributes<HTMLDivElement | HTMLButtonElement>, "onClick"> & ((BaseChipProps & {
|
|
15
15
|
onClick?: undefined;
|
|
16
16
|
onDelete?: undefined;
|
|
17
|
-
}) | ClickableChipProps | DeletableChipProps)) &
|
|
17
|
+
}) | ClickableChipProps | DeletableChipProps)) & react45.RefAttributes<HTMLDivElement | HTMLButtonElement>) & styled_components_dist_types8.BaseObject, ComboBoxChipProps>> & string & Omit<react45.ForwardRefExoticComponent<(Omit<react45.HTMLAttributes<HTMLDivElement | HTMLButtonElement>, "onClick"> & ((BaseChipProps & {
|
|
18
18
|
onClick?: undefined;
|
|
19
19
|
onDelete?: undefined;
|
|
20
|
-
}) | ClickableChipProps | DeletableChipProps)) &
|
|
20
|
+
}) | ClickableChipProps | DeletableChipProps)) & react45.RefAttributes<HTMLDivElement | HTMLButtonElement>>, keyof react45.Component<any, {}, any>>;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { ComboBoxChip };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CommonSelectProps, GroupedSelectProps, ListSelectProps, SelectOptionRequired, SingleSelectCommon } from "../Select.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/Select/SingleSelect/SingleSelect.d.ts
|
|
5
5
|
type ListSingleSelectProps<T extends SelectOptionRequired> = CommonSelectProps<T> & SingleSelectCommon<T> & ListSelectProps<T>;
|
|
@@ -16,6 +16,6 @@ type GroupedSingleSelectProps<T extends SelectOptionRequired> = CommonSelectProp
|
|
|
16
16
|
* @param onSearchFilter - Custom filter function for search, default is "item.label.match(new RegExp(searchValue, 'i'))"
|
|
17
17
|
* @param customMenuItemComponent - Custom component to use for rendering menu item, defaults to a checkbox with label
|
|
18
18
|
*/
|
|
19
|
-
declare function SingleSelect<T extends SelectOptionRequired>(props: ListSingleSelectProps<T> | GroupedSingleSelectProps<T>):
|
|
19
|
+
declare function SingleSelect<T extends SelectOptionRequired>(props: ListSingleSelectProps<T> | GroupedSingleSelectProps<T>): react_jsx_runtime0.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { GroupedSingleSelectProps, ListSingleSelectProps, SingleSelect };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react94 from "react";
|
|
2
2
|
import { CheckboxProps } from "@equinor/eds-core-react";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/SelectionControls/Checkbox/Checkbox.d.ts
|
|
@@ -7,6 +7,6 @@ interface CheckboxProps$1 extends CheckboxProps {
|
|
|
7
7
|
outlined?: boolean;
|
|
8
8
|
error?: boolean;
|
|
9
9
|
}
|
|
10
|
-
declare const Checkbox$1:
|
|
10
|
+
declare const Checkbox$1: react94.ForwardRefExoticComponent<CheckboxProps$1 & react94.RefAttributes<HTMLInputElement>>;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { Checkbox$1 as Checkbox, CheckboxProps$1 as CheckboxProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react92 from "react";
|
|
2
2
|
import { RadioProps } from "@equinor/eds-core-react";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/SelectionControls/Radio/Radio.d.ts
|
|
@@ -7,6 +7,6 @@ interface RadioProps$1 extends RadioProps {
|
|
|
7
7
|
outlined?: boolean;
|
|
8
8
|
error?: boolean;
|
|
9
9
|
}
|
|
10
|
-
declare const Radio$1:
|
|
10
|
+
declare const Radio$1: react92.ForwardRefExoticComponent<RadioProps$1 & react92.RefAttributes<HTMLInputElement>>;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { Radio$1 as Radio, RadioProps$1 as RadioProps };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react96 from "react";
|
|
2
2
|
import { SwitchProps } from "@equinor/eds-core-react";
|
|
3
3
|
|
|
4
4
|
//#region src/molecules/SelectionControls/Switch/Switch.d.ts
|
|
5
5
|
interface SwitchProps$1 extends SwitchProps {
|
|
6
6
|
outlined?: boolean;
|
|
7
7
|
}
|
|
8
|
-
declare const Switch$1:
|
|
8
|
+
declare const Switch$1: react96.ForwardRefExoticComponent<SwitchProps$1 & react96.RefAttributes<HTMLInputElement>>;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { Switch$1 as Switch, SwitchProps$1 as SwitchProps };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react39 from "react";
|
|
2
2
|
import * as styled_components_dist_types6 from "styled-components/dist/types";
|
|
3
3
|
import * as styled_components_dist_models_Keyframes0 from "styled-components/dist/models/Keyframes";
|
|
4
4
|
|
|
@@ -7,6 +7,6 @@ declare const skeletonBaseloading: styled_components_dist_models_Keyframes0.defa
|
|
|
7
7
|
interface SkeletonBaseProps {
|
|
8
8
|
$offset?: number;
|
|
9
9
|
}
|
|
10
|
-
declare const SkeletonBase: styled_components_dist_types6.IStyledComponentBase<"web", styled_components_dist_types6.Substitute<
|
|
10
|
+
declare const SkeletonBase: styled_components_dist_types6.IStyledComponentBase<"web", styled_components_dist_types6.Substitute<react39.DetailedHTMLProps<react39.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, SkeletonBaseProps>> & string;
|
|
11
11
|
//#endregion
|
|
12
12
|
export { SkeletonBase, SkeletonBaseProps, skeletonBaseloading };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FilterProps } from "./Filter.types.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime4 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/organisms/Filter/Filter.d.ts
|
|
5
5
|
|
|
@@ -32,6 +32,6 @@ declare function Filter<T extends string>({
|
|
|
32
32
|
id,
|
|
33
33
|
openOnFocus,
|
|
34
34
|
...rest
|
|
35
|
-
}: FilterProps<T>):
|
|
35
|
+
}: FilterProps<T>): react_jsx_runtime4.JSX.Element;
|
|
36
36
|
//#endregion
|
|
37
37
|
export { Filter };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SelectOptionRequired } from "../../molecules/Select/Select.types.js";
|
|
2
2
|
import { FilterProps } from "./Filter.types.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime6 from "react/jsx-runtime";
|
|
4
4
|
|
|
5
5
|
//#region src/organisms/Filter/QuickFilter.d.ts
|
|
6
6
|
interface QuickFilterProps<T extends string> {
|
|
@@ -14,6 +14,6 @@ declare function QuickFilter<T extends string>({
|
|
|
14
14
|
items,
|
|
15
15
|
onQuickFilter,
|
|
16
16
|
label
|
|
17
|
-
}: QuickFilterProps<T>):
|
|
17
|
+
}: QuickFilterProps<T>): react_jsx_runtime6.JSX.Element;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { QuickFilter };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime5 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/organisms/Filter/SortMenu.d.ts
|
|
4
4
|
interface SortMenuProps<S> {
|
|
@@ -13,6 +13,6 @@ declare function SortMenu<S>({
|
|
|
13
13
|
value,
|
|
14
14
|
onChange,
|
|
15
15
|
items
|
|
16
|
-
}: SortMenuProps<S>):
|
|
16
|
+
}: SortMenuProps<S>): react_jsx_runtime5.JSX.Element;
|
|
17
17
|
//#endregion
|
|
18
18
|
export { SortMenu };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{TableOfContentsProvider as e}from"../../providers/TableOfContentsProvider.js";import{TableOfContents as t}from"../TableOfContents/TableOfContents.js";import{useFilteredReleaseNotes as n}from"./hooks/useFilteredReleaseNotes.js";import{extractYearsData as r,monthValueToString as i,yearId as a}from"./ReleaseNotesPage.utils.js";import{ReleasePosts as o}from"./ReleasePosts/ReleasePosts.js";import{ReleaseNoteFilter as s}from"./ReleaseNoteFilter.js";import{Container as c,StickyRightSide as l}from"./ReleaseNotesPage.styles.js";import{useMemo as u}from"react";import{Typography as d}from"@equinor/eds-core-react";import{jsx as f,jsxs as p}from"react/jsx-runtime";const m=()=>{let{data:m}=n();return f(e,{items:u(()=>{let e=[];for(let t of r(m))e.push({value:a(t.value),label:t.label,children:t.months.map(e=>({label:e.label,value:i(e.value)}))});return e},[m]),children:p(c,{children:[f(d,{variant:`h1`,bold:!0,children:`Release Notes`}),p(`section`,{children:[f(s,{}),f(o,{})]}),f(l,{children:f(t,{onlyShowSelectedChildren:!1
|
|
1
|
+
import{TableOfContentsProvider as e}from"../../providers/TableOfContentsProvider.js";import{TableOfContents as t}from"../TableOfContents/TableOfContents.js";import{useFilteredReleaseNotes as n}from"./hooks/useFilteredReleaseNotes.js";import{extractYearsData as r,monthValueToString as i,yearId as a}from"./ReleaseNotesPage.utils.js";import{ReleasePosts as o}from"./ReleasePosts/ReleasePosts.js";import{ReleaseNoteFilter as s}from"./ReleaseNoteFilter.js";import{Container as c,StickyRightSide as l}from"./ReleaseNotesPage.styles.js";import{useMemo as u}from"react";import{Typography as d}from"@equinor/eds-core-react";import{jsx as f,jsxs as p}from"react/jsx-runtime";const m=()=>{let{data:m}=n();return f(e,{items:u(()=>{let e=[];for(let t of r(m))e.push({value:a(t.value),label:t.label,children:t.months.map(e=>({label:e.label,value:i(e.value)}))});return e},[m]),children:p(c,{children:[f(d,{variant:`h1`,bold:!0,children:`Release Notes`}),p(`section`,{children:[f(s,{}),f(o,{})]}),f(l,{children:f(t,{onlyShowSelectedChildren:!1})})]})})};export{m as ReleaseNotesPage};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react121 from "react";
|
|
2
2
|
import { HTMLAttributes, ReactNode } from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/organisms/SideBar/SideBar.d.ts
|
|
@@ -16,6 +16,6 @@ interface SideBarWithCreate extends SideBarProps {
|
|
|
16
16
|
createDisabled?: boolean;
|
|
17
17
|
createActive?: boolean;
|
|
18
18
|
}
|
|
19
|
-
declare const SideBar:
|
|
19
|
+
declare const SideBar: react121.ForwardRefExoticComponent<(SideBarWithCreate | BaseSideBar) & react121.RefAttributes<HTMLDivElement>>;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { SideBar };
|