Skip to content

Commit

Permalink
Release v0.15.0 (#637)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
  • Loading branch information
bexsoft authored Jan 16, 2024
1 parent 4769d2e commit 509338e
Show file tree
Hide file tree
Showing 20 changed files with 19,562 additions and 19,224 deletions.
18,568 changes: 9,338 additions & 9,230 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.

6 changes: 6 additions & 0 deletions dist/cjs/types/components/Icons/AutoModeIcon.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 AutoModeIcon: (
props: SVGProps<SVGSVGElement>,
) => React.JSX.Element;
export default AutoModeIcon;
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Icons/LightModeIcon.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 LightModeIcon: (
props: SVGProps<SVGSVGElement>,
) => React.JSX.Element;
export default LightModeIcon;
2 changes: 2 additions & 0 deletions dist/cjs/types/components/Icons/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ export { default as ExpandIcon } from "./ExpandIcon";
export { default as NextCaretIcon } from "./NextCaretIcon";
export { default as PrevCaretIcon } from "./PrevCaretIcon";
export { default as DarkModeIcon } from "./DarkModeIcon";
export { default as LightModeIcon } from "./LightModeIcon";
export { default as AutoModeIcon } from "./AutoModeIcon";
export { default as ShuffleIcon } from "./ShuffleIcon";
export { default as LanguageIcon } from "./LanguageIcon";
export { default as EventBusyIcon } from "./EventBusyIcon";
Expand Down
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Slider/Slider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React, { FC } from "react";
import { SliderProps } from "./Slider.types";
declare const Slider: FC<
SliderProps & React.InputHTMLAttributes<HTMLInputElement>
>;
export default Slider;
21 changes: 21 additions & 0 deletions dist/cjs/types/components/Slider/Slider.types.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import React from "react";
import { CSSObject } from "styled-components";
import { CommonHelpTipPlacement } from "../HelpTip/HelpTip.types";
export interface SliderProps {
id: string;
label?: string;
noLabelMinWidth?: boolean;
error?: string;
tooltip?: string;
sx?: CSSObject;
helpTip?: React.ReactNode;
helpTipPlacement?: CommonHelpTipPlacement;
displayValue?: boolean;
displayValueFunction?: (value: any) => React.ReactNode;
}
export interface SliderContainerProps {
children?: React.ReactNode;
sx?: CSSObject;
error?: boolean;
className?: string;
}
7 changes: 7 additions & 0 deletions dist/cjs/types/global/global.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,12 @@ export interface WizardColorProps {
vertical: WizardStepColorProps;
modal: WizardStepColorProps;
}
export interface SliderProps {
railBG: string;
bulletBG: string;
disabledRail: string;
disabledBullet: string;
}
export interface ThemeDefinitionProps {
bgColor: string;
fontColor: string;
Expand Down Expand Up @@ -317,6 +323,7 @@ export interface ThemeDefinitionProps {
informativeMessage?: InformativeMessageProps;
badge?: BadgeStyleProps;
wizard?: WizardColorProps;
slider?: SliderProps;
}
export interface SelectorType {
label: string;
Expand Down
2 changes: 2 additions & 0 deletions dist/cjs/types/global/themes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export declare const lightColors: {
linkColor: string;
mutedText: string;
disabledOnSwitchBG: string;
sliderDisabledBG: string;
};
export declare const darkColors: {
dark: string;
Expand Down Expand Up @@ -160,6 +161,7 @@ export declare const darkColors: {
codeEditorRegexp: string;
linkColor: string;
mutedText: string;
disabledSliderBullet: string;
};
export declare const lightTheme: ThemeDefinitionProps;
export declare const darkTheme: ThemeDefinitionProps;
Loading

0 comments on commit 509338e

Please sign in to comment.