@mindly/ui-components 6.5.0-dev.3 → 6.5.0-dev.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/dist/cjs/index.js +1 -1
- package/dist/cjs/lib2/shared/providers/AuthProvider/AuthProvider.d.ts +2 -2
- package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxDefaultItem.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ListBoxItem/ListBoxIconItem.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/shared/providers/AuthProvider/AuthProvider.d.ts +2 -2
- package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxDefaultItem.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ListBoxItem/ListBoxIconItem.d.ts +1 -1
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React, { FC } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { FirebaseApp } from 'firebase/app';
|
|
3
3
|
import { AuthContextType } from './types';
|
|
4
4
|
export declare const AuthContext: React.Context<AuthContextType | null>;
|
|
5
5
|
type AuthProviderProps = {
|
|
6
|
+
firebaseWebApp: FirebaseApp;
|
|
6
7
|
skipNativeAuth?: boolean;
|
|
7
|
-
auth?: Auth;
|
|
8
8
|
};
|
|
9
9
|
export declare const AuthProvider: FC<AuthProviderProps>;
|
|
10
10
|
export {};
|
|
@@ -13,6 +13,6 @@ declare const _default: React.MemoExoticComponent<({ item, isSelected, selection
|
|
|
13
13
|
selectionPosition: "end" | "start";
|
|
14
14
|
enableSelection: boolean;
|
|
15
15
|
selectedIconProps: IconProps;
|
|
16
|
-
type: "image" | "
|
|
16
|
+
type: "image" | "checkbox" | "radio" | "icon" | "emoji" | "roundImage";
|
|
17
17
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
18
18
|
export default _default;
|
|
@@ -8,7 +8,7 @@ declare const _default: React.MemoExoticComponent<({ item, isSelected, enableSel
|
|
|
8
8
|
variant: VariantType;
|
|
9
9
|
item: Node<unknown>;
|
|
10
10
|
enableSelection: boolean;
|
|
11
|
-
type: "image" | "
|
|
11
|
+
type: "image" | "checkbox" | "radio" | "icon" | "emoji" | "roundImage";
|
|
12
12
|
isOnboardingPreview?: boolean | undefined;
|
|
13
13
|
image?: ResponseFileType | null | undefined;
|
|
14
14
|
selectionMode?: "none" | "multiple" | "single" | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -14,8 +14,9 @@ import { AriaListBoxProps, AriaCalendarProps, DateValue, AriaTabListProps } from
|
|
|
14
14
|
import { ToastStateProps, ToastState } from '@react-stately/toast';
|
|
15
15
|
import { AriaToastRegionProps } from '@react-aria/toast';
|
|
16
16
|
import { IonSearchbarCustomEvent, SearchbarChangeEventDetail, TextFieldTypes, IonInputCustomEvent, InputChangeEventDetail } from '@ionic/core';
|
|
17
|
-
import {
|
|
17
|
+
import { FirebaseApp } from 'firebase/app';
|
|
18
18
|
import { User, SignInResult, SignInWithEmailAndPasswordOptions, LinkWithEmailAndPasswordOptions, CreateUserWithEmailAndPasswordOptions, SendPasswordResetEmailOptions } from '@capacitor-firebase/authentication';
|
|
19
|
+
import { UserCredential } from 'firebase/auth';
|
|
19
20
|
import { MarkdownToJSX } from 'markdown-to-jsx';
|
|
20
21
|
|
|
21
22
|
interface ButtonProps$2 {
|
|
@@ -2268,8 +2269,8 @@ type AuthContextType = {
|
|
|
2268
2269
|
|
|
2269
2270
|
declare const AuthContext: React__default.Context<AuthContextType | null>;
|
|
2270
2271
|
type AuthProviderProps = {
|
|
2272
|
+
firebaseWebApp: FirebaseApp;
|
|
2271
2273
|
skipNativeAuth?: boolean;
|
|
2272
|
-
auth?: Auth;
|
|
2273
2274
|
};
|
|
2274
2275
|
declare const AuthProvider: FC<AuthProviderProps>;
|
|
2275
2276
|
|