diff --git a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/-companion/index.html b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/-companion/index.html index 405d7b15..1157d633 100644 --- a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/-companion/index.html +++ b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/-companion/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Companion

-
-
object Companion
+
+
object Companion
- +
diff --git a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/-emoji-initializer.html b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/-emoji-initializer.html index dde1f9fd..ebacc5cb 100644 --- a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/-emoji-initializer.html +++ b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/-emoji-initializer.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiInitializer

-
-
fun EmojiInitializer()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/create.html b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/create.html index 5805eba8..7de7d909 100644 --- a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/create.html +++ b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/create.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

create

-
-
open override fun create(context: Context): EmojiManager

Initializes and a component given the application Context

Parameters

context

The application context.

+
+
open override fun create(context: Context): EmojiManager

Initializes and a component given the application Context

Parameters

context

The application context.

- +
diff --git a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/dependencies.html b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/dependencies.html index be201128..f8122876 100644 --- a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/dependencies.html +++ b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/dependencies.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

dependencies

-
-
open override fun dependencies(): List<Class<out Initializer<*>>>

Return

A list of dependencies that this Initializer depends on. This is used to determine initialization order of Initializers.

For e.g. if a InitializerB defines another InitializerA as its dependency, then A gets initialized before B.

+
+
open override fun dependencies(): List<Class<out Initializer<*>>>

Return

A list of dependencies that this Initializer depends on. This is used to determine initialization order of Initializers.

For e.g. if a Initializer B defines another Initializer A as its dependency, then A gets initialized before B.

- +
diff --git a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/index.html b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/index.html index 43faac31..7c768359 100644 --- a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/index.html +++ b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiInitializer

-
-
class EmojiInitializer : Initializer<EmojiManager>
+
+
-
+
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiInitializer()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object Companion
+
Link copied to clipboard
+
+
+
+
+
+
object Companion
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun create(context: Context): EmojiManager

Initializes and a component given the application Context

+
Link copied to clipboard
+
+
+
+
+
+
open override fun create(context: Context): EmojiManager

Initializes and a component given the application Context

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun dependencies(): List<Class<out Initializer<*>>>
+
Link copied to clipboard
+
+
+
+
+
+
open override fun dependencies(): List<Class<out Initializer<*>>>
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun initEmojiData(assetManager: AssetManager, path: String = DEFAULT_PATH): List<Emoji>

Initializes emoji objects from an asset file in the library directory

+
Link copied to clipboard
+
+
+
+
+
+
fun initEmojiData(assetManager: AssetManager, path: String = DEFAULT_PATH): List<Emoji>

Initializes emoji objects from an asset file in the library directory

+
@@ -150,10 +165,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/init-emoji-data.html b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/init-emoji-data.html index 715ce734..bfdfbf4e 100644 --- a/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/init-emoji-data.html +++ b/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/init-emoji-data.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

initEmojiData

-
-
fun initEmojiData(assetManager: AssetManager, path: String = DEFAULT_PATH): List<Emoji>

Initializes emoji objects from an asset file in the library directory

Parameters

assetManager

provide an assert manager

path

location where emoji data can be found

Throws

when the provided assetManager cannot open path

kotlinx.serialization.SerializationException

when an error occurs during deserialization

+
+
fun initEmojiData(assetManager: AssetManager, path: String = DEFAULT_PATH): List<Emoji>

Initializes emoji objects from an asset file in the library directory

Parameters

assetManager

provide an assert manager

path

location where emoji data can be found

Throws

when the provided assetManager cannot open path

SerializationException

when an error occurs during deserialization

- +
diff --git a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-companion/index.html b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-companion/index.html index 8026bda4..ab99af79 100644 --- a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-companion/index.html +++ b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-companion/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Companion

-
-
object Companion
+
+
object Companion
- +
diff --git a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-emoji-initializer.html b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-emoji-initializer.html index 61bc53e7..96c6c4ca 100644 --- a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-emoji-initializer.html +++ b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-emoji-initializer.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiInitializer

-
-
fun EmojiInitializer()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/create.html b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/create.html index 8e0ce7be..c975fddd 100644 --- a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/create.html +++ b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/create.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

create

-
-
open fun create(context: <ERROR CLASS>): EmojiManager

Initializes and a component given the application Context

Parameters

context

The application context.

+
+
open fun create(context: <Error class: unknown class>): EmojiManager

Initializes and a component given the application Context

Parameters

context

The application context.

- +
diff --git a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/dependencies.html b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/dependencies.html index 49465065..40ff0dd9 100644 --- a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/dependencies.html +++ b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/dependencies.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

dependencies

-
-
open fun dependencies(): <ERROR CLASS>

Return

A list of dependencies that this Initializer depends on. This is used to determine initialization order of Initializers.

For e.g. if a InitializerB defines another InitializerA as its dependency, then A gets initialized before B.

+
+
open fun dependencies(): <Error class: unknown class>

Return

A list of dependencies that this Initializer depends on. This is used to determine initialization order of Initializers.

For e.g. if a Initializer B defines another Initializer A as its dependency, then A gets initialized before B.

- +
diff --git a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/index.html b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/index.html index 664d809c..18ac5566 100644 --- a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/index.html +++ b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiInitializer

-
-
class EmojiInitializer
+
+
-
+
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiInitializer()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object Companion
+
Link copied to clipboard
+
+
+
+
+
+
object Companion
+
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open fun create(context: <ERROR CLASS>): EmojiManager

Initializes and a component given the application Context

+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open fun create(context: <Error class: unknown class>): EmojiManager

Initializes and a component given the application Context

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open fun dependencies(): <ERROR CLASS>
+
Link copied to clipboard
+
+
+
+
+
+
open fun dependencies(): <Error class: unknown class>
+
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
fun initEmojiData(assetManager: <ERROR CLASS>, path: String = DEFAULT_PATH): List<Emoji>

Initializes emoji objects from an asset file in the library directory

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
fun initEmojiData(assetManager: <Error class: unknown class>, path: String = DEFAULT_PATH): List<Emoji>

Initializes emoji objects from an asset file in the library directory

+
@@ -150,10 +165,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/init-emoji-data.html b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/init-emoji-data.html index 1a64d8f9..f422ec00 100644 --- a/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/init-emoji-data.html +++ b/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/init-emoji-data.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

initEmojiData

-
-
fun initEmojiData(assetManager: <ERROR CLASS>, path: String = DEFAULT_PATH): List<Emoji>

Initializes emoji objects from an asset file in the library directory

Parameters

assetManager

provide an assert manager

path

location where emoji data can be found

Throws

when the provided assetManager cannot open path

SerializationException

when an error occurs during deserialization

+
+
fun initEmojiData(assetManager: <Error class: unknown class>, path: String = DEFAULT_PATH): List<Emoji>

Initializes emoji objects from an asset file in the library directory

Parameters

assetManager

provide an assert manager

path

location where emoji data can be found

Throws

when the provided assetManager cannot open path

SerializationException

when an error occurs during deserialization

- +
diff --git a/emojify/io.wax911.emojify.initializer/index.html b/emojify/io.wax911.emojify.initializer/index.html index c6faef0f..e8531ac6 100644 --- a/emojify/io.wax911.emojify.initializer/index.html +++ b/emojify/io.wax911.emojify.initializer/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.initializer

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
EmojiInitializer
+
+

Types

+
+
+
+
+
EmojiInitializer
-
Link copied to clipboard
-
-
-
-
-
-
class EmojiInitializer
class EmojiInitializer
class EmojiInitializer
class EmojiInitializer
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
class EmojiInitializer : Initializer<EmojiManager>
+
Link copied to clipboard
+
+
@@ -76,10 +87,11 @@

Types

- +
diff --git a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/emoji-list.html b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/emoji-list.html index 0f0c5833..51fb1dfc 100644 --- a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/emoji-list.html +++ b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/emoji-list.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emojiList

-
-
abstract val emojiList: Collection<Emoji>
+
+
abstract val emojiList: Collection<Emoji>
- +
diff --git a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-all-tags.html b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-all-tags.html index dedb232e..852c9f78 100644 --- a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-all-tags.html +++ b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-all-tags.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAllTags

-
-
abstract fun getAllTags(): Collection<String>

Returns all the tags in the database

Return

the tags

+
+
abstract fun getAllTags(): Collection<String>

Returns all the tags in the database

Return

the tags

- +
diff --git a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-by-unicode.html b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-by-unicode.html index 2e83ceaa..827e2825 100644 --- a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-by-unicode.html +++ b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-by-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getByUnicode

-
-
abstract fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

Return

the associated Emoji, null if the unicode is unknown

Parameters

unicode

the the unicode

+
+
abstract fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

Return

the associated Emoji, null if the unicode is unknown

Parameters

unicode

the the unicode

- +
diff --git a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-for-alias.html b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-for-alias.html index 193c7ace..b8139efd 100644 --- a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-for-alias.html +++ b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-for-alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias

-
-
abstract fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

Return

the associated Emoji, null if the alias is unknown

Parameters

alias

the alias

+
+
abstract fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

Return

the associated Emoji, null if the alias is unknown

Parameters

alias

the alias

- +
diff --git a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-for-tag.html b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-for-tag.html index 725d8fa8..7b9673e9 100644 --- a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-for-tag.html +++ b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/get-for-tag.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForTag

-
-
abstract fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

Return

the associated Emojis, null if the tag is unknown

Parameters

tag

the tag

+
+
abstract fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

Return

the associated Emojis, null if the tag is unknown

Parameters

tag

the tag

- +
diff --git a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/index.html b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/index.html index 64851f06..afd0995b 100644 --- a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/index.html +++ b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

IEmojiManager

-
-
interface IEmojiManager

Emoji manager contract

+
+
interface IEmojiManager

Emoji manager contract

Inheritors

-
+
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
abstract fun getAllTags(): Collection<String>

Returns all the tags in the database

+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
abstract val emojiList: Collection<Emoji>

collection of emojis

+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
abstract fun getAllTags(): Collection<String>

Returns all the tags in the database

+
+
+
+
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

abstract fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

abstract fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
abstract val emojiList: Collection<Emoji>

collection of emojis

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

+
-

Inheritors

-
-
-
-
-
EmojiManager
- -
Link copied to clipboard
-
-
-
-
-
- +
diff --git a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/is-emoji.html b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/is-emoji.html index 8c9bdd46..2e6a6cba 100644 --- a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/is-emoji.html +++ b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/is-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji

-
-
abstract fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

Return

true if the string is an emoji's unicode, false else

Parameters

string

the string to test


abstract fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

+
+
abstract fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

Return

true if the string is an emoji's unicode, false else

Parameters

string

the string to test


abstract fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

- +
diff --git a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/is-only-emojis.html b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/is-only-emojis.html index 793c43fc..e7830161 100644 --- a/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/is-only-emojis.html +++ b/emojify/io.wax911.emojify.manager/[android-jvm]-i-emoji-manager/is-only-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis

-
-
abstract fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

Return

true if the string only contains emojis, false else

Parameters

string

the string to test

+
+
abstract fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

Return

true if the string only contains emojis, false else

Parameters

string

the string to test

- +
diff --git a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/emoji-list.html b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/emoji-list.html index ea8e6666..2a214db4 100644 --- a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/emoji-list.html +++ b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/emoji-list.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emojiList

-
-
abstract val emojiList: Collection<Emoji>
+
+
abstract val emojiList: Collection<Emoji>
- +
diff --git a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-all-tags.html b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-all-tags.html index 224d7e95..1f787deb 100644 --- a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-all-tags.html +++ b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-all-tags.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAllTags

-
-
abstract fun getAllTags(): Collection<String>

Returns all the tags in the database

Return

the tags

+
+
abstract fun getAllTags(): Collection<String>

Returns all the tags in the database

Return

the tags

- +
diff --git a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-by-unicode.html b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-by-unicode.html index 67657ad3..d14331b5 100644 --- a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-by-unicode.html +++ b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-by-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getByUnicode

-
-
abstract fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

Return

the associated Emoji, null if the unicode is unknown

Parameters

unicode

the the unicode

+
+
abstract fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

Return

the associated Emoji, null if the unicode is unknown

Parameters

unicode

the the unicode

- +
diff --git a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-for-alias.html b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-for-alias.html index 4e38e499..154ddada 100644 --- a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-for-alias.html +++ b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-for-alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias

-
-
abstract fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

Return

the associated Emoji, null if the alias is unknown

Parameters

alias

the alias

+
+
abstract fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

Return

the associated Emoji, null if the alias is unknown

Parameters

alias

the alias

- +
diff --git a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-for-tag.html b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-for-tag.html index 1fc7d4cf..e7414ff1 100644 --- a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-for-tag.html +++ b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/get-for-tag.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForTag

-
-
abstract fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

Return

the associated Emojis, null if the tag is unknown

Parameters

tag

the tag

+
+
abstract fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

Return

the associated Emojis, null if the tag is unknown

Parameters

tag

the tag

- +
diff --git a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/index.html b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/index.html index 84aeeed6..3d08aa85 100644 --- a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/index.html +++ b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

IEmojiManager

-
-
interface IEmojiManager

Emoji manager contract

+
+
interface IEmojiManager

Emoji manager contract

Inheritors

-
+
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
abstract fun getAllTags(): Collection<String>

Returns all the tags in the database

+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
abstract val emojiList: Collection<Emoji>

collection of emojis

+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
abstract fun getAllTags(): Collection<String>

Returns all the tags in the database

+
+
+
+
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

abstract fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

abstract fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

-
-
-
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
abstract val emojiList: Collection<Emoji>

collection of emojis

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

+
-

Inheritors

-
-
-
-
-
EmojiManager
- -
Link copied to clipboard
-
-
-
-
-
- +
diff --git a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/is-emoji.html b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/is-emoji.html index 86477034..02965834 100644 --- a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/is-emoji.html +++ b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/is-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji

-
-
abstract fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

Return

true if the string is an emoji's unicode, false else

Parameters

string

the string to test


abstract fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

+
+
abstract fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

Return

true if the string is an emoji's unicode, false else

Parameters

string

the string to test


abstract fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

- +
diff --git a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/is-only-emojis.html b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/is-only-emojis.html index e1eecba5..32384ac9 100644 --- a/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/is-only-emojis.html +++ b/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/is-only-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis

-
-
abstract fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

Return

true if the string only contains emojis, false else

Parameters

string

the string to test

+
+
abstract fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

Return

true if the string only contains emojis, false else

Parameters

string

the string to test

- +
diff --git a/emojify/io.wax911.emojify.manager/index.html b/emojify/io.wax911.emojify.manager/index.html index 7caa3db1..9ae75501 100644 --- a/emojify/io.wax911.emojify.manager/index.html +++ b/emojify/io.wax911.emojify.manager/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.manager

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
IEmojiManager
+
+

Types

+
+
+
+
+
IEmojiManager
-
Link copied to clipboard
-
-
-
-
-
-
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager

Emoji manager contract

interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager

Emoji manager contract

+
Link copied to clipboard
+
+
+
+
+
+
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager

Emoji manager contract

interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager
interface IEmojiManager

Emoji manager contract

+
@@ -76,10 +87,11 @@

Types

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/-emoji.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/-emoji.html index 8b6794a7..86276023 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/-emoji.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Emoji

-
-
fun Emoji(    aliases: List<String>? = null,     description: String? = null,     emoji: String,     emojiChar: String,     supportsFitzpatrick: Boolean = false,     supportsGender: Boolean = false,     tags: List<String>? = null)

Parameters

aliases

a list of aliases for this emoji

description

the (optional) description of the emoji

emoji

unicode emoji

emojiChar

actual raw emoji

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

supportsGender

true if the emoji supports the gender modifiers, else false

tags

a list of tags for this emoji

+
+
constructor(aliases: List<String>? = null, description: String? = null, emoji: String, emojiChar: String, supportsFitzpatrick: Boolean = false, supportsGender: Boolean = false, tags: List<String>? = null)

Parameters

aliases

a list of aliases for this emoji

description

the (optional) description of the emoji

emoji

unicode emoji

emojiChar

actual raw emoji

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

supportsGender

true if the emoji supports the gender modifiers, else false

tags

a list of tags for this emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/aliases.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/aliases.html index beccda19..8a63478e 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/aliases.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/aliases.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

aliases

-
-
val aliases: List<String>? = null

Parameters

aliases

a list of aliases for this emoji

+
+
val aliases: List<String>? = null

Parameters

aliases

a list of aliases for this emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/description.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/description.html index bdbaf9b2..af0b402b 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/description.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/description.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

description

-
-
val description: String? = null

Parameters

description

the (optional) description of the emoji

+
+
val description: String? = null

Parameters

description

the (optional) description of the emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/emoji-char.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/emoji-char.html index 426c6d66..9e76dd58 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/emoji-char.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/emoji-char.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emojiChar

-
-
val emojiChar: String

Parameters

emojiChar

actual raw emoji

+
+

Parameters

emojiChar

actual raw emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/emoji.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/emoji.html index 0320d0a7..e4a8d0f2 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/emoji.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emoji

-
-
val emoji: String

Parameters

emoji

unicode emoji

+
+

Parameters

emoji

unicode emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/equals.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/equals.html index ec963173..2eba0c86 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/equals.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/equals.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

equals

-
-
open operator override fun equals(other: Any?): Boolean
+
+
open operator override fun equals(other: Any?): Boolean
- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/get-unicode.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/get-unicode.html index c7b0926f..ce313603 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/get-unicode.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/get-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getUnicode

-
-
fun getUnicode(fitzpatrick: Fitzpatrick?): String

Returns the unicode representation of the emoji associated with the provided Fitzpatrick modifier.

If the modifier is null, then the result is similar to unicode

Return

the unicode representation

Parameters

fitzpatrick

the fitzpatrick modifier or null

Throws

if the emoji doesn't support the Fitzpatrick modifiers

+
+
fun getUnicode(fitzpatrick: Fitzpatrick?): String

Returns the unicode representation of the emoji associated with the provided Fitzpatrick modifier.

If the modifier is null, then the result is similar to unicode

Return

the unicode representation

Parameters

fitzpatrick

the fitzpatrick modifier or null

Throws

if the emoji doesn't support the Fitzpatrick modifiers

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/hash-code.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/hash-code.html index e0b270f8..914ed15a 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/hash-code.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/hash-code.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

hashCode

-
-
open override fun hashCode(): Int
+
+
open override fun hashCode(): Int
- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/html-dec.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/html-dec.html index 36d56488..6e395843 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/html-dec.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/html-dec.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

htmlDec

-
-
var htmlDec: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/html-hex.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/html-hex.html index a8923785..f3e7969f 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/html-hex.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/html-hex.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

htmlHex

-
-
var htmlHex: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/index.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/index.html index b338c0d0..4c2602bd 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/index.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Emoji

-
-
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
+
+
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)

Parameters

aliases

a list of aliases for this emoji

description

the (optional) description of the emoji

emoji

unicode emoji

emojiChar

actual raw emoji

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

supportsGender

true if the emoji supports the gender modifiers, else false

tags

a list of tags for this emoji

-
+
-

Parameters

-
-
-
-
aliases

a list of aliases for this emoji

description

the (optional) description of the emoji

emoji

unicode emoji

emojiChar

actual raw emoji

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

supportsGender

true if the emoji supports the gender modifiers, else false

tags

a list of tags for this emoji

-
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun Emoji(    aliases: List<String>? = null,     description: String? = null,     emoji: String,     emojiChar: String,     supportsFitzpatrick: Boolean = false,     supportsGender: Boolean = false,     tags: List<String>? = null)
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
fun getUnicode(fitzpatrick: Fitzpatrick?): String

Returns the unicode representation of the emoji associated with the provided Fitzpatrick modifier.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open override fun hashCode(): Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open override fun toString(): String

Returns the String representation of the Emoji object.

+
Link copied to clipboard
+
+
+
+
+
+
constructor(aliases: List<String>? = null, description: String? = null, emoji: String, emojiChar: String, supportsFitzpatrick: Boolean = false, supportsGender: Boolean = false, tags: List<String>? = null)
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val aliases: List<String>? = null
+
Link copied to clipboard
+
+
+
+
+
+
val aliases: List<String>? = null
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val description: String? = null
+
Link copied to clipboard
+
+
+
+
+
+
val description: String? = null
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val emoji: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val emojiChar: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
var htmlDec: String

an html decimal representation of the emoji

+
Link copied to clipboard
+
+
+
+
+
+

an html decimal representation of the emoji

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
var htmlHex: String

an html decimal representation of the emoji

+
Link copied to clipboard
+
+
+
+
+
+

an html decimal representation of the emoji

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val supportsFitzpatrick: Boolean = false
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val supportsGender: Boolean = false
+
Link copied to clipboard
+
+
+
+
+
+
val supportsGender: Boolean = false
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val tags: List<String>? = null
+
Link copied to clipboard
+
+
+
+
+
+
val tags: List<String>? = null
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
var unicode: String

the unicode representation of the emoji

+
Link copied to clipboard
+
+
+
+
+
+

the unicode representation of the emoji

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
fun getUnicode(fitzpatrick: Fitzpatrick?): String

Returns the unicode representation of the emoji associated with the provided Fitzpatrick modifier.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open override fun hashCode(): Int
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open override fun toString(): String

Returns the String representation of the Emoji object.

+
@@ -326,10 +335,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/supports-fitzpatrick.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/supports-fitzpatrick.html index 110c77a4..99bdc369 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/supports-fitzpatrick.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/supports-fitzpatrick.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

supportsFitzpatrick

-
-
val supportsFitzpatrick: Boolean = false

Parameters

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

+
+

Parameters

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/supports-gender.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/supports-gender.html index 8309e98e..bd52390b 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/supports-gender.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/supports-gender.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

supportsGender

-
-
val supportsGender: Boolean = false

Parameters

supportsGender

true if the emoji supports the gender modifiers, else false

+
+
val supportsGender: Boolean = false

Parameters

supportsGender

true if the emoji supports the gender modifiers, else false

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/tags.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/tags.html index 17c7628b..915194a0 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/tags.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/tags.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

tags

-
-
val tags: List<String>? = null

Parameters

tags

a list of tags for this emoji

+
+
val tags: List<String>? = null

Parameters

tags

a list of tags for this emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/to-string.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/to-string.html index e53eac4c..df81da13 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/to-string.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/to-string.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

toString

-
-
open override fun toString(): String

Returns the String representation of the Emoji object.

Example:

Emoji {
description: 'smiling face with open mouth and smiling eyes',
supportsFitzpatrick: false,
aliases: [smile],
tags: [happy, joy, pleased],
unicode: '😄',
htmlDec: '&#128516;',
htmlHex: '&#x1f604;'
}

Return

the string representation

+
+
open override fun toString(): String

Returns the String representation of the Emoji object.

Example:

Emoji {
description: 'smiling face with open mouth and smiling eyes',
supportsFitzpatrick: false,
aliases: [smile],
tags: [happy, joy, pleased],
unicode: '😄',
htmlDec: '&#128516;',
htmlHex: '&#x1f604;'
}

Return

the string representation

- +
diff --git a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/unicode.html b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/unicode.html index 67cf7c19..1a4f6d2c 100644 --- a/emojify/io.wax911.emojify.model/[android-jvm]-emoji/unicode.html +++ b/emojify/io.wax911.emojify.model/[android-jvm]-emoji/unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

unicode

-
-
var unicode: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/-emoji.html b/emojify/io.wax911.emojify.model/[common]-emoji/-emoji.html index acd4e361..4f379f2f 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/-emoji.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Emoji

-
-
fun Emoji(    aliases: List<String>? = null,     description: String? = null,     emoji: String,     emojiChar: String,     supportsFitzpatrick: Boolean = false,     supportsGender: Boolean = false,     tags: List<String>? = null)

Parameters

aliases

a list of aliases for this emoji

description

the (optional) description of the emoji

emoji

unicode emoji

emojiChar

actual raw emoji

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

supportsGender

true if the emoji supports the gender modifiers, else false

tags

a list of tags for this emoji

+
+
constructor(aliases: List<String>? = null, description: String? = null, emoji: String, emojiChar: String, supportsFitzpatrick: Boolean = false, supportsGender: Boolean = false, tags: List<String>? = null)

Parameters

aliases

a list of aliases for this emoji

description

the (optional) description of the emoji

emoji

unicode emoji

emojiChar

actual raw emoji

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

supportsGender

true if the emoji supports the gender modifiers, else false

tags

a list of tags for this emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/aliases.html b/emojify/io.wax911.emojify.model/[common]-emoji/aliases.html index bc0d92f2..bb468c23 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/aliases.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/aliases.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

aliases

-
-
val aliases: List<String>? = null

Parameters

aliases

a list of aliases for this emoji

+
+
val aliases: List<String>? = null

Parameters

aliases

a list of aliases for this emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/description.html b/emojify/io.wax911.emojify.model/[common]-emoji/description.html index 46302ea3..fc124ded 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/description.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/description.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

description

-
-
val description: String? = null

Parameters

description

the (optional) description of the emoji

+
+
val description: String? = null

Parameters

description

the (optional) description of the emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/emoji-char.html b/emojify/io.wax911.emojify.model/[common]-emoji/emoji-char.html index 674d9f76..5e5d20b4 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/emoji-char.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/emoji-char.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emojiChar

-
-
val emojiChar: String

Parameters

emojiChar

actual raw emoji

+
+

Parameters

emojiChar

