@salesforce/ui-design-mode 10.5.1 → 10.6.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 (51) hide show
  1. package/dist/authoring/core/DesignPropertyPanelRoot.d.cts +17 -3
  2. package/dist/authoring/core/DesignPropertyPanelRoot.d.ts +17 -3
  3. package/dist/authoring/core/DesignPropertyPanelRoot.d.ts.map +1 -1
  4. package/dist/authoring/core/editors/BorderStyleEditor.d.cts +6 -1
  5. package/dist/authoring/core/editors/BorderStyleEditor.d.ts +6 -1
  6. package/dist/authoring/core/editors/BorderStyleEditor.d.ts.map +1 -1
  7. package/dist/authoring/core/editors/BoxDimensionEditor.d.cts +14 -3
  8. package/dist/authoring/core/editors/BoxDimensionEditor.d.ts +14 -3
  9. package/dist/authoring/core/editors/BoxDimensionEditor.d.ts.map +1 -1
  10. package/dist/authoring/core/editors/ColorEditor.d.cts +6 -1
  11. package/dist/authoring/core/editors/ColorEditor.d.ts +6 -1
  12. package/dist/authoring/core/editors/ColorEditor.d.ts.map +1 -1
  13. package/dist/authoring/core/editors/DimensionEditor.d.cts +6 -1
  14. package/dist/authoring/core/editors/DimensionEditor.d.ts +6 -1
  15. package/dist/authoring/core/editors/DimensionEditor.d.ts.map +1 -1
  16. package/dist/authoring/core/editors/FontFamilyEditor.d.cts +6 -1
  17. package/dist/authoring/core/editors/FontFamilyEditor.d.ts +6 -1
  18. package/dist/authoring/core/editors/FontFamilyEditor.d.ts.map +1 -1
  19. package/dist/authoring/core/editors/FontStyleEditor.d.cts +6 -1
  20. package/dist/authoring/core/editors/FontStyleEditor.d.ts +6 -1
  21. package/dist/authoring/core/editors/FontStyleEditor.d.ts.map +1 -1
  22. package/dist/authoring/core/editors/FontWeightEditor.d.cts +6 -1
  23. package/dist/authoring/core/editors/FontWeightEditor.d.ts +6 -1
  24. package/dist/authoring/core/editors/FontWeightEditor.d.ts.map +1 -1
  25. package/dist/authoring/core/editors/OverflowEditor.d.cts +6 -1
  26. package/dist/authoring/core/editors/OverflowEditor.d.ts +6 -1
  27. package/dist/authoring/core/editors/OverflowEditor.d.ts.map +1 -1
  28. package/dist/authoring/core/editors/TextAlignmentEditor.d.cts +6 -1
  29. package/dist/authoring/core/editors/TextAlignmentEditor.d.ts +6 -1
  30. package/dist/authoring/core/editors/TextAlignmentEditor.d.ts.map +1 -1
  31. package/dist/authoring/core/editors/TextDecorationEditor.d.cts +6 -1
  32. package/dist/authoring/core/editors/TextDecorationEditor.d.ts +6 -1
  33. package/dist/authoring/core/editors/TextDecorationEditor.d.ts.map +1 -1
  34. package/dist/authoring/core/editors/TextTransformEditor.d.cts +6 -1
  35. package/dist/authoring/core/editors/TextTransformEditor.d.ts +6 -1
  36. package/dist/authoring/core/editors/TextTransformEditor.d.ts.map +1 -1
  37. package/dist/authoring/core/labels/labels.d.cts +444 -0
  38. package/dist/authoring/core/labels/labels.d.ts +444 -0
  39. package/dist/authoring/core/labels/labels.d.ts.map +1 -0
  40. package/dist/authoring/core/utils/dimensionUtils.d.cts +2 -1
  41. package/dist/authoring/core/utils/dimensionUtils.d.ts +2 -1
  42. package/dist/authoring/core/utils/dimensionUtils.d.ts.map +1 -1
  43. package/dist/authoring/react/index.d.cts +2 -0
  44. package/dist/authoring/react/index.d.ts +2 -0
  45. package/dist/authoring/react/index.d.ts.map +1 -1
  46. package/dist/authoring/react/index.js +3 -3
  47. package/dist/authoring/web-component/index.d.cts +31 -0
  48. package/dist/authoring/web-component/index.d.ts +31 -0
  49. package/dist/authoring/web-component/index.d.ts.map +1 -1
  50. package/dist/authoring/web-component/index.js +20 -18
  51. package/package.json +2 -1
@@ -1,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { ComponentData, ComponentStyleValue, SourceLocation } from '../../protocol.cjs';
3
3
  import { ChangeContext } from './history/historyService.cjs';
4
+ import { PanelLabels } from './labels/labels.cjs';
4
5
  /** Selected-component subset the panel renders. Mirrors the protocol payload. */
5
6
  export type DesignPanelComponent = Pick<ComponentData, "name" | "tagName" | "debugSource" | "hasNonEditableText">;
6
7
  /** Per-property inline + computed style values pushed from the host. */
@@ -35,11 +36,24 @@ export interface DesignPropertyPanelProps {
35
36
  /**
36
37
  * Whether to render the panel's "add selected element to chat as context"
37
38
  * button. Defaults to `true`. A surface with no AI-chat integration sets this
38
- * to `false` to hide the button without forking the panel. The button's
39
- * visible label defaults to neutral text ("Add to chat as context");
40
- * per-surface relabeling is future work (Epic 5's `strings` prop).
39
+ * to `false` to hide the button without forking the panel.
41
40
  */
42
41
  showAddToChatContext?: boolean;
42
+ /**
43
+ * Whether to render the selected component's "jump to source" link (the
44
+ * file:line row). Defaults to `true`. A surface with no source-code viewer
45
+ * (e.g. Codey Studio) sets this to `false` to hide the entire source row; the
46
+ * component name still shows and `onOpenSourceFile` is not wired.
47
+ */
48
+ showOpenSourceFile?: boolean;
49
+ /**
50
+ * Fully-resolved, localized strings for everything the panel renders. Optional:
51
+ * omit it (VS Code) and the panel renders its English defaults; pass a complete
52
+ * `PanelLabels` (Codey) for another locale. Labels are values the surface
53
+ * resolves — the panel never resolves keys against an i18n library. See
54
+ * `core/labels/labels.ts`.
55
+ */
56
+ labels?: PanelLabels;
43
57
  }
