From 1b14c8e57faa2e3e7ea15acc2e7047130b70d739 Mon Sep 17 00:00:00 2001 From: Christoph Reiter <reiter.christoph@gmail.com> Date: Wed, 20 Nov 2019 10:49:08 +0100 Subject: [PATCH] Remove all mentions of bulma and hardcode the referenced info instead --- packages/common/notification.js | 2 +- packages/common/vpu-button.js | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/common/notification.js b/packages/common/notification.js index 95481829..d36aacb3 100644 --- a/packages/common/notification.js +++ b/packages/common/notification.js @@ -1,7 +1,7 @@ /** * Sends a notification via the event * - * For type see: https://bulma.io/documentation/elements/notification/#colors + * Type can be info/success/warning/danger * * example options: * diff --git a/packages/common/vpu-button.js b/packages/common/vpu-button.js index 317aaad6..1e66f3f1 100644 --- a/packages/common/vpu-button.js +++ b/packages/common/vpu-button.js @@ -10,14 +10,12 @@ import VPULitElement from './vpu-lit-element.js'; * Use the attribute "no-spinner-on-click" to disable the spinner, then you can * start it with start() and stop it with stop() * - * Use the attribute "type" to set Bulma styles like "is-info" - * See https://bulma.io/documentation/elements/button/#colors for a list of all styles + * Type can be is-primary/is-info/is-success/is-warning/is-danger */ class Button extends VPULitElement { constructor() { super(); this.value = ""; - // see: https://bulma.io/documentation/elements/button/#colors this.type = ""; this.spinner = false; this.noSpinnerOnClick = false; -- GitLab