@mindly/ui-components 6.5.0-dev.3 → 6.5.0-dev.4
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 +19 -2
- package/dist/cjs/lib2/shared/providers/AuthProvider/AuthProvider.d.ts +0 -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 +18 -1
- package/dist/esm/lib2/shared/providers/AuthProvider/AuthProvider.d.ts +0 -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 +1 -2
- package/package.json +1 -1
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
import React, { FC } from 'react';
|
|
2
|
-
import { Auth } from 'firebase/auth';
|
|
3
2
|
import { AuthContextType } from './types';
|
|
4
3
|
export declare const AuthContext: React.Context<AuthContextType | null>;
|
|
5
4
|
type AuthProviderProps = {
|
|
6
5
|
skipNativeAuth?: boolean;
|
|
7
|
-
auth?: Auth;
|
|
8
6
|
};
|
|
9
7
|
export declare const AuthProvider: FC<AuthProviderProps>;
|
|
10
8
|
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,8 @@ 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 { UserCredential, Auth } from 'firebase/auth';
|
|
18
17
|
import { User, SignInResult, SignInWithEmailAndPasswordOptions, LinkWithEmailAndPasswordOptions, CreateUserWithEmailAndPasswordOptions, SendPasswordResetEmailOptions } from '@capacitor-firebase/authentication';
|
|
18
|
+
import { UserCredential } from 'firebase/auth';
|
|
19
19
|
import { MarkdownToJSX } from 'markdown-to-jsx';
|
|
20
20
|
|
|
21
21
|
interface ButtonProps$2 {
|
|
@@ -2269,7 +2269,6 @@ type AuthContextType = {
|
|
|
2269
2269
|
declare const AuthContext: React__default.Context<AuthContextType | null>;
|
|
2270
2270
|
type AuthProviderProps = {
|
|
2271
2271
|
skipNativeAuth?: boolean;
|
|
2272
|
-
auth?: Auth;
|
|
2273
2272
|
};
|
|
2274
2273
|
declare const AuthProvider: FC<AuthProviderProps>;
|
|
2275
2274
|
|