From 4f8984d7f5ed738b21b06aee90bdbec1f52309f5 Mon Sep 17 00:00:00 2001 From: leguan Date: Fri, 7 Aug 2026 00:49:12 +0200 Subject: [PATCH] remove experimental tags in certain docs --- src/content/docs/paper/dev/api/data-component-api.md | 10 ---------- src/content/docs/paper/dev/api/dialogs.mdx | 10 ---------- .../docs/paper/dev/api/inventories/menu-type-api.md | 10 ---------- 3 files changed, 30 deletions(-) diff --git a/src/content/docs/paper/dev/api/data-component-api.md b/src/content/docs/paper/dev/api/data-component-api.md index c35772982..a9243158b 100644 --- a/src/content/docs/paper/dev/api/data-component-api.md +++ b/src/content/docs/paper/dev/api/data-component-api.md @@ -2,18 +2,8 @@ title: Data components description: A guide to the ItemStack data component API. slug: paper/dev/data-component-api -sidebar: - badge: - text: Experimental - variant: danger --- -:::danger[Experimental] - -The data component API is currently experimental, and is additionally subject to change across versions. - -::: - The data component API provides a version-specific interface for accessing and manipulating item data that is otherwise not representable by the `ItemMeta` API. Through this API, you can read and modify properties of an item, so called data components, in a stable and object-oriented manner. diff --git a/src/content/docs/paper/dev/api/dialogs.mdx b/src/content/docs/paper/dev/api/dialogs.mdx index 0ba0bce45..021faa059 100644 --- a/src/content/docs/paper/dev/api/dialogs.mdx +++ b/src/content/docs/paper/dev/api/dialogs.mdx @@ -3,10 +3,6 @@ title: Dialog API description: A guide to the dialog API introduced in 1.21.7. slug: paper/dev/dialogs version: 1.21.8 -sidebar: - badge: - text: Experimental - variant: danger --- import Video from "/src/components/Video.astro"; @@ -14,12 +10,6 @@ import Video from "/src/components/Video.astro"; import DialogShowcaseMp4 from "./assets/dialogs/dialog-showcase.mp4?url"; import InputDialogShowcaseMp4 from "./assets/dialogs/input-dialog-showcase.mp4?url"; -:::danger[Experimental] - -The dialog API is currently experimental and might change in the future. - -::: - [Dialogs](https://minecraft.wiki/w/Dialog) are a feature added to Minecraft in the [1.21.6](https://minecraft.wiki/w/Java_Edition_1.21.6) update. Paper released developer API for creating custom dialogs in 1.21.7. This section is meant as an introduction to this API and what you can and cannot do with dialogs. diff --git a/src/content/docs/paper/dev/api/inventories/menu-type-api.md b/src/content/docs/paper/dev/api/inventories/menu-type-api.md index 8bb107744..7588eaf5f 100644 --- a/src/content/docs/paper/dev/api/inventories/menu-type-api.md +++ b/src/content/docs/paper/dev/api/inventories/menu-type-api.md @@ -3,18 +3,8 @@ title: Menu Type API slug: paper/dev/menu-type-api description: A guide to the Menu Type API. version: 1.21.8 -sidebar: - badge: - text: Experimental - variant: danger --- -:::danger[Experimental] - -The Menu Type API and anything that uses it is currently experimental and may change in the future. - -::: - Minecraft has a lot of types of menus. From chests, to crafting tables, to anvils, and even villager trade menus. With the old Bukkit inventory API, it was not possible to replicate most of these perfectly. Exactly for this reason, the menu type API was introduced.