@vaadin/slider 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.
@@ -544,6 +544,13 @@
544
544
  "module": "src/vaadin-slider-mixin.js"
545
545
  }
546
546
  },
547
+ {
548
+ "type": {
549
+ "text": "string"
550
+ },
551
+ "description": "The theme variants to apply to the component.",
552
+ "name": "theme"
553
+ },
547
554
  {
548
555
  "name": "value",
549
556
  "type": {
@@ -1278,6 +1285,13 @@
1278
1285
  "module": "src/vaadin-slider-mixin.js"
1279
1286
  }
1280
1287
  },
1288
+ {
1289
+ "type": {
1290
+ "text": "string"
1291
+ },
1292
+ "description": "The theme variants to apply to the component.",
1293
+ "name": "theme"
1294
+ },
1281
1295
  {
1282
1296
  "name": "value",
1283
1297
  "type": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/slider",
3
- "version": "25.3.0-alpha7",
3
+ "version": "25.3.0-dev.1fa5a51482",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,24 +35,24 @@
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/field-base": "25.3.0-alpha7",
41
- "@vaadin/overlay": "25.3.0-alpha7",
42
- "@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/field-base": "25.3.0-dev.1fa5a51482",
41
+ "@vaadin/overlay": "25.3.0-dev.1fa5a51482",
42
+ "@vaadin/vaadin-themable-mixin": "25.3.0-dev.1fa5a51482",
43
43
  "lit": "^3.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@vaadin/aura": "25.3.0-alpha7",
47
- "@vaadin/chai-plugins": "25.3.0-alpha7",
48
- "@vaadin/test-runner-commands": "25.3.0-alpha7",
46
+ "@vaadin/aura": "25.3.0-dev.1fa5a51482",
47
+ "@vaadin/chai-plugins": "25.3.0-dev.1fa5a51482",
48
+ "@vaadin/test-runner-commands": "25.3.0-dev.1fa5a51482",
49
49
  "@vaadin/testing-helpers": "^2.0.0",
50
- "@vaadin/vaadin-lumo-styles": "25.3.0-alpha7"
50
+ "@vaadin/vaadin-lumo-styles": "25.3.0-dev.1fa5a51482"
51
51
  },
52
52
  "customElements": "custom-elements.json",
53
53
  "web-types": [
54
54
  "web-types.json",
55
55
  "web-types.lit.json"
56
56
  ],
57
- "gitHead": "ae7b9823df5598faebd7a482993029ee489c35ae"
57
+ "gitHead": "1cd5964b758ffbce3ddb6248a1997f55f8e0ebf6"
58
58
  }
@@ -123,6 +123,7 @@ import { SliderMixin } from './vaadin-slider-mixin.js';
123
123
  * @fires {CustomEvent} value-changed - Fired when the `value` property changes.
124
124
  * @fires {CustomEvent} validated - Fired whenever the field is validated.
125
125
  *
126
+ * @attr {string} theme - The theme variants to apply to the component.
126
127
  * @customElement vaadin-range-slider
127
128
  * @extends HTMLElement
128
129
  */
@@ -16,6 +16,7 @@ import { sliderBubbleOverlayStyles } from './styles/vaadin-slider-bubble-overlay
16
16
  /**
17
17
  * An element used internally by `<vaadin-slider>`. Not intended to be used separately.
18
18
  *
19
+ * @attr {string} theme - The theme variants to apply to the component.
19
20
  * @customElement vaadin-slider-bubble-overlay
20
21
  * @extends HTMLElement
21
22
  * @private
@@ -13,6 +13,7 @@ import { ThemePropertyMixin } from '@vaadin/vaadin-themable-mixin/vaadin-theme-p
13
13
  /**
14
14
  * An element used internally by `<vaadin-slider>`. Not intended to be used separately.
15
15
  *
16
+ * @attr {string} theme - The theme variants to apply to the component.
16
17
  * @customElement vaadin-slider-bubble
17
18
  * @extends HTMLElement
18
19
  * @private
@@ -118,6 +118,7 @@ import { SliderMixin } from './vaadin-slider-mixin.js';
118
118
  * @fires {CustomEvent} value-changed - Fired when the `value` property changes.
119
119
  * @fires {CustomEvent} validated - Fired whenever the field is validated.
120
120
  *
121
+ * @attr {string} theme - The theme variants to apply to the component.
121
122
  * @customElement vaadin-slider
122
123
  * @extends HTMLElement
123
124
  */
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/slider",
4
- "version": "25.3.0-alpha7",
4
+ "version": "25.3.0-dev.1fa5a51482",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -159,9 +159,7 @@
159
159
  "description": "The theme variants to apply to the component.",
160
160
  "value": {
161
161
  "type": [
162
- "string",
163
- "null",
164
- "undefined"
162
+ "string"
165
163
  ]
166
164
  }
167
165
  },
@@ -499,9 +497,7 @@
499
497
  "description": "The theme variants to apply to the component.",
500
498
  "value": {
501
499
  "type": [
502
- "string",
503
- "null",
504
- "undefined"
500
+ "string"
505
501
  ]
506
502
  }
507
503
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/slider",
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": {