[JS, Stdlib] Move DOM API to separate module kotlin-dom-api-compat

[JS, Stdlib] Leave sources of dom api inside stdlib

[Stdlib, JS] Leave ItemArrayLike inside stdlib
This commit is contained in:
Ilya Goncharov
2022-11-15 16:58:25 +01:00
committed by Space Team
parent fce26aa536
commit 688894aabc
77 changed files with 17709 additions and 35268 deletions
-19
View File
@@ -1,19 +0,0 @@
@kotlin.Deprecated(message = "This API is moved to another package, use 'kotlinx.browser.document' instead.", replaceWith = kotlin.ReplaceWith(expression = "document", imports = {"kotlinx.browser.document"}))
@kotlin.internal.LowPriorityInOverloadResolution
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
public external val document: org.w3c.dom.Document { get; }
@kotlin.Deprecated(message = "This API is moved to another package, use 'kotlinx.browser.localStorage' instead.", replaceWith = kotlin.ReplaceWith(expression = "localStorage", imports = {"kotlinx.browser.localStorage"}))
@kotlin.internal.LowPriorityInOverloadResolution
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
public external val localStorage: org.w3c.dom.Storage { get; }
@kotlin.Deprecated(message = "This API is moved to another package, use 'kotlinx.browser.sessionStorage' instead.", replaceWith = kotlin.ReplaceWith(expression = "sessionStorage", imports = {"kotlinx.browser.sessionStorage"}))
@kotlin.internal.LowPriorityInOverloadResolution
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
public external val sessionStorage: org.w3c.dom.Storage { get; }
@kotlin.Deprecated(message = "This API is moved to another package, use 'kotlinx.browser.window' instead.", replaceWith = kotlin.ReplaceWith(expression = "window", imports = {"kotlinx.browser.window"}))
@kotlin.internal.LowPriorityInOverloadResolution
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
public external val window: org.w3c.dom.Window { get; }