Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
10.0.0 source code.tar.gz | 2025-09-29 | 3.9 MB | |
10.0.0 source code.zip | 2025-09-29 | 3.9 MB | |
README.md | 2025-09-29 | 7.9 kB | |
Totals: 3 Items | 7.9 MB | 2 |
[!IMPORTANT] KeyboardKit 10 no longer has binary licenses encoded into the binary. You need a license file or a subscription license key. The license files use a new format, which means old license files no longer work. License file customer will receive an updated license file when KeyboardKit 10 is released. Until then, email us at info@keyboardkit.com to get an updated license.
KeyboardKit 10 merges KeyboardKit and KeyboardKit Pro into a single, unified SDK that targets iOS 16, macOS 13, tvOS 16, watchOS 10, and visionOS 1.
There's a new π clipboard feature that can paste text from the system clipboard, of from a collection of user-created text clips. The new clipboard keyboard type will automatically switch to a clipboard screen that can paste from the keyboard.
There's a new π fonts feature that makes it possible to type with a unicode font.
The local autocomplete service can now perform remote prediction, using requests. As a result, the remote service is not needed and has been removed and the local service has been renamed to StandardAutocompleteService
.
The Pro settings screens have been improved, and separated into feature-specific screens. These screens expose more settings than before, and there are also more keyboard settings to let you and your users configure the typing behavior.
Finally, the callout, layout and style services have been replaced by values and view modifiers and have been removed from the library. All views use environment injections for observable state instead of init injection. SOme of these changes are breaking.
π£οΈ Upgrading from KeyboardKit 9
- To upgrade from even older versions, see each major version upgrade guide.
- To upgrade from KeyboardKit 9.x to 10.x, first upgrade to KeyboardKit 9.9.
- Make sure to address all deprecation warnings (if any) before you proceed.
- You can now upgrade to KeyboardKit 10.0, using the new, unified framework.
- If you face breaking changes, see the breaking changes section at the end.
- If you get migration deprecation warnings during build, you must fix them.
- You are done upgrading when you have no more breaking changes or warnings.
β οΈ Migration Deprecation Warnings
- Most outdated parts of the library have been removed in this major version.
- Some outdated parts still remain, to help you migrate from KeyboardKit 9.9.
- These outdated parts will trigger migration deprecation warnings when used.
- Code that triggers a migration migration warning will not work as expected.
- The legacy migration deprecations will then be removed in KeyboardKit 10.1.
π¦ Package
- KeyboardKit now targets iOS 16 and aligned versions.
- The binary framework file is now almost 20% smaller.
π€ License
- KeyboardKit 10 requires a new license file format.
- KeyboardKit 10 now requires a license file or key.
- There are no binary licenses bundled with the SDK.
- License locales are no longer parsed from Gumroad.
- Basic and Silver licenses must specify locales in the keyboard app value.
π Localization
Keyboard.LayoutType
has.turkishQ
an.turkishF
values.Turkish
now supportsTurkish Q
,Turkish F
andQWERTY
.
π± App
KeyboardApp
only contains theHomeScreen
.KeyboardApp
screens have been moved to their separate namespaces.Keyboard.SettingsScreen
has been split up into individual screens.
β‘οΈ Autocomplete
Autocomplete
has a newSettingsScreen
.LocalAutocompleteService
is renamed toStandardAutocompleteService
.NextWordPredictionRequest
has been renamed toRemotePredictionRequest
.NextWordPredictionRequestType
has a newstandardRequest(for:)
builder.RemotePredictionRequest
can now create fully custom prediction requests.RemotePredictionRequest.claude
usesclaude-sonnet-4-20250514
by default.RemotePredictionRequest.claude
can now be used to perform custom requests.RemotePredictionRequest.openAI
can now be used to perform custom requests.RemotePredictionRequest.SystemPrompt
has Claude & OpenAI-specific prompts.StandardAutocompleteService
has renamed and removed some public functions.StandardAutocompleteService
has a newremoteAutocompleteRequest
property.StandardAutocompleteService
shouldPerformNextWordPredictions
is now true for empty text.
π Clipboard
Clipboard
is a new namespace with clipboard-related features.Clipboard
has aClipsScreen
for managing custom user clips.Clipboard
has aSettingsScreen
for clipboard clip settings.ClipboardContext
can be used to manage a user's custom clips.ClipboardSettings
has an auto-persistedclips
list property.
π Emojis
EmojiKeyboard
has been rewritten from the ground up.EmojiKeyboard
has rewritten styling and configurations.EmojiKeyboard
is now more performant and memory efficient.
π Fonts
Fonts
is a new namespace with font-related features.Fonts
has aSettingsScreen
that can pick a custom font.Fonts.UnicodeFont
is a model with Unicode-based font logic.
ποΈ Settings
KeyboardSettings
has a newisDoubleTapOnShiftToCapsLockEnabled
.KeyboardSettings
has a newisDoubleTapOnSpacebarToCloseSentenceEnabled
.
π¨ Themes
KeyboardTheme.blueprint
is a brand new theme.KeyboardTheme.aesthetic(.boho)
has been removed.
β¨ Misc. Features
DeviceType
has apreferredKeyboardDeviceType
.Feedback.Toggle
no longer requires a Pro license.Keyboard.BottomRow
no longer requires a Pro license.Keyboard.InputType
is a new enum to handle input types.KeyboardLayout
makes many features available to everyone.KeyboardType
has a new.clipboard
specific keyboard type.KeyboardViewStyle
has new rounded corner radius properties.KeyboardViewStyle
now applies rounded corners on Liquid Glass.View
has a.keyboardViewBackground
modifier to set the background.
π‘ Misc. Changes
- Views now use environment injection for all observable contexts.
- The library has changed many space occurences to use "spacebar".
- This makes it easier to see when it means the physical spacebar.
Autocomplete.StandardAutocompleteService
fixes unknown quotes.Keyboard.ButtonContent
no longer shows locale name for spaces.Keyboard.KeyboardType
has converted some types to input types.KeyboardApp.HomeScreen
now hides links to unavailable features.KeyboardLayout
now uses an iPad Pro layout on all iPad devices.KeyboardSettings.isKeyboardAutocollapseEnabled
default to true.KeyboardView
is easier to create with a lot fewer initializers.KeyboardView
now renders as on iPad on macOS, tvOS and visionOS.KeyboardView
now takesservices
instead of individual services.
π Bug Fixes
Autocomplete.ToolbarItem
applies quotes to unknown suggestions.AutocompleteSettings.isAutocompleteEnabled
behaves more correct.
π¨ Breaking Changes
- All previously deprecated code has been removed.
- The emoji keyboard has been refactored in breaking ways.
- The callout, layout and style services have been removed.
- The services have been replaced by values and view modifiers.
- The pro settings screens have been refactored in breaking ways.
Keyboard.BottomRow
now requires using theservices
initializer.Keyboard.KeyboardCase.auto
is no longer used and has been removed.KeyboardApp
screens have all been moved to each related namespace.KeyboardContext
deviceTypeForKeyboardIsIpadPro
has been removed.KeyboardLayout
deviceConfiguration
is converted to non-optional.Locale.ContextMenu
no longer supports using custom menu item views.RemoteAutocompleteService
has been replaced by using remote request.