Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.14.0 #626

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61,880 changes: 31,088 additions & 30,792 deletions dist/cjs/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/index.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ export interface DropdownSelectorProps {
id: string;
options: SelectorType[];
selectedOption?: string;
onSelect: (value: string, extraValue?: any, label?: string) => void;
onSelect: (
value: string,
extraValue?: any,
label?: string,
selectedIndex?: number,
) => void;
hideTriggerAction: () => void;
open: boolean;
anchorEl?: (EventTarget & HTMLElement) | null;
Expand Down
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Icons/ExpandLeftCaret.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import * as React from "react";
import { SVGProps } from "react";
declare const ExpandLeftCaret: (
props: SVGProps<SVGSVGElement>,
) => React.JSX.Element;
export default ExpandLeftCaret;
1 change: 1 addition & 0 deletions dist/cjs/types/components/Icons/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,3 +215,4 @@ export { default as DarkModeIcon } from "./DarkModeIcon";
export { default as ShuffleIcon } from "./ShuffleIcon";
export { default as LanguageIcon } from "./LanguageIcon";
export { default as EventBusyIcon } from "./EventBusyIcon";
export { default as ExpandLeftCaret } from "./ExpandLeftCaret";
2 changes: 1 addition & 1 deletion dist/cjs/types/components/Switch/Switch.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface MainSwitchProps {
helpTipPlacement?: CommonHelpTipPlacement;
}
export interface IndicatorProps {
on: boolean;
active: boolean;
children: React.ReactNode;
}
export interface SwitchContainerProps {
Expand Down
1 change: 1 addition & 0 deletions dist/cjs/types/global/global.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ export interface SelectorType {
label: string;
value: string;
icon?: React.ReactNode;
indicator?: React.ReactNode;
extraValue?: any;
disabled?: boolean;
}
Expand Down
Loading