smoosic 1.0.34 → 1.0.35

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 (71) hide show
  1. package/build/html/smoosic.html +1 -0
  2. package/build/smoosic.js +36 -14
  3. package/package.json +1 -1
  4. package/release/html/smoosic.html +4 -3
  5. package/release/smoosic.js +36 -14
  6. package/release/styles/general.css +15 -0
  7. package/src/application/common.ts +20 -0
  8. package/src/application/eventHandler.ts +44 -8
  9. package/src/render/sui/NoteEntryCaret.ts +739 -0
  10. package/src/render/sui/NoteEntryMediator.ts +58 -0
  11. package/src/render/sui/mapper.ts +22 -4
  12. package/src/render/sui/scoreRender.ts +7 -7
  13. package/src/render/sui/scoreViewOperations.ts +46 -0
  14. package/src/render/sui/tracker.ts +93 -47
  15. package/src/render/vex/vxMeasure.ts +2 -1
  16. package/src/render/vex/vxNote.ts +1 -0
  17. package/src/smo/data/music.ts +17 -0
  18. package/src/smo/data/note.ts +3 -1
  19. package/src/smo/data/noteModifiers.ts +2 -0
  20. package/src/smo/data/scoreModifiers.ts +0 -3
  21. package/src/styles/general.css +22 -0
  22. package/src/ui/components/dialogs/scorePreferences.vue +1 -11
  23. package/types/src/application/application.d.ts +102 -102
  24. package/types/src/application/configuration.d.ts +74 -74
  25. package/types/src/application/dynamicInit.d.ts +1 -1
  26. package/types/src/application/eventHandler.d.ts +78 -78
  27. package/types/src/application/exports.d.ts +494 -494
  28. package/types/src/render/audio/oscillator.d.ts +98 -98
  29. package/types/src/render/audio/player.d.ts +141 -141
  30. package/types/src/render/audio/samples.d.ts +56 -56
  31. package/types/src/render/sui/configuration.d.ts +12 -12
  32. package/types/src/render/sui/formatter.d.ts +151 -151
  33. package/types/src/render/sui/layoutDebug.d.ts +43 -43
  34. package/types/src/render/sui/mapper.d.ts +116 -116
  35. package/types/src/render/sui/renderState.d.ts +88 -88
  36. package/types/src/render/sui/scoreRender.d.ts +93 -93
  37. package/types/src/render/sui/scoreView.d.ts +267 -267
  38. package/types/src/render/sui/scoreViewOperations.d.ts +594 -594
  39. package/types/src/render/sui/scroller.d.ts +34 -34
  40. package/types/src/render/sui/svgPageMap.d.ts +318 -318
  41. package/types/src/render/sui/textEdit.d.ts +310 -310
  42. package/types/src/render/vex/vxMeasure.d.ts +95 -95
  43. package/types/src/smo/data/common.d.ts +220 -220
  44. package/types/src/smo/data/measure.d.ts +510 -510
  45. package/types/src/smo/data/measureModifiers.d.ts +506 -506
  46. package/types/src/smo/data/scoreModifiers.d.ts +433 -433
  47. package/types/src/smo/xform/selections.d.ts +153 -153
  48. package/types/src/ui/common.d.ts +45 -45
  49. package/types/src/ui/configuration.d.ts +31 -31
  50. package/types/src/ui/dialogs/chordChange.d.ts +35 -35
  51. package/types/src/ui/dialogs/components/baseComponent.d.ts +158 -158
  52. package/types/src/ui/dialogs/components/button.d.ts +54 -54
  53. package/types/src/ui/dialogs/components/dropdown.d.ts +78 -78
  54. package/types/src/ui/dialogs/components/pitch.d.ts +95 -95
  55. package/types/src/ui/dialogs/components/rocker.d.ts +66 -66
  56. package/types/src/ui/dialogs/components/textInPlace.d.ts +90 -90
  57. package/types/src/ui/dialogs/components/textInput.d.ts +58 -58
  58. package/types/src/ui/dialogs/components/toggle.d.ts +53 -53
  59. package/types/src/ui/dialogs/dialog.d.ts +201 -201
  60. package/types/src/ui/dialogs/endings.d.ts +61 -61
  61. package/types/src/ui/dialogs/lyric.d.ts +39 -39
  62. package/types/src/ui/dialogs/measureFormat.d.ts +52 -52
  63. package/types/src/ui/dialogs/textBlock.d.ts +61 -61
  64. package/types/src/ui/exceptions.d.ts +12 -12
  65. package/types/src/ui/menus/manager.d.ts +57 -57
  66. package/types/src/ui/navigation.d.ts +15 -15
  67. package/types/typedoc.d.ts +158 -158
  68. package/release/styles/styles.css +0 -0
  69. package/src/styles/fonts/Roboto-Italic-VariableFont_wdth,wght.ttf +0 -0
  70. package/src/styles/fonts/Roboto-VariableFont_wdth,wght.ttf +0 -0
  71. package/src/styles/styles.css +0 -0
