This commit is contained in:
Svetlin Kozhuharov 2018-01-11 09:59:05 +02:00
Родитель 288bdac43c
Коммит 68c12d97a3
22180 изменённых файлов: 40 добавлений и 4383845 удалений

Двоичный файл не отображается.

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,15 +1,15 @@
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<TargetFramework>netcoreapp2.0</TargetFramework>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.SpaServices" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore.SpaServices" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<!-- Files not to show in IDE -->

Просмотреть файл

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ActiveDebugProfile>IIS Express</ActiveDebugProfile>
<ToolsVersionPromptShown>0.0</ToolsVersionPromptShown>
</PropertyGroup>
</Project>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,27 +0,0 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:58598/",
"sslPort": 0
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"AngularSpa": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:58600/"
}
}
}

Просмотреть файл

@ -42,7 +42,8 @@ namespace WebApplicationBasic
{
app.UseDeveloperExceptionPage();
app.UseWebpackDevMiddleware(new WebpackDevMiddlewareOptions {
HotModuleReplacement = true
HotModuleReplacement = true,
HotModuleReplacementEndpoint = "/dist/__webpack_hmr"
});
}
else

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Двоичный файл не отображается.

Двоичный файл не отображается.

Просмотреть файл

@ -1,8 +0,0 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\kozhuhar\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\kozhuhar\\.nuget\\packages"
]
}
}

Просмотреть файл

@ -1,12 +0,0 @@
{
"runtimeOptions": {
"tfm": "netcoreapp1.1",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "1.1.2"
},
"configProperties": {
"System.GC.Server": true
}
}
}

Просмотреть файл

@ -1,3 +1,3 @@
{
"sdk": { "version": "2.0.0-preview1-005977" }
"sdk": { "version": "2.0.0" }
}

15
aspnet_core_sample_application/node_modules/.bin/acorn сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../acorn/bin/acorn" "$@"
ret=$?
else
node "$basedir/../acorn/bin/acorn" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/acorn.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\acorn\bin\acorn" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\acorn\bin\acorn" %*
)

15
aspnet_core_sample_application/node_modules/.bin/ansi-html сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../ansi-html/bin/ansi-html" "$@"
ret=$?
else
node "$basedir/../ansi-html/bin/ansi-html" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/ansi-html.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\ansi-html\bin\ansi-html" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\ansi-html\bin\ansi-html" %*
)

15
aspnet_core_sample_application/node_modules/.bin/atob сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../atob/bin/atob.js" "$@"
ret=$?
else
node "$basedir/../atob/bin/atob.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/atob.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\atob\bin\atob.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\atob\bin\atob.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/browserslist сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../browserslist/cli.js" "$@"
ret=$?
else
node "$basedir/../browserslist/cli.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/browserslist.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\browserslist\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\browserslist\cli.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/cssesc сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../cssesc/bin/cssesc" "$@"
ret=$?
else
node "$basedir/../cssesc/bin/cssesc" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/cssesc.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\cssesc\bin\cssesc" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\cssesc\bin\cssesc" %*
)

15
aspnet_core_sample_application/node_modules/.bin/csso сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../csso/bin/csso" "$@"
ret=$?
else
node "$basedir/../csso/bin/csso" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/csso.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\csso\bin\csso" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\csso\bin\csso" %*
)

15
aspnet_core_sample_application/node_modules/.bin/errno сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../errno/cli.js" "$@"
ret=$?
else
node "$basedir/../errno/cli.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/errno.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\errno\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\errno\cli.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/esparse сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../esprima/bin/esparse.js" "$@"
ret=$?
else
node "$basedir/../esprima/bin/esparse.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/esparse.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\esprima\bin\esparse.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\esprima\bin\esparse.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/esvalidate сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../esprima/bin/esvalidate.js" "$@"
ret=$?
else
node "$basedir/../esprima/bin/esvalidate.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/esvalidate.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\esprima\bin\esvalidate.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\esprima\bin\esvalidate.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/he сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../he/bin/he" "$@"
ret=$?
else
node "$basedir/../he/bin/he" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/he.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\he\bin\he" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\he\bin\he" %*
)

15
aspnet_core_sample_application/node_modules/.bin/html-minifier сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../html-minifier/cli.js" "$@"
ret=$?
else
node "$basedir/../html-minifier/cli.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/html-minifier.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\html-minifier\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\html-minifier\cli.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/js-yaml сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../js-yaml/bin/js-yaml.js" "$@"
ret=$?
else
node "$basedir/../js-yaml/bin/js-yaml.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/js-yaml.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\js-yaml\bin\js-yaml.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\js-yaml\bin\js-yaml.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/jsesc сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../jsesc/bin/jsesc" "$@"
ret=$?
else
node "$basedir/../jsesc/bin/jsesc" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/jsesc.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\jsesc\bin\jsesc" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\jsesc\bin\jsesc" %*
)

15
aspnet_core_sample_application/node_modules/.bin/json5 сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../json5/lib/cli.js" "$@"
ret=$?
else
node "$basedir/../json5/lib/cli.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/json5.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\json5\lib\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\json5\lib\cli.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/miller-rabin сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../miller-rabin/bin/miller-rabin" "$@"
ret=$?
else
node "$basedir/../miller-rabin/bin/miller-rabin" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/miller-rabin.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\miller-rabin\bin\miller-rabin" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\miller-rabin\bin\miller-rabin" %*
)

15
aspnet_core_sample_application/node_modules/.bin/mime сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../mime/cli.js" "$@"
ret=$?
else
node "$basedir/../mime/cli.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/mime.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\mime\cli.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\mime\cli.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/mkdirp сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@"
ret=$?
else
node "$basedir/../mkdirp/bin/cmd.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/mkdirp.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\mkdirp\bin\cmd.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\mkdirp\bin\cmd.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/regjsparser сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../regjsparser/bin/parser" "$@"
ret=$?
else
node "$basedir/../regjsparser/bin/parser" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/regjsparser.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\regjsparser\bin\parser" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\regjsparser\bin\parser" %*
)

15
aspnet_core_sample_application/node_modules/.bin/semver сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../semver/bin/semver" "$@"
ret=$?
else
node "$basedir/../semver/bin/semver" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/semver.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\semver\bin\semver" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\semver\bin\semver" %*
)

