ryzen-ui 0.2.5 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/ryzen-ui.mjs +15 -15
- package/fesm2022/ryzen-ui.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ interface DatePickerConfig {
|
|
|
45
45
|
showTodayButton?: boolean;
|
|
46
46
|
showYearNavigation?: boolean;
|
|
47
47
|
appendToParent?: boolean;
|
|
48
|
+
appendToBody?: boolean;
|
|
48
49
|
}
|
|
49
50
|
type ViewMode = 'days' | 'months' | 'years';
|
|
50
51
|
|
|
@@ -132,6 +133,7 @@ interface DropdownOption<T = unknown> {
|
|
|
132
133
|
}
|
|
133
134
|
interface DropdownConfig {
|
|
134
135
|
appendToParent?: boolean;
|
|
136
|
+
appendToBody?: boolean;
|
|
135
137
|
maxHeight?: string;
|
|
136
138
|
direction?: 'up' | 'down' | 'auto';
|
|
137
139
|
}
|
|
@@ -215,6 +217,7 @@ declare class FileUploadComponent {
|
|
|
215
217
|
|
|
216
218
|
interface MultiSelectConfig {
|
|
217
219
|
appendToParent?: boolean;
|
|
220
|
+
appendToBody?: boolean;
|
|
218
221
|
maxHeight?: string;
|
|
219
222
|
direction?: 'up' | 'down' | 'auto';
|
|
220
223
|
}
|