diff --git a/source/components/form/api-button.mjs b/source/components/form/api-button.mjs
index 683c6c82f5228ad69a142f5beb699c100b67e7ca..94f8f6bc3159d09f1a30f40240ad92d327533752 100644
--- a/source/components/form/api-button.mjs
+++ b/source/components/form/api-button.mjs
@@ -204,7 +204,6 @@ class ApiButton extends ActionButton {
 	/**
 	 * Import buttons from a map.
 	 *
-	 * @since 0.16.0
 	 * @param {array|object|Map|Set} data
 	 * @return {Monster.Components.Form.ApiButton}
 	 * @throws {Error} map is not iterable
diff --git a/source/components/form/context-error.mjs b/source/components/form/context-error.mjs
index 3a3030efd242b3d370292d96e0cbcb1cc2e81e51..adbb5a90ab974a7c7db4628597062088c380d86b 100644
--- a/source/components/form/context-error.mjs
+++ b/source/components/form/context-error.mjs
@@ -81,7 +81,6 @@ class ContextError extends Popper {
 	 * This method is called by the `instanceof` operator.
 	 *
 	 * @returns {symbol}
-	 * @since 2.1.0
 	 */
 	static get [instanceSymbol]() {
 		return Symbol.for(
diff --git a/source/components/form/context-help.mjs b/source/components/form/context-help.mjs
index c1fdcefeb72f6169f27b6316152752b4438e3370..f8411cae8ab6e6854d00d03b2eb7f1d0e29fd29c 100644
--- a/source/components/form/context-help.mjs
+++ b/source/components/form/context-help.mjs
@@ -71,7 +71,6 @@ class ContextHelp extends Popper {
 	/**
 	 * This method is called by the `instanceof` operator.
 	 * @returns {symbol}
-	 * @since 2.1.0
 	 */
 	static get [instanceSymbol]() {
 		return Symbol.for(
diff --git a/source/components/form/message-state-button.mjs b/source/components/form/message-state-button.mjs
index 2327c26c0c449e6022be2c446f4fdd991c2ebbbb..b349a569be6dfe28c561507e117e520d1064c27c 100644
--- a/source/components/form/message-state-button.mjs
+++ b/source/components/form/message-state-button.mjs
@@ -88,7 +88,6 @@ class MessageStateButton extends Popper {
 	/**
 	 * This method is called by the `instanceof` operator.
 	 * @returns {symbol}
-	 * @since 2.1.0
 	 */
 	static get [instanceSymbol]() {
 		return Symbol.for(
diff --git a/source/components/form/popper-button.mjs b/source/components/form/popper-button.mjs
index bb2d3f0d86a52b8ddada24a5c86691777dded69c..952a64e085b37089e8919c9ed31498deea175a94 100644
--- a/source/components/form/popper-button.mjs
+++ b/source/components/form/popper-button.mjs
@@ -331,7 +331,6 @@ class PopperButton extends Popper {
 	 * ```
 	 *
 	 * @property {string|array} value
-	 * @since 1.2.0
 	 * @throws {Error} unsupported type
 	 */
 	set value(value) {
diff --git a/source/components/form/select.mjs b/source/components/form/select.mjs
index b109d8da82c669eb8c45cd63dac934428d62c3d7..3f6d5ded790b2f37683a6c5a0e9bdaab8b81d6ea 100644
--- a/source/components/form/select.mjs
+++ b/source/components/form/select.mjs
@@ -277,7 +277,6 @@ const FILTER_POSITION_INLINE = "inline";
  * @example /examples/components/form/select-simple
  * @example /examples/components/form/select-with-options
  *
- * @since 1.0.0
  * @copyright schukai GmbH
  * @summary A beautiful select control that can make your life easier and also looks good.
  * @fires monster-options-set
@@ -297,7 +296,6 @@ class Select extends CustomControl {
 	/**
 	 * This method is called by the `instanceof` operator.
 	 * @returns {Symbol}
-	 * @since 2.1.0
 	 */
 	static get [instanceSymbol]() {
 		return Symbol.for("@schukai/monster/components/form/select@@instance");
@@ -336,7 +334,6 @@ class Select extends CustomControl {
 	 * ```
 	 *
 	 * @property {string|array} value
-	 * @since 1.2.0
 	 * @throws {Error} unsupported type
 	 */
 	set value(value) {
@@ -721,7 +718,6 @@ class Select extends CustomControl {
 	 * Import Select Options from dataset
 	 * Not to be confused with the control defaults/options
 	 *
-	 * @since 0.16.0
 	 * @param {array|object|Map|Set} data
 	 * @return {Select}
 	 * @throws {Error} map is not iterable
diff --git a/source/components/form/toggle-switch.mjs b/source/components/form/toggle-switch.mjs
index 7d90b0416097ba79c44c48906be0ced6791c24c6..ad33780d5aa213bfdf3db503789152e3b8ab52bd 100644
--- a/source/components/form/toggle-switch.mjs
+++ b/source/components/form/toggle-switch.mjs
@@ -105,8 +105,6 @@ class ToggleSwitch extends CustomControl {
 	 * @property {string} actions.off=specifies the action for the off state.
 	 * @property {Object} templates
 	 * @property {string} templates.main=specifies the main template used by the control.
-	 *
-	 * @since 3.57.0
 	 */
 	get defaults() {
 		return Object.assign({}, super.defaults, {
@@ -317,7 +315,6 @@ class ToggleSwitch extends CustomControl {
 	/**
 	 * This method is called by the `instanceof` operator.
 	 * @returns {symbol}
-	 * @since 2.1.0
 	 */
 	static get [instanceSymbol]() {
 		return Symbol.for(
diff --git a/source/components/form/tree-select.mjs b/source/components/form/tree-select.mjs
index 290eee3b8a416b5da439030ec02389d2ac4cb836..d3df828cd31ee18f7a0b7f8946d54341c53fd5eb 100644
--- a/source/components/form/tree-select.mjs
+++ b/source/components/form/tree-select.mjs
@@ -133,7 +133,6 @@ class TreeSelect extends Select {
 	 * Import Select Options from dataset
 	 * Not to be confused with the control defaults/options
 	 *
-	 * @since 0.16.0
 	 * @param {array|object|Map|Set} data
 	 * @return {Select}
 	 * @throws {Error} map is not iterable