@mirantes-micro/foundation-design-system 1.0.51 → 1.0.53
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 +5 -2
- package/dist/index.js +131 -60
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { ReactNode, ChangeEvent, MouseEventHandler, CSSProperties } from 'react';
|
|
2
|
+
import React__default, { ReactNode, ChangeEvent, KeyboardEvent, MouseEventHandler, CSSProperties } from 'react';
|
|
3
3
|
import { QueryClient } from '@tanstack/react-query';
|
|
4
4
|
import { AxiosInstance } from 'axios';
|
|
5
5
|
|
|
@@ -257,6 +257,7 @@ type BaseInputProps = {
|
|
|
257
257
|
placeholder: string;
|
|
258
258
|
value: string;
|
|
259
259
|
onChange: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
260
|
+
onKeyDown?: (e: KeyboardEvent<HTMLInputElement>) => void;
|
|
260
261
|
rightIcon?: React__default.ReactNode;
|
|
261
262
|
leftIcon?: React__default.ReactNode;
|
|
262
263
|
label?: string;
|
|
@@ -618,4 +619,6 @@ declare const designSystemPreset: {
|
|
|
618
619
|
};
|
|
619
620
|
};
|
|
620
621
|
|
|
621
|
-
|
|
622
|
+
declare function ChatViewPage(): React__default.JSX.Element;
|
|
623
|
+
|
|
624
|
+
export { AddressAutocompleteInput, BaseInput, Button, ChatView, ChatViewPage, CheckBoxInput, ContactsModal, CountryDisplay, CountryInput, CustomDateInput, CustomDrawer, CustomDropdown, CustomSelectInput, DateInput, GradientModal, Header, MirantesButton, MirantesFoundationProvider, RadioButtonInput, SalaryInput, Calendar as ScheduleCalendar, Spinner, WorkspacePanel, clearSettingsCookie, closeLogoutChannel, designSystemPreset, getInitials, getSettingsFromCookie, joinUrlWithPathAndQuery, onLogout, stringToObj, useApiGetPage, useLoadSettings, useMirantesFoundation, useSetChatVisibility };
|