-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Issue #91: "Attr.readOnly false" fixed
- Removed diagnostic output to console - Observable.init: Provide the initial value for a sequence so that new subscribers will receive an immediate update of the current value. Probably only useful for IObservables that are not derived from an initial IStore - IReadOnlyStore.Dispose(f), IStore.Dispose(f) : Call f() when the store is disposed - Removed dependency on ConstructStyleSheetsPolyfill and included directly - Fixed some warnings in the App (not part of the nuget pkg)
- Loading branch information
1 parent
a5b1426
commit d28700e
Showing
21 changed files
with
4,487 additions
and
1,936 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
module ConstructStyleSheetsPolyfill | ||
|
||
open Fable.Core.JsInterop | ||
|
||
importSideEffects "./adoptedStyleSheets.js" | ||
|
||
let register() = () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<!--This is a temporary file used by Fable to restore dependencies. | ||
If you see this file in your project, you can delete it safely--> | ||
<PropertyGroup> | ||
<Description>Front-end framework for Fable</Description> | ||
<Authors>David Dawkins</Authors> | ||
<Version>2.0.13</Version> | ||
<PackageVersion>2.0.13</PackageVersion> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<RepositoryType>git</RepositoryType> | ||
<UsesMarkdownComments>false</UsesMarkdownComments> | ||
<DefineConstants>$(DefineConstants);FABLE_COMPILER;</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Easing.fs" /> | ||
<Compile Include="Interop.fs" /> | ||
<Compile Include="Types.fs" /> | ||
<Compile Include="Logging.fs" /> | ||
<Compile Include="Helpers.fs" /> | ||
<Compile Include="Cmd.fs" /> | ||
<Compile Include="DomHelpers.fs" /> | ||
<Compile Include="Core.fs" /> | ||
<Compile Include="ResizeObserver.fs" /> | ||
<Compile Include="Styling.fs" /> | ||
<Compile Include="CoreElements.fs" /> | ||
<Compile Include="ObservableStore.fs" /> | ||
<Compile Include="Observable.fs" /> | ||
<Compile Include="Store.fs" /> | ||
<Compile Include="Promise.fs" /> | ||
<Compile Include="Transition.fs" /> | ||
<Compile Include="TransitionFunctions.fs" /> | ||
<Compile Include="Svg.fs" /> | ||
<Compile Include="Bindings.fs" /> | ||
<Compile Include="Bind.fs" /> | ||
<Compile Include="Html.fs" /> | ||
<Compile Include="Media.fs" /> | ||
<Compile Include="Navigable.fs" /> | ||
<Compile Include="Program.fs" /> | ||
<Compile Include="WebComponent.fs" /> | ||
<Compile Include="DataSimulation.fs" /> | ||
<Compile Include="Chrome.DevTools.fs" /> | ||
<Compile Include="Bulma.fs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="FSharp.Core" Version="5.0.2" /> | ||
<PackageReference Include="ConstructStyleSheetsPolyfill" Version="1.0.0-beta-001" /> | ||
<PackageReference Include="Feliz.Engine.Bulma" Version="1.0.0-*" /> | ||
<PackageReference Include="Feliz.Engine" Version="1.0.0-beta-004" /> | ||
<PackageReference Include="Feliz.Engine.Event" Version="1.0.0-beta-004" /> | ||
<PackageReference Include="Fable.Browser.Css" Version="2.*" /> | ||
<PackageReference Include="Fable.Browser.Dom" Version="2.*" /> | ||
<PackageReference Include="Fable.Browser.Event" Version="1.*" /> | ||
<PackageReference Include="Fable.Core" Version="3.*" /> | ||
<PackageReference Include="Fable.Promise" Version="3.*" /> | ||
<PackageReference Include="Fable.Browser.MediaQueryList" Version="1.*" /> | ||
</ItemGroup> | ||
<!-- Add source files to "fable" folder in Nuget package --> | ||
<ItemGroup> | ||
<Content Include="*.fsproj; **\*.fs; webcomponentinterop.js;" PackagePath="fable" /> | ||
</ItemGroup> | ||
<Target Name="ReallyClean" AfterTargets="Clean"> | ||
<!-- Remove obj folder --> | ||
<RemoveDir Directories="$(BaseIntermediateOutputPath)" /> | ||
<!-- Remove bin folder --> | ||
<RemoveDir Directories="$(BaseOutputPath)" /> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.