@@ -1,158 +1,158 @@
1
- import { SmoModifier } from '../../../smo/data/score';
2
- import { SuiScoreViewOperations } from '../../../render/sui/scoreViewOperations';
3
- import { BrowserEventSource } from '../../eventSource';
4
- /**
5
- * Dialogs controls options, like dropdowns
6
- * @category SuiDialog
7
- */
8
- export interface DialogDefinitionOption {
9
- css?: string;
10
- label: string;
11
- value: number | string;
12
- }
13
- /**
14
- * DialogDefinition is a JSON-like structure that each dialog has
15
- * to define the components. Specific components can define
16
- * additional params by extending this, these are the basics.
17
- * @param {smoName} - the name the dialog uses to reference it
18
- * @param {control} - constructor of the control
19
- * @param {label} - label of the element, can be translated
20
- * @param {increment} - used by components that have increment arrows
21
- * @param {defaultValue} - thinking of removing this
22
- * @param {dataType} - used to narrow the type by some components
23
- * @param {classes} - can be used in rendering
24
- * @param {min} - used by components that have number
25
- * @param {max} - used by components that have number
26
- * @category SuiDialog
27
- */
28
- export interface DialogDefinitionElement {
29
- smoName: string;
30
- control: string;
31
- label: string;
32
- startRow?: boolean;
33
- options?: DialogDefinitionOption[];
34
- increment?: number;
35
- defaultValue?: number | string;
36
- dataType?: string;
37
- classes?: string;
38
- min?: number;
39
- max?: number;
40
- }
41
- /**
42
- * for base component constructors
43
- * @param {id} - unique ID for the control DOM
44
- * @param {classes} - additional classes for styling added to DOM
45
- * @param {label} - default label for the component
46
- * @param {smoName} - the variable in the dialog that the componenet maps to
47
- * @param {control} - the constructor of the UI control
48
- * @param {parentComponent} - for composite components, the top-level
49
- * @category SuiDialog
50
- */
51
- export interface SuiBaseComponentParams {
52
- id: string;
53
- classes: string;
54
- label: string;
55
- smoName: string;
56
- control: string;
57
- noProperty?: boolean;
58
- parentComponent?: SuiComponentParent;
59
- }
60
- /**
61
- * components know about their parent dialog via the
62
- * DialogNotifier interface. It allows a component to
63
- * notify parent of changing contents.
64
- * @category SuiDialog
65
- */
66
- export declare abstract class SuiDialogNotifier {
67
- /**
68
- * Called by the component when the state is changed. Dialog
69
- * will then query the component (getValue()) and set the
70
- * correct score value.
71
- */
72
- abstract changed(): void;
73
- /**
74
- * returns the DOM id of the dialog.
75
- */
76
- abstract getId(): string;
77
- /**
78
- * returns the top DOM node for the dialog
79
- */
80
- abstract get dgDom(): any;
81
- /**
82
- * gets the view from the parent
83
- */
84
- abstract getView(): SuiScoreViewOperations;
85
- /**
86
- * gets the 'modifier' from parent dialog, used by
87
- * text editors. Most components won't need this.
88
- */
89
- abstract getModifier(): SmoModifier | null;
90
- /**
91
- * Gets the static text <string, string> for the current language.
92
- * this is used by components that have different text labels for different states.
93
- */
94
- abstract getStaticText(): Record<string, string>;
95
- /**
96
- * Used by text editing components that are also event sinks
97
- */
98
- abstract getEventSource(): BrowserEventSource;
99
- }
100
- /**
101
- * base class for Dialog components. Notifies parent
102
- * dialog of state change via `change()`
103
- * @category SuiDialog
104
- */
105
- export declare abstract class SuiComponentBase {
106
- changeFlag: boolean;
107
- css: string;
108
- dialog: SuiDialogNotifier;
109
- id: string;
110
- noProperty: boolean;
111
- label: string;
112
- control: string;
113
- smoName: string;
114
- constructor(dialog: SuiDialogNotifier, parameters: SuiBaseComponentParams);
115
- /**
116
- * Called by the dialog after rendering, so the derived class can
117
- * bind the html controls
118
- */
119
- abstract bind(): void;
120
- /**
121
- * Return the html that lives in side the component DOM. Implemented by the
122
- * base class.
123
- */
124
- abstract get html(): any;
125
- /**
126
- * Called by the derived class when the value changes. The change flag is set to true, so the dialog will
127
- * know which component changed.
128
- */
129
- handleChanged(): void;
130
- /**
131
- * combine component classes with string, used for composites
132
- * @param classes string ot append
133
- * @returns combined strings
134
- */
135
- makeClasses(classes: string): string;
136
- get parameterId(): string;
137
- show(): void;
138
- hide(): void;
139
- }
140
- /**
141
- * Parent components are really containers for other components
142
- * For instance, FontComponent has size, family, weight, etc.
143
- *
144
- * @category SuiDialog
145
- */
146
- export declare abstract class SuiComponentParent extends SuiComponentBase {
147
- /**
148
- * For parent component, their changed method is called by child, and then the
149
- * parent calls the dialog changed()
150
- */
151
- abstract changed(): void;
152
- }
153
- export declare abstract class SuiCompositeBase extends SuiComponentBase {
154
- parentControl: SuiComponentParent;
155
- constructor(dialog: SuiDialogNotifier, params: SuiBaseComponentParams);
156
- }
157
- export type dynamicComponentCtor = (arg1: SuiDialogNotifier, params: any) => any;
158
- export declare const SmoDynamicComponentCtor: Record<string, dynamicComponentCtor>;
1
+ import { SmoModifier } from '../../../smo/data/score';
2
+ import { SuiScoreViewOperations } from '../../../render/sui/scoreViewOperations';
3
+ import { BrowserEventSource } from '../../eventSource';
4
+ /**
5
+ * Dialogs controls options, like dropdowns
6
+ * @category SuiDialog
7
+ */
8
+ export interface DialogDefinitionOption {
9
+ css?: string;
10
+ label: string;
11
+ value: number | string;
12
+ }
13
+ /**
14
+ * DialogDefinition is a JSON-like structure that each dialog has
15
+ * to define the components. Specific components can define
16
+ * additional params by extending this, these are the basics.
17
+ * @param {smoName} - the name the dialog uses to reference it
18
+ * @param {control} - constructor of the control
19
+ * @param {label} - label of the element, can be translated
20
+ * @param {increment} - used by components that have increment arrows
21
+ * @param {defaultValue} - thinking of removing this
22
+ * @param {dataType} - used to narrow the type by some components
23
+ * @param {classes} - can be used in rendering
24
+ * @param {min} - used by components that have number
25
+ * @param {max} - used by components that have number
26
+ * @category SuiDialog
27
+ */
28
+ export interface DialogDefinitionElement {
29
+ smoName: string;
30
+ control: string;
31
+ label: string;
32
+ startRow?: boolean;
33
+ options?: DialogDefinitionOption[];
34
+ increment?: number;
35
+ defaultValue?: number | string;
36
+ dataType?: string;
37
+ classes?: string;
38
+ min?: number;
39
+ max?: number;
40
+ }
41
+ /**
42
+ * for base component constructors
43
+ * @param {id} - unique ID for the control DOM
44
+ * @param {classes} - additional classes for styling added to DOM
45
+ * @param {label} - default label for the component
46
+ * @param {smoName} - the variable in the dialog that the componenet maps to
47
+ * @param {control} - the constructor of the UI control
48
+ * @param {parentComponent} - for composite components, the top-level
49
+ * @category SuiDialog
50
+ */
51
+ export interface SuiBaseComponentParams {
52
+ id: string;
53
+ classes: string;
54
+ label: string;
55
+ smoName: string;
56
+ control: string;
57
+ noProperty?: boolean;
58
+ parentComponent?: SuiComponentParent;
59
+ }
60
+ /**
61
+ * components know about their parent dialog via the
62
+ * DialogNotifier interface. It allows a component to
63
+ * notify parent of changing contents.
64
+ * @category SuiDialog
65
+ */
66
+ export declare abstract class SuiDialogNotifier {
67
+ /**
68
+ * Called by the component when the state is changed. Dialog
69
+ * will then query the component (getValue()) and set the
70
+ * correct score value.
71
+ */
72
+ abstract changed(): void;
73
+ /**
74
+ * returns the DOM id of the dialog.
75
+ */
76
+ abstract getId(): string;
77
+ /**
78
+ * returns the top DOM node for the dialog
79
+ */
80
+ abstract get dgDom(): any;
81
+ /**
82
+ * gets the view from the parent
83
+ */
84
+ abstract getView(): SuiScoreViewOperations;
85
+ /**
86
+ * gets the 'modifier' from parent dialog, used by
87
+ * text editors. Most components won't need this.
88
+ */
89
+ abstract getModifier(): SmoModifier | null;
90
+ /**
91
+ * Gets the static text <string, string> for the current language.
92
+ * this is used by components that have different text labels for different states.
93
+ */
94
+ abstract getStaticText(): Record<string, string>;
95
+ /**
96
+ * Used by text editing components that are also event sinks
97
+ */
98
+ abstract getEventSource(): BrowserEventSource;
99
+ }
100
+ /**
101
+ * base class for Dialog components. Notifies parent
102
+ * dialog of state change via `change()`
103
+ * @category SuiDialog
104
+ */
105
+ export declare abstract class SuiComponentBase {
106
+ changeFlag: boolean;
107
+ css: string;
108
+ dialog: SuiDialogNotifier;
109
+ id: string;
110
+ noProperty: boolean;
111
+ label: string;
112
+ control: string;
113
+ smoName: string;
114
+ constructor(dialog: SuiDialogNotifier, parameters: SuiBaseComponentParams);
115
+ /**
116
+ * Called by the dialog after rendering, so the derived class can
117
+ * bind the html controls
118
+ */
119
+ abstract bind(): void;
120
+ /**
121
+ * Return the html that lives in side the component DOM. Implemented by the
122
+ * base class.
123
+ */
124
+ abstract get html(): any;
125
+ /**
126
+ * Called by the derived class when the value changes. The change flag is set to true, so the dialog will
127
+ * know which component changed.
128
+ */
129
+ handleChanged(): void;
130
+ /**
131
+ * combine component classes with string, used for composites
132
+ * @param classes string ot append
133
+ * @returns combined strings
134
+ */
135
+ makeClasses(classes: string): string;
136
+ get parameterId(): string;
137
+ show(): void;
138
+ hide(): void;
139
+ }
140
+ /**
141
+ * Parent components are really containers for other components
142
+ * For instance, FontComponent has size, family, weight, etc.
143
+ *
144
+ * @category SuiDialog
145
+ */
146
+ export declare abstract class SuiComponentParent extends SuiComponentBase {
147
+ /**
148
+ * For parent component, their changed method is called by child, and then the
149
+ * parent calls the dialog changed()
150
+ */
151
+ abstract changed(): void;
152
+ }
153
+ export declare abstract class SuiCompositeBase extends SuiComponentBase {
154
+ parentControl: SuiComponentParent;
155
+ constructor(dialog: SuiDialogNotifier, params: SuiBaseComponentParams);
156
+ }
157
+ export type dynamicComponentCtor = (arg1: SuiDialogNotifier, params: any) => any;
158
+ export declare const SmoDynamicComponentCtor: Record<string, dynamicComponentCtor>;
@@ -1,54 +1,54 @@
1
- import { SuiComponentBase, SuiDialogNotifier, SuiComponentParent } from './baseComponent';
2
- /**
3
- * Simple buttons in dialogs
4
- * @category SuiDialog
5
- */
6
- export interface SuiButtonComponentParams {
7
- id: string;
8
- classes: string;
9
- type?: string;
10
- increment?: number;
11
- text?: string;
12
- label: string;
13
- smoName: string;
14
- control: string;
15
- icon: string;
16
- }
17
- /**
18
- * Simple click behavior. No value just used to notifiy parent dialog
19
- * @category SuiDialog
20
- */
21
- export declare class SuiButtonComponent extends SuiComponentBase {
22
- icon: string;
23
- text?: string;
24
- constructor(dialog: SuiDialogNotifier, parameter: SuiButtonComponentParams);
25
- get html(): import("../../../common/htmlHelpers").DomBuilder;
26
- _getInputElement(): any;
27
- setValue(): void;
28
- getValue(): null;
29
- bind(): void;
30
- }
31
- /**
32
- * @category SuiDialog
33
- */
34
- export interface SuiButtonCompositeParams {
35
- id: string;
36
- classes: string;
37
- type?: string;
38
- increment?: number;
39
- label: string;
40
- smoName: string;
41
- text?: string;
42
- control: string;
43
- icon: string;
44
- parentControl: SuiComponentParent;
45
- }
46
- /**
47
- * Buttons that are part of a composite control
48
- * @category SuiDialog
49
- */
50
- export declare class SuiButtonComposite extends SuiButtonComponent {
51
- parentControl: SuiComponentParent;
52
- constructor(dialog: SuiDialogNotifier, parameters: SuiButtonCompositeParams);
53
- handleChanged(): void;
54
- }
1
+ import { SuiComponentBase, SuiDialogNotifier, SuiComponentParent } from './baseComponent';
2
+ /**
3
+ * Simple buttons in dialogs
4
+ * @category SuiDialog
5
+ */
6
+ export interface SuiButtonComponentParams {
7
+ id: string;
8
+ classes: string;
9
+ type?: string;
10
+ increment?: number;
11
+ text?: string;
12
+ label: string;
13
+ smoName: string;
14
+ control: string;
15
+ icon: string;
16
+ }
17
+ /**
18
+ * Simple click behavior. No value just used to notifiy parent dialog
19
+ * @category SuiDialog
20
+ */
21
+ export declare class SuiButtonComponent extends SuiComponentBase {
22
+ icon: string;
23
+ text?: string;
24
+ constructor(dialog: SuiDialogNotifier, parameter: SuiButtonComponentParams);
25
+ get html(): import("../../../common/htmlHelpers").DomBuilder;
26
+ _getInputElement(): any;
27
+ setValue(): void;
28
+ getValue(): null;
29
+ bind(): void;
30
+ }
31
+ /**
32
+ * @category SuiDialog
33
+ */
34
+ export interface SuiButtonCompositeParams {
35
+ id: string;
36
+ classes: string;
37
+ type?: string;
38
+ increment?: number;
39
+ label: string;
40
+ smoName: string;
41
+ text?: string;
42
+ control: string;
43
+ icon: string;
44
+ parentControl: SuiComponentParent;
45
+ }
46
+ /**
47
+ * Buttons that are part of a composite control
48
+ * @category SuiDialog
49
+ */
50
+ export declare class SuiButtonComposite extends SuiButtonComponent {
51
+ parentControl: SuiComponentParent;
52
+ constructor(dialog: SuiDialogNotifier, parameters: SuiButtonCompositeParams);
53
+ handleChanged(): void;
54
+ }
@@ -1,78 +1,78 @@
1
- import { SuiComponentBase, SuiDialogNotifier, SuiComponentParent, DialogDefinitionOption } from './baseComponent';
2
- /**
3
- * constructor params for {@link SuiDropdownComponent}
4
- * @param id id in DOM
5
- * @param classes
6
- * @param type indicates the data type of the value
7
- * @param increment not used
8
- * @param label
9
- * @param smoName variable name in dialog/adapter
10
- * @param control name of constructor
11
- * @param disabledOption
12
- * @category SuiDialog
13
- */
14
- export interface SuiDropdownComponentParams {
15
- id: string;
16
- classes: string;
17
- increment?: number;
18
- label: string;
19
- smoName: string;
20
- control: string;
21
- disabledOption?: string;
22
- dataType?: string;
23
- options?: DialogDefinitionOption[];
24
- }
25
- /**
26
- * single-select dropdown list
27
- * @category SuiDialog
28
- */
29
- export declare class SuiDropdownComponent extends SuiComponentBase {
30
- options: DialogDefinitionOption[];
31
- disabledOption: string;
32
- dataType: string;
33
- value: string;
34
- optionIds: string[];
35
- constructor(dialog: SuiDialogNotifier, parameter: SuiDropdownComponentParams);
36
- checkDefault(s: any, b: any): void;
37
- get html(): import("../../../common/htmlHelpers").DomBuilder;
38
- updateControls(): void;
39
- unselect(): void;
40
- _getInputElement(): any;
41
- getValue(): string | number;
42
- getValueLabel(): string;
43
- setValue(value: string | number): void;
44
- bind(): void;
45
- }
46
- /**
47
- * constructor params for {@link SuiDropdownComposite}
48
- * element, often a checkbox
49
- * @param {id} - unique ID for the control DOM
50
- * @param {classes} - additional classes for styling added to DOM
51
- * @param {label} - default label for the component
52
- * @param {smoName} - the variable in the dialog that the componenet maps to
53
- * @param {control} - the constructor of the UI control
54
- * @param {parentComponent} - for composite components, the top-level
55
- * @category SuiDialog
56
- * */
57
- export interface SuiDropdownCompositeParams {
58
- id: string;
59
- classes: string;
60
- type?: string;
61
- increment?: number;
62
- label: string;
63
- smoName: string;
64
- control: string;
65
- disabledOption?: string;
66
- dataType?: string;
67
- options?: DialogDefinitionOption[];
68
- parentControl: SuiComponentParent;
69
- }
70
- /**
71
- * A dropdown composite mixes a dropdown with some other
72
- * @category SuiDialog
73
- */
74
- export declare class SuiDropdownComposite extends SuiDropdownComponent {
75
- parentControl: SuiComponentParent;
76
- constructor(dialog: SuiDialogNotifier, parameters: SuiDropdownCompositeParams);
77
- handleChanged(): void;
78
- }
1
+ import { SuiComponentBase, SuiDialogNotifier, SuiComponentParent, DialogDefinitionOption } from './baseComponent';
2
+ /**
3
+ * constructor params for {@link SuiDropdownComponent}
4
+ * @param id id in DOM
5
+ * @param classes
6
+ * @param type indicates the data type of the value
7
+ * @param increment not used
8
+ * @param label
9
+ * @param smoName variable name in dialog/adapter
10
+ * @param control name of constructor
11
+ * @param disabledOption
12
+ * @category SuiDialog
13
+ */
14
+ export interface SuiDropdownComponentParams {
15
+ id: string;
16
+ classes: string;
17
+ increment?: number;
18
+ label: string;
19
+ smoName: string;
20
+ control: string;
21
+ disabledOption?: string;
22
+ dataType?: string;
23
+ options?: DialogDefinitionOption[];
24
+ }
25
+ /**
26
+ * single-select dropdown list
27
+ * @category SuiDialog
28
+ */
29
+ export declare class SuiDropdownComponent extends SuiComponentBase {
30
+ options: DialogDefinitionOption[];
31
+ disabledOption: string;
32
+ dataType: string;
33
+ value: string;
34
+ optionIds: string[];
35
+ constructor(dialog: SuiDialogNotifier, parameter: SuiDropdownComponentParams);
36
+ checkDefault(s: any, b: any): void;
37
+ get html(): import("../../../common/htmlHelpers").DomBuilder;
38
+ updateControls(): void;
39
+ unselect(): void;
40
+ _getInputElement(): any;
41
+ getValue(): string | number;
42
+ getValueLabel(): string;
43
+ setValue(value: string | number): void;
44
+ bind(): void;
45
+ }
46
+ /**
47
+ * constructor params for {@link SuiDropdownComposite}
48
+ * element, often a checkbox
49
+ * @param {id} - unique ID for the control DOM
50
+ * @param {classes} - additional classes for styling added to DOM
51
+ * @param {label} - default label for the component
52
+ * @param {smoName} - the variable in the dialog that the componenet maps to
53
+ * @param {control} - the constructor of the UI control
54
+ * @param {parentComponent} - for composite components, the top-level
55
+ * @category SuiDialog
56
+ * */
57
+ export interface SuiDropdownCompositeParams {
58
+ id: string;
59
+ classes: string;
60
+ type?: string;
61
+ increment?: number;
62
+ label: string;
63
+ smoName: string;
64
+ control: string;
65
+ disabledOption?: string;
66
+ dataType?: string;
67
+ options?: DialogDefinitionOption[];
68
+ parentControl: SuiComponentParent;
69
+ }
70
+ /**
71
+ * A dropdown composite mixes a dropdown with some other
72
+ * @category SuiDialog
73
+ */
74
+ export declare class SuiDropdownComposite extends SuiDropdownComponent {
75
+ parentControl: SuiComponentParent;
76
+ constructor(dialog: SuiDialogNotifier, parameters: SuiDropdownCompositeParams);
77
+ handleChanged(): void;
78
+ }