@orbit-software/sdk 1.91.4 → 1.92.0
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/.claude/settings.local.json +4 -1
- package/dist/esm/components/modals/ProfileInventoryModal.d.ts +1 -1
- package/dist/esm/components/ui/LazyLottie.d.ts +8 -0
- package/dist/esm/lib/assets.d.ts +1 -0
- package/dist/esm/sdk.mjs +17881 -17881
- package/dist/esm/sdk.umd.js +86 -86
- package/dist/stats-esm.html +1 -1
- package/dist/stats-umd-react.html +1 -1
- package/dist/stats-umd.html +1 -1
- package/dist/umd/sdk.umd.js +86 -86
- package/dist/umd_react/sdk_react.umd.js +86 -86
- package/package.json +3 -2
- package/dist/esm/assets/lottie/moneyTongue.json.d.ts +0 -3
- package/dist/esm/assets/lottie/newspaper.json.d.ts +0 -3
|
@@ -14,7 +14,10 @@
|
|
|
14
14
|
"Bash(pnpm build:*)",
|
|
15
15
|
"Bash(npm run build)",
|
|
16
16
|
"WebFetch(domain:github.com)",
|
|
17
|
-
"Bash(git status -u)"
|
|
17
|
+
"Bash(git status -u)",
|
|
18
|
+
"Bash(find /Users/lgklsv/Developer/Projects/sdk -maxdepth 1 -type f -name *.toml -o -name *.config.*)",
|
|
19
|
+
"Bash(find /Users/lgklsv/Developer/Projects/sdk -name wrangler* -o -name *.toml)",
|
|
20
|
+
"Bash(find /Users/lgklsv/Developer/Projects/sdk -name .env* -type f)"
|
|
18
21
|
]
|
|
19
22
|
}
|
|
20
23
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { InventoryItem } from '../../types/api';
|
|
2
2
|
import { ModalProps } from '@telegram-apps/telegram-ui';
|
|
3
|
-
export declare const getBoxImage: (item: InventoryItem) =>
|
|
3
|
+
export declare const getBoxImage: (item: InventoryItem) => string;
|
|
4
4
|
export declare function ProfileInventoryModal({ ...props }: Omit<ModalProps, 'trigger'>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LottieComponentProps } from 'lottie-react';
|
|
2
|
+
interface LazyLottieProps extends Omit<LottieComponentProps, 'animationData'> {
|
|
3
|
+
asset: string;
|
|
4
|
+
height: number;
|
|
5
|
+
width: number;
|
|
6
|
+
}
|
|
7
|
+
export declare function LazyLottie({ asset, height, width, ...props }: LazyLottieProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function assetUrl(path: string): string;
|