@rslsp1/fa-app-tools 1.0.7 → 1.0.8
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.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -297,6 +297,6 @@ interface ProjectSyncTabProps {
|
|
|
297
297
|
}
|
|
298
298
|
declare const ProjectSyncTab: React.FC<ProjectSyncTabProps>;
|
|
299
299
|
|
|
300
|
-
declare const LIB_VERSION = "1.0.
|
|
300
|
+
declare const LIB_VERSION = "1.0.8";
|
|
301
301
|
|
|
302
302
|
export { AvatarArchitectApp, type AvatarArchitectAppProps, CollapsibleCard, CompactDropdown, type ExtractedCharacter, FaToolsBadge, type FlowSdk, GLOBAL_STYLES, type Generation, HistoryPanel, InspectPanel, LIB_VERSION, ListView, type MediaItem, MediaLibrary, PillButton, type ProjectMeta, type ProjectSettings, ProjectSyncTab, PromptTab, SectionLabel, type SelectedTag, SetupPanel, type SyncDiff, type TagOption, type WorkspaceTags, buildFallbackPrompt, buildGenerationPrompt, buildImageGenerationOptions, buildPromptTabPayload, cleanAiResponse, createFlowServices, exportProjectToZip, formatTreeToMarkdown, getFormattedTimestamp, importProjectFromZip, injectXMPMetadata, interpretSdkError, parsePromptFile, parsePromptResponse, useKeyboardNavigation, useOnClickOutside };
|
package/dist/index.d.ts
CHANGED
|
@@ -297,6 +297,6 @@ interface ProjectSyncTabProps {
|
|
|
297
297
|
}
|
|
298
298
|
declare const ProjectSyncTab: React.FC<ProjectSyncTabProps>;
|
|
299
299
|
|
|
300
|
-
declare const LIB_VERSION = "1.0.
|
|
300
|
+
declare const LIB_VERSION = "1.0.8";
|
|
301
301
|
|
|
302
302
|
export { AvatarArchitectApp, type AvatarArchitectAppProps, CollapsibleCard, CompactDropdown, type ExtractedCharacter, FaToolsBadge, type FlowSdk, GLOBAL_STYLES, type Generation, HistoryPanel, InspectPanel, LIB_VERSION, ListView, type MediaItem, MediaLibrary, PillButton, type ProjectMeta, type ProjectSettings, ProjectSyncTab, PromptTab, SectionLabel, type SelectedTag, SetupPanel, type SyncDiff, type TagOption, type WorkspaceTags, buildFallbackPrompt, buildGenerationPrompt, buildImageGenerationOptions, buildPromptTabPayload, cleanAiResponse, createFlowServices, exportProjectToZip, formatTreeToMarkdown, getFormattedTimestamp, importProjectFromZip, injectXMPMetadata, interpretSdkError, parsePromptFile, parsePromptResponse, useKeyboardNavigation, useOnClickOutside };
|
package/dist/index.js
CHANGED
|
@@ -2655,7 +2655,7 @@ function AvatarArchitectApp({ onGenerateImage, onGeneratePrompt, onDownload, onS
|
|
|
2655
2655
|
}
|
|
2656
2656
|
|
|
2657
2657
|
// src/index.ts
|
|
2658
|
-
var LIB_VERSION = "1.0.
|
|
2658
|
+
var LIB_VERSION = "1.0.8";
|
|
2659
2659
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2660
2660
|
0 && (module.exports = {
|
|
2661
2661
|
AvatarArchitectApp,
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rslsp1/fa-app-tools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Shared tools and hooks for Fine Art flow apps",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
|
+
"prebuild": "node scripts/set-version.js",
|
|
19
20
|
"build": "tsup src/index.ts --format esm,cjs --dts --clean --external react --external @xyflow/react --external motion/react",
|
|
20
21
|
"prepublishOnly": "npm run build"
|
|
21
22
|
},
|