@qodo/design-system 0.20.25 → 0.20.27
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/design-system.css +1 -1
- package/dist/index.cjs.js +15 -15
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.js +1359 -1355
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -152,6 +152,7 @@ declare type BaseSelectProps = {
|
|
|
152
152
|
}) => ReactNode;
|
|
153
153
|
size?: "xs" | "default";
|
|
154
154
|
contentMaxWidth?: string;
|
|
155
|
+
contentAlign?: "start" | "center" | "end";
|
|
155
156
|
error?: boolean;
|
|
156
157
|
renderFooter?: (props: {
|
|
157
158
|
onClose: () => void;
|
|
@@ -569,6 +570,7 @@ declare const INSIGHT_VARIANTS: {
|
|
|
569
570
|
DEFAULT: string;
|
|
570
571
|
PRIMARY: string;
|
|
571
572
|
ACTIVE: string;
|
|
573
|
+
DESTRUCTIVE: string;
|
|
572
574
|
};
|
|
573
575
|
|
|
574
576
|
export declare function InsightCard({ title, description, caption, additionalContent, titleClassName: propTitleClassName, descriptionClassName: propDescriptionClassName, variant, className, icon, iconClassName: propIconClassName, size, rightContent, }: InsightCardProps): JSX_2.Element;
|
|
@@ -715,7 +717,7 @@ declare const SearchSize: {
|
|
|
715
717
|
LARGE: string;
|
|
716
718
|
};
|
|
717
719
|
|
|
718
|
-
export declare function Select({ value, options, onSelect: propsOnSelect, disabled, readOnly, mode, placeholder, inputPlaceholder, emptyState, triggerClassName, triggerWrapperClassName, badgeClassName, badgeVariant, searchable, toggleIcon, dir, variant, iconPosition, selectionIndicator, onSearchChange, renderValue, size, contentMaxWidth, error, renderFooter, ...rest }: SelectProps): JSX_2.Element;
|
|
720
|
+
export declare function Select({ value, options, onSelect: propsOnSelect, disabled, readOnly, mode, placeholder, inputPlaceholder, emptyState, triggerClassName, triggerWrapperClassName, badgeClassName, badgeVariant, searchable, toggleIcon, dir, variant, iconPosition, selectionIndicator, onSearchChange, renderValue, size, contentMaxWidth, contentAlign, error, renderFooter, ...rest }: SelectProps): JSX_2.Element;
|
|
719
721
|
|
|
720
722
|
declare const SELECT_MODE: {
|
|
721
723
|
SINGLE: string;
|