15
aspnet_core_sample_application/node_modules/.bin/sha.js сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../sha.js/bin.js" "$@"
ret=$?
else
node "$basedir/../sha.js/bin.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/sha.js.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\sha.js\bin.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\sha.js\bin.js" %*
)

15
aspnet_core_sample_application/node_modules/.bin/svgo сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../svgo/bin/svgo" "$@"
ret=$?
else
node "$basedir/../svgo/bin/svgo" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/svgo.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\svgo\bin\svgo" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\svgo\bin\svgo" %*
)

15
aspnet_core_sample_application/node_modules/.bin/tsc сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
ret=$?
else
node "$basedir/../typescript/bin/tsc" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/tsc.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsc" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\typescript\bin\tsc" %*
)

15
aspnet_core_sample_application/node_modules/.bin/tsserver сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
ret=$?
else
node "$basedir/../typescript/bin/tsserver" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/tsserver.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\typescript\bin\tsserver" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\typescript\bin\tsserver" %*
)

15
aspnet_core_sample_application/node_modules/.bin/uglifyjs сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../uglify-js/bin/uglifyjs" "$@"
ret=$?
else
node "$basedir/../uglify-js/bin/uglifyjs" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/uglifyjs.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\uglify-js\bin\uglifyjs" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\uglify-js\bin\uglifyjs" %*
)

15
aspnet_core_sample_application/node_modules/.bin/webpack сгенерированный поставляемый
Просмотреть файл

@ -1,15 +0,0 @@
#!/bin/sh
basedir=`dirname "$0"`
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../webpack/bin/webpack.js" "$@"
ret=$?
else
node "$basedir/../webpack/bin/webpack.js" "$@"
ret=$?
fi
exit $ret

7
aspnet_core_sample_application/node_modules/.bin/webpack.cmd сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\webpack\bin\webpack.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\webpack\bin\webpack.js" %*
)

6
aspnet_core_sample_application/node_modules/@angular/animations/README.md сгенерированный поставляемый
Просмотреть файл

@ -1,6 +0,0 @@
Angular
=======
The sources for this package are in the main [Angular](https://github.com/angular/angular) repo. Please file issues and pull requests against that repo.
License: MIT

4
aspnet_core_sample_application/node_modules/@angular/animations/animations.d.ts сгенерированный поставляемый
Просмотреть файл

@ -1,4 +0,0 @@
/**
* Generated bundle index. Do not edit.
*/
export * from './public_api';

1
aspnet_core_sample_application/node_modules/@angular/animations/animations.metadata.json сгенерированный поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

6
aspnet_core_sample_application/node_modules/@angular/animations/browser.d.ts сгенерированный поставляемый
Просмотреть файл

@ -1,6 +0,0 @@
/**
* @license Angular v5.1.3
* (c) 2010-2017 Google, Inc. https://angular.io/
* License: MIT
*/
export * from './browser/browser'

1
aspnet_core_sample_application/node_modules/@angular/animations/browser.metadata.json сгенерированный поставляемый
Просмотреть файл

@ -1 +0,0 @@
{"__symbolic":"module","version":3,"metadata":{},"exports":[{"from":"./browser/browser"}],"flatModuleIndexRedirect":true}

4
aspnet_core_sample_application/node_modules/@angular/animations/browser/browser.d.ts сгенерированный поставляемый
Просмотреть файл

@ -1,4 +0,0 @@
/**
* Generated bundle index. Do not edit.
*/
export * from './public_api';

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

7
aspnet_core_sample_application/node_modules/@angular/animations/browser/package.json сгенерированный поставляемый
Просмотреть файл

@ -1,7 +0,0 @@
{
"name": "@angular/animations/browser",
"typings": "./browser.d.ts",
"main": "../bundles/animations-browser.umd.js",
"module": "../esm5/browser.js",
"es2015": "../esm2015/browser.js"
}

13
aspnet_core_sample_application/node_modules/@angular/animations/browser/public_api.d.ts сгенерированный поставляемый
Просмотреть файл

@ -1,13 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @module
* @description
* Entry point for all public APIs of this package.
*/
export * from './src/browser';

14
aspnet_core_sample_application/node_modules/@angular/animations/browser/src/browser.d.ts сгенерированный поставляемый
Просмотреть файл

@ -1,14 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @module
* @description
* Entry point for all animation APIs of the animation browser package.
*/
export { AnimationDriver } from './render/animation_driver';
export * from './private_export';

Просмотреть файл

@ -1,17 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationMetadata, AnimationOptions, ɵStyleData } from '@angular/animations';
import { AnimationDriver } from '../render/animation_driver';
import { AnimationTimelineInstruction } from './animation_timeline_instruction';
import { ElementInstructionMap } from './element_instruction_map';
export declare class Animation {
private _driver;
private _animationAst;
constructor(_driver: AnimationDriver, input: AnimationMetadata | AnimationMetadata[]);
buildTimelines(element: any, startingStyles: ɵStyleData | ɵStyleData[], destinationStyles: ɵStyleData | ɵStyleData[], options: AnimationOptions, subInstructions?: ElementInstructionMap): AnimationTimelineInstruction[];
}

Просмотреть файл

