ryzen-ui 0.2.5 → 0.2.8
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 +30 -19
- package/fesm2022/ryzen-ui.mjs.map +1 -1
- package/index.d.ts +4 -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
|
}
|
|
@@ -241,6 +244,7 @@ declare class MultiSelectComponent implements OnDestroy {
|
|
|
241
244
|
private readonly _direction;
|
|
242
245
|
readonly _accentKey: _angular_core.Signal<"primary" | "secondary" | "accent" | "success" | "warning" | "danger" | "info" | null>;
|
|
243
246
|
readonly _rawAccent: _angular_core.Signal<string | null>;
|
|
247
|
+
readonly _accentColorValue: _angular_core.Signal<string>;
|
|
244
248
|
readonly _width: _angular_core.Signal<string | null>;
|
|
245
249
|
readonly _normalizedOptions: _angular_core.Signal<DropdownOption<unknown>[]>;
|
|
246
250
|
readonly _isOpen: _angular_core.WritableSignal<boolean>;
|