actual raw emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/emoji.html b/emojify/io.wax911.emojify.model/[common]-emoji/emoji.html index d6d00ca8..8cdff3f8 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/emoji.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emoji

-
-
val emoji: String

Parameters

emoji

unicode emoji

+
+

Parameters

emoji

unicode emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/equals.html b/emojify/io.wax911.emojify.model/[common]-emoji/equals.html index bb2d274b..38f33f63 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/equals.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/equals.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

equals

-
-
open operator override fun equals(other: Any?): Boolean
+
+
open operator override fun equals(other: Any?): Boolean
- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/get-unicode.html b/emojify/io.wax911.emojify.model/[common]-emoji/get-unicode.html index dffc0381..76d63012 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/get-unicode.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/get-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getUnicode

-
-
fun getUnicode(fitzpatrick: Fitzpatrick?): String

Returns the unicode representation of the emoji associated with the provided Fitzpatrick modifier.

If the modifier is null, then the result is similar to unicode

Return

the unicode representation

Parameters

fitzpatrick

the fitzpatrick modifier or null

Throws

if the emoji doesn't support the Fitzpatrick modifiers

+
+
fun getUnicode(fitzpatrick: Fitzpatrick?): String

Returns the unicode representation of the emoji associated with the provided Fitzpatrick modifier.

If the modifier is null, then the result is similar to unicode

Return

the unicode representation

Parameters

fitzpatrick

the fitzpatrick modifier or null

Throws

if the emoji doesn't support the Fitzpatrick modifiers

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/hash-code.html b/emojify/io.wax911.emojify.model/[common]-emoji/hash-code.html index 649308fb..8c35661b 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/hash-code.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/hash-code.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

hashCode

-
-
open override fun hashCode(): Int
+
+
open override fun hashCode(): Int
- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/html-dec.html b/emojify/io.wax911.emojify.model/[common]-emoji/html-dec.html index dbd22f9d..c18cc23b 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/html-dec.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/html-dec.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

htmlDec

-
-
var htmlDec: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/html-hex.html b/emojify/io.wax911.emojify.model/[common]-emoji/html-hex.html index f3b8579b..8678dc20 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/html-hex.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/html-hex.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

htmlHex

-
-
var htmlHex: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/index.html b/emojify/io.wax911.emojify.model/[common]-emoji/index.html index 08a3819e..41629805 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/index.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Emoji

-
-
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
+
+
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)

Parameters

aliases

a list of aliases for this emoji

description

the (optional) description of the emoji

emoji

unicode emoji

emojiChar

actual raw emoji

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

supportsGender

true if the emoji supports the gender modifiers, else false

tags

a list of tags for this emoji

-
+
-

Parameters

-
-
-
-
aliases

a list of aliases for this emoji

description

the (optional) description of the emoji

emoji

unicode emoji

emojiChar

actual raw emoji

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

supportsGender

true if the emoji supports the gender modifiers, else false

tags

a list of tags for this emoji

-
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun Emoji(    aliases: List<String>? = null,     description: String? = null,     emoji: String,     emojiChar: String,     supportsFitzpatrick: Boolean = false,     supportsGender: Boolean = false,     tags: List<String>? = null)
-
-
-
-
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open operator override fun equals(other: Any?): Boolean
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
fun getUnicode(fitzpatrick: Fitzpatrick?): String

Returns the unicode representation of the emoji associated with the provided Fitzpatrick modifier.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open override fun hashCode(): Int
-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open override fun toString(): String

Returns the String representation of the Emoji object.

+
Link copied to clipboard
+
+
+
+
+
+
constructor(aliases: List<String>? = null, description: String? = null, emoji: String, emojiChar: String, supportsFitzpatrick: Boolean = false, supportsGender: Boolean = false, tags: List<String>? = null)
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val aliases: List<String>? = null
+
Link copied to clipboard
+
+
+
+
+
+
val aliases: List<String>? = null
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val description: String? = null
+
Link copied to clipboard
+
+
+
+
+
+
val description: String? = null
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val emoji: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val emojiChar: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
var htmlDec: String

an html decimal representation of the emoji

+
Link copied to clipboard
+
+
+
+
+
+

an html decimal representation of the emoji

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
var htmlHex: String

an html decimal representation of the emoji

+
Link copied to clipboard
+
+
+
+
+
+

an html decimal representation of the emoji

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val supportsFitzpatrick: Boolean = false
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val supportsGender: Boolean = false
+
Link copied to clipboard
+
+
+
+
+
+
val supportsGender: Boolean = false
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val tags: List<String>? = null
+
Link copied to clipboard
+
+
+
+
+
+
val tags: List<String>? = null
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
var unicode: String

the unicode representation of the emoji

+
Link copied to clipboard
+
+
+
+
+
+

the unicode representation of the emoji

+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open operator override fun equals(other: Any?): Boolean
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
fun getUnicode(fitzpatrick: Fitzpatrick?): String

Returns the unicode representation of the emoji associated with the provided Fitzpatrick modifier.

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open override fun hashCode(): Int
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open override fun toString(): String

Returns the String representation of the Emoji object.

+
@@ -326,10 +335,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/supports-fitzpatrick.html b/emojify/io.wax911.emojify.model/[common]-emoji/supports-fitzpatrick.html index af51dfdf..38332abf 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/supports-fitzpatrick.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/supports-fitzpatrick.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

supportsFitzpatrick

-
-
val supportsFitzpatrick: Boolean = false

Parameters

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

+
+

Parameters

supportsFitzpatrick

true if the emoji supports the Fitzpatrick modifiers, else false

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/supports-gender.html b/emojify/io.wax911.emojify.model/[common]-emoji/supports-gender.html index dbdd0a64..f145d4cd 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/supports-gender.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/supports-gender.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

supportsGender

-
-
val supportsGender: Boolean = false

Parameters

supportsGender

true if the emoji supports the gender modifiers, else false

+
+
val supportsGender: Boolean = false

Parameters

supportsGender

true if the emoji supports the gender modifiers, else false

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/tags.html b/emojify/io.wax911.emojify.model/[common]-emoji/tags.html index f91d89e7..d7050722 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/tags.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/tags.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

tags

-
-
val tags: List<String>? = null

Parameters

tags

a list of tags for this emoji

+
+
val tags: List<String>? = null

Parameters

tags

a list of tags for this emoji

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/to-string.html b/emojify/io.wax911.emojify.model/[common]-emoji/to-string.html index e1cf3b00..0b5dd542 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/to-string.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/to-string.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

toString

-
-
open override fun toString(): String

Returns the String representation of the Emoji object.

Example:

Emoji {
description: 'smiling face with open mouth and smiling eyes',
supportsFitzpatrick: false,
aliases: [smile],
tags: [happy, joy, pleased],
unicode: '😄',
htmlDec: '&#128516;',
htmlHex: '&#x1f604;'
}

Return

the string representation

+
+
open override fun toString(): String

Returns the String representation of the Emoji object.

Example:

Emoji {
description: 'smiling face with open mouth and smiling eyes',
supportsFitzpatrick: false,
aliases: [smile],
tags: [happy, joy, pleased],
unicode: '😄',
htmlDec: '&#128516;',
htmlHex: '&#x1f604;'
}

Return

the string representation

- +
diff --git a/emojify/io.wax911.emojify.model/[common]-emoji/unicode.html b/emojify/io.wax911.emojify.model/[common]-emoji/unicode.html index e4b04a82..0494a212 100644 --- a/emojify/io.wax911.emojify.model/[common]-emoji/unicode.html +++ b/emojify/io.wax911.emojify.model/[common]-emoji/unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

unicode

-
-
var unicode: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.model/index.html b/emojify/io.wax911.emojify.model/index.html index 886d9163..875e4780 100644 --- a/emojify/io.wax911.emojify.model/index.html +++ b/emojify/io.wax911.emojify.model/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.model

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
Emoji
+
+

Types

+
+
+
+
+
Emoji
-
Link copied to clipboard
-
-
-
-
-
-
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
data class Emoji(    val aliases: List<String>? = null,     val description: String? = null,     val emoji: String,     val emojiChar: String,     val supportsFitzpatrick: Boolean = false,     val supportsGender: Boolean = false,     val tags: List<String>? = null)
+
Link copied to clipboard
+
+
+
+
+
+
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
@Serializable
data class Emoji(val aliases: List<String>? = null, val description: String? = null, val emoji: String, val emojiChar: String, val supportsFitzpatrick: Boolean = false, val supportsGender: Boolean = false, val tags: List<String>? = null)
+
@@ -76,10 +87,11 @@

Types

- +
diff --git a/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-i-g-n-o-r-e/index.html b/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-i-g-n-o-r-e/index.html index 74ff68f6..4288b1fd 100644 --- a/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-i-g-n-o-r-e/index.html +++ b/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-i-g-n-o-r-e/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

IGNORE

-
-
object IGNORE : FitzpatrickAction

Ignores the Fitzpatrick modifier (it will stay in the string)

+
+

Ignores the Fitzpatrick modifier (it will stay in the string)

- +
diff --git a/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-p-a-r-s-e/index.html b/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-p-a-r-s-e/index.html index 209819a6..298cad14 100644 --- a/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-p-a-r-s-e/index.html +++ b/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-p-a-r-s-e/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

PARSE

-
-
object PARSE : FitzpatrickAction

Tries to match the Fitzpatrick modifier with the previous emoji

+
+

Tries to match the Fitzpatrick modifier with the previous emoji

- +
diff --git a/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-r-e-m-o-v-e/index.html b/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-r-e-m-o-v-e/index.html index bce3187e..3644ea00 100644 --- a/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-r-e-m-o-v-e/index.html +++ b/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/-r-e-m-o-v-e/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

REMOVE

-
-
object REMOVE : FitzpatrickAction

Removes the Fitzpatrick modifier from the string

+
+

Removes the Fitzpatrick modifier from the string

- +
diff --git a/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/index.html b/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/index.html index 134f4d0d..ec84e154 100644 --- a/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/index.html +++ b/emojify/io.wax911.emojify.parser.action/[android-jvm]-fitzpatrick-action/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

FitzpatrickAction

-
-
sealed class FitzpatrickAction

Used to indicate what should be done when a Fitzpatrick modifier is found.

+
+
sealed class FitzpatrickAction

Used to indicate what should be done when a Fitzpatrick modifier is found.

Inheritors

-
+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object IGNORE : FitzpatrickAction

Ignores the Fitzpatrick modifier (it will stay in the string)

+
Link copied to clipboard
+
+
+
+
+
+

Ignores the Fitzpatrick modifier (it will stay in the string)

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object PARSE : FitzpatrickAction

Tries to match the Fitzpatrick modifier with the previous emoji

+
Link copied to clipboard
+
+
+
+
+
+

Tries to match the Fitzpatrick modifier with the previous emoji

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object REMOVE : FitzpatrickAction

Removes the Fitzpatrick modifier from the string

+
Link copied to clipboard
+
+
+
+
+
+

Removes the Fitzpatrick modifier from the string

+
-

Inheritors

-
-
-
-
-
PARSE
- -
Link copied to clipboard
-
-
-
-
- -
-
-
-
REMOVE
- -
Link copied to clipboard
-
-
-
-
- -
-
-
-
IGNORE
- -
Link copied to clipboard
-
-
-
-
-
- +
diff --git a/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-i-g-n-o-r-e/index.html b/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-i-g-n-o-r-e/index.html index 8e5e3878..a3c0048d 100644 --- a/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-i-g-n-o-r-e/index.html +++ b/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-i-g-n-o-r-e/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

IGNORE

-
-
object IGNORE : FitzpatrickAction

Ignores the Fitzpatrick modifier (it will stay in the string)

+
+

Ignores the Fitzpatrick modifier (it will stay in the string)

- +
diff --git a/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-p-a-r-s-e/index.html b/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-p-a-r-s-e/index.html index aa4b7876..3b64f9b8 100644 --- a/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-p-a-r-s-e/index.html +++ b/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-p-a-r-s-e/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

PARSE

-
-
object PARSE : FitzpatrickAction

Tries to match the Fitzpatrick modifier with the previous emoji

+
+

Tries to match the Fitzpatrick modifier with the previous emoji

- +
diff --git a/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-r-e-m-o-v-e/index.html b/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-r-e-m-o-v-e/index.html index 26e08c7f..14c83f81 100644 --- a/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-r-e-m-o-v-e/index.html +++ b/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/-r-e-m-o-v-e/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

REMOVE

-
-
object REMOVE : FitzpatrickAction

Removes the Fitzpatrick modifier from the string

+
+

Removes the Fitzpatrick modifier from the string

- +
diff --git a/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/index.html b/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/index.html index 2dcb8602..c61d21ce 100644 --- a/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/index.html +++ b/emojify/io.wax911.emojify.parser.action/[common]-fitzpatrick-action/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

FitzpatrickAction

-
-
sealed class FitzpatrickAction

Used to indicate what should be done when a Fitzpatrick modifier is found.

+
+
sealed class FitzpatrickAction

Used to indicate what should be done when a Fitzpatrick modifier is found.

Inheritors

-
+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object IGNORE : FitzpatrickAction

Ignores the Fitzpatrick modifier (it will stay in the string)

+
Link copied to clipboard
+
+
+
+
+
+

Ignores the Fitzpatrick modifier (it will stay in the string)

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object PARSE : FitzpatrickAction

Tries to match the Fitzpatrick modifier with the previous emoji

+
Link copied to clipboard
+
+
+
+
+
+

Tries to match the Fitzpatrick modifier with the previous emoji

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object REMOVE : FitzpatrickAction

Removes the Fitzpatrick modifier from the string

+
Link copied to clipboard
+
+
+
+
+
+

Removes the Fitzpatrick modifier from the string

+
-

Inheritors

-
-
-
-
-
PARSE
- -
Link copied to clipboard
-
-
-
-
- -
-
-
-
REMOVE
- -
Link copied to clipboard
-
-
-
-
- -
-
-
-
IGNORE
- -
Link copied to clipboard
-
-
-
-
-
- +
diff --git a/emojify/io.wax911.emojify.parser.action/index.html b/emojify/io.wax911.emojify.parser.action/index.html index cb8de968..cf129b18 100644 --- a/emojify/io.wax911.emojify.parser.action/index.html +++ b/emojify/io.wax911.emojify.parser.action/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.parser.action

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
FitzpatrickAction
+
+

Types

+
+
+
+
+
FitzpatrickAction
-
Link copied to clipboard
-
-
-
-
-
-
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction

Used to indicate what should be done when a Fitzpatrick modifier is found.

sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction

Used to indicate what should be done when a Fitzpatrick modifier is found.

+
Link copied to clipboard
+
+
+
+
+
+
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction

Used to indicate what should be done when a Fitzpatrick modifier is found.

sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction
sealed class FitzpatrickAction

Used to indicate what should be done when a Fitzpatrick modifier is found.

+
@@ -76,10 +87,11 @@

Types

- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/emoji-start-index.html b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/emoji-start-index.html index c9a6d40f..a033b491 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/emoji-start-index.html +++ b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/emoji-start-index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emojiStartIndex

-
-
val emojiStartIndex: Int

Parameters

emojiStartIndex
+
+

Parameters

emojiStartIndex
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/emoji.html b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/emoji.html index 965d47fe..59075007 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/emoji.html +++ b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emoji

-
-
val emoji: Emoji?

Parameters

emoji
+
+
val emoji: Emoji?

Parameters

emoji
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-end-index.html b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-end-index.html index 9d1158ed..94f36b31 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-end-index.html +++ b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-end-index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickEndIndex

-
-
val fitzpatrickEndIndex: Int
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-type.html b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-type.html index 60b525e5..a96e9f83 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-type.html +++ b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-type.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickType

-
-
val fitzpatrickType: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-unicode.html b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-unicode.html index 88a398d8..463d132e 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-unicode.html +++ b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/fitzpatrick-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickUnicode

-
-
val fitzpatrickUnicode: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/has-fitzpatrick.html b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/has-fitzpatrick.html index 5390eb44..0a79113b 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/has-fitzpatrick.html +++ b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/has-fitzpatrick.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

hasFitzpatrick

-
-
fun hasFitzpatrick(): Boolean
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/index.html b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/index.html index 92731f3e..7b78cca8 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/index.html +++ b/emojify/io.wax911.emojify.parser.candidate/[android-jvm]-unicode-candidate/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

UnicodeCandidate

-
-
class UnicodeCandidate

Emoji candidate

+
+

Emoji candidate

Parameters

emoji
fitzpatrick
emojiStartIndex
-
+
-

Parameters

-
-
-
-
emoji
fitzpatrick
emojiStartIndex
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
fun hasFitzpatrick(): Boolean
-
-
-
-
-
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val emoji: Emoji?
+
Link copied to clipboard
+
+
+
+
+
+
val emoji: Emoji?
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val emojiStartIndex: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val fitzpatrickEndIndex: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val fitzpatrickType: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val fitzpatrickUnicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
+
@@ -171,10 +178,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/emoji-start-index.html b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/emoji-start-index.html index db2a2615..88f45ed5 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/emoji-start-index.html +++ b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/emoji-start-index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emojiStartIndex

-
-
val emojiStartIndex: Int

Parameters

emojiStartIndex
+
+

Parameters

emojiStartIndex
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/emoji.html b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/emoji.html index 950d026c..6132463e 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/emoji.html +++ b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emoji

-
-
val emoji: Emoji?

Parameters

emoji
+
+
val emoji: Emoji?

Parameters

emoji
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-end-index.html b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-end-index.html index e24854e1..0e3f6f3a 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-end-index.html +++ b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-end-index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickEndIndex

-
-
val fitzpatrickEndIndex: Int
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-type.html b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-type.html index 88aa5b9d..dc4df859 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-type.html +++ b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-type.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickType

-
-
val fitzpatrickType: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-unicode.html b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-unicode.html index 3eb18991..a74b63ed 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-unicode.html +++ b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/fitzpatrick-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickUnicode

-
-
val fitzpatrickUnicode: String
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/has-fitzpatrick.html b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/has-fitzpatrick.html index fcca4248..8dc06fb4 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/has-fitzpatrick.html +++ b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/has-fitzpatrick.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

hasFitzpatrick

-
-
fun hasFitzpatrick(): Boolean
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/index.html b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/index.html index 6125ba5c..da9b1d86 100644 --- a/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/index.html +++ b/emojify/io.wax911.emojify.parser.candidate/[common]-unicode-candidate/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

UnicodeCandidate

-
-
class UnicodeCandidate

Emoji candidate

+
+

Emoji candidate

Parameters

emoji
fitzpatrick
emojiStartIndex
-
+
-

Parameters

-
-
-
-
emoji
fitzpatrick
emojiStartIndex
-
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
fun hasFitzpatrick(): Boolean
-
-
-
-
-
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val emoji: Emoji?
+
Link copied to clipboard
+
+
+
+
+
+
val emoji: Emoji?
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val emojiStartIndex: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val fitzpatrickEndIndex: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val fitzpatrickType: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val fitzpatrickUnicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
+
@@ -171,10 +178,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.parser.candidate/index.html b/emojify/io.wax911.emojify.parser.candidate/index.html index 3e5b2b1a..29ea3d8e 100644 --- a/emojify/io.wax911.emojify.parser.candidate/index.html +++ b/emojify/io.wax911.emojify.parser.candidate/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.parser.candidate

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
UnicodeCandidate
+
+

Types

+
+
+
+
+
UnicodeCandidate
-
Link copied to clipboard
-
-
-
-
-
-
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate

Emoji candidate

class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate
class UnicodeCandidate

Emoji candidate

+
Link copied to clipboard
+
+
@@ -76,10 +87,11 @@

Types

- +
diff --git a/emojify/io.wax911.emojify.parser.common/[android-jvm]-emoji-transformer/index.html b/emojify/io.wax911.emojify.parser.common/[android-jvm]-emoji-transformer/index.html index ae0d8886..b231b135 100644 --- a/emojify/io.wax911.emojify.parser.common/[android-jvm]-emoji-transformer/index.html +++ b/emojify/io.wax911.emojify.parser.common/[android-jvm]-emoji-transformer/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiTransformer

-
-
interface EmojiTransformer
+
+
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?
+
Link copied to clipboard
+
+
+
+
+
+
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?
+
@@ -78,10 +89,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.parser.common/[android-jvm]-emoji-transformer/transform.html b/emojify/io.wax911.emojify.parser.common/[android-jvm]-emoji-transformer/transform.html index 03fe6549..f6c750af 100644 --- a/emojify/io.wax911.emojify.parser.common/[android-jvm]-emoji-transformer/transform.html +++ b/emojify/io.wax911.emojify.parser.common/[android-jvm]-emoji-transformer/transform.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

transform

-
-
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?
+
+
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?
- +
diff --git a/emojify/io.wax911.emojify.parser.common/[common]-emoji-transformer/index.html b/emojify/io.wax911.emojify.parser.common/[common]-emoji-transformer/index.html index 3ee45172..433ed1a8 100644 --- a/emojify/io.wax911.emojify.parser.common/[common]-emoji-transformer/index.html +++ b/emojify/io.wax911.emojify.parser.common/[common]-emoji-transformer/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiTransformer

-
-
interface EmojiTransformer
+
+
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?
+
Link copied to clipboard
+
+
+
+
+
+
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?
+
@@ -78,10 +89,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.parser.common/[common]-emoji-transformer/transform.html b/emojify/io.wax911.emojify.parser.common/[common]-emoji-transformer/transform.html index 54d276d3..e1ad50fa 100644 --- a/emojify/io.wax911.emojify.parser.common/[common]-emoji-transformer/transform.html +++ b/emojify/io.wax911.emojify.parser.common/[common]-emoji-transformer/transform.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

transform

-
-
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?
+
+
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?
- +
diff --git a/emojify/io.wax911.emojify.parser.common/index.html b/emojify/io.wax911.emojify.parser.common/index.html index 9942574c..e8803f74 100644 --- a/emojify/io.wax911.emojify.parser.common/index.html +++ b/emojify/io.wax911.emojify.parser.common/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.parser.common

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
EmojiTransformer
+
+

Types

+
+
+
+
+
EmojiTransformer
-
Link copied to clipboard
-
-
-
-
-
-
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -76,10 +87,11 @@

Types

- +
diff --git a/emojify/io.wax911.emojify.parser.transformer/[android-jvm]-emoji-transformer/index.html b/emojify/io.wax911.emojify.parser.transformer/[android-jvm]-emoji-transformer/index.html index 44108779..01365b8f 100644 --- a/emojify/io.wax911.emojify.parser.transformer/[android-jvm]-emoji-transformer/index.html +++ b/emojify/io.wax911.emojify.parser.transformer/[android-jvm]-emoji-transformer/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiTransformer

-
-
interface EmojiTransformer

Emoji transformer contract

+
+

Emoji transformer contract

-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?

Given a unicodeCandidate applies a transformation

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?

Given a unicodeCandidate applies a transformation

+
@@ -78,10 +89,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.parser.transformer/[android-jvm]-emoji-transformer/transform.html b/emojify/io.wax911.emojify.parser.transformer/[android-jvm]-emoji-transformer/transform.html index f195b7c9..70a933a6 100644 --- a/emojify/io.wax911.emojify.parser.transformer/[android-jvm]-emoji-transformer/transform.html +++ b/emojify/io.wax911.emojify.parser.transformer/[android-jvm]-emoji-transformer/transform.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

transform

-
-
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?

Given a unicodeCandidate applies a transformation

Return

Transformation result for the unicodeCandidate

+
+
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?

Given a unicodeCandidate applies a transformation

Return

Transformation result for the unicodeCandidate

- +
diff --git a/emojify/io.wax911.emojify.parser.transformer/[common]-emoji-transformer/index.html b/emojify/io.wax911.emojify.parser.transformer/[common]-emoji-transformer/index.html index 3de57df0..6181475a 100644 --- a/emojify/io.wax911.emojify.parser.transformer/[common]-emoji-transformer/index.html +++ b/emojify/io.wax911.emojify.parser.transformer/[common]-emoji-transformer/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiTransformer

-
-
interface EmojiTransformer

Emoji transformer contract

+
+

Emoji transformer contract

-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?

Given a unicodeCandidate applies a transformation

+
Link copied to clipboard
+
+
+
+
+
+
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?

Given a unicodeCandidate applies a transformation

+
@@ -78,10 +89,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.parser.transformer/[common]-emoji-transformer/transform.html b/emojify/io.wax911.emojify.parser.transformer/[common]-emoji-transformer/transform.html index 8b50fdeb..61dec161 100644 --- a/emojify/io.wax911.emojify.parser.transformer/[common]-emoji-transformer/transform.html +++ b/emojify/io.wax911.emojify.parser.transformer/[common]-emoji-transformer/transform.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

transform

-
-
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?

Given a unicodeCandidate applies a transformation

Return

Transformation result for the unicodeCandidate

+
+
abstract fun transform(unicodeCandidate: UnicodeCandidate): String?

Given a unicodeCandidate applies a transformation

Return

Transformation result for the unicodeCandidate

- +
diff --git a/emojify/io.wax911.emojify.parser.transformer/index.html b/emojify/io.wax911.emojify.parser.transformer/index.html index f30a8ba7..acd00fe3 100644 --- a/emojify/io.wax911.emojify.parser.transformer/index.html +++ b/emojify/io.wax911.emojify.parser.transformer/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.parser.transformer

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
EmojiTransformer
+
+