@ -1,96 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimateTimings, AnimationMetadataType, AnimationOptions, ɵStyleData } from '@angular/animations';
export interface AstVisitor {
visitTrigger(ast: TriggerAst, context: any): any;
visitState(ast: StateAst, context: any): any;
visitTransition(ast: TransitionAst, context: any): any;
visitSequence(ast: SequenceAst, context: any): any;
visitGroup(ast: GroupAst, context: any): any;
visitAnimate(ast: AnimateAst, context: any): any;
visitStyle(ast: StyleAst, context: any): any;
visitKeyframes(ast: KeyframesAst, context: any): any;
visitReference(ast: ReferenceAst, context: any): any;
visitAnimateChild(ast: AnimateChildAst, context: any): any;
visitAnimateRef(ast: AnimateRefAst, context: any): any;
visitQuery(ast: QueryAst, context: any): any;
visitStagger(ast: StaggerAst, context: any): any;
}
export interface Ast<T extends AnimationMetadataType> {
type: T;
options: AnimationOptions | null;
}
export interface TriggerAst extends Ast<AnimationMetadataType.Trigger> {
type: AnimationMetadataType.Trigger;
name: string;
states: StateAst[];
transitions: TransitionAst[];
queryCount: number;
depCount: number;
}
export interface StateAst extends Ast<AnimationMetadataType.State> {
type: AnimationMetadataType.State;
name: string;
style: StyleAst;
}
export interface TransitionAst extends Ast<AnimationMetadataType.Transition> {
matchers: ((fromState: string, toState: string) => boolean)[];
animation: Ast<AnimationMetadataType>;
queryCount: number;
depCount: number;
}
export interface SequenceAst extends Ast<AnimationMetadataType.Sequence> {
steps: Ast<AnimationMetadataType>[];
}
export interface GroupAst extends Ast<AnimationMetadataType.Group> {
steps: Ast<AnimationMetadataType>[];
}
export interface AnimateAst extends Ast<AnimationMetadataType.Animate> {
timings: TimingAst;
style: StyleAst | KeyframesAst;
}
export interface StyleAst extends Ast<AnimationMetadataType.Style> {
styles: (ɵStyleData | string)[];
easing: string | null;
offset: number | null;
containsDynamicStyles: boolean;
isEmptyStep?: boolean;
}
export interface KeyframesAst extends Ast<AnimationMetadataType.Keyframes> {
styles: StyleAst[];
}
export interface ReferenceAst extends Ast<AnimationMetadataType.Reference> {
animation: Ast<AnimationMetadataType>;
}
export interface AnimateChildAst extends Ast<AnimationMetadataType.AnimateChild> {
}
export interface AnimateRefAst extends Ast<AnimationMetadataType.AnimateRef> {
animation: ReferenceAst;
}
export interface QueryAst extends Ast<AnimationMetadataType.Query> {
selector: string;
limit: number;
optional: boolean;
includeSelf: boolean;
animation: Ast<AnimationMetadataType>;
originalSelector: string;
}
export interface StaggerAst extends Ast<AnimationMetadataType.Stagger> {
timings: AnimateTimings;
animation: Ast<AnimationMetadataType>;
}
export interface TimingAst {
duration: number;
delay: number;
easing: string | null;
dynamic?: boolean;
}
export interface DynamicTimingAst extends TimingAst {
strValue: string;
dynamic: true;
}

Просмотреть файл

@ -1,54 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationAnimateChildMetadata, AnimationAnimateMetadata, AnimationAnimateRefMetadata, AnimationGroupMetadata, AnimationKeyframesSequenceMetadata, AnimationMetadata, AnimationMetadataType, AnimationOptions, AnimationQueryMetadata, AnimationReferenceMetadata, AnimationSequenceMetadata, AnimationStaggerMetadata, AnimationStateMetadata, AnimationStyleMetadata, AnimationTransitionMetadata, AnimationTriggerMetadata } from '@angular/animations';
import { AnimationDriver } from '../render/animation_driver';
import { AnimateAst, AnimateChildAst, AnimateRefAst, Ast, GroupAst, KeyframesAst, QueryAst, ReferenceAst, SequenceAst, StaggerAst, StateAst, StyleAst, TimingAst, TransitionAst, TriggerAst } from './animation_ast';
import { AnimationDslVisitor } from './animation_dsl_visitor';
export declare function buildAnimationAst(driver: AnimationDriver, metadata: AnimationMetadata | AnimationMetadata[], errors: any[]): Ast<AnimationMetadataType>;
export declare class AnimationAstBuilderVisitor implements AnimationDslVisitor {
private _driver;
constructor(_driver: AnimationDriver);
build(metadata: AnimationMetadata | AnimationMetadata[], errors: any[]): Ast<AnimationMetadataType>;
private _resetContextStyleTimingState(context);
visitTrigger(metadata: AnimationTriggerMetadata, context: AnimationAstBuilderContext): TriggerAst;
visitState(metadata: AnimationStateMetadata, context: AnimationAstBuilderContext): StateAst;
visitTransition(metadata: AnimationTransitionMetadata, context: AnimationAstBuilderContext): TransitionAst;
visitSequence(metadata: AnimationSequenceMetadata, context: AnimationAstBuilderContext): SequenceAst;
visitGroup(metadata: AnimationGroupMetadata, context: AnimationAstBuilderContext): GroupAst;
visitAnimate(metadata: AnimationAnimateMetadata, context: AnimationAstBuilderContext): AnimateAst;
visitStyle(metadata: AnimationStyleMetadata, context: AnimationAstBuilderContext): StyleAst;
private _makeStyleAst(metadata, context);
private _validateStyleAst(ast, context);
visitKeyframes(metadata: AnimationKeyframesSequenceMetadata, context: AnimationAstBuilderContext): KeyframesAst;
visitReference(metadata: AnimationReferenceMetadata, context: AnimationAstBuilderContext): ReferenceAst;
visitAnimateChild(metadata: AnimationAnimateChildMetadata, context: AnimationAstBuilderContext): AnimateChildAst;
visitAnimateRef(metadata: AnimationAnimateRefMetadata, context: AnimationAstBuilderContext): AnimateRefAst;
visitQuery(metadata: AnimationQueryMetadata, context: AnimationAstBuilderContext): QueryAst;
visitStagger(metadata: AnimationStaggerMetadata, context: AnimationAstBuilderContext): StaggerAst;
}
export declare type StyleTimeTuple = {
startTime: number;
endTime: number;
};
export declare class AnimationAstBuilderContext {
errors: any[];
queryCount: number;
depCount: number;
currentTransition: AnimationTransitionMetadata | null;
currentQuery: AnimationQueryMetadata | null;
currentQuerySelector: string | null;
currentAnimateTimings: TimingAst | null;
currentTime: number;
collectedStyles: {
[selectorName: string]: {
[propName: string]: StyleTimeTuple;
};
};
options: AnimationOptions | null;
constructor(errors: any[]);
}

Просмотреть файл

