@uva-glass/component-library 1.59.3 → 1.61.1

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.
Files changed (79) hide show
  1. package/dist/{Lexical.prod-BhH9TCLN.js → Lexical.prod-qM_1BY0u.js} +63 -62
  2. package/dist/{Lexical.prod-BhH9TCLN.js.map → Lexical.prod-qM_1BY0u.js.map} +1 -1
  3. package/dist/{LexicalUtils.prod-Bsuvahba.js → LexicalUtils.prod-BFSPHHi1.js} +2 -2
  4. package/dist/{LexicalUtils.prod-Bsuvahba.js.map → LexicalUtils.prod-BFSPHHi1.js.map} +1 -1
  5. package/dist/ListPlugin-BLefaGXG.js +626 -0
  6. package/dist/ListPlugin-BLefaGXG.js.map +1 -0
  7. package/dist/RteEditor.module-BwAtWRHo.js +29 -0
  8. package/dist/RteEditor.module-BwAtWRHo.js.map +1 -0
  9. package/dist/TablePlugin-BvwAKpcu.js +295 -0
  10. package/dist/TablePlugin-BvwAKpcu.js.map +1 -0
  11. package/dist/assets/EditorHeader.css +1 -1
  12. package/dist/assets/Periods.css +1 -1
  13. package/dist/assets/RteEditor.css +1 -1
  14. package/dist/assets/TableCellContextMenu.css +1 -1
  15. package/dist/assets/TablePlugin.css +1 -1
  16. package/dist/components/CheckboxTree/CheckboxTree.js +2 -2
  17. package/dist/components/InputField/InputField.stories.js +2 -2
  18. package/dist/components/MultiSelect/MultiSelect.js +1 -1
  19. package/dist/components/MultiSelect/MultiSelect.stories.js +1 -1
  20. package/dist/components/MultiSelect/components/MultiSelectHeader.js +2 -2
  21. package/dist/components/MultiSelect/index.js +1 -1
  22. package/dist/components/Periods/Periods.js +19 -19
  23. package/dist/components/ProgrammeCard/ProgrammeCard.stories.js +2 -2
  24. package/dist/components/RteEditor/EditorHeader/EditorHeader.js +14 -31
  25. package/dist/components/RteEditor/EditorHeader/EditorHeader.js.map +1 -1
  26. package/dist/components/RteEditor/Plugins/BlockFormatPlugin/BlockFormatPlugin.d.ts +1 -6
  27. package/dist/components/RteEditor/Plugins/BlockFormatPlugin/BlockFormatPlugin.js +35 -20
  28. package/dist/components/RteEditor/Plugins/BlockFormatPlugin/BlockFormatPlugin.js.map +1 -1
  29. package/dist/components/RteEditor/Plugins/HistoryPlugin/HistoryPlugin.js +38 -31
  30. package/dist/components/RteEditor/Plugins/HistoryPlugin/HistoryPlugin.js.map +1 -1
  31. package/dist/components/RteEditor/Plugins/LinkPlugin/AddLinkFrom.d.ts +3 -3
  32. package/dist/components/RteEditor/Plugins/LinkPlugin/AddLinkFrom.js +4 -4
  33. package/dist/components/RteEditor/Plugins/LinkPlugin/LinkPlugin.d.ts +7 -6
  34. package/dist/components/RteEditor/Plugins/LinkPlugin/LinkPlugin.js +158 -54
  35. package/dist/components/RteEditor/Plugins/LinkPlugin/LinkPlugin.js.map +1 -1
  36. package/dist/components/RteEditor/Plugins/LinkPlugin/helpers.d.ts +1 -3
  37. package/dist/components/RteEditor/Plugins/LinkPlugin/helpers.js +5 -6
  38. package/dist/components/RteEditor/Plugins/LinkPlugin/helpers.js.map +1 -1
  39. package/dist/components/RteEditor/Plugins/LinkPlugin/index.js +3 -2
  40. package/dist/components/RteEditor/Plugins/ListPlugin/ListPlugin.d.ts +1 -6
  41. package/dist/components/RteEditor/Plugins/ListPlugin/ListPlugin.js +10 -31
  42. package/dist/components/RteEditor/Plugins/ListPlugin/ListPlugin.js.map +1 -1
  43. package/dist/components/RteEditor/Plugins/ListPlugin/index.js +1 -1
  44. package/dist/components/RteEditor/Plugins/TablePlugin/AddTableFrom.js +2 -2
  45. package/dist/components/RteEditor/Plugins/TablePlugin/TableCellContextMenu/TableCellContextMenu.d.ts +2 -1
  46. package/dist/components/RteEditor/Plugins/TablePlugin/TableCellContextMenu/TableCellContextMenu.js +106 -31
  47. package/dist/components/RteEditor/Plugins/TablePlugin/TableCellContextMenu/TableCellContextMenu.js.map +1 -1
  48. package/dist/components/RteEditor/Plugins/TablePlugin/TablePlugin.js +6 -5
  49. package/dist/components/RteEditor/Plugins/TablePlugin/TablePlugin.js.map +1 -1
  50. package/dist/components/RteEditor/Plugins/TablePlugin/helpers.js +1 -1
  51. package/dist/components/RteEditor/Plugins/TablePlugin/index.js +1 -1
  52. package/dist/components/RteEditor/Plugins/ToolbarPlugin/ToolbarPlugin.d.ts +6 -7
  53. package/dist/components/RteEditor/Plugins/ToolbarPlugin/ToolbarPlugin.js +43 -47
  54. package/dist/components/RteEditor/Plugins/ToolbarPlugin/ToolbarPlugin.js.map +1 -1
  55. package/dist/components/RteEditor/Plugins/index.js +13 -12
  56. package/dist/components/RteEditor/RteEditor.d.ts +13 -4
  57. package/dist/components/RteEditor/RteEditor.js +408 -416
  58. package/dist/components/RteEditor/RteEditor.js.map +1 -1
  59. package/dist/components/RteEditor/UvaTheme/UvaTheme.js +1 -1
  60. package/dist/components/RteEditor/hooks/components/Flyout.js.map +1 -1
  61. package/dist/components/RteEditor/hooks/useTranslation.d.ts +98 -6
  62. package/dist/components/RteEditor/translations.d.ts +98 -6
  63. package/dist/components/RteEditor/translations.js +104 -12
  64. package/dist/components/RteEditor/translations.js.map +1 -1
  65. package/dist/components/index.js +1 -1
  66. package/dist/{helpers-BRIyyVa6.js → helpers-BB6Byf50.js} +88 -99
  67. package/dist/helpers-BB6Byf50.js.map +1 -0
  68. package/dist/{helpers-CaU5T9i-.js → helpers-D9T1Tgkj.js} +454 -427
  69. package/dist/helpers-D9T1Tgkj.js.map +1 -0
  70. package/dist/index.js +1 -1
  71. package/package.json +4 -3
  72. package/dist/LexicalList.prod-Czb3Osbz.js +0 -564
  73. package/dist/LexicalList.prod-Czb3Osbz.js.map +0 -1
  74. package/dist/RteEditor.module-Dz9a8vaK.js +0 -29
  75. package/dist/RteEditor.module-Dz9a8vaK.js.map +0 -1
  76. package/dist/TablePlugin-deK-rcE1.js +0 -249
  77. package/dist/TablePlugin-deK-rcE1.js.map +0 -1
  78. package/dist/helpers-BRIyyVa6.js.map +0 -1
  79. package/dist/helpers-CaU5T9i-.js.map +0 -1
