@entur/menu 5.2.1-beta.9 → 5.2.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.
- package/dist/BreadcrumbItem.d.ts +2 -3
- package/dist/BreadcrumbNavigation.d.ts +1 -2
- package/dist/CollapsibleSideNavigation.d.ts +1 -1
- package/dist/OverflowMenu.d.ts +3 -4
- package/dist/Pagination.d.ts +1 -2
- package/dist/PaginationInput.d.ts +1 -1
- package/dist/PaginationPage.d.ts +1 -1
- package/dist/SideNavigation.d.ts +1 -2
- package/dist/SideNavigationGroup.d.ts +1 -1
- package/dist/SideNavigationItem.d.ts +2 -2
- package/dist/Stepper.d.ts +1 -2
- package/dist/TopNavigationItem.d.ts +2 -3
- package/dist/index.d.ts +0 -1
- package/dist/menu.cjs.js +820 -0
- package/dist/menu.cjs.js.map +1 -0
- package/dist/menu.esm.js +712 -669
- package/dist/menu.esm.js.map +1 -1
- package/dist/styles.css +699 -728
- package/package.json +30 -20
- package/dist/index.js +0 -8
- package/dist/menu.cjs.development.js +0 -793
- package/dist/menu.cjs.development.js.map +0 -1
- package/dist/menu.cjs.production.min.js +0 -2
- package/dist/menu.cjs.production.min.js.map +0 -1
package/dist/BreadcrumbItem.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import '
|
|
3
|
-
import { PolymorphicComponentProps } from '@entur/utils';
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { PolymorphicComponentProps } from '../../utils';
|
|
4
3
|
export type BreadcrumbItemOwnProps = {
|
|
5
4
|
/** Komponenten som rendres
|
|
6
5
|
* @default "a"
|
package/dist/OverflowMenu.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { Placement } from '
|
|
3
|
-
import { PolymorphicComponentProps } from '
|
|
4
|
-
import './OverflowMenu.scss';
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Placement } from '../../tooltip';
|
|
3
|
+
import { PolymorphicComponentProps } from '../../utils';
|
|
5
4
|
export type OverflowMenuProps = {
|
|
6
5
|
/** Menypunkter (OverflowMenuItem eller OverflowMenuLink) */
|
|
7
6
|
children: React.ReactNode;
|
package/dist/Pagination.d.ts
CHANGED
package/dist/PaginationPage.d.ts
CHANGED
package/dist/SideNavigation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { PolymorphicComponentProps } from '
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { PolymorphicComponentProps } from '../../utils';
|
|
3
3
|
type BaseSideNavigationItemOwnProps = {
|
|
4
4
|
active?: boolean;
|
|
5
5
|
as?: 'a' | 'button' | React.ElementType;
|
package/dist/Stepper.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import '
|
|
3
|
-
import { PolymorphicComponentProps } from '@entur/utils';
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { PolymorphicComponentProps } from '../../utils';
|
|
4
3
|
export type TopNavigationItemOwnProps = {
|
|
5
4
|
/** Om komponenten vises som valgt eller ikke
|
|
6
5
|
* @default false
|
package/dist/index.d.ts
CHANGED