From 38fe7261046c9780eb794fb59b06ecb809773df7 Mon Sep 17 00:00:00 2001 From: veyndan Date: Thu, 30 Nov 2023 14:17:09 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20site=20from=20=20@=20b0e57a447?= =?UTF-8?q?e5d2ed27bf8b0dfd4ce4d246b9363a0=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../-redwood-layout/index.html | 40 +++++++++---------- .../-u-i-view-children.html | 12 ++---- .../-u-i-view-children/index.html | 24 +++-------- .../app.cash.redwood.widget/index.html | 12 ++---- ...undefined.html => -u-n-d-e-f-i-n-e-d.html} | 10 ++--- .../-size/-companion/index.html | 8 ++-- latest/docs/scripts/pages.json | 2 +- 7 files changed, 42 insertions(+), 66 deletions(-) rename latest/docs/redwood-yoga/app.cash.redwood.yoga/-size/-companion/{-undefined.html => -u-n-d-e-f-i-n-e-d.html} (91%) diff --git a/latest/docs/redwood-widget/app.cash.redwood.widget/-redwood-layout/index.html b/latest/docs/redwood-widget/app.cash.redwood.widget/-redwood-layout/index.html index f03d19da8b..46b618875f 100644 --- a/latest/docs/redwood-widget/app.cash.redwood.widget/-redwood-layout/index.html +++ b/latest/docs/redwood-widget/app.cash.redwood.widget/-redwood-layout/index.html @@ -176,7 +176,7 @@

Functions

-
+
@@ -210,7 +210,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -312,7 +312,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -1196,7 +1196,7 @@

Functions

-
+
@@ -1570,7 +1570,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1689,7 +1689,7 @@

Functions

-
+
@@ -2607,7 +2607,7 @@

Functions

-
+
@@ -2845,7 +2845,7 @@

Functions

+
@@ -4409,7 +4409,7 @@

Functions

-
+
@@ -6415,7 +6415,7 @@

Functions

+
@@ -6432,7 +6432,7 @@

Functions

+
@@ -7061,7 +7061,7 @@

Functions

-
+
@@ -7401,7 +7401,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -7418,7 +7418,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -7486,7 +7486,7 @@

Functions

-
+
@@ -7503,7 +7503,7 @@

Functions

-
+
@@ -7605,7 +7605,7 @@

Functions

-
+
@@ -8098,7 +8098,7 @@

Functions

-
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
+
open override fun scheduleDrawable(p0: Drawable, p1: Runnable, p2: Long)
@@ -9186,7 +9186,7 @@

Functions

-
+
@@ -11549,7 +11549,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
diff --git a/latest/docs/redwood-widget/app.cash.redwood.widget/-u-i-view-children/-u-i-view-children.html b/latest/docs/redwood-widget/app.cash.redwood.widget/-u-i-view-children/-u-i-view-children.html index ec7dc2eea2..83ac9183e3 100644 --- a/latest/docs/redwood-widget/app.cash.redwood.widget/-u-i-view-children/-u-i-view-children.html +++ b/latest/docs/redwood-widget/app.cash.redwood.widget/-u-i-view-children/-u-i-view-children.html @@ -68,15 +68,9 @@

UIViewChildren

constructor(parent: <Error class: unknown class>, insert: (<Error class: unknown class>, Int) -> Unit = when (parent) { is UIStackView -> { view, index -> parent.insertArrangedSubview(view, index.convert()) } else -> { view, index -> parent.insertSubview(view, index.convert<NSInteger>()) } - }, remove: (index: Int, count: Int) -> Array<<Error class: unknown class>> = { index, count -> - // Per the docs, these properties are read-only copies we can use stable indexing into. - val subviews = when (parent) { - is UIStackView -> parent.typedArrangedSubviews - else -> parent.typedSubviews - } - Array(count) { offset -> - subviews[index + offset].also(UIView::removeFromSuperview) - } + }, remove: (index: Int, count: Int) -> Array<<Error class: unknown class>> = when (parent) { + is UIStackView -> { index, count -> parent.typedArrangedSubviews.remove(index, count) } + else -> { index, count -> parent.typedSubviews.remove(index, count) } })
@@ -98,15 +92,9 @@

Constructors

constructor(parent: <Error class: unknown class>, insert: (<Error class: unknown class>, Int) -> Unit = when (parent) { is UIStackView -> { view, index -> parent.insertArrangedSubview(view, index.convert()) } else -> { view, index -> parent.insertSubview(view, index.convert<NSInteger>()) } - }, remove: (index: Int, count: Int) -> Array<<Error class: unknown class>> = { index, count -> - // Per the docs, these properties are read-only copies we can use stable indexing into. - val subviews = when (parent) { - is UIStackView -> parent.typedArrangedSubviews - else -> parent.typedSubviews - } - Array(count) { offset -> - subviews[index + offset].also(UIView::removeFromSuperview) - } + }, remove: (index: Int, count: Int) -> Array<<Error class: unknown class>> = when (parent) { + is UIStackView -> { index, count -> parent.typedArrangedSubviews.remove(index, count) } + else -> { index, count -> parent.typedSubviews.remove(index, count) } })
diff --git a/latest/docs/redwood-widget/app.cash.redwood.widget/index.html b/latest/docs/redwood-widget/app.cash.redwood.widget/index.html index 944bbd1e1b..3bef331274 100644 --- a/latest/docs/redwood-widget/app.cash.redwood.widget/index.html +++ b/latest/docs/redwood-widget/app.cash.redwood.widget/index.html @@ -197,15 +197,9 @@

Types

class UIViewChildren(parent: <Error class: unknown class>, insert: (<Error class: unknown class>, Int) -> Unit = when (parent) { is UIStackView -> { view, index -> parent.insertArrangedSubview(view, index.convert()) } else -> { view, index -> parent.insertSubview(view, index.convert<NSInteger>()) } - }, remove: (index: Int, count: Int) -> Array<<Error class: unknown class>> = { index, count -> - // Per the docs, these properties are read-only copies we can use stable indexing into. - val subviews = when (parent) { - is UIStackView -> parent.typedArrangedSubviews - else -> parent.typedSubviews - } - Array(count) { offset -> - subviews[index + offset].also(UIView::removeFromSuperview) - } + }, remove: (index: Int, count: Int) -> Array<<Error class: unknown class>> = when (parent) { + is UIStackView -> { index, count -> parent.typedArrangedSubviews.remove(index, count) } + else -> { index, count -> parent.typedSubviews.remove(index, count) } })
diff --git a/latest/docs/redwood-yoga/app.cash.redwood.yoga/-size/-companion/-undefined.html b/latest/docs/redwood-yoga/app.cash.redwood.yoga/-size/-companion/-u-n-d-e-f-i-n-e-d.html similarity index 91% rename from latest/docs/redwood-yoga/app.cash.redwood.yoga/-size/-companion/-undefined.html rename to latest/docs/redwood-yoga/app.cash.redwood.yoga/-size/-companion/-u-n-d-e-f-i-n-e-d.html index 580b46862c..b365aeb10f 100644 --- a/latest/docs/redwood-yoga/app.cash.redwood.yoga/-size/-companion/-undefined.html +++ b/latest/docs/redwood-yoga/app.cash.redwood.yoga/-size/-companion/-u-n-d-e-f-i-n-e-d.html @@ -2,7 +2,7 @@ - Undefined + UNDEFINED