Types

+
+
+
+
+
EmojiTransformer
-
Link copied to clipboard
-
-
-
-
-
-
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer

Emoji transformer contract

interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer
interface EmojiTransformer

Emoji transformer contract

+
Link copied to clipboard
+
+
+
+
+
+

Emoji transformer contract

Emoji transformer contract

+
@@ -76,10 +87,11 @@

Types

- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]extract-emojis.html b/emojify/io.wax911.emojify.parser/[android-jvm]extract-emojis.html index d93493bf..a9296407 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]extract-emojis.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]extract-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

extractEmojis

-
-
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]parse-from-unicode.html b/emojify/io.wax911.emojify.parser/[android-jvm]parse-from-unicode.html index ce0b9661..7ef9d30b 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]parse-from-unicode.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]parse-from-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseFromUnicode

-
-
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

Return

input string with all emojis transformed

Parameters

input

the string to process

transformer

emoji transformer to apply to each emoji

+
+

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

Return

input string with all emojis transformed

Parameters

input

the string to process

transformer

emoji transformer to apply to each emoji

- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-aliases.html b/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-aliases.html index 35212c87..0b40ed07 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-aliases.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-aliases.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases

-
-
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

😄 will be replaced by :smile:

When a fitzpatrick modifier is present with a PARSE action, a "|" will be appended to the alias, with the fitzpatrick type.

👦🏿 will be replaced by :boy|type_6:

When a fitzpatrick modifier is present with a REMOVE action, the modifier will be deleted.

👦🏿 will be replaced by :boy:

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored.

👦🏿 will be replaced by :boy:🏿

Return

the string with the emojis replaced by their alias.

See also

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

+
+
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

😄 will be replaced by :smile:

When a fitzpatrick modifier is present with a PARSE action, a "|" will be appended to the alias, with the fitzpatrick type.

👦🏿 will be replaced by :boy|type_6:

When a fitzpatrick modifier is present with a REMOVE action, the modifier will be deleted.

👦🏿 will be replaced by :boy:

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored.

👦🏿 will be replaced by :boy:🏿

Return

the string with the emojis replaced by their alias.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

See also

- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-html-decimal.html b/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-html-decimal.html index 9b26c8cd..5fbb9695 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-html-decimal.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-html-decimal.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal

-
-
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

😄 will be replaced by &#128516;

When a fitzpatrick modifier is present with a PARSE or REMOVE action, the modifier will be deleted from the string.

👦🏿 will be replaced by &#128102;

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored and will remain in the string.

👦🏿 will be replaced by &#128102;🏿

Return

the string with the emojis replaced by their html decimal representation.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

+
+
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

😄 will be replaced by &#128516;

When a fitzpatrick modifier is present with a PARSE or REMOVE action, the modifier will be deleted from the string.

👦🏿 will be replaced by &#128102;

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored and will remain in the string.

👦🏿 will be replaced by &#128102;🏿

Return

the string with the emojis replaced by their html decimal representation.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-html-hexadecimal.html b/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-html-hexadecimal.html index 48415fa2..69412fe7 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-html-hexadecimal.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-html-hexadecimal.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal

-
-
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

'' will be replaced by &#x1f466;

When a fitzpatrick modifier is present with a PARSE or REMOVE action, the modifier will be deleted.

👦🏿 will be replaced by &#x1f466;

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored and will remain in the string.

👦🏿 will be replaced by &#x1f466;🏿

Return

the string with the emojis replaced by their html hex representation.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

+
+
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

'' will be replaced by &#x1f466;

When a fitzpatrick modifier is present with a PARSE or REMOVE action, the modifier will be deleted.

👦🏿 will be replaced by &#x1f466;

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored and will remain in the string.

👦🏿 will be replaced by &#x1f466;🏿

Return

the string with the emojis replaced by their html hex representation.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-unicode.html b/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-unicode.html index 74772737..679db2a6 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-unicode.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]parse-to-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode

-
-
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

:smile: will be replaced by 😄

&#128516; will be replaced by 😄

:boy|type_6: will be replaced by 👦🏿

Return

the string with the aliases and html representations replaced by their unicode.

Parameters

input

the string to parse

+
+

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

:smile: will be replaced by 😄

&#128516; will be replaced by 😄

:boy|type_6: will be replaced by 👦🏿

Return

the string with the aliases and html representations replaced by their unicode.

Parameters

input

the string to parse

- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]remove-all-emojis-except.html b/emojify/io.wax911.emojify.parser/[android-jvm]remove-all-emojis-except.html index e3c1f661..1f3a5e78 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]remove-all-emojis-except.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]remove-all-emojis-except.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeAllEmojisExcept

-
-
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String

Removes all the emojis in a String except a provided set

Return

the string without the emojis that were removed

Parameters

str

the string to process

emojisToKeep

the emojis to keep in this string

+
+

Removes all the emojis in a String except a provided set

Return

the string without the emojis that were removed

Parameters

str

the string to process

emojisToKeep

the emojis to keep in this string

- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]remove-all-emojis.html b/emojify/io.wax911.emojify.parser/[android-jvm]remove-all-emojis.html index 979adb86..53633074 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]remove-all-emojis.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]remove-all-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeAllEmojis

-
-
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String

Removes all emojis from a String

Return

the string without any emoji

Parameters

str

the string to process

+
+
- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]remove-emojis.html b/emojify/io.wax911.emojify.parser/[android-jvm]remove-emojis.html index 6d17864c..7c88e79f 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]remove-emojis.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]remove-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeEmojis

-
-
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

Return

the string without the emojis that were removed

Parameters

str

the string to process

emojisToRemove

the emojis to remove from this string

+
+
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

Return

the string without the emojis that were removed

Parameters

str

the string to process

emojisToRemove

the emojis to remove from this string

- +
diff --git a/emojify/io.wax911.emojify.parser/[android-jvm]replace-all-emojis.html b/emojify/io.wax911.emojify.parser/[android-jvm]replace-all-emojis.html index fa58044a..ed55fb72 100644 --- a/emojify/io.wax911.emojify.parser/[android-jvm]replace-all-emojis.html +++ b/emojify/io.wax911.emojify.parser/[android-jvm]replace-all-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

replaceAllEmojis

-
-
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

Return

the string with replaced character

Parameters

str

the string to process

replacementString

replacement the string that will replace all the emojis

+
+
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

Return

the string with replaced character

Parameters

str

the string to process

replacementString

replacement the string that will replace all the emojis

- +
diff --git a/emojify/io.wax911.emojify.parser/[common]extract-emojis.html b/emojify/io.wax911.emojify.parser/[common]extract-emojis.html index 608a87e2..00e833ae 100644 --- a/emojify/io.wax911.emojify.parser/[common]extract-emojis.html +++ b/emojify/io.wax911.emojify.parser/[common]extract-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

extractEmojis

-
-
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
+
+
- +
diff --git a/emojify/io.wax911.emojify.parser/[common]parse-from-unicode.html b/emojify/io.wax911.emojify.parser/[common]parse-from-unicode.html index 5a6bc68c..bf7e674f 100644 --- a/emojify/io.wax911.emojify.parser/[common]parse-from-unicode.html +++ b/emojify/io.wax911.emojify.parser/[common]parse-from-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseFromUnicode

-
-
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

Return

input string with all emojis transformed

Parameters

input

the string to process

transformer

emoji transformer to apply to each emoji

+
+

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

Return

input string with all emojis transformed

Parameters

input

the string to process

transformer

emoji transformer to apply to each emoji

- +
diff --git a/emojify/io.wax911.emojify.parser/[common]parse-to-aliases.html b/emojify/io.wax911.emojify.parser/[common]parse-to-aliases.html index 11e10e0f..5524b848 100644 --- a/emojify/io.wax911.emojify.parser/[common]parse-to-aliases.html +++ b/emojify/io.wax911.emojify.parser/[common]parse-to-aliases.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases

-
-
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

😄 will be replaced by :smile:

When a fitzpatrick modifier is present with a PARSE action, a "|" will be appended to the alias, with the fitzpatrick type.

👦🏿 will be replaced by :boy|type_6:

When a fitzpatrick modifier is present with a REMOVE action, the modifier will be deleted.

👦🏿 will be replaced by :boy:

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored.

👦🏿 will be replaced by :boy:🏿

Return

the string with the emojis replaced by their alias.

See also

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

+
+
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

😄 will be replaced by :smile:

When a fitzpatrick modifier is present with a PARSE action, a "|" will be appended to the alias, with the fitzpatrick type.

👦🏿 will be replaced by :boy|type_6:

When a fitzpatrick modifier is present with a REMOVE action, the modifier will be deleted.

👦🏿 will be replaced by :boy:

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored.

👦🏿 will be replaced by :boy:🏿

Return

the string with the emojis replaced by their alias.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

See also

- +
diff --git a/emojify/io.wax911.emojify.parser/[common]parse-to-html-decimal.html b/emojify/io.wax911.emojify.parser/[common]parse-to-html-decimal.html index a5f8f1c6..d0de0800 100644 --- a/emojify/io.wax911.emojify.parser/[common]parse-to-html-decimal.html +++ b/emojify/io.wax911.emojify.parser/[common]parse-to-html-decimal.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal

-
-
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

😄 will be replaced by &#128516;

When a fitzpatrick modifier is present with a PARSE or REMOVE action, the modifier will be deleted from the string.

👦🏿 will be replaced by &#128102;

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored and will remain in the string.

👦🏿 will be replaced by &#128102;🏿

Return

the string with the emojis replaced by their html decimal representation.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

+
+
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

😄 will be replaced by &#128516;

When a fitzpatrick modifier is present with a PARSE or REMOVE action, the modifier will be deleted from the string.

👦🏿 will be replaced by &#128102;

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored and will remain in the string.

👦🏿 will be replaced by &#128102;🏿

Return

the string with the emojis replaced by their html decimal representation.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

- +
diff --git a/emojify/io.wax911.emojify.parser/[common]parse-to-html-hexadecimal.html b/emojify/io.wax911.emojify.parser/[common]parse-to-html-hexadecimal.html index 04d268ea..4d0e29a8 100644 --- a/emojify/io.wax911.emojify.parser/[common]parse-to-html-hexadecimal.html +++ b/emojify/io.wax911.emojify.parser/[common]parse-to-html-hexadecimal.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal

-
-
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

'' will be replaced by &#x1f466;

When a fitzpatrick modifier is present with a PARSE or REMOVE action, the modifier will be deleted.

👦🏿 will be replaced by &#x1f466;

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored and will remain in the string.

👦🏿 will be replaced by &#x1f466;🏿

Return

the string with the emojis replaced by their html hex representation.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

+
+
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

'' will be replaced by &#x1f466;

When a fitzpatrick modifier is present with a PARSE or REMOVE action, the modifier will be deleted.

👦🏿 will be replaced by &#x1f466;

When a fitzpatrick modifier is present with a IGNORE action, the modifier will be ignored and will remain in the string.

👦🏿 will be replaced by &#x1f466;🏿

Return

the string with the emojis replaced by their html hex representation.

Parameters

input

the string to parse

fitzpatrickAction

the action to apply for the fitzpatrick modifiers

- +
diff --git a/emojify/io.wax911.emojify.parser/[common]parse-to-unicode.html b/emojify/io.wax911.emojify.parser/[common]parse-to-unicode.html index 6fe98023..a33afbc8 100644 --- a/emojify/io.wax911.emojify.parser/[common]parse-to-unicode.html +++ b/emojify/io.wax911.emojify.parser/[common]parse-to-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode

-
-
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

:smile: will be replaced by 😄

&#128516; will be replaced by 😄

:boy|type_6: will be replaced by 👦🏿

Return

the string with the aliases and html representations replaced by their unicode.

Parameters

input

the string to parse

+
+

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

:smile: will be replaced by 😄

&#128516; will be replaced by 😄

:boy|type_6: will be replaced by 👦🏿

Return

the string with the aliases and html representations replaced by their unicode.

Parameters

input

the string to parse

- +
diff --git a/emojify/io.wax911.emojify.parser/[common]remove-all-emojis-except.html b/emojify/io.wax911.emojify.parser/[common]remove-all-emojis-except.html index 74957b4b..1d148fb7 100644 --- a/emojify/io.wax911.emojify.parser/[common]remove-all-emojis-except.html +++ b/emojify/io.wax911.emojify.parser/[common]remove-all-emojis-except.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeAllEmojisExcept

-
-
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String

Removes all the emojis in a String except a provided set

Return

the string without the emojis that were removed

Parameters

str

the string to process

emojisToKeep

the emojis to keep in this string

+
+

Removes all the emojis in a String except a provided set

Return

the string without the emojis that were removed

Parameters

str

the string to process

emojisToKeep

the emojis to keep in this string

- +
diff --git a/emojify/io.wax911.emojify.parser/[common]remove-all-emojis.html b/emojify/io.wax911.emojify.parser/[common]remove-all-emojis.html index 50f48f7f..e6247d73 100644 --- a/emojify/io.wax911.emojify.parser/[common]remove-all-emojis.html +++ b/emojify/io.wax911.emojify.parser/[common]remove-all-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeAllEmojis

-
-
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String

Removes all emojis from a String

Return

the string without any emoji

Parameters

str

the string to process

+
+

Removes all emojis from a String

Return

the string without any emoji

Parameters

str

the string to process

- +
diff --git a/emojify/io.wax911.emojify.parser/[common]remove-emojis.html b/emojify/io.wax911.emojify.parser/[common]remove-emojis.html index 6751e92f..27a2ead8 100644 --- a/emojify/io.wax911.emojify.parser/[common]remove-emojis.html +++ b/emojify/io.wax911.emojify.parser/[common]remove-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeEmojis

-
-
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

Return

the string without the emojis that were removed

Parameters

str

the string to process

emojisToRemove

the emojis to remove from this string

+
+
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

Return

the string without the emojis that were removed

Parameters

str

the string to process

emojisToRemove

the emojis to remove from this string

- +
diff --git a/emojify/io.wax911.emojify.parser/[common]replace-all-emojis.html b/emojify/io.wax911.emojify.parser/[common]replace-all-emojis.html index 010c64bb..722b6e60 100644 --- a/emojify/io.wax911.emojify.parser/[common]replace-all-emojis.html +++ b/emojify/io.wax911.emojify.parser/[common]replace-all-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

replaceAllEmojis

-
-
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

Return

the string with replaced character

Parameters

str

the string to process

replacementString

replacement the string that will replace all the emojis

+
+
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

Return

the string with replaced character

Parameters

str

the string to process

replacementString

replacement the string that will replace all the emojis

- +
diff --git a/emojify/io.wax911.emojify.parser/index.html b/emojify/io.wax911.emojify.parser/index.html index 576518c2..0058dd83 100644 --- a/emojify/io.wax911.emojify.parser/index.html +++ b/emojify/io.wax911.emojify.parser/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.parser

+

Package-level declarations

-
+
-

Functions

-
-
-
-
-
extractEmojis
+
+

Functions

+
+
+
+
+
extractEmojis
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
+
Link copied to clipboard
+
+
+
-
- -
-
-
-
parseFromUnicode
+ +
+
+
+
parseFromUnicode
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

+
Link copied to clipboard
+
+
+
+
+
+

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

+
-
- -
-
-
-
parseToAliases
+ +
+
+
+
parseToAliases
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

+
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

+
-
- -
-
-
-
parseToHtmlDecimal
+ +
+
+
+
parseToHtmlDecimal
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

+
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

+
-
- -
-
-
-
parseToHtmlHexadecimal
+ +
+
+
+
parseToHtmlHexadecimal
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

+
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

+
-
- -
-
-
-
parseToUnicode
+ +
+
+
+
parseToUnicode
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

+
Link copied to clipboard
+
+
+
+
+
+

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

+
-
- -
-
-
-
removeAllEmojis
+ +
+
+
+
removeAllEmojis
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String

Removes all emojis from a String

fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String

Removes all emojis from a String

+
Link copied to clipboard
+
+
+
-
- -
-
-
-
removeAllEmojisExcept
+ +
+
+
+
removeAllEmojisExcept
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String

Removes all the emojis in a String except a provided set

fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String

Removes all the emojis in a String except a provided set

+
Link copied to clipboard
+
+
+
+
+
+

Removes all the emojis in a String except a provided set

+
-
- -
-
-
-
removeEmojis
+ +
+
+
+
removeEmojis
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

+
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

+
-
- -
-
-
-
replaceAllEmojis
+ +
+
+
+
replaceAllEmojis
-
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

+
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

+
@@ -229,10 +240,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-e-x-a-c-t-l-y/index.html b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-e-x-a-c-t-l-y/index.html index c1d19a59..e84b1816 100644 --- a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-e-x-a-c-t-l-y/index.html +++ b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-e-x-a-c-t-l-y/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EXACTLY

-
-
object EXACTLY : Matches
+
+
object EXACTLY : Matches
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun exactMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun impossibleMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -95,10 +106,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-i-m-p-o-s-s-i-b-l-e/index.html b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-i-m-p-o-s-s-i-b-l-e/index.html index 2a02e1e2..164bf97a 100644 --- a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-i-m-p-o-s-s-i-b-l-e/index.html +++ b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-i-m-p-o-s-s-i-b-l-e/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

IMPOSSIBLE

-
-
object IMPOSSIBLE : Matches
+
+
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun exactMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun impossibleMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -95,10 +106,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-p-o-s-s-i-b-l-y/index.html b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-p-o-s-s-i-b-l-y/index.html index 0880a78e..3b20d344 100644 --- a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-p-o-s-s-i-b-l-y/index.html +++ b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/-p-o-s-s-i-b-l-y/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

POSSIBLY

-
-
object POSSIBLY : Matches
+
+
object POSSIBLY : Matches
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun exactMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun impossibleMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -95,10 +106,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/exact-match.html b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/exact-match.html index a216f8e6..c5517232 100644 --- a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/exact-match.html +++ b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/exact-match.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

exactMatch

-
-
fun exactMatch(): Boolean
+
+
- +
diff --git a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/impossible-match.html b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/impossible-match.html index 9f35c02d..cb0bbc82 100644 --- a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/impossible-match.html +++ b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/impossible-match.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

impossibleMatch

-
-
fun impossibleMatch(): Boolean
+
+
- +
diff --git a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/index.html b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/index.html index c3968161..0d9dc11c 100644 --- a/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/index.html +++ b/emojify/io.wax911.emojify.util.trie/[android-jvm]-matches/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Matches

-
-
sealed class Matches

Emoji matching state representation

+
+
sealed class Matches

Emoji matching state representation

Inheritors

-
+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object EXACTLY : Matches
+
Link copied to clipboard
+
+
+
+
+
+
object EXACTLY : Matches
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object IMPOSSIBLE : Matches
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object POSSIBLY : Matches
+
Link copied to clipboard
+
+
+
+
+
+
object POSSIBLY : Matches
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun exactMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun impossibleMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-

Inheritors

-
-
-
-
-
EXACTLY
- -
Link copied to clipboard
-
-
-
-
- -
-
-
-
POSSIBLY
- -
Link copied to clipboard
-
-
-
-
- -
-
-
-
IMPOSSIBLE
- -
Link copied to clipboard
-
-
-
-
-
- +
diff --git a/emojify/io.wax911.emojify.util.trie/[android-jvm]-node/-node.html b/emojify/io.wax911.emojify.util.trie/[android-jvm]-node/-node.html index b4391904..3fbd2102 100644 --- a/emojify/io.wax911.emojify.util.trie/[android-jvm]-node/-node.html +++ b/emojify/io.wax911.emojify.util.trie/[android-jvm]-node/-node.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Node

-
-
fun Node()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify.util.trie/[android-jvm]-node/index.html b/emojify/io.wax911.emojify.util.trie/[android-jvm]-node/index.html index c542e4d4..95b6b5f4 100644 --- a/emojify/io.wax911.emojify.util.trie/[android-jvm]-node/index.html +++ b/emojify/io.wax911.emojify.util.trie/[android-jvm]-node/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Node

-
-
class Node

Node representation of an emoji tree

+
+
class Node

Node representation of an emoji tree

See also

-
+
-

See also

- -

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun Node()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
@@ -84,10 +89,11 @@

Constructors

- +
diff --git a/emojify/io.wax911.emojify.util.trie/[common]-matches/-e-x-a-c-t-l-y/index.html b/emojify/io.wax911.emojify.util.trie/[common]-matches/-e-x-a-c-t-l-y/index.html index da5967f8..001078da 100644 --- a/emojify/io.wax911.emojify.util.trie/[common]-matches/-e-x-a-c-t-l-y/index.html +++ b/emojify/io.wax911.emojify.util.trie/[common]-matches/-e-x-a-c-t-l-y/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EXACTLY

-
-
object EXACTLY : Matches
+
+
object EXACTLY : Matches
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun exactMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun impossibleMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -95,10 +106,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util.trie/[common]-matches/-i-m-p-o-s-s-i-b-l-e/index.html b/emojify/io.wax911.emojify.util.trie/[common]-matches/-i-m-p-o-s-s-i-b-l-e/index.html index 006f6623..45733d30 100644 --- a/emojify/io.wax911.emojify.util.trie/[common]-matches/-i-m-p-o-s-s-i-b-l-e/index.html +++ b/emojify/io.wax911.emojify.util.trie/[common]-matches/-i-m-p-o-s-s-i-b-l-e/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

IMPOSSIBLE

-
-
object IMPOSSIBLE : Matches
+
+
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun exactMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun impossibleMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -95,10 +106,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util.trie/[common]-matches/-p-o-s-s-i-b-l-y/index.html b/emojify/io.wax911.emojify.util.trie/[common]-matches/-p-o-s-s-i-b-l-y/index.html index 42b3ddd9..45eb0148 100644 --- a/emojify/io.wax911.emojify.util.trie/[common]-matches/-p-o-s-s-i-b-l-y/index.html +++ b/emojify/io.wax911.emojify.util.trie/[common]-matches/-p-o-s-s-i-b-l-y/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

POSSIBLY

-
-
object POSSIBLY : Matches
+
+
object POSSIBLY : Matches
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun exactMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun impossibleMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -95,10 +106,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util.trie/[common]-matches/exact-match.html b/emojify/io.wax911.emojify.util.trie/[common]-matches/exact-match.html index 703e910e..37b13bd3 100644 --- a/emojify/io.wax911.emojify.util.trie/[common]-matches/exact-match.html +++ b/emojify/io.wax911.emojify.util.trie/[common]-matches/exact-match.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

exactMatch

-
-
fun exactMatch(): Boolean
+
+
- +
diff --git a/emojify/io.wax911.emojify.util.trie/[common]-matches/impossible-match.html b/emojify/io.wax911.emojify.util.trie/[common]-matches/impossible-match.html index 18f03edf..ad7c3fe4 100644 --- a/emojify/io.wax911.emojify.util.trie/[common]-matches/impossible-match.html +++ b/emojify/io.wax911.emojify.util.trie/[common]-matches/impossible-match.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

impossibleMatch

-
-
fun impossibleMatch(): Boolean
+
+
- +
diff --git a/emojify/io.wax911.emojify.util.trie/[common]-matches/index.html b/emojify/io.wax911.emojify.util.trie/[common]-matches/index.html index ce8dbf6f..830800ba 100644 --- a/emojify/io.wax911.emojify.util.trie/[common]-matches/index.html +++ b/emojify/io.wax911.emojify.util.trie/[common]-matches/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Matches

-
-
sealed class Matches

Emoji matching state representation

+
+
sealed class Matches

Emoji matching state representation

Inheritors

-
+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object EXACTLY : Matches
+
Link copied to clipboard
+
+
+
+
+
+
object EXACTLY : Matches
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object IMPOSSIBLE : Matches
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object POSSIBLY : Matches
+
Link copied to clipboard
+
+
+
+
+
+
object POSSIBLY : Matches
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun exactMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun impossibleMatch(): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
+
-

Inheritors

-
-
-
-
-
EXACTLY
- -
Link copied to clipboard
-
-
-
-
- -
-
-
-
POSSIBLY
- -
Link copied to clipboard
-
-
-
-
- -
-
-
-
IMPOSSIBLE
- -
Link copied to clipboard
-
-
-
-
-
- +
diff --git a/emojify/io.wax911.emojify.util.trie/[common]-node/-node.html b/emojify/io.wax911.emojify.util.trie/[common]-node/-node.html index 9ebde67f..cc47c61c 100644 --- a/emojify/io.wax911.emojify.util.trie/[common]-node/-node.html +++ b/emojify/io.wax911.emojify.util.trie/[common]-node/-node.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Node

-
-
fun Node()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify.util.trie/[common]-node/index.html b/emojify/io.wax911.emojify.util.trie/[common]-node/index.html index 614ab878..24794453 100644 --- a/emojify/io.wax911.emojify.util.trie/[common]-node/index.html +++ b/emojify/io.wax911.emojify.util.trie/[common]-node/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Node

-
-
class Node

Node representation of an emoji tree

+
+
class Node

Node representation of an emoji tree

See also

-
+
-

See also

- -

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun Node()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
@@ -84,10 +89,11 @@

Constructors

- +
diff --git a/emojify/io.wax911.emojify.util.trie/index.html b/emojify/io.wax911.emojify.util.trie/index.html index f4fe27c9..74f3d90f 100644 --- a/emojify/io.wax911.emojify.util.trie/index.html +++ b/emojify/io.wax911.emojify.util.trie/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.util.trie

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
Matches
+
+