@ -1,23 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationAnimateChildMetadata, AnimationAnimateMetadata, AnimationAnimateRefMetadata, AnimationGroupMetadata, AnimationKeyframesSequenceMetadata, AnimationQueryMetadata, AnimationReferenceMetadata, AnimationSequenceMetadata, AnimationStaggerMetadata, AnimationStateMetadata, AnimationStyleMetadata, AnimationTransitionMetadata, AnimationTriggerMetadata } from '@angular/animations';
export interface AnimationDslVisitor {
visitTrigger(node: AnimationTriggerMetadata, context: any): any;
visitState(node: AnimationStateMetadata, context: any): any;
visitTransition(node: AnimationTransitionMetadata, context: any): any;
visitSequence(node: AnimationSequenceMetadata, context: any): any;
visitGroup(node: AnimationGroupMetadata, context: any): any;
visitAnimate(node: AnimationAnimateMetadata, context: any): any;
visitStyle(node: AnimationStyleMetadata, context: any): any;
visitKeyframes(node: AnimationKeyframesSequenceMetadata, context: any): any;
visitReference(node: AnimationReferenceMetadata, context: any): any;
visitAnimateChild(node: AnimationAnimateChildMetadata, context: any): any;
visitAnimateRef(node: AnimationAnimateRefMetadata, context: any): any;
visitQuery(node: AnimationQueryMetadata, context: any): any;
visitStagger(node: AnimationStaggerMetadata, context: any): any;
}

Просмотреть файл

@ -1,101 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimateTimings, AnimationMetadataType, AnimationOptions, ɵStyleData } from '@angular/animations';
import { AnimationDriver } from '../render/animation_driver';
import { AnimateAst, AnimateChildAst, AnimateRefAst, Ast, AstVisitor, GroupAst, KeyframesAst, QueryAst, ReferenceAst, SequenceAst, StaggerAst, StateAst, StyleAst, TransitionAst, TriggerAst } from './animation_ast';
import { AnimationTimelineInstruction } from './animation_timeline_instruction';
import { ElementInstructionMap } from './element_instruction_map';
export declare function buildAnimationTimelines(driver: AnimationDriver, rootElement: any, ast: Ast<AnimationMetadataType>, enterClassName: string, leaveClassName: string, startingStyles: ɵStyleData | undefined, finalStyles: ɵStyleData | undefined, options: AnimationOptions, subInstructions?: ElementInstructionMap, errors?: any[]): AnimationTimelineInstruction[];
export declare class AnimationTimelineBuilderVisitor implements AstVisitor {
buildKeyframes(driver: AnimationDriver, rootElement: any, ast: Ast<AnimationMetadataType>, enterClassName: string, leaveClassName: string, startingStyles: ɵStyleData, finalStyles: ɵStyleData, options: AnimationOptions, subInstructions?: ElementInstructionMap, errors?: any[]): AnimationTimelineInstruction[];
visitTrigger(ast: TriggerAst, context: AnimationTimelineContext): any;
visitState(ast: StateAst, context: AnimationTimelineContext): any;
visitTransition(ast: TransitionAst, context: AnimationTimelineContext): any;
visitAnimateChild(ast: AnimateChildAst, context: AnimationTimelineContext): any;
visitAnimateRef(ast: AnimateRefAst, context: AnimationTimelineContext): any;
private _visitSubInstructions(instructions, context, options);
visitReference(ast: ReferenceAst, context: AnimationTimelineContext): void;
visitSequence(ast: SequenceAst, context: AnimationTimelineContext): void;
visitGroup(ast: GroupAst, context: AnimationTimelineContext): void;
private _visitTiming(ast, context);
visitAnimate(ast: AnimateAst, context: AnimationTimelineContext): void;
visitStyle(ast: StyleAst, context: AnimationTimelineContext): void;
visitKeyframes(ast: KeyframesAst, context: AnimationTimelineContext): void;
visitQuery(ast: QueryAst, context: AnimationTimelineContext): void;
visitStagger(ast: StaggerAst, context: AnimationTimelineContext): void;
}
export declare type StyleAtTime = {
time: number;
value: string | number;
};
export declare class AnimationTimelineContext {
private _driver;
element: any;
subInstructions: ElementInstructionMap;
private _enterClassName;
private _leaveClassName;
errors: any[];
timelines: TimelineBuilder[];
parentContext: AnimationTimelineContext | null;
currentTimeline: TimelineBuilder;
currentAnimateTimings: AnimateTimings | null;
previousNode: Ast<AnimationMetadataType>;
subContextCount: number;
options: AnimationOptions;
currentQueryIndex: number;
currentQueryTotal: number;
currentStaggerTime: number;
constructor(_driver: AnimationDriver, element: any, subInstructions: ElementInstructionMap, _enterClassName: string, _leaveClassName: string, errors: any[], timelines: TimelineBuilder[], initialTimeline?: TimelineBuilder);
readonly params: {
[name: string]: any;
} | undefined;
updateOptions(options: AnimationOptions | null, skipIfExists?: boolean): void;
private _copyOptions();
createSubContext(options?: AnimationOptions | null, element?: any, newTime?: number): AnimationTimelineContext;
transformIntoNewTimeline(newTime?: number): TimelineBuilder;
appendInstructionToTimeline(instruction: AnimationTimelineInstruction, duration: number | null, delay: number | null): AnimateTimings;
incrementTime(time: number): void;
delayNextStep(delay: number): void;
invokeQuery(selector: string, originalSelector: string, limit: number, includeSelf: boolean, optional: boolean, errors: any[]): any[];
}
export declare class TimelineBuilder {
private _driver;
element: any;
startTime: number;
private _elementTimelineStylesLookup;
duration: number;
easing: string | null;
private _previousKeyframe;
private _currentKeyframe;
private _keyframes;
private _styleSummary;
private _localTimelineStyles;
private _globalTimelineStyles;
private _pendingStyles;
private _backFill;
private _currentEmptyStepKeyframe;
constructor(_driver: AnimationDriver, element: any, startTime: number, _elementTimelineStylesLookup?: Map<any, ɵStyleData> | undefined);
containsAnimation(): boolean;
getCurrentStyleProperties(): string[];
readonly currentTime: number;
delayNextStep(delay: number): void;
fork(element: any, currentTime?: number): TimelineBuilder;
private _loadKeyframe();
forwardFrame(): void;
forwardTime(time: number): void;
private _updateStyle(prop, value);
allowOnlyTimelineStyles(): boolean;
applyEmptyStep(easing: string | null): void;
setStyles(input: (ɵStyleData | string)[], easing: string | null, errors: any[], options?: AnimationOptions): void;
applyStylesToKeyframe(): void;
snapshotCurrentStyles(): void;
getFinalKeyframe(): ɵStyleData | undefined;
readonly properties: string[];
mergeTimelineCollectedStyles(timeline: TimelineBuilder): void;
buildKeyframes(): AnimationTimelineInstruction;
}

