@redzone/taunt-logins-ui-react 0.0.8 → 0.0.10

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.
@@ -1,5 +1,6 @@
1
1
  type ContextProps = {
2
2
  tauntServiceEndpoint: string;
3
+ loggedIn: boolean;
3
4
  deets?: {
4
5
  accessToken: string;
5
6
  refreshToken: string;
@@ -1,3 +1,5 @@
1
- export declare const TelegramButton: ({ openTelegram }: {
1
+ export interface TelegramButtonProps {
2
2
  openTelegram?: () => void;
3
- }) => import("react/jsx-runtime").JSX.Element;
3
+ disabled?: boolean;
4
+ }
5
+ export declare const TelegramButton: ({ openTelegram, disabled }: TelegramButtonProps) => import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redzone/taunt-logins-ui-react",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -12,7 +12,6 @@
12
12
  "preview": "vite preview",
13
13
  "prenpm:publish": "npm run build:lib",
14
14
  "npm:publish": "npm publish --access public",
15
- "fb:login": "firebase login --reauth",
16
15
  "fb:deploy": "firebase deploy --only hosting:dev"
17
16
  },
18
17
  "main": "./dist/taunt-logins-ui-react.umd.js",