@vaadin/tooltip 25.3.0-alpha7 → 25.3.0-dev.1fa5a51482

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -718,30 +718,6 @@
718
718
  }
719
719
  }
720
720
  ],
721
- "mixins": [
722
- {
723
- "name": "TooltipMixin",
724
- "module": "src/vaadin-tooltip-mixin.js"
725
- },
726
- {
727
- "name": "ThemePropertyMixin",
728
- "package": "@vaadin/vaadin-themable-mixin/vaadin-theme-property-mixin.js"
729
- },
730
- {
731
- "name": "ElementMixin",
732
- "package": "@vaadin/component-base/src/element-mixin.js"
733
- },
734
- {
735
- "name": "PolylitMixin",
736
- "package": "@vaadin/component-base/src/polylit-mixin.js"
737
- }
738
- ],
739
- "superclass": {
740
- "name": "LitElement",
741
- "package": "lit"
742
- },
743
- "tagName": "vaadin-tooltip",
744
- "customElement": true,
745
721
  "attributes": [
746
722
  {
747
723
  "name": "aria-link-mode",
@@ -862,8 +838,39 @@
862
838
  "name": "TooltipMixin",
863
839
  "module": "src/vaadin-tooltip-mixin.js"
864
840
  }
841
+ },
842
+ {
843
+ "type": {
844
+ "text": "string"
845
+ },
846
+ "description": "The theme variants to apply to the component.",
847
+ "name": "theme"
865
848
  }
866
- ]
849
+ ],
850
+ "mixins": [
851
+ {
852
+ "name": "TooltipMixin",
853
+ "module": "src/vaadin-tooltip-mixin.js"
854
+ },
855
+ {
856
+ "name": "ThemePropertyMixin",
857
+ "package": "@vaadin/vaadin-themable-mixin/vaadin-theme-property-mixin.js"
858
+ },
859
+ {
860
+ "name": "ElementMixin",
861
+ "package": "@vaadin/component-base/src/element-mixin.js"
862
+ },
863
+ {
864
+ "name": "PolylitMixin",
865
+ "package": "@vaadin/component-base/src/polylit-mixin.js"
866
+ }
867
+ ],
868
+ "superclass": {
869
+ "name": "LitElement",
870
+ "package": "lit"
871
+ },
872
+ "tagName": "vaadin-tooltip",
873
+ "customElement": true
867
874
  }
868
875
  ],
869
876
  "exports": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/tooltip",
3
- "version": "25.3.0-alpha7",
3
+ "version": "25.3.0-dev.1fa5a51482",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,20 +35,20 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.3.0-alpha7",
39
- "@vaadin/component-base": "25.3.0-alpha7",
40
- "@vaadin/markdown": "25.3.0-alpha7",
41
- "@vaadin/overlay": "25.3.0-alpha7",
42
- "@vaadin/popover": "25.3.0-alpha7",
43
- "@vaadin/vaadin-themable-mixin": "25.3.0-alpha7",
38
+ "@vaadin/a11y-base": "25.3.0-dev.1fa5a51482",
39
+ "@vaadin/component-base": "25.3.0-dev.1fa5a51482",
40
+ "@vaadin/markdown": "25.3.0-dev.1fa5a51482",
41
+ "@vaadin/overlay": "25.3.0-dev.1fa5a51482",
42
+ "@vaadin/popover": "25.3.0-dev.1fa5a51482",
43
+ "@vaadin/vaadin-themable-mixin": "25.3.0-dev.1fa5a51482",
44
44
  "lit": "^3.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@vaadin/aura": "25.3.0-alpha7",
48
- "@vaadin/chai-plugins": "25.3.0-alpha7",
49
- "@vaadin/test-runner-commands": "25.3.0-alpha7",
47
+ "@vaadin/aura": "25.3.0-dev.1fa5a51482",
48
+ "@vaadin/chai-plugins": "25.3.0-dev.1fa5a51482",
49
+ "@vaadin/test-runner-commands": "25.3.0-dev.1fa5a51482",
50
50
  "@vaadin/testing-helpers": "^2.0.0",
51
- "@vaadin/vaadin-lumo-styles": "25.3.0-alpha7",
51
+ "@vaadin/vaadin-lumo-styles": "25.3.0-dev.1fa5a51482",
52
52
  "sinon": "^22.0.0"
53
53
  },
54
54
  "customElements": "custom-elements.json",
@@ -56,5 +56,5 @@
56
56
  "web-types.json",
57
57
  "web-types.lit.json"
58
58
  ],
59
- "gitHead": "ae7b9823df5598faebd7a482993029ee489c35ae"
59
+ "gitHead": "1cd5964b758ffbce3ddb6248a1997f55f8e0ebf6"
60
60
  }
@@ -16,6 +16,7 @@ import { tooltipOverlayStyles } from './styles/vaadin-tooltip-overlay-base-style
16
16
  /**
17
17
  * An element used internally by `<vaadin-tooltip>`. Not intended to be used separately.
18
18
  *
19
+ * @attr {string} theme - The theme variants to apply to the component.
19
20
  * @customElement vaadin-tooltip-overlay
20
21
  * @extends HTMLElement
21
22
  * @private
@@ -73,6 +73,7 @@ import { TooltipMixin } from './vaadin-tooltip-mixin.js';
73
73
  *
74
74
  * @fires {CustomEvent} content-changed - Fired when the tooltip text content is changed.
75
75
  *
76
+ * @attr {string} theme - The theme variants to apply to the component.
76
77
  * @customElement vaadin-tooltip
77
78
  * @extends HTMLElement
78
79
  */
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/tooltip",
4
- "version": "25.3.0-alpha7",
4
+ "version": "25.3.0-dev.1fa5a51482",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -105,9 +105,7 @@
105
105
  "description": "The theme variants to apply to the component.",
106
106
  "value": {
107
107
  "type": [
108
- "string",
109
- "null",
110
- "undefined"
108
+ "string"
111
109
  ]
112
110
  }
113
111
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/tooltip",
4
- "version": "25.3.0-alpha7",
4
+ "version": "25.3.0-dev.1fa5a51482",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {