@appsurify-testmap/rrdom 3.10.0-alpha.1 → 3.11.0-alpha.1

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/dist/rrdom.cjs CHANGED
@@ -188,6 +188,29 @@ try {
188
188
  }
189
189
  } catch (error) {
190
190
  }
191
+ const ht = {
192
+ id: "i",
193
+ "data-testid": "tid",
194
+ "data-qa": "qa",
195
+ "data-cy": "cy",
196
+ "data-test": "dt",
197
+ "aria-label": "al",
198
+ "aria-labelledby": "alb",
199
+ "aria-describedby": "adb",
200
+ name: "n",
201
+ href: "h",
202
+ src: "s",
203
+ type: "t",
204
+ role: "r",
205
+ alt: "at",
206
+ title: "tt",
207
+ for: "f",
208
+ placeholder: "ph",
209
+ text: "x"
210
+ };
211
+ Object.fromEntries(
212
+ Object.entries(ht).map(([r, t]) => [t, r])
213
+ );
191
214
  function getDefaultExportFromCjs(x2) {
192
215
  return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2;
193
216
  }