Просмотреть файл

@ -1,22 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { ɵStyleData } from '@angular/animations';
import { AnimationEngineInstruction } from '../render/animation_engine_instruction';
export interface AnimationTimelineInstruction extends AnimationEngineInstruction {
element: any;
keyframes: ɵStyleData[];
preStyleProps: string[];
postStyleProps: string[];
duration: number;
delay: number;
totalTime: number;
easing: string | null;
stretchStartingKeyframe?: boolean;
subTimeline: boolean;
}
export declare function createTimelineInstruction(element: any, keyframes: ɵStyleData[], preStyleProps: string[], postStyleProps: string[], duration: number, delay: number, easing?: string | null, subTimeline?: boolean): AnimationTimelineInstruction;

Просмотреть файл

@ -1,10 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
export declare const ANY_STATE = "*";
export declare type TransitionMatcherFn = (fromState: any, toState: any) => boolean;
export declare function parseTransitionExpr(transitionValue: string | TransitionMatcherFn, errors: string[]): TransitionMatcherFn[];

Просмотреть файл

@ -1,35 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationOptions, ɵStyleData } from '@angular/animations';
import { AnimationDriver } from '../render/animation_driver';
import { StyleAst, TransitionAst } from './animation_ast';
import { AnimationTransitionInstruction } from './animation_transition_instruction';
import { ElementInstructionMap } from './element_instruction_map';
export declare class AnimationTransitionFactory {
private _triggerName;
ast: TransitionAst;
private _stateStyles;
constructor(_triggerName: string, ast: TransitionAst, _stateStyles: {
[stateName: string]: AnimationStateStyles;
});
match(currentState: any, nextState: any): boolean;
buildStyles(stateName: string, params: {
[key: string]: any;
}, errors: any[]): ɵStyleData;
build(driver: AnimationDriver, element: any, currentState: any, nextState: any, enterClassName: string, leaveClassName: string, currentOptions?: AnimationOptions, nextOptions?: AnimationOptions, subInstructions?: ElementInstructionMap): AnimationTransitionInstruction;
}
export declare class AnimationStateStyles {
private styles;
private defaultParams;
constructor(styles: StyleAst, defaultParams: {
[key: string]: any;
});
buildStyles(params: {
[key: string]: any;
}, errors: string[]): ɵStyleData;
}

Просмотреть файл

@ -1,33 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { ɵStyleData } from '@angular/animations';
import { AnimationEngineInstruction } from '../render/animation_engine_instruction';
import { AnimationTimelineInstruction } from './animation_timeline_instruction';
export interface AnimationTransitionInstruction extends AnimationEngineInstruction {
element: any;
triggerName: string;
isRemovalTransition: boolean;
fromState: string;
fromStyles: ɵStyleData;
toState: string;
toStyles: ɵStyleData;
timelines: AnimationTimelineInstruction[];
queriedElements: any[];
preStyleProps: Map<any, {
[prop: string]: boolean;
}>;
postStyleProps: Map<any, {
[prop: string]: boolean;
}>;
errors?: any[];
}
export declare function createTransitionInstruction(element: any, triggerName: string, fromState: string, toState: string, isRemovalTransition: boolean, fromStyles: ɵStyleData, toStyles: ɵStyleData, timelines: AnimationTimelineInstruction[], queriedElements: any[], preStyleProps: Map<any, {
[prop: string]: boolean;
}>, postStyleProps: Map<any, {
[prop: string]: boolean;
}>, errors?: any[]): AnimationTransitionInstruction;

Просмотреть файл

@ -1,32 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { ɵStyleData } from '@angular/animations';
import { TriggerAst } from './animation_ast';
import { AnimationStateStyles, AnimationTransitionFactory } from './animation_transition_factory';
/**
* @experimental Animation support is experimental.
*/
export declare function buildTrigger(name: string, ast: TriggerAst): AnimationTrigger;
/**
* @experimental Animation support is experimental.
*/
export declare class AnimationTrigger {
name: string;
ast: TriggerAst;
transitionFactories: AnimationTransitionFactory[];
fallbackTransition: AnimationTransitionFactory;
states: {
[stateName: string]: AnimationStateStyles;
};
constructor(name: string, ast: TriggerAst);
readonly containsQueries: boolean;
matchTransition(currentState: any, nextState: any): AnimationTransitionFactory | null;
matchStyles(currentState: any, params: {
[key: string]: any;
}, errors: any[]): ɵStyleData;
}

Просмотреть файл

@ -1,15 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationTimelineInstruction } from './animation_timeline_instruction';
export declare class ElementInstructionMap {
private _map;
consume(element: any): AnimationTimelineInstruction[];
append(element: any, instructions: AnimationTimelineInstruction[]): void;
has(element: any): boolean;
clear(): void;
}

Просмотреть файл

@ -1,21 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* @experimental Animation support is experimental.
*/
export declare abstract class AnimationStyleNormalizer {
abstract normalizePropertyName(propertyName: string, errors: string[]): string;
abstract normalizeStyleValue(userProvidedProperty: string, normalizedProperty: string, value: string | number, errors: string[]): string;
}
/**
* @experimental Animation support is experimental.
*/
export declare class NoopAnimationStyleNormalizer {
normalizePropertyName(propertyName: string, errors: string[]): string;
normalizeStyleValue(userProvidedProperty: string, normalizedProperty: string, value: string | number, errors: string[]): string;
}

Просмотреть файл

@ -1,5 +0,0 @@
import { AnimationStyleNormalizer } from './animation_style_normalizer';
export declare class WebAnimationsStyleNormalizer extends AnimationStyleNormalizer {
normalizePropertyName(propertyName: string, errors: string[]): string;
normalizeStyleValue(userProvidedProperty: string, normalizedProperty: string, value: string | number, errors: string[]): string;
}

Просмотреть файл

