@orangelogic/design-system 2.153.0 → 2.155.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.
Files changed (37) hide show
  1. package/library/chunks/active-elements.jTVWtBDp.js +10 -0
  2. package/library/chunks/{color-swatch-group.BX90sRwa.js → color-swatch-group.Gh-drOGJ.js} +10 -7
  3. package/library/chunks/{confirm-popover.BFBhjDQ9.js → confirm-popover.C-eHPJaU.js} +1 -1
  4. package/library/chunks/{dialog.DIXmnVis.js → dialog.Bzf4-IgH.js} +1 -1
  5. package/library/chunks/{header.DpBmcfR_.js → header.x8SZLjAG.js} +30 -3
  6. package/library/chunks/{modal.U1QltQKe.js → modal.jdGhujoh.js} +28 -35
  7. package/library/chunks/{tabbable.CcMz3mIL.js → tabbable.BwnZBHrm.js} +2 -2
  8. package/library/components/atoms.js +2 -2
  9. package/library/components/color-swatch-group.js +1 -1
  10. package/library/components/confirm-popover.js +2 -2
  11. package/library/components/dialog.js +2 -2
  12. package/library/components/drawer.js +1 -1
  13. package/library/components/dropdown.js +1 -1
  14. package/library/components/file-on-demand.js +2 -2
  15. package/library/components/header.js +1 -1
  16. package/library/components/menu-item.js +12 -6
  17. package/library/components/molecules.js +1 -1
  18. package/library/components/organisms.js +1 -1
  19. package/library/components/popup.js +37 -34
  20. package/library/components/select.js +34 -31
  21. package/library/components/sidebar.js +2 -2
  22. package/library/components/types.js +2576 -2541
  23. package/library/package.json +1 -1
  24. package/library/packages/atoms/src/components/menu-item/submenu-controller.d.ts +1 -0
  25. package/library/packages/atoms/src/components/popup/popup.d.ts +1 -0
  26. package/library/packages/events/src/cx-annotation-button-click.d.ts +8 -0
  27. package/library/packages/events/src/events.d.ts +1 -0
  28. package/library/packages/molecules/src/multi-select/components/board/board.utils.d.ts +7 -0
  29. package/library/packages/organisms/src/annotator-comment/annotator-comment.d.ts +10 -0
  30. package/library/packages/organisms/src/content-builder/components/config-manager/config-manager.d.ts +1 -1
  31. package/library/packages/organisms/src/content-builder/components/gallery-picker/gallery-picker.d.ts +1 -1
  32. package/library/packages/organisms/src/content-builder/configs/search-box.d.ts +1 -0
  33. package/library/packages/organisms/src/content-builder/configs-controller.d.ts +2 -0
  34. package/library/packages/services/src/api/endpoints.d.ts +1 -1
  35. package/library/react-web-component.d.ts +4 -0
  36. package/library/utils.js +142 -141
  37. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orangelogic/design-system",
3
3
  "type": "module",
4
- "version": "2.153.0",
4
+ "version": "2.155.0",
5
5
  "license": "UNLICENSED",
6
6
  "types": "library/types.d.ts",
