From fb7ff5b8bf2073a8d7b78011b9edffc830dc63cb Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sat, 26 Oct 2019 00:17:24 +0200 Subject: API documentation for KVision 2.0.0 --- .../-notification-constructor-options/actions.html | 14 +++ .../-notification-constructor-options/body.html | 14 +++ .../close-button-text.html | 14 +++ .../has-reply.html | 14 +++ .../-notification-constructor-options/icon.html | 14 +++ .../-notification-constructor-options/index.html | 102 +++++++++++++++++++++ .../reply-placeholder.html | 14 +++ .../-notification-constructor-options/silent.html | 14 +++ .../-notification-constructor-options/sound.html | 14 +++ .../subtitle.html | 14 +++ .../-notification-constructor-options/title.html | 14 +++ 11 files changed, 242 insertions(+) create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/actions.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/body.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/close-button-text.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/has-reply.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/icon.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/index.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/reply-placeholder.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/silent.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/sound.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/subtitle.html create mode 100644 api1/pl.treksoft.kvision.electron/-notification-constructor-options/title.html (limited to 'api1/pl.treksoft.kvision.electron/-notification-constructor-options') diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/actions.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/actions.html new file mode 100644 index 00000000..593b4dd0 --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/actions.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.actions - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / actions
+
+

actions

+ +open var actions: Array<NotificationAction>? + + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/body.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/body.html new file mode 100644 index 00000000..1f802c1c --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/body.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.body - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / body
+
+

body

+ +abstract var body: String + + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/close-button-text.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/close-button-text.html new file mode 100644 index 00000000..dbb70a44 --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/close-button-text.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.closeButtonText - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / closeButtonText
+
+

closeButtonText

+ +open var closeButtonText: String? + + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/has-reply.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/has-reply.html new file mode 100644 index 00000000..24f7d7b2 --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/has-reply.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.hasReply - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / hasReply
+
+

hasReply

+ +open var hasReply: Boolean? + + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/icon.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/icon.html new file mode 100644 index 00000000..5e5baac1 --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/icon.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.icon - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / icon
+
+

icon

+ +open var icon: dynamic + + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/index.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/index.html new file mode 100644 index 00000000..350928f3 --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/index.html @@ -0,0 +1,102 @@ + + + +NotificationConstructorOptions - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions
+
+

NotificationConstructorOptions

+external interface NotificationConstructorOptions +

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

actions

+
+open var actions: Array<NotificationAction>?
+

body

+
+abstract var body: String
+

closeButtonText

+
+open var closeButtonText: String?
+

hasReply

+
+open var hasReply: Boolean?
+

icon

+
+open var icon: dynamic
+

replyPlaceholder

+
+open var replyPlaceholder: String?
+

silent

+
+open var silent: Boolean?
+

sound

+
+open var sound: String?
+

subtitle

+
+open var subtitle: String?
+

title

+
+abstract var title: String
+

Extension Functions

+ + + + + + + +
+

createInstance

+
+fun <T> Any?.createInstance(vararg args: dynamic): T +

Helper function for creating JavaScript objects from dynamic constructors.

+
+ + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/reply-placeholder.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/reply-placeholder.html new file mode 100644 index 00000000..10f0d44c --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/reply-placeholder.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.replyPlaceholder - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / replyPlaceholder
+
+

replyPlaceholder

+ +open var replyPlaceholder: String? + + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/silent.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/silent.html new file mode 100644 index 00000000..39eed047 --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/silent.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.silent - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / silent
+
+

silent

+ +open var silent: Boolean? + + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/sound.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/sound.html new file mode 100644 index 00000000..a5e2648f --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/sound.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.sound - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / sound
+
+

sound

+ +open var sound: String? + + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/subtitle.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/subtitle.html new file mode 100644 index 00000000..ff78e8eb --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/subtitle.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.subtitle - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / subtitle
+
+

subtitle

+ +open var subtitle: String? + + diff --git a/api1/pl.treksoft.kvision.electron/-notification-constructor-options/title.html b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/title.html new file mode 100644 index 00000000..5277a42b --- /dev/null +++ b/api1/pl.treksoft.kvision.electron/-notification-constructor-options/title.html @@ -0,0 +1,14 @@ + + + +NotificationConstructorOptions.title - kvision + + + +kvision / pl.treksoft.kvision.electron / NotificationConstructorOptions / title
+
+

title

+ +abstract var title: String + + -- cgit