@vonage/vivid-test-utils 5.3.0 → 5.4.0

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.
@@ -1706,7 +1706,9 @@ export declare class RichTextEditorExpectations<D extends DriverT> {
1706
1706
  type SearchableSelectProps = {
1707
1707
  appearance: 'fieldset' | 'ghost';
1708
1708
  clearable: boolean;
1709
+ deselectAllText: string;
1709
1710
  disabled: boolean;
1711
+ enableSelectAll: boolean;
1710
1712
  errorText: string;
1711
1713
  externalTags: boolean;
1712
1714
  fixedDropdown: boolean;
@@ -1724,6 +1726,7 @@ type SearchableSelectProps = {
1724
1726
  optionFilter: any;
1725
1727
  placeholder: string;
1726
1728
  required: boolean;
1729
+ selectAllText: string;
1727
1730
  shape: 'rounded' | 'pill';
1728
1731
  successText: string;
1729
1732
  value: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vonage/vivid-test-utils",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./dom": {
@@ -42,15 +42,21 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "@testing-library/user-event": "^14.6.1",
45
- "@vonage/vivid": "^5.3.0"
45
+ "@vonage/vivid": "^5.4.0"
46
46
  },
47
47
  "devDependencies": {
48
+ "@playwright/test": "1.48.2",
48
49
  "@repo/eslint-config": "*",
50
+ "@repo/shared": "*",
49
51
  "@repo/typescript-config": "*",
50
52
  "@repo/vitest-config": "*",
51
53
  "@vonage/vivid-vue": "*",
54
+ "@vitejs/plugin-vue": "^5.2.1",
52
55
  "@vue/test-utils": "^2",
56
+ "concurrently": "^9.2.0",
53
57
  "cypress": "^14.5.1",
54
- "vue": "^3"
58
+ "vue": "^3",
59
+ "vitest": "^2.1.8",
60
+ "wait-on": "^8.0.5"
55
61
  }
56
62
  }