@ -1,14 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
export { Animation as ɵAnimation } from './dsl/animation';
export { AnimationStyleNormalizer as ɵAnimationStyleNormalizer, NoopAnimationStyleNormalizer as ɵNoopAnimationStyleNormalizer } from './dsl/style_normalization/animation_style_normalizer';
export { WebAnimationsStyleNormalizer as ɵWebAnimationsStyleNormalizer } from './dsl/style_normalization/web_animations_style_normalizer';
export { NoopAnimationDriver as ɵNoopAnimationDriver } from './render/animation_driver';
export { AnimationEngine as ɵAnimationEngine } from './render/animation_engine_next';
export { WebAnimationsDriver as ɵWebAnimationsDriver, supportsWebAnimations as ɵsupportsWebAnimations } from './render/web_animations/web_animations_driver';
export { WebAnimationsPlayer as ɵWebAnimationsPlayer } from './render/web_animations/web_animations_player';

Просмотреть файл

@ -1,35 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationPlayer } from '@angular/animations';
/**
* @experimental
*/
export declare class NoopAnimationDriver implements AnimationDriver {
validateStyleProperty(prop: string): boolean;
matchesElement(element: any, selector: string): boolean;
containsElement(elm1: any, elm2: any): boolean;
query(element: any, selector: string, multi: boolean): any[];
computeStyle(element: any, prop: string, defaultValue?: string): string;
animate(element: any, keyframes: {
[key: string]: string | number;
}[], duration: number, delay: number, easing: string, previousPlayers?: any[]): AnimationPlayer;
}
/**
* @experimental
*/
export declare abstract class AnimationDriver {
static NOOP: AnimationDriver;
abstract validateStyleProperty(prop: string): boolean;
abstract matchesElement(element: any, selector: string): boolean;
abstract containsElement(elm1: any, elm2: any): boolean;
abstract query(element: any, selector: string, multi: boolean): any[];
abstract computeStyle(element: any, prop: string, defaultValue?: string): string;
abstract animate(element: any, keyframes: {
[key: string]: string | number;
}[], duration: number, delay: number, easing?: string | null, previousPlayers?: any[]): any;
}

Просмотреть файл

@ -1,14 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
export declare const enum AnimationTransitionInstructionType {
TransitionAnimation = 0,
TimelineAnimation = 1,
}
export interface AnimationEngineInstruction {
type: AnimationTransitionInstructionType;
}

Просмотреть файл

@ -1,29 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationPlayer, AnimationTriggerMetadata } from '@angular/animations';
import { AnimationStyleNormalizer } from '../dsl/style_normalization/animation_style_normalizer';
import { AnimationDriver } from './animation_driver';
export declare class AnimationEngine {
private _driver;
private _transitionEngine;
private _timelineEngine;
private _triggerCache;
onRemovalComplete: (element: any, context: any) => void;
constructor(_driver: AnimationDriver, normalizer: AnimationStyleNormalizer);
registerTrigger(componentId: string, namespaceId: string, hostElement: any, name: string, metadata: AnimationTriggerMetadata): void;
register(namespaceId: string, hostElement: any): void;
destroy(namespaceId: string, context: any): void;
onInsert(namespaceId: string, element: any, parent: any, insertBefore: boolean): void;
onRemove(namespaceId: string, element: any, context: any): void;
disableAnimations(element: any, disable: boolean): void;
process(namespaceId: string, element: any, property: string, value: any): void;
listen(namespaceId: string, element: any, eventName: string, eventPhase: string, callback: (event: any) => any): () => any;
flush(microtaskId?: number): void;
readonly players: AnimationPlayer[];
whenRenderingDone(): Promise<any>;
}

Просмотреть файл

@ -1,24 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationEvent, AnimationPlayer, ɵStyleData } from '@angular/animations';
import { AnimationStyleNormalizer } from '../../src/dsl/style_normalization/animation_style_normalizer';
import { AnimationDriver } from '../../src/render/animation_driver';
export declare function optimizeGroupPlayer(players: AnimationPlayer[]): AnimationPlayer;
export declare function normalizeKeyframes(driver: AnimationDriver, normalizer: AnimationStyleNormalizer, element: any, keyframes: ɵStyleData[], preStyles?: ɵStyleData, postStyles?: ɵStyleData): ɵStyleData[];
export declare function listenOnPlayer(player: AnimationPlayer, eventName: string, event: AnimationEvent | undefined, callback: (event: any) => any): void;
export declare function copyAnimationEvent(e: AnimationEvent, phaseName?: string, totalTime?: number): AnimationEvent;
export declare function makeAnimationEvent(element: any, triggerName: string, fromState: string, toState: string, phaseName?: string, totalTime?: number): AnimationEvent;
export declare function getOrSetAsInMap(map: Map<any, any> | {
[key: string]: any;
}, key: any, defaultValue: any): any;
export declare function parseTimelineCommand(command: string): [string, string];
export declare function validateStyleProperty(prop: string): boolean;
export declare function getBodyNode(): any | null;
export declare const matchesElement: (element: any, selector: string) => boolean;
export declare const containsElement: (elm1: any, elm2: any) => boolean;
export declare const invokeQuery: (element: any, selector: string, multi: boolean) => any[];

Просмотреть файл

@ -1,25 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationMetadata, AnimationOptions, AnimationPlayer } from '@angular/animations';
import { AnimationStyleNormalizer } from '../dsl/style_normalization/animation_style_normalizer';
import { AnimationDriver } from './animation_driver';
export declare class TimelineAnimationEngine {
private _driver;
private _normalizer;
private _animations;
private _playersById;
players: AnimationPlayer[];
constructor(_driver: AnimationDriver, _normalizer: AnimationStyleNormalizer);
register(id: string, metadata: AnimationMetadata | AnimationMetadata[]): void;
private _buildPlayer(i, preStyles, postStyles?);
create(id: string, element: any, options?: AnimationOptions): AnimationPlayer;
destroy(id: string): void;
private _getPlayer(id);
listen(id: string, element: string, eventName: string, callback: (event: any) => any): () => void;
command(id: string, element: any, command: string, args: any[]): void;
}

Просмотреть файл

