forstok-ui-lib 5.2.4 → 5.2.6
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 +9 -1
- package/dist/index.js +107 -107
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +106 -106
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -4
- package/src/assets/index.ts +3 -1
- package/src/assets/javascripts/function.ts +57 -0
- package/src/components/input/styles.ts +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -402,4 +402,12 @@ declare const InputGroup: styled_components_dist_types.IStyledComponentBase<"web
|
|
|
402
402
|
$required?: boolean;
|
|
403
403
|
}>> & string;
|
|
404
404
|
|
|
405
|
-
|
|
405
|
+
declare const getStorage: (name: string, type?: string, defaultVal?: any, loadName?: string) => any;
|
|
406
|
+
declare const setStorage: (name: string, value?: any, only?: string) => false | undefined;
|
|
407
|
+
declare const debounce: (fn: Function, ms?: number) => (this: any, ...args: any[]) => void;
|
|
408
|
+
declare const capitalize: (value?: string) => string;
|
|
409
|
+
declare const formatNumber: (n?: string | number, flag?: boolean) => string;
|
|
410
|
+
declare const generateMessage: (type: string, value: string | ReactNode, callback?: () => void, timer?: number) => TMessage;
|
|
411
|
+
declare const generateMessageQuestion: (type: string, title: string, subtitle: string, callback?: () => void, buttonSubmit?: string, cancelCallback?: () => void) => TMessageQuestion;
|
|
412
|
+
|
|
413
|
+
export { ButtonComponent, CheckboxComponent, DropDownComponent as DropdownComponent, ErrorComponent, FoContainer, FormContainer, HeaderContainer, IconComponent, ImageComponent, InfoGroup, InputComponent, InputGroup, InputWithRefComponent as InputRefComponent, type KeysToSnakeCase, LabelComponent, LinkComponent, ListContainer, LoadingComponent, MessageComponent, MessageQuestionComponent, MuteLabel, PanelContainer, PanelWrapper, type PartialBy, PopupComponent, ReactPortalComponent, SelectComponent, SingleFormContainer, type TChangeEvent, type TChannel, type TCloseDropdownFunction, type TDragEvent, type TDropdown, type TEnterEvent, type TFile, type TFileImage, type THierarchy, type TIdNum, type TIdStr, type TKeyboadEvent, type TMessage, type TMessageFunction, type TMessageQuestion, type TMessageQuestionFunction, type TMouseEvent, type TObject, type TOnChangeValue, type TOption, type TPage, type TPopup, type TPopupContainer, type TPopupFunction, type TPopupFunctionGroup, type TPopupFunctionParam, type TPopupOpenFunction, type TState, type TUser, TabsContainer, TabsContent, TextComponent, Title, UploadComponent, UploadDragDropComponent, type WithRequired, boxBase, capitalize, clearList, debounce, dropBase, elipsis, formLabel, formatNumber, generateMessage, generateMessageQuestion, getStorage, headTable, multiElipsis, responseWidth, setStorage, thirdElipsis };
|