@vaadin/password-field 22.0.14 → 22.0.17

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/password-field",
3
- "version": "22.0.14",
3
+ "version": "22.0.17",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,14 +32,14 @@
32
32
  ],
33
33
  "dependencies": {
34
34
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/text-field": "^22.0.14",
36
- "@vaadin/vaadin-lumo-styles": "^22.0.14",
37
- "@vaadin/vaadin-material-styles": "^22.0.14"
35
+ "@vaadin/text-field": "^22.0.17",
36
+ "@vaadin/vaadin-lumo-styles": "^22.0.17",
37
+ "@vaadin/vaadin-material-styles": "^22.0.17"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@esm-bundle/chai": "^4.3.4",
41
41
  "@vaadin/testing-helpers": "^0.3.2",
42
42
  "sinon": "^9.2.1"
43
43
  },
44
- "gitHead": "62419e3f8f41fe9dc4f0bce5e1717b16828459b6"
44
+ "gitHead": "4ba77c19889036fb954052cf1f32bc96089fcc25"
45
45
  }
@@ -85,13 +85,13 @@ declare class PasswordField extends SlotStylesMixin(SlotMixin(TextField)) {
85
85
  addEventListener<K extends keyof PasswordFieldEventMap>(
86
86
  type: K,
87
87
  listener: (this: PasswordField, ev: PasswordFieldEventMap[K]) => void,
88
- options?: boolean | AddEventListenerOptions
88
+ options?: boolean | AddEventListenerOptions,
89
89
  ): void;
90
90
 
91
91
  removeEventListener<K extends keyof PasswordFieldEventMap>(
92
92
  type: K,
93
93
  listener: (this: PasswordField, ev: PasswordFieldEventMap[K]) => void,
94
- options?: boolean | EventListenerOptions
94
+ options?: boolean | EventListenerOptions,
95
95
  ): void;
96
96
  }
97
97
 
@@ -80,7 +80,7 @@ export class PasswordField extends SlotStylesMixin(SlotMixin(TextField)) {
80
80
  revealButtonHidden: {
81
81
  type: Boolean,
82
82
  observer: '_revealButtonHiddenChanged',
83
- value: false
83
+ value: false,
84
84
  },
85
85
 
86
86
  /**
@@ -92,7 +92,7 @@ export class PasswordField extends SlotStylesMixin(SlotMixin(TextField)) {
92
92
  value: false,
93
93
  reflectToAttribute: true,
94
94
  observer: '_passwordVisibleChanged',
95
- readOnly: true
95
+ readOnly: true,
96
96
  },
97
97
 
98
98
  /**
@@ -110,10 +110,10 @@ export class PasswordField extends SlotStylesMixin(SlotMixin(TextField)) {
110
110
  type: Object,
111
111
  value: () => {
112
112
  return {
113
- reveal: 'Show password'
113
+ reveal: 'Show password',
114
114
  };
115
- }
116
- }
115
+ },
116
+ },
117
117
  };
118
118
  }
119
119
 
@@ -130,7 +130,7 @@ export class PasswordField extends SlotStylesMixin(SlotMixin(TextField)) {
130
130
  btn.setAttribute('type', 'button');
131
131
  btn.disabled = this.disabled;
132
132
  return btn;
133
- }
133
+ },
134
134
  };
135
135
  }
136
136
 
@@ -142,7 +142,7 @@ export class PasswordField extends SlotStylesMixin(SlotMixin(TextField)) {
142
142
  ${tag} [slot="input"]::-ms-reveal {
143
143
  display: none;
144
144
  }
145
- `
145
+ `,
146
146
  ];
147
147
  }
148
148