@vaadin/input-container 23.1.0-alpha2 → 23.1.0-beta1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/input-container",
3
- "version": "23.1.0-alpha2",
3
+ "version": "23.1.0-beta1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,16 +32,16 @@
32
32
  ],
33
33
  "dependencies": {
34
34
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/component-base": "23.1.0-alpha2",
36
- "@vaadin/vaadin-lumo-styles": "23.1.0-alpha2",
37
- "@vaadin/vaadin-material-styles": "23.1.0-alpha2",
38
- "@vaadin/vaadin-themable-mixin": "23.1.0-alpha2"
35
+ "@vaadin/component-base": "23.1.0-beta1",
36
+ "@vaadin/vaadin-lumo-styles": "23.1.0-beta1",
37
+ "@vaadin/vaadin-material-styles": "23.1.0-beta1",
38
+ "@vaadin/vaadin-themable-mixin": "23.1.0-beta1"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@esm-bundle/chai": "^4.3.4",
42
- "@vaadin/icon": "23.1.0-alpha2",
43
- "@vaadin/icons": "23.1.0-alpha2",
42
+ "@vaadin/icon": "23.1.0-beta1",
43
+ "@vaadin/icons": "23.1.0-beta1",
44
44
  "@vaadin/testing-helpers": "^0.3.2"
45
45
  },
46
- "gitHead": "6842dcb8b163d4512fae8d3d12a6559077a4aee6"
46
+ "gitHead": "8be43cf83102a6b9ccf309687446e590ce0164e8"
47
47
  }
@@ -76,7 +76,7 @@ export class InputContainer extends ThemableMixin(DirMixin(PolymerElement)) {
76
76
  */
77
77
  disabled: {
78
78
  type: Boolean,
79
- reflectToAttribute: true
79
+ reflectToAttribute: true,
80
80
  },
81
81
 
82
82
  /**
@@ -84,7 +84,7 @@ export class InputContainer extends ThemableMixin(DirMixin(PolymerElement)) {
84
84
  */
85
85
  readonly: {
86
86
  type: Boolean,
87
- reflectToAttribute: true
87
+ reflectToAttribute: true,
88
88
  },
89
89
 
90
90
  /**
@@ -92,8 +92,8 @@ export class InputContainer extends ThemableMixin(DirMixin(PolymerElement)) {
92
92
  */
93
93
  invalid: {
94
94
  type: Boolean,
95
- reflectToAttribute: true
96
- }
95
+ reflectToAttribute: true,
96
+ },
97
97
  };
98
98
  }
99
99
 
@@ -131,6 +131,10 @@ registerStyles(
131
131
  }
132
132
 
133
133
  /* RTL specific styles */
134
+ :host([dir='rtl'])::after {
135
+ transform-origin: 0% 0;
136
+ }
137
+
134
138
  :host([theme~='align-left'][dir='rtl']) ::slotted(:not([slot$='fix'])) {
135
139
  --_lumo-text-field-overflow-mask-image: none;
136
140
  }
@@ -157,5 +161,5 @@ registerStyles(
157
161
  }
158
162
  }
159
163
  `,
160
- { moduleId: 'lumo-input-container' }
164
+ { moduleId: 'lumo-input-container' },
161
165
  );
@@ -74,5 +74,5 @@ registerStyles(
74
74
  transition: transform 0.175s, opacity 0.175s;
75
75
  }
76
76
  `,
77
- { moduleId: 'material-input-container' }
77
+ { moduleId: 'material-input-container' },
78
78
  );