srf-feathers 1.3.4 → 1.3.5
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/build/elements/Button/Button.d.ts +1 -1
- package/build/elements/Icon/Icon.d.ts +1 -1
- package/build/elements/Tooltip/Tooltip.d.ts +2 -2
- package/build/index.esm.js +236 -943
- package/build/index.esm.js.map +1 -1
- package/build/index.js +236 -943
- package/build/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { TooltipProps } from "../Tooltip/Tooltip.types";
|
|
|
4
4
|
import "./Button.scss";
|
|
5
5
|
import "./../Tooltip/Tooltip.scss";
|
|
6
6
|
export declare const ButtonModifiers: readonly ["primary", "save", "publish", "retire", "danger", "favorite", "white", "unobtrusive", "fullwidth", "fullheight", "margin_top", "margin_bottom", "left_align", "icon_rotated", "invisible_content", "no_outline", "extra_big", "big", "small", "extra_tiny", "tiny", "hidden", "icon_right", "icon_sticks_to_border", "spread_content", "bold", "selected", "uppercase", "link", "circle"];
|
|
7
|
-
export
|
|
7
|
+
export type ButtonModifiersType = typeof ButtonModifiers[number];
|
|
8
8
|
declare const Button: React.FC<ButtonProps>;
|
|
9
9
|
export declare const ButtonTooltip: React.FC<TooltipProps>;
|
|
10
10
|
export default Button;
|
|
@@ -2,7 +2,7 @@ import React from "react";
|
|
|
2
2
|
import { IconProps } from "./Icon.types";
|
|
3
3
|
import "./Icon.scss";
|
|
4
4
|
export declare const IconModifiers: readonly ["success", "danger", "retire", "info", "branding", "small", "tiny", "white", "light", "rotatable", "rotated-45", "rotated-180"];
|
|
5
|
-
export
|
|
5
|
+
export type IconModifiersType = typeof IconModifiers[number];
|
|
6
6
|
declare const Icon: React.FC<IconProps>;
|
|
7
7
|
export declare const UpdateIcon: React.FC<IconProps>;
|
|
8
8
|
export declare const ExclamationMarkIcon: React.FC<IconProps>;
|
|
@@ -2,8 +2,8 @@ import React from "react";
|
|
|
2
2
|
import { TooltipProps } from "./Tooltip.types";
|
|
3
3
|
import "./Tooltip.scss";
|
|
4
4
|
export declare const TooltipModifiers: readonly ["always_open", "space_filling", "no_min_width", "show_delayed", "validation", "max_parent_width", "no_word_wrap", "no_border", "no_margin", "clickable"];
|
|
5
|
-
export
|
|
5
|
+
export type TooltipModifiersType = typeof TooltipModifiers[number];
|
|
6
6
|
export declare const TooltipDirections: readonly ["up", "right", "down", "left", "down-edge-left", "down-edge-right"];
|
|
7
|
-
export
|
|
7
|
+
export type TooltipDirectionsType = typeof TooltipDirections[number];
|
|
8
8
|
declare const Tooltip: React.FC<TooltipProps>;
|
|
9
9
|
export default Tooltip;
|