Types

+
+
+
+
+
Matches
-
Link copied to clipboard
-
-
-
-
-
-
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches

Emoji matching state representation

sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches

Emoji matching state representation

+
Link copied to clipboard
+
+
+
+
+
+
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches

Emoji matching state representation

sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches
sealed class Matches

Emoji matching state representation

+
-
- -
-
-
-
Node
+ +
+
+
+
Node
-
Link copied to clipboard
-
-
-
-
-
-
class Node
class Node
class Node
class Node

Node representation of an emoji tree

class Node
class Node
class Node
class Node
class Node
class Node
class Node
class Node
class Node
class Node
class Node

Node representation of an emoji tree

+
Link copied to clipboard
+
+
+
+
+
+
class Node
class Node
class Node
class Node

Node representation of an emoji tree

class Node
class Node
class Node
class Node
class Node
class Node
class Node
class Node
class Node
class Node
class Node

Node representation of an emoji tree

+
@@ -93,10 +104,11 @@

Types

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/-emoji-trie.html b/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/-emoji-trie.html index fe505605..5b363cc1 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/-emoji-trie.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/-emoji-trie.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiTrie

-
-
fun EmojiTrie(emojis: Collection<Emoji>)
+
+
constructor(emojis: Collection<Emoji>)
- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/get-emoji.html b/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/get-emoji.html index 133eb0f6..f0bcbe82 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/get-emoji.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/get-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getEmoji

-
-
fun getEmoji(unicode: String): Emoji?

Finds Emoji instance from emoji unicode

Return

Emoji instance if unicode matches and emoji, null otherwise.

Parameters

unicode

unicode of emoji to get

+
+
fun getEmoji(unicode: String): Emoji?

Finds Emoji instance from emoji unicode

Return

Emoji instance if unicode matches and emoji, null otherwise.

Parameters

unicode

unicode of emoji to get

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/index.html b/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/index.html index 24ca5335..b1b2097a 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/index.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiTrie

-
-
class EmojiTrie(emojis: Collection<Emoji>)
+
+
class EmojiTrie(emojis: Collection<Emoji>)
-
+
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiTrie(emojis: Collection<Emoji>)
+
Link copied to clipboard
+
+
+
+
+
+
constructor(emojis: Collection<Emoji>)
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getEmoji(unicode: String): Emoji?

Finds Emoji instance from emoji unicode

+
Link copied to clipboard
+
+
+
+
+
+
fun getEmoji(unicode: String): Emoji?

Finds Emoji instance from emoji unicode

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isEmoji(sequence: CharArray?): Matches

Checks if sequence of chars contain an emoji.

+
Link copied to clipboard
+
+
+
+
+
+
fun isEmoji(sequence: CharArray?): Matches

Checks if sequence of chars contain an emoji.

+
@@ -114,10 +127,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/is-emoji.html b/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/is-emoji.html index bc32c4fc..daadf5e6 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/is-emoji.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-emoji-trie/is-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji

-
-
fun isEmoji(sequence: CharArray?): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

+
+
fun isEmoji(sequence: CharArray?): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/fitzpatrick-from-type.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/fitzpatrick-from-type.html index 37ddd9ea..a306337b 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/fitzpatrick-from-type.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/fitzpatrick-from-type.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickFromType

-
-
fun fitzpatrickFromType(type: String): Fitzpatrick?

Return

Fitzpatrick or null if no type the available enum names

+
+

Return

Fitzpatrick or null if no type the available enum names

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/fitzpatrick-from-unicode.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/fitzpatrick-from-unicode.html index ca16081c..08a40f3e 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/fitzpatrick-from-unicode.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/fitzpatrick-from-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickFromUnicode

-
-
fun fitzpatrickFromUnicode(unicode: String?): Fitzpatrick?

Return

Fitzpatrick or null if no unicode matches the supported types

+
+

Return

Fitzpatrick or null if no unicode matches the supported types

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/index.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/index.html index 6c553f51..936998b6 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/index.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-companion/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Companion

-
-
object Companion
+
+
object Companion
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun fitzpatrickFromType(type: String): Fitzpatrick?
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun fitzpatrickFromUnicode(unicode: String?): Fitzpatrick?
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -95,10 +106,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_1_2/index.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_1_2/index.html index 11965a42..181e55ef 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_1_2/index.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_1_2/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_1_2

-
-

Fitzpatrick modifier of type 1/2 (pale white/white)

+
+

Fitzpatrick modifier of type 1/2 (pale white/white)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_3/index.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_3/index.html index d8a5535f..a816cb5f 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_3/index.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_3/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_3

-
-
TYPE_3("")

Fitzpatrick modifier of type 3 (cream white)

+
+

Fitzpatrick modifier of type 3 (cream white)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_4/index.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_4/index.html index a3f01c63..3c7b4887 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_4/index.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_4/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_4

-
-
TYPE_4("")

Fitzpatrick modifier of type 4 (moderate brown)

+
+

Fitzpatrick modifier of type 4 (moderate brown)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_5/index.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_5/index.html index cbf8ac9e..17779a15 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_5/index.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_5/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_5

-
-
TYPE_5("")

Fitzpatrick modifier of type 5 (dark brown)

+
+

Fitzpatrick modifier of type 5 (dark brown)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_6/index.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_6/index.html index 87e37a5d..f1367250 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_6/index.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/-t-y-p-e_6/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_6

-
-
TYPE_6("")

Fitzpatrick modifier of type 6 (black)

+
+

Fitzpatrick modifier of type 6 (black)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/index.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/index.html index ac7ea9f7..ff636109 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/index.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Fitzpatrick

-
-
enum Fitzpatrick : Enum<Fitzpatrick>

Enum that represents the Fitzpatrick modifiers supported by the emojis.

+
+

Enum that represents the Fitzpatrick modifiers supported by the emojis.

Parameters

unicode

The unicode representation of the Fitzpatrick modifier

-
+
-

Parameters

-
-
-
-
unicode

The unicode representation of the Fitzpatrick modifier

-
-

Entries

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
TYPE_6("")

Fitzpatrick modifier of type 6 (black)

+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 1/2 (pale white/white)

+
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
TYPE_5("")

Fitzpatrick modifier of type 5 (dark brown)

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 3 (cream white)

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
TYPE_4("")

Fitzpatrick modifier of type 4 (moderate brown)

+
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 4 (moderate brown)

+
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
TYPE_3("")

Fitzpatrick modifier of type 3 (cream white)

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 5 (dark brown)

+
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-

Fitzpatrick modifier of type 1/2 (pale white/white)

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 6 (black)

+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object Companion
+
Link copied to clipboard
+
+
+
+
+
+
object Companion
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
@@ -224,10 +271,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/unicode.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/unicode.html index 9df174c0..9248b132 100644 --- a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/unicode.html +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

unicode

-
-
val unicode: String

Parameters

unicode

The unicode representation of the Fitzpatrick modifier

+
+

Parameters

unicode

The unicode representation of the Fitzpatrick modifier

- +
diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/value-of.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/value-of.html new file mode 100644 index 00000000..f705094d --- /dev/null +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/value-of.html @@ -0,0 +1,74 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

valueOf

+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+
+ +
+
+ + diff --git a/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/values.html b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/values.html new file mode 100644 index 00000000..1548f20e --- /dev/null +++ b/emojify/io.wax911.emojify.util/[android-jvm]-fitzpatrick/values.html @@ -0,0 +1,74 @@ + + + + + values + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

values

+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+ + diff --git a/emojify/io.wax911.emojify.util/[common]-emoji-trie/-emoji-trie.html b/emojify/io.wax911.emojify.util/[common]-emoji-trie/-emoji-trie.html index ab1070b6..ff391e6c 100644 --- a/emojify/io.wax911.emojify.util/[common]-emoji-trie/-emoji-trie.html +++ b/emojify/io.wax911.emojify.util/[common]-emoji-trie/-emoji-trie.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiTrie

-
-
fun EmojiTrie(emojis: Collection<Emoji>)
+
+
constructor(emojis: Collection<Emoji>)
- +
diff --git a/emojify/io.wax911.emojify.util/[common]-emoji-trie/get-emoji.html b/emojify/io.wax911.emojify.util/[common]-emoji-trie/get-emoji.html index 9df68b10..ecf05efb 100644 --- a/emojify/io.wax911.emojify.util/[common]-emoji-trie/get-emoji.html +++ b/emojify/io.wax911.emojify.util/[common]-emoji-trie/get-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getEmoji

-
-
fun getEmoji(unicode: String): Emoji?

Finds Emoji instance from emoji unicode

Return

Emoji instance if unicode matches and emoji, null otherwise.

Parameters

unicode

unicode of emoji to get

+
+
fun getEmoji(unicode: String): Emoji?

Finds Emoji instance from emoji unicode

Return

Emoji instance if unicode matches and emoji, null otherwise.

Parameters

unicode

unicode of emoji to get

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-emoji-trie/index.html b/emojify/io.wax911.emojify.util/[common]-emoji-trie/index.html index f38352c7..a42f7fcf 100644 --- a/emojify/io.wax911.emojify.util/[common]-emoji-trie/index.html +++ b/emojify/io.wax911.emojify.util/[common]-emoji-trie/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiTrie

-
-
class EmojiTrie(emojis: Collection<Emoji>)
+
+
class EmojiTrie(emojis: Collection<Emoji>)
-
+
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiTrie(emojis: Collection<Emoji>)
+
Link copied to clipboard
+
+
+
+
+
+
constructor(emojis: Collection<Emoji>)
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getEmoji(unicode: String): Emoji?

Finds Emoji instance from emoji unicode

+
Link copied to clipboard
+
+
+
+
+
+
fun getEmoji(unicode: String): Emoji?

Finds Emoji instance from emoji unicode

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isEmoji(sequence: CharArray?): Matches

Checks if sequence of chars contain an emoji.

+
Link copied to clipboard
+
+
+
+
+
+
fun isEmoji(sequence: CharArray?): Matches

Checks if sequence of chars contain an emoji.

+
@@ -114,10 +127,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-emoji-trie/is-emoji.html b/emojify/io.wax911.emojify.util/[common]-emoji-trie/is-emoji.html index 07fb6ae6..79c6e926 100644 --- a/emojify/io.wax911.emojify.util/[common]-emoji-trie/is-emoji.html +++ b/emojify/io.wax911.emojify.util/[common]-emoji-trie/is-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji

-
-
fun isEmoji(sequence: CharArray?): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

+
+
fun isEmoji(sequence: CharArray?): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/fitzpatrick-from-type.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/fitzpatrick-from-type.html index ee58293b..720e70b9 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/fitzpatrick-from-type.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/fitzpatrick-from-type.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickFromType

-
-
fun fitzpatrickFromType(type: String): Fitzpatrick?

Return

Fitzpatrick or null if no type the available enum names

+
+

Return

Fitzpatrick or null if no type the available enum names

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/fitzpatrick-from-unicode.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/fitzpatrick-from-unicode.html index dd3edf02..cdd83c65 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/fitzpatrick-from-unicode.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/fitzpatrick-from-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

fitzpatrickFromUnicode

-
-
fun fitzpatrickFromUnicode(unicode: String?): Fitzpatrick?

Return

Fitzpatrick or null if no unicode matches the supported types

+
+

Return

Fitzpatrick or null if no unicode matches the supported types

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/index.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/index.html index 6cba216d..ca8cd8ce 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/index.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-companion/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Companion

-
-
object Companion
+
+
object Companion
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun fitzpatrickFromType(type: String): Fitzpatrick?
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun fitzpatrickFromUnicode(unicode: String?): Fitzpatrick?
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -95,10 +106,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_1_2/index.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_1_2/index.html index c3a1ef02..802528e2 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_1_2/index.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_1_2/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_1_2

-
-

Fitzpatrick modifier of type 1/2 (pale white/white)

+
+

Fitzpatrick modifier of type 1/2 (pale white/white)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_3/index.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_3/index.html index 23c4c997..fa91d1e6 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_3/index.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_3/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_3

-
-
TYPE_3("")

Fitzpatrick modifier of type 3 (cream white)

+
+

Fitzpatrick modifier of type 3 (cream white)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_4/index.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_4/index.html index d172e1b7..4ae1f98c 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_4/index.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_4/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_4

-
-
TYPE_4("")

Fitzpatrick modifier of type 4 (moderate brown)

+
+

Fitzpatrick modifier of type 4 (moderate brown)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_5/index.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_5/index.html index f91360db..92a6d75b 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_5/index.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_5/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_5

-
-
TYPE_5("")

Fitzpatrick modifier of type 5 (dark brown)

+
+

Fitzpatrick modifier of type 5 (dark brown)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_6/index.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_6/index.html index efce6c1a..83d2152d 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_6/index.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_6/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

TYPE_6

-
-
TYPE_6("")

Fitzpatrick modifier of type 6 (black)

+
+

Fitzpatrick modifier of type 6 (black)

-
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -112,10 +123,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/index.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/index.html index 3fd41fe5..fb5b7fd1 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/index.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Fitzpatrick

-
-
enum Fitzpatrick : Enum<Fitzpatrick>

Enum that represents the Fitzpatrick modifiers supported by the emojis.

+
+

Enum that represents the Fitzpatrick modifiers supported by the emojis.

Parameters

unicode

The unicode representation of the Fitzpatrick modifier

-
+
-

Parameters

-
-
-
-
unicode

The unicode representation of the Fitzpatrick modifier

-
-

Entries

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
TYPE_6("")

Fitzpatrick modifier of type 6 (black)

+
+

Entries

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 1/2 (pale white/white)

+
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
TYPE_5("")

Fitzpatrick modifier of type 5 (dark brown)

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 3 (cream white)

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
TYPE_4("")

Fitzpatrick modifier of type 4 (moderate brown)

+
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 4 (moderate brown)

+
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
TYPE_3("")

Fitzpatrick modifier of type 3 (cream white)

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 5 (dark brown)

+
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-

Fitzpatrick modifier of type 1/2 (pale white/white)

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Fitzpatrick modifier of type 6 (black)

+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object Companion
+
Link copied to clipboard
+
+
+
+
+
+
object Companion
+
-

Properties

-
-
-
-
- +
+

Properties

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val name: String
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val ordinal: Int
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
val unicode: String
+
Link copied to clipboard
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Functions

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

+
@@ -224,10 +271,11 @@

Properties

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/unicode.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/unicode.html index c8ed1e73..024871cd 100644 --- a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/unicode.html +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

unicode

-
-
val unicode: String

Parameters

unicode

The unicode representation of the Fitzpatrick modifier

+
+

Parameters

unicode

The unicode representation of the Fitzpatrick modifier

- +
diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/value-of.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/value-of.html new file mode 100644 index 00000000..61f087a7 --- /dev/null +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/value-of.html @@ -0,0 +1,74 @@ + + + + + valueOf + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

valueOf

+
+
+
+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

+
+ +
+
+ + diff --git a/emojify/io.wax911.emojify.util/[common]-fitzpatrick/values.html b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/values.html new file mode 100644 index 00000000..5db6e6ce --- /dev/null +++ b/emojify/io.wax911.emojify.util/[common]-fitzpatrick/values.html @@ -0,0 +1,74 @@ + + + + + values + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+ +
+

values

+
+
+
+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+
+ +
+
+ + diff --git a/emojify/io.wax911.emojify.util/index.html b/emojify/io.wax911.emojify.util/index.html index 10021b58..5b83fd97 100644 --- a/emojify/io.wax911.emojify.util/index.html +++ b/emojify/io.wax911.emojify.util/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify.util

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
EmojiTrie
+
+

Types

+
+
+
+
+
EmojiTrie
-
Link copied to clipboard
-
-
-
-
-
-
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
+
Link copied to clipboard
+
+
+
+
+
+
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
class EmojiTrie(emojis: Collection<Emoji>)
+
-
- -
-
-
-
Fitzpatrick
+ +
+
+
+
Fitzpatrick
-
Link copied to clipboard
-
-
-
-
-
-
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>

Enum that represents the Fitzpatrick modifiers supported by the emojis.

enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>
enum Fitzpatrick : Enum<Fitzpatrick>

Enum that represents the Fitzpatrick modifiers supported by the emojis.

+
Link copied to clipboard
+
+
+
+
+
+

Enum that represents the Fitzpatrick modifiers supported by the emojis.

Enum that represents the Fitzpatrick modifiers supported by the emojis.

+
@@ -93,10 +104,11 @@

Types

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-companion/contains-emojis.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-companion/contains-emojis.html index 037ed776..efda7841 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-companion/contains-emojis.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-companion/contains-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

containsEmojis

-
-
fun containsEmojis(emojis: Iterable<Emoji>, vararg aliases: String): Boolean
+
+
fun containsEmojis(emojis: Iterable<Emoji>, vararg aliases: String): Boolean
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-companion/index.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-companion/index.html index 3f4162a1..02dcd0eb 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-companion/index.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-companion/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Companion

-
-
object Companion
+
+
object Companion
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun containsEmojis(emojis: Iterable<Emoji>, vararg aliases: String): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
fun containsEmojis(emojis: Iterable<Emoji>, vararg aliases: String): Boolean
+
@@ -78,10 +89,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-emoji-manager-test.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-emoji-manager-test.html index 2288d35d..4ee757bf 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-emoji-manager-test.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/-emoji-manager-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiManagerTest

-
-
fun EmojiManagerTest()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-all-tags_returns_the_tags.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-all-tags_returns_the_tags.html index 528b6c7e..d5324a82 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-all-tags_returns_the_tags.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-all-tags_returns_the_tags.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAllTags_returns_the_tags

-
-
fun getAllTags_returns_the_tags()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-all_does_not_return_duplicates.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-all_does_not_return_duplicates.html index 054d0ca2..e6579d85 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-all_does_not_return_duplicates.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-all_does_not_return_duplicates.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAll_does_not_return_duplicates

-
-
fun getAll_does_not_return_duplicates()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_returns_the_emoji_for_the_alias.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_returns_the_emoji_for_the_alias.html index 19de6a94..067971ca 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_returns_the_emoji_for_the_alias.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_returns_the_emoji_for_the_alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias_returns_the_emoji_for_the_alias

-
-
fun getForAlias_returns_the_emoji_for_the_alias()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_with_colons_returns_the_emoji_for_the_alias.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_with_colons_returns_the_emoji_for_the_alias.html index 59a005cc..e21d852f 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_with_colons_returns_the_emoji_for_the_alias.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_with_colons_returns_the_emoji_for_the_alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias_with_colons_returns_the_emoji_for_the_alias

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_with_unknown_alias_returns_null.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_with_unknown_alias_returns_null.html index d70e6165..aa8e47de 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_with_unknown_alias_returns_null.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-alias_with_unknown_alias_returns_null.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias_with_unknown_alias_returns_null

-
-
fun getForAlias_with_unknown_alias_returns_null()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-tag_returns_the_emojis_for_the_tag.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-tag_returns_the_emojis_for_the_tag.html index 232a9196..7fa86a4e 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-tag_returns_the_emojis_for_the_tag.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-tag_returns_the_emojis_for_the_tag.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForTag_returns_the_emojis_for_the_tag

-
-
fun getForTag_returns_the_emojis_for_the_tag()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-tag_with_unknown_tag_returns_null.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-tag_with_unknown_tag_returns_null.html index 4cec3a49..31efa7ee 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-tag_with_unknown_tag_returns_null.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-for-tag_with_unknown_tag_returns_null.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForTag_with_unknown_tag_returns_null

-
-
fun getForTag_with_unknown_tag_returns_null()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-trimmed-alias.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-trimmed-alias.html index 5cc6048a..abae017b 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-trimmed-alias.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/get-trimmed-alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getTrimmedAlias

-
-
fun getTrimmedAlias()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/index.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/index.html index f34dd59e..589594bd 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/index.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiManagerTest

-
-
class EmojiManagerTest

Instrumentation test, which will execute on an Android device.

+
+

Instrumentation test, which will execute on an Android device.

See also

-
+
-

See also

-
-
-
-
-
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManagerTest()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object Companion
+
Link copied to clipboard
+
+
+
+
+
+
object Companion
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAll_does_not_return_duplicates()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAllTags_returns_the_tags()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getForAlias_returns_the_emoji_for_the_alias()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getForAlias_with_unknown_alias_returns_null()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getForTag_returns_the_emojis_for_the_tag()
+
Link copied to clipboard
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getForTag_with_unknown_tag_returns_null()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getTrimmedAlias()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isEmoji_for_a_non_emoji_returns_false()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isEmoji_for_an_emoji_returns_true()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isEmoji_with_fitzpatric_modifier_returns_true()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isOnlyEmojis_for_an_emoji_returns_true()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isOnlyEmojis_for_emojis_returns_true()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isOnlyEmojis_for_random_string_returns_false()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun no_duplicate_alias()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testApplicationContext()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiLoading()
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -411,10 +420,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_a_non_emoji_returns_false.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_a_non_emoji_returns_false.html index f19a198e..99d7339b 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_a_non_emoji_returns_false.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_a_non_emoji_returns_false.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji_for_a_non_emoji_returns_false

-
-
fun isEmoji_for_a_non_emoji_returns_false()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_an_emoji_and_other_chars_returns_false.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_an_emoji_and_other_chars_returns_false.html index 5b62c201..de337ac8 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_an_emoji_and_other_chars_returns_false.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_an_emoji_and_other_chars_returns_false.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji_for_an_emoji_and_other_chars_returns_false

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_an_emoji_returns_true.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_an_emoji_returns_true.html index f852a0f9..f7b7ac2a 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_an_emoji_returns_true.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_for_an_emoji_returns_true.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji_for_an_emoji_returns_true

-
-
fun isEmoji_for_an_emoji_returns_true()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_with_fitzpatric_modifier_returns_true.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_with_fitzpatric_modifier_returns_true.html index ad2765e7..fba96ebd 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_with_fitzpatric_modifier_returns_true.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-emoji_with_fitzpatric_modifier_returns_true.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji_with_fitzpatric_modifier_returns_true

-
-
fun isEmoji_with_fitzpatric_modifier_returns_true()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_an_emoji_returns_true.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_an_emoji_returns_true.html index 6aeb7521..35f3e7ac 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_an_emoji_returns_true.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_an_emoji_returns_true.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis_for_an_emoji_returns_true

-
-
fun isOnlyEmojis_for_an_emoji_returns_true()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_emojis_returns_true.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_emojis_returns_true.html index f5af00e6..fe60018a 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_emojis_returns_true.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_emojis_returns_true.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis_for_emojis_returns_true

-
-
fun isOnlyEmojis_for_emojis_returns_true()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_random_string_returns_false.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_random_string_returns_false.html index 5377a528..a18191f7 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_random_string_returns_false.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/is-only-emojis_for_random_string_returns_false.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis_for_random_string_returns_false

-
-
fun isOnlyEmojis_for_random_string_returns_false()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/no_duplicate_alias.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/no_duplicate_alias.html index 43e583ee..48510c30 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/no_duplicate_alias.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/no_duplicate_alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

no_duplicate_alias

-
-
fun no_duplicate_alias()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/test-application-context.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/test-application-context.html index b1752723..9a6395af 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/test-application-context.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/test-application-context.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testApplicationContext

-
-
fun testApplicationContext()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/test-emoji-loading.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/test-emoji-loading.html index e141d539..138b7258 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/test-emoji-loading.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager-test/test-emoji-loading.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiLoading

-
-
fun testEmojiLoading()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/-emoji-manager.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/-emoji-manager.html index ebff92a1..927d6c16 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/-emoji-manager.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/-emoji-manager.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiManager

-
-
fun EmojiManager(emojiList: Collection<Emoji>)

Parameters

emojiList

complete list of all emojis

+
+
constructor(emojiList: Collection<Emoji>)

Parameters

emojiList

complete list of all emojis

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/emoji-list.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/emoji-list.html index 625163da..503bb2ac 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/emoji-list.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/emoji-list.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emojiList

-
-
open override val emojiList: Collection<Emoji>

Parameters

emojiList

complete list of all emojis

+
+
open override val emojiList: Collection<Emoji>

Parameters

emojiList

complete list of all emojis

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-all-tags.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-all-tags.html index 619cd1c7..c4af9914 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-all-tags.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-all-tags.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAllTags

-
-
open override fun getAllTags(): Collection<String>

Returns all the tags in the database

Return

the tags

+
+
open override fun getAllTags(): Collection<String>

Returns all the tags in the database

Return

the tags

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-by-unicode.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-by-unicode.html index 53362072..fed78859 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-by-unicode.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-by-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getByUnicode

-
-
open override fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

Return

the associated Emoji, null if the unicode is unknown

Parameters

unicode

the the unicode

+
+
open override fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

Return

the associated Emoji, null if the unicode is unknown

Parameters

unicode

the the unicode

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-for-alias.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-for-alias.html index 6013d690..7587a6f9 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-for-alias.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-for-alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias

-
-
open override fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

Return

the associated Emoji, null if the alias is unknown

Parameters

alias

the alias

+
+
open override fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

Return

the associated Emoji, null if the alias is unknown

Parameters

alias

the alias

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-for-tag.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-for-tag.html index 29c6bf3f..34690e82 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-for-tag.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/get-for-tag.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForTag

-
-
open override fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

Return