@ -1,157 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationOptions, AnimationPlayer } from '@angular/animations';
import { AnimationTransitionFactory } from '../dsl/animation_transition_factory';
import { AnimationTransitionInstruction } from '../dsl/animation_transition_instruction';
import { AnimationTrigger } from '../dsl/animation_trigger';
import { AnimationStyleNormalizer } from '../dsl/style_normalization/animation_style_normalizer';
import { AnimationDriver } from './animation_driver';
export interface QueueInstruction {
element: any;
triggerName: string;
fromState: StateValue;
toState: StateValue;
transition: AnimationTransitionFactory;
player: TransitionAnimationPlayer;
isFallbackTransition: boolean;
}
export declare const REMOVAL_FLAG = "__ng_removed";
export interface ElementAnimationState {
setForRemoval: any;
hasAnimation: boolean;
namespaceId: string;
removedBeforeQueried: boolean;
}
export declare class StateValue {
namespaceId: string;
value: string;
options: AnimationOptions;
readonly params: {
[key: string]: any;
};
constructor(input: any, namespaceId?: string);
absorbOptions(options: AnimationOptions): void;
}
export declare const VOID_VALUE = "void";
export declare const DEFAULT_STATE_VALUE: StateValue;
export declare const DELETED_STATE_VALUE: StateValue;
export declare class AnimationTransitionNamespace {
id: string;
hostElement: any;
private _engine;
players: TransitionAnimationPlayer[];
private _triggers;
private _queue;
private _elementListeners;
private _hostClassName;
constructor(id: string, hostElement: any, _engine: TransitionAnimationEngine);
listen(element: any, name: string, phase: string, callback: (event: any) => boolean): () => any;
register(name: string, ast: AnimationTrigger): boolean;
private _getTrigger(name);
trigger(element: any, triggerName: string, value: any, defaultToFallback?: boolean): TransitionAnimationPlayer | undefined;
deregister(name: string): void;
clearElementCache(element: any): void;
private _signalRemovalForInnerTriggers(rootElement, context, animate?);
triggerLeaveAnimation(element: any, context: any, destroyAfterComplete?: boolean, defaultToFallback?: boolean): boolean;
prepareLeaveAnimationListeners(element: any): void;
removeNode(element: any, context: any): void;
insertNode(element: any, parent: any): void;
drainQueuedTransitions(microtaskId: number): QueueInstruction[];
destroy(context: any): void;
elementContainsData(element: any): boolean;
}
export interface QueuedTransition {
element: any;
instruction: AnimationTransitionInstruction;
player: TransitionAnimationPlayer;
}
export declare class TransitionAnimationEngine {
driver: AnimationDriver;
private _normalizer;
players: TransitionAnimationPlayer[];
newHostElements: Map<any, AnimationTransitionNamespace>;
playersByElement: Map<any, TransitionAnimationPlayer[]>;
playersByQueriedElement: Map<any, TransitionAnimationPlayer[]>;
statesByElement: Map<any, {
[triggerName: string]: StateValue;
}>;
disabledNodes: Set<any>;
totalAnimations: number;
totalQueuedPlayers: number;
private _namespaceLookup;
private _namespaceList;
private _flushFns;
private _whenQuietFns;
namespacesByHostElement: Map<any, AnimationTransitionNamespace>;
collectedEnterElements: any[];
collectedLeaveElements: any[];
onRemovalComplete: (element: any, context: any) => void;
constructor(driver: AnimationDriver, _normalizer: AnimationStyleNormalizer);
readonly queuedPlayers: TransitionAnimationPlayer[];
createNamespace(namespaceId: string, hostElement: any): AnimationTransitionNamespace;
private _balanceNamespaceList(ns, hostElement);
register(namespaceId: string, hostElement: any): AnimationTransitionNamespace;
registerTrigger(namespaceId: string, name: string, trigger: AnimationTrigger): void;
destroy(namespaceId: string, context: any): void;
private _fetchNamespace(id);
fetchNamespacesByElement(element: any): Set<AnimationTransitionNamespace>;
trigger(namespaceId: string, element: any, name: string, value: any): boolean;
insertNode(namespaceId: string, element: any, parent: any, insertBefore: boolean): void;
collectEnterElement(element: any): void;
markElementAsDisabled(element: any, value: boolean): void;
removeNode(namespaceId: string, element: any, context: any): void;
markElementAsRemoved(namespaceId: string, element: any, hasAnimation?: boolean, context?: any): void;
listen(namespaceId: string, element: any, name: string, phase: string, callback: (event: any) => boolean): () => any;
private _buildInstruction(entry, subTimelines, enterClassName, leaveClassName);
destroyInnerAnimations(containerElement: any): void;
destroyActiveAnimationsForElement(element: any): void;
finishActiveQueriedAnimationOnElement(element: any): void;
whenRenderingDone(): Promise<any>;
processLeaveNode(element: any): void;
flush(microtaskId?: number): void;
reportError(errors: string[]): void;
private _flushAnimations(cleanupFns, microtaskId);
elementContainsData(namespaceId: string, element: any): boolean;
afterFlush(callback: () => any): void;
afterFlushAnimationsDone(callback: () => any): void;
private _getPreviousPlayers(element, isQueriedElement, namespaceId?, triggerName?, toStateValue?);
private _beforeAnimationBuild(namespaceId, instruction, allPreviousPlayersMap);
private _buildAnimation(namespaceId, instruction, allPreviousPlayersMap, skippedPlayersMap, preStylesMap, postStylesMap);
private _buildPlayer(instruction, keyframes, previousPlayers);
}
export declare class TransitionAnimationPlayer implements AnimationPlayer {
namespaceId: string;
triggerName: string;
element: any;
private _player;
private _containsRealPlayer;
private _queuedCallbacks;
readonly destroyed: boolean;
parentPlayer: AnimationPlayer;
markedForDestroy: boolean;
constructor(namespaceId: string, triggerName: string, element: any);
readonly queued: boolean;
setRealPlayer(player: AnimationPlayer): void;
getRealPlayer(): AnimationPlayer;
syncPlayerEvents(player: AnimationPlayer): void;
private _queueEvent(name, callback);
onDone(fn: () => void): void;
onStart(fn: () => void): void;
onDestroy(fn: () => void): void;
init(): void;
hasStarted(): boolean;
play(): void;
pause(): void;
restart(): void;
finish(): void;
destroy(): void;
reset(): void;
setPosition(p: any): void;
getPosition(): number;
readonly totalTime: number;
}

Просмотреть файл

