@arkitektbedriftene/fe-lib 0.4.6 → 0.4.7

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.
@@ -3619,17 +3619,17 @@ const fe = j("div"), St = Bn(
3619
3619
  }
3620
3620
  );
3621
3621
  export {
3622
- ki as A,
3622
+ Ci as A,
3623
3623
  fe as B,
3624
- zi as C,
3624
+ ki as C,
3625
3625
  _i as D,
3626
- ji as E,
3626
+ Ai as E,
3627
3627
  Zo as F,
3628
- Hi as G,
3629
- Vi as H,
3630
- Rt as I,
3631
- Gi as J,
3632
- Ui as K,
3628
+ In as G,
3629
+ zi as H,
3630
+ Ni as I,
3631
+ Rt as J,
3632
+ Gi as K,
3633
3633
  gi as M,
3634
3634
  Wi as N,
3635
3635
  ln as O,
@@ -3652,14 +3652,14 @@ export {
3652
3652
  Ki as n,
3653
3653
  Xr as o,
3654
3654
  Yi as p,
3655
- Pi as q,
3656
- Bi as r,
3655
+ ji as q,
3656
+ Hi as r,
3657
3657
  j as s,
3658
- De as t,
3658
+ Ui as t,
3659
3659
  ri as u,
3660
- Ei as v,
3661
- Ci as w,
3662
- Ai as x,
3663
- In as y,
3664
- Ni as z
3660
+ Vi as v,
3661
+ Pi as w,
3662
+ Bi as x,
3663
+ De as y,
3664
+ Ei as z
3665
3665
  };
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const LinkToolbarButton: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import type { ElementNode, RangeSelection, TextNode } from "lexical";
2
+ export declare function getSelectedNode(selection: RangeSelection): TextNode | ElementNode;
@@ -5,3 +5,4 @@ export * from './editorContext';
5
5
  export * from './styles';
6
6
  export * from './Toolbar/Toolbar';
7
7
  export * from './Plugins/TableEditPlugin';
8
+ export * from './Plugins/LinkInsertPlugin';
@@ -0,0 +1 @@
1
+ export declare function sanitizeUrl(url: string): string;