the associated Emojis, null if the tag is unknown

Parameters

tag

the tag

+
+
open override fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

Return

the associated Emojis, null if the tag is unknown

Parameters

tag

the tag

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/index.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/index.html index 15d05490..b0408453 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/index.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiManager

-
-
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager

Holds the loaded emojis and provides search functions.

Author

vdurmont@gmail.com

+
+
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager

Holds the loaded emojis and provides search functions.

Author

vdurmont@gmail.com

Parameters

emojiList

complete list of all emojis

-
+
-

Parameters

-
-
-
-
emojiList

complete list of all emojis

-
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager(emojiList: Collection<Emoji>)
+
Link copied to clipboard
+
+
+
+
+
+
constructor(emojiList: Collection<Emoji>)
+
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open override fun getAllTags(): Collection<String>

Returns all the tags in the database

+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open override val emojiList: Collection<Emoji>
+
+
+
+

Functions

+
+ + +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open override fun getAllTags(): Collection<String>

Returns all the tags in the database

+
+
+
+
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

+
Link copied to clipboard
+
+
+
+
+
+
open override fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

+
Link copied to clipboard
+
+
+
+
+
+
open override fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

+
Link copied to clipboard
+
+
+
+
+
+
open override fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

open override fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

+
Link copied to clipboard
+
+
+
+
+
+
open override fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

open override fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
fun trimAlias(alias: String): String
+
Link copied to clipboard
+
+
+
+
+
+
open override fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

+
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open override val emojiList: Collection<Emoji>
+ +
+
+
+
parseFromUnicode
+ +
Link copied to clipboard
+
+
+
+
+
+

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

+
-
-
-

Extensions

-
-
-
-
-
extractEmojis
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
+ +
+
+
+
parseToAliases
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

+
-
- -
-
-
-
parseFromUnicode
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

-
-
-
-
- -
-
-
-
parseToAliases
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

+ +
+
+
+
parseToHtmlDecimal
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

+
-
- -
-
-
-
parseToHtmlDecimal
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

+ +
+
+
+
parseToHtmlHexadecimal
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

+
-
- -
-
-
-
parseToHtmlHexadecimal
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

+ +
+
+
+
parseToUnicode
+ +
Link copied to clipboard
+
+
+
+
+
+

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

+
-
- -
-
-
-
parseToUnicode
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

+ + -
- -
-
-
-
removeAllEmojis
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String

Removes all emojis from a String

fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String

Removes all emojis from a String

+ +
+
+
+
removeAllEmojisExcept
+ +
Link copied to clipboard
+
+
+
+
+
+

Removes all the emojis in a String except a provided set

+
-
- -
-
-
-
removeAllEmojisExcept
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String

Removes all the emojis in a String except a provided set

fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String

Removes all the emojis in a String except a provided set

+ +
+
+
+
removeEmojis
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

+
-
- -
-
-
-
removeEmojis
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

+ +
+
+
+
replaceAllEmojis
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

+
-
- -
-
-
-
replaceAllEmojis
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
fun trimAlias(alias: String): String
+
@@ -397,10 +404,11 @@

Extensions

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/is-emoji.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/is-emoji.html index 91504903..6389dd03 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/is-emoji.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/is-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji

-
-
open override fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

Return

true if the string is an emoji's unicode, false else

Parameters

string

the string to test


open override fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

+
+
open override fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

Return

true if the string is an emoji's unicode, false else

Parameters

string

the string to test


open override fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/is-only-emojis.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/is-only-emojis.html index 9923b38d..e75b6146 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/is-only-emojis.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/is-only-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis

-
-
open override fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

Return

true if the string only contains emojis, false else

Parameters

string

the string to test

+
+
open override fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

Return

true if the string only contains emojis, false else

Parameters

string

the string to test

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/trim-alias.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/trim-alias.html index 037ff0d0..050eb03b 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/trim-alias.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-manager/trim-alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

trimAlias

-
-
fun trimAlias(alias: String): String
+
+
fun trimAlias(alias: String): String
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/-emoji-parse-test.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/-emoji-parse-test.html index 09f327b3..4d58be18 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/-emoji-parse-test.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/-emoji-parse-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiParseTest

-
-
fun EmojiParseTest()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/extract-emojis.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/extract-emojis.html index 1865ee10..2a020114 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/extract-emojis.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/extract-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

extractEmojis

-
-
fun extractEmojis()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_a_fitzpatrick_modifier.html index 14935988..3d07a4c7 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_a_fitzpatrick_modifier

-
-
fun getAliasCanditates_with_a_fitzpatrick_modifier()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias.html index ab84a713..2f1d5448 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_one_alias

-
-
fun getAliasCanditates_with_one_alias()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_after.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_after.html index 440b31da..0e7a624b 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_after.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_after.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_one_alias_an_another_colon_after

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_before_after.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_before_after.html index ed8f7066..f3d23a12 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_before_after.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_before_after.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_one_alias_an_another_colon_before_after

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_right_after.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_right_after.html index 78c59192..826f667c 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_right_after.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_right_after.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_one_alias_an_another_colon_right_after

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_two_aliases.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_two_aliases.html index a098deb1..c1af0b7b 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_two_aliases.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_two_aliases.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_two_aliases

-
-
fun getAliasCanditates_with_two_aliases()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_two_aliases_sharing_a_colon.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_two_aliases_sharing_a_colon.html index 54cc6571..c1d3a0aa 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_two_aliases_sharing_a_colon.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/get-alias-canditates_with_two_aliases_sharing_a_colon.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_two_aliases_sharing_a_colon

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/index.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/index.html index 204ec909..7a2bd058 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/index.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiParseTest

-
-
class EmojiParseTest

Instrumentation test, which will execute on an Android device.

+
+

Instrumentation test, which will execute on an Android device.

See also

-
+
-

See also

-
-
-
-
-
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiParseTest()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun extractEmojis()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAliasCanditates_with_a_fitzpatrick_modifier()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAliasCanditates_with_one_alias()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAliasCanditates_with_two_aliases()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_continuous_non_overlapping_emojis()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_couplekiss_woman_woman()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_IGNORE_with_a_fitzpatrick_modifier()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_NG_and_nigeria()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_REMOVE_with_a_fitzpatrick_modifier()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_with_long_overlapping_emoji()
+
Link copied to clipboard
+
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+ -
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+ -
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToUnicode_with_a_fitzpatrick_modifier()
+
Link copied to clipboard
+
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- + -
-
-
- + -
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- + -
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun replaceAllEmojis_replace_the_emojis_by_string()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun test_with_a_new_flag()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testApplicationContext()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiLoading()
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -766,10 +773,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html index d63c6791..ae9c60f3 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_IGNORE_with_a_fitzpatrick_modifier

-
-
fun parseToAliases_IGNORE_with_a_fitzpatrick_modifier()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_without_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_without_a_fitzpatrick_modifier.html index 6216a8a0..07c86d5d 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_without_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_without_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_IGNORE_without_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-n-g_and_nigeria.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-n-g_and_nigeria.html index 0073d220..9db2cecf 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-n-g_and_nigeria.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-n-g_and_nigeria.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_NG_and_nigeria

-
-
fun parseToAliases_NG_and_nigeria()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html index 4af6c770..9a3d5ca4 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_REMOVE_with_a_fitzpatrick_modifier

-
-
fun parseToAliases_REMOVE_with_a_fitzpatrick_modifier()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_without_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_without_a_fitzpatrick_modifier.html index 814ebdb2..4d52e1e8 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_without_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_without_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_REMOVE_without_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-p-l-a-c-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-p-l-a-c-e_with_a_fitzpatrick_modifier.html index 025eda56..80cdb887 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-p-l-a-c-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_-r-e-p-l-a-c-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_REPLACE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_continuous_non_overlapping_emojis.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_continuous_non_overlapping_emojis.html index caf8a0ad..397acc66 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_continuous_non_overlapping_emojis.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_continuous_non_overlapping_emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_continuous_non_overlapping_emojis

-
-
fun parseToAliases_continuous_non_overlapping_emojis()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_couplekiss_woman_woman.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_couplekiss_woman_woman.html index 5409017d..9f3282ae 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_couplekiss_woman_woman.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_couplekiss_woman_woman.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_couplekiss_woman_woman

-
-
fun parseToAliases_couplekiss_woman_woman()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_replaces_the_emojis_by_one_of_their_aliases.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_replaces_the_emojis_by_one_of_their_aliases.html index a45086ce..724ea59d 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_replaces_the_emojis_by_one_of_their_aliases.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_replaces_the_emojis_by_one_of_their_aliases.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_replaces_the_emojis_by_one_of_their_aliases

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_with_long_overlapping_emoji.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_with_long_overlapping_emoji.html index d2982d5a..3a949d10 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_with_long_overlapping_emoji.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-aliases_with_long_overlapping_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_with_long_overlapping_emoji

-
-
fun parseToAliases_with_long_overlapping_emoji()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html index 60b19c8c..11fcbce0 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal_IGNORE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html index 59a3cc12..669a6ba4 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal_PARSE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html index 7b8ab06d..8a256177 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal_REMOVE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_replaces_the_emojis_by_their_html_decimal_representation.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_replaces_the_emojis_by_their_html_decimal_representation.html index 2df7934c..52d21178 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_replaces_the_emojis_by_their_html_decimal_representation.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-decimal_replaces_the_emojis_by_their_html_decimal_representation.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal_replaces_the_emojis_by_their_html_decimal_representation

+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html index 7d11e4e4..1ca60b9c 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal_IGNORE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html index 2b78f50a..1fa31718 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal_PARSE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html index 235ef77c..9b1fddb9 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal_REMOVE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_replaces_the_emojis_by_their_htm_hex_representation.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_replaces_the_emojis_by_their_htm_hex_representation.html index 410504eb..af69bca1 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_replaces_the_emojis_by_their_htm_hex_representation.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-html-hexadecimal_replaces_the_emojis_by_their_htm_hex_representation.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal_replaces_the_emojis_by_their_htm_hex_representation

+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_replaces_the_aliases_and_the_html_by_their_emoji.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_replaces_the_aliases_and_the_html_by_their_emoji.html index e8966f73..34596f17 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_replaces_the_aliases_and_the_html_by_their_emoji.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_replaces_the_aliases_and_the_html_by_their_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_replaces_the_aliases_and_the_html_by_their_emoji

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_a_fitzpatrick_modifier.html index 8afbe784..40e38c15 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_a_fitzpatrick_modifier

-
-
fun parseToUnicode_with_a_fitzpatrick_modifier()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace.html index 8e5a8241..607a0756 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji.html index ab1312e8..f0388446 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji

+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji.html index 03708c87..ced040e9 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji

+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji.html index 1f419b63..283d8fbb 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji.html index 34f6a0cd..a1d3462f 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/parse-to-unicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-all-emojis-except_removes_all_the_emojis_from_the_string_except_those_in_the_iterable.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-all-emojis-except_removes_all_the_emojis_from_the_string_except_those_in_the_iterable.html index e4fed45f..c2c6cece 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-all-emojis-except_removes_all_the_emojis_from_the_string_except_those_in_the_iterable.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-all-emojis-except_removes_all_the_emojis_from_the_string_except_those_in_the_iterable.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeAllEmojisExcept_removes_all_the_emojis_from_the_string_except_those_in_the_iterable

+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-all-emojis_removes_all_the_emojis_from_the_string.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-all-emojis_removes_all_the_emojis_from_the_string.html index 8fc0434d..b7d4ae34 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-all-emojis_removes_all_the_emojis_from_the_string.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-all-emojis_removes_all_the_emojis_from_the_string.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeAllEmojis_removes_all_the_emojis_from_the_string

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-emojis_only_removes_the_emojis_in_the_iterable_from_the_string.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-emojis_only_removes_the_emojis_in_the_iterable_from_the_string.html index 2d941d85..117a1b20 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-emojis_only_removes_the_emojis_in_the_iterable_from_the_string.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/remove-emojis_only_removes_the_emojis_in_the_iterable_from_the_string.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeEmojis_only_removes_the_emojis_in_the_iterable_from_the_string

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/replace-all-emojis_replace_the_emojis_by_string.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/replace-all-emojis_replace_the_emojis_by_string.html index 5ea9d56e..f095ddf9 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/replace-all-emojis_replace_the_emojis_by_string.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/replace-all-emojis_replace_the_emojis_by_string.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

replaceAllEmojis_replace_the_emojis_by_string

-
-
fun replaceAllEmojis_replace_the_emojis_by_string()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test-application-context.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test-application-context.html index 6b356880..ba70ed90 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test-application-context.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test-application-context.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testApplicationContext

-
-
fun testApplicationContext()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test-emoji-loading.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test-emoji-loading.html index ecd3a494..efca1476 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test-emoji-loading.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test-emoji-loading.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiLoading

-
-
fun testEmojiLoading()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test_with_a_new_flag.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test_with_a_new_flag.html index 72723f20..fd902e0b 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test_with_a_new_flag.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-parse-test/test_with_a_new_flag.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

test_with_a_new_flag

-
-
fun test_with_a_new_flag()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/-emoji-util-test.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/-emoji-util-test.html index b3f1b45d..8cf62cd0 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/-emoji-util-test.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/-emoji-util-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiUtilTest

-
-
fun EmojiUtilTest()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/index.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/index.html index 58cad72b..c6fcbe5d 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/index.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiUtilTest

-
-
class EmojiUtilTest
+
+
-
+
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiUtilTest()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun surrogateToHTMLTest()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testApplicationContext()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testCountEmojis()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByDecimalHtml()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByHexHtml()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByShortCode()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByShortCodeWithColons()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByUnicode()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojify1()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojify2()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiLoading()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testHexHtmlify()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testHtmlify()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testIsEmoji()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testShortCodifyFromEmojis()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testShortCodifyFromHtmlEntities()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun toSurrogateDecimalAndBackTest()
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -369,10 +382,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/surrogate-to-h-t-m-l-test.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/surrogate-to-h-t-m-l-test.html index 8d4664ae..53d39742 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/surrogate-to-h-t-m-l-test.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/surrogate-to-h-t-m-l-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

surrogateToHTMLTest

-
-
fun surrogateToHTMLTest()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-application-context.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-application-context.html index 1f0dee19..10299fa2 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-application-context.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-application-context.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testApplicationContext

-
-
fun testApplicationContext()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-count-emojis.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-count-emojis.html index c65b0623..370c441f 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-count-emojis.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-count-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testCountEmojis

-
-
fun testCountEmojis()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-decimal-html.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-decimal-html.html index 8b187b11..b9d8bfc9 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-decimal-html.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-decimal-html.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByDecimalHtml

-
-
fun testEmojiByDecimalHtml()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-hex-html.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-hex-html.html index ba431b1e..a26607c3 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-hex-html.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-hex-html.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByHexHtml

-
-
fun testEmojiByHexHtml()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-short-code-with-colons.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-short-code-with-colons.html index 9fb1f6a9..13c07b49 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-short-code-with-colons.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-short-code-with-colons.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByShortCodeWithColons

-
-
fun testEmojiByShortCodeWithColons()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-short-code.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-short-code.html index 76d0cdd4..27690dde 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-short-code.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-short-code.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByShortCode

-
-
fun testEmojiByShortCode()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-unicode.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-unicode.html index cd9482d3..b3bf5823 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-unicode.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-by-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByUnicode

-
-
fun testEmojiByUnicode()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-loading.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-loading.html index 5ef12b28..568c91f2 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-loading.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emoji-loading.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiLoading

-
-
fun testEmojiLoading()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emojify1.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emojify1.html index 6778a3f7..e52e946f 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emojify1.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emojify1.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojify1

-
-
fun testEmojify1()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emojify2.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emojify2.html index 3cd59f46..2d268bf7 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emojify2.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-emojify2.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojify2

-
-
fun testEmojify2()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-hex-htmlify.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-hex-htmlify.html index 53ed768c..e57a9b03 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-hex-htmlify.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-hex-htmlify.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testHexHtmlify

-
-
fun testHexHtmlify()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-htmlify.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-htmlify.html index 15b404e2..34d88b5d 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-htmlify.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-htmlify.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testHtmlify

-
-
fun testHtmlify()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-is-emoji.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-is-emoji.html index 813988c6..dfcb7f13 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-is-emoji.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-is-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testIsEmoji

-
-
fun testIsEmoji()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-short-codify-from-emojis.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-short-codify-from-emojis.html index a4ac1579..b1a6c80b 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-short-codify-from-emojis.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-short-codify-from-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testShortCodifyFromEmojis

-
-
fun testShortCodifyFromEmojis()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-short-codify-from-html-entities.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-short-codify-from-html-entities.html index a751177c..787d29ff 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-short-codify-from-html-entities.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/test-short-codify-from-html-entities.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testShortCodifyFromHtmlEntities

-
-
fun testShortCodifyFromHtmlEntities()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/to-surrogate-decimal-and-back-test.html b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/to-surrogate-decimal-and-back-test.html index a983af08..70a77c4c 100644 --- a/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/to-surrogate-decimal-and-back-test.html +++ b/emojify/io.wax911.emojify/[android-jvm]-emoji-util-test/to-surrogate-decimal-and-back-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

toSurrogateDecimalAndBackTest

-
-
fun toSurrogateDecimalAndBackTest()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/-companion/contains-emojis.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/-companion/contains-emojis.html index 273758ab..cab7f906 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/-companion/contains-emojis.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/-companion/contains-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

containsEmojis

-
-
fun containsEmojis(emojis: Iterable<Emoji>, vararg aliases: String): Boolean
+
+
fun containsEmojis(emojis: Iterable<Emoji>, vararg aliases: String): Boolean
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/-companion/index.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/-companion/index.html index 2408945a..0d1ada3e 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/-companion/index.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/-companion/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

Companion

-
-
object Companion
+
+
object Companion
-
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun containsEmojis(emojis: Iterable<Emoji>, vararg aliases: String): Boolean
+
Link copied to clipboard
+
+
+
+
+
+
fun containsEmojis(emojis: Iterable<Emoji>, vararg aliases: String): Boolean
+
@@ -78,10 +89,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/-emoji-manager-test.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/-emoji-manager-test.html index 8ba4c1f7..d9c8289b 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/-emoji-manager-test.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/-emoji-manager-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiManagerTest

-
-
fun EmojiManagerTest()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-all-tags_returns_the_tags.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-all-tags_returns_the_tags.html index 23edbbbe..e3f5dc88 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-all-tags_returns_the_tags.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-all-tags_returns_the_tags.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAllTags_returns_the_tags

-
-
fun getAllTags_returns_the_tags()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-all_does_not_return_duplicates.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-all_does_not_return_duplicates.html index c625f840..ff66df27 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-all_does_not_return_duplicates.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-all_does_not_return_duplicates.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAll_does_not_return_duplicates

-
-
fun getAll_does_not_return_duplicates()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_returns_the_emoji_for_the_alias.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_returns_the_emoji_for_the_alias.html index 82e60af8..6b1b109d 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_returns_the_emoji_for_the_alias.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_returns_the_emoji_for_the_alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias_returns_the_emoji_for_the_alias

-
-
fun getForAlias_returns_the_emoji_for_the_alias()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_with_colons_returns_the_emoji_for_the_alias.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_with_colons_returns_the_emoji_for_the_alias.html index 397ee82d..e5978e3a 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_with_colons_returns_the_emoji_for_the_alias.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_with_colons_returns_the_emoji_for_the_alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias_with_colons_returns_the_emoji_for_the_alias

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_with_unknown_alias_returns_null.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_with_unknown_alias_returns_null.html index 63ee4b61..23d13add 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_with_unknown_alias_returns_null.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-alias_with_unknown_alias_returns_null.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias_with_unknown_alias_returns_null

-
-
fun getForAlias_with_unknown_alias_returns_null()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-tag_returns_the_emojis_for_the_tag.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-tag_returns_the_emojis_for_the_tag.html index 2ba5b546..78ad2923 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-tag_returns_the_emojis_for_the_tag.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-tag_returns_the_emojis_for_the_tag.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForTag_returns_the_emojis_for_the_tag

-
-
fun getForTag_returns_the_emojis_for_the_tag()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-tag_with_unknown_tag_returns_null.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-tag_with_unknown_tag_returns_null.html index 25e370f9..4e022ced 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-tag_with_unknown_tag_returns_null.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-for-tag_with_unknown_tag_returns_null.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForTag_with_unknown_tag_returns_null

-
-
fun getForTag_with_unknown_tag_returns_null()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-trimmed-alias.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-trimmed-alias.html index 5ae233ee..32e94755 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-trimmed-alias.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/get-trimmed-alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getTrimmedAlias

-
-
fun getTrimmedAlias()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/index.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/index.html index 1f05d38b..293b5044 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/index.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiManagerTest

-
-
class EmojiManagerTest

Instrumentation test, which will execute on an Android device.

+
+

Instrumentation test, which will execute on an Android device.

See also

-
+
-

See also

-
- -
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManagerTest()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
-

Types

-
-
-
-
- +
+

Types

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
object Companion
+
Link copied to clipboard
+
+
+
+
+
+
object Companion
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAll_does_not_return_duplicates()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAllTags_returns_the_tags()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getForAlias_returns_the_emoji_for_the_alias()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getForAlias_with_unknown_alias_returns_null()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getForTag_returns_the_emojis_for_the_tag()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getForTag_with_unknown_tag_returns_null()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getTrimmedAlias()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isEmoji_for_a_non_emoji_returns_false()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isEmoji_for_an_emoji_returns_true()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isEmoji_with_fitzpatric_modifier_returns_true()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isOnlyEmojis_for_an_emoji_returns_true()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isOnlyEmojis_for_emojis_returns_true()
+
Link copied to clipboard
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun isOnlyEmojis_for_random_string_returns_false()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun no_duplicate_alias()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testApplicationContext()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiLoading()
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -411,10 +420,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_a_non_emoji_returns_false.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_a_non_emoji_returns_false.html index 10764faa..bf75b5db 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_a_non_emoji_returns_false.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_a_non_emoji_returns_false.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji_for_a_non_emoji_returns_false

-
-
fun isEmoji_for_a_non_emoji_returns_false()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_an_emoji_and_other_chars_returns_false.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_an_emoji_and_other_chars_returns_false.html index 86de7bda..e90e9ba4 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_an_emoji_and_other_chars_returns_false.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_an_emoji_and_other_chars_returns_false.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji_for_an_emoji_and_other_chars_returns_false

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_an_emoji_returns_true.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_an_emoji_returns_true.html index 526dbd87..76d181b5 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_an_emoji_returns_true.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_for_an_emoji_returns_true.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji_for_an_emoji_returns_true

-
-
fun isEmoji_for_an_emoji_returns_true()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_with_fitzpatric_modifier_returns_true.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_with_fitzpatric_modifier_returns_true.html index e9062751..1336ff88 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_with_fitzpatric_modifier_returns_true.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-emoji_with_fitzpatric_modifier_returns_true.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji_with_fitzpatric_modifier_returns_true

-
-
fun isEmoji_with_fitzpatric_modifier_returns_true()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_an_emoji_returns_true.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_an_emoji_returns_true.html index 2739a5ad..36688467 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_an_emoji_returns_true.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_an_emoji_returns_true.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis_for_an_emoji_returns_true

-
-
fun isOnlyEmojis_for_an_emoji_returns_true()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_emojis_returns_true.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_emojis_returns_true.html index 5517ffd2..d9d47d02 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_emojis_returns_true.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_emojis_returns_true.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis_for_emojis_returns_true

-
-
fun isOnlyEmojis_for_emojis_returns_true()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_random_string_returns_false.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_random_string_returns_false.html index f862c6ce..72b2ed6a 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_random_string_returns_false.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/is-only-emojis_for_random_string_returns_false.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis_for_random_string_returns_false

-
-
fun isOnlyEmojis_for_random_string_returns_false()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/no_duplicate_alias.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/no_duplicate_alias.html index 46aa14d0..8e4e8287 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/no_duplicate_alias.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/no_duplicate_alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

no_duplicate_alias

-
-
fun no_duplicate_alias()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/test-application-context.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/test-application-context.html index c2494ada..089487af 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/test-application-context.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/test-application-context.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testApplicationContext

-
-
fun testApplicationContext()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager-test/test-emoji-loading.html b/emojify/io.wax911.emojify/[common]-emoji-manager-test/test-emoji-loading.html index a6498847..c1655be8 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager-test/test-emoji-loading.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager-test/test-emoji-loading.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiLoading

-
-
fun testEmojiLoading()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/-emoji-manager.html b/emojify/io.wax911.emojify/[common]-emoji-manager/-emoji-manager.html index 1d1f3829..feaa0a8f 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/-emoji-manager.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/-emoji-manager.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiManager

-
-
fun EmojiManager(emojiList: Collection<Emoji>)

Parameters

emojiList

complete list of all emojis

+
+
constructor(emojiList: Collection<Emoji>)

Parameters

emojiList

complete list of all emojis

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/emoji-list.html b/emojify/io.wax911.emojify/[common]-emoji-manager/emoji-list.html index 10685588..0e4ba83c 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/emoji-list.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/emoji-list.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

emojiList

-
-
open override val emojiList: Collection<Emoji>

Parameters

emojiList

complete list of all emojis

+
+
open override val emojiList: Collection<Emoji>

Parameters

emojiList

