@kingsimba/nc-ui 0.1.22 → 0.1.23
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/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +580 -584
- package/dist/index.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -353,7 +353,7 @@ declare interface CloseButtonProps {
|
|
|
353
353
|
|
|
354
354
|
export declare function cn(...inputs: ClassValue[]): string;
|
|
355
355
|
|
|
356
|
-
export declare function ComboBox({ value, onChange, placeholder, options, disabled, label, clearable, allowTyping, placement, size, appearance, style, className, }: ComboBoxProps): JSX_2.Element;
|
|
356
|
+
export declare function ComboBox({ value, onChange, placeholder, options, disabled, label, clearable, allowTyping, placement, size, appearance, textAlign, style, className, }: ComboBoxProps): JSX_2.Element;
|
|
357
357
|
|
|
358
358
|
export declare type ComboBoxOption = {
|
|
359
359
|
label: string;
|
|
@@ -384,6 +384,8 @@ export declare interface ComboBoxProps {
|
|
|
384
384
|
size?: 'default' | 'small';
|
|
385
385
|
/** Visual appearance of the closed control */
|
|
386
386
|
appearance?: 'default' | 'transparent';
|
|
387
|
+
/** Horizontal alignment for the selected text and typed query */
|
|
388
|
+
textAlign?: 'left' | 'center' | 'right';
|
|
387
389
|
/** Custom styles */
|
|
388
390
|
style?: default_2.CSSProperties;
|
|
389
391
|
/** Additional CSS class names */
|