Skip to content

Commit

Permalink
alpha003
Browse files Browse the repository at this point in the history
  • Loading branch information
skttl committed Oct 12, 2024
1 parent b735c84 commit db54bb7
Show file tree
Hide file tree
Showing 29 changed files with 779 additions and 819 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../umbraco-package-schema.json",
"name": "Our.Umbraco.FullTextSearch",
"version": "5.0.0-alpha002",
"version": "5.0.0",
"extensions": [
{
"type": "entryPoint",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@ export class ReindexNodeAction extends UmbEntityActionBase<never> {
});
}


async execute() {
this.#modalManagerContext?.open(this, REINDEX_NODE_MODAL_TOKEN, {

const modal = this.#modalManagerContext?.open(this, REINDEX_NODE_MODAL_TOKEN, {
data: {
unique: this.args.unique
}
});

await modal?.onSubmit();
}

};
Expand Down
5 changes: 0 additions & 5 deletions src/Our.Umbraco.FullTextSearch.Client/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ export default defineConfig({
sourcemap: true,
rollupOptions: {
external: [/^@umbraco/], // ignore the Umbraco Backoffice package in the build
output: {
manualChunks: undefined,
inlineDynamicImports: true,
chunkFileNames: `[name]-[hash].js`,
}
},
},
mode: 'production'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class CacheTableSchema
public string Culture { get; set; }

[Column("Text")]
[SpecialDbType(SpecialDbTypes.NTEXT)]
[SpecialDbType(SpecialDbTypes.NVARCHARMAX)]
public string Text { get; set; }

[Column("LastUpdated")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.7.0" />
<PackageReference Include="Umbraco.Cms.Api.Management" Version="14.0.0" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="14.0.0" />
<PackageReference Include="Umbraco.Cms.Persistence.Sqlite" Version="14.0.0" />
Expand All @@ -29,5 +28,6 @@
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\docs\search.png" Pack="true" PackagePath="\" />
<None Include="buildTransitive\**" Pack="true" PackagePath="buildTransitive" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PropertyGroup>
<UmbracoJsonSchemaFiles Include="$(MSBuildThisFileDirectory)..\appsettings-schema.umbraco-fulltextsearch.json" Weight="-49" />
</ItemGroup>
</PropertyGroup>
</Project>
Loading

0 comments on commit db54bb7

Please sign in to comment.