@aurora-ds/components 0.19.1 → 0.19.2

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.
@@ -11,7 +11,7 @@ export type SelectProps = {
11
11
  /**
12
12
  * Callback when selection changes
13
13
  */
14
- onChange: (value: string | number) => void;
14
+ onChange: (value: string | number | null) => void;
15
15
  /**
16
16
  * Label displayed above the select
17
17
  */
@@ -11,7 +11,7 @@ export type SelectProps = {
11
11
  /**
12
12
  * Callback when selection changes
13
13
  */
14
- onChange: (value: string | number) => void;
14
+ onChange: (value: string | number | null) => void;
15
15
  /**
16
16
  * Label displayed above the select
17
17
  */
package/dist/index.d.ts CHANGED
@@ -425,7 +425,7 @@ type SelectProps = {
425
425
  /**
426
426
  * Callback when selection changes
427
427
  */
428
- onChange: (value: string | number) => void;
428
+ onChange: (value: string | number | null) => void;
429
429
  /**
430
430
  * Label displayed above the select
431
431
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurora-ds/components",
3
- "version": "0.19.1",
3
+ "version": "0.19.2",
4
4
  "type": "module",
5
5
  "description": "Aurora DS - React Components Library",
6
6
  "main": "dist/cjs/index.js",
@@ -17,7 +17,7 @@
17
17
  "test": "vitest run",
18
18
  "test:watch": "vitest",
19
19
  "prepublishOnly": "yarn build",
20
- "publish": "npm publish --access public"
20
+ "publish": "publish --access public"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "@aurora-ds/theme": "^1.5.0",