digitinary-ui 1.0.162 → 1.0.164
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/components/Accordion/Accordion.test.d.ts +1 -0
- package/dist/components/ActionDropdown/ActionDropdown.test.d.ts +1 -0
- package/dist/components/ActionDropdown/index.d.ts +2 -1
- package/dist/components/Alert/Alert.test.d.ts +1 -0
- package/dist/components/ArenaLabel/ArenaLabel.test.d.ts +1 -0
- package/dist/components/Button/Button.test.d.ts +1 -0
- package/dist/components/Input/input.test.d.ts +1 -0
- package/dist/icons/KebabIcon.d.ts +3 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/package.json +11 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -3,6 +3,7 @@ import './style.scss';
|
|
|
3
3
|
interface DropdownButtonProps {
|
|
4
4
|
options?: React.ReactNode[];
|
|
5
5
|
customContainer?: HTMLElement;
|
|
6
|
+
menuIcon?: React.ReactNode;
|
|
6
7
|
}
|
|
7
|
-
declare const ActionDropdown: ({ options, customContainer }: DropdownButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare const ActionDropdown: ({ options, customContainer, menuIcon, }: DropdownButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export default ActionDropdown;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -184,3 +184,4 @@ export { default as ArticleIcon } from './ArticleIcon';
|
|
|
184
184
|
export { default as SubSectionIcon } from './SubSectionIcon';
|
|
185
185
|
export { default as MoreSquareIcon } from './MoreSquareIcon';
|
|
186
186
|
export { default as Article } from './Article';
|
|
187
|
+
export { default as KebabIcon } from './KebabIcon';
|