7
7
  "scripts": {
@@ -66,6 +66,7 @@ export declare class SubmenuController implements ReactiveController {
66
66
  */
67
67
  private disableNestedSubmenus;
68
68
  private updateSkidding;
69
+ private calculateSkidding;
69
70
  isExpanded(): boolean;
70
71
  renderSubmenu(): import('lit').TemplateResult<1> | null;
71
72
  }
@@ -170,6 +170,7 @@ export default class CxPopup extends CortexElement {
170
170
  private handleOverlayOpened;
171
171
  private handleAnchorChange;
172
172
  private start;
173
+ private stopImmediate;
173
174
  private stop;
174
175
  private updateHoverBridge;
175
176
  /** Forces the popup to recalculate and reposition itself. */
@@ -0,0 +1,8 @@
1
+ export type CxAnnotationButtonClickEvent = CustomEvent<{
2
+ active: boolean;
3
+ }>;
4
+ declare global {
5
+ interface GlobalEventHandlersEventMap {
6
+ 'cx-annotation-button-click': CxAnnotationButtonClickEvent;
7
+ }
8
+ }
@@ -10,6 +10,7 @@ export * from './cx-after-collapse';
10
10
  export * from './cx-after-expand';
11
11
  export * from './cx-after-hide';
12
12
  export * from './cx-after-show';
13
+ export * from './cx-annotation-button-click';
13
14
  export * from './cx-annotator-tool-change';
14
15
  export * from './cx-asset-data-display-slot-change';
15
16
  export * from './cx-asset-format-picker-select';
@@ -1,2 +1,9 @@
1
1
  export declare const getHost: <T = Element>(el: HTMLElement) => T | null;
2
2
  export declare const isSafari: boolean;
3
+ /**
4
+ * True on macOS, regardless of browser. Every browser on macOS (not just Safari) renders the
5
+ * native HTML5 drag image with a stray fly-in animation from the top-left of the screen on drag
6
+ * start (https://link.orangelogic.com/Tasks/41N1B6); forcing SortableJS's JS-driven fallback
7
+ * rendering instead of native HTML5 drag-and-drop avoids it.
8
+ */
9
+ export declare const isMacOs: boolean;
@@ -1,4 +1,5 @@
1
1
  import { AnnotationState } from '@markerjs/markerjs3';
2
+ import { CxAnnotationButtonClickEvent } from '../../../events/src/cx-annotation-button-click';
2
3
  import { CxTimeBasedChangeEvent } from '../../../events/src/cx-time-based-change';
3
4
  import { default as CxComment } from '../comment/comment.ts';
4
5
  import { TimecodeMode } from '../../../types/src/video-editor';
@@ -13,6 +14,7 @@ declare global {
13
14
  /**
14
15
  * @summary CxAnnotatorComment - An extension of the CxComment component that allows users to annotate a specific element.
15
16
  *
17
+ * @event {{ active: boolean }} cx-annotation-button-click - Emitted (bubbles, composed) via the inner `cx-annotator-comment-menu` when the annotation (draw) tool is toggled. `active` is `true` when annotation mode is opened, `false` when it is closed.
16
18
  * @event {{ active: boolean; tool: AnnotatorTool }} cx-annotator-tool-change - Emitted via the inner `cx-annotator` when a drawing tool is selected (`active: true`) or the active tool icon is clicked again to return to select mode (`active: false`). `tool` is the `AnnotatorTool` value (`arrow-marker`, `line-marker`, `rectangle-marker`, `freehand-marker`). Bubbles and composed.
17
19
  */
18
20
  export default class CxAnnotatorComment extends CxComment {
@@ -57,6 +59,13 @@ export default class CxAnnotatorComment extends CxComment {
57
59
  * Whether the time based feature is enabled.
58
60
  */
59
61
  timeBased: boolean;
62
+ /**
63
+ * By default, activating the annotation tool turns the time based feature on,
64
+ * because annotations are tied to a timestamp. Set this to skip that
65
+ * auto-enable — e.g. media without a timeline (images/PDFs) or flows that
66
+ * intentionally allow timeless annotations.
67
+ */
68
+ noAutoTimeBasedOnAnnotate: boolean;
60
69
  /**
61
70
  * The time values for the time based feature.
62
71
  */
@@ -72,6 +81,7 @@ export default class CxAnnotatorComment extends CxComment {
72
81
  runFirstUpdated(): void;
73
82
  handleTimeChange(): void;
74
83
  handleTimeBasedChange(event: CxTimeBasedChangeEvent): void;
84
+ handleAnnotationButtonClick(event: CxAnnotationButtonClickEvent): void;
75
85
  private get timecodeExtension();
76
86
  private handleUndoRequest;
77
87
  private handleRedoRequest;
@@ -218,7 +218,7 @@ export default class CxConfigManager extends CortexElement {
218
218
  handleComponentChange(): Promise<void>;
219
219
  private handleSave;
220
220
  private handleClose;
221
- show(): void;
221
+ show(): Promise<void>;
222
222
  hide(): void;
223
223
  private handleTranslatableValueChange;
224
224
  private handleChange;
@@ -52,7 +52,7 @@ export default class CxGalleryPicker extends CortexElement implements CortexForm
52
52
  */
53
53
  src: string;
54
54
  /**
55
- * The asset format code used to resolve image src URLs when fetching records by ID.
55
+ * The asset format code used to resolve image src URLs.
56
56
  */
57
57
  format: string;
58
58
  /**
@@ -4,6 +4,7 @@ import { SearchBoxWidthType } from '../../../../types/src/search-box';
4
4
  import { LocalizeController } from '../../../../utils/src/custom-element/i18n';
5
5
 
6
6
  type Attribute = {
7
+ 'can-search-by-icon': CxSearchBox['canSearchByIcon'];
7
8
  label: CxSearchBox['label'];
8
9
  placeholder: CxSearchBox['placeholder'];
9
10
  size: CxSearchBox['size'];
@@ -281,6 +281,7 @@ export default class ConfigsController {
281
281
  width: import('./blocks/image/image').default["width"];
282
282
  'zoom-style'?: import('./blocks/image/image').default["zoomStyle"];
283
283
  }>[] | import('../../../types/src/content-builder').PropertyConfig[] | import('../../../types/src/content-builder').PropertyConfig<{
284
+ 'can-search-by-icon': import('../../../molecules/src/index.ts').CxSearchBox["canSearchByIcon"];
284
285
  label: import('../../../molecules/src/index.ts').CxSearchBox["label"];
285
286
  placeholder: import('../../../molecules/src/index.ts').CxSearchBox["placeholder"];
286
287
  size: import('../../../molecules/src/index.ts').CxSearchBox["size"];
@@ -564,6 +565,7 @@ export default class ConfigsController {
564
565
  'page-id': string;
565
566
  src: string;
566
567
  } | {
568
+ 'can-search-by-icon': import('../../../molecules/src/index.ts').CxSearchBox["canSearchByIcon"];
567
569
  label: import('../../../molecules/src/index.ts').CxSearchBox["label"];
568
570
  placeholder: import('../../../molecules/src/index.ts').CxSearchBox["placeholder"];
569
571
  size: import('../../../molecules/src/index.ts').CxSearchBox["size"];
@@ -1,7 +1,7 @@
1
1
  export declare const FOLDER_API_ENDPOINT = "webapi/extensibility/integrations/gab/assetbrowser/gethierarchy_41e8";
2
2
  export declare const AVAILABLE_PROXIES_API_ENDPOINT = "webapi/extensibility/integrations/gab/assetbrowser/AvailableProxies_4ea_v3";
3
3
  export declare const ALL_FORMAT_CODES_API_ENDPOINT = "webapi/extensibility/integrations/gab/assetbrowser/getallformatcodes_428H";
4
- export declare const IMAGE_PASTE_FOLDER_API_ENDPOINT = "webapi/objectmanagement/singleobjecttools/profile/getimagepastefolder_42JL";
4
+ export declare const IMAGE_PASTE_FOLDER_API_ENDPOINT = "webapi/objectmanagement/singleobjecttools/profile/getimagepastefolder_42JL_v1";
5
5
  export declare enum TEAMSPACE_API_ENDPOINT {
6
6
  GET_FONT_FAMILIES = "webapi/objectmanagement/teamspaces/getfontfamilies_42L7_v1",
7
7
  GET_PAGES_AND_LINKS = "webapi/objectmanagement/teamspaces/pagesandlinks_412Y_v1",
@@ -7589,6 +7589,10 @@
7589
7589
  * Whether the time based feature is enabled.
7590
7590
  */
7591
7591
  timeBased?: boolean;
7592
+ /**
7593
+ * By default, activating the annotation tool turns the time based feature on, because annotations are tied to a timestamp. Set this to skip that auto-enable — e.g. media without a timeline (images/PDFs) or flows that intentionally allow timeless annotations.
7594
+ */
7595
+ noAutoTimeBasedOnAnnotate?: boolean;
7592
7596
  /**
7593
7597
  * The time values for the time based feature.
7594
7598
  */
package/library/utils.js CHANGED
@@ -3,37 +3,38 @@ import { R as Ct, U as xt, e as Mt, d as yt, a as St, c as Et, i as At, t as Lt
3
3
  import { j as vt, f as bt, b as Rt, c as Vt, g as Ft, e as kt, i as Ot, a as Yt, h as Nt, m as Ut, d as Pt, r as _t, t as Xt } from "./chunks/toast.TDU3wVhq.js";
4
4
  import { e as Wt, a as Bt, f as $t, g as Gt, d as zt, b as qt, c as Qt, i as Zt, p as jt, s as Jt } from "./chunks/browser.BHOCIF_A.js";
5
5
  import { d as te, C as ee, e as re, H as ae, R as se, c as oe, h as ne, f as ie, g as le, l as ce, a as ue, p as me, b as fe } from "./chunks/color.LzSGBy7o.js";
6
- import { a as ge, b as de, g as pe } from "./chunks/modal.U1QltQKe.js";
7
- import { a as Te, p as we, c as Ce, b as xe, s as Me, w as ye } from "./chunks/event.BeKOsirN.js";
8
- import { t as Ee } from "./chunks/converters.DkDtLstb.js";
9
- import { c as Le } from "./chunks/custom-element.L4WJXn1j.js";
10
- import { d as ve } from "./chunks/debounce.DaHuiSGU.js";
11
- import { d as Re } from "./chunks/default-value.COZopaet.js";
12
- import { d as Fe } from "./chunks/drag.DXEXVXPv.js";
13
- import { f as Oe } from "./chunks/focus-when-visible.jWSw9ks0.js";
6
+ import { a as ge, g as de } from "./chunks/active-elements.jTVWtBDp.js";
7
+ import { a as De, p as Te, c as we, b as Ce, s as xe, w as Me } from "./chunks/event.BeKOsirN.js";
8
+ import { t as Se } from "./chunks/converters.DkDtLstb.js";
9
+ import { c as Ae } from "./chunks/custom-element.L4WJXn1j.js";
10
+ import { d as Ie } from "./chunks/debounce.DaHuiSGU.js";
11
+ import { d as be } from "./chunks/default-value.COZopaet.js";
12
+ import { d as Ve } from "./chunks/drag.DXEXVXPv.js";
13
+ import { f as ke } from "./chunks/focus-when-visible.jWSw9ks0.js";
14
14
  import { f as O } from "./chunks/form.CP9KLGjF.js";
15
- import { F as Ne, c as Ue, g as Pe, v as _e, a as Xe } from "./chunks/form.CP9KLGjF.js";
16
- import { L as We, r as Be } from "./chunks/i18n.Bchq8v1d.js";
17
- import { c as Ge, q as ze } from "./chunks/math.DuKzLacZ.js";
18
- import { g as Qe, l as Ze, s as je, u as Je } from "./chunks/scroll.xtO5yojm.js";
15
+ import { F as Ye, c as Ne, g as Ue, v as Pe, a as _e } from "./chunks/form.CP9KLGjF.js";
16
+ import { L as He, r as We } from "./chunks/i18n.Bchq8v1d.js";
17
+ import { c as $e, q as Ge } from "./chunks/math.DuKzLacZ.js";
18
+ import { g as qe } from "./chunks/modal.jdGhujoh.js";
19
+ import { g as Ze, l as je, s as Je, u as Ke } from "./chunks/scroll.xtO5yojm.js";
19
20
  import { k as y } from "./chunks/dom.C5aVLhKS.js";
20
- import { c as tr, d as er, h as rr, m as ar, a as sr, g as or, j as nr, b as ir, f as lr, i as cr, e as ur, l as mr, s as fr } from "./chunks/dom.C5aVLhKS.js";
21
- import { H as gr, a as dr, g as pr } from "./chunks/slot.j5oheLJC.js";
22
- import { g as Tr, a as wr } from "./chunks/tabbable.CcMz3mIL.js";
23
- import { i as xr } from "./chunks/user-agent.D9aPuOyL.js";
24
- import { w as yr } from "./chunks/watch.DOt4Mabe.js";
25
- import { C as Er } from "./chunks/calendar-grid.BWjcZL5W.js";
26
- import { b as Lr, c as Ir, f as vr, h as br, g as Rr, a as Vr, i as Fr, d as kr, n as Or, e as Yr, p as Nr, t as Ur } from "./chunks/date.iWq_pkIk.js";
21
+ import { c as er, d as rr, h as ar, m as sr, a as or, g as nr, j as ir, b as lr, f as cr, i as ur, e as mr, l as fr, s as hr } from "./chunks/dom.C5aVLhKS.js";
22
+ import { H as dr, a as pr, g as Dr } from "./chunks/slot.j5oheLJC.js";
23
+ import { a as wr, g as Cr } from "./chunks/tabbable.BwnZBHrm.js";
24
+ import { i as Mr } from "./chunks/user-agent.D9aPuOyL.js";
25
+ import { w as Sr } from "./chunks/watch.DOt4Mabe.js";
26
+ import { C as Ar } from "./chunks/calendar-grid.BWjcZL5W.js";
27
+ import { b as Ir, c as vr, f as br, h as Rr, g as Vr, a as Fr, i as kr, d as Or, n as Yr, e as Nr, p as Ur, t as Pr } from "./chunks/date.iWq_pkIk.js";
27
28
  import { f as c, a as u, D as m } from "./chunks/date-picker.BGHn6qg8.js";
28
- import { f as _r } from "./chunks/content-builder.BU8X7I6V.js";
29
- import { c as Hr, f as Wr, e as Br, b as $r, g as Gr, d as zr, i as qr, r as Qr, a as Zr } from "./chunks/image.QVlPFadX.js";
30
- import { b as Jr, e as Kr } from "./chunks/waveform.1U9U_0rd.js";
31
- import { a as ea, b as ra, c as aa, e as sa, d as oa, f as na, g as ia, r as la, s as ca } from "./chunks/number.CtCaI0T_.js";
32
- import { s as ma } from "./chunks/parse.Cu5nBDTb.js";
33
- import { b as ha, o as ga, d as da, e as pa, f as Da, m as Ta, q as wa, g as Ca, h as xa, l as Ma, p as ya, z as Sa, y as Ea, a as Aa, c as La, s as Ia, x as va, v as ba, t as Ra, r as Va, w as Fa, i as ka, n as Oa, u as Ya } from "./chunks/string.BhJ0Zogu.js";
34
- import { g as Ua, a as Pa } from "./chunks/template.ClovJacp.js";
35
- import { c as Xa, f as Ha, a as Wa, g as Ba } from "./chunks/time.DWfbnPnM.js";
36
- import { b as Ga } from "./chunks/transformation.DGzjBg6V.js";
29
+ import { f as Xr } from "./chunks/content-builder.BU8X7I6V.js";
30
+ import { c as Wr, f as Br, e as $r, b as Gr, g as zr, d as qr, i as Qr, r as Zr, a as jr } from "./chunks/image.QVlPFadX.js";
31
+ import { b as Kr, e as ta } from "./chunks/waveform.1U9U_0rd.js";
32
+ import { a as ra, b as aa, c as sa, e as oa, d as na, f as ia, g as la, r as ca, s as ua } from "./chunks/number.CtCaI0T_.js";
33
+ import { s as fa } from "./chunks/parse.Cu5nBDTb.js";
34
+ import { b as ga, o as da, d as pa, e as Da, f as Ta, m as wa, q as Ca, g as xa, h as Ma, l as ya, p as Sa, z as Ea, y as Aa, a as La, c as Ia, s as va, x as ba, v as Ra, t as Va, r as Fa, w as ka, i as Oa, n as Ya, u as Na } from "./chunks/string.BhJ0Zogu.js";
35
+ import { g as Pa, a as _a } from "./chunks/template.ClovJacp.js";
36
+ import { c as Ha, f as Wa, a as Ba, g as $a } from "./chunks/time.DWfbnPnM.js";
37
+ import { b as za } from "./chunks/transformation.DGzjBg6V.js";
37
38
  function n(t) {
38
39
  const e = t.getFullYear(), r = String(t.getMonth() + 1).padStart(2, "0"), s = String(t.getDate()).padStart(2, "0");
39
40
  return `${e}-${r}-${s}`;
@@ -572,18 +573,18 @@ function Dt({
572
573
  }
573
574
  export {
574
575
  te as CMYK_VALIDATION_REGEX,
575
- Er as CalendarGrid,
576
+ Ar as CalendarGrid,
576
577
  ee as ColorType,
577
578
  K as CortexPopupController,
578
579
  G as DateRangePresets,
579
580
  tt as DragScroll,
580
- Ne as FormControlController,
581
+ Ye as FormControlController,
581
582
  re as HEX_ALPHA_VALIDATION_REGEX,
582
583
  ae as HEX_VALIDATION_REGEX,
583
- gr as HasSlotController,
584
+ dr as HasSlotController,
584
585
  lt as HistoryManager,
585
586
  U as KeyboardKey,
586
- We as LocalizeController,
587
+ He as LocalizeController,
587
588
  P as PRECISION,
588
589
  Ct as RELATIVE_URL_REGEX,
589
590
  se as RGB_VALIDATION_REGEX,
@@ -591,177 +592,177 @@ export {
591
592
  Mt as URL_PROTOCOL_VALIDATION_REGEX,
592
593
  yt as URL_VALIDATION_REGEX,
593
594
  ge as activeElements,
594
- Lr as addMonths,
595
+ Ir as addMonths,
595
596
  vt as adjustRelativeValues,
596
- Te as animateTo,
597
+ De as animateTo,
597
598
  k as appendProtocol,
598
599
  St as appendQueryParam,
599
- Ga as buildTransformationString,
600
- Jr as buildWaveformPath,
601
- Hr as calculateAspectRatioFit,
602
- Ge as clamp,
603
- Wr as cleanImageFileName,
604
- Xa as clearZeroDurationParts,
600
+ za as buildTransformationString,
601
+ Kr as buildWaveformPath,
602
+ Wr as calculateAspectRatioFit,
603
+ $e as clamp,
604
+ Br as cleanImageFileName,
605
+ Ha as clearZeroDurationParts,
605
606
  oe as convertColor,
606
- ea as convertDataUnits,
607
- ra as convertDurationToMilliseconds,
608
- aa as convertPixelsToAspectRatio,
609
- Br as convertSrcToBlob,
610
- $r as cropImage,
611
- tr as cssValueToPx,
612
- Le as customElement,
613
- Ue as customErrorValidityState,
614
- ve as debounce,
615
- Re as defaultValue,
607
+ ra as convertDataUnits,
608
+ aa as convertDurationToMilliseconds,
609
+ sa as convertPixelsToAspectRatio,
610
+ $r as convertSrcToBlob,
611
+ Gr as cropImage,
612
+ er as cssValueToPx,
613
+ Ae as customElement,
614
+ Ne as customErrorValidityState,
615
+ Ie as debounce,
616
+ be as defaultValue,
616
617
  J as downloadAsset,
617
- Fe as drag,
618
- ha as emptyToSpace,
619
- ga as escapeXML,
618
+ Ve as drag,
619
+ ga as emptyToSpace,
620
+ da as escapeXML,
620
621
  ne as extractColor,
621
- da as extractExtension,
622
+ pa as extractExtension,
622
623
  pt as extractFrames,
623
- pa as extractRootData,
624
- sa as extractValueAndUnit,
625
- Kr as extractWaveformPeaks,
626
- _r as fetchCortexApi,
624
+ Da as extractRootData,
625
+ oa as extractValueAndUnit,
626
+ ta as extractWaveformPeaks,
627
+ Xr as fetchCortexApi,
627
628
  Wt as findAncestorWithBuggyStyle,
628
629
  Bt as findContainingBlock,
629
630
  $t as findCuttingAncestor,
630
631
  _ as findFrameByColAndRow,
631
632
  bt as findIndexByProp,
632
- Oe as focusWhenVisible,
633
+ ke as focusWhenVisible,
633
634
  O as formCollections,
634
- oa as formatAspectRatioString,
635
- Ha as formatDurationPartsManually,
636
- Ir as formatIsoToDisplay,
637
- vr as formatMonthYearLabel,
638
- na as formatNumberWithGrouping,
639
- Da as formatSecondsToTime,
640
- Ta as formatTimeToSeconds,
641
- Wa as formatWithIntlDurationFormat,
642
- ia as gcd,
643
- er as getActiveElement,
644
- de as getActiveModals,
645
- Pe as getAssociatedForm,
646
- rr as getAttributes,
647
- wa as getAttributesString,
635
+ na as formatAspectRatioString,
636
+ Wa as formatDurationPartsManually,
637
+ vr as formatIsoToDisplay,
638
+ br as formatMonthYearLabel,
639
+ ia as formatNumberWithGrouping,
640
+ Ta as formatSecondsToTime,
641
+ wa as formatTimeToSeconds,
642
+ Ba as formatWithIntlDurationFormat,
643
+ la as gcd,
644
+ rr as getActiveElement,
645
+ qe as getActiveModals,
646
+ Ue as getAssociatedForm,
647
+ ar as getAttributes,
648
+ Ca as getAttributesString,
648
649
  Rt as getBreakpointsFromCSS,
649
650
  ot as getBrowserFontVariants,
650
651
  ie as getColorType,
651
- Gr as getContainedImageSize,
652
- ar as getCortexPopupLayer,
652
+ zr as getContainedImageSize,
653
+ sr as getCortexPopupLayer,
653
654
  y as getCurrentZIndex,
654
- br as getDateMask,
655
- pe as getDeepestActiveElement,
655
+ Rr as getDateMask,
656
+ de as getDeepestActiveElement,
656
657
  Vt as getDeviceType,
657
- Ba as getDurationPartsByUnitsFormat,
658
- sr as getElementFromHTMLString,
659
- or as getElementFromTemplate,
660
- Rr as getFirstDayOfWeek,
658
+ $a as getDurationPartsByUnitsFormat,
659
+ or as getElementFromHTMLString,
660
+ nr as getElementFromTemplate,
661
+ Vr as getFirstDayOfWeek,
661
662
  at as getFontFamilyOptionValue,
662
663
  N as getFormControls,
663
- Ua as getHighlightedTitle,
664
- Pa as getHighlightedTitleHtml,
665
- dr as getInnerHTML,
664
+ Pa as getHighlightedTitle,
665
+ _a as getHighlightedTitleHtml,
666
+ pr as getInnerHTML,
666
667
  Dt as getInterval,
667
668
  le as getLightDarkCssString,
668
- zr as getNaturalWidthHeight,
669
- nr as getNeededPaddingForBoxShadow,
669
+ qr as getNaturalWidthHeight,
670
+ ir as getNeededPaddingForBoxShadow,
670
671
  Gt as getNextAncestor,
671
- Qe as getOffset,
672
- ir as getRelativeClickPercentage,
673
- Ca as getRootIDString,
674
- Tr as getTabbableBoundary,
675
- wr as getTabbableElements,
676
- pr as getTextContent,
677
- Vr as getTodayIsoDate,
672
+ Ze as getOffset,
673
+ lr as getRelativeClickPercentage,
674
+ xa as getRootIDString,
675
+ wr as getTabbableBoundary,
676
+ Cr as getTabbableElements,
677
+ Dr as getTextContent,
678
+ Fr as getTodayIsoDate,
678
679
  rt as getTypefaceOptionValue,
679
680
  Ft as groupBy,
680
- xa as htmlToPlainText,
681
+ Ma as htmlToPlainText,
681
682
  kt as insertAtIndex,
682
683
  dt as insertFrameToCache,
683
684
  Ot as insertMultipleAtIndex,
684
685
  zt as isChrome,
685
- xr as isCortexAdobePlugin,
686
- lr as isDomElement,
687
- cr as isElementInHorizontalView,
686
+ Mr as isCortexAdobePlugin,
687
+ cr as isDomElement,
688
+ ur as isElementInHorizontalView,
688
689
  Et as isExpiredAssetUrl,
689
690
  qt as isFirefox,
690
691
  st as isFontFamilyAvailable,
691
692
  it as isFormInteracted,
692
- Ma as isGalleryItemCardType,
693
+ ya as isGalleryItemCardType,
693
694
  Qt as isIOS,
694
- ur as isInElement,
695
+ mr as isInElement,
695
696
  et as isModKey,
696
697
  Zt as isSafari,
697
- qr as isSaveSrcValid,
698
- Fr as isValidIsoDate,
698
+ Qr as isSaveSrcValid,
699
+ kr as isValidIsoDate,
699
700
  At as isValidUrl,
700
- kr as isoToDate,
701
+ Or as isoToDate,
701
702
  z as isoWeekNumber,
702
- mr as loadScript,
703
- Ze as lockBodyScrolling,
703
+ fr as loadScript,
704
+ je as lockBodyScrolling,
704
705
  ce as luminanceTextColor,
705
706
  Yt as moveMultipleToIndex,
706
707
  Nt as moveToIndex,
707
708
  Ut as multiSelectTo,
708
- Or as normalizeToIsoDate,
709
+ Yr as normalizeToIsoDate,
709
710
  ct as omit,
710
711
  q as openAssetOverview,
711
712
  Q as openFolderOverview,
712
713
  Z as openLink,
713
- ya as padPath,
714
- Sa as parseBooleanString,
714
+ Sa as padPath,
715
+ Ea as parseBooleanString,
715
716
  ue as parseBorder,
716
- Yr as parseDisplayToIso,
717
- we as parseDuration,
718
- Nr as parseIsoDate,
717
+ Nr as parseDisplayToIso,
718
+ Te as parseDuration,
719
+ Ur as parseIsoDate,
719
720
  mt as parseJsonString,
720
721
  me as parseLightDark,
721
722
  ft as parseListString,
722
723
  fe as parseShadow,
723
724
  ut as pick,
724
725
  jt as popoverSupported,
725
- Ce as prefersReducedMotion,
726
- ze as quantizeLargestRemainder,
726
+ we as prefersReducedMotion,
727
+ Ge as quantizeLargestRemainder,
727
728
  ht as readLocalStorageValue,
728
- Ea as reducePathToDirectChild,
729
- Be as registerTranslation,
729
+ Aa as reducePathToDirectChild,
730
+ We as registerTranslation,
730
731
  Pt as removeAtIndex,
731
732
  _t as removeMultipleAtIndex,
732
- Qr as resizeImage,
733
- la as rotateBox,
734
- Zr as rotateImage,
735
- Aa as safeExtension,
736
- La as safeString,
737
- Ia as sanitizeHTML,
738
- ca as sanitizeRotation,
739
- je as scrollIntoView,
733
+ Zr as resizeImage,
734
+ ca as rotateBox,
735
+ jr as rotateImage,
736
+ La as safeExtension,
737
+ Ia as safeString,
738
+ va as sanitizeHTML,
739
+ ua as sanitizeRotation,
740
+ Je as scrollIntoView,
740
741
  nt as serialize,
741
742
  j as shareAsset,
742
- xe as shimKeyframesHeightAuto,
743
- fr as sortByTopPosition,
743
+ Ce as shimKeyframesHeightAuto,
744
+ hr as sortByTopPosition,
744
745
  Y as sortTypefaceVariants,
745
- ma as splitBoxValues,
746
- va as splitCamelCaseFormatted,
747
- Me as stopAnimations,
746
+ fa as splitBoxValues,
747
+ ba as splitCamelCaseFormatted,
748
+ xe as stopAnimations,
748
749
  Jt as supportHLS,
749
750
  V as testFontAvailability,
750
- Ee as timecodeConverter,
751
- ba as toCamelCase,
752
- Ur as toIsoDate,
753
- Ra as toKebabCase,
754
- Va as toPascalCase,
751
+ Se as timecodeConverter,
752
+ Ra as toCamelCase,
753
+ Pr as toIsoDate,
754
+ Va as toKebabCase,
755
+ Fa as toPascalCase,
755
756
  Lt as toRelativeUrl,
756
- Fa as toTitleCase,
757
+ ka as toTitleCase,
757
758
  Xt as toast,
758
- ka as truncateTextMiddle,
759
- Oa as unescapeXML,
760
- Je as unlockBodyScrolling,
761
- Ya as upperFirst,
762
- _e as validValidityState,
763
- Xe as valueMissingValidityState,
764
- ye as waitForEvent,
765
- yr as watch,
759
+ Oa as truncateTextMiddle,
760
+ Ya as unescapeXML,
761
+ Ke as unlockBodyScrolling,
762
+ Na as upperFirst,
763
+ Pe as validValidityState,
764
+ _e as valueMissingValidityState,
765
+ Me as waitForEvent,
766
+ Sr as watch,
766
767
  gt as writeLocalStorageValue
767
768
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orangelogic/design-system",
3
3
  "type": "module",
4
- "version": "2.153.0",
4
+ "version": "2.155.0",
5
5
  "license": "UNLICENSED",
6
6
  "types": "library/types.d.ts",
7
7
  "scripts": {