Skip to content
Snippets Groups Projects
Verified Commit 76a16f06 authored by Volker Schukai's avatar Volker Schukai :alien:
Browse files

doc: fix some small issues

parent 4cb1bc8e
No related branches found
No related tags found
No related merge requests found
...@@ -204,7 +204,6 @@ class ApiButton extends ActionButton { ...@@ -204,7 +204,6 @@ class ApiButton extends ActionButton {
/** /**
* Import buttons from a map. * Import buttons from a map.
* *
* @since 0.16.0
* @param {array|object|Map|Set} data * @param {array|object|Map|Set} data
* @return {Monster.Components.Form.ApiButton} * @return {Monster.Components.Form.ApiButton}
* @throws {Error} map is not iterable * @throws {Error} map is not iterable
......
...@@ -81,7 +81,6 @@ class ContextError extends Popper { ...@@ -81,7 +81,6 @@ class ContextError extends Popper {
* This method is called by the `instanceof` operator. * This method is called by the `instanceof` operator.
* *
* @returns {symbol} * @returns {symbol}
* @since 2.1.0
*/ */
static get [instanceSymbol]() { static get [instanceSymbol]() {
return Symbol.for( return Symbol.for(
......
...@@ -71,7 +71,6 @@ class ContextHelp extends Popper { ...@@ -71,7 +71,6 @@ class ContextHelp extends Popper {
/** /**
* This method is called by the `instanceof` operator. * This method is called by the `instanceof` operator.
* @returns {symbol} * @returns {symbol}
* @since 2.1.0
*/ */
static get [instanceSymbol]() { static get [instanceSymbol]() {
return Symbol.for( return Symbol.for(
......
...@@ -88,7 +88,6 @@ class MessageStateButton extends Popper { ...@@ -88,7 +88,6 @@ class MessageStateButton extends Popper {
/** /**
* This method is called by the `instanceof` operator. * This method is called by the `instanceof` operator.
* @returns {symbol} * @returns {symbol}
* @since 2.1.0
*/ */
static get [instanceSymbol]() { static get [instanceSymbol]() {
return Symbol.for( return Symbol.for(
......
...@@ -331,7 +331,6 @@ class PopperButton extends Popper { ...@@ -331,7 +331,6 @@ class PopperButton extends Popper {
* ``` * ```
* *
* @property {string|array} value * @property {string|array} value
* @since 1.2.0
* @throws {Error} unsupported type * @throws {Error} unsupported type
*/ */
set value(value) { set value(value) {
......
...@@ -277,7 +277,6 @@ const FILTER_POSITION_INLINE = "inline"; ...@@ -277,7 +277,6 @@ const FILTER_POSITION_INLINE = "inline";
* @example /examples/components/form/select-simple * @example /examples/components/form/select-simple
* @example /examples/components/form/select-with-options * @example /examples/components/form/select-with-options
* *
* @since 1.0.0
* @copyright schukai GmbH * @copyright schukai GmbH
* @summary A beautiful select control that can make your life easier and also looks good. * @summary A beautiful select control that can make your life easier and also looks good.
* @fires monster-options-set * @fires monster-options-set
...@@ -297,7 +296,6 @@ class Select extends CustomControl { ...@@ -297,7 +296,6 @@ class Select extends CustomControl {
/** /**
* This method is called by the `instanceof` operator. * This method is called by the `instanceof` operator.
* @returns {Symbol} * @returns {Symbol}
* @since 2.1.0
*/ */
static get [instanceSymbol]() { static get [instanceSymbol]() {
return Symbol.for("@schukai/monster/components/form/select@@instance"); return Symbol.for("@schukai/monster/components/form/select@@instance");
...@@ -336,7 +334,6 @@ class Select extends CustomControl { ...@@ -336,7 +334,6 @@ class Select extends CustomControl {
* ``` * ```
* *
* @property {string|array} value * @property {string|array} value
* @since 1.2.0
* @throws {Error} unsupported type * @throws {Error} unsupported type
*/ */
set value(value) { set value(value) {
...@@ -721,7 +718,6 @@ class Select extends CustomControl { ...@@ -721,7 +718,6 @@ class Select extends CustomControl {
* Import Select Options from dataset * Import Select Options from dataset
* Not to be confused with the control defaults/options * Not to be confused with the control defaults/options
* *
* @since 0.16.0
* @param {array|object|Map|Set} data * @param {array|object|Map|Set} data
* @return {Select} * @return {Select}
* @throws {Error} map is not iterable * @throws {Error} map is not iterable
......
...@@ -105,8 +105,6 @@ class ToggleSwitch extends CustomControl { ...@@ -105,8 +105,6 @@ class ToggleSwitch extends CustomControl {
* @property {string} actions.off=specifies the action for the off state. * @property {string} actions.off=specifies the action for the off state.
* @property {Object} templates * @property {Object} templates
* @property {string} templates.main=specifies the main template used by the control. * @property {string} templates.main=specifies the main template used by the control.
*
* @since 3.57.0
*/ */
get defaults() { get defaults() {
return Object.assign({}, super.defaults, { return Object.assign({}, super.defaults, {
...@@ -317,7 +315,6 @@ class ToggleSwitch extends CustomControl { ...@@ -317,7 +315,6 @@ class ToggleSwitch extends CustomControl {
/** /**
* This method is called by the `instanceof` operator. * This method is called by the `instanceof` operator.
* @returns {symbol} * @returns {symbol}
* @since 2.1.0
*/ */
static get [instanceSymbol]() { static get [instanceSymbol]() {
return Symbol.for( return Symbol.for(
......
...@@ -133,7 +133,6 @@ class TreeSelect extends Select { ...@@ -133,7 +133,6 @@ class TreeSelect extends Select {
* Import Select Options from dataset * Import Select Options from dataset
* Not to be confused with the control defaults/options * Not to be confused with the control defaults/options
* *
* @since 0.16.0
* @param {array|object|Map|Set} data * @param {array|object|Map|Set} data
* @return {Select} * @return {Select}
* @throws {Error} map is not iterable * @throws {Error} map is not iterable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment