opus-react 0.6.32 → 0.6.33
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 +258 -263
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +13 -3
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +258 -263
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -78,7 +78,7 @@ type DescriptionListLayout = "stacked" | "inline";
|
|
|
78
78
|
type ContentTimelineStatus = "default" | "success" | "warning" | "danger" | "muted";
|
|
79
79
|
type StatisticTrend = "up" | "down" | "flat";
|
|
80
80
|
|
|
81
|
-
type ButtonVariant = "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "light" | "dark" | "ghost" | "link";
|
|
81
|
+
type ButtonVariant = "primary" | "secondary" | "tertiary" | "success" | "danger" | "warning" | "info" | "light" | "dark" | "ghost" | "link";
|
|
82
82
|
type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
83
83
|
children: ReactNode;
|
|
84
84
|
size?: InputControlSize;
|
|
@@ -237,7 +237,7 @@ type OpusDateInputProps = {
|
|
|
237
237
|
required?: boolean;
|
|
238
238
|
value: string;
|
|
239
239
|
};
|
|
240
|
-
declare function OpusDateInput({ "aria-describedby": ariaDescribedBy,
|
|
240
|
+
declare function OpusDateInput({ "aria-describedby": ariaDescribedBy, className, disabled, id, label, max, min, name, onChange, placeholder, readOnly, required, value, }: OpusDateInputProps): react.JSX.Element;
|
|
241
241
|
|
|
242
242
|
type OpusDateRangeInputProps = {
|
|
243
243
|
"aria-describedby"?: string;
|
|
@@ -255,7 +255,7 @@ type OpusDateRangeInputProps = {
|
|
|
255
255
|
required?: boolean;
|
|
256
256
|
value: DateRangeValue;
|
|
257
257
|
};
|
|
258
|
-
declare function OpusDateRangeInput({ "aria-describedby": ariaDescribedBy,
|
|
258
|
+
declare function OpusDateRangeInput({ "aria-describedby": ariaDescribedBy, className, disabled, id, label, max, min, name, onChange, placeholder, readOnly, required, value, }: OpusDateRangeInputProps): react.JSX.Element;
|
|
259
259
|
|
|
260
260
|
type HiddenFieldProps = {
|
|
261
261
|
help?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -78,7 +78,7 @@ type DescriptionListLayout = "stacked" | "inline";
|
|
|
78
78
|
type ContentTimelineStatus = "default" | "success" | "warning" | "danger" | "muted";
|
|
79
79
|
type StatisticTrend = "up" | "down" | "flat";
|
|
80
80
|
|
|
81
|
-
type ButtonVariant = "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "light" | "dark" | "ghost" | "link";
|
|
81
|
+
type ButtonVariant = "primary" | "secondary" | "tertiary" | "success" | "danger" | "warning" | "info" | "light" | "dark" | "ghost" | "link";
|
|
82
82
|
type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
83
83
|
children: ReactNode;
|
|
84
84
|
size?: InputControlSize;
|
|
@@ -237,7 +237,7 @@ type OpusDateInputProps = {
|
|
|
237
237
|
required?: boolean;
|
|
238
238
|
value: string;
|
|
239
239
|
};
|
|
240
|
-
declare function OpusDateInput({ "aria-describedby": ariaDescribedBy,
|
|
240
|
+
declare function OpusDateInput({ "aria-describedby": ariaDescribedBy, className, disabled, id, label, max, min, name, onChange, placeholder, readOnly, required, value, }: OpusDateInputProps): react.JSX.Element;
|
|
241
241
|
|
|
242
242
|
type OpusDateRangeInputProps = {
|
|
243
243
|
"aria-describedby"?: string;
|
|
@@ -255,7 +255,7 @@ type OpusDateRangeInputProps = {
|
|
|
255
255
|
required?: boolean;
|
|
256
256
|
value: DateRangeValue;
|
|
257
257
|
};
|
|
258
|
-
declare function OpusDateRangeInput({ "aria-describedby": ariaDescribedBy,
|
|
258
|
+
declare function OpusDateRangeInput({ "aria-describedby": ariaDescribedBy, className, disabled, id, label, max, min, name, onChange, placeholder, readOnly, required, value, }: OpusDateRangeInputProps): react.JSX.Element;
|
|
259
259
|
|
|
260
260
|
type HiddenFieldProps = {
|
|
261
261
|
help?: string;
|