forstok-ui-lib 1.0.19 → 2.0.0
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.d.ts +30 -1
- package/dist/index.js +169 -44
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +169 -44
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/index.ts +2 -0
- package/src/assets/stylesheets/shares.styles.ts +169 -0
- package/src/index.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as react from 'react';
|
|
2
3
|
import { HTMLAttributes, ReactNode, AnchorHTMLAttributes, MouseEvent, Dispatch, SetStateAction, KeyboardEvent, FocusEvent, InputHTMLAttributes, ChangeEvent, PropsWithChildren, ButtonHTMLAttributes, RefObject } from 'react';
|
|
4
|
+
import * as styled_components from 'styled-components';
|
|
5
|
+
import * as styled_components_dist_types from 'styled-components/dist/types';
|
|
3
6
|
|
|
4
7
|
type TText = HTMLAttributes<HTMLSpanElement> & {
|
|
5
8
|
children: ReactNode;
|
|
@@ -100,4 +103,30 @@ type TLoading = HTMLAttributes<HTMLDivElement> & {
|
|
|
100
103
|
};
|
|
101
104
|
declare const LoadingComponent: ({ $mode, $position, $shape, $color, $extendClass, ...props }: TLoading) => react_jsx_runtime.JSX.Element;
|
|
102
105
|
|
|
103
|
-
|
|
106
|
+
declare const clearList: styled_components.RuleSet<object>;
|
|
107
|
+
declare const responseWidth: styled_components.RuleSet<object>;
|
|
108
|
+
declare const elipsis: styled_components.RuleSet<object>;
|
|
109
|
+
declare const multiElipsis: styled_components.RuleSet<object>;
|
|
110
|
+
declare const thirdElipsis: styled_components.RuleSet<object>;
|
|
111
|
+
declare const boxBase: styled_components.RuleSet<object>;
|
|
112
|
+
declare const dropBase: styled_components.RuleSet<object>;
|
|
113
|
+
declare const headTable: styled_components.RuleSet<object>;
|
|
114
|
+
declare const formLabel: styled_components.RuleSet<object>;
|
|
115
|
+
|
|
116
|
+
declare const PanelContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
|
|
117
|
+
declare const ListContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
|
|
118
|
+
declare const PanelWrapper: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, {
|
|
119
|
+
$mode?: string;
|
|
120
|
+
}>> & string;
|
|
121
|
+
declare const Title: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
|
|
122
|
+
declare const HeaderContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
|
|
123
|
+
declare const TabsContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, {
|
|
124
|
+
$mode?: string;
|
|
125
|
+
}>> & string;
|
|
126
|
+
declare const TabsContent: styled_components_dist_types.IStyledComponentBase<"web", styled_components_dist_types.Substitute<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
|
|
127
|
+
$mode?: string;
|
|
128
|
+
}>> & string;
|
|
129
|
+
declare const FoContainer: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
|
|
130
|
+
declare const InfoGroup: styled_components_dist_types.IStyledComponentBase<"web", styled_components.FastOmit<react.DetailedHTMLProps<react.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
131
|
+
|
|
132
|
+
export { ButtonComponent, CheckboxComponent, FoContainer, HeaderContainer, IconComponent, InfoGroup, InputComponent, LabelComponent, LinkComponent, ListContainer, LoadingComponent, PanelContainer, PanelWrapper, TabsContainer, TabsContent, TextComponent, Title, boxBase, clearList, dropBase, elipsis, formLabel, headTable, multiElipsis, responseWidth, thirdElipsis };
|