complete list of all emojis

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/get-all-tags.html b/emojify/io.wax911.emojify/[common]-emoji-manager/get-all-tags.html index f0cc2d2a..5f69359a 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/get-all-tags.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/get-all-tags.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAllTags

-
-
open override fun getAllTags(): Collection<String>

Returns all the tags in the database

Return

the tags

+
+
open override fun getAllTags(): Collection<String>

Returns all the tags in the database

Return

the tags

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/get-by-unicode.html b/emojify/io.wax911.emojify/[common]-emoji-manager/get-by-unicode.html index 236d1315..184966ad 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/get-by-unicode.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/get-by-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getByUnicode

-
-
open override fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

Return

the associated Emoji, null if the unicode is unknown

Parameters

unicode

the the unicode

+
+
open override fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

Return

the associated Emoji, null if the unicode is unknown

Parameters

unicode

the the unicode

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/get-for-alias.html b/emojify/io.wax911.emojify/[common]-emoji-manager/get-for-alias.html index 5cd38086..f3e24b9f 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/get-for-alias.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/get-for-alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForAlias

-
-
open override fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

Return

the associated Emoji, null if the alias is unknown

Parameters

alias

the alias

+
+
open override fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

Return

the associated Emoji, null if the alias is unknown

Parameters

alias

the alias

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/get-for-tag.html b/emojify/io.wax911.emojify/[common]-emoji-manager/get-for-tag.html index ee77b9f8..d91576bc 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/get-for-tag.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/get-for-tag.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getForTag

-
-
open override fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

Return

the associated Emojis, null if the tag is unknown

Parameters

tag

the tag

+
+
open override fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

Return

the associated Emojis, null if the tag is unknown

Parameters

tag

the tag

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/index.html b/emojify/io.wax911.emojify/[common]-emoji-manager/index.html index 9d6ea940..6b77e83e 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/index.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiManager

-
-
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager

Holds the loaded emojis and provides search functions.

Author

vdurmont@gmail.com

+
+
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager

Holds the loaded emojis and provides search functions.

Author

vdurmont@gmail.com

Parameters

emojiList

complete list of all emojis

-
+
-

Parameters

-
-
-
-
emojiList

complete list of all emojis

-
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager(emojiList: Collection<Emoji>)
+
Link copied to clipboard
+
+
+
+
+
+
constructor(emojiList: Collection<Emoji>)
+
-

Functions

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open override fun getAllTags(): Collection<String>

Returns all the tags in the database

+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open override val emojiList: Collection<Emoji>
+
+
+
+

Functions

+
+ + +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
open override fun getAllTags(): Collection<String>

Returns all the tags in the database

+
+
+
+
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

+
Link copied to clipboard
+
+
+
+
+
+
open override fun getByUnicode(unicode: String?): Emoji?

Returns the Emoji for a given unicode.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

+
Link copied to clipboard
+
+
+
+
+
+
open override fun getForAlias(alias: String?): Emoji?

Returns the Emoji for a given alias.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

+
Link copied to clipboard
+
+
+
+
+
+
open override fun getForTag(tag: String?): Collection<Emoji>?

Returns all the Emojis for a given tag.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

open override fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

+
Link copied to clipboard
+
+
+
+
+
+
open override fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

open override fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
open override fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

-
-
-
-
- -
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
fun trimAlias(alias: String): String
+
Link copied to clipboard
+
+
+
+
+
+
open override fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

+
-
-
-

Properties

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
-
-
open override val emojiList: Collection<Emoji>
+ +
+
+
+
parseFromUnicode
+ +
Link copied to clipboard
+
+
+
+
+
+

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

+
-
-
-

Extensions

-
-
-
-
-
extractEmojis
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
fun EmojiManager.extractEmojis(input: String): List<String>
+ +
+
+
+
parseToAliases
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

+
-
- -
-
-
-
parseFromUnicode
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String
fun EmojiManager.parseFromUnicode(input: String, transformer: EmojiTransformer): String

Detects all unicode emojis in input string and replaces them with the return value of transformer.transform()

