@salutejs/sdds-api-tests 0.2.0 → 0.2.1-canary.2655.24233971146.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salutejs/sdds-api-tests",
3
- "version": "0.2.0",
3
+ "version": "0.2.1-canary.2655.24233971146.0",
4
4
  "description": "API tests for components",
5
5
  "author": "Salute Frontend Team <salute.developers@gmail.com>",
6
6
  "license": "MIT",
@@ -13,19 +13,19 @@
13
13
  "test": "rm -rf tests && node script.mjs && vitest run --config ./vitest.config.ts"
14
14
  },
15
15
  "devDependencies": {
16
- "@salutejs/plasma-b2c": "1.613.0",
17
- "@salutejs/plasma-giga": "0.340.0",
18
- "@salutejs/plasma-icons": "1.234.0",
19
- "@salutejs/plasma-web": "1.615.0",
20
- "@salutejs/sdds-bizcom": "0.345.0",
21
- "@salutejs/sdds-cs": "0.349.0",
22
- "@salutejs/sdds-dfa": "0.343.0",
23
- "@salutejs/sdds-finai": "0.336.0",
24
- "@salutejs/sdds-insol": "0.340.0",
25
- "@salutejs/sdds-netology": "0.344.0",
26
- "@salutejs/sdds-platform-ai": "0.344.0",
27
- "@salutejs/sdds-scan": "0.343.0",
28
- "@salutejs/sdds-serv": "0.344.0",
16
+ "@salutejs/plasma-b2c": "1.613.1-canary.2655.24233971146.0",
17
+ "@salutejs/plasma-giga": "0.340.1-canary.2655.24233971146.0",
18
+ "@salutejs/plasma-icons": "1.234.1-canary.2655.24233971146.0",
19
+ "@salutejs/plasma-web": "1.615.1-canary.2655.24233971146.0",
20
+ "@salutejs/sdds-bizcom": "0.345.1-canary.2655.24233971146.0",
21
+ "@salutejs/sdds-cs": "0.349.1-canary.2655.24233971146.0",
22
+ "@salutejs/sdds-dfa": "0.343.1-canary.2655.24233971146.0",
23
+ "@salutejs/sdds-finai": "0.336.1-canary.2655.24233971146.0",
24
+ "@salutejs/sdds-insol": "0.340.1-canary.2655.24233971146.0",
25
+ "@salutejs/sdds-netology": "0.344.1-canary.2655.24233971146.0",
26
+ "@salutejs/sdds-platform-ai": "0.344.1-canary.2655.24233971146.0",
27
+ "@salutejs/sdds-scan": "0.343.1-canary.2655.24233971146.0",
28
+ "@salutejs/sdds-serv": "0.344.1-canary.2655.24233971146.0",
29
29
  "@types/react": "18.0.28",
30
30
  "@types/react-dom": "18.0.11",
31
31
  "react": "18.2.0",
@@ -34,5 +34,5 @@
34
34
  "publishConfig": {
35
35
  "access": "public"
36
36
  },
37
- "gitHead": "3cdbc596bd9ed805f8633fbd715d34ab85dd6180"
37
+ "gitHead": "81f03743c631c32df1ad58060a1842bb72d55d50"
38
38
  }
@@ -211,6 +211,7 @@ describe('Basics', () => {
211
211
  expectTypeOf<ComboboxProps>().toHaveProperty('placeholder').toEqualTypeOf<string | undefined>();
212
212
  expectTypeOf<ComboboxProps>().toHaveProperty('aria-label').toEqualTypeOf<string | undefined>();
213
213
  expectTypeOf<ComboboxProps>().toHaveProperty('role').toEqualTypeOf<AriaRole | undefined>();
214
+ expectTypeOf<ComboboxProps>().toHaveProperty('autoComplete').toEqualTypeOf<string | undefined>();
214
215
  });
215
216
  });
216
217