Pārlūkot izejas kodu

update bulma-tooltip

hmt 3 gadi atpakaļ
vecāks
revīzija
48446ec2ff

+ 9 - 0
node_modules/bulma-tooltip/CHANGELOG.md

@@ -1,3 +1,12 @@
+<a name="3.0.0"></a>
+## [3.0.0](https://github.com/Wikiki/bulma-tooltip/compare/1.0.5...3.0.0) (2019-10-06)
+
+### Breaking changes
+**Careful** You must now use <code>has-tooltip-*</code> classes.
+
+### Bug Fixes
+- Lots of display bug fixes
+
 <a name="1.0.5"></a>
 ## [1.0.5](https://github.com/Wikiki/bulma-tooltip/compare/1.0.4...1.0.5) (2018-05-12)
 

+ 0 - 28
node_modules/bulma-tooltip/dist/css/_dispatcher.sass

@@ -1,28 +0,0 @@
-@each $direction in top, right, bottom, left
-  +mobile
-    .is-tooltip-#{$direction}-mobile
-      @include direction(#{$direction})
-  +tablet
-    .is-tooltip-#{$direction}-tablet
-      @include direction(#{$direction})
-  +tablet-only
-    .is-tooltip-#{$direction}-tablet-only
-      @include direction(#{$direction})
-  +touch
-    .is-tooltip-#{$direction}-touch
-      @include direction(#{$direction})
-  +desktop
-    .is-tooltip-#{$direction}-desktop
-      @include direction(#{$direction})
-  +desktop-only
-    .is-tooltip-#{$direction}-desktop-only
-      @include direction(#{$direction})
-  +widescreen
-    .is-tooltip-#{$direction}-widescreen
-      @include direction(#{$direction})
-  +widescreen-only
-    .is-tooltip-#{$direction}-widescreen-only
-      @include direction(#{$direction})
-  +fullhd
-    .is-tooltip-#{$direction}-fullhd
-      @include direction(#{$direction})

+ 0 - 90
node_modules/bulma-tooltip/dist/css/_position.sass

@@ -1,90 +0,0 @@
-=top($important: null)
-  &::before
-
-    top: auto $important
-    bottom: 100% $important
-    left: 50% $important
-    right: auto $important
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        top: 0 $important
-        bottom: auto $important
-        left: 50% $important
-        right: auto $important
-        border-color: rgba($tooltip-background-color, 0.9) transparent transparent transparent $important
-    &::before
-      transform: translate(-50%, -.5rem) $important
-
-=right($important: null)
-  &::before
-    top: auto $important
-    bottom: 50% $important
-    left: 100% $important
-    right: auto $important
-    transform: translate(-1rem, 50%) $important
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        top: 50% $important
-        left: 100% $important
-        right: auto $important
-        border-color: transparent rgba($tooltip-background-color, 0.9) transparent transparent $important
-    &::before
-      transform: translate(0.5rem, 50%) $important
-
-=bottom($important: null)
-  &::before
-    top: 100% $important
-    bottom: auto $important
-    left: 50% $important
-    right: auto $important
-    transform: translate(-50%, -1rem) $important
-
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        top: 100% $important
-        bottom: auto $important
-        left: 50% $important
-        right: auto $important
-        border-color: transparent transparent rgba($tooltip-background-color, 0.9) transparent $important
-    &::before
-      transform: translate(-50%, 0.5rem) $important
-
-=left($important: null)
-  &::before
-    top: auto $important
-    bottom: 50% $important
-    left: auto $important
-    right: 100% $important
-    transform: translate(1rem, 50%) $important
-
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        top: 50% $important
-        bottom: auto $important
-        left: auto $important
-        right: calc(100% - .5rem) $important
-        border-color: transparent transparent transparent rgba($tooltip-background-color, 0.9) $important
-    &::before
-      transform: translate(-0.5rem, 50%) $important
-
-=direction($direction)
-  @if $direction == 'top'
-    @include top(!important)
-  @else if $direction == 'right'
-    @include right(!important)
-  @else if $direction == 'bottom'
-    @include bottom(!important)
-  @else if $direction == 'left'
-    @include left(!important)

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
node_modules/bulma-tooltip/dist/css/bulma-tooltip.min.css


+ 0 - 93
node_modules/bulma-tooltip/dist/css/bulma-tooltip.sass

@@ -1,93 +0,0 @@
-@import 'position'
-
-$tooltip-background-color: $grey-dark !default
-$tooltip-background-opacity: 0.9 !default
-$tooltip-max-width: 24rem !default
-
-.tooltip
-  position: relative
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        z-index: 99999
-        position: absolute
-        display: inline-block
-        pointer-events: none
-    &::before
-      z-index: 99999
-      position: absolute
-      display: inline-block
-      pointer-events: none
-    &:not(.is-loading)
-      &::after
-        content: ""
-        border-style: solid
-        border-width: .5rem
-    &::before
-      opacity: 0
-      content: attr(data-tooltip)
-      overflow: hidden
-      white-space: nowrap
-      text-overflow: ellipsis
-      font-size: $size-7
-      padding: .4rem .8rem
-      background: rgba($tooltip-background-color, $tooltip-background-opacity)
-      border-radius: $radius
-      color: $white
-      max-width: $tooltip-max-width
-
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        opacity: 1
-        margin-left: -.5rem
-        margin-top: -.5rem
-
-    &::before
-      opacity: 1
-
-  +top
-
-  &.is-tooltip-right
-    +right
-
-  &.is-tooltip-bottom
-    +bottom
-
-  &.is-tooltip-left
-    +left
-
-  &.is-tooltip-multiline
-    &::before
-      min-width: $tooltip-max-width
-      text-overflow: clip
-      white-space: normal
-      word-break: keep-all
-
-  @each $name, $pair in $colors
-    $color: nth($pair, 1)
-    $color-invert: nth($pair, 2)
-    &.is-tooltip-#{$name}
-      &:not(.is-loading)
-        &::after
-          border-color: rgba($color, $tooltip-background-opacity) transparent transparent transparent
-      &.is-tooltip-right
-        &:not(.is-loading)
-          &::after
-            border-color: transparent rgba($color, $tooltip-background-opacity) transparent transparent
-      &.is-tooltip-bottom
-        &:not(.is-loading)
-          &::after
-            border-color: transparent transparent rgba($color, $tooltip-background-opacity) transparent
-      &.is-tooltip-left
-        &:not(.is-loading)
-          &::after
-            border-color: transparent transparent transparent rgba($color, $tooltip-background-opacity)
-      &::before
-        background: rgba($color, $tooltip-background-opacity)
-        color: $color-invert
-
-@import 'dispatcher'

+ 30 - 58
node_modules/bulma-tooltip/package.json

@@ -1,44 +1,33 @@
 {
-  "_from": "bulma-tooltip",
-  "_id": "bulma-tooltip@2.0.2",
-  "_inBundle": false,
-  "_integrity": "sha512-xsqWeWV7tsUn3uH04SqJeP7/CyC1RaDVIyVzr4/sIO3friIIOi7L6jc5g7qUwDxuBQl72yH/yRPuefpXoQ4hWg==",
-  "_location": "/bulma-tooltip",
-  "_phantomChildren": {},
-  "_requested": {
-    "type": "tag",
-    "registry": true,
-    "raw": "bulma-tooltip",
-    "name": "bulma-tooltip",
-    "escapedName": "bulma-tooltip",
-    "rawSpec": "",
-    "saveSpec": null,
-    "fetchSpec": "latest"
+  "name": "bulma-tooltip",
+  "version": "3.0.2",
+  "description": "Display a tooltip attached to any kind of element, in different position.",
+  "main": "./dist/css/bulma-tooltip.min.css",
+  "style": "./dist/bulma-tooltip.min.css",
+  "sass": "./src/sass/index.sass",
+  "scripts": {
+    "build": "gulp",
+    "commit": "git-cz",
+    "travis-deploy-once": "travis-deploy-once",
+    "semantic-release": "semantic-release"
   },
-  "_requiredBy": [
-    "#USER",
-    "/"
-  ],
-  "_resolved": "https://registry.npmjs.org/bulma-tooltip/-/bulma-tooltip-2.0.2.tgz",
-  "_shasum": "cf0bf5ad2dc75492cbcbd4816e1a005314dc90ac",
-  "_spec": "bulma-tooltip",
-  "_where": "/home/zorro/Documents/schild.report/reports/mein-bk",
-  "author": {
-    "name": "Wikiki",
-    "email": "wikiki@protonmail.com",
-    "url": "https://wikiki.github.io/bulma-extensions/overview"
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/Wikiki/bulma-tooltip.git"
   },
+  "keywords": [
+    "Bulma",
+    "bulma",
+    "bulma.io",
+    "extensions",
+    "tooltip"
+  ],
+  "author": "Wikiki <wikiki@protonmail.com> (https://wikiki.github.io/bulma-extensions/overview)",
+  "license": "MIT",
   "bugs": {
     "url": "https://github.com/Wikiki/bulma-tooltip/issues"
   },
-  "bundleDependencies": false,
-  "config": {
-    "commitizen": {
-      "path": "node_modules/cz-conventional-changelog"
-    }
-  },
-  "deprecated": false,
-  "description": "Display a tooltip attached to any kind of element, in different position.",
+  "homepage": "https://github.com/Wikiki/bulma-tooltip#readme",
   "devDependencies": {
     "ansi-colors": "^2.0.1",
     "autoprefixer": "^8.6.2",
@@ -68,32 +57,15 @@
     "webpack": "^4.12.0",
     "webpack-stream": "^4.0.3"
   },
+  "config": {
+    "commitizen": {
+      "path": "node_modules/cz-conventional-changelog"
+    }
+  },
   "files": [
     "dist/**",
     "src/**",
     "LICENSE",
     "README.md"
-  ],
-  "homepage": "https://github.com/Wikiki/bulma-tooltip#readme",
-  "keywords": [
-    "Bulma",
-    "bulma",
-    "bulma.io",
-    "extensions",
-    "tooltip"
-  ],
-  "license": "MIT",
-  "main": "./dist/css/bulma-tooltip.min.css",
-  "name": "bulma-tooltip",
-  "repository": {
-    "type": "git",
-    "url": "git+https://github.com/Wikiki/bulma-tooltip.git"
-  },
-  "scripts": {
-    "build": "gulp",
-    "commit": "git-cz",
-    "semantic-release": "semantic-release",
-    "travis-deploy-once": "travis-deploy-once"
-  },
-  "version": "2.0.2"
+  ]
 }

+ 0 - 28
node_modules/bulma-tooltip/src/sass/_dispatcher.sass

@@ -1,28 +0,0 @@
-@each $direction in top, right, bottom, left
-  +mobile
-    .is-tooltip-#{$direction}-mobile
-      @include direction(#{$direction})
-  +tablet
-    .is-tooltip-#{$direction}-tablet
-      @include direction(#{$direction})
-  +tablet-only
-    .is-tooltip-#{$direction}-tablet-only
-      @include direction(#{$direction})
-  +touch
-    .is-tooltip-#{$direction}-touch
-      @include direction(#{$direction})
-  +desktop
-    .is-tooltip-#{$direction}-desktop
-      @include direction(#{$direction})
-  +desktop-only
-    .is-tooltip-#{$direction}-desktop-only
-      @include direction(#{$direction})
-  +widescreen
-    .is-tooltip-#{$direction}-widescreen
-      @include direction(#{$direction})
-  +widescreen-only
-    .is-tooltip-#{$direction}-widescreen-only
-      @include direction(#{$direction})
-  +fullhd
-    .is-tooltip-#{$direction}-fullhd
-      @include direction(#{$direction})

+ 123 - 90
node_modules/bulma-tooltip/src/sass/_position.sass

@@ -1,90 +1,123 @@
-=top($important: null)
-  &::before
-
-    top: auto $important
-    bottom: 100% $important
-    left: 50% $important
-    right: auto $important
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        top: 0 $important
-        bottom: auto $important
-        left: 50% $important
-        right: auto $important
-        border-color: rgba($tooltip-background-color, 0.9) transparent transparent transparent $important
-    &::before
-      transform: translate(-50%, -.5rem) $important
-
-=right($important: null)
-  &::before
-    top: auto $important
-    bottom: 50% $important
-    left: 100% $important
-    right: auto $important
-    transform: translate(-1rem, 50%) $important
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        top: 50% $important
-        left: 100% $important
-        right: auto $important
-        border-color: transparent rgba($tooltip-background-color, 0.9) transparent transparent $important
-    &::before
-      transform: translate(0.5rem, 50%) $important
-
-=bottom($important: null)
-  &::before
-    top: 100% $important
-    bottom: auto $important
-    left: 50% $important
-    right: auto $important
-    transform: translate(-50%, -1rem) $important
-
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        top: 100% $important
-        bottom: auto $important
-        left: 50% $important
-        right: auto $important
-        border-color: transparent transparent rgba($tooltip-background-color, 0.9) transparent $important
-    &::before
-      transform: translate(-50%, 0.5rem) $important
-
-=left($important: null)
-  &::before
-    top: auto $important
-    bottom: 50% $important
-    left: auto $important
-    right: 100% $important
-    transform: translate(1rem, 50%) $important
-
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        top: 50% $important
-        bottom: auto $important
-        left: auto $important
-        right: calc(100% - .5rem) $important
-        border-color: transparent transparent transparent rgba($tooltip-background-color, 0.9) $important
-    &::before
-      transform: translate(-0.5rem, 50%) $important
-
-=direction($direction)
-  @if $direction == 'top'
-    @include top(!important)
-  @else if $direction == 'right'
-    @include right(!important)
-  @else if $direction == 'bottom'
-    @include bottom(!important)
-  @else if $direction == 'left'
-    @include left(!important)
+=tooltip-hover
+	&:focus::before,
+	&:focus::after,
+	&:hover::before,
+	&:hover::after,
+	&.has-tooltip-active::before,
+	&.has-tooltip-active::after
+		@content
+
+=tooltip-arrow-top
+	&::after
+		top: 0
+		right: auto
+		bottom: auto
+		left: 50%
+		margin-top: $tooltip-arrow-size * -1 + 1
+		margin-right: auto
+		margin-bottom: auto
+		margin-left: $tooltip-arrow-size * -1 + 1
+		border-color: rgba($tooltip-background-color, $tooltip-background-opacity) transparent transparent transparent
+
+=tooltip-box-top
+	&::before
+		top: 0
+		right: auto
+		bottom: auto
+		left: 50%
+		top: 0
+		margin-top: $tooltip-arrow-size * -1 + 1
+		margin-bottom: auto
+		transform: translate(-50%, -100%)
+
+=tooltip-top
+	+tooltip-arrow-top
+	+tooltip-box-top
+
+=tooltip-arrow-bottom
+	&::after
+		top: auto
+		right: auto
+		bottom: 0
+		left: 50%
+		margin-top: auto
+		margin-right: auto
+		margin-bottom: $tooltip-arrow-size * -1 + 1
+		margin-left: $tooltip-arrow-size * -1 + 1
+		border-color: transparent transparent rgba($tooltip-background-color, $tooltip-background-opacity) transparent
+
+=tooltip-box-bottom
+	&::before
+		top: auto
+		right: auto
+		bottom: 0
+		left: 50%
+		margin-top: auto
+		margin-bottom: $tooltip-arrow-size * -1 + 1
+		transform: translate(-50%, 100%)
+
+=tooltip-bottom
+	+tooltip-arrow-bottom
+	+tooltip-box-bottom
+
+
+=tooltip-arrow-left
+	&::after
+		top: auto
+		right: auto
+		bottom: 50%
+		left: 0
+		margin-top: auto
+		margin-right: auto
+		margin-bottom: $tooltip-arrow-size * -1
+		margin-left: $tooltip-arrow-size * -2 + 1
+		border-color: transparent transparent transparent rgba($tooltip-background-color, $tooltip-background-opacity)
+
+=tooltip-box-left
+	&::before
+		top: auto
+		right: auto
+		bottom: 50%
+		left: $tooltip-arrow-size * -2 + 1
+		transform: translate(-100%, 50%)
+
+=tooltip-left
+	+tooltip-arrow-left
+	+tooltip-box-left
+
+
+=tooltip-arrow-right
+	&::after
+		top: auto
+		right: 0
+		bottom: 50%
+		left: auto
+		margin-top: auto
+		margin-right: $tooltip-arrow-size * -2 + 1
+		margin-bottom: $tooltip-arrow-size * -1
+		margin-left: auto
+		border-color: transparent rgba($tooltip-background-color, $tooltip-background-opacity) transparent transparent
+
+=tooltip-box-right
+	&::before
+		top: auto
+		right: $tooltip-arrow-size * -2 + 1
+		bottom: 50%
+		left: auto
+		margin-top: auto
+		transform: translate(100%, 50%)
+
+=tooltip-right
+	+tooltip-arrow-right
+	+tooltip-box-right
+
+
+=tooltip-direction($direction)
+	@if $direction == 'top'
+		@include tooltip-top
+	@else if $direction == 'right'
+		@include tooltip-right
+	@else if $direction == 'bottom'
+		@include tooltip-bottom
+	@else if $direction == 'left'
+		@include tooltip-left

+ 88 - 81
node_modules/bulma-tooltip/src/sass/index.sass

@@ -1,93 +1,100 @@
+@import 'variables'
 @import 'position'
+@import 'animation'
 
-$tooltip-background-color: $grey-dark !default
-$tooltip-background-opacity: 0.9 !default
-$tooltip-max-width: 24rem !default
+=tooltip-arrow
+	&::after
+		content: ''
+		border-style: solid
+		border-width: $tooltip-arrow-size
+		border-color: rgba($tooltip-background-color, $tooltip-background-opacity) transparent transparent transparent
+		margin-bottom: $tooltip-arrow-size * -1 + 1
+	+tooltip-arrow-top
 
-.tooltip
-  position: relative
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        z-index: 99999
-        position: absolute
-        display: inline-block
-        pointer-events: none
-    &::before
-      z-index: 99999
-      position: absolute
-      display: inline-block
-      pointer-events: none
-    &:not(.is-loading)
-      &::after
-        content: ""
-        border-style: solid
-        border-width: .5rem
-    &::before
-      opacity: 0
-      content: attr(data-tooltip)
-      overflow: hidden
-      white-space: nowrap
-      text-overflow: ellipsis
-      font-size: $size-7
-      padding: .4rem .8rem
-      background: rgba($tooltip-background-color, $tooltip-background-opacity)
-      border-radius: $radius
-      color: $white
-      max-width: $tooltip-max-width
+=tooltip-box
+	&::before
+		background: rgba($tooltip-background-color, $tooltip-background-opacity)
+		border-radius: $tooltip-radius
+		content: attr(data-tooltip)
+		padding: $tooltip-padding
+		text-overflow: ellipsis
+		white-space: pre
+	+tooltip-box-top
 
-  &:focus,
-  &:hover,
-  &.is-tooltip-active
-    &:not(.is-loading)
-      &::after
-        opacity: 1
-        margin-left: -.5rem
-        margin-top: -.5rem
+=tooltip-multiline
+	&::before
+		height: auto
+		width: $tooltip-max-width
+		max-width: $tooltip-max-width
+		text-overflow: clip
+		white-space: normal
+		word-break: keep-all
 
-    &::before
-      opacity: 1
+[data-tooltip]
+	&:not(.is-loading),
+	&:not(.is-disabled),
+	&:not([disabled])
+		cursor: pointer
+		overflow: visible
+		position: relative
 
-  +top
+		&::before,
+		&::after
+			box-sizing: border-box
+			color: $tooltip-color
+			display: inline-block
+			font-family: $tooltip-font-family
+			font-size: $tooltip-font-size
+			hyphens: auto
+			opacity: 0
+			overflow: hidden
+			pointer-events: none
+			position: absolute
+			visibility: hidden
+			z-index: $tooltip-z-index
+	
+		+tooltip-arrow
+		+tooltip-box
 
-  &.is-tooltip-right
-    +right
+		&.has-tooltip-bottom
+			+tooltip-direction('bottom')
 
-  &.is-tooltip-bottom
-    +bottom
+		&.has-tooltip-left
+			+tooltip-direction('left')
 
-  &.is-tooltip-left
-    +left
+		&.has-tooltip-right
+			+tooltip-direction('right')
 
-  &.is-tooltip-multiline
-    &::before
-      min-width: $tooltip-max-width
-      text-overflow: clip
-      white-space: normal
-      word-break: keep-all
+		&.has-tooltip-multiline
+			+tooltip-multiline
 
-  @each $name, $pair in $colors
-    $color: nth($pair, 1)
-    $color-invert: nth($pair, 2)
-    &.is-tooltip-#{$name}
-      &:not(.is-loading)
-        &::after
-          border-color: rgba($color, $tooltip-background-opacity) transparent transparent transparent
-      &.is-tooltip-right
-        &:not(.is-loading)
-          &::after
-            border-color: transparent rgba($color, $tooltip-background-opacity) transparent transparent
-      &.is-tooltip-bottom
-        &:not(.is-loading)
-          &::after
-            border-color: transparent transparent rgba($color, $tooltip-background-opacity) transparent
-      &.is-tooltip-left
-        &:not(.is-loading)
-          &::after
-            border-color: transparent transparent transparent rgba($color, $tooltip-background-opacity)
-      &::before
-        background: rgba($color, $tooltip-background-opacity)
-        color: $color-invert
+		@each $name, $pair in $colors
+			$color: nth($pair, 1)
+			$color-invert: nth($pair, 2)
+			&.has-tooltip-#{$name}
+				&.has-tooltip-bottom
+					&::after
+						border-color: transparent transparent rgba($color, $tooltip-background-opacity) transparent
+				&.has-tooltip-left
+					&::after
+						border-color: transparent transparent transparent rgba($color, $tooltip-background-opacity)
+				&.has-tooltip-right
+					&::after
+						border-color: transparent rgba($color, $tooltip-background-opacity) transparent transparent
+				&:not(.has-tooltip-bottom),
+				&:not(.has-tooltip-left),
+				&:not(.has-tooltip-right)
+					&::after
+						border-color: rgba($color, $tooltip-background-opacity) transparent transparent transparent
+				&:before
+					background-color: rgba($color, $tooltip-background-opacity)
+					color: $color-invert
 
-@import 'dispatcher'
+		+tooltip-hover
+			opacity: 1
+			visibility: visible
+
+		&.has-tooltip-fade
+			+tooltip-fade
+
+@import 'responsiveness'

+ 7 - 7
package-lock.json

@@ -9,7 +9,7 @@
       "license": "ISC",
       "dependencies": {
         "bulma": "^0.9.2",
-        "bulma-tooltip": "^2.0.2",
+        "bulma-tooltip": "^3.0.2",
         "marked": "^2.0.1"
       }
     },
@@ -19,9 +19,9 @@
       "integrity": "sha512-e14EF+3VSZ488yL/lJH0tR8mFWiEQVCMi/BQUMi2TGMBOk+zrDg4wryuwm/+dRSHJw0gMawp2tsW7X1JYUCE3A=="
     },
     "node_modules/bulma-tooltip": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/bulma-tooltip/-/bulma-tooltip-2.0.2.tgz",
-      "integrity": "sha512-xsqWeWV7tsUn3uH04SqJeP7/CyC1RaDVIyVzr4/sIO3friIIOi7L6jc5g7qUwDxuBQl72yH/yRPuefpXoQ4hWg=="
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/bulma-tooltip/-/bulma-tooltip-3.0.2.tgz",
+      "integrity": "sha512-CsT3APjhlZScskFg38n8HYL8oYNUHQtcu4sz6ERarxkUpBRbk9v0h/5KAvXeKapVSn2dp9l7bOGit5SECP8EWQ=="
     },
     "node_modules/marked": {
       "version": "2.0.1",
@@ -42,9 +42,9 @@
       "integrity": "sha512-e14EF+3VSZ488yL/lJH0tR8mFWiEQVCMi/BQUMi2TGMBOk+zrDg4wryuwm/+dRSHJw0gMawp2tsW7X1JYUCE3A=="
     },
     "bulma-tooltip": {
-      "version": "2.0.2",
-      "resolved": "https://registry.npmjs.org/bulma-tooltip/-/bulma-tooltip-2.0.2.tgz",
-      "integrity": "sha512-xsqWeWV7tsUn3uH04SqJeP7/CyC1RaDVIyVzr4/sIO3friIIOi7L6jc5g7qUwDxuBQl72yH/yRPuefpXoQ4hWg=="
+      "version": "3.0.2",
+      "resolved": "https://registry.npmjs.org/bulma-tooltip/-/bulma-tooltip-3.0.2.tgz",
+      "integrity": "sha512-CsT3APjhlZScskFg38n8HYL8oYNUHQtcu4sz6ERarxkUpBRbk9v0h/5KAvXeKapVSn2dp9l7bOGit5SECP8EWQ=="
     },
     "marked": {
       "version": "2.0.1",

+ 1 - 1
package.json

@@ -10,7 +10,7 @@
   "license": "ISC",
   "dependencies": {
     "bulma": "^0.9.2",
-    "bulma-tooltip": "^2.0.2",
+    "bulma-tooltip": "^3.0.2",
     "marked": "^2.0.1"
   }
 }

Daži faili netika attēloti, jo izmaiņu fails ir pārāk liels