44
58
  /** Imperative handle exposed via ref for toolbar-driven history control. */
45
59
  export interface DesignPropertyPanelHandle {
@@ -1,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { ComponentData, ComponentStyleValue, SourceLocation } from '../../protocol.js';
3
3
  import { ChangeContext } from './history/historyService.js';
4
+ import { PanelLabels } from './labels/labels.js';
4
5
  /** Selected-component subset the panel renders. Mirrors the protocol payload. */
5
6
  export type DesignPanelComponent = Pick<ComponentData, "name" | "tagName" | "debugSource" | "hasNonEditableText">;
6
7
  /** Per-property inline + computed style values pushed from the host. */
@@ -35,11 +36,24 @@ export interface DesignPropertyPanelProps {
35
36
  /**
36
37
  * Whether to render the panel's "add selected element to chat as context"
37
38
  * button. Defaults to `true`. A surface with no AI-chat integration sets this
38
- * to `false` to hide the button without forking the panel. The button's
39
- * visible label defaults to neutral text ("Add to chat as context");
40
- * per-surface relabeling is future work (Epic 5's `strings` prop).
39
+ * to `false` to hide the button without forking the panel.
41
40
  */
42
41
  showAddToChatContext?: boolean;
42
+ /**
43
+ * Whether to render the selected component's "jump to source" link (the
44
+ * file:line row). Defaults to `true`. A surface with no source-code viewer
45
+ * (e.g. Codey Studio) sets this to `false` to hide the entire source row; the
46
+ * component name still shows and `onOpenSourceFile` is not wired.
47
+ */
48
+ showOpenSourceFile?: boolean;
49
+ /**
50
+ * Fully-resolved, localized strings for everything the panel renders. Optional:
51
+ * omit it (VS Code) and the panel renders its English defaults; pass a complete
52
+ * `PanelLabels` (Codey) for another locale. Labels are values the surface
53
+ * resolves — the panel never resolves keys against an i18n library. See
54
+ * `core/labels/labels.ts`.
55
+ */
56
+ labels?: PanelLabels;
43
57
  }
44
58
  /** Imperative handle exposed via ref for toolbar-driven history control. */
45
59
  export interface DesignPropertyPanelHandle {
@@ -1 +1 @@
1
- {"version":3,"file":"DesignPropertyPanelRoot.d.ts","sourceRoot":"","sources":["../../../src/authoring/core/DesignPropertyPanelRoot.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EAAE,aAAa,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAazF,OAAO,EAEN,KAAK,aAAa,EAElB,MAAM,0BAA0B,CAAC;AASlC,iFAAiF;AACjF,MAAM,MAAM,oBAAoB,GAAG,IAAI,CACtC,aAAa,EACb,MAAM,GAAG,SAAS,GAAG,aAAa,GAAG,oBAAoB,CACzD,CAAC;AAEF,wEAAwE;AACxE,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,mBAAmB,CAAC,CAAC;AAEjE,yFAAyF;AACzF,MAAM,MAAM,wBAAwB,GAAG,aAAa,CAAC;AAErD,mFAAmF;AACnF,MAAM,WAAW,qBAAqB;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;CACrB;AAED,qFAAqF;AACrF,MAAM,WAAW,wBAAwB;IACxC,4DAA4D;IAC5D,SAAS,EAAE,oBAAoB,GAAG,IAAI,CAAC;IACvC,iEAAiE;IACjE,MAAM,EAAE,cAAc,GAAG,IAAI,CAAC;IAC9B,iFAAiF;IACjF,aAAa,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc,KAAK,IAAI,CAAC;IAC1F,+EAA+E;IAC/E,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc,KAAK,IAAI,CAAC;IACvE,sCAAsC;IACtC,oBAAoB,CAAC,EAAE,CAAC,KAAK,EAAE;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAE,KAAK,IAAI,CAAC;IAC/E,4EAA4E;IAC5E,kBAAkB,CAAC,EAAE,CAAC,OAAO,EAAE,wBAAwB,KAAK,IAAI,CAAC;IACjE,8DAA8D;IAC9D,gBAAgB,CAAC,EAAE,CAAC,OAAO,EAAE,qBAAqB,KAAK,IAAI,CAAC;IAC5D;;;;;;OAMG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAC/B;AAED,4EAA4E;AAC5E,MAAM,WAAW,yBAAyB;IACzC,IAAI,IAAI,IAAI,CAAC;IACb,IAAI,IAAI,IAAI,CAAC;IACb,YAAY,IAAI,IAAI,CAAC;IACrB,eAAe,IAAI,OAAO,EAAE,CAAC;IAC7B,gBAAgB,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;IACvF,OAAO,IAAI,OAAO,CAAC;IACnB,OAAO,IAAI,OAAO,CAAC;CACnB;AAqVD,eAAO,MAAM,mBAAmB,4GAyM9B,CAAC;AAEH;;;GAGG;AACH,wBAAgB,wBAAwB,CACvC,MAAM,EAAE,WAAW,GAAG,IAAI,EAC1B,KAAK,EAAE,wBAAwB,EAC/B,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,yBAAyB,CAAC,QAK1C"}
1
+ {"version":3,"file":"DesignPropertyPanelRoot.d.ts","sourceRoot":"","sources":["../../../src/authoring/core/DesignPropertyPanelRoot.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,KAAK,EAAE,aAAa,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAazF,OAAO,EAEN,KAAK,aAAa,EAElB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAiB,KAAK,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAkElE,iFAAiF;AACjF,MAAM,MAAM,oBAAoB,GAAG,IAAI,CACtC,aAAa,EACb,MAAM,GAAG,SAAS,GAAG,aAAa,GAAG,oBAAoB,CACzD,CAAC;AAEF,wEAAwE;AACxE,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,mBAAmB,CAAC,CAAC;AAEjE,yFAAyF;AACzF,MAAM,MAAM,wBAAwB,GAAG,aAAa,CAAC;AAErD,mFAAmF;AACnF,MAAM,WAAW,qBAAqB;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;CACrB;AAED,qFAAqF;AACrF,MAAM,WAAW,wBAAwB;IACxC,4DAA4D;IAC5D,SAAS,EAAE,oBAAoB,GAAG,IAAI,CAAC;IACvC,iEAAiE;IACjE,MAAM,EAAE,cAAc,GAAG,IAAI,CAAC;IAC9B,iFAAiF;IACjF,aAAa,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc,KAAK,IAAI,CAAC;IAC1F,+EAA+E;IAC/E,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc,KAAK,IAAI,CAAC;IACvE,sCAAsC;IACtC,oBAAoB,CAAC,EAAE,CAAC,KAAK,EAAE;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAE,KAAK,IAAI,CAAC;IAC/E,4EAA4E;IAC5E,kBAAkB,CAAC,EAAE,CAAC,OAAO,EAAE,wBAAwB,KAAK,IAAI,CAAC;IACjE,8DAA8D;IAC9D,gBAAgB,CAAC,EAAE,CAAC,OAAO,EAAE,qBAAqB,KAAK,IAAI,CAAC;IAC5D;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,WAAW,CAAC;CACrB;AAED,4EAA4E;AAC5E,MAAM,WAAW,yBAAyB;IACzC,IAAI,IAAI,IAAI,CAAC;IACb,IAAI,IAAI,IAAI,CAAC;IACb,YAAY,IAAI,IAAI,CAAC;IACrB,eAAe,IAAI,OAAO,EAAE,CAAC;IAC7B,gBAAgB,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,IAAI,CAAC;IACvF,OAAO,IAAI,OAAO,CAAC;IACnB,OAAO,IAAI,OAAO,CAAC;CACnB;AA4XD,eAAO,MAAM,mBAAmB,4GA8N9B,CAAC;AAEH;;;GAGG;AACH,wBAAgB,wBAAwB,CACvC,MAAM,EAAE,WAAW,GAAG,IAAI,EAC1B,KAAK,EAAE,wBAAwB,EAC/B,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,yBAAyB,CAAC,QAK1C"}
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.cjs';
2
+ type BorderStyleOptionLabels = PanelLabels["editors"]["borderStyle"]["options"];
1
3
  export interface BorderStyleEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: BorderStyleOptionLabels;
6
10
  }
7
- export declare function BorderStyleEditor({ label, value, onChange, id, }: BorderStyleEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function BorderStyleEditor({ label, value, onChange, id, optionLabels, }: BorderStyleEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=BorderStyleEditor.d.ts.map
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.js';
2
+ type BorderStyleOptionLabels = PanelLabels["editors"]["borderStyle"]["options"];
1
3
  export interface BorderStyleEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: BorderStyleOptionLabels;
6
10
  }
7
- export declare function BorderStyleEditor({ label, value, onChange, id, }: BorderStyleEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function BorderStyleEditor({ label, value, onChange, id, optionLabels, }: BorderStyleEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=BorderStyleEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BorderStyleEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/BorderStyleEditor.tsx"],"names":[],"mappings":"AAgCA,MAAM,WAAW,sBAAsB;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;CACZ;AAED,wBAAgB,iBAAiB,CAAC,EACjC,KAAsB,EACtB,KAAK,EACL,QAAQ,EACR,EAAmB,GACnB,EAAE,sBAAsB,2CAUxB"}
1
+ {"version":3,"file":"BorderStyleEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/BorderStyleEditor.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,KAAK,uBAAuB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC;AA+ChF,MAAM,WAAW,sBAAsB;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,0EAA0E;IAC1E,YAAY,CAAC,EAAE,uBAAuB,CAAC;CACvC;AAED,wBAAgB,iBAAiB,CAAC,EACjC,KAAsB,EACtB,KAAK,EACL,QAAQ,EACR,EAAmB,EACnB,YAAY,GACZ,EAAE,sBAAsB,2CAexB"}
@@ -1,5 +1,9 @@
1
1
  import { default as React } from 'react';
2
+ import { PanelLabels } from '../labels/labels.cjs';
2
3
  import { UnitOption, UnitConstraints } from '../utils/dimensionUtils.cjs';
4
+ type BoxDimensionLabels = PanelLabels["editors"]["boxDimension"];
5
+ /** Which per-cell label set an instance edits: four box sides or four corners. */
6
+ export type SideLabelKind = "sides" | "corners";
3
7
  export interface BoxDimensionEditorProps {
4
8
  /** Editor label displayed above the inputs */
5
9
  label: string;
@@ -15,8 +19,12 @@ export interface BoxDimensionEditorProps {
15
19
  constraints?: UnitConstraints;
16
20
  /** Whether to allow "auto" value */
17
21
  allowAuto?: boolean;
18
- /** Labels for four sides (defaults to Top, Right, Bottom, Left) */
19
- sideLabels?: string[];
22
+ /**
23
+ * Which per-cell label set this instance edits — box `sides` (default) or
24
+ * `corners` (border-radius). Selects between the localized `aria.sides` and
25
+ * `aria.corners` slices; both are localized, so neither path hardcodes English.
26
+ */
27
+ sideLabelKind?: SideLabelKind;
20
28
  /** Optional icon components for each side */
21
29
  sideIcons?: (React.ComponentType<{
22
30
  size?: number;
@@ -25,10 +33,13 @@ export interface BoxDimensionEditorProps {
25
33
  }> | null | undefined)[];
26
34
  /** Placeholder value for empty inputs */
27
35
  placeholder?: string;
36
+ /** Localized side labels + link aria + composed-aria templates; omit for English. */
37
+ aria?: BoxDimensionLabels;
28
38
  }
29
39
  /**
30
40
  * Box-model dimension editor (4-sided) with shared unit selector and
31
41
  * a link toggle to lock all four sides to the same value.
32
42
  */
33
- export declare function BoxDimensionEditor({ label, value, onChange, id, units, constraints, allowAuto, sideLabels, sideIcons, placeholder, }: BoxDimensionEditorProps): import("react/jsx-runtime").JSX.Element;
43
+ export declare function BoxDimensionEditor({ label, value, onChange, id, units, constraints, allowAuto, sideLabelKind, sideIcons, placeholder, aria: ariaProp, }: BoxDimensionEditorProps): import("react/jsx-runtime").JSX.Element;
44
+ export {};
34
45
  //# sourceMappingURL=BoxDimensionEditor.d.ts.map
@@ -1,5 +1,9 @@
1
1
  import { default as React } from 'react';
2
+ import { PanelLabels } from '../labels/labels.js';
2
3
  import { UnitOption, UnitConstraints } from '../utils/dimensionUtils.js';
4
+ type BoxDimensionLabels = PanelLabels["editors"]["boxDimension"];
5
+ /** Which per-cell label set an instance edits: four box sides or four corners. */
6
+ export type SideLabelKind = "sides" | "corners";
3
7
  export interface BoxDimensionEditorProps {
4
8
  /** Editor label displayed above the inputs */
5
9
  label: string;
@@ -15,8 +19,12 @@ export interface BoxDimensionEditorProps {
15
19
  constraints?: UnitConstraints;
16
20
  /** Whether to allow "auto" value */
17
21
  allowAuto?: boolean;
18
- /** Labels for four sides (defaults to Top, Right, Bottom, Left) */
19
- sideLabels?: string[];
22
+ /**
23
+ * Which per-cell label set this instance edits — box `sides` (default) or
24
+ * `corners` (border-radius). Selects between the localized `aria.sides` and
25
+ * `aria.corners` slices; both are localized, so neither path hardcodes English.
26
+ */
27
+ sideLabelKind?: SideLabelKind;
20
28
  /** Optional icon components for each side */
21
29
  sideIcons?: (React.ComponentType<{
22
30
  size?: number;
@@ -25,10 +33,13 @@ export interface BoxDimensionEditorProps {
25
33
  }> | null | undefined)[];
26
34
  /** Placeholder value for empty inputs */
27
35
  placeholder?: string;
36
+ /** Localized side labels + link aria + composed-aria templates; omit for English. */
37
+ aria?: BoxDimensionLabels;
28
38
  }
29
39
  /**
30
40
  * Box-model dimension editor (4-sided) with shared unit selector and
31
41
  * a link toggle to lock all four sides to the same value.
32
42
  */
33
- export declare function BoxDimensionEditor({ label, value, onChange, id, units, constraints, allowAuto, sideLabels, sideIcons, placeholder, }: BoxDimensionEditorProps): import("react/jsx-runtime").JSX.Element;
43
+ export declare function BoxDimensionEditor({ label, value, onChange, id, units, constraints, allowAuto, sideLabelKind, sideIcons, placeholder, aria: ariaProp, }: BoxDimensionEditorProps): import("react/jsx-runtime").JSX.Element;
44
+ export {};
34
45
  //# sourceMappingURL=BoxDimensionEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BoxDimensionEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/BoxDimensionEditor.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAEN,KAAK,UAAU,EACf,KAAK,eAAe,EASpB,MAAM,yBAAyB,CAAC;AA4EjC,MAAM,WAAW,uBAAuB;IACvC,8CAA8C;IAC9C,KAAK,EAAE,MAAM,CAAC;IACd,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0CAA0C;IAC1C,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,4BAA4B;IAC5B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,0DAA0D;IAC1D,KAAK,CAAC,EAAE,SAAS,UAAU,EAAE,CAAC;IAC9B,wCAAwC;IACxC,WAAW,CAAC,EAAE,eAAe,CAAC;IAC9B,oCAAoC;IACpC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,mEAAmE;IACnE,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,6CAA6C;IAC7C,SAAS,CAAC,EAAE,CACT,KAAK,CAAC,aAAa,CAAC;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,GACvE,IAAI,GACJ,SAAS,CACX,EAAE,CAAC;IACJ,yCAAyC;IACzC,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,EAClC,KAAK,EACL,KAAU,EACV,QAAQ,EACR,EAAO,EACP,KAAyB,EACzB,WAAsC,EACtC,SAAiB,EACjB,UAAgC,EAChC,SAAS,EACT,WAAgB,GAChB,EAAE,uBAAuB,2CA0QzB"}
1
+ {"version":3,"file":"BoxDimensionEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/BoxDimensionEditor.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAA8B,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAChF,OAAO,EAEN,KAAK,UAAU,EACf,KAAK,eAAe,EASpB,MAAM,yBAAyB,CAAC;AAEjC,KAAK,kBAAkB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,cAAc,CAAC,CAAC;AA2BjE,kFAAkF;AAClF,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,SAAS,CAAC;AAgFhD,MAAM,WAAW,uBAAuB;IACvC,8CAA8C;IAC9C,KAAK,EAAE,MAAM,CAAC;IACd,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0CAA0C;IAC1C,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,4BAA4B;IAC5B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,0DAA0D;IAC1D,KAAK,CAAC,EAAE,SAAS,UAAU,EAAE,CAAC;IAC9B,wCAAwC;IACxC,WAAW,CAAC,EAAE,eAAe,CAAC;IAC9B,oCAAoC;IACpC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;;;OAIG;IACH,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,6CAA6C;IAC7C,SAAS,CAAC,EAAE,CACT,KAAK,CAAC,aAAa,CAAC;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,GACvE,IAAI,GACJ,SAAS,CACX,EAAE,CAAC;IACJ,yCAAyC;IACzC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,qFAAqF;IACrF,IAAI,CAAC,EAAE,kBAAkB,CAAC;CAC1B;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,EAClC,KAAK,EACL,KAAU,EACV,QAAQ,EACR,EAAO,EACP,KAAyB,EACzB,WAAsC,EACtC,SAAiB,EACjB,aAAuB,EACvB,SAAS,EACT,WAAgB,EAChB,IAAI,EAAE,QAAQ,GACd,EAAE,uBAAuB,2CAiRzB"}
@@ -1,3 +1,5 @@
1
+ import { PanelLabels } from '../labels/labels.cjs';
2
+ type ColorAriaLabels = PanelLabels["editors"]["color"];
1
3
  export interface ColorEditorProps {
2
4
  /** Editor label displayed above the control */
3
5
  label: string;
@@ -7,9 +9,12 @@ export interface ColorEditorProps {
7
9
  onChange: (value: string) => void;
8
10
  /** DOM id for the editor (defaults to 'color') */
9
11
  id?: string;
12
+ /** Localized placeholder + static/composed aria; omit for English. */
13
+ aria?: ColorAriaLabels;
10
14
  }
11
15
  /**
12
16
  * Color editor with popover picker and hex/rgba inputs.
13
17
  */
14
- export declare function ColorEditor({ label, value, onChange, id }: ColorEditorProps): import("react/jsx-runtime").JSX.Element;
18
+ export declare function ColorEditor({ label, value, onChange, id, aria: ariaProp, }: ColorEditorProps): import("react/jsx-runtime").JSX.Element;
19
+ export {};
15
20
  //# sourceMappingURL=ColorEditor.d.ts.map
@@ -1,3 +1,5 @@
1
+ import { PanelLabels } from '../labels/labels.js';
2
+ type ColorAriaLabels = PanelLabels["editors"]["color"];
1
3
  export interface ColorEditorProps {
2
4
  /** Editor label displayed above the control */
3
5
  label: string;
@@ -7,9 +9,12 @@ export interface ColorEditorProps {
7
9
  onChange: (value: string) => void;
8
10
  /** DOM id for the editor (defaults to 'color') */
9
11
  id?: string;
12
+ /** Localized placeholder + static/composed aria; omit for English. */
13
+ aria?: ColorAriaLabels;
10
14
  }
11
15
  /**
12
16
  * Color editor with popover picker and hex/rgba inputs.
13
17
  */
14
- export declare function ColorEditor({ label, value, onChange, id }: ColorEditorProps): import("react/jsx-runtime").JSX.Element;
18
+ export declare function ColorEditor({ label, value, onChange, id, aria: ariaProp, }: ColorEditorProps): import("react/jsx-runtime").JSX.Element;
19
+ export {};
15
20
  //# sourceMappingURL=ColorEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ColorEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/ColorEditor.tsx"],"names":[],"mappings":"AAuYA,MAAM,WAAW,gBAAgB;IAChC,+CAA+C;IAC/C,KAAK,EAAE,MAAM,CAAC;IACd,6EAA6E;IAC7E,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0CAA0C;IAC1C,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,kDAAkD;IAClD,EAAE,CAAC,EAAE,MAAM,CAAC;CACZ;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAY,EAAE,EAAE,gBAAgB,2CAwfrF"}
1
+ {"version":3,"file":"ColorEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/ColorEditor.tsx"],"names":[],"mappings":"AAcA,OAAO,EAA8B,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AA0XhF,KAAK,eAAe,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,CAAC;AAqBvD,MAAM,WAAW,gBAAgB;IAChC,+CAA+C;IAC/C,KAAK,EAAE,MAAM,CAAC;IACd,6EAA6E;IAC7E,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0CAA0C;IAC1C,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,kDAAkD;IAClD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,sEAAsE;IACtE,IAAI,CAAC,EAAE,eAAe,CAAC;CACvB;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,EAC3B,KAAK,EACL,KAAK,EACL,QAAQ,EACR,EAAY,EACZ,IAAI,EAAE,QAAQ,GACd,EAAE,gBAAgB,2CAmgBlB"}
@@ -1,5 +1,7 @@
1
1
  import { default as React } from 'react';
2
+ import { PanelLabels } from '../labels/labels.cjs';
2
3
  import { UnitOption, UnitConstraints } from '../utils/dimensionUtils.cjs';
4
+ type DimensionAriaLabels = PanelLabels["editors"]["dimension"];
3
5
  export interface DimensionEditorProps {
4
6
  /** Editor label displayed above the input */
5
7
  label: string;
@@ -23,9 +25,12 @@ export interface DimensionEditorProps {
23
25
  width?: number;
24
26
  height?: number;
25
27
  }>;
28
+ /** Localized composed-aria templates ({0} = label); omit for English. */
29
+ aria?: DimensionAriaLabels;
26
30
  }
27
31
  /**
28
32
  * Dimension editor with numeric input and unit selector.
29
33
  */
30
- export declare function DimensionEditor({ label, value, onChange, units, constraints, defaultUnit, placeholder, id, icon: Icon, }: DimensionEditorProps): import("react/jsx-runtime").JSX.Element;
34
+ export declare function DimensionEditor({ label, value, onChange, units, constraints, defaultUnit, placeholder, id, icon: Icon, aria: ariaProp, }: DimensionEditorProps): import("react/jsx-runtime").JSX.Element;
35
+ export {};
31
36
  //# sourceMappingURL=DimensionEditor.d.ts.map
@@ -1,5 +1,7 @@
1
1
  import { default as React } from 'react';
2
+ import { PanelLabels } from '../labels/labels.js';
2
3
  import { UnitOption, UnitConstraints } from '../utils/dimensionUtils.js';
4
+ type DimensionAriaLabels = PanelLabels["editors"]["dimension"];
3
5
  export interface DimensionEditorProps {
4
6
  /** Editor label displayed above the input */
5
7
  label: string;
@@ -23,9 +25,12 @@ export interface DimensionEditorProps {
23
25
  width?: number;
24
26
  height?: number;
25
27
  }>;
28
+ /** Localized composed-aria templates ({0} = label); omit for English. */
29
+ aria?: DimensionAriaLabels;
26
30
  }
27
31
  /**
28
32
  * Dimension editor with numeric input and unit selector.
29
33
  */
30
- export declare function DimensionEditor({ label, value, onChange, units, constraints, defaultUnit, placeholder, id, icon: Icon, }: DimensionEditorProps): import("react/jsx-runtime").JSX.Element;
34
+ export declare function DimensionEditor({ label, value, onChange, units, constraints, defaultUnit, placeholder, id, icon: Icon, aria: ariaProp, }: DimensionEditorProps): import("react/jsx-runtime").JSX.Element;
35
+ export {};
31
36
  //# sourceMappingURL=DimensionEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DimensionEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/DimensionEditor.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAGN,KAAK,UAAU,EACf,KAAK,eAAe,EAOpB,MAAM,yBAAyB,CAAC;AAEjC,MAAM,WAAW,oBAAoB;IACpC,6CAA6C;IAC7C,KAAK,EAAE,MAAM,CAAC;IACd,kDAAkD;IAClD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0CAA0C;IAC1C,QAAQ,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IACrC,qDAAqD;IACrD,KAAK,CAAC,EAAE,SAAS,UAAU,EAAE,CAAC;IAC9B,wCAAwC;IACxC,WAAW,CAAC,EAAE,eAAe,CAAC;IAC9B,0DAA0D;IAC1D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kDAAkD;IAClD,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,sDAAsD;IACtD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,yCAAyC;IACzC,IAAI,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;CAC/E;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,EAC/B,KAAK,EACL,KAAK,EACL,QAAQ,EACR,KAAiB,EACjB,WAAsC,EACtC,WAAkB,EAClB,WAAe,EACf,EAAgB,EAChB,IAAI,EAAE,IAAI,GACV,EAAE,oBAAoB,2CAqMtB"}
1
+ {"version":3,"file":"DimensionEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/DimensionEditor.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAA8B,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAChF,OAAO,EAGN,KAAK,UAAU,EACf,KAAK,eAAe,EAOpB,MAAM,yBAAyB,CAAC;AAEjC,KAAK,mBAAmB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,WAAW,CAAC,CAAC;AAQ/D,MAAM,WAAW,oBAAoB;IACpC,6CAA6C;IAC7C,KAAK,EAAE,MAAM,CAAC;IACd,kDAAkD;IAClD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0CAA0C;IAC1C,QAAQ,EAAE,CAAC,QAAQ,EAAE,MAAM,KAAK,IAAI,CAAC;IACrC,qDAAqD;IACrD,KAAK,CAAC,EAAE,SAAS,UAAU,EAAE,CAAC;IAC9B,wCAAwC;IACxC,WAAW,CAAC,EAAE,eAAe,CAAC;IAC9B,0DAA0D;IAC1D,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kDAAkD;IAClD,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,sDAAsD;IACtD,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,yCAAyC;IACzC,IAAI,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC/E,yEAAyE;IACzE,IAAI,CAAC,EAAE,mBAAmB,CAAC;CAC3B;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,EAC/B,KAAK,EACL,KAAK,EACL,QAAQ,EACR,KAAiB,EACjB,WAAsC,EACtC,WAAkB,EAClB,WAAe,EACf,EAAgB,EAChB,IAAI,EAAE,IAAI,EACV,IAAI,EAAE,QAAQ,GACd,EAAE,oBAAoB,2CAwMtB"}
@@ -1,4 +1,6 @@
1
1
  import { PicklistOption } from './PicklistEditor.cjs';
2
+ import { PanelLabels } from '../labels/labels.cjs';
3
+ type FontFamilyOptionLabels = PanelLabels["editors"]["fontFamily"]["options"];
2
4
  export interface FontFamilyEditorProps {
3
5
  label?: string;
4
6
  value?: string;
@@ -6,6 +8,9 @@ export interface FontFamilyEditorProps {
6
8
  onChange: (value: string) => void;
7
9
  matchOption?: (fontFamily: string | null | undefined, options: PicklistOption[]) => PicklistOption | null;
8
10
  id?: string;
11
+ /** Localized labels for the localizable options (just "Default"); omit for English. */
12
+ optionLabels?: FontFamilyOptionLabels;
9
13
  }
10
- export declare function FontFamilyEditor({ label, value, options, onChange, matchOption, id, }: FontFamilyEditorProps): import("react/jsx-runtime").JSX.Element;
14
+ export declare function FontFamilyEditor({ label, value, options, onChange, matchOption, id, optionLabels, }: FontFamilyEditorProps): import("react/jsx-runtime").JSX.Element;
15
+ export {};
11
16
  //# sourceMappingURL=FontFamilyEditor.d.ts.map
@@ -1,4 +1,6 @@
1
1
  import { PicklistOption } from './PicklistEditor.js';
2
+ import { PanelLabels } from '../labels/labels.js';
3
+ type FontFamilyOptionLabels = PanelLabels["editors"]["fontFamily"]["options"];
2
4
  export interface FontFamilyEditorProps {
3
5
  label?: string;
4
6
  value?: string;
@@ -6,6 +8,9 @@ export interface FontFamilyEditorProps {
6
8
  onChange: (value: string) => void;
7
9
  matchOption?: (fontFamily: string | null | undefined, options: PicklistOption[]) => PicklistOption | null;
8
10
  id?: string;
11
+ /** Localized labels for the localizable options (just "Default"); omit for English. */
12
+ optionLabels?: FontFamilyOptionLabels;
9
13
  }
10
- export declare function FontFamilyEditor({ label, value, options, onChange, matchOption, id, }: FontFamilyEditorProps): import("react/jsx-runtime").JSX.Element;
14
+ export declare function FontFamilyEditor({ label, value, options, onChange, matchOption, id, optionLabels, }: FontFamilyEditorProps): import("react/jsx-runtime").JSX.Element;
15
+ export {};
11
16
  //# sourceMappingURL=FontFamilyEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FontFamilyEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/FontFamilyEditor.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAkB,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAwCvE,MAAM,WAAW,qBAAqB;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC;IAC3B,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,WAAW,CAAC,EAAE,CACb,UAAU,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACrC,OAAO,EAAE,cAAc,EAAE,KACrB,cAAc,GAAG,IAAI,CAAC;IAC3B,EAAE,CAAC,EAAE,MAAM,CAAC;CACZ;AAED,wBAAgB,gBAAgB,CAAC,EAChC,KAAqB,EACrB,KAAK,EACL,OAAsB,EACtB,QAAQ,EACR,WAAmC,EACnC,EAAkB,GAClB,EAAE,qBAAqB,2CAcvB"}
1
+ {"version":3,"file":"FontFamilyEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/FontFamilyEditor.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAkB,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,KAAK,sBAAsB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,CAAC,CAAC;AA0C9E,MAAM,WAAW,qBAAqB;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC;IAC3B,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,WAAW,CAAC,EAAE,CACb,UAAU,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACrC,OAAO,EAAE,cAAc,EAAE,KACrB,cAAc,GAAG,IAAI,CAAC;IAC3B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,uFAAuF;IACvF,YAAY,CAAC,EAAE,sBAAsB,CAAC;CACtC;AAED,wBAAgB,gBAAgB,CAAC,EAChC,KAAqB,EACrB,KAAK,EACL,OAAO,EACP,QAAQ,EACR,WAAmC,EACnC,EAAkB,EAClB,YAAY,GACZ,EAAE,qBAAqB,2CAqBvB"}
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.cjs';
2
+ type FontStyleOptionLabels = PanelLabels["editors"]["fontStyle"]["options"];
1
3
  export interface FontStyleEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: FontStyleOptionLabels;
6
10
  }
7
- export declare function FontStyleEditor({ label, value, onChange, id, }: FontStyleEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function FontStyleEditor({ label, value, onChange, id, optionLabels, }: FontStyleEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=FontStyleEditor.d.ts.map
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.js';
2
+ type FontStyleOptionLabels = PanelLabels["editors"]["fontStyle"]["options"];
1
3
  export interface FontStyleEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: FontStyleOptionLabels;
6
10
  }
7
- export declare function FontStyleEditor({ label, value, onChange, id, }: FontStyleEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function FontStyleEditor({ label, value, onChange, id, optionLabels, }: FontStyleEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=FontStyleEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FontStyleEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/FontStyleEditor.tsx"],"names":[],"mappings":"AAcA,MAAM,WAAW,oBAAoB;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;CACZ;AAED,wBAAgB,eAAe,CAAC,EAC/B,KAAoB,EACpB,KAAK,EACL,QAAQ,EACR,EAAiB,GACjB,EAAE,oBAAoB,2CAUtB"}
1
+ {"version":3,"file":"FontStyleEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/FontStyleEditor.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,KAAK,qBAAqB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC;AAyB5E,MAAM,WAAW,oBAAoB;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,0EAA0E;IAC1E,YAAY,CAAC,EAAE,qBAAqB,CAAC;CACrC;AAED,wBAAgB,eAAe,CAAC,EAC/B,KAAoB,EACpB,KAAK,EACL,QAAQ,EACR,EAAiB,EACjB,YAAY,GACZ,EAAE,oBAAoB,2CAetB"}
@@ -1,4 +1,6 @@
1
1
  import { PicklistOption } from './PicklistEditor.cjs';
2
+ import { PanelLabels } from '../labels/labels.cjs';
3
+ type FontWeightOptionLabels = PanelLabels["editors"]["fontWeight"]["options"];
2
4
  export interface FontWeightEditorProps {
3
5
  label?: string;
4
6
  value?: string;
@@ -6,6 +8,9 @@ export interface FontWeightEditorProps {
6
8
  onChange: (value: string) => void;
7
9
  matchOption?: (weight: string | null | undefined, options: PicklistOption[]) => PicklistOption | null;
8
10
  id?: string;
11
+ /** Localized weight words (numbers are appended by the editor); omit for English. */
12
+ optionLabels?: FontWeightOptionLabels;
9
13
  }
10
- export declare function FontWeightEditor({ label, value, options, onChange, matchOption, id, }: FontWeightEditorProps): import("react/jsx-runtime").JSX.Element;
14
+ export declare function FontWeightEditor({ label, value, options, onChange, matchOption, id, optionLabels, }: FontWeightEditorProps): import("react/jsx-runtime").JSX.Element;
15
+ export {};
11
16
  //# sourceMappingURL=FontWeightEditor.d.ts.map
@@ -1,4 +1,6 @@
1
1
  import { PicklistOption } from './PicklistEditor.js';
2
+ import { PanelLabels } from '../labels/labels.js';
3
+ type FontWeightOptionLabels = PanelLabels["editors"]["fontWeight"]["options"];
2
4
  export interface FontWeightEditorProps {
3
5
  label?: string;
4
6
  value?: string;
@@ -6,6 +8,9 @@ export interface FontWeightEditorProps {
6
8
  onChange: (value: string) => void;
7
9
  matchOption?: (weight: string | null | undefined, options: PicklistOption[]) => PicklistOption | null;
8
10
  id?: string;
11
+ /** Localized weight words (numbers are appended by the editor); omit for English. */
12
+ optionLabels?: FontWeightOptionLabels;
9
13
  }
10
- export declare function FontWeightEditor({ label, value, options, onChange, matchOption, id, }: FontWeightEditorProps): import("react/jsx-runtime").JSX.Element;
14
+ export declare function FontWeightEditor({ label, value, options, onChange, matchOption, id, optionLabels, }: FontWeightEditorProps): import("react/jsx-runtime").JSX.Element;
15
+ export {};
11
16
  //# sourceMappingURL=FontWeightEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"FontWeightEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/FontWeightEditor.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAkB,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAwBvE,MAAM,WAAW,qBAAqB;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC;IAC3B,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,WAAW,CAAC,EAAE,CACb,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACjC,OAAO,EAAE,cAAc,EAAE,KACrB,cAAc,GAAG,IAAI,CAAC;IAC3B,EAAE,CAAC,EAAE,MAAM,CAAC;CACZ;AAED,wBAAgB,gBAAgB,CAAC,EAChC,KAAqB,EACrB,KAAK,EACL,OAAwB,EACxB,QAAQ,EACR,WAA+B,EAC/B,EAAkB,GAClB,EAAE,qBAAqB,2CAYvB"}
1
+ {"version":3,"file":"FontWeightEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/FontWeightEditor.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAkB,KAAK,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,KAAK,sBAAsB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,CAAC,CAAC;AAuC9E,MAAM,WAAW,qBAAqB;IACrC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC;IAC3B,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,WAAW,CAAC,EAAE,CACb,MAAM,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EACjC,OAAO,EAAE,cAAc,EAAE,KACrB,cAAc,GAAG,IAAI,CAAC;IAC3B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,qFAAqF;IACrF,YAAY,CAAC,EAAE,sBAAsB,CAAC;CACtC;AAED,wBAAgB,gBAAgB,CAAC,EAChC,KAAqB,EACrB,KAAK,EACL,OAAO,EACP,QAAQ,EACR,WAA+B,EAC/B,EAAkB,EAClB,YAAY,GACZ,EAAE,qBAAqB,2CAevB"}
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.cjs';
2
+ type OverflowOptionLabels = PanelLabels["editors"]["overflow"]["options"];
1
3
  export interface OverflowEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: OverflowOptionLabels;
6
10
  }
7
- export declare function OverflowEditor({ label, value, onChange, id, }: OverflowEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function OverflowEditor({ label, value, onChange, id, optionLabels, }: OverflowEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=OverflowEditor.d.ts.map
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.js';
2
+ type OverflowOptionLabels = PanelLabels["editors"]["overflow"]["options"];
1
3
  export interface OverflowEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: OverflowOptionLabels;
6
10
  }
7
- export declare function OverflowEditor({ label, value, onChange, id, }: OverflowEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function OverflowEditor({ label, value, onChange, id, optionLabels, }: OverflowEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=OverflowEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"OverflowEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/OverflowEditor.tsx"],"names":[],"mappings":"AAyBA,MAAM,WAAW,mBAAmB;IACnC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;CACZ;AAED,wBAAgB,cAAc,CAAC,EAC9B,KAAkB,EAClB,KAAK,EACL,QAAQ,EACR,EAAe,GACf,EAAE,mBAAmB,2CAYrB"}
1
+ {"version":3,"file":"OverflowEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/OverflowEditor.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,KAAK,oBAAoB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,UAAU,CAAC,CAAC,SAAS,CAAC,CAAC;AA8B1E,MAAM,WAAW,mBAAmB;IACnC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,0EAA0E;IAC1E,YAAY,CAAC,EAAE,oBAAoB,CAAC;CACpC;AAED,wBAAgB,cAAc,CAAC,EAC9B,KAAkB,EAClB,KAAK,EACL,QAAQ,EACR,EAAe,EACf,YAAY,GACZ,EAAE,mBAAmB,2CAarB"}
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.cjs';
2
+ type TextAlignmentOptionLabels = PanelLabels["editors"]["textAlignment"]["options"];
1
3
  export interface TextAlignmentEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: TextAlignmentOptionLabels;
6
10
  }
7
- export declare function TextAlignmentEditor({ label, value, onChange, id, }: TextAlignmentEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function TextAlignmentEditor({ label, value, onChange, id, optionLabels, }: TextAlignmentEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=TextAlignmentEditor.d.ts.map
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.js';
2
+ type TextAlignmentOptionLabels = PanelLabels["editors"]["textAlignment"]["options"];
1
3
  export interface TextAlignmentEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: TextAlignmentOptionLabels;
6
10
  }
7
- export declare function TextAlignmentEditor({ label, value, onChange, id, }: TextAlignmentEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function TextAlignmentEditor({ label, value, onChange, id, optionLabels, }: TextAlignmentEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=TextAlignmentEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TextAlignmentEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/TextAlignmentEditor.tsx"],"names":[],"mappings":"AAuBA,MAAM,WAAW,wBAAwB;IACxC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;CACZ;AAED,wBAAgB,mBAAmB,CAAC,EACnC,KAAoB,EACpB,KAAK,EACL,QAAQ,EACR,EAAiB,GACjB,EAAE,wBAAwB,2CAW1B"}
1
+ {"version":3,"file":"TextAlignmentEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/TextAlignmentEditor.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,KAAK,yBAAyB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC;AAoCpF,MAAM,WAAW,wBAAwB;IACxC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,0EAA0E;IAC1E,YAAY,CAAC,EAAE,yBAAyB,CAAC;CACzC;AAED,wBAAgB,mBAAmB,CAAC,EACnC,KAAoB,EACpB,KAAK,EACL,QAAQ,EACR,EAAiB,EACjB,YAAY,GACZ,EAAE,wBAAwB,2CAgB1B"}
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.cjs';
2
+ type TextDecorationOptionLabels = PanelLabels["editors"]["textDecoration"]["options"];
1
3
  export interface TextDecorationEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: TextDecorationOptionLabels;
6
10
  }
7
- export declare function TextDecorationEditor({ label, value, onChange, id, }: TextDecorationEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function TextDecorationEditor({ label, value, onChange, id, optionLabels, }: TextDecorationEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=TextDecorationEditor.d.ts.map
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.js';
2
+ type TextDecorationOptionLabels = PanelLabels["editors"]["textDecoration"]["options"];
1
3
  export interface TextDecorationEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: TextDecorationOptionLabels;
6
10
  }
7
- export declare function TextDecorationEditor({ label, value, onChange, id, }: TextDecorationEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function TextDecorationEditor({ label, value, onChange, id, optionLabels, }: TextDecorationEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=TextDecorationEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TextDecorationEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/TextDecorationEditor.tsx"],"names":[],"mappings":"AA+BA,MAAM,WAAW,yBAAyB;IACzC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;CACZ;AAED,wBAAgB,oBAAoB,CAAC,EACpC,KAAyB,EACzB,KAAK,EACL,QAAQ,EACR,EAAsB,GACtB,EAAE,yBAAyB,2CAU3B"}
1
+ {"version":3,"file":"TextDecorationEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/TextDecorationEditor.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,KAAK,0BAA0B,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC;AAwCtF,MAAM,WAAW,yBAAyB;IACzC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,0EAA0E;IAC1E,YAAY,CAAC,EAAE,0BAA0B,CAAC;CAC1C;AAED,wBAAgB,oBAAoB,CAAC,EACpC,KAAyB,EACzB,KAAK,EACL,QAAQ,EACR,EAAsB,EACtB,YAAY,GACZ,EAAE,yBAAyB,2CAe3B"}
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.cjs';
2
+ type TextTransformOptionLabels = PanelLabels["editors"]["textTransform"]["options"];
1
3
  export interface TextTransformEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: TextTransformOptionLabels;
6
10
  }
7
- export declare function TextTransformEditor({ label, value, onChange, id, }: TextTransformEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function TextTransformEditor({ label, value, onChange, id, optionLabels, }: TextTransformEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=TextTransformEditor.d.ts.map
@@ -1,8 +1,13 @@
1
+ import { PanelLabels } from '../labels/labels.js';
2
+ type TextTransformOptionLabels = PanelLabels["editors"]["textTransform"]["options"];
1
3
  export interface TextTransformEditorProps {
2
4
  label?: string;
3
5
  value?: string;
4
6
  onChange: (value: string) => void;
5
7
  id?: string;
8
+ /** Localized option labels; omit to use the editor's English defaults. */
9
+ optionLabels?: TextTransformOptionLabels;
6
10
  }
7
- export declare function TextTransformEditor({ label, value, onChange, id, }: TextTransformEditorProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function TextTransformEditor({ label, value, onChange, id, optionLabels, }: TextTransformEditorProps): import("react/jsx-runtime").JSX.Element;
12
+ export {};
8
13
  //# sourceMappingURL=TextTransformEditor.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TextTransformEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/TextTransformEditor.tsx"],"names":[],"mappings":"AAiCA,MAAM,WAAW,wBAAwB;IACxC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;CACZ;AAED,wBAAgB,mBAAmB,CAAC,EACnC,KAAwB,EACxB,KAAK,EACL,QAAQ,EACR,EAAqB,GACrB,EAAE,wBAAwB,2CAU1B"}
1
+ {"version":3,"file":"TextTransformEditor.d.ts","sourceRoot":"","sources":["../../../../src/authoring/core/editors/TextTransformEditor.tsx"],"names":[],"mappings":"AAaA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,KAAK,yBAAyB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAC,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC;AAkCpF,MAAM,WAAW,wBAAwB;IACxC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,0EAA0E;IAC1E,YAAY,CAAC,EAAE,yBAAyB,CAAC;CACzC;AAED,wBAAgB,mBAAmB,CAAC,EACnC,KAAwB,EACxB,KAAK,EACL,QAAQ,EACR,EAAqB,EACrB,YAAY,GACZ,EAAE,wBAAwB,2CAe1B"}