-
-
-
-
- -
-
-
-
parseToAliases
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToAliases(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by one of their alias (between 2 ':').

+ +
+
+
+
parseToHtmlDecimal
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

+
-
- -
-
-
-
parseToHtmlDecimal
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String
fun EmojiManager.parseToHtmlDecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String

Replaces the emoji's unicode occurrences by their html representation.

+ +
+
+
+
parseToHtmlHexadecimal
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

+
-
- -
-
-
-
parseToHtmlHexadecimal
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?
fun EmojiManager.parseToHtmlHexadecimal(input: String, fitzpatrickAction: FitzpatrickAction = FitzpatrickAction.PARSE): String?

Replaces the emoji's unicode occurrences by their html hex representation.

+ +
+
+
+
parseToUnicode
+ +
Link copied to clipboard
+
+
+
+
+
+

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

+
-
- -
-
-
-
parseToUnicode
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String
fun EmojiManager.parseToUnicode(input: String): String

Replaces the emoji's aliases (between 2 ':') occurrences and the html representations by their unicode.

+ + -
- -
-
-
-
removeAllEmojis
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String

Removes all emojis from a String

fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String
fun EmojiManager.removeAllEmojis(str: String): String

Removes all emojis from a String

+ +
+
+
+
removeAllEmojisExcept
+ +
Link copied to clipboard
+
+
+
+
+
+

Removes all the emojis in a String except a provided set

+
-
- -
-
-
-
removeAllEmojisExcept
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String

Removes all the emojis in a String except a provided set

fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String
fun EmojiManager.removeAllEmojisExcept(str: String, emojisToKeep: Collection<Emoji>): String

Removes all the emojis in a String except a provided set

+ +
+
+
+
removeEmojis
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

+
-
- -
-
-
-
removeEmojis
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String
fun EmojiManager.removeEmojis(str: String, emojisToRemove: Collection<Emoji>): String

Removes a set of emojis from a String

+ +
+
+
+
replaceAllEmojis
+ +
Link copied to clipboard
+
+
+
+
+
+
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

+
-
- -
-
-
-
replaceAllEmojis
- -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String
fun EmojiManager.replaceAllEmojis(str: String, replacementString: String): String

Replace all emojis with character

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
+
+
fun trimAlias(alias: String): String
+
@@ -397,10 +404,11 @@

Extensions

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/is-emoji.html b/emojify/io.wax911.emojify/[common]-emoji-manager/is-emoji.html index 763a7b6a..a3de37b7 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/is-emoji.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/is-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isEmoji

-
-
open override fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

Return

true if the string is an emoji's unicode, false else

Parameters

string

the string to test


open override fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

+
+
open override fun isEmoji(string: String?): Boolean

Tests if a given String is an emoji.

Return

true if the string is an emoji's unicode, false else

Parameters

string

the string to test


open override fun isEmoji(sequence: CharArray): Matches

Checks if sequence of chars contain an emoji.

Return

Parameters

sequence

Sequence of char that may contain emoji in full or partially.

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/is-only-emojis.html b/emojify/io.wax911.emojify/[common]-emoji-manager/is-only-emojis.html index 445e7176..e9b5aa21 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/is-only-emojis.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/is-only-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

isOnlyEmojis

-
-
open override fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

Return

true if the string only contains emojis, false else

Parameters

string

the string to test

+
+
open override fun isOnlyEmojis(string: String?): Boolean

Tests if a given String only contains emojis.

Return

true if the string only contains emojis, false else

Parameters

string

the string to test

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-manager/trim-alias.html b/emojify/io.wax911.emojify/[common]-emoji-manager/trim-alias.html index 21b729a6..f1a3f636 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-manager/trim-alias.html +++ b/emojify/io.wax911.emojify/[common]-emoji-manager/trim-alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

trimAlias

-
-
fun trimAlias(alias: String): String
+
+
fun trimAlias(alias: String): String
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/-emoji-parse-test.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/-emoji-parse-test.html index 847744f8..a814432d 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/-emoji-parse-test.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/-emoji-parse-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiParseTest

-
-
fun EmojiParseTest()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/extract-emojis.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/extract-emojis.html index a4d0653e..6139aee1 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/extract-emojis.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/extract-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

extractEmojis

-
-
fun extractEmojis()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_a_fitzpatrick_modifier.html index 6101ad4c..16a6e090 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_a_fitzpatrick_modifier

-
-
fun getAliasCanditates_with_a_fitzpatrick_modifier()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias.html index e3c31fdf..0dd0cc97 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_one_alias

-
-
fun getAliasCanditates_with_one_alias()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_after.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_after.html index 48a1344e..ee211eb7 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_after.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_after.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_one_alias_an_another_colon_after

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_before_after.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_before_after.html index 8c4b52a0..d3cd75e4 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_before_after.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_before_after.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_one_alias_an_another_colon_before_after

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_right_after.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_right_after.html index d4ed4892..e785955b 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_right_after.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_one_alias_an_another_colon_right_after.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_one_alias_an_another_colon_right_after

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_two_aliases.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_two_aliases.html index 6ee41f92..8254fbba 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_two_aliases.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_two_aliases.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_two_aliases

-
-
fun getAliasCanditates_with_two_aliases()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_two_aliases_sharing_a_colon.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_two_aliases_sharing_a_colon.html index cf0e8f65..77a474df 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_two_aliases_sharing_a_colon.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/get-alias-canditates_with_two_aliases_sharing_a_colon.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

getAliasCanditates_with_two_aliases_sharing_a_colon

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/index.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/index.html index 196bf66c..8c8c9cdc 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/index.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiParseTest

-
-
class EmojiParseTest

Instrumentation test, which will execute on an Android device.

+
+

Instrumentation test, which will execute on an Android device.

See also

-
+
-

See also

-
- -
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiParseTest()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun extractEmojis()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAliasCanditates_with_a_fitzpatrick_modifier()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAliasCanditates_with_one_alias()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun getAliasCanditates_with_two_aliases()
+
Link copied to clipboard
+
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_continuous_non_overlapping_emojis()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_couplekiss_woman_woman()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_IGNORE_with_a_fitzpatrick_modifier()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_NG_and_nigeria()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_REMOVE_with_a_fitzpatrick_modifier()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToAliases_with_long_overlapping_emoji()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- + -
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- + -
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun parseToUnicode_with_a_fitzpatrick_modifier()
+
Link copied to clipboard
+
+
-
-
-
-
- + -
-
-
- + -
-
-
- + -
-
-
- +
+ -
-
-
-
- + -
-
-
- +
+
+ -
-
-
-
-
+
Link copied to clipboard
+
+
-
-
-
-
- + -
-
-
- +
+
+ -
-
- +
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun replaceAllEmojis_replace_the_emojis_by_string()
+
Link copied to clipboard
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun test_with_a_new_flag()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testApplicationContext()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiLoading()
+
Link copied to clipboard
+
+
+
+
+
+
+
@@ -766,10 +773,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html index 09fb9df4..acf18130 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_IGNORE_with_a_fitzpatrick_modifier

-
-
fun parseToAliases_IGNORE_with_a_fitzpatrick_modifier()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_without_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_without_a_fitzpatrick_modifier.html index f19c95f6..484b034a 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_without_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-i-g-n-o-r-e_without_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_IGNORE_without_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-n-g_and_nigeria.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-n-g_and_nigeria.html index 3ab2f227..82e6699f 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-n-g_and_nigeria.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-n-g_and_nigeria.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_NG_and_nigeria

-
-
fun parseToAliases_NG_and_nigeria()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html index 279650a3..21a2bb38 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_REMOVE_with_a_fitzpatrick_modifier

-
-
fun parseToAliases_REMOVE_with_a_fitzpatrick_modifier()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_without_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_without_a_fitzpatrick_modifier.html index d914fb08..9185e63b 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_without_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-m-o-v-e_without_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_REMOVE_without_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-p-l-a-c-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-p-l-a-c-e_with_a_fitzpatrick_modifier.html index 3e96b486..d4ee38cd 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-p-l-a-c-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_-r-e-p-l-a-c-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_REPLACE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_continuous_non_overlapping_emojis.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_continuous_non_overlapping_emojis.html index cedde104..8983f4ba 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_continuous_non_overlapping_emojis.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_continuous_non_overlapping_emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_continuous_non_overlapping_emojis

-
-
fun parseToAliases_continuous_non_overlapping_emojis()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_couplekiss_woman_woman.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_couplekiss_woman_woman.html index a2f2733d..eb40efa0 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_couplekiss_woman_woman.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_couplekiss_woman_woman.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_couplekiss_woman_woman

-
-
fun parseToAliases_couplekiss_woman_woman()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_replaces_the_emojis_by_one_of_their_aliases.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_replaces_the_emojis_by_one_of_their_aliases.html index 20819566..0416b858 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_replaces_the_emojis_by_one_of_their_aliases.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_replaces_the_emojis_by_one_of_their_aliases.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_replaces_the_emojis_by_one_of_their_aliases

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_with_long_overlapping_emoji.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_with_long_overlapping_emoji.html index cf04561f..303fd4f4 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_with_long_overlapping_emoji.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-aliases_with_long_overlapping_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToAliases_with_long_overlapping_emoji

-
-
fun parseToAliases_with_long_overlapping_emoji()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html index 39e6dbdf..b7e51e47 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal_IGNORE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html index c9fd2c18..36819494 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal_PARSE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html index 63f08bcc..0b13808b 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal_REMOVE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_replaces_the_emojis_by_their_html_decimal_representation.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_replaces_the_emojis_by_their_html_decimal_representation.html index 376b947e..ee8bd5ba 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_replaces_the_emojis_by_their_html_decimal_representation.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-decimal_replaces_the_emojis_by_their_html_decimal_representation.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlDecimal_replaces_the_emojis_by_their_html_decimal_representation

+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html index dd455e1a..2c4e2676 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-i-g-n-o-r-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal_IGNORE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html index 74dce5fa..4fd7ad88 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-p-a-r-s-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal_PARSE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html index d972be28..8a570c9a 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_-r-e-m-o-v-e_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal_REMOVE_with_a_fitzpatrick_modifier

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_replaces_the_emojis_by_their_htm_hex_representation.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_replaces_the_emojis_by_their_htm_hex_representation.html index 6ee70a64..5ef4e483 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_replaces_the_emojis_by_their_htm_hex_representation.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-html-hexadecimal_replaces_the_emojis_by_their_htm_hex_representation.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToHtmlHexadecimal_replaces_the_emojis_by_their_htm_hex_representation

+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_replaces_the_aliases_and_the_html_by_their_emoji.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_replaces_the_aliases_and_the_html_by_their_emoji.html index 462681df..ef9e5fb8 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_replaces_the_aliases_and_the_html_by_their_emoji.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_replaces_the_aliases_and_the_html_by_their_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_replaces_the_aliases_and_the_html_by_their_emoji

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_a_fitzpatrick_modifier.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_a_fitzpatrick_modifier.html index 742767fa..9f672a3b 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_a_fitzpatrick_modifier.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_a_fitzpatrick_modifier.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_a_fitzpatrick_modifier

-
-
fun parseToUnicode_with_a_fitzpatrick_modifier()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace.html index c326b2b4..66341cd4 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_an_unsupported_fitzpatrick_modifier_does_not_replace

+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji.html index 4ddc5ec5..f1f15783 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_the_keycap_asterisk_emoji_replaces_the_alias_by_the_emoji

+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji.html index ae484904..9031ecab 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_the_thumbs_up_emoji_in_hex_replaces_the_alias_by_the_emoji

+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji.html index 754bf241..befbd69c 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_the_thumbs_up_emoji_replaces_the_alias_by_the_emoji

+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji.html index ef295334..91c99247 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/parse-to-unicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

parseToUnicode_with_the_thumbsdown_emoji_replaces_the_alias_by_the_emoji

+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-all-emojis-except_removes_all_the_emojis_from_the_string_except_those_in_the_iterable.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-all-emojis-except_removes_all_the_emojis_from_the_string_except_those_in_the_iterable.html index 1ef20b99..e2328cab 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-all-emojis-except_removes_all_the_emojis_from_the_string_except_those_in_the_iterable.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-all-emojis-except_removes_all_the_emojis_from_the_string_except_those_in_the_iterable.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeAllEmojisExcept_removes_all_the_emojis_from_the_string_except_those_in_the_iterable

+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-all-emojis_removes_all_the_emojis_from_the_string.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-all-emojis_removes_all_the_emojis_from_the_string.html index a6d37bcd..9dfcda3e 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-all-emojis_removes_all_the_emojis_from_the_string.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-all-emojis_removes_all_the_emojis_from_the_string.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeAllEmojis_removes_all_the_emojis_from_the_string

-
-
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-emojis_only_removes_the_emojis_in_the_iterable_from_the_string.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-emojis_only_removes_the_emojis_in_the_iterable_from_the_string.html index fc67b89d..36308944 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-emojis_only_removes_the_emojis_in_the_iterable_from_the_string.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/remove-emojis_only_removes_the_emojis_in_the_iterable_from_the_string.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

removeEmojis_only_removes_the_emojis_in_the_iterable_from_the_string

+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/replace-all-emojis_replace_the_emojis_by_string.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/replace-all-emojis_replace_the_emojis_by_string.html index 6e4ab27c..0e15b472 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/replace-all-emojis_replace_the_emojis_by_string.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/replace-all-emojis_replace_the_emojis_by_string.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

replaceAllEmojis_replace_the_emojis_by_string

-
-
fun replaceAllEmojis_replace_the_emojis_by_string()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/test-application-context.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/test-application-context.html index 02196027..64490260 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/test-application-context.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/test-application-context.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testApplicationContext

-
-
fun testApplicationContext()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/test-emoji-loading.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/test-emoji-loading.html index a2b3451c..b1a32899 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/test-emoji-loading.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/test-emoji-loading.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiLoading

-
-
fun testEmojiLoading()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-parse-test/test_with_a_new_flag.html b/emojify/io.wax911.emojify/[common]-emoji-parse-test/test_with_a_new_flag.html index c6449482..5677c354 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-parse-test/test_with_a_new_flag.html +++ b/emojify/io.wax911.emojify/[common]-emoji-parse-test/test_with_a_new_flag.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

test_with_a_new_flag

-
-
fun test_with_a_new_flag()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/-emoji-util-test.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/-emoji-util-test.html index ec475afb..8d074ac5 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/-emoji-util-test.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/-emoji-util-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiUtilTest

-
-
fun EmojiUtilTest()
+
+
constructor()
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/index.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/index.html index b81d82ba..0ad64fac 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/index.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

EmojiUtilTest

-
-
class EmojiUtilTest
+
+
-
+
-

Constructors

-
-
-
-
- +
+

Constructors

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun EmojiUtilTest()
+
Link copied to clipboard
+
+
+
+
+
+
constructor()
+
-

Functions

-
-
-
-
- +
+

Functions

+
+
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun surrogateToHTMLTest()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testApplicationContext()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testCountEmojis()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByDecimalHtml()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByHexHtml()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByShortCode()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByShortCodeWithColons()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiByUnicode()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojify1()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojify2()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testEmojiLoading()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testHexHtmlify()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testHtmlify()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testIsEmoji()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testShortCodifyFromEmojis()
+
Link copied to clipboard
+
+
+
+
+
+
+
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun testShortCodifyFromHtmlEntities()
+
Link copied to clipboard
+
+
+
+ +
-
-
-
-
- +
+
+
+ -
Link copied to clipboard
-
-
-
-
-
-
fun toSurrogateDecimalAndBackTest()
+
Link copied to clipboard
+
+
+
+ +
@@ -369,10 +382,11 @@

Functions

- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/surrogate-to-h-t-m-l-test.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/surrogate-to-h-t-m-l-test.html index 193ece77..79d0f55a 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/surrogate-to-h-t-m-l-test.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/surrogate-to-h-t-m-l-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

surrogateToHTMLTest

-
-
fun surrogateToHTMLTest()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-application-context.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-application-context.html index 7a5d4c60..d755ad6c 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-application-context.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-application-context.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testApplicationContext

-
-
fun testApplicationContext()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-count-emojis.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-count-emojis.html index bb9cb1e6..964c342c 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-count-emojis.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-count-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testCountEmojis

-
-
fun testCountEmojis()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-decimal-html.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-decimal-html.html index 475694fd..4376183e 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-decimal-html.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-decimal-html.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByDecimalHtml

-
-
fun testEmojiByDecimalHtml()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-hex-html.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-hex-html.html index 937e2ab7..c33d0d55 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-hex-html.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-hex-html.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByHexHtml

-
-
fun testEmojiByHexHtml()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-short-code-with-colons.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-short-code-with-colons.html index e740711f..4b0be24d 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-short-code-with-colons.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-short-code-with-colons.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByShortCodeWithColons

-
-
fun testEmojiByShortCodeWithColons()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-short-code.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-short-code.html index 479b790a..134d4986 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-short-code.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-short-code.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByShortCode

-
-
fun testEmojiByShortCode()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-unicode.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-unicode.html index 1a7d1ab5..6e4a35b1 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-unicode.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-by-unicode.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiByUnicode

-
-
fun testEmojiByUnicode()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-loading.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-loading.html index 2d7a3304..273a16db 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-loading.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emoji-loading.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojiLoading

-
-
fun testEmojiLoading()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emojify1.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emojify1.html index 05ee4544..067fabcb 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emojify1.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emojify1.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojify1

-
-
fun testEmojify1()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emojify2.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emojify2.html index ba30a66e..cb6ffc16 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emojify2.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-emojify2.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testEmojify2

-
-
fun testEmojify2()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-hex-htmlify.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-hex-htmlify.html index e5f4afd8..780cc140 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-hex-htmlify.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-hex-htmlify.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testHexHtmlify

-
-
fun testHexHtmlify()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-htmlify.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-htmlify.html index 09a2849b..c72003be 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-htmlify.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-htmlify.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testHtmlify

-
-
fun testHtmlify()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-is-emoji.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-is-emoji.html index 9661e364..c4d828cf 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-is-emoji.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-is-emoji.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testIsEmoji

-
-
fun testIsEmoji()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-short-codify-from-emojis.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-short-codify-from-emojis.html index 8c9e7202..7d980eee 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-short-codify-from-emojis.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-short-codify-from-emojis.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testShortCodifyFromEmojis

-
-
fun testShortCodifyFromEmojis()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-short-codify-from-html-entities.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-short-codify-from-html-entities.html index d48dad7a..2a2a64c1 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/test-short-codify-from-html-entities.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/test-short-codify-from-html-entities.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

testShortCodifyFromHtmlEntities

-
-
fun testShortCodifyFromHtmlEntities()
+
+
- +
diff --git a/emojify/io.wax911.emojify/[common]-emoji-util-test/to-surrogate-decimal-and-back-test.html b/emojify/io.wax911.emojify/[common]-emoji-util-test/to-surrogate-decimal-and-back-test.html index 0171665c..a1af13bb 100644 --- a/emojify/io.wax911.emojify/[common]-emoji-util-test/to-surrogate-decimal-and-back-test.html +++ b/emojify/io.wax911.emojify/[common]-emoji-util-test/to-surrogate-decimal-and-back-test.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+

toSurrogateDecimalAndBackTest

-
-
fun toSurrogateDecimalAndBackTest()
+
+
- +
diff --git a/emojify/io.wax911.emojify/index.html b/emojify/io.wax911.emojify/index.html index a996f8a2..e95cd3f4 100644 --- a/emojify/io.wax911.emojify/index.html +++ b/emojify/io.wax911.emojify/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +
-
- +
+
-

Package io.wax911.emojify

+

Package-level declarations

-
+
-

Types

-
-
-
-
-
EmojiManager
+
+

Types

+
+
+
+
+
EmojiManager
-
Link copied to clipboard
-
-
-
-
-
-
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager

Holds the loaded emojis and provides search functions.

class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager

Holds the loaded emojis and provides search functions.

+
Link copied to clipboard
+
+
+
+
+
+
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager

Holds the loaded emojis and provides search functions.

class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager
class EmojiManager(val emojiList: Collection<Emoji>) : IEmojiManager

Holds the loaded emojis and provides search functions.

+
-
- -
-
-
-
EmojiManagerTest
+ +
+
+
+
EmojiManagerTest
-
Link copied to clipboard
-
-
-
-
-
-
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest

Instrumentation test, which will execute on an Android device.

class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest
class EmojiManagerTest

Instrumentation test, which will execute on an Android device.

+
Link copied to clipboard
+
+
+
+
+
+

Instrumentation test, which will execute on an Android device.

Instrumentation test, which will execute on an Android device.

+
-
- -
-
-
-
EmojiParseTest
+ +
+
+
+
EmojiParseTest
-
Link copied to clipboard
-
-
-
-
-
-
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest

Instrumentation test, which will execute on an Android device.

class EmojiParseTest
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest
class EmojiParseTest

Instrumentation test, which will execute on an Android device.

+
Link copied to clipboard
+
+
+
+
+
+

Instrumentation test, which will execute on an Android device.

Instrumentation test, which will execute on an Android device.

+
-
- -
-
-
-
EmojiUtilTest
+ +
+
+
+
EmojiUtilTest
-
Link copied to clipboard
-
-
-
-
-
-
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
class EmojiUtilTest
+
Link copied to clipboard
+
+
@@ -127,10 +138,11 @@

Types

- +
diff --git a/emojify/package-list b/emojify/package-list index e226bae1..3feb8e51 100644 --- a/emojify/package-list +++ b/emojify/package-list @@ -4,10 +4,10 @@ $dokka.location:io.wax911.emojify.initializer////PointingToDeclaration/emojify/ $dokka.location:io.wax911.emojify.initializer/EmojiInitializer.Companion///PointingToDeclaration/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-companion/index.html $dokka.location:io.wax911.emojify.initializer/EmojiInitializer///PointingToDeclaration/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/index.html $dokka.location:io.wax911.emojify.initializer/EmojiInitializer/EmojiInitializer/#/PointingToDeclaration/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/-emoji-initializer.html -$dokka.location:io.wax911.emojify.initializer/EmojiInitializer/create/#Context/PointingToDeclaration/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/create.html +$dokka.location:io.wax911.emojify.initializer/EmojiInitializer/create/#[Error type: Unresolved type for Context]/PointingToDeclaration/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/create.html $dokka.location:io.wax911.emojify.initializer/EmojiInitializer/create/#android.content.Context/PointingToDeclaration/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/create.html $dokka.location:io.wax911.emojify.initializer/EmojiInitializer/dependencies/#/PointingToDeclaration/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/dependencies.html -$dokka.location:io.wax911.emojify.initializer/EmojiInitializer/initEmojiData/#AssetManager#kotlin.String/PointingToDeclaration/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/init-emoji-data.html +$dokka.location:io.wax911.emojify.initializer/EmojiInitializer/initEmojiData/#[Error type: Unresolved type for AssetManager]#kotlin.String/PointingToDeclaration/emojify/io.wax911.emojify.initializer/[common]-emoji-initializer/init-emoji-data.html $dokka.location:io.wax911.emojify.initializer/EmojiInitializer/initEmojiData/#android.content.res.AssetManager#kotlin.String/PointingToDeclaration/emojify/io.wax911.emojify.initializer/[android-jvm]-emoji-initializer/init-emoji-data.html $dokka.location:io.wax911.emojify.manager////PointingToDeclaration/emojify/io.wax911.emojify.manager/index.html $dokka.location:io.wax911.emojify.manager/IEmojiManager///PointingToDeclaration/emojify/io.wax911.emojify.manager/[common]-i-emoji-manager/index.html @@ -90,6 +90,8 @@ $dokka.location:io.wax911.emojify.util/Fitzpatrick.TYPE_5///PointingToDeclaratio $dokka.location:io.wax911.emojify.util/Fitzpatrick.TYPE_6///PointingToDeclaration/{"org.jetbrains.dokka.links.EnumEntryDRIExtra":{"key":"org.jetbrains.dokka.links.EnumEntryDRIExtra"}}emojify/io.wax911.emojify.util/[common]-fitzpatrick/-t-y-p-e_6/index.html $dokka.location:io.wax911.emojify.util/Fitzpatrick///PointingToDeclaration/emojify/io.wax911.emojify.util/[common]-fitzpatrick/index.html $dokka.location:io.wax911.emojify.util/Fitzpatrick/unicode/#/PointingToDeclaration/emojify/io.wax911.emojify.util/[common]-fitzpatrick/unicode.html +$dokka.location:io.wax911.emojify.util/Fitzpatrick/valueOf/#kotlin.String/PointingToDeclaration/emojify/io.wax911.emojify.util/[common]-fitzpatrick/value-of.html +$dokka.location:io.wax911.emojify.util/Fitzpatrick/values/#/PointingToDeclaration/emojify/io.wax911.emojify.util/[common]-fitzpatrick/values.html $dokka.location:io.wax911.emojify////PointingToDeclaration/emojify/io.wax911.emojify/index.html $dokka.location:io.wax911.emojify/EmojiManager///PointingToDeclaration/emojify/io.wax911.emojify/[common]-emoji-manager/index.html $dokka.location:io.wax911.emojify/EmojiManager/EmojiManager/#kotlin.collections.Collection[io.wax911.emojify.model.Emoji]/PointingToDeclaration/emojify/io.wax911.emojify/[common]-emoji-manager/-emoji-manager.html diff --git a/images/nav-icons/abstract-class-kotlin.svg b/images/nav-icons/abstract-class-kotlin.svg new file mode 100644 index 00000000..a2069b8f --- /dev/null +++ b/images/nav-icons/abstract-class-kotlin.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/nav-icons/abstract-class.svg b/images/nav-icons/abstract-class.svg new file mode 100644 index 00000000..60182030 --- /dev/null +++ b/images/nav-icons/abstract-class.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/images/nav-icons/annotation-kotlin.svg b/images/nav-icons/annotation-kotlin.svg new file mode 100644 index 00000000..932f1d3d --- /dev/null +++ b/images/nav-icons/annotation-kotlin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/images/nav-icons/annotation.svg b/images/nav-icons/annotation.svg new file mode 100644 index 00000000..b80c54b4 --- /dev/null +++ b/images/nav-icons/annotation.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/images/nav-icons/class-kotlin.svg b/images/nav-icons/class-kotlin.svg new file mode 100644 index 00000000..46a21f65 --- /dev/null +++ b/images/nav-icons/class-kotlin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/images/nav-icons/class.svg b/images/nav-icons/class.svg new file mode 100644 index 00000000..3f1ad167 --- /dev/null +++ b/images/nav-icons/class.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/images/nav-icons/enum-kotlin.svg b/images/nav-icons/enum-kotlin.svg new file mode 100644 index 00000000..4a854596 --- /dev/null +++ b/images/nav-icons/enum-kotlin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/images/nav-icons/enum.svg b/images/nav-icons/enum.svg new file mode 100644 index 00000000..fa7f2476 --- /dev/null +++ b/images/nav-icons/enum.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/images/nav-icons/exception-class.svg b/images/nav-icons/exception-class.svg new file mode 100644 index 00000000..c0b2bdeb --- /dev/null +++ b/images/nav-icons/exception-class.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/images/nav-icons/field-value.svg b/images/nav-icons/field-value.svg new file mode 100644 index 00000000..20449c94 --- /dev/null +++ b/images/nav-icons/field-value.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/images/nav-icons/field-variable.svg b/images/nav-icons/field-variable.svg new file mode 100644 index 00000000..3b074500 --- /dev/null +++ b/images/nav-icons/field-variable.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/images/nav-icons/function.svg b/images/nav-icons/function.svg new file mode 100644 index 00000000..f0da64a0 --- /dev/null +++ b/images/nav-icons/function.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/images/nav-icons/interface-kotlin.svg b/images/nav-icons/interface-kotlin.svg new file mode 100644 index 00000000..bf07a148 --- /dev/null +++ b/images/nav-icons/interface-kotlin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/images/nav-icons/interface.svg b/images/nav-icons/interface.svg new file mode 100644 index 00000000..32063ba2 --- /dev/null +++ b/images/nav-icons/interface.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/images/nav-icons/object.svg b/images/nav-icons/object.svg new file mode 100644 index 00000000..9f427de4 --- /dev/null +++ b/images/nav-icons/object.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/index.html b/index.html index 71500fa7..330c5207 100644 --- a/index.html +++ b/index.html @@ -6,10 +6,18 @@ + if (storage == null) { + const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches + if (osDarkSchemePreferred === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } else { + const savedDarkMode = JSON.parse(storage) + if(savedDarkMode === true) { + document.getElementsByTagName("html")[0].classList.add("theme-dark") + } + } + @@ -21,6 +29,7 @@ +

Packages

-
-
+
+
@@ -71,8 +80,8 @@

Packages

- -
+ +
@@ -90,8 +99,8 @@

Packages

- -
+ +
@@ -109,8 +118,8 @@

Packages

- -
+ +
@@ -128,8 +137,8 @@

Packages

- -
+ +
@@ -147,8 +156,8 @@

Packages

- -
+ +
@@ -166,8 +175,8 @@

Packages

- -
+ +
@@ -185,8 +194,8 @@

Packages

- -
+ +
@@ -204,8 +213,8 @@

Packages

- -
+ +
@@ -223,8 +232,8 @@

Packages

- -
+ +
@@ -242,8 +251,8 @@

Packages

- -
+ +
@@ -263,10 +272,11 @@

Packages

- +
diff --git a/navigation.html b/navigation.html index 2aa6e39a..c65ebfdc 100644 --- a/navigation.html +++ b/navigation.html @@ -3,214 +3,268 @@
- -
- + +
+ +
+ -
- +
+
-
- +
+
-
- +
+
-
- +
+
- -
- + +
+ +
+ -
- +
+
- diff --git a/scripts/main.js b/scripts/main.js index b3ee88c5..e5b54a36 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -3,7 +3,7 @@ Copyright (c) 2018 Jed Watson. Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames -*/!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],n=0;n{"use strict";e.exports=function(e,n){var t=this,r=t.constructor;return t.options=Object.assign({storeInstancesGlobally:!0},n||{}),t.callbacks={},t.directMap={},t.sequenceLevels={},t.resetTimer=null,t.ignoreNextKeyup=!1,t.ignoreNextKeypress=!1,t.nextExpectedAction=!1,t.element=e,t.addEvents(),t.options.storeInstancesGlobally&&r.instances.push(t),t},e.exports.prototype.bind=t(2207),e.exports.prototype.bindMultiple=t(3396),e.exports.prototype.unbind=t(9208),e.exports.prototype.trigger=t(9855),e.exports.prototype.reset=t(6214),e.exports.prototype.stopCallback=t(3450),e.exports.prototype.handleKey=t(3067),e.exports.prototype.addEvents=t(718),e.exports.prototype.bindSingle=t(8763),e.exports.prototype.getKeyInfo=t(5825),e.exports.prototype.pickBestAction=t(8608),e.exports.prototype.getReverseMap=t(3956),e.exports.prototype.getMatches=t(3373),e.exports.prototype.resetSequences=t(3346),e.exports.prototype.fireCallback=t(2684),e.exports.prototype.bindSequence=t(7103),e.exports.prototype.resetSequenceTimer=t(7309),e.exports.prototype.detach=t(7554),e.exports.instances=[],e.exports.reset=t(1822),e.exports.REVERSE_MAP=null},718:(e,n,t)=>{"use strict";e.exports=function(){var e=this,n=t(4323),r=e.element;e.eventHandler=t(9646).bind(e),n(r,"keypress",e.eventHandler),n(r,"keydown",e.eventHandler),n(r,"keyup",e.eventHandler)}},2207:e=>{"use strict";e.exports=function(e,n,t){return e=e instanceof Array?e:[e],this.bindMultiple(e,n,t),this}},3396:e=>{"use strict";e.exports=function(e,n,t){for(var r=0;r{"use strict";e.exports=function(e,n,r,o){var i=this;function a(n){return function(){i.nextExpectedAction=n,++i.sequenceLevels[e],i.resetSequenceTimer()}}function l(n){var a;i.fireCallback(r,n,e),"keyup"!==o&&(a=t(6770),i.ignoreNextKeyup=a(n)),setTimeout((function(){i.resetSequences()}),10)}i.sequenceLevels[e]=0;for(var c=0;c{"use strict";e.exports=function(e,n,t,r,o){var i=this;i.directMap[e+":"+t]=n;var a,l=(e=e.replace(/\s+/g," ")).split(" ");l.length>1?i.bindSequence(e,l,n,t):(a=i.getKeyInfo(e,t),i.callbacks[a.key]=i.callbacks[a.key]||[],i.getMatches(a.key,a.modifiers,{type:a.action},r,e,o),i.callbacks[a.key][r?"unshift":"push"]({callback:n,modifiers:a.modifiers,action:a.action,seq:r,level:o,combo:e}))}},7554:(e,n,t)=>{var r=t(4323).off;e.exports=function(){var e=this,n=e.element;r(n,"keypress",e.eventHandler),r(n,"keydown",e.eventHandler),r(n,"keyup",e.eventHandler)}},4323:e=>{function n(e,n,t,r){return!e.addEventListener&&(n="on"+n),(e.addEventListener||e.attachEvent).call(e,n,t,r),t}e.exports=n,e.exports.on=n,e.exports.off=function(e,n,t,r){return!e.removeEventListener&&(n="on"+n),(e.removeEventListener||e.detachEvent).call(e,n,t,r),t}},2684:(e,n,t)=>{"use strict";e.exports=function(e,n,r,o){this.stopCallback(n,n.target||n.srcElement,r,o)||!1===e(n,r)&&(t(1350)(n),t(6103)(n))}},5825:(e,n,t)=>{"use strict";e.exports=function(e,n){var r,o,i,a,l,c,u=[];for(r=t(4520)(e),a=t(7549),l=t(5355),c=t(8581),i=0;i{"use strict";e.exports=function(e,n,r,o,i,a){var l,c,u,s,f=this,p=[],d=r.type;"keypress"!==d||r.code&&"Arrow"===r.code.slice(0,5)||(f.callbacks["any-character"]||[]).forEach((function(e){p.push(e)}));if(!f.callbacks[e])return p;for(u=t(8581),"keyup"===d&&u(e)&&(n=[e]),l=0;l{"use strict";e.exports=function(){var e,n=this.constructor;if(!n.REVERSE_MAP)for(var r in n.REVERSE_MAP={},e=t(4766))r>95&&r<112||e.hasOwnProperty(r)&&(n.REVERSE_MAP[e[r]]=r);return n.REVERSE_MAP}},3067:(e,n,t)=>{"use strict";e.exports=function(e,n,r){var o,i,a,l,c=this,u={},s=0,f=!1;for(o=c.getMatches(e,n,r),i=0;i{"use strict";e.exports=function(e){var n,r=this;"number"!=typeof e.which&&(e.which=e.keyCode);var o=t(6770)(e);void 0!==o&&("keyup"!==e.type||r.ignoreNextKeyup!==o?(n=t(4610),r.handleKey(o,n(e),e)):r.ignoreNextKeyup=!1)}},5532:e=>{"use strict";e.exports=function(e,n){return e.sort().join(",")===n.sort().join(",")}},8608:e=>{"use strict";e.exports=function(e,n,t){return t||(t=this.getReverseMap()[e]?"keydown":"keypress"),"keypress"===t&&n.length&&(t="keydown"),t}},6214:e=>{"use strict";e.exports=function(){return this.callbacks={},this.directMap={},this}},7309:e=>{"use strict";e.exports=function(){var e=this;clearTimeout(e.resetTimer),e.resetTimer=setTimeout((function(){e.resetSequences()}),1e3)}},3346:e=>{"use strict";e.exports=function(e){var n=this;e=e||{};var t,r=!1;for(t in n.sequenceLevels)e[t]?r=!0:n.sequenceLevels[t]=0;r||(n.nextExpectedAction=!1)}},3450:e=>{"use strict";e.exports=function(e,n){if((" "+n.className+" ").indexOf(" combokeys ")>-1)return!1;var t=n.tagName.toLowerCase();return"input"===t||"select"===t||"textarea"===t||n.isContentEditable}},9855:e=>{"use strict";e.exports=function(e,n){return this.directMap[e+":"+n]&&this.directMap[e+":"+n]({},e),this}},9208:e=>{"use strict";e.exports=function(e,n){return this.bind(e,(function(){}),n)}},1822:e=>{"use strict";e.exports=function(){this.instances.forEach((function(e){e.reset()}))}},6770:(e,n,t)=>{"use strict";e.exports=function(e){var n,r;if(n=t(4766),r=t(5295),"keypress"===e.type){var o=String.fromCharCode(e.which);return e.shiftKey||(o=o.toLowerCase()),o}return void 0!==n[e.which]?n[e.which]:void 0!==r[e.which]?r[e.which]:String.fromCharCode(e.which).toLowerCase()}},4610:e=>{"use strict";e.exports=function(e){var n=[];return e.shiftKey&&n.push("shift"),e.altKey&&n.push("alt"),e.ctrlKey&&n.push("ctrl"),e.metaKey&&n.push("meta"),n}},8581:e=>{"use strict";e.exports=function(e){return"shift"===e||"ctrl"===e||"alt"===e||"meta"===e}},4520:e=>{"use strict";e.exports=function(e){return"+"===e?["+"]:e.split("+")}},1350:e=>{"use strict";e.exports=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1}},5355:e=>{"use strict";e.exports={"~":"`","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=",":":";",'"':"'","<":",",">":".","?":"/","|":"\\"}},7549:e=>{"use strict";e.exports={option:"alt",command:"meta",return:"enter",escape:"esc",mod:/Mac|iPod|iPhone|iPad/.test(navigator.platform)?"meta":"ctrl"}},5295:e=>{"use strict";e.exports={106:"*",107:"plus",109:"minus",110:".",111:"/",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}},4766:e=>{"use strict";e.exports={8:"backspace",9:"tab",13:"enter",16:"shift",17:"ctrl",18:"alt",20:"capslock",27:"esc",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down",45:"ins",46:"del",91:"meta",93:"meta",173:"minus",187:"plus",189:"minus",224:"meta"};for(var n=1;n<20;++n)e.exports[111+n]="f"+n;for(n=0;n<=9;++n)e.exports[n+96]=n},6103:e=>{"use strict";e.exports=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}},3362:()=>{var e;!function(){var e=Math.PI,n=2*e,t=e/180,r=document.createElement("div");document.head.appendChild(r);var o=self.ConicGradient=function(e){o.all.push(this),e=e||{},this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"),this.repeating=!!e.repeating,this.size=e.size||Math.max(innerWidth,innerHeight),this.canvas.width=this.canvas.height=this.size;var n=e.stops;this.stops=(n||"").split(/\s*,(?![^(]*\))\s*/),this.from=0;for(var t=0;t0){var i=this.stops[0].clone();i.pos=0,this.stops.unshift(i)}if(void 0===this.stops[this.stops.length-1].pos)this.stops[this.stops.length-1].pos=1;else if(!this.repeating&&this.stops[this.stops.length-1].pos<1){var a=this.stops[this.stops.length-1].clone();a.pos=1,this.stops.push(a)}if(this.stops.forEach((function(e,n){if(void 0===e.pos){for(var t=n+1;this[t];t++)if(void 0!==this[t].pos){e.pos=this[n-1].pos+(this[t].pos-this[n-1].pos)/(t-n+1);break}}else n>0&&(e.pos=Math.max(e.pos,this[n-1].pos))}),this.stops),this.repeating){var l=(n=this.stops.slice())[n.length-1].pos-n[0].pos;for(t=0;this.stops[this.stops.length-1].pos<1&&t<1e4;t++)for(var c=0;c'},get png(){return this.canvas.toDataURL()},get r(){return Math.sqrt(2)*this.size/2},paint:function(){var e,n,r,o=this.context,i=this.r,a=this.size/2,l=0,c=this.stops[l];o.translate(this.size/2,this.size/2),o.rotate(-90*t),o.rotate(this.from*t),o.translate(-this.size/2,-this.size/2);for(var u=0;u<360;){if(u/360+1e-5>=c.pos){do{e=c,l++,c=this.stops[l]}while(c&&c!=e&&c.pos===e.pos);if(!c)break;var s=e.color+""==c.color+""&&e!=c;n=e.color.map((function(e,n){return c.color[n]-e}))}r=(u/360-e.pos)/(c.pos-e.pos);var f=s?c.color:n.map((function(n,t){var o=n*r+e.color[t];return t<3?255&o:o}));if(o.fillStyle="rgba("+f.join(",")+")",o.beginPath(),o.moveTo(a,a),s)var p=360*(c.pos-e.pos);else p=.5;var d=u*t,h=(d=Math.min(360*t,d))+p*t;h=Math.min(360*t,h+.02),o.arc(a,a,i,d,h),o.closePath(),o.fill(),u+=p}}},o.ColorStop=function(e,t){if(this.gradient=e,t){var r=t.match(/^(.+?)(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?(?:\s+([\d.]+)(%|deg|turn|grad|rad)?)?\s*$/);if(this.color=o.ColorStop.colorToRGBA(r[1]),r[2]){var i=r[3];"%"==i||"0"===r[2]&&!i?this.pos=r[2]/100:"turn"==i?this.pos=+r[2]:"deg"==i?this.pos=r[2]/360:"grad"==i?this.pos=r[2]/400:"rad"==i&&(this.pos=r[2]/n)}r[4]&&(this.next=new o.ColorStop(e,r[1]+" "+r[4]+r[5]))}},o.ColorStop.prototype={clone:function(){var e=new o.ColorStop(this.gradient);return e.color=this.color,e.pos=this.pos,e},toString:function(){return"rgba("+this.color.join(", ")+") "+100*this.pos+"%"}},o.ColorStop.colorToRGBA=function(e){if(!Array.isArray(e)&&-1==e.indexOf("from")){r.style.color=e;var n=getComputedStyle(r).color.match(/rgba?\(([\d.]+), ([\d.]+), ([\d.]+)(?:, ([\d.]+))?\)/);return n&&(n.shift(),(n=n.map((function(e){return+e})))[3]=isNaN(n[3])?1:n[3]),n||[0,0,0,0]}return e}}(),self.StyleFix&&((e=document.createElement("p")).style.backgroundImage="conic-gradient(white, black)",e.style.backgroundImage=PrefixFree.prefix+"conic-gradient(white, black)",e.style.backgroundImage||StyleFix.register((function(e,n){return e.indexOf("conic-gradient")>-1&&(e=e.replace(/(?:repeating-)?conic-gradient\(\s*((?:\([^()]+\)|[^;()}])+?)\)/g,(function(e,n){return new ConicGradient({stops:n,repeating:e.indexOf("repeating-")>-1})}))),e})))},9662:(e,n,t)=>{var r=t(7854),o=t(614),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a function")}},9483:(e,n,t)=>{var r=t(7854),o=t(4411),i=t(6330),a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not a constructor")}},6077:(e,n,t)=>{var r=t(7854),o=t(614),i=r.String,a=r.TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+i(e)+" as a prototype")}},1223:(e,n,t)=>{var r=t(5112),o=t(30),i=t(3070),a=r("unscopables"),l=Array.prototype;null==l[a]&&i.f(l,a,{configurable:!0,value:o(null)}),e.exports=function(e){l[a][e]=!0}},1530:(e,n,t)=>{"use strict";var r=t(8710).charAt;e.exports=function(e,n,t){return n+(t?r(e,n).length:1)}},5787:(e,n,t)=>{var r=t(7854),o=t(7976),i=r.TypeError;e.exports=function(e,n){if(o(n,e))return e;throw i("Incorrect invocation")}},9670:(e,n,t)=>{var r=t(7854),o=t(111),i=r.String,a=r.TypeError;e.exports=function(e){if(o(e))return e;throw a(i(e)+" is not an object")}},7556:(e,n,t)=>{var r=t(7293);e.exports=r((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},8533:(e,n,t)=>{"use strict";var r=t(2092).forEach,o=t(9341)("forEach");e.exports=o?[].forEach:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}},8457:(e,n,t)=>{"use strict";var r=t(7854),o=t(9974),i=t(6916),a=t(7908),l=t(3411),c=t(7659),u=t(4411),s=t(6244),f=t(6135),p=t(8554),d=t(1246),h=r.Array;e.exports=function(e){var n=a(e),t=u(this),r=arguments.length,g=r>1?arguments[1]:void 0,v=void 0!==g;v&&(g=o(g,r>2?arguments[2]:void 0));var A,b,m,y,E,_,C=d(n),w=0;if(!C||this==h&&c(C))for(A=s(n),b=t?new this(A):h(A);A>w;w++)_=v?g(n[w],w):n[w],f(b,w,_);else for(E=(y=p(n,C)).next,b=t?new this:[];!(m=i(E,y)).done;w++)_=v?l(y,g,[m.value,w],!0):m.value,f(b,w,_);return b.length=w,b}},1318:(e,n,t)=>{var r=t(5656),o=t(1400),i=t(6244),a=function(e){return function(n,t,a){var l,c=r(n),u=i(c),s=o(a,u);if(e&&t!=t){for(;u>s;)if((l=c[s++])!=l)return!0}else for(;u>s;s++)if((e||s in c)&&c[s]===t)return e||s||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},2092:(e,n,t)=>{var r=t(9974),o=t(1702),i=t(8361),a=t(7908),l=t(6244),c=t(5417),u=o([].push),s=function(e){var n=1==e,t=2==e,o=3==e,s=4==e,f=6==e,p=7==e,d=5==e||f;return function(h,g,v,A){for(var b,m,y=a(h),E=i(y),_=r(g,v),C=l(E),w=0,x=A||c,k=n?x(h,C):t||p?x(h,0):void 0;C>w;w++)if((d||w in E)&&(m=_(b=E[w],w,y),e))if(n)k[w]=m;else if(m)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:u(k,b)}else switch(e){case 4:return!1;case 7:u(k,b)}return f?-1:o||s?s:k}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},1194:(e,n,t)=>{var r=t(7293),o=t(5112),i=t(7392),a=o("species");e.exports=function(e){return i>=51||!r((function(){var n=[];return(n.constructor={})[a]=function(){return{foo:1}},1!==n[e](Boolean).foo}))}},9341:(e,n,t)=>{"use strict";var r=t(7293);e.exports=function(e,n){var t=[][e];return!!t&&r((function(){t.call(null,n||function(){throw 1},1)}))}},3671:(e,n,t)=>{var r=t(7854),o=t(9662),i=t(7908),a=t(8361),l=t(6244),c=r.TypeError,u=function(e){return function(n,t,r,u){o(t);var s=i(n),f=a(s),p=l(s),d=e?p-1:0,h=e?-1:1;if(r<2)for(;;){if(d in f){u=f[d],d+=h;break}if(d+=h,e?d<0:p<=d)throw c("Reduce of empty array with no initial value")}for(;e?d>=0:p>d;d+=h)d in f&&(u=t(u,f[d],d,s));return u}};e.exports={left:u(!1),right:u(!0)}},206:(e,n,t)=>{var r=t(1702);e.exports=r([].slice)},4362:(e,n,t)=>{var r=t(206),o=Math.floor,i=function(e,n){var t=e.length,c=o(t/2);return t<8?a(e,n):l(e,i(r(e,0,c),n),i(r(e,c),n),n)},a=function(e,n){for(var t,r,o=e.length,i=1;i0;)e[r]=e[--r];r!==i++&&(e[r]=t)}return e},l=function(e,n,t,r){for(var o=n.length,i=t.length,a=0,l=0;a{var r=t(7854),o=t(3157),i=t(4411),a=t(111),l=t(5112)("species"),c=r.Array;e.exports=function(e){var n;return o(e)&&(n=e.constructor,(i(n)&&(n===c||o(n.prototype))||a(n)&&null===(n=n[l]))&&(n=void 0)),void 0===n?c:n}},5417:(e,n,t)=>{var r=t(7475);e.exports=function(e,n){return new(r(e))(0===n?0:n)}},3411:(e,n,t)=>{var r=t(9670),o=t(9212);e.exports=function(e,n,t,i){try{return i?n(r(t)[0],t[1]):n(t)}catch(n){o(e,"throw",n)}}},7072:(e,n,t)=>{var r=t(5112)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,n){if(!n&&!o)return!1;var t=!1;try{var i={};i[r]=function(){return{next:function(){return{done:t=!0}}}},e(i)}catch(e){}return t}},4326:(e,n,t)=>{var r=t(1702),o=r({}.toString),i=r("".slice);e.exports=function(e){return i(o(e),8,-1)}},648:(e,n,t)=>{var r=t(7854),o=t(1694),i=t(614),a=t(4326),l=t(5112)("toStringTag"),c=r.Object,u="Arguments"==a(function(){return arguments}());e.exports=o?a:function(e){var n,t,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=c(e),l))?t:u?a(n):"Object"==(r=a(n))&&i(n.callee)?"Arguments":r}},5631:(e,n,t)=>{"use strict";var r=t(3070).f,o=t(30),i=t(2248),a=t(9974),l=t(5787),c=t(408),u=t(654),s=t(6340),f=t(9781),p=t(2423).fastKey,d=t(9909),h=d.set,g=d.getterFor;e.exports={getConstructor:function(e,n,t,u){var s=e((function(e,r){l(e,d),h(e,{type:n,index:o(null),first:void 0,last:void 0,size:0}),f||(e.size=0),null!=r&&c(r,e[u],{that:e,AS_ENTRIES:t})})),d=s.prototype,v=g(n),A=function(e,n,t){var r,o,i=v(e),a=b(e,n);return a?a.value=t:(i.last=a={index:o=p(n,!0),key:n,value:t,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),f?i.size++:e.size++,"F"!==o&&(i.index[o]=a)),e},b=function(e,n){var t,r=v(e),o=p(n);if("F"!==o)return r.index[o];for(t=r.first;t;t=t.next)if(t.key==n)return t};return i(d,{clear:function(){for(var e=v(this),n=e.index,t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=void 0),delete n[t.index],t=t.next;e.first=e.last=void 0,f?e.size=0:this.size=0},delete:function(e){var n=this,t=v(n),r=b(n,e);if(r){var o=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=o),o&&(o.previous=i),t.first==r&&(t.first=o),t.last==r&&(t.last=i),f?t.size--:n.size--}return!!r},forEach:function(e){for(var n,t=v(this),r=a(e,arguments.length>1?arguments[1]:void 0);n=n?n.next:t.first;)for(r(n.value,n.key,this);n&&n.removed;)n=n.previous},has:function(e){return!!b(this,e)}}),i(d,t?{get:function(e){var n=b(this,e);return n&&n.value},set:function(e,n){return A(this,0===e?0:e,n)}}:{add:function(e){return A(this,e=0===e?0:e,e)}}),f&&r(d,"size",{get:function(){return v(this).size}}),s},setStrong:function(e,n,t){var r=n+" Iterator",o=g(n),i=g(r);u(e,n,(function(e,n){h(this,{type:r,target:e,state:o(e),kind:n,last:void 0})}),(function(){for(var e=i(this),n=e.kind,t=e.last;t&&t.removed;)t=t.previous;return e.target&&(e.last=t=t?t.next:e.state.first)?"keys"==n?{value:t.key,done:!1}:"values"==n?{value:t.value,done:!1}:{value:[t.key,t.value],done:!1}:(e.target=void 0,{value:void 0,done:!0})}),t?"entries":"values",!t,!0),s(n)}}},9320:(e,n,t)=>{"use strict";var r=t(1702),o=t(2248),i=t(2423).getWeakData,a=t(9670),l=t(111),c=t(5787),u=t(408),s=t(2092),f=t(2597),p=t(9909),d=p.set,h=p.getterFor,g=s.find,v=s.findIndex,A=r([].splice),b=0,m=function(e){return e.frozen||(e.frozen=new y)},y=function(){this.entries=[]},E=function(e,n){return g(e.entries,(function(e){return e[0]===n}))};y.prototype={get:function(e){var n=E(this,e);if(n)return n[1]},has:function(e){return!!E(this,e)},set:function(e,n){var t=E(this,e);t?t[1]=n:this.entries.push([e,n])},delete:function(e){var n=v(this.entries,(function(n){return n[0]===e}));return~n&&A(this.entries,n,1),!!~n}},e.exports={getConstructor:function(e,n,t,r){var s=e((function(e,o){c(e,p),d(e,{type:n,id:b++,frozen:void 0}),null!=o&&u(o,e[r],{that:e,AS_ENTRIES:t})})),p=s.prototype,g=h(n),v=function(e,n,t){var r=g(e),o=i(a(n),!0);return!0===o?m(r).set(n,t):o[r.id]=t,e};return o(p,{delete:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).delete(e):t&&f(t,n.id)&&delete t[n.id]},has:function(e){var n=g(this);if(!l(e))return!1;var t=i(e);return!0===t?m(n).has(e):t&&f(t,n.id)}}),o(p,t?{get:function(e){var n=g(this);if(l(e)){var t=i(e);return!0===t?m(n).get(e):t?t[n.id]:void 0}},set:function(e,n){return v(this,e,n)}}:{add:function(e){return v(this,e,!0)}}),s}}},7710:(e,n,t)=>{"use strict";var r=t(2109),o=t(7854),i=t(1702),a=t(4705),l=t(1320),c=t(2423),u=t(408),s=t(5787),f=t(614),p=t(111),d=t(7293),h=t(7072),g=t(8003),v=t(9587);e.exports=function(e,n,t){var A=-1!==e.indexOf("Map"),b=-1!==e.indexOf("Weak"),m=A?"set":"add",y=o[e],E=y&&y.prototype,_=y,C={},w=function(e){var n=i(E[e]);l(E,e,"add"==e?function(e){return n(this,0===e?0:e),this}:"delete"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:"get"==e?function(e){return b&&!p(e)?void 0:n(this,0===e?0:e)}:"has"==e?function(e){return!(b&&!p(e))&&n(this,0===e?0:e)}:function(e,t){return n(this,0===e?0:e,t),this})};if(a(e,!f(y)||!(b||E.forEach&&!d((function(){(new y).entries().next()})))))_=t.getConstructor(n,e,A,m),c.enable();else if(a(e,!0)){var x=new _,k=x[m](b?{}:-0,1)!=x,S=d((function(){x.has(1)})),O=h((function(e){new y(e)})),B=!b&&d((function(){for(var e=new y,n=5;n--;)e[m](n,n);return!e.has(-0)}));O||((_=n((function(e,n){s(e,E);var t=v(new y,e,_);return null!=n&&u(n,t[m],{that:t,AS_ENTRIES:A}),t}))).prototype=E,E.constructor=_),(S||B)&&(w("delete"),w("has"),A&&w("get")),(B||k)&&w(m),b&&E.clear&&delete E.clear}return C[e]=_,r({global:!0,forced:_!=y},C),g(_,e),b||t.setStrong(_,e,A),_}},9920:(e,n,t)=>{var r=t(2597),o=t(3887),i=t(1236),a=t(3070);e.exports=function(e,n){for(var t=o(n),l=a.f,c=i.f,u=0;u{var r=t(5112)("match");e.exports=function(e){var n=/./;try{"/./"[e](n)}catch(t){try{return n[r]=!1,"/./"[e](n)}catch(e){}}return!1}},8544:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},4230:(e,n,t)=>{var r=t(1702),o=t(4488),i=t(1340),a=/"/g,l=r("".replace);e.exports=function(e,n,t,r){var c=i(o(e)),u="<"+n;return""!==t&&(u+=" "+t+'="'+l(i(r),a,""")+'"'),u+">"+c+""}},4994:(e,n,t)=>{"use strict";var r=t(3383).IteratorPrototype,o=t(30),i=t(9114),a=t(8003),l=t(7497),c=function(){return this};e.exports=function(e,n,t){var u=n+" Iterator";return e.prototype=o(r,{next:i(1,t)}),a(e,u,!1,!0),l[u]=c,e}},8880:(e,n,t)=>{var r=t(9781),o=t(3070),i=t(9114);e.exports=r?function(e,n,t){return o.f(e,n,i(1,t))}:function(e,n,t){return e[n]=t,e}},9114:e=>{e.exports=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}}},6135:(e,n,t)=>{"use strict";var r=t(4948),o=t(3070),i=t(9114);e.exports=function(e,n,t){var a=r(n);a in e?o.f(e,a,i(0,t)):e[a]=t}},8709:(e,n,t)=>{"use strict";var r=t(7854),o=t(9670),i=t(2140),a=r.TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return i(this,e)}},654:(e,n,t)=>{"use strict";var r=t(2109),o=t(6916),i=t(1913),a=t(6530),l=t(614),c=t(4994),u=t(9518),s=t(7674),f=t(8003),p=t(8880),d=t(1320),h=t(5112),g=t(7497),v=t(3383),A=a.PROPER,b=a.CONFIGURABLE,m=v.IteratorPrototype,y=v.BUGGY_SAFARI_ITERATORS,E=h("iterator"),_="keys",C="values",w="entries",x=function(){return this};e.exports=function(e,n,t,a,h,v,k){c(t,n,a);var S,O,B,I=function(e){if(e===h&&R)return R;if(!y&&e in j)return j[e];switch(e){case _:case C:case w:return function(){return new t(this,e)}}return function(){return new t(this)}},T=n+" Iterator",P=!1,j=e.prototype,z=j[E]||j["@@iterator"]||h&&j[h],R=!y&&z||I(h),M="Array"==n&&j.entries||z;if(M&&(S=u(M.call(new e)))!==Object.prototype&&S.next&&(i||u(S)===m||(s?s(S,m):l(S[E])||d(S,E,x)),f(S,T,!0,!0),i&&(g[T]=x)),A&&h==C&&z&&z.name!==C&&(!i&&b?p(j,"name",C):(P=!0,R=function(){return o(z,this)})),h)if(O={values:I(C),keys:v?R:I(_),entries:I(w)},k)for(B in O)(y||P||!(B in j))&&d(j,B,O[B]);else r({target:n,proto:!0,forced:y||P},O);return i&&!k||j[E]===R||d(j,E,R,{name:h}),g[n]=R,O}},7235:(e,n,t)=>{var r=t(857),o=t(2597),i=t(6061),a=t(3070).f;e.exports=function(e){var n=r.Symbol||(r.Symbol={});o(n,e)||a(n,e,{value:i.f(e)})}},9781:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:(e,n,t)=>{var r=t(7854),o=t(111),i=r.document,a=o(i)&&o(i.createElement);e.exports=function(e){return a?i.createElement(e):{}}},8324:e=>{e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:(e,n,t)=>{var r=t(317)("span").classList,o=r&&r.constructor&&r.constructor.prototype;e.exports=o===Object.prototype?void 0:o},8886:(e,n,t)=>{var r=t(8113).match(/firefox\/(\d+)/i);e.exports=!!r&&+r[1]},256:(e,n,t)=>{var r=t(8113);e.exports=/MSIE|Trident/.test(r)},5268:(e,n,t)=>{var r=t(4326),o=t(7854);e.exports="process"==r(o.process)},8113:(e,n,t)=>{var r=t(5005);e.exports=r("navigator","userAgent")||""},7392:(e,n,t)=>{var r,o,i=t(7854),a=t(8113),l=i.process,c=i.Deno,u=l&&l.versions||c&&c.version,s=u&&u.v8;s&&(o=(r=s.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!o&&a&&(!(r=a.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/))&&(o=+r[1]),e.exports=o},8008:(e,n,t)=>{var r=t(8113).match(/AppleWebKit\/(\d+)\./);e.exports=!!r&&+r[1]},748:e=>{e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:(e,n,t)=>{var r=t(7854),o=t(1236).f,i=t(8880),a=t(1320),l=t(3505),c=t(9920),u=t(4705);e.exports=function(e,n){var t,s,f,p,d,h=e.target,g=e.global,v=e.stat;if(t=g?r:v?r[h]||l(h,{}):(r[h]||{}).prototype)for(s in n){if(p=n[s],f=e.noTargetGet?(d=o(t,s))&&d.value:t[s],!u(g?s:h+(v?".":"#")+s,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;c(p,f)}(e.sham||f&&f.sham)&&i(p,"sham",!0),a(t,s,p,e)}}},7293:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},7007:(e,n,t)=>{"use strict";t(4916);var r=t(1702),o=t(1320),i=t(2261),a=t(7293),l=t(5112),c=t(8880),u=l("species"),s=RegExp.prototype;e.exports=function(e,n,t,f){var p=l(e),d=!a((function(){var n={};return n[p]=function(){return 7},7!=""[e](n)})),h=d&&!a((function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[u]=function(){return t},t.flags="",t[p]=/./[p]),t.exec=function(){return n=!0,null},t[p](""),!n}));if(!d||!h||t){var g=r(/./[p]),v=n(p,""[e],(function(e,n,t,o,a){var l=r(e),c=n.exec;return c===i||c===s.exec?d&&!a?{done:!0,value:g(n,t,o)}:{done:!0,value:l(t,n,o)}:{done:!1}}));o(String.prototype,e,v[0]),o(s,p,v[1])}f&&c(s[p],"sham",!0)}},6677:(e,n,t)=>{var r=t(7293);e.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},2104:e=>{var n=Function.prototype,t=n.apply,r=n.bind,o=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(t):function(){return o.apply(t,arguments)})},9974:(e,n,t)=>{var r=t(1702),o=t(9662),i=r(r.bind);e.exports=function(e,n){return o(e),void 0===n?e:i?i(e,n):function(){return e.apply(n,arguments)}}},7065:(e,n,t)=>{"use strict";var r=t(7854),o=t(1702),i=t(9662),a=t(111),l=t(2597),c=t(206),u=r.Function,s=o([].concat),f=o([].join),p={},d=function(e,n,t){if(!l(p,n)){for(var r=[],o=0;o{var n=Function.prototype.call;e.exports=n.bind?n.bind(n):function(){return n.apply(n,arguments)}},6530:(e,n,t)=>{var r=t(9781),o=t(2597),i=Function.prototype,a=r&&Object.getOwnPropertyDescriptor,l=o(i,"name"),c=l&&"something"===function(){}.name,u=l&&(!r||r&&a(i,"name").configurable);e.exports={EXISTS:l,PROPER:c,CONFIGURABLE:u}},1702:e=>{var n=Function.prototype,t=n.bind,r=n.call,o=t&&t.bind(r);e.exports=t?function(e){return e&&o(r,e)}:function(e){return e&&function(){return r.apply(e,arguments)}}},5005:(e,n,t)=>{var r=t(7854),o=t(614),i=function(e){return o(e)?e:void 0};e.exports=function(e,n){return arguments.length<2?i(r[e]):r[e]&&r[e][n]}},1246:(e,n,t)=>{var r=t(648),o=t(8173),i=t(7497),a=t(5112)("iterator");e.exports=function(e){if(null!=e)return o(e,a)||o(e,"@@iterator")||i[r(e)]}},8554:(e,n,t)=>{var r=t(7854),o=t(6916),i=t(9662),a=t(9670),l=t(6330),c=t(1246),u=r.TypeError;e.exports=function(e,n){var t=arguments.length<2?c(e):n;if(i(t))return a(o(t,e));throw u(l(e)+" is not iterable")}},8173:(e,n,t)=>{var r=t(9662);e.exports=function(e,n){var t=e[n];return null==t?void 0:r(t)}},647:(e,n,t)=>{var r=t(1702),o=t(7908),i=Math.floor,a=r("".charAt),l=r("".replace),c=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,n,t,r,f,p){var d=t+e.length,h=r.length,g=s;return void 0!==f&&(f=o(f),g=u),l(p,g,(function(o,l){var u;switch(a(l,0)){case"$":return"$";case"&":return e;case"`":return c(n,0,t);case"'":return c(n,d);case"<":u=f[c(l,1,-1)];break;default:var s=+l;if(0===s)return o;if(s>h){var p=i(s/10);return 0===p?o:p<=h?void 0===r[p-1]?a(l,1):r[p-1]+a(l,1):o}u=r[s-1]}return void 0===u?"":u}))}},7854:(e,n,t)=>{var r=function(e){return e&&e.Math==Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof t.g&&t.g)||function(){return this}()||Function("return this")()},2597:(e,n,t)=>{var r=t(1702),o=t(7908),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,n){return i(o(e),n)}},3501:e=>{e.exports={}},490:(e,n,t)=>{var r=t(5005);e.exports=r("document","documentElement")},4664:(e,n,t)=>{var r=t(9781),o=t(7293),i=t(317);e.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:(e,n,t)=>{var r=t(7854),o=t(1702),i=t(7293),a=t(4326),l=r.Object,c=o("".split);e.exports=i((function(){return!l("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):l(e)}:l},9587:(e,n,t)=>{var r=t(614),o=t(111),i=t(7674);e.exports=function(e,n,t){var a,l;return i&&r(a=n.constructor)&&a!==t&&o(l=a.prototype)&&l!==t.prototype&&i(e,l),e}},2788:(e,n,t)=>{var r=t(1702),o=t(614),i=t(5465),a=r(Function.toString);o(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),e.exports=i.inspectSource},2423:(e,n,t)=>{var r=t(2109),o=t(1702),i=t(3501),a=t(111),l=t(2597),c=t(3070).f,u=t(8006),s=t(1156),f=t(2050),p=t(9711),d=t(6677),h=!1,g=p("meta"),v=0,A=function(e){c(e,g,{value:{objectID:"O"+v++,weakData:{}}})},b=e.exports={enable:function(){b.enable=function(){},h=!0;var e=u.f,n=o([].splice),t={};t[g]=1,e(t).length&&(u.f=function(t){for(var r=e(t),o=0,i=r.length;o{var r,o,i,a=t(8536),l=t(7854),c=t(1702),u=t(111),s=t(8880),f=t(2597),p=t(5465),d=t(6200),h=t(3501),g="Object already initialized",v=l.TypeError,A=l.WeakMap;if(a||p.state){var b=p.state||(p.state=new A),m=c(b.get),y=c(b.has),E=c(b.set);r=function(e,n){if(y(b,e))throw new v(g);return n.facade=e,E(b,e,n),n},o=function(e){return m(b,e)||{}},i=function(e){return y(b,e)}}else{var _=d("state");h[_]=!0,r=function(e,n){if(f(e,_))throw new v(g);return n.facade=e,s(e,_,n),n},o=function(e){return f(e,_)?e[_]:{}},i=function(e){return f(e,_)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(n){var t;if(!u(n)||(t=o(n)).type!==e)throw v("Incompatible receiver, "+e+" required");return t}}}},7659:(e,n,t)=>{var r=t(5112),o=t(7497),i=r("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[i]===e)}},3157:(e,n,t)=>{var r=t(4326);e.exports=Array.isArray||function(e){return"Array"==r(e)}},614:e=>{e.exports=function(e){return"function"==typeof e}},4411:(e,n,t)=>{var r=t(1702),o=t(7293),i=t(614),a=t(648),l=t(5005),c=t(2788),u=function(){},s=[],f=l("Reflect","construct"),p=/^\s*(?:class|function)\b/,d=r(p.exec),h=!p.exec(u),g=function(e){if(!i(e))return!1;try{return f(u,s,e),!0}catch(e){return!1}};e.exports=!f||o((function(){var e;return g(g.call)||!g(Object)||!g((function(){e=!0}))||e}))?function(e){if(!i(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return h||!!d(p,c(e))}:g},4705:(e,n,t)=>{var r=t(7293),o=t(614),i=/#|\.prototype\./,a=function(e,n){var t=c[l(e)];return t==s||t!=u&&(o(n)?r(n):!!n)},l=a.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",s=a.POLYFILL="P";e.exports=a},111:(e,n,t)=>{var r=t(614);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},1913:e=>{e.exports=!1},7850:(e,n,t)=>{var r=t(111),o=t(4326),i=t(5112)("match");e.exports=function(e){var n;return r(e)&&(void 0!==(n=e[i])?!!n:"RegExp"==o(e))}},2190:(e,n,t)=>{var r=t(7854),o=t(5005),i=t(614),a=t(7976),l=t(3307),c=r.Object;e.exports=l?function(e){return"symbol"==typeof e}:function(e){var n=o("Symbol");return i(n)&&a(n.prototype,c(e))}},408:(e,n,t)=>{var r=t(7854),o=t(9974),i=t(6916),a=t(9670),l=t(6330),c=t(7659),u=t(6244),s=t(7976),f=t(8554),p=t(1246),d=t(9212),h=r.TypeError,g=function(e,n){this.stopped=e,this.result=n},v=g.prototype;e.exports=function(e,n,t){var r,A,b,m,y,E,_,C=t&&t.that,w=!(!t||!t.AS_ENTRIES),x=!(!t||!t.IS_ITERATOR),k=!(!t||!t.INTERRUPTED),S=o(n,C),O=function(e){return r&&d(r,"normal",e),new g(!0,e)},B=function(e){return w?(a(e),k?S(e[0],e[1],O):S(e[0],e[1])):k?S(e,O):S(e)};if(x)r=e;else{if(!(A=p(e)))throw h(l(e)+" is not iterable");if(c(A)){for(b=0,m=u(e);m>b;b++)if((y=B(e[b]))&&s(v,y))return y;return new g(!1)}r=f(e,A)}for(E=r.next;!(_=i(E,r)).done;){try{y=B(_.value)}catch(e){d(r,"throw",e)}if("object"==typeof y&&y&&s(v,y))return y}return new g(!1)}},9212:(e,n,t)=>{var r=t(6916),o=t(9670),i=t(8173);e.exports=function(e,n,t){var a,l;o(e);try{if(!(a=i(e,"return"))){if("throw"===n)throw t;return t}a=r(a,e)}catch(e){l=!0,a=e}if("throw"===n)throw t;if(l)throw a;return o(a),t}},3383:(e,n,t)=>{"use strict";var r,o,i,a=t(7293),l=t(614),c=t(30),u=t(9518),s=t(1320),f=t(5112),p=t(1913),d=f("iterator"),h=!1;[].keys&&("next"in(i=[].keys())?(o=u(u(i)))!==Object.prototype&&(r=o):h=!0),null==r||a((function(){var e={};return r[d].call(e)!==e}))?r={}:p&&(r=c(r)),l(r[d])||s(r,d,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},7497:e=>{e.exports={}},6244:(e,n,t)=>{var r=t(7466);e.exports=function(e){return r(e.length)}},133:(e,n,t)=>{var r=t(7392),o=t(7293);e.exports=!!Object.getOwnPropertySymbols&&!o((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},8536:(e,n,t)=>{var r=t(7854),o=t(614),i=t(2788),a=r.WeakMap;e.exports=o(a)&&/native code/.test(i(a))},3929:(e,n,t)=>{var r=t(7854),o=t(7850),i=r.TypeError;e.exports=function(e){if(o(e))throw i("The method doesn't accept regular expressions");return e}},1574:(e,n,t)=>{"use strict";var r=t(9781),o=t(1702),i=t(6916),a=t(7293),l=t(1956),c=t(5181),u=t(5296),s=t(7908),f=t(8361),p=Object.assign,d=Object.defineProperty,h=o([].concat);e.exports=!p||a((function(){if(r&&1!==p({b:1},p(d({},"a",{enumerable:!0,get:function(){d(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol(),o="abcdefghijklmnopqrst";return e[t]=7,o.split("").forEach((function(e){n[e]=e})),7!=p({},e)[t]||l(p({},n)).join("")!=o}))?function(e,n){for(var t=s(e),o=arguments.length,a=1,p=c.f,d=u.f;o>a;)for(var g,v=f(arguments[a++]),A=p?h(l(v),p(v)):l(v),b=A.length,m=0;b>m;)g=A[m++],r&&!i(d,v,g)||(t[g]=v[g]);return t}:p},30:(e,n,t)=>{var r,o=t(9670),i=t(6048),a=t(748),l=t(3501),c=t(490),u=t(317),s=t(6200),f=s("IE_PROTO"),p=function(){},d=function(e){return"