diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..1ff0c42
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,63 @@
+###############################################################################
+# Set default behavior to automatically normalize line endings.
+###############################################################################
+* text=auto
+
+###############################################################################
+# Set default behavior for command prompt diff.
+#
+# This is need for earlier builds of msysgit that does not have it on by
+# default for csharp files.
+# Note: This is only used by command line
+###############################################################################
+#*.cs diff=csharp
+
+###############################################################################
+# Set the merge driver for project and solution files
+#
+# Merging from the command prompt will add diff markers to the files if there
+# are conflicts (Merging from VS is not affected by the settings below, in VS
+# the diff markers are never inserted). Diff markers may cause the following
+# file extensions to fail to load in VS. An alternative would be to treat
+# these files as binary and thus will always conflict and require user
+# intervention with every merge. To do so, just uncomment the entries below
+###############################################################################
+#*.sln merge=binary
+#*.csproj merge=binary
+#*.vbproj merge=binary
+#*.vcxproj merge=binary
+#*.vcproj merge=binary
+#*.dbproj merge=binary
+#*.fsproj merge=binary
+#*.lsproj merge=binary
+#*.wixproj merge=binary
+#*.modelproj merge=binary
+#*.sqlproj merge=binary
+#*.wwaproj merge=binary
+
+###############################################################################
+# behavior for image files
+#
+# image files are treated as binary by default.
+###############################################################################
+#*.jpg binary
+#*.png binary
+#*.gif binary
+
+###############################################################################
+# diff behavior for common document formats
+#
+# Convert binary document formats to text before diffing them. This feature
+# is only available from the command line. Turn it on by uncommenting the
+# entries below.
+###############################################################################
+#*.doc diff=astextplain
+#*.DOC diff=astextplain
+#*.docx diff=astextplain
+#*.DOCX diff=astextplain
+#*.dot diff=astextplain
+#*.DOT diff=astextplain
+#*.pdf diff=astextplain
+#*.PDF diff=astextplain
+#*.rtf diff=astextplain
+#*.RTF diff=astextplain
diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml
new file mode 100644
index 0000000..5a1ba14
--- /dev/null
+++ b/.github/workflows/dotnet-desktop.yml
@@ -0,0 +1,53 @@
+name: .NET Core Desktop
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+
+ build:
+
+ strategy:
+ matrix:
+ configuration: [Debug, Release]
+
+ runs-on: windows-latest
+
+ env:
+ Solution_Name: src\framework\kaspirin.sln
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+
+ # Install the .NET Core workload
+ - name: Install .NET Core
+ uses: actions/setup-dotnet@v4
+ with:
+ dotnet-version: 8.0.x
+
+ # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
+ - name: Setup MSBuild.exe
+ uses: microsoft/setup-msbuild@v2
+
+ # Execute all unit tests in the solution
+ - name: Execute unit tests
+ run: dotnet test --logger trx --results-directory "TestResults-trx"
+
+ - name: Upload dotnet test results
+ uses: actions/upload-artifact@v3
+ with:
+ name: dotnet-results-trx
+ path: TestResults-trx
+ if: ${{ always() }}
+
+ # Restore the application to populate the obj folder with RuntimeIdentifiers
+ - name: Restore the application
+ run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
+ env:
+ Configuration: ${{ matrix.configuration }}
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8e403db
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,366 @@
+## Ignore Visual Studio temporary files, build results, and
+## files generated by popular Visual Studio add-ons.
+##
+## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
+
+# Kaspirin Output
+src/framework/_*/
+
+# User-specific files
+*.rsuser
+*.suo
+*.user
+*.userosscache
+*.sln.docstates
+
+# User-specific files (MonoDevelop/Xamarin Studio)
+*.userprefs
+
+# Mono auto generated files
+mono_crash.*
+
+# Build results
+[Dd]ebug/
+[Dd]ebugPublic/
+[Rr]elease/
+[Rr]eleases/
+x64/
+x86/
+[Ww][Ii][Nn]32/
+[Aa][Rr][Mm]/
+[Aa][Rr][Mm]64/
+bld/
+[Bb]in/
+[Oo]bj/
+[Oo]ut/
+[Ll]og/
+[Ll]ogs/
+
+# Visual Studio 2015/2017 cache/options directory
+.vs/
+# Uncomment if you have tasks that create the project's static files in wwwroot
+#wwwroot/
+
+# Visual Studio 2017 auto generated files
+Generated\ Files/
+
+# MSTest test Results
+[Tt]est[Rr]esult*/
+[Bb]uild[Ll]og.*
+
+# NUnit
+*.VisualState.xml
+TestResult.xml
+nunit-*.xml
+
+# Build Results of an ATL Project
+[Dd]ebugPS/
+[Rr]eleasePS/
+dlldata.c
+
+# Benchmark Results
+BenchmarkDotNet.Artifacts/
+
+# .NET Core
+project.lock.json
+project.fragment.lock.json
+artifacts/
+
+# ASP.NET Scaffolding
+ScaffoldingReadMe.txt
+
+# StyleCop
+StyleCopReport.xml
+
+# Files built by Visual Studio
+*_i.c
+*_p.c
+*_h.h
+*.ilk
+*.meta
+*.obj
+*.iobj
+*.pch
+*.pdb
+*.ipdb
+*.pgc
+*.pgd
+*.rsp
+*.sbr
+*.tlb
+*.tli
+*.tlh
+*.tmp
+*.tmp_proj
+*_wpftmp.csproj
+*.log
+*.vspscc
+*.vssscc
+.builds
+*.pidb
+*.svclog
+*.scc
+
+# Chutzpah Test files
+_Chutzpah*
+
+# Visual C++ cache files
+ipch/
+*.aps
+*.ncb
+*.opendb
+*.opensdf
+*.sdf
+*.cachefile
+*.VC.db
+*.VC.VC.opendb
+
+# Visual Studio profiler
+*.psess
+*.vsp
+*.vspx
+*.sap
+
+# Visual Studio Trace Files
+*.e2e
+
+# TFS 2012 Local Workspace
+$tf/
+
+# Guidance Automation Toolkit
+*.gpState
+
+# ReSharper is a .NET coding add-in
+_ReSharper*/
+*.[Rr]e[Ss]harper
+*.DotSettings.user
+
+# TeamCity is a build add-in
+_TeamCity*
+
+# DotCover is a Code Coverage Tool
+*.dotCover
+
+# AxoCover is a Code Coverage Tool
+.axoCover/*
+!.axoCover/settings.json
+
+# Coverlet is a free, cross platform Code Coverage Tool
+coverage*.json
+coverage*.xml
+coverage*.info
+
+# Visual Studio code coverage results
+*.coverage
+*.coveragexml
+
+# NCrunch
+_NCrunch_*
+.*crunch*.local.xml
+nCrunchTemp_*
+
+# MightyMoose
+*.mm.*
+AutoTest.Net/
+
+# Web workbench (sass)
+.sass-cache/
+
+# Installshield output folder
+[Ee]xpress/
+
+# DocProject is a documentation generator add-in
+DocProject/buildhelp/
+DocProject/Help/*.HxT
+DocProject/Help/*.HxC
+DocProject/Help/*.hhc
+DocProject/Help/*.hhk
+DocProject/Help/*.hhp
+DocProject/Help/Html2
+DocProject/Help/html
+
+# Click-Once directory
+publish/
+
+# Publish Web Output
+*.[Pp]ublish.xml
+*.azurePubxml
+# Note: Comment the next line if you want to checkin your web deploy settings,
+# but database connection strings (with potential passwords) will be unencrypted
+*.pubxml
+*.publishproj
+
+# Microsoft Azure Web App publish settings. Comment the next line if you want to
+# checkin your Azure Web App publish settings, but sensitive information contained
+# in these scripts will be unencrypted
+PublishScripts/
+
+# NuGet Packages
+*.nupkg
+# NuGet Symbol Packages
+*.snupkg
+# The packages folder can be ignored because of Package Restore
+**/[Pp]ackages/*
+# except build/, which is used as an MSBuild target.
+!**/[Pp]ackages/build/
+# Uncomment if necessary however generally it will be regenerated when needed
+#!**/[Pp]ackages/repositories.config
+# NuGet v3's project.json files produces more ignorable files
+*.nuget.props
+*.nuget.targets
+
+# Microsoft Azure Build Output
+csx/
+*.build.csdef
+
+# Microsoft Azure Emulator
+ecf/
+rcf/
+
+# Windows Store app package directories and files
+AppPackages/
+BundleArtifacts/
+Package.StoreAssociation.xml
+_pkginfo.txt
+*.appx
+*.appxbundle
+*.appxupload
+
+# Visual Studio cache files
+# files ending in .cache can be ignored
+*.[Cc]ache
+# but keep track of directories ending in .cache
+!?*.[Cc]ache/
+
+# Others
+ClientBin/
+~$*
+*~
+*.dbmdl
+*.dbproj.schemaview
+*.jfm
+*.pfx
+*.publishsettings
+orleans.codegen.cs
+
+# Including strong name files can present a security risk
+# (https://github.com/github/gitignore/pull/2483#issue-259490424)
+#*.snk
+
+# Since there are multiple workflows, uncomment next line to ignore bower_components
+# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
+#bower_components/
+
+# RIA/Silverlight projects
+Generated_Code/
+
+# Backup & report files from converting an old project file
+# to a newer Visual Studio version. Backup files are not needed,
+# because we have git ;-)
+_UpgradeReport_Files/
+Backup*/
+UpgradeLog*.XML
+UpgradeLog*.htm
+ServiceFabricBackup/
+*.rptproj.bak
+
+# SQL Server files
+*.mdf
+*.ldf
+*.ndf
+
+# Business Intelligence projects
+*.rdl.data
+*.bim.layout
+*.bim_*.settings
+*.rptproj.rsuser
+*- [Bb]ackup.rdl
+*- [Bb]ackup ([0-9]).rdl
+*- [Bb]ackup ([0-9][0-9]).rdl
+
+# Microsoft Fakes
+FakesAssemblies/
+
+# GhostDoc plugin setting file
+*.GhostDoc.xml
+
+# Node.js Tools for Visual Studio
+.ntvs_analysis.dat
+node_modules/
+
+# Visual Studio 6 build log
+*.plg
+
+# Visual Studio 6 workspace options file
+*.opt
+
+# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
+*.vbw
+
+# Visual Studio LightSwitch build output
+**/*.HTMLClient/GeneratedArtifacts
+**/*.DesktopClient/GeneratedArtifacts
+**/*.DesktopClient/ModelManifest.xml
+**/*.Server/GeneratedArtifacts
+**/*.Server/ModelManifest.xml
+_Pvt_Extensions
+
+# Paket dependency manager
+.paket/paket.exe
+paket-files/
+
+# FAKE - F# Make
+.fake/
+
+# CodeRush personal settings
+.cr/personal
+
+# Python Tools for Visual Studio (PTVS)
+__pycache__/
+*.pyc
+
+# Cake - Uncomment if you are using it
+# tools/**
+# !tools/packages.config
+
+# Tabs Studio
+*.tss
+
+# Telerik's JustMock configuration file
+*.jmconfig
+
+# BizTalk build output
+*.btp.cs
+*.btm.cs
+*.odx.cs
+*.xsd.cs
+
+# OpenCover UI analysis results
+OpenCover/
+
+# Azure Stream Analytics local run output
+ASALocalRun/
+
+# MSBuild Binary and Structured Log
+*.binlog
+
+# NVidia Nsight GPU debugger configuration file
+*.nvuser
+
+# MFractors (Xamarin productivity tool) working folder
+.mfractor/
+
+# Local History for Visual Studio
+.localhistory/
+
+# BeatPulse healthcheck temp database
+healthchecksdb
+
+# Backup folder for Package Reference Convert tool in Visual Studio 2017
+MigrationBackup/
+
+# Ionide (cross platform F# VS Code tools) working folder
+.ionide/
+
+# Fody - auto-generated XML schema
+FodyWeavers.xsd
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..6cd38ed
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,23 @@
+# CONTRIBUTOR LICENSE AGREEMENT
+You accept and agree to the following terms and conditions for Your past, present and future Contributions submitted to the AO Kaspersky Lab (“Company”).
+1. Definitions.
+"You" (or "Your") shall mean the legal owner of the Contribution that is making this CLA with the Company. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
+"Contribution" shall mean any original work of authorship, including any derivative works, modifications or additions to an existing work, that is intentionally submitted by You to the Company for inclusion in, or documentation of, any of the products owned or distributed by the Company (the "Work"). You acknowledge that the Company desires to have all contributions made by You under the terms of this CLA and, thus, this CLA will apply to all of your Contributions submitted both before and after the date of signature. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Company or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Company for the purpose of discussing and improving the Work.
+2. Grant of Copyright and Patent Licenses.
+Subject to the terms and conditions of this Agreement, You hereby grant to the Company and to recipients of software distributed by the Company a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license, including a license, to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, or sell Your Contributions and the Work.
+Subject to the terms and conditions of this Agreement, You hereby grant to the Company and to recipients of the Work distributed by the Company a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable patent license to make, have made, use, offer to sell, sell, import, distribute, and otherwise transfer Your Contributions and the Work.
+3. Ownership and third party rights.
+You represent that you are the sole legal owner and are legally entitled to grant the above license for the Contributions. If:
+o (A.) your employer(s) has intellectual property or other rights to your Contributions, you represent that you have both (i.) received express, prior, written permission to make Contributions on behalf of that employer; and (ii.) that your employer has waived any of its rights for or claims in your Contributions to the Company, or
+o (B.) if another individual or third party has rights to intellectual property to your Contributions – whether as a result of being a co-inventor, assignee, or other right, you represent that you have both (i.) received express, prior, written permission to make Contributions on behalf of that individual or third party; and (ii.) that such individual or third party has waived any of its rights for or claims in your Contributions to the Company.
+You will submit such written permission to the Company at the time of the submission of your Contribution.
+4. Your original creation.
+You represent that each of Your Contributions is Your original creation (see section 5 for submissions on behalf of others). You represent that Your Contribution submissions include complete details (including required attributions and details of applicable license restrictions) of any third-party license or public domain licenses, or other restriction (including, but not limited to, related patents and trademarks) of which you are personally aware or should be aware and which are associated with any part of Your Contributions.
+5. Third party owned creation(s).
+Should You wish to submit work that is not Your original creation, You may submit it to the Company separately from any Contribution, clearly identifying the complete details of its ownership and source, and any applicable license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work, for example: "Submitted on behalf of a third-party: [named here].” “Owned by third-party: [named here.]” or “Copyright held by third-party: [named here].”
+6. Notification.
+You agree to notify the Company of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect, including if you become aware of any third party intellectual property rights that are infringed by your Contributions.
+7. Assignment.
+Neither party may assign this Agreement without the other party’s consent which will not be unreasonably withheld; however, each party may assign this Agreement without the other party’s consent to an entity or individual that acquires all or substantially all of the business or assets of the assigning party or for an individual acquires all of the intellectual property rights in the Contribution owned by such individual, whether by merger, sale of assets, or otherwise, provided that such entity or individual assumes and agrees in writing to be bound by all of the obligations of the assigning party under this Agreement.
+8. Entire agreement.
+This Agreement is the entire agreement, both written or oral, with respect to the Contributions between the parties. No amendment, modification or waiver of any provision of this Agreement will be effective unless in writing and signed by both parties. If any provision of this Agreement is held to be invalid or unenforceable, the remaining portions will remain in full force and effect and such provision will be enforced to the maximum extent possible so as to affect the intent of the parties and will be reformed to the extent necessary to make such provision valid and enforceable. All notices and other communications herein permitted or required under this Agreement will be sent by postage prepaid, via registered or certified mail or overnight courier, return receipt requested, or delivered personally to the parties at their respective addresses, or to such other address as either party will give to the other party in the manner provided herein for giving notice. Notice will be considered given upon receipt.
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..7a4a3ea
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
\ No newline at end of file
diff --git a/NOTICE.txt b/NOTICE.txt
new file mode 100644
index 0000000..27c6d87
--- /dev/null
+++ b/NOTICE.txt
@@ -0,0 +1,40 @@
+This file contains information about dependencies which are used in the Kaspirin
+=============================================================================
+
+SharpVectors.Reloaded 1.5.0
+Copyright (c) 2010 - 2018, Elinam LLC
+All rights reserved.
+-----------------------------------------------------------------------
+==
+the BSD License (three-clause)
+==
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+-----------------------------------------------------------------------
+
+BidiSharp 0.2
+Copyright (c) 2019 Fayyad Sufyan
+-----------------------------------------------------------------------
+Distributed under the terms of the MIT License
+-----------------------------------------------------------------------
+
+Microsoft.Xaml.Behavior 1.1.19
+Copyright (c) Microsoft Corporation
+-----------------------------------------------------------------------
+Distributed under the terms of the MIT License
+-----------------------------------------------------------------------
+
+==
+
+the MIT License
+
+==
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..3036d33
--- /dev/null
+++ b/README.md
@@ -0,0 +1,90 @@
+
+
+ # Kaspirin Documentation
+
+This documentation provides a brief overview of the key functionality provided by the Kaspirin platform, which consists of the following projects:
+
+* Kaspirin.UI.Framework
+* Kaspirin.UI.Framework.UiKit
+* Kaspirin.UI.Framework.UiKit.Media
+* Kaspirin.UI.Framework.UiKit.Styles
+* Kaspirin.UI.Framework.UiKit.Translator.Core
+* Kaspirin.UI.Framework.UiKit.Translator.Launcher
+
+Kaspirin is an extension of the WPF platform, so all solutions implemented in Kaspirin will also work in other WPF projects.
+
+## Kaspirin.UI.Framework
+
+Kaspirin.UI.Framework is a set of basic services and tools designed to help developers create high-quality, maintainable, and efficient applications with a user interface or console applications.
+
+### Key Features
+* Custom IoC container implementation
+* Basic classes for implementing the MVVM approach
+* Services for organizing logging in the application
+* A wide range of protective methods (Guards) for data validation
+* Various tools for working with multithreading
+* A set of convenient extension methods for working with collections, dictionaries, strings, and other data types
+
+## Kaspirin.UI.Framework.UiKit
+
+Kaspirin.UI.Framework.UiKit provides a large set of ready-to-use tools that allow you to solve typical problems that developers face when creating a user interface for OS Windows applications.
+
+### Key Features
+
+* Custom system for organizing UI element styles, separating style into two components: a common template and a visual component loaded from Figma
+* A large set of custom UI elements, converters, and other tools that simplify the development of the user interface
+* Convenient localization system that works with over 30 languages
+* Built-in support for light and dark themes
+* Tools for working with animations
+
+## Kaspirin.UI.Framework.UiKit.Styles and Kaspirin.UI.Framework.UiKit.Media
+
+These assemblies consist mainly of auto-generated files created during the style translation procedure from Figma.
+
+* Kaspirin.UI.Framework.UiKit.Media contains examples of SVG illustrations (a set for light and dark themes) and auxiliary tools for their use in XAML.
+* Kaspirin.UI.Framework.UiKit.Styles contains generated styles for UI elements, describing the visual component, as well as a palette and a set of text styles.
+
+## Kaspirin.UI.Framework.UiKit.Translator.Core and Kaspirin.UI.Framework.UiKit.Translator.Launcher
+
+These assemblies provide one of the key features of Kaspirin - translation of styles loaded from Figma into XAML format. This style translation mechanism allows you to create and configure the visual representation of UI elements in Figma and then use it in your application.
+
+### What can be converted from Figma
+
+* Figma UI component styles (element colors in different states, margins, sizes, etc.)
+* Icons and illustrations in SVG format
+* Palette for light and dark themes
+* A set of test styles
+
+Figma plugin that performs page parsing will be published at a later date.
+
+Currently, the resulting file UI_KIT.xml is available, which demonstrates all the data loaded from Figma.
+
+## Getting Started
+
+To get started with Kaspirin, you need to:
+
+1. Create a new WPF Application project;
+2. Add references to packages:
+ * Kaspirin.UI.Framework
+ * Kaspirin.UI.Framework.UiKit
+ * Kaspirin.UI.Framework.UiKit.Styles
+ * Kaspirin.UI.Framework.UiKit.Media;
+3. Add to Application.Resources:
+ * a link to the Visuals.xaml dictionary from Kaspirin.UI.Framework.UiKit.Styles
+4. Add to the application initialization code the following steps:
+ * Initialization of logging
+ * Initialization of the container
+ * Initialization of the localization manager
+
+## Releases
+
+Currently we expect that the project will be regularly updated with new functionality and improvements that we would like to share with you. Also, it is possible that some functionality may be removed from the project over time. Therefore, we cannot guarantee full backward compatibility of new Kaspirin releases with previous ones.
+
+## Contribution
+
+This is an open source project. If you are interested in making a code contribution, please see [CONTRIBUTING.md](CONTRIBUTING.md) for more information.
+
+## License
+
+Copyright © 2024 AO Kaspersky Lab
+Licensed under the Apache 2.0 License. See the [LICENSE.txt](LICENSE.txt) file in the root directory for details.
\ No newline at end of file
diff --git a/docs/logo.png b/docs/logo.png
new file mode 100644
index 0000000..d34c16d
Binary files /dev/null and b/docs/logo.png differ
diff --git a/src/figma/Schema/Badge.xsd b/src/figma/Schema/Badge.xsd
new file mode 100644
index 0000000..b2bda12
--- /dev/null
+++ b/src/figma/Schema/Badge.xsd
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Bullet.xsd b/src/figma/Schema/Bullet.xsd
new file mode 100644
index 0000000..b7cd1a3
--- /dev/null
+++ b/src/figma/Schema/Bullet.xsd
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Button.xsd b/src/figma/Schema/Button.xsd
new file mode 100644
index 0000000..347d0cb
--- /dev/null
+++ b/src/figma/Schema/Button.xsd
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/CarouselItem.xsd b/src/figma/Schema/CarouselItem.xsd
new file mode 100644
index 0000000..4710744
--- /dev/null
+++ b/src/figma/Schema/CarouselItem.xsd
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/CheckBoxRadioButton.xsd b/src/figma/Schema/CheckBoxRadioButton.xsd
new file mode 100644
index 0000000..46c579e
--- /dev/null
+++ b/src/figma/Schema/CheckBoxRadioButton.xsd
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ChipsControl.xsd b/src/figma/Schema/ChipsControl.xsd
new file mode 100644
index 0000000..acf067c
--- /dev/null
+++ b/src/figma/Schema/ChipsControl.xsd
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ChipsItem.xsd b/src/figma/Schema/ChipsItem.xsd
new file mode 100644
index 0000000..5ac60aa
--- /dev/null
+++ b/src/figma/Schema/ChipsItem.xsd
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/CodeInput.xsd b/src/figma/Schema/CodeInput.xsd
new file mode 100644
index 0000000..779e32e
--- /dev/null
+++ b/src/figma/Schema/CodeInput.xsd
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Common.xsd b/src/figma/Schema/Common.xsd
new file mode 100644
index 0000000..d70ba9e
--- /dev/null
+++ b/src/figma/Schema/Common.xsd
@@ -0,0 +1,288 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ContentButton.xsd b/src/figma/Schema/ContentButton.xsd
new file mode 100644
index 0000000..9f085a6
--- /dev/null
+++ b/src/figma/Schema/ContentButton.xsd
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ContextMenu.xsd b/src/figma/Schema/ContextMenu.xsd
new file mode 100644
index 0000000..ecd0686
--- /dev/null
+++ b/src/figma/Schema/ContextMenu.xsd
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/DateTimeInput.xsd b/src/figma/Schema/DateTimeInput.xsd
new file mode 100644
index 0000000..22378df
--- /dev/null
+++ b/src/figma/Schema/DateTimeInput.xsd
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/DateTimePopupFooterButton.xsd b/src/figma/Schema/DateTimePopupFooterButton.xsd
new file mode 100644
index 0000000..f4f0718
--- /dev/null
+++ b/src/figma/Schema/DateTimePopupFooterButton.xsd
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/DateTimePopupItemButton.xsd b/src/figma/Schema/DateTimePopupItemButton.xsd
new file mode 100644
index 0000000..852c16b
--- /dev/null
+++ b/src/figma/Schema/DateTimePopupItemButton.xsd
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/DateTimePopupPresenter.xsd b/src/figma/Schema/DateTimePopupPresenter.xsd
new file mode 100644
index 0000000..ab272f8
--- /dev/null
+++ b/src/figma/Schema/DateTimePopupPresenter.xsd
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Divider.xsd b/src/figma/Schema/Divider.xsd
new file mode 100644
index 0000000..cfc28c8
--- /dev/null
+++ b/src/figma/Schema/Divider.xsd
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/figma/Schema/Hyperlink.xsd b/src/figma/Schema/Hyperlink.xsd
new file mode 100644
index 0000000..ca29296
--- /dev/null
+++ b/src/figma/Schema/Hyperlink.xsd
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Icon.xsd b/src/figma/Schema/Icon.xsd
new file mode 100644
index 0000000..7abf1f2
--- /dev/null
+++ b/src/figma/Schema/Icon.xsd
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/IconButton.xsd b/src/figma/Schema/IconButton.xsd
new file mode 100644
index 0000000..8a7ab13
--- /dev/null
+++ b/src/figma/Schema/IconButton.xsd
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Illustration.xsd b/src/figma/Schema/Illustration.xsd
new file mode 100644
index 0000000..9e1ad98
--- /dev/null
+++ b/src/figma/Schema/Illustration.xsd
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ImageGallery.xsd b/src/figma/Schema/ImageGallery.xsd
new file mode 100644
index 0000000..43271cc
--- /dev/null
+++ b/src/figma/Schema/ImageGallery.xsd
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ImageGalleryButton.xsd b/src/figma/Schema/ImageGalleryButton.xsd
new file mode 100644
index 0000000..ccb880d
--- /dev/null
+++ b/src/figma/Schema/ImageGalleryButton.xsd
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ImageGalleryList.xsd b/src/figma/Schema/ImageGalleryList.xsd
new file mode 100644
index 0000000..295cbf4
--- /dev/null
+++ b/src/figma/Schema/ImageGalleryList.xsd
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ImageGalleryListButton.xsd b/src/figma/Schema/ImageGalleryListButton.xsd
new file mode 100644
index 0000000..fc9e66f
--- /dev/null
+++ b/src/figma/Schema/ImageGalleryListButton.xsd
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/InteractivityDialog.xsd b/src/figma/Schema/InteractivityDialog.xsd
new file mode 100644
index 0000000..04e7ae1
--- /dev/null
+++ b/src/figma/Schema/InteractivityDialog.xsd
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/InteractivityNotification.xsd b/src/figma/Schema/InteractivityNotification.xsd
new file mode 100644
index 0000000..408b2aa
--- /dev/null
+++ b/src/figma/Schema/InteractivityNotification.xsd
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/InteractivityOverlay.xsd b/src/figma/Schema/InteractivityOverlay.xsd
new file mode 100644
index 0000000..c52aa0e
--- /dev/null
+++ b/src/figma/Schema/InteractivityOverlay.xsd
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Island.xsd b/src/figma/Schema/Island.xsd
new file mode 100644
index 0000000..79227b2
--- /dev/null
+++ b/src/figma/Schema/Island.xsd
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/IslandButton.xsd b/src/figma/Schema/IslandButton.xsd
new file mode 100644
index 0000000..bd9ed02
--- /dev/null
+++ b/src/figma/Schema/IslandButton.xsd
@@ -0,0 +1,134 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/IslandToggleButton.xsd b/src/figma/Schema/IslandToggleButton.xsd
new file mode 100644
index 0000000..238d627
--- /dev/null
+++ b/src/figma/Schema/IslandToggleButton.xsd
@@ -0,0 +1,230 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ListMenuItem.xsd b/src/figma/Schema/ListMenuItem.xsd
new file mode 100644
index 0000000..d875a24
--- /dev/null
+++ b/src/figma/Schema/ListMenuItem.xsd
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/MenuItem.xsd b/src/figma/Schema/MenuItem.xsd
new file mode 100644
index 0000000..8a2a71b
--- /dev/null
+++ b/src/figma/Schema/MenuItem.xsd
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/NavigationMenuButton.xsd b/src/figma/Schema/NavigationMenuButton.xsd
new file mode 100644
index 0000000..c306a68
--- /dev/null
+++ b/src/figma/Schema/NavigationMenuButton.xsd
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/NavigationMenuFooterButton.xsd b/src/figma/Schema/NavigationMenuFooterButton.xsd
new file mode 100644
index 0000000..613bff9
--- /dev/null
+++ b/src/figma/Schema/NavigationMenuFooterButton.xsd
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/NotificationHint.xsd b/src/figma/Schema/NotificationHint.xsd
new file mode 100644
index 0000000..5458756
--- /dev/null
+++ b/src/figma/Schema/NotificationHint.xsd
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/NotificationPanel.xsd b/src/figma/Schema/NotificationPanel.xsd
new file mode 100644
index 0000000..88d2855
--- /dev/null
+++ b/src/figma/Schema/NotificationPanel.xsd
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/NotificationSpinner.xsd b/src/figma/Schema/NotificationSpinner.xsd
new file mode 100644
index 0000000..9b2ec5a
--- /dev/null
+++ b/src/figma/Schema/NotificationSpinner.xsd
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/NumberInput.xsd b/src/figma/Schema/NumberInput.xsd
new file mode 100644
index 0000000..e18a23a
--- /dev/null
+++ b/src/figma/Schema/NumberInput.xsd
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Palette.xsd b/src/figma/Schema/Palette.xsd
new file mode 100644
index 0000000..aa13099
--- /dev/null
+++ b/src/figma/Schema/Palette.xsd
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/PasswordInput.xsd b/src/figma/Schema/PasswordInput.xsd
new file mode 100644
index 0000000..66f5c30
--- /dev/null
+++ b/src/figma/Schema/PasswordInput.xsd
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Popup.xsd b/src/figma/Schema/Popup.xsd
new file mode 100644
index 0000000..415f860
--- /dev/null
+++ b/src/figma/Schema/Popup.xsd
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ProgressBar.xsd b/src/figma/Schema/ProgressBar.xsd
new file mode 100644
index 0000000..246c6e2
--- /dev/null
+++ b/src/figma/Schema/ProgressBar.xsd
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/RoundProgress.xsd b/src/figma/Schema/RoundProgress.xsd
new file mode 100644
index 0000000..f340d3c
--- /dev/null
+++ b/src/figma/Schema/RoundProgress.xsd
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/RoundTimer.xsd b/src/figma/Schema/RoundTimer.xsd
new file mode 100644
index 0000000..4889d4c
--- /dev/null
+++ b/src/figma/Schema/RoundTimer.xsd
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ScrollBar.xsd b/src/figma/Schema/ScrollBar.xsd
new file mode 100644
index 0000000..2f2631c
--- /dev/null
+++ b/src/figma/Schema/ScrollBar.xsd
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Search.xsd b/src/figma/Schema/Search.xsd
new file mode 100644
index 0000000..990819b
--- /dev/null
+++ b/src/figma/Schema/Search.xsd
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Select.xsd b/src/figma/Schema/Select.xsd
new file mode 100644
index 0000000..32b6fce
--- /dev/null
+++ b/src/figma/Schema/Select.xsd
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/SelectItem.xsd b/src/figma/Schema/SelectItem.xsd
new file mode 100644
index 0000000..3e379a8
--- /dev/null
+++ b/src/figma/Schema/SelectItem.xsd
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/SelectPresenter.xsd b/src/figma/Schema/SelectPresenter.xsd
new file mode 100644
index 0000000..45ee756
--- /dev/null
+++ b/src/figma/Schema/SelectPresenter.xsd
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/SelectableText.xsd b/src/figma/Schema/SelectableText.xsd
new file mode 100644
index 0000000..695ebe4
--- /dev/null
+++ b/src/figma/Schema/SelectableText.xsd
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Spinner.xsd b/src/figma/Schema/Spinner.xsd
new file mode 100644
index 0000000..ffb0f1f
--- /dev/null
+++ b/src/figma/Schema/Spinner.xsd
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/SplitButton.xsd b/src/figma/Schema/SplitButton.xsd
new file mode 100644
index 0000000..16e7c08
--- /dev/null
+++ b/src/figma/Schema/SplitButton.xsd
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/SsoButton.xsd b/src/figma/Schema/SsoButton.xsd
new file mode 100644
index 0000000..87583c3
--- /dev/null
+++ b/src/figma/Schema/SsoButton.xsd
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/StatusBullet.xsd b/src/figma/Schema/StatusBullet.xsd
new file mode 100644
index 0000000..1cf3962
--- /dev/null
+++ b/src/figma/Schema/StatusBullet.xsd
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/StatusTag.xsd b/src/figma/Schema/StatusTag.xsd
new file mode 100644
index 0000000..b574fa2
--- /dev/null
+++ b/src/figma/Schema/StatusTag.xsd
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/SvgIcon.xsd b/src/figma/Schema/SvgIcon.xsd
new file mode 100644
index 0000000..4f45b2c
--- /dev/null
+++ b/src/figma/Schema/SvgIcon.xsd
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Switch.xsd b/src/figma/Schema/Switch.xsd
new file mode 100644
index 0000000..cbb884f
--- /dev/null
+++ b/src/figma/Schema/Switch.xsd
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/TabMenu.xsd b/src/figma/Schema/TabMenu.xsd
new file mode 100644
index 0000000..7251454
--- /dev/null
+++ b/src/figma/Schema/TabMenu.xsd
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/TabMenuItem.xsd b/src/figma/Schema/TabMenuItem.xsd
new file mode 100644
index 0000000..c671755
--- /dev/null
+++ b/src/figma/Schema/TabMenuItem.xsd
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Tag.xsd b/src/figma/Schema/Tag.xsd
new file mode 100644
index 0000000..bc811e5
--- /dev/null
+++ b/src/figma/Schema/Tag.xsd
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/TextArea.xsd b/src/figma/Schema/TextArea.xsd
new file mode 100644
index 0000000..137a21c
--- /dev/null
+++ b/src/figma/Schema/TextArea.xsd
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/TextInput.xsd b/src/figma/Schema/TextInput.xsd
new file mode 100644
index 0000000..a12c628
--- /dev/null
+++ b/src/figma/Schema/TextInput.xsd
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/TextStyle.xsd b/src/figma/Schema/TextStyle.xsd
new file mode 100644
index 0000000..079f066
--- /dev/null
+++ b/src/figma/Schema/TextStyle.xsd
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/TextViewer.xsd b/src/figma/Schema/TextViewer.xsd
new file mode 100644
index 0000000..4a9ea2e
--- /dev/null
+++ b/src/figma/Schema/TextViewer.xsd
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/ToolTip.xsd b/src/figma/Schema/ToolTip.xsd
new file mode 100644
index 0000000..2e29a69
--- /dev/null
+++ b/src/figma/Schema/ToolTip.xsd
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/UiKit.xsd b/src/figma/Schema/UiKit.xsd
new file mode 100644
index 0000000..c44bd33
--- /dev/null
+++ b/src/figma/Schema/UiKit.xsd
@@ -0,0 +1,558 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/Schema/Vector.xsd b/src/figma/Schema/Vector.xsd
new file mode 100644
index 0000000..db51047
--- /dev/null
+++ b/src/figma/Schema/Vector.xsd
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/figma/plugin_output/UI_KIT.xml b/src/figma/plugin_output/UI_KIT.xml
new file mode 100644
index 0000000..396592b
--- /dev/null
+++ b/src/figma/plugin_output/UI_KIT.xml
@@ -0,0 +1,8901 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+]]>
+
+
+
+
+]]>
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+]]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
+
+
+ ]]>
+
+
+
+
+
+ ]]>
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/.editorconfig b/src/framework/.editorconfig
new file mode 100644
index 0000000..ed20d5e
--- /dev/null
+++ b/src/framework/.editorconfig
@@ -0,0 +1,7 @@
+[*.cs]
+# Editor Guidelines Plugin
+guidelines = 120
+guidelines_style = 2.5px solid 10999999
+
+# CA1416: Validate platform compatibility
+dotnet_diagnostic.CA1416.severity = none
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.Tests/Kaspirin.UI.Framework.Tests.csproj b/src/framework/Kaspirin.UI.Framework.Tests/Kaspirin.UI.Framework.Tests.csproj
new file mode 100644
index 0000000..36312f7
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.Tests/Kaspirin.UI.Framework.Tests.csproj
@@ -0,0 +1,26 @@
+
+
+ true
+ Kaspirin.UI.Framework.Tests
+ kaspirin.ui.framework.tests
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Media/Illustrations/UIKitIllustrationsGenerated.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Illustrations/UIKitIllustrationsGenerated.cs
new file mode 100644
index 0000000..5dd723e
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Illustrations/UIKitIllustrationsGenerated.cs
@@ -0,0 +1,50 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// This file was automatically generated by the 'Kaspirin.UI.Framework.UiKit.Translator'.
+// Code generated by the 'Kaspirin.UI.Framework.UiKit.Translator' is owned by the owner of the input file used when generating it.
+// The following copyright applies to the portions of the 'Kaspirin.UI.Framework.UiKit.Translator' located in this file: Copyright © 2024 AO Kaspersky Lab.
+
+using System.Runtime.CompilerServices;
+using System.Threading;
+
+namespace Kaspirin.UI.Framework.UiKit.Media.Illustrations
+{
+ /// UIKit illustrations with ExampleOne scope.
+ public enum UIKitIllustration_ExampleOne
+ {
+ UIKitUnset = 0,
+ Image1,
+ Image2,
+ }
+
+ internal static class UIKitIllustrationMetadataRegistrar
+ {
+#if NETFRAMEWORK
+ public static void RegisterMetadata()
+#else
+ [ModuleInitializer]
+ internal static void RegisterMetadata()
+#endif
+ {
+ if (Interlocked.CompareExchange(ref _isRegistered, 1, 0) == 0)
+ {
+ UIKitIllustrationMetadataStorage.Register(UIKitIllustration_ExampleOne.Image1, isAutoRTL: false, height: 64, width: 64);
+ UIKitIllustrationMetadataStorage.Register(UIKitIllustration_ExampleOne.Image2, isAutoRTL: false, height: 64, width: 64);
+ }
+ }
+
+ private static int _isRegistered = 0;
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Media/Kaspirin.UI.Framework.UiKit.Media.csproj b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Kaspirin.UI.Framework.UiKit.Media.csproj
new file mode 100644
index 0000000..e9c836a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Kaspirin.UI.Framework.UiKit.Media.csproj
@@ -0,0 +1,19 @@
+
+
+ true
+ Kaspirin.UI.Framework.UiKit.Media
+ kaspirin.ui.framework.uikit.media
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Media/MarkupExtensions/UIKitIllustrationExtensionGenerated.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Media/MarkupExtensions/UIKitIllustrationExtensionGenerated.cs
new file mode 100644
index 0000000..ca83b8a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Media/MarkupExtensions/UIKitIllustrationExtensionGenerated.cs
@@ -0,0 +1,29 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// This file was automatically generated by the 'Kaspirin.UI.Framework.UiKit.Translator'.
+// Code generated by the 'Kaspirin.UI.Framework.UiKit.Translator' is owned by the owner of the input file used when generating it.
+// The following copyright applies to the portions of the 'Kaspirin.UI.Framework.UiKit.Translator' located in this file: Copyright © 2024 AO Kaspersky Lab.
+
+using Kaspirin.UI.Framework.UiKit.Media.Illustrations;
+
+namespace Kaspirin.UI.Framework.UiKit.Media.MarkupExtensions
+{
+ public sealed class UIKitIllustrationExtension : UIKitIllustrationExtensionBase
+ {
+ public UIKitIllustration_ExampleOne ExampleOne { get => _exampleOne; set => EnsureCanSet(ref _exampleOne, value); }
+
+ private UIKitIllustration_ExampleOne _exampleOne;
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Media/Properties/AssemblyDefinitions.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Properties/AssemblyDefinitions.cs
new file mode 100644
index 0000000..679f3c0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Properties/AssemblyDefinitions.cs
@@ -0,0 +1,24 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using System.Windows.Markup;
+
+[assembly: XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "Kaspirin.UI.Framework.UiKit.Media.MarkupExtensions")]
+
+[assembly: XmlnsDefinition("http://schemas.kaspirin.com/common/visuals", "Kaspirin.UI.Framework.UiKit.Media.Illustrations")]
+
+[assembly: XmlnsDefinition("http://schemas.kaspirin.com/common/visuals", "Kaspirin.UI.Framework.UiKit.Media.Illustrations")]
+[assembly: XmlnsDefinition("http://schemas.kaspirin.com/common/visuals", "Kaspirin.UI.Framework.UiKit.Media.MarkupExtensions")]
+
+[assembly: XmlnsPrefix("http://schemas.kaspirin.com/common/visuals", "visuals")]
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/dark/images/exampleone/UIKitIllustration_Image1.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/dark/images/exampleone/UIKitIllustration_Image1.svg
new file mode 100644
index 0000000..b883f42
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/dark/images/exampleone/UIKitIllustration_Image1.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/dark/images/exampleone/UIKitIllustration_Image2.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/dark/images/exampleone/UIKitIllustration_Image2.svg
new file mode 100644
index 0000000..2826d19
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/dark/images/exampleone/UIKitIllustration_Image2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/images/exampleone/UIKitIllustration_Image1.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/images/exampleone/UIKitIllustration_Image1.svg
new file mode 100644
index 0000000..a5c371a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/images/exampleone/UIKitIllustration_Image1.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/images/exampleone/UIKitIllustration_Image2.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/images/exampleone/UIKitIllustration_Image2.svg
new file mode 100644
index 0000000..ecea865
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Media/Resources/neutral/images/exampleone/UIKitIllustration_Image2.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Media/framework.uikit.media.props b/src/framework/Kaspirin.UI.Framework.UiKit.Media/framework.uikit.media.props
new file mode 100644
index 0000000..45acde6
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Media/framework.uikit.media.props
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Converters/ResourcePalette.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Converters/ResourcePalette.cs
new file mode 100644
index 0000000..0b7ebec
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Converters/ResourcePalette.cs
@@ -0,0 +1,29 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Styles.Palette;
+using Kaspirin.UI.Framework.UiKit.Converters.DictionaryConverters;
+
+namespace Kaspirin.UI.Framework.UiKit.Styles.Converters
+{
+ public sealed class ResourcePalette : IDictionaryConverterItem
+ {
+ public UIKitPaletteStorage.UIKitPalette Id { get; set; }
+
+ public object GetItemValue()
+ {
+ return Id;
+ }
+ }
+}
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Fonts/UIKitFontBrushExtension.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Fonts/UIKitFontBrushExtension.cs
new file mode 100644
index 0000000..49738d9
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Fonts/UIKitFontBrushExtension.cs
@@ -0,0 +1,21 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+namespace Kaspirin.UI.Framework.UiKit.Styles.Fonts
+{
+ public sealed class UIKitFontBrushExtension : UIKitFontBrushExtension
+ {
+ protected override string Map(UIKitFontStorage.UIKitFontBrush brush) => UIKitFontStorage.Map(brush);
+ }
+}
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Fonts/UIKitFontStorage.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Fonts/UIKitFontStorage.cs
new file mode 100644
index 0000000..3dc932e
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Fonts/UIKitFontStorage.cs
@@ -0,0 +1,72 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// This file was automatically generated by the 'Kaspirin.UI.Framework.UiKit.Translator'.
+// Code generated by the 'Kaspirin.UI.Framework.UiKit.Translator' is owned by the owner of the input file used when generating it.
+// The following copyright applies to the portions of the 'Kaspirin.UI.Framework.UiKit.Translator' located in this file: Copyright © 2024 AO Kaspersky Lab.
+
+using System;
+using Kaspirin.UI.Framework.UiKit.Styles.Palette;
+
+namespace Kaspirin.UI.Framework.UiKit.Styles.Fonts
+{
+ public sealed class UIKitFontStorage
+ {
+ public static string Map(UIKitFontStyle id)
+ => $"UiKitTextStyle{id}";
+
+ public static string Map(UIKitFontBrush id)
+ {
+ var paletteIdString = $"TextIconsElements{id}";
+
+ var paletteId = (UIKitPaletteStorage.UIKitPalette)Enum.Parse(typeof(UIKitPaletteStorage.UIKitPalette), paletteIdString);
+
+ return UIKitPaletteStorage.Map(paletteId);
+ }
+
+ public enum UIKitFontBrush
+ {
+ Base,
+ BaseIcon,
+ BaseIconInvert,
+ BaseInvert,
+ Disabled,
+ DisabledInvert,
+ Emerald,
+ Primary,
+ PrimaryInvert,
+ Red,
+ Secondary,
+ SecondaryInvert,
+ Yellow
+ }
+
+ public enum UIKitFontStyle
+ {
+ BaseText,
+ BaseTextMonospace,
+ BaseTextSemibold,
+ Button,
+ Header1,
+ Header2,
+ Header3,
+ Header3Monospace,
+ Header4,
+ Header5,
+ SmallText,
+ SmallTextMedium,
+ Subheader
+ }
+ }
+}
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Fonts/UIKitFontStyleExtension.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Fonts/UIKitFontStyleExtension.cs
new file mode 100644
index 0000000..e0f9e56
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Fonts/UIKitFontStyleExtension.cs
@@ -0,0 +1,21 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+namespace Kaspirin.UI.Framework.UiKit.Styles.Fonts
+{
+ public sealed class UIKitFontStyleExtension : UIKitFontStyleExtension
+ {
+ protected override string Map(UIKitFontStorage.UIKitFontStyle style) => UIKitFontStorage.Map(style);
+ }
+}
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Kaspirin.UI.Framework.UiKit.Styles.csproj b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Kaspirin.UI.Framework.UiKit.Styles.csproj
new file mode 100644
index 0000000..a854db6
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Kaspirin.UI.Framework.UiKit.Styles.csproj
@@ -0,0 +1,19 @@
+
+
+ true
+ Kaspirin.UI.Framework.UiKit.Styles
+ kaspirin.ui.framework.uikit.styles
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Palette/UIKitPaletteExtension.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Palette/UIKitPaletteExtension.cs
new file mode 100644
index 0000000..1507ff7
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Palette/UIKitPaletteExtension.cs
@@ -0,0 +1,23 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Palettes;
+
+namespace Kaspirin.UI.Framework.UiKit.Styles.Palette
+{
+ public sealed class UIKitPaletteExtension : UIKitPaletteExtension
+ {
+ protected override string Map(UIKitPaletteStorage.UIKitPalette id) => UIKitPaletteStorage.Map(id);
+ }
+}
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Palette/UIKitPaletteStorage.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Palette/UIKitPaletteStorage.cs
new file mode 100644
index 0000000..faa9e0b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Palette/UIKitPaletteStorage.cs
@@ -0,0 +1,304 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// This file was automatically generated by the 'Kaspirin.UI.Framework.UiKit.Translator'.
+// Code generated by the 'Kaspirin.UI.Framework.UiKit.Translator' is owned by the owner of the input file used when generating it.
+// The following copyright applies to the portions of the 'Kaspirin.UI.Framework.UiKit.Translator' located in this file: Copyright © 2024 AO Kaspersky Lab.
+
+using System.Collections.Generic;
+
+namespace Kaspirin.UI.Framework.UiKit.Styles.Palette
+{
+ public static class UIKitPaletteStorage
+ {
+ public static string Map(UIKitPalette id)
+ {
+ return PaletteMapping[id];
+ }
+
+ private static IDictionary PaletteMapping { get; } = new Dictionary
+ {
+ { UIKitPalette.BackgroundElevation, "Background_Elevation" },
+ { UIKitPalette.BackgroundElevationInvert, "Background_Elevation-Invert" },
+ { UIKitPalette.BackgroundIslandElevation, "Background_Island-Elevation" },
+ { UIKitPalette.BackgroundIslandElevationInvert, "Background_Island-Elevation-Invert" },
+ { UIKitPalette.BackgroundIslandInner, "Background_Island-Inner" },
+ { UIKitPalette.BackgroundIslandInnerInvert, "Background_Island-Inner-Invert" },
+ { UIKitPalette.BackgroundIslandPrimary, "Background_Island-Primary" },
+ { UIKitPalette.BackgroundIslandPrimaryInvert, "Background_Island-Primary-Invert" },
+ { UIKitPalette.BackgroundIslandSecondary, "Background_Island-Secondary" },
+ { UIKitPalette.BackgroundIslandSecondaryInvert, "Background_Island-Secondary-Invert" },
+ { UIKitPalette.BackgroundOverlay, "Background_Overlay" },
+ { UIKitPalette.BackgroundPrimary, "Background_Primary" },
+ { UIKitPalette.BackgroundPrimaryInvert, "Background_Primary-Invert" },
+ { UIKitPalette.BackgroundSecondary, "Background_Secondary" },
+ { UIKitPalette.BackgroundSecondaryInvert, "Background_Secondary-Invert" },
+ { UIKitPalette.ControlsBGBase, "ControlsBG_Base" },
+ { UIKitPalette.ControlsBGBaseInvert, "ControlsBG_Base-Invert" },
+ { UIKitPalette.ControlsBGEmeraldDefaultFocusLoading, "ControlsBG_Emerald-Default-Focus-Loading" },
+ { UIKitPalette.ControlsBGEmeraldHover, "ControlsBG_Emerald-Hover" },
+ { UIKitPalette.ControlsBGEmeraldPressed, "ControlsBG_Emerald-Pressed" },
+ { UIKitPalette.ControlsBGGrayDefaultFocusLoading, "ControlsBG_Gray-Default-Focus-Loading" },
+ { UIKitPalette.ControlsBGGrayHover, "ControlsBG_Gray-Hover" },
+ { UIKitPalette.ControlsBGGrayPressed, "ControlsBG_Gray-Pressed" },
+ { UIKitPalette.ControlsBGGraySlimHover, "ControlsBG_Gray-Slim-Hover" },
+ { UIKitPalette.ControlsBGGraySlimPressed, "ControlsBG_Gray-Slim-Pressed" },
+ { UIKitPalette.ControlsBGIslandElevationPressed, "ControlsBG_Island-Elevation-Pressed" },
+ { UIKitPalette.ControlsBGIslandPrimaryPressed, "ControlsBG_Island-Primary-Pressed" },
+ { UIKitPalette.ControlsBGIslandSecondaryPressed, "ControlsBG_Island-Secondary-Pressed" },
+ { UIKitPalette.ControlsBGRedDefaultFocusLoading, "ControlsBG_Red-Default-Focus-Loading" },
+ { UIKitPalette.ControlsBGRedHover, "ControlsBG_Red-Hover" },
+ { UIKitPalette.ControlsBGRedPressed, "ControlsBG_Red-Pressed" },
+ { UIKitPalette.ControlsBGWhiteDefaultFocusLoading, "ControlsBG_White-Default-Focus-Loading" },
+ { UIKitPalette.ControlsBGWhiteHover, "ControlsBG_White-Hover" },
+ { UIKitPalette.ControlsBGWhitePressed, "ControlsBG_White-Pressed" },
+ { UIKitPalette.ElementsLine, "Elements_Line" },
+ { UIKitPalette.ElementsLineDanger, "Elements_Line-Danger" },
+ { UIKitPalette.ElementsLineDangerFocus, "Elements_Line-Danger-Focus" },
+ { UIKitPalette.ElementsLineDangerHover, "Elements_Line-Danger-Hover" },
+ { UIKitPalette.ElementsLineEmerald, "Elements_Line-Emerald" },
+ { UIKitPalette.ElementsLineInvert, "Elements_Line-Invert" },
+ { UIKitPalette.ElementsSeparator, "Elements_Separator" },
+ { UIKitPalette.ElementsSeparatorBold, "Elements_SeparatorBold" },
+ { UIKitPalette.ElementsSeparatorBoldHover, "Elements_SeparatorBold-Hover" },
+ { UIKitPalette.ElementsSeparatorBoldInvert, "Elements_SeparatorBold-Invert" },
+ { UIKitPalette.ElementsSeparatorEmerald, "Elements_SeparatorEmerald" },
+ { UIKitPalette.ElementsSeparatorEmeraldInvert, "Elements_SeparatorEmerald-Invert" },
+ { UIKitPalette.ElementsSeparatorInvert, "Elements_Separator-Invert" },
+ { UIKitPalette.ElementsSeparatorMarina, "Elements_SeparatorMarina" },
+ { UIKitPalette.ElementsSeparatorMarinaInvert, "Elements_SeparatorMarina-Invert" },
+ { UIKitPalette.ElementsSeparatorRed, "Elements_SeparatorRed" },
+ { UIKitPalette.ElementsSeparatorRedInvert, "Elements_SeparatorRed-Invert" },
+ { UIKitPalette.ElementsSeparatorYellow, "Elements_SeparatorYellow" },
+ { UIKitPalette.ElementsSeparatorYellowInvert, "Elements_SeparatorYellow-Invert" },
+ { UIKitPalette.FixedColorAlternative, "FixedColor_Alternative" },
+ { UIKitPalette.FixedColorAlternative2, "FixedColor_Alternative2" },
+ { UIKitPalette.FixedColorAlternative2White, "FixedColor_Alternative2White" },
+ { UIKitPalette.FixedColorAlternative3, "FixedColor_Alternative3" },
+ { UIKitPalette.FixedColorAlternativeWhite, "FixedColor_AlternativeWhite" },
+ { UIKitPalette.FixedColorBase, "FixedColor_Base" },
+ { UIKitPalette.FixedColorBaseIcon, "FixedColor_BaseIcon" },
+ { UIKitPalette.FixedColorBaseIconWhite, "FixedColor_BaseIconWhite" },
+ { UIKitPalette.FixedColorBaseWhite, "FixedColor_BaseWhite" },
+ { UIKitPalette.FixedColorControlGrayHover, "FixedColor_Control-Gray-Hover" },
+ { UIKitPalette.FixedColorControlGrayPressed, "FixedColor_Control-Gray-Pressed" },
+ { UIKitPalette.FixedColorDisabled, "FixedColor_Disabled" },
+ { UIKitPalette.FixedColorDisabledWhite, "FixedColor_DisabledWhite" },
+ { UIKitPalette.FixedColorLine, "FixedColor_Line" },
+ { UIKitPalette.FixedColorLineWhite, "FixedColor_LineWhite" },
+ { UIKitPalette.FixedColorOverlay, "FixedColor_Overlay" },
+ { UIKitPalette.FixedColorPrimary, "FixedColor_Primary" },
+ { UIKitPalette.FixedColorPrimaryWhite, "FixedColor_PrimaryWhite" },
+ { UIKitPalette.FixedColorSecondary, "FixedColor_Secondary" },
+ { UIKitPalette.FixedColorSecondary2, "FixedColor_Secondary2" },
+ { UIKitPalette.FixedColorSecondary2White, "FixedColor_Secondary2White" },
+ { UIKitPalette.FixedColorSecondaryWhite, "FixedColor_SecondaryWhite" },
+ { UIKitPalette.FixedColorSeparator, "FixedColor_Separator" },
+ { UIKitPalette.FixedColorSeparatorBold, "FixedColor_SeparatorBold" },
+ { UIKitPalette.FixedColorSeparatorBoldWhite, "FixedColor_SeparatorBoldWhite" },
+ { UIKitPalette.FixedColorSeparatorWhite, "FixedColor_SeparatorWhite" },
+ { UIKitPalette.FixedColorSnackbar, "FixedColor_Snackbar" },
+ { UIKitPalette.StatusHigh, "Status_High" },
+ { UIKitPalette.StatusInfo, "Status_Info" },
+ { UIKitPalette.StatusLow, "Status_Low" },
+ { UIKitPalette.StatusMedium, "Status_Medium" },
+ { UIKitPalette.StatusPositive, "Status_Positive" },
+ { UIKitPalette.SurfaceColdGrey, "Surface_ColdGrey" },
+ { UIKitPalette.SurfaceEmerald, "Surface_Emerald" },
+ { UIKitPalette.SurfaceEmeraldTransparent20, "Surface_Emerald_Transparent_20" },
+ { UIKitPalette.SurfaceGrass, "Surface_Grass" },
+ { UIKitPalette.SurfaceMarengo, "Surface_Marengo" },
+ { UIKitPalette.SurfaceMarina, "Surface_Marina" },
+ { UIKitPalette.SurfaceMarinaTransparent20, "Surface_Marina_Transparent_20" },
+ { UIKitPalette.SurfaceOrange, "Surface_Orange" },
+ { UIKitPalette.SurfacePurple, "Surface_Purple" },
+ { UIKitPalette.SurfaceRed, "Surface_Red" },
+ { UIKitPalette.SurfaceRedTransparent20, "Surface_Red_Transparent_20" },
+ { UIKitPalette.SurfaceViolet, "Surface_Violet" },
+ { UIKitPalette.SurfaceYellow, "Surface_Yellow" },
+ { UIKitPalette.SurfaceYellowTransparent20, "Surface_Yellow_Transparent_20" },
+ { UIKitPalette.TagsEmerald, "Tags_Emerald" },
+ { UIKitPalette.TagsEmeraldInvert, "Tags_Emerald-Invert" },
+ { UIKitPalette.TagsGrass, "Tags_Grass" },
+ { UIKitPalette.TagsGrassInvert, "Tags_Grass-Invert" },
+ { UIKitPalette.TagsMarengo, "Tags_Marengo" },
+ { UIKitPalette.TagsMarengoInvert, "Tags_Marengo-Invert" },
+ { UIKitPalette.TagsMarina, "Tags_Marina" },
+ { UIKitPalette.TagsMarinaInvert, "Tags_Marina-Invert" },
+ { UIKitPalette.TagsNeutral, "Tags_Neutral" },
+ { UIKitPalette.TagsNeutralInvert, "Tags_Neutral-Invert" },
+ { UIKitPalette.TagsOrange, "Tags_Orange" },
+ { UIKitPalette.TagsOrangeInvert, "Tags_Orange-Invert" },
+ { UIKitPalette.TagsPurple, "Tags_Purple" },
+ { UIKitPalette.TagsPurpleInvert, "Tags_Purple-Invert" },
+ { UIKitPalette.TagsRed, "Tags_Red" },
+ { UIKitPalette.TagsRedInvert, "Tags_Red-Invert" },
+ { UIKitPalette.TagsViolet, "Tags_Violet" },
+ { UIKitPalette.TagsVioletInvert, "Tags_Violet-Invert" },
+ { UIKitPalette.TagsYellow, "Tags_Yellow" },
+ { UIKitPalette.TagsYellowInvert, "Tags_Yellow-Invert" },
+ { UIKitPalette.TextIconsElementsBase, "Text-Icons-Elements_Base" },
+ { UIKitPalette.TextIconsElementsBaseIcon, "Text-Icons-Elements_BaseIcon" },
+ { UIKitPalette.TextIconsElementsBaseIconInvert, "Text-Icons-Elements_BaseIcon-Invert" },
+ { UIKitPalette.TextIconsElementsBaseInvert, "Text-Icons-Elements_Base-Invert" },
+ { UIKitPalette.TextIconsElementsDisabled, "Text-Icons-Elements_Disabled" },
+ { UIKitPalette.TextIconsElementsDisabledInvert, "Text-Icons-Elements_Disabled-Invert" },
+ { UIKitPalette.TextIconsElementsEmerald, "Text-Icons-Elements_Emerald" },
+ { UIKitPalette.TextIconsElementsPrimary, "Text-Icons-Elements_Primary" },
+ { UIKitPalette.TextIconsElementsPrimaryInvert, "Text-Icons-Elements_Primary-Invert" },
+ { UIKitPalette.TextIconsElementsRed, "Text-Icons-Elements_Red" },
+ { UIKitPalette.TextIconsElementsSecondary, "Text-Icons-Elements_Secondary" },
+ { UIKitPalette.TextIconsElementsSecondaryInvert, "Text-Icons-Elements_Secondary-Invert" },
+ { UIKitPalette.TextIconsElementsYellow, "Text-Icons-Elements_Yellow" },
+ { UIKitPalette.Transparent, "Transparent" }
+ };
+
+ public enum UIKitPalette
+ {
+ Transparent = 0,
+ BackgroundElevation,
+ BackgroundElevationInvert,
+ BackgroundIslandElevation,
+ BackgroundIslandElevationInvert,
+ BackgroundIslandInner,
+ BackgroundIslandInnerInvert,
+ BackgroundIslandPrimary,
+ BackgroundIslandPrimaryInvert,
+ BackgroundIslandSecondary,
+ BackgroundIslandSecondaryInvert,
+ BackgroundOverlay,
+ BackgroundPrimary,
+ BackgroundPrimaryInvert,
+ BackgroundSecondary,
+ BackgroundSecondaryInvert,
+ ControlsBGBase,
+ ControlsBGBaseInvert,
+ ControlsBGEmeraldDefaultFocusLoading,
+ ControlsBGEmeraldHover,
+ ControlsBGEmeraldPressed,
+ ControlsBGGrayDefaultFocusLoading,
+ ControlsBGGrayHover,
+ ControlsBGGrayPressed,
+ ControlsBGGraySlimHover,
+ ControlsBGGraySlimPressed,
+ ControlsBGIslandElevationPressed,
+ ControlsBGIslandPrimaryPressed,
+ ControlsBGIslandSecondaryPressed,
+ ControlsBGRedDefaultFocusLoading,
+ ControlsBGRedHover,
+ ControlsBGRedPressed,
+ ControlsBGWhiteDefaultFocusLoading,
+ ControlsBGWhiteHover,
+ ControlsBGWhitePressed,
+ ElementsLine,
+ ElementsLineDanger,
+ ElementsLineDangerFocus,
+ ElementsLineDangerHover,
+ ElementsLineEmerald,
+ ElementsLineInvert,
+ ElementsSeparator,
+ ElementsSeparatorBold,
+ ElementsSeparatorBoldHover,
+ ElementsSeparatorBoldInvert,
+ ElementsSeparatorEmerald,
+ ElementsSeparatorEmeraldInvert,
+ ElementsSeparatorInvert,
+ ElementsSeparatorMarina,
+ ElementsSeparatorMarinaInvert,
+ ElementsSeparatorRed,
+ ElementsSeparatorRedInvert,
+ ElementsSeparatorYellow,
+ ElementsSeparatorYellowInvert,
+ FixedColorAlternative,
+ FixedColorAlternative2,
+ FixedColorAlternative2White,
+ FixedColorAlternative3,
+ FixedColorAlternativeWhite,
+ FixedColorBase,
+ FixedColorBaseIcon,
+ FixedColorBaseIconWhite,
+ FixedColorBaseWhite,
+ FixedColorControlGrayHover,
+ FixedColorControlGrayPressed,
+ FixedColorDisabled,
+ FixedColorDisabledWhite,
+ FixedColorLine,
+ FixedColorLineWhite,
+ FixedColorOverlay,
+ FixedColorPrimary,
+ FixedColorPrimaryWhite,
+ FixedColorSecondary,
+ FixedColorSecondary2,
+ FixedColorSecondary2White,
+ FixedColorSecondaryWhite,
+ FixedColorSeparator,
+ FixedColorSeparatorBold,
+ FixedColorSeparatorBoldWhite,
+ FixedColorSeparatorWhite,
+ FixedColorSnackbar,
+ StatusHigh,
+ StatusInfo,
+ StatusLow,
+ StatusMedium,
+ StatusPositive,
+ SurfaceColdGrey,
+ SurfaceEmerald,
+ SurfaceEmeraldTransparent20,
+ SurfaceGrass,
+ SurfaceMarengo,
+ SurfaceMarina,
+ SurfaceMarinaTransparent20,
+ SurfaceOrange,
+ SurfacePurple,
+ SurfaceRed,
+ SurfaceRedTransparent20,
+ SurfaceViolet,
+ SurfaceYellow,
+ SurfaceYellowTransparent20,
+ TagsEmerald,
+ TagsEmeraldInvert,
+ TagsGrass,
+ TagsGrassInvert,
+ TagsMarengo,
+ TagsMarengoInvert,
+ TagsMarina,
+ TagsMarinaInvert,
+ TagsNeutral,
+ TagsNeutralInvert,
+ TagsOrange,
+ TagsOrangeInvert,
+ TagsPurple,
+ TagsPurpleInvert,
+ TagsRed,
+ TagsRedInvert,
+ TagsViolet,
+ TagsVioletInvert,
+ TagsYellow,
+ TagsYellowInvert,
+ TextIconsElementsBase,
+ TextIconsElementsBaseIcon,
+ TextIconsElementsBaseIconInvert,
+ TextIconsElementsBaseInvert,
+ TextIconsElementsDisabled,
+ TextIconsElementsDisabledInvert,
+ TextIconsElementsEmerald,
+ TextIconsElementsPrimary,
+ TextIconsElementsPrimaryInvert,
+ TextIconsElementsRed,
+ TextIconsElementsSecondary,
+ TextIconsElementsSecondaryInvert,
+ TextIconsElementsYellow
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Properties/AssemblyDefinitions.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Properties/AssemblyDefinitions.cs
new file mode 100644
index 0000000..4fd6f6b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Properties/AssemblyDefinitions.cs
@@ -0,0 +1,25 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using System.Windows.Markup;
+
+[assembly: XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "Kaspirin.UI.Framework.UiKit.Styles")]
+[assembly: XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "Kaspirin.UI.Framework.UiKit.Styles.Fonts")]
+[assembly: XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "Kaspirin.UI.Framework.UiKit.Styles.Palette")]
+
+[assembly: XmlnsDefinition("http://schemas.kaspirin.com/common/visuals", "Kaspirin.UI.Framework.UiKit.Styles")]
+[assembly: XmlnsDefinition("http://schemas.kaspirin.com/common/visuals", "Kaspirin.UI.Framework.UiKit.Styles.Converters")]
+[assembly: XmlnsDefinition("http://schemas.kaspirin.com/common/visuals", "Kaspirin.UI.Framework.UiKit.Styles.Fonts")]
+[assembly: XmlnsDefinition("http://schemas.kaspirin.com/common/visuals", "Kaspirin.UI.Framework.UiKit.Styles.Palette")]
+
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dark/dictionaries/Palette.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dark/dictionaries/Palette.xaml
new file mode 100644
index 0000000..0d4dc49
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dark/dictionaries/Palette.xaml
@@ -0,0 +1,141 @@
+
+
+ #ff212328
+ #ffffffff
+ #ff2e3137
+ #ffecedef
+ #0fe1e2e3
+ #0a0f519d
+ #ff212328
+ #ffffffff
+ #ff212328
+ #ffecedef
+ #cc0d0d15
+ #ff0d0d15
+ #ffecedef
+ #ff0d0d15
+ #ffffffff
+ #ff212328
+ #ffffffff
+ #ff422446
+ #ff2c182f
+ #ff58305e
+ #0fe1e2e3
+ #1a99a8bd
+ #1fbfc5ee
+ #1abfc5ee
+ #24bfc5ee
+ #1fbfc5ee
+ #1fbfc5ee
+ #1fbfc5ee
+ #ffbc2c24
+ #ffd9423b
+ #ff92221c
+ #42d4d9f2
+ #5ce5ecfb
+ #1fbfc5ee
+ #42d4d9f2
+ #ff92221c
+ #ffbc2c24
+ #ffbc2c24
+ #ff58305e
+ #451f3247
+ #ff422446
+ #ffa88aac
+ #ff130ea4
+ #ff8d8af5
+ #ff92221c
+ #ffea9490
+ #ff9f8a14
+ #fff1e28e
+ #1fbfc5ee
+ #17294d75
+ #2bd0d7fb
+ #66d4d9f2
+ #2b1d3653
+ #ff131518
+ #ff212328
+ #ffecedef
+ #ff2e3137
+ #fff9fafa
+ #ff0d0d15
+ #99273544
+ #7de7f1fd
+ #ffffffff
+ #29ecedef
+ #47ecedef
+ #66223449
+ #5ce5ecfb
+ #451f3247
+ #42d4d9f2
+ #f2212328
+ #ff0d0d15
+ #ffebedef
+ #f22a3541
+ #cc2a3541
+ #a8e7eef7
+ #d1eff5fa
+ #17294d75
+ #2b1d3653
+ #2bd0d7fb
+ #1fbfc5ee
+ #ff34383f
+ #ffd9423b
+ #ff605bf1
+ #ffb6bec9
+ #ffebd660
+ #ff6e3c75
+ #ff21252c
+ #ff160c17
+ #338b6391
+ #ff1a2c16
+ #ff0d2935
+ #ff080646
+ #33605bf1
+ #ff422300
+ #ff1a0f3e
+ #ff3c0e0b
+ #33e26b65
+ #ff3c0b32
+ #ff443b08
+ #33ebd660
+ #ff422446
+ #ffe2d8e3
+ #ff417138
+ #ffe9f3e7
+ #ff216987
+ #ffe2f2f8
+ #ff130ea4
+ #ffe8e8fd
+ #ff4c5767
+ #fff0f2f4
+ #ffa85a00
+ #ffffeedb
+ #ff3c2390
+ #ffeeeafa
+ #ff92221c
+ #fffae6e5
+ #ff931b7b
+ #fffae5f6
+ #ff9f8a14
+ #fffcf9e8
+ #d1eff5fa
+ #f22a3541
+ #7de7f1fd
+ #99273544
+ #5ce5ecfb
+ #66223449
+ #ff6e3c75
+ #ffebedef
+ #ff0d0d15
+ #ffd9423b
+ #a8e7eef7
+ #cc2a3541
+ #ffe6cb32
+ #00000000
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/Palette.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/Palette.xaml
new file mode 100644
index 0000000..b9c110a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/Palette.xaml
@@ -0,0 +1,141 @@
+
+
+ #ffffffff
+ #ff212328
+ #ffecedef
+ #ff2e3137
+ #0a0f519d
+ #0fe1e2e3
+ #ffffffff
+ #ff212328
+ #ffecedef
+ #ff212328
+ #800d0d15
+ #ffecedef
+ #ff0d0d15
+ #ffffffff
+ #ff0d0d15
+ #ffffffff
+ #ff212328
+ #ff58305e
+ #ff422446
+ #ff6e3c75
+ #0a0f519d
+ #17294d75
+ #2b1d3653
+ #0f17495e
+ #1a17495e
+ #80ecedef
+ #80ffffff
+ #80ecedef
+ #ffd9423b
+ #ffe26b65
+ #ffbc2c24
+ #ffffffff
+ #fff9fafa
+ #ffd0d4d8
+ #451f3247
+ #ffe26b65
+ #ffe26b65
+ #ff92221c
+ #ff58305e
+ #42d4d9f2
+ #ffa88aac
+ #ff422446
+ #ff8d8af5
+ #ff130ea4
+ #ffea9490
+ #ff92221c
+ #fff1e28e
+ #ff9f8a14
+ #17294d75
+ #1fbfc5ee
+ #2b1d3653
+ #7a0d2935
+ #2bd0d7fb
+ #ff131518
+ #ff212328
+ #ffecedef
+ #ff2e3137
+ #fff9fafa
+ #ff0d0d15
+ #99273544
+ #7de7f1fd
+ #ffffffff
+ #29ecedef
+ #47ecedef
+ #66223449
+ #5ce5ecfb
+ #451f3247
+ #42d4d9f2
+ #f2212328
+ #ff0d0d15
+ #ffebedef
+ #f22a3541
+ #cc2a3541
+ #a8e7eef7
+ #d1eff5fa
+ #17294d75
+ #2b1d3653
+ #2bd0d7fb
+ #1fbfc5ee
+ #ff34383f
+ #ffbc2c24
+ #ff312aec
+ #ffb6bec9
+ #ffe6cb32
+ #ff6e3c75
+ #fff6f7f8
+ #fff1ecf1
+ #336e3c75
+ #ffeff7ee
+ #ffeaf5fa
+ #fff1f1fe
+ #33312aec
+ #fffff3e5
+ #fff5f3fc
+ #fffcefee
+ #33bc2c24
+ #fffceef9
+ #fffdfcf1
+ #33e6cb32
+ #ffe2d8e3
+ #ff422446
+ #ffe9f3e7
+ #ff417138
+ #ffe2f2f8
+ #ff216987
+ #ffe8e8fd
+ #ff130ea4
+ #fff0f2f4
+ #ff4c5767
+ #ffffeedb
+ #ffa85a00
+ #ffeeeafa
+ #ff3c2390
+ #fffae6e5
+ #ff92221c
+ #fffae5f6
+ #ff931b7b
+ #fffcf9e8
+ #ff9f8a14
+ #f22a3541
+ #d1eff5fa
+ #99273544
+ #7de7f1fd
+ #66223449
+ #5ce5ecfb
+ #ff58305e
+ #ff0d0d15
+ #ffebedef
+ #ffbc2c24
+ #cc2a3541
+ #a8e7eef7
+ #ff71630e
+ #00000000
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBadge.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBadge.xaml
new file mode 100644
index 0000000..6b3f176
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBadge.xaml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBadgeCounter.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBadgeCounter.xaml
new file mode 100644
index 0000000..14388a7
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBadgeCounter.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBadgeText.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBadgeText.xaml
new file mode 100644
index 0000000..14388a7
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBadgeText.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonBaseOutlineSecondary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonBaseOutlineSecondary.xaml
new file mode 100644
index 0000000..fbf4640
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonBaseOutlineSecondary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonBasePrimary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonBasePrimary.xaml
new file mode 100644
index 0000000..70ddb27
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonBasePrimary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonBaseSecondary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonBaseSecondary.xaml
new file mode 100644
index 0000000..979c5c3
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonBaseSecondary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonNeutralPrimary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonNeutralPrimary.xaml
new file mode 100644
index 0000000..9c81b97
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonNeutralPrimary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonStaticWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonStaticWhite.xaml
new file mode 100644
index 0000000..80b5b29
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBigButtonStaticWhite.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBulletBold.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBulletBold.xaml
new file mode 100644
index 0000000..82a198f
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBulletBold.xaml
@@ -0,0 +1,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBulletRegular.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBulletRegular.xaml
new file mode 100644
index 0000000..82a198f
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitBulletRegular.xaml
@@ -0,0 +1,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBaseGhost.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBaseGhost.xaml
new file mode 100644
index 0000000..631047c
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBaseGhost.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBaseOutlineSecondary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBaseOutlineSecondary.xaml
new file mode 100644
index 0000000..fbf4640
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBaseOutlineSecondary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBasePrimary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBasePrimary.xaml
new file mode 100644
index 0000000..70ddb27
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBasePrimary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBaseSecondary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBaseSecondary.xaml
new file mode 100644
index 0000000..979c5c3
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonBaseSecondary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonDangerGhost.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonDangerGhost.xaml
new file mode 100644
index 0000000..790a37b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonDangerGhost.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonDangerOutlineSecondary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonDangerOutlineSecondary.xaml
new file mode 100644
index 0000000..0f90c5d
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonDangerOutlineSecondary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonDangerPrimary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonDangerPrimary.xaml
new file mode 100644
index 0000000..e791ff4
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonDangerPrimary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonNeutralGhost.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonNeutralGhost.xaml
new file mode 100644
index 0000000..f6aeee5
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonNeutralGhost.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonNeutralPrimary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonNeutralPrimary.xaml
new file mode 100644
index 0000000..9c81b97
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonNeutralPrimary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonStaticWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonStaticWhite.xaml
new file mode 100644
index 0000000..80b5b29
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonStaticWhite.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonStaticWhiteOutlineSecondary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonStaticWhiteOutlineSecondary.xaml
new file mode 100644
index 0000000..cc1c698
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitButtonStaticWhiteOutlineSecondary.xaml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCarouselItemInvert.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCarouselItemInvert.xaml
new file mode 100644
index 0000000..693e425
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCarouselItemInvert.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCarouselItemNormal.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCarouselItemNormal.xaml
new file mode 100644
index 0000000..8cd4642
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCarouselItemNormal.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCheckbox.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCheckbox.xaml
new file mode 100644
index 0000000..9a7f2d8
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCheckbox.xaml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsControlGrey.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsControlGrey.xaml
new file mode 100644
index 0000000..6b94dc1
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsControlGrey.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsControlWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsControlWhite.xaml
new file mode 100644
index 0000000..6b94dc1
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsControlWhite.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsItemGrey.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsItemGrey.xaml
new file mode 100644
index 0000000..fa94e3e
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsItemGrey.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsItemWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsItemWhite.xaml
new file mode 100644
index 0000000..7b9f17a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitChipsItemWhite.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCodeInput.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCodeInput.xaml
new file mode 100644
index 0000000..a9f6f1e
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitCodeInput.xaml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitContentButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitContentButton.xaml
new file mode 100644
index 0000000..60e0b0d
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitContentButton.xaml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitContextMenu.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitContextMenu.xaml
new file mode 100644
index 0000000..70fc814
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitContextMenu.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimeInput.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimeInput.xaml
new file mode 100644
index 0000000..70fc814
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimeInput.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimePopupFooterButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimePopupFooterButton.xaml
new file mode 100644
index 0000000..b00e160
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimePopupFooterButton.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimePopupItemButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimePopupItemButton.xaml
new file mode 100644
index 0000000..44591a3
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimePopupItemButton.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimePopupPresenter.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimePopupPresenter.xaml
new file mode 100644
index 0000000..44f2eff
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDateTimePopupPresenter.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDividerMedium.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDividerMedium.xaml
new file mode 100644
index 0000000..0d240a2
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDividerMedium.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDividerRegular.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDividerRegular.xaml
new file mode 100644
index 0000000..c4e999b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitDividerRegular.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitHyperlinkDanger.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitHyperlinkDanger.xaml
new file mode 100644
index 0000000..eba5154
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitHyperlinkDanger.xaml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitHyperlinkDefault.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitHyperlinkDefault.xaml
new file mode 100644
index 0000000..0fa6760
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitHyperlinkDefault.xaml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon12.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon12.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon12.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon16.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon16.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon16.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon24.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon24.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon24.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon32.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon32.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon32.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon48.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon48.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIcon48.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIconButton16.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIconButton16.xaml
new file mode 100644
index 0000000..dbb1323
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIconButton16.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIconButton24.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIconButton24.xaml
new file mode 100644
index 0000000..dbb1323
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIconButton24.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitImageGallery.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitImageGallery.xaml
new file mode 100644
index 0000000..6eb8dfe
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitImageGallery.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitImageGalleryButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitImageGalleryButton.xaml
new file mode 100644
index 0000000..fcf929e
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitImageGalleryButton.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitImageGalleryListButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitImageGalleryListButton.xaml
new file mode 100644
index 0000000..39ba899
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitImageGalleryListButton.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityDialog.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityDialog.xaml
new file mode 100644
index 0000000..7004ada
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityDialog.xaml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityNotification.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityNotification.xaml
new file mode 100644
index 0000000..96a3e3c
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityNotification.xaml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityOverlayModal.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityOverlayModal.xaml
new file mode 100644
index 0000000..4cb3e16
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityOverlayModal.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityOverlayPromo.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityOverlayPromo.xaml
new file mode 100644
index 0000000..04530e6
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitInteractivityOverlayPromo.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIsland.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIsland.xaml
new file mode 100644
index 0000000..6edf92f
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIsland.xaml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIslandButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIslandButton.xaml
new file mode 100644
index 0000000..2a7416b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIslandButton.xaml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIslandToggleButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIslandToggleButton.xaml
new file mode 100644
index 0000000..2855242
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitIslandToggleButton.xaml
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitListMenuItem.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitListMenuItem.xaml
new file mode 100644
index 0000000..cc3bf35
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitListMenuItem.xaml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitMenuItem.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitMenuItem.xaml
new file mode 100644
index 0000000..2639138
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitMenuItem.xaml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNavigationMenuButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNavigationMenuButton.xaml
new file mode 100644
index 0000000..3326963
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNavigationMenuButton.xaml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNavigationMenuFooterButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNavigationMenuFooterButton.xaml
new file mode 100644
index 0000000..c22944a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNavigationMenuFooterButton.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNotificationHint.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNotificationHint.xaml
new file mode 100644
index 0000000..d9589a0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNotificationHint.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNotificationPanelColorful.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNotificationPanelColorful.xaml
new file mode 100644
index 0000000..4986253
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNotificationPanelColorful.xaml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNotificationPanelPlain.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNotificationPanelPlain.xaml
new file mode 100644
index 0000000..c378a46
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitNotificationPanelPlain.xaml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitPasswordInput.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitPasswordInput.xaml
new file mode 100644
index 0000000..ae3a86a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitPasswordInput.xaml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitPopupDanger.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitPopupDanger.xaml
new file mode 100644
index 0000000..c9d8d38
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitPopupDanger.xaml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitPopupStandard.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitPopupStandard.xaml
new file mode 100644
index 0000000..89ffaea
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitPopupStandard.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitProgressBarSmall.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitProgressBarSmall.xaml
new file mode 100644
index 0000000..b5f95ec
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitProgressBarSmall.xaml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitProgressBarStandart.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitProgressBarStandart.xaml
new file mode 100644
index 0000000..b5f95ec
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitProgressBarStandart.xaml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitRadiobutton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitRadiobutton.xaml
new file mode 100644
index 0000000..8b72a1b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitRadiobutton.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitRoundProgress.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitRoundProgress.xaml
new file mode 100644
index 0000000..6e13c1d
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitRoundProgress.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitRoundTimer.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitRoundTimer.xaml
new file mode 100644
index 0000000..7716f9b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitRoundTimer.xaml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitScrollBar.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitScrollBar.xaml
new file mode 100644
index 0000000..44c22b5
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitScrollBar.xaml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSearch.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSearch.xaml
new file mode 100644
index 0000000..72e053b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSearch.xaml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelect.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelect.xaml
new file mode 100644
index 0000000..504b2b1
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelect.xaml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelectItem.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelectItem.xaml
new file mode 100644
index 0000000..2434aa7
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelectItem.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelectPresenter.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelectPresenter.xaml
new file mode 100644
index 0000000..faf75f6
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelectPresenter.xaml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelectableText.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelectableText.xaml
new file mode 100644
index 0000000..fd82671
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSelectableText.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner12.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner12.xaml
new file mode 100644
index 0000000..ba4dc0b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner12.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner16.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner16.xaml
new file mode 100644
index 0000000..ba4dc0b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner16.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner24.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner24.xaml
new file mode 100644
index 0000000..ba4dc0b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner24.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner48.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner48.xaml
new file mode 100644
index 0000000..ba4dc0b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner48.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner64.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner64.xaml
new file mode 100644
index 0000000..ba4dc0b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner64.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner8.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner8.xaml
new file mode 100644
index 0000000..ba4dc0b
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSpinner8.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonBaseOutlineSecondary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonBaseOutlineSecondary.xaml
new file mode 100644
index 0000000..482f8b6
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonBaseOutlineSecondary.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonBasePrimary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonBasePrimary.xaml
new file mode 100644
index 0000000..8f428f4
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonBasePrimary.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonBaseSecondary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonBaseSecondary.xaml
new file mode 100644
index 0000000..47c31ed
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonBaseSecondary.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonDangerPrimary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonDangerPrimary.xaml
new file mode 100644
index 0000000..00af0b2
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonDangerPrimary.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonNeutralPrimary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonNeutralPrimary.xaml
new file mode 100644
index 0000000..a3aa689
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSplitButtonNeutralPrimary.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonAppleColor.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonAppleColor.xaml
new file mode 100644
index 0000000..4ba2f08
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonAppleColor.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonAppleWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonAppleWhite.xaml
new file mode 100644
index 0000000..cf50c21
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonAppleWhite.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonFacebookColor.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonFacebookColor.xaml
new file mode 100644
index 0000000..1d0a642
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonFacebookColor.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonFacebookWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonFacebookWhite.xaml
new file mode 100644
index 0000000..cf50c21
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonFacebookWhite.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonGoogleColor.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonGoogleColor.xaml
new file mode 100644
index 0000000..e3350e1
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonGoogleColor.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonGoogleWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonGoogleWhite.xaml
new file mode 100644
index 0000000..cf50c21
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonGoogleWhite.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonVKColor.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonVKColor.xaml
new file mode 100644
index 0000000..fa0b7aa
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonVKColor.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonVKWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonVKWhite.xaml
new file mode 100644
index 0000000..cf50c21
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonVKWhite.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexIntColor.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexIntColor.xaml
new file mode 100644
index 0000000..4ba2f08
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexIntColor.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexIntWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexIntWhite.xaml
new file mode 100644
index 0000000..cf50c21
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexIntWhite.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexRuColor.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexRuColor.xaml
new file mode 100644
index 0000000..4ba2f08
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexRuColor.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexRuWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexRuWhite.xaml
new file mode 100644
index 0000000..cf50c21
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSsoButtonYandexRuWhite.xaml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitStatusBulletSmall.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitStatusBulletSmall.xaml
new file mode 100644
index 0000000..1150fd3
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitStatusBulletSmall.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitStatusBulletStandard.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitStatusBulletStandard.xaml
new file mode 100644
index 0000000..1150fd3
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitStatusBulletStandard.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitStatusTag.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitStatusTag.xaml
new file mode 100644
index 0000000..aaf7d37
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitStatusTag.xaml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSwitchBig.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSwitchBig.xaml
new file mode 100644
index 0000000..57d0683
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSwitchBig.xaml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSwitchSmall.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSwitchSmall.xaml
new file mode 100644
index 0000000..57d0683
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitSwitchSmall.xaml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuItemPrimary.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuItemPrimary.xaml
new file mode 100644
index 0000000..74fb2c0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuItemPrimary.xaml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuItemSecondaryGrey.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuItemSecondaryGrey.xaml
new file mode 100644
index 0000000..73993ea
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuItemSecondaryGrey.xaml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuItemSecondaryWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuItemSecondaryWhite.xaml
new file mode 100644
index 0000000..4da2ce4
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuItemSecondaryWhite.xaml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuPrimaryGrey.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuPrimaryGrey.xaml
new file mode 100644
index 0000000..59d9cc8
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuPrimaryGrey.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuPrimaryWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuPrimaryWhite.xaml
new file mode 100644
index 0000000..08a2679
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuPrimaryWhite.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuSecondaryGrey.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuSecondaryGrey.xaml
new file mode 100644
index 0000000..59d9cc8
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuSecondaryGrey.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuSecondaryWhite.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuSecondaryWhite.xaml
new file mode 100644
index 0000000..08a2679
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTabMenuSecondaryWhite.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTagDefault.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTagDefault.xaml
new file mode 100644
index 0000000..03861b2
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTagDefault.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTagOutline.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTagOutline.xaml
new file mode 100644
index 0000000..d435db5
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTagOutline.xaml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextArea.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextArea.xaml
new file mode 100644
index 0000000..6cab701
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextArea.xaml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextInput.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextInput.xaml
new file mode 100644
index 0000000..a9f6f1e
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextInput.xaml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleBaseText.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleBaseText.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleBaseText.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleBaseTextMonospace.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleBaseTextMonospace.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleBaseTextMonospace.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleBaseTextSemibold.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleBaseTextSemibold.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleBaseTextSemibold.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleButton.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleButton.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleButton.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader1.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader1.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader1.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader2.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader2.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader2.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader3.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader3.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader3.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader3Monospace.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader3Monospace.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader3Monospace.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader4.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader4.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader4.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader5.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader5.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleHeader5.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleSmallText.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleSmallText.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleSmallText.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleSmallTextMedium.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleSmallTextMedium.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleSmallTextMedium.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleSubheader.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleSubheader.xaml
new file mode 100644
index 0000000..74dc8d0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextStyleSubheader.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextViewer.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextViewer.xaml
new file mode 100644
index 0000000..8d61686
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTextViewer.xaml
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTooltipStandard.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTooltipStandard.xaml
new file mode 100644
index 0000000..89ffaea
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/dictionaries/UiKitTooltipStandard.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitCheckbox_Icon.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitCheckbox_Icon.svg
new file mode 100644
index 0000000..edcb907
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitCheckbox_Icon.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitCheckbox_IconPartial.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitCheckbox_IconPartial.svg
new file mode 100644
index 0000000..89ec284
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitCheckbox_IconPartial.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconBottom.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconBottom.svg
new file mode 100644
index 0000000..d697da4
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconBottom.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconLeft.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconLeft.svg
new file mode 100644
index 0000000..84749b0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconLeft.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconRight.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconRight.svg
new file mode 100644
index 0000000..d8304d1
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconRight.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconTop.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconTop.svg
new file mode 100644
index 0000000..f4bf92a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupDanger_PopupArrowIconTop.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconBottom.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconBottom.svg
new file mode 100644
index 0000000..27b0108
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconBottom.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconLeft.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconLeft.svg
new file mode 100644
index 0000000..26cbd03
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconLeft.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconRight.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconRight.svg
new file mode 100644
index 0000000..63555a0
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconRight.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconTop.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconTop.svg
new file mode 100644
index 0000000..42e9138
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitPopupStandard_PopupArrowIconTop.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitRadiobutton_Icon.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitRadiobutton_Icon.svg
new file mode 100644
index 0000000..14474ac
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitRadiobutton_Icon.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner12_Icon.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner12_Icon.svg
new file mode 100644
index 0000000..33fdd58
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner12_Icon.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner16_Icon.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner16_Icon.svg
new file mode 100644
index 0000000..576bf48
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner16_Icon.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner24_Icon.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner24_Icon.svg
new file mode 100644
index 0000000..c3d0fc5
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner24_Icon.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner48_Icon.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner48_Icon.svg
new file mode 100644
index 0000000..0dc014e
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner48_Icon.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner64_Icon.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner64_Icon.svg
new file mode 100644
index 0000000..f8c499a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner64_Icon.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner8_Icon.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner8_Icon.svg
new file mode 100644
index 0000000..81ac270
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitSpinner8_Icon.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitStatusBulletSmall_BulletMark.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitStatusBulletSmall_BulletMark.svg
new file mode 100644
index 0000000..7b95c6a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitStatusBulletSmall_BulletMark.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitStatusBulletStandard_BulletMark.svg b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitStatusBulletStandard_BulletMark.svg
new file mode 100644
index 0000000..7b95c6a
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Resources/neutral/images/svg/UiKitStatusBulletStandard_BulletMark.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Visuals.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Visuals.xaml
new file mode 100644
index 0000000..92c00f6
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Visuals.xaml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Generated/Styles.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Generated/Styles.xaml
new file mode 100644
index 0000000..b05d1f8
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Generated/Styles.xaml
@@ -0,0 +1,1317 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Generated/StylesGenerated.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Generated/StylesGenerated.xaml
new file mode 100644
index 0000000..a5f5b47
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Generated/StylesGenerated.xaml
@@ -0,0 +1,9182 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Generated/Templates.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Generated/Templates.xaml
new file mode 100644
index 0000000..572975e
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Generated/Templates.xaml
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Manual/Styles.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Manual/Styles.xaml
new file mode 100644
index 0000000..a03b179
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Manual/Styles.xaml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Manual/StylesManual.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Manual/StylesManual.xaml
new file mode 100644
index 0000000..48088da
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Manual/StylesManual.xaml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Manual/Templates.xaml b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Manual/Templates.xaml
new file mode 100644
index 0000000..9bc8949
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/Xaml/Manual/Templates.xaml
@@ -0,0 +1,18 @@
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Styles/framework.uikit.styles.props b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/framework.uikit.styles.props
new file mode 100644
index 0000000..0ce9f38
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Styles/framework.uikit.styles.props
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/Common/LocalizationManagerDependentTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/Common/LocalizationManagerDependentTests.cs
new file mode 100644
index 0000000..18fb247
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/Common/LocalizationManagerDependentTests.cs
@@ -0,0 +1,56 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using System.Globalization;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.Common
+{
+ public abstract class LocalizationManagerDependentTests
+ {
+ protected void InitializeLocalizationManager(string displayCulture, string? formatCulture = default)
+ {
+ Guard.ArgumentIsNotNull(displayCulture);
+
+ var localizationManagerParameters = new LocalizationParameters(displayCulture)
+ {
+ FormatCulture = formatCulture ?? displayCulture,
+ };
+
+ LocalizationManager.Initialize(localizationManagerParameters);
+ }
+
+ protected void AssertAreEqualInDisplayCulture(string? expected, string? actual, bool ignoreCase = true)
+ => AssertAreEqualInSpecificCulture(expected, actual, LocalizationManager.Current.DisplayCulture.CultureInfo, ignoreCase);
+
+ protected void AssertAreEqualInFormatCulture(string? expected, string? actual, bool ignoreCase = true)
+ => AssertAreEqualInSpecificCulture(expected, actual, LocalizationManager.Current.FormatCulture.CultureInfo, ignoreCase);
+
+ private void AssertAreEqualInSpecificCulture(string? expected, string? actual, CultureInfo cultureInfo, bool ignoreCase)
+ => Assert.IsTrue(Equals(expected, actual, cultureInfo, ignoreCase), $"Expected: {expected}, actual: {actual}");
+
+ public static bool Equals(string? string1, string? string2, CultureInfo cultureInfo, bool ignoreCase)
+ {
+ Guard.ArgumentIsNotNull(cultureInfo);
+
+ var compareResult = cultureInfo.CompareInfo.Compare(
+ string1,
+ string2,
+ CompareOptions.IgnoreSymbols | (ignoreCase
+ ? CompareOptions.IgnoreCase
+ : CompareOptions.None));
+
+ return compareResult == 0;
+ }
+ }
+}
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/Kaspirin.UI.Framework.UiKit.Tests.csproj b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/Kaspirin.UI.Framework.UiKit.Tests.csproj
new file mode 100644
index 0000000..84bc6f8
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/Kaspirin.UI.Framework.UiKit.Tests.csproj
@@ -0,0 +1,27 @@
+
+
+ true
+ Kaspirin.UI.Framework.UiKit.Tests
+ kaspirin.ui.framework.uikit.tests
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToDoubleConverterTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToDoubleConverterTests.cs
new file mode 100644
index 0000000..b04ef9c
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToDoubleConverterTests.cs
@@ -0,0 +1,91 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Converters.BooleanConverters;
+using System;
+using System.Globalization;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.TestSuites.Converters.BooleanConverters;
+
+[TestClass]
+public sealed class BooleanToDoubleConverterTests
+{
+ [TestMethod]
+ public void Convert_TrueValue_Returns1()
+ {
+ // Arrange
+ var converter = new BooleanToDoubleConverter();
+ var value = true;
+ var targetType = typeof(double);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(1.0, result);
+ }
+
+ [TestMethod]
+ public void Convert_FalseValue_Returns0()
+ {
+ // Arrange
+ var converter = new BooleanToDoubleConverter();
+ var value = false;
+ var targetType = typeof(double);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(0.0, result);
+ }
+
+ [TestMethod]
+ public void Convert_NullValue_Returns0()
+ {
+ // Arrange
+ var converter = new BooleanToDoubleConverter();
+ var value = default(object);
+ var targetType = typeof(double);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(0.0, result);
+ }
+
+ [TestMethod]
+ public void Convert_NonBooleanValue_ThrowsException()
+ {
+ // Arrange
+ var converter = new BooleanToDoubleConverter();
+ var value = "invalid";
+ var targetType = typeof(double);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act + assert
+ Assert.ThrowsException(() => converter.Convert(value, targetType, parameter, culture));
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToIcon16ConverterTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToIcon16ConverterTests.cs
new file mode 100644
index 0000000..837f9c5
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToIcon16ConverterTests.cs
@@ -0,0 +1,91 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Converters.BooleanConverters;
+using System;
+using System.Globalization;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.TestSuites.Converters.BooleanConverters;
+
+[TestClass]
+public sealed class BooleanToIcon16ConverterTests
+{
+ [TestMethod]
+ public void Convert_TrueValue_ReturnsTrueIcon()
+ {
+ // Arrange
+ var converter = new BooleanToIcon16Converter { True = UIKitIcon_16.StatusPositive };
+ var value = true;
+ var targetType = typeof(UIKitIcon_16);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(converter.True, result);
+ }
+
+ [TestMethod]
+ public void Convert_FalseValue_ReturnsFalseIcon()
+ {
+ // Arrange
+ var converter = new BooleanToIcon16Converter { False = UIKitIcon_16.StatusDanger };
+ var value = false;
+ var targetType = typeof(UIKitIcon_16);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(converter.False, result);
+ }
+
+ [TestMethod]
+ public void Convert_NullValue_ReturnsFalseIcon()
+ {
+ // Arrange
+ var converter = new BooleanToIcon16Converter { False = UIKitIcon_16.StatusDanger };
+ var value = default(object);
+ var targetType = typeof(UIKitIcon_16);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(converter.False, result);
+ }
+
+ [TestMethod]
+ public void Convert_NonBooleanValue_ThrowsException()
+ {
+ // Arrange
+ var converter = new BooleanToIcon16Converter();
+ var value = "invalid";
+ var targetType = typeof(UIKitIcon_16);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act + assert
+ Assert.ThrowsException(() => converter.Convert(value, targetType, parameter, culture));
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToIcon24ConverterTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToIcon24ConverterTests.cs
new file mode 100644
index 0000000..315cddd
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToIcon24ConverterTests.cs
@@ -0,0 +1,91 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Converters.BooleanConverters;
+using System;
+using System.Globalization;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.TestSuites.Converters.BooleanConverters;
+
+[TestClass]
+public sealed class BooleanToIcon24ConverterTests
+{
+ [TestMethod]
+ public void Convert_TrueValue_ReturnsTrueIcon()
+ {
+ // Arrange
+ var converter = new BooleanToIcon24Converter { True = UIKitIcon_24.StatusPositive };
+ var value = true;
+ var targetType = typeof(UIKitIcon_24);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(converter.True, result);
+ }
+
+ [TestMethod]
+ public void Convert_FalseValue_ReturnsFalseIcon()
+ {
+ // Arrange
+ var converter = new BooleanToIcon24Converter { False = UIKitIcon_24.StatusDanger };
+ var value = false;
+ var targetType = typeof(UIKitIcon_24);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(converter.False, result);
+ }
+
+ [TestMethod]
+ public void Convert_NullValue_ReturnsFalseIcon()
+ {
+ // Arrange
+ var converter = new BooleanToIcon24Converter { False = UIKitIcon_24.StatusDanger };
+ var value = default(object);
+ var targetType = typeof(UIKitIcon_24);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(converter.False, result);
+ }
+
+ [TestMethod]
+ public void Convert_NonBooleanValue_ThrowsException()
+ {
+ // Arrange
+ var converter = new BooleanToIcon24Converter();
+ var value = "invalid";
+ var targetType = typeof(UIKitIcon_24);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act + assert
+ Assert.ThrowsException(() => converter.Convert(value, targetType, parameter, culture));
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToIntegerConverterTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToIntegerConverterTests.cs
new file mode 100644
index 0000000..8f81273
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToIntegerConverterTests.cs
@@ -0,0 +1,91 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Converters.BooleanConverters;
+using System;
+using System.Globalization;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.TestSuites.Converters.BooleanConverters;
+
+[TestClass]
+public sealed class BooleanToIntegerConverterTests
+{
+ [TestMethod]
+ public void Convert_TrueValue_Returns1()
+ {
+ // Arrange
+ var converter = new BooleanToIntegerConverter();
+ var value = true;
+ var targetType = typeof(int);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(1, result);
+ }
+
+ [TestMethod]
+ public void Convert_FalseValue_Returns0()
+ {
+ // Arrange
+ var converter = new BooleanToIntegerConverter();
+ var value = false;
+ var targetType = typeof(int);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(0, result);
+ }
+
+ [TestMethod]
+ public void Convert_NullValue_Returns0()
+ {
+ // Arrange
+ var converter = new BooleanToIntegerConverter();
+ var value = default(object);
+ var targetType = typeof(int);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(0, result);
+ }
+
+ [TestMethod]
+ public void Convert_NonBooleanValue_ThrowsException()
+ {
+ // Arrange
+ var converter = new BooleanToIntegerConverter();
+ var value = "invalid";
+ var targetType = typeof(int);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act + assert
+ Assert.ThrowsException(() => converter.Convert(value, targetType, parameter, culture));
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToInvertedValueConverterTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToInvertedValueConverterTests.cs
new file mode 100644
index 0000000..3326d0d
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToInvertedValueConverterTests.cs
@@ -0,0 +1,91 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Converters.BooleanConverters;
+using System;
+using System.Globalization;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.TestSuites.Converters.BooleanConverters;
+
+[TestClass]
+public sealed class BooleanToInvertedValueConverterTests
+{
+ [TestMethod]
+ public void Convert_TrueValue_ReturnsFalse()
+ {
+ // Arrange
+ var converter = new BooleanToInvertedValueConverter();
+ var value = true;
+ var targetType = typeof(bool);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(false, result);
+ }
+
+ [TestMethod]
+ public void Convert_FalseValue_ReturnsTrue()
+ {
+ // Arrange
+ var converter = new BooleanToInvertedValueConverter();
+ var value = false;
+ var targetType = typeof(bool);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(true, result);
+ }
+
+ [TestMethod]
+ public void Convert_NullValue_ReturnsTrue()
+ {
+ // Arrange
+ var converter = new BooleanToInvertedValueConverter();
+ var value = default(object);
+ var targetType = typeof(bool);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(true, result);
+ }
+
+ [TestMethod]
+ public void Convert_NonBooleanValue_ThrowsException()
+ {
+ // Arrange
+ var converter = new BooleanToInvertedValueConverter();
+ var value = "invalid";
+ var targetType = typeof(bool);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act + assert
+ Assert.ThrowsException(() => converter.Convert(value, targetType, parameter, culture));
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToObjectConverterTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToObjectConverterTests.cs
new file mode 100644
index 0000000..d6e3086
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToObjectConverterTests.cs
@@ -0,0 +1,91 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Converters.BooleanConverters;
+using System;
+using System.Globalization;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.TestSuites.Converters.BooleanConverters;
+
+[TestClass]
+public sealed class BooleanToObjectConverterTests
+{
+ [TestMethod]
+ public void Convert_TrueValue_ReturnsTrueObject()
+ {
+ // Arrange
+ var converter = new BooleanToObjectConverter { True = "True" };
+ var value = true;
+ var targetType = typeof(object);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(converter.True, result);
+ }
+
+ [TestMethod]
+ public void Convert_FalseValue_ReturnsFalseObject()
+ {
+ // Arrange
+ var converter = new BooleanToObjectConverter { False = "False" };
+ var value = false;
+ var targetType = typeof(object);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(converter.False, result);
+ }
+
+ [TestMethod]
+ public void Convert_NullValue_ReturnsFalseObject()
+ {
+ // Arrange
+ var converter = new BooleanToObjectConverter { False = "False" };
+ var value = default(object);
+ var targetType = typeof(object);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(converter.False, result);
+ }
+
+ [TestMethod]
+ public void Convert_NonBooleanValue_ThrowsException()
+ {
+ // Arrange
+ var converter = new BooleanToObjectConverter();
+ var value = "invalid";
+ var targetType = typeof(object);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act + assert
+ Assert.ThrowsException(() => converter.Convert(value, targetType, parameter, culture));
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToVisibilityConverterTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToVisibilityConverterTests.cs
new file mode 100644
index 0000000..d23e9c8
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToVisibilityConverterTests.cs
@@ -0,0 +1,92 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Converters.BooleanConverters;
+using System;
+using System.Globalization;
+using System.Windows;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.TestSuites.Converters.BooleanConverters;
+
+[TestClass]
+public sealed class BooleanToVisibilityConverterTests
+{
+ [TestMethod]
+ public void Convert_TrueValue_ReturnsVisible()
+ {
+ // Arrange
+ var converter = new BooleanToVisibilityConverter();
+ var value = true;
+ var targetType = typeof(Visibility);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(Visibility.Visible, result);
+ }
+
+ [TestMethod]
+ public void Convert_FalseValue_ReturnsCollapsed()
+ {
+ // Arrange
+ var converter = new BooleanToVisibilityConverter();
+ var value = false;
+ var targetType = typeof(Visibility);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(Visibility.Collapsed, result);
+ }
+
+ [TestMethod]
+ public void Convert_NullValue_ReturnsCollapsed()
+ {
+ // Arrange
+ var converter = new BooleanToVisibilityConverter();
+ var value = default(object);
+ var targetType = typeof(Visibility);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(Visibility.Collapsed, result);
+ }
+
+ [TestMethod]
+ public void Convert_NonBooleanValue_ThrowsException()
+ {
+ // Arrange
+ var converter = new BooleanToVisibilityConverter();
+ var value = "invalid";
+ var targetType = typeof(Visibility);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act + assert
+ Assert.ThrowsException(() => converter.Convert(value, targetType, parameter, culture));
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToVisibilityInverseConverterTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToVisibilityInverseConverterTests.cs
new file mode 100644
index 0000000..d27e6f2
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/BooleanToVisibilityInverseConverterTests.cs
@@ -0,0 +1,92 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Converters.BooleanConverters;
+using System;
+using System.Globalization;
+using System.Windows;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.TestSuites.Converters.BooleanConverters;
+
+[TestClass]
+public sealed class BooleanToVisibilityInverseConverterTests
+{
+ [TestMethod]
+ public void Convert_TrueValue_ReturnsCollapsed()
+ {
+ // Arrange
+ var converter = new BooleanToVisibilityInverseConverter();
+ var value = true;
+ var targetType = typeof(Visibility);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(Visibility.Collapsed, result);
+ }
+
+ [TestMethod]
+ public void Convert_FalseValue_ReturnsVisible()
+ {
+ // Arrange
+ var converter = new BooleanToVisibilityInverseConverter();
+ var value = false;
+ var targetType = typeof(Visibility);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(Visibility.Visible, result);
+ }
+
+ [TestMethod]
+ public void Convert_NullValue_ReturnsVisible()
+ {
+ // Arrange
+ var converter = new BooleanToVisibilityInverseConverter();
+ var value = default(object);
+ var targetType = typeof(Visibility);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(value, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, targetType);
+ Assert.AreEqual(Visibility.Visible, result);
+ }
+
+ [TestMethod]
+ public void Convert_NonBooleanValue_ThrowsException()
+ {
+ // Arrange
+ var converter = new BooleanToVisibilityInverseConverter();
+ var value = "invalid";
+ var targetType = typeof(Visibility);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act + assert
+ Assert.ThrowsException(() => converter.Convert(value, targetType, parameter, culture));
+ }
+}
\ No newline at end of file
diff --git a/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/MultiBooleanToBooleanConverterTests.cs b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/MultiBooleanToBooleanConverterTests.cs
new file mode 100644
index 0000000..48869e7
--- /dev/null
+++ b/src/framework/Kaspirin.UI.Framework.UiKit.Tests/TestSuites/Converters/BooleanConverters/MultiBooleanToBooleanConverterTests.cs
@@ -0,0 +1,213 @@
+// Copyright © 2024 AO Kaspersky Lab.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Kaspirin.UI.Framework.UiKit.Converters.BooleanConverters;
+using System;
+using System.Globalization;
+
+namespace Kaspirin.UI.Framework.UiKit.Tests.TestSuites.Converters.BooleanConverters;
+
+[TestClass]
+public sealed class MultiBooleanToBooleanConverterTests
+{
+ [TestMethod]
+ public void Convert_AllFalseValues_AndOperation_ReturnsFalse()
+ {
+ // Arrange
+ var converter = new MultiBooleanToBooleanConverter { Operation = MultiBooleanOperation.And };
+ var values = new object?[] { false, false, false };
+ var targetType = typeof(bool);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(values, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, typeof(bool));
+ Assert.AreEqual(false, result);
+ }
+
+ [TestMethod]
+ public void Convert_AllFalseValues_OrOperation_ReturnsFalse()
+ {
+ // Arrange
+ var converter = new MultiBooleanToBooleanConverter { Operation = MultiBooleanOperation.Or };
+ var values = new object?[] { false, false, false };
+ var targetType = typeof(bool);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(values, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, typeof(bool));
+ Assert.AreEqual(false, result);
+ }
+
+ [TestMethod]
+ public void Convert_AllTrueValues_AndOperation_ReturnsTrue()
+ {
+ // Arrange
+ var converter = new MultiBooleanToBooleanConverter { Operation = MultiBooleanOperation.And };
+ var values = new object?[] { true, true, true };
+ var targetType = typeof(bool);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(values, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, typeof(bool));
+ Assert.AreEqual(true, result);
+ }
+
+ [TestMethod]
+ public void Convert_AllTrueValues_OrOperation_ReturnsTrue()
+ {
+ // Arrange
+ var converter = new MultiBooleanToBooleanConverter { Operation = MultiBooleanOperation.Or };
+ var values = new object?[] { true, true, true };
+ var targetType = typeof(bool);
+ var parameter = default(object);
+ var culture = CultureInfo.InvariantCulture;
+
+ // Act
+ var result = converter.Convert(values, targetType, parameter, culture);
+
+ // Assert
+ Assert.IsInstanceOfType(result, typeof(bool));
+ Assert.AreEqual(true, result);
+ }
+
+ [TestMethod]
+ public void Convert_EmptyValues_AndOperation_ReturnsTrue()
+ {
+ // Arrange
+ var converter = new MultiBooleanToBooleanConverter { Operation = MultiBooleanOperation.And };
+ var values = Array.Empty