@@ -3977,94 +3977,95 @@ Yt.version = "0.19.0+prod.esm";
3977
3977
  export {
3978
3978
  ro as $,
3979
3979
  I as A,
3980
- xo as B,
3980
+ _o as B,
3981
3981
  br as C,
3982
3982
  bn as D,
3983
- Mt as E,
3983
+ Kr as E,
3984
3984
  ve as F,
3985
- ao as G,
3986
- Wt as H,
3987
- Bs as I,
3985
+ xo as G,
3986
+ Mt as H,
3987
+ ao as I,
3988
3988
  nt as J,
3989
3989
  no as K,
3990
- mo as L,
3990
+ po as L,
3991
3991
  ot as M,
3992
3992
  ji as N,
3993
3993
  yo as O,
3994
3994
  uo as P,
3995
- Ws as Q,
3996
- Ms as R,
3995
+ Wt as Q,
3996
+ Bs as R,
3997
3997
  Ht as S,
3998
3998
  bi as T,
3999
3999
  Ae as U,
4000
- Is as V,
4001
- $s as W,
4000
+ mo as V,
4001
+ Ws as W,
4002
4002
  dr as X,
4003
- mt as Y,
4003
+ Ms as Y,
4004
4004
  ze as Z,
4005
- so as _,
4005
+ Os as _,
4006
4006
  Pe as a,
4007
- xt as a0,
4008
- yt as a1,
4009
- Ks as a2,
4010
- Js as a3,
4011
- $r as a4,
4012
- Zi as a5,
4013
- He as a6,
4014
- Us as a7,
4015
- Qs as a8,
4016
- wn as a9,
4017
- eo as aA,
4018
- ue as aa,
4019
- ho as ab,
4020
- V as ac,
4021
- fo as ad,
4022
- ce as ae,
4023
- yi as af,
4024
- lt as ag,
4025
- ie as ah,
4026
- vo as ai,
4027
- Wr as aj,
4028
- Xr as ak,
4029
- po as al,
4030
- Zn as am,
4031
- io as an,
4032
- Hs as ao,
4033
- js as ap,
4034
- Vs as aq,
4035
- dn as ar,
4036
- gt as as,
4037
- Gi as at,
4038
- Yi as au,
4039
- Xi as av,
4040
- go as aw,
4041
- Gn as ax,
4042
- Yr as ay,
4043
- to as az,
4044
- oo as b,
4007
+ Is as a0,
4008
+ $s as a1,
4009
+ mt as a2,
4010
+ xt as a3,
4011
+ yt as a4,
4012
+ Ks as a5,
4013
+ Js as a6,
4014
+ $r as a7,
4015
+ Zi as a8,
4016
+ He as a9,
4017
+ to as aA,
4018
+ eo as aB,
4019
+ Us as aa,
4020
+ Qs as ab,
4021
+ ue as ac,
4022
+ ho as ad,
4023
+ V as ae,
4024
+ fo as af,
4025
+ ce as ag,
4026
+ yi as ah,
4027
+ lt as ai,
4028
+ ie as aj,
4029
+ vo as ak,
4030
+ Wr as al,
4031
+ Xr as am,
4032
+ Zn as an,
4033
+ io as ao,
4034
+ Hs as ap,
4035
+ js as aq,
4036
+ Vs as ar,
4037
+ dn as as,
4038
+ gt as at,
4039
+ Gi as au,
4040
+ Yi as av,
4041
+ Xi as aw,
4042
+ go as ax,
4043
+ Gn as ay,
4044
+ Yr as az,
4045
+ v as b,
4045
4046
  N as c,
4046
4047
  we as d,
4047
- lo as e,
4048
+ wn as e,
4048
4049
  $t as f,
4049
4050
  Rr as g,
4050
4051
  Br as h,
4051
- A as i,
4052
- Y as j,
4053
- Ei as k,
4052
+ so as i,
4053
+ lo as j,
4054
+ A as k,
4054
4055
  $ as l,
4055
- v as m,
4056
- co as n,
4056
+ oo as m,
4057
+ Y as n,
4057
4058
  Yn as o,
4058
- hr as p,
4059
- Un as q,
4059
+ Ei as p,
4060
+ co as q,
4060
4061
  Ls as r,
4061
- Qi as s,
4062
+ hr as s,
4062
4063
  qi as t,
4063
- _o as u,
4064
+ Un as u,
4064
4065
  Jt as v,
4065
4066
  G as w,
4066
4067
  F as x,
4067
4068
  Qt as y,
4068
- Kr as z
4069
+ Qi as z
4069
4070
  };
4070
- //# sourceMappingURL=Lexical.prod-BhH9TCLN.js.map
4071
+ //# sourceMappingURL=Lexical.prod-qM_1BY0u.js.map