@ -1,26 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* DOMAnimation represents the Animation Web API.
*
* It is an external API by the browser, and must thus use "declare interface",
* to prevent renaming by Closure Compiler.
*
* @see https://developer.mozilla.org/de/docs/Web/API/Animation
*/
export interface DOMAnimation {
cancel(): void;
play(): void;
pause(): void;
finish(): void;
onfinish: Function;
position: number;
currentTime: number;
addEventListener(eventName: string, handler: (event: any) => any): any;
dispatchEvent(eventName: string): any;
}

Просмотреть файл

@ -1,19 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationPlayer, ɵStyleData } from '@angular/animations';
import { AnimationDriver } from '../animation_driver';
import { WebAnimationsPlayer } from './web_animations_player';
export declare class WebAnimationsDriver implements AnimationDriver {
validateStyleProperty(prop: string): boolean;
matchesElement(element: any, selector: string): boolean;
containsElement(elm1: any, elm2: any): boolean;
query(element: any, selector: string, multi: boolean): any[];
computeStyle(element: any, prop: string, defaultValue?: string): string;
animate(element: any, keyframes: ɵStyleData[], duration: number, delay: number, easing: string, previousPlayers?: AnimationPlayer[]): WebAnimationsPlayer;
}
export declare function supportsWebAnimations(): boolean;

Просмотреть файл

@ -1,62 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimationPlayer } from '@angular/animations';
import { DOMAnimation } from './dom_animation';
export declare class WebAnimationsPlayer implements AnimationPlayer {
element: any;
keyframes: {
[key: string]: string | number;
}[];
options: {
[key: string]: string | number;
};
private previousPlayers;
private _onDoneFns;
private _onStartFns;
private _onDestroyFns;
private _duration;
private _delay;
private _initialized;
private _finished;
private _started;
private _destroyed;
private _finalKeyframe;
readonly domPlayer: DOMAnimation;
time: number;
parentPlayer: AnimationPlayer | null;
previousStyles: {
[styleName: string]: string | number;
};
currentSnapshot: {
[styleName: string]: string | number;
};
constructor(element: any, keyframes: {
[key: string]: string | number;
}[], options: {
[key: string]: string | number;
}, previousPlayers?: WebAnimationsPlayer[]);
private _onFinish();
init(): void;
private _buildPlayer();
private _preparePlayerBeforeStart();
onStart(fn: () => void): void;
onDone(fn: () => void): void;
onDestroy(fn: () => void): void;
play(): void;
pause(): void;
finish(): void;
reset(): void;
private _resetDomPlayerState();
restart(): void;
hasStarted(): boolean;
destroy(): void;
setPosition(p: number): void;
getPosition(): number;
readonly totalTime: number;
beforeDestroy(): void;
}

46
aspnet_core_sample_application/node_modules/@angular/animations/browser/src/util.d.ts сгенерированный поставляемый
Просмотреть файл

@ -1,46 +0,0 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { AnimateTimings, AnimationMetadata, AnimationMetadataType, AnimationOptions, ɵStyleData } from '@angular/animations';
import { Ast as AnimationAst, AstVisitor as AnimationAstVisitor } from './dsl/animation_ast';
import { AnimationDslVisitor } from './dsl/animation_dsl_visitor';
export declare const ONE_SECOND = 1000;
export declare const SUBSTITUTION_EXPR_START = "{{";
export declare const SUBSTITUTION_EXPR_END = "}}";
export declare const ENTER_CLASSNAME = "ng-enter";
export declare const LEAVE_CLASSNAME = "ng-leave";
export declare const ENTER_SELECTOR = ".ng-enter";
export declare const LEAVE_SELECTOR = ".ng-leave";
export declare const NG_TRIGGER_CLASSNAME = "ng-trigger";
export declare const NG_TRIGGER_SELECTOR = ".ng-trigger";
export declare const NG_ANIMATING_CLASSNAME = "ng-animating";
export declare const NG_ANIMATING_SELECTOR = ".ng-animating";
export declare function resolveTimingValue(value: string | number): number;
export declare function resolveTiming(timings: string | number | AnimateTimings, errors: any[], allowNegativeValues?: boolean): AnimateTimings;
export declare function copyObj(obj: {
[key: string]: any;
}, destination?: {
[key: string]: any;
}): {
[key: string]: any;
};
export declare function normalizeStyles(styles: ɵStyleData | ɵStyleData[]): ɵStyleData;
export declare function copyStyles(styles: ɵStyleData, readPrototype: boolean, destination?: ɵStyleData): ɵStyleData;
export declare function setStyles(element: any, styles: ɵStyleData): void;
export declare function eraseStyles(element: any, styles: ɵStyleData): void;
export declare function normalizeAnimationEntry(steps: AnimationMetadata | AnimationMetadata[]): AnimationMetadata;
export declare function validateStyleParams(value: string | number, options: AnimationOptions, errors: any[]): void;
export declare function extractStyleParams(value: string | number): string[];
export declare function interpolateParams(value: string | number, params: {
[name: string]: any;
}, errors: any[]): string | number;
export declare function iteratorToArray(iterator: any): any[];
export declare function mergeAnimationOptions(source: AnimationOptions, destination: AnimationOptions): AnimationOptions;
export declare function dashCaseToCamelCase(input: string): string;
export declare function allowPreviousPlayerStylesMerge(duration: number, delay: number): boolean;
export declare function visitDslNode(visitor: AnimationDslVisitor, node: AnimationMetadata, context: any): any;
export declare function visitDslNode(visitor: AnimationAstVisitor, node: AnimationAst<AnimationMetadataType>, context: any): any;

6
aspnet_core_sample_application/node_modules/@angular/animations/browser/testing.d.ts сгенерированный поставляемый
Просмотреть файл

@ -1,6 +0,0 @@
/**
* @license Angular v5.1.3
* (c) 2010-2017 Google, Inc. https://angular.io/
* License: MIT
*/
export * from './testing/testing'

Просмотреть файл

@ -1 +0,0 @@
{"__symbolic":"module","version":3,"metadata":{},"exports":[{"from":"./testing/testing"}],"flatModuleIndexRedirect":true}

Просмотреть файл

@ -1,7 +0,0 @@
{
"name": "@angular/animations/browser/testing",
"typings": "./testing.d.ts",
"main": "../../bundles/platform-browser-animations-testing.umd.js",
"module": "../../esm5/animations/testing.js",
"es2015": "../../esm2015/animations/testing.js"
}

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше