@dt-dds/react-dropdown 1.0.0-beta.83 → 1.0.0-beta.85

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/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @dt-ui/react-dropdown
2
2
 
3
+ ## 1.0.0-beta.85
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [223664b]
8
+ - @dt-dds/react-box@1.0.0-beta.64
9
+
10
+ ## 1.0.0-beta.84
11
+
12
+ ### Patch Changes
13
+
14
+ - refactor: add anchor props to dropdown option
15
+ - Updated dependencies [223664b]
16
+ - @dt-dds/react-box@1.0.0-beta.63
17
+
3
18
  ## 1.0.0-beta.83
4
19
 
5
20
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { CustomTheme } from '@dt-dds/themes';
2
2
  import * as react from 'react';
3
- import { HTMLAttributes, ElementType, MouseEvent, RefObject } from 'react';
3
+ import { AnchorHTMLAttributes, ElementType, MouseEvent, HTMLAttributes, RefObject } from 'react';
4
4
  import { BaseProps } from '@dt-dds/react-core';
5
5
 
6
- interface DropdownOptionProps extends BaseProps, Omit<HTMLAttributes<HTMLElement>, 'onClick'> {
6
+ interface DropdownOptionProps extends BaseProps, Omit<AnchorHTMLAttributes<HTMLElement>, 'onClick'> {
7
7
  isDisabled?: boolean;
8
8
  isSelected?: boolean;
9
9
  isHighlighted?: boolean;
package/dist/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { CustomTheme } from '@dt-dds/themes';
2
2
  import * as react from 'react';
3
- import { HTMLAttributes, ElementType, MouseEvent, RefObject } from 'react';
3
+ import { AnchorHTMLAttributes, ElementType, MouseEvent, HTMLAttributes, RefObject } from 'react';
4
4
  import { BaseProps } from '@dt-dds/react-core';
5
5
 
6
- interface DropdownOptionProps extends BaseProps, Omit<HTMLAttributes<HTMLElement>, 'onClick'> {
6
+ interface DropdownOptionProps extends BaseProps, Omit<AnchorHTMLAttributes<HTMLElement>, 'onClick'> {
7
7
  isDisabled?: boolean;
8
8
  isSelected?: boolean;
9
9
  isHighlighted?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dt-dds/react-dropdown",
3
- "version": "1.0.0-beta.83",
3
+ "version": "1.0.0-beta.85",
4
4
  "license": "MIT",
5
5
  "exports": {
6
6
  ".": "./dist/index.js"
@@ -20,7 +20,7 @@
20
20
  "test:update:snapshot": "jest -u"
21
21
  },
22
22
  "dependencies": {
23
- "@dt-dds/react-box": "1.0.0-beta.62",
23
+ "@dt-dds/react-box": "1.0.0-beta.64",
24
24
  "@dt-dds/react-core": "1.0.0-beta.54",
25
25
  "@dt-dds/react-icon": "1.0.0-beta.57",
26
26
  "@dt-dds/react-icon-button": "1.0.0-beta.23",