@commercelayer/app-elements 1.9.6 → 1.10.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/dist/InputDateComponent-0bc01865.js +5271 -0
- package/dist/dictionaries/promotions.d.ts +7 -0
- package/dist/helpers/date.d.ts +23 -0
- package/dist/{main-75a0d091.js → main-3bc53694.js} +12936 -12430
- package/dist/main.d.ts +2 -2
- package/dist/main.js +106 -105
- package/dist/style.css +1 -1
- package/dist/ui/atoms/Card.d.ts +291 -10
- package/dist/ui/atoms/Icon/icons.d.ts +24 -15
- package/dist/ui/composite/Dropdown/DropdownItem.d.ts +2 -2
- package/dist/ui/forms/InputRadioGroup/InputRadioGroup.d.ts +1 -1
- package/dist/ui/forms/InputReadonly.d.ts +1 -1
- package/dist/ui/resources/ResourceListItem/ResourceListItem.mocks.d.ts +65 -0
- package/dist/ui/resources/ResourceListItem/common.d.ts +1 -1
- package/dist/ui/resources/ResourceListItem/transformers/promotions.d.ts +3 -0
- package/dist/ui/resources/ResourceListItem/types.d.ts +3 -3
- package/dist/ui/resources/useResourceFilters/timeUtils.d.ts +1 -1
- package/package.json +1 -1
- package/dist/InputDateComponent-74b53634.js +0 -5323
- package/dist/ui/composite/OrganizationMenu.d.ts +0 -21
- package/dist/ui/composite/OrganizationMenu.test.d.ts +0 -1
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import React, { type FC, type ReactNode } from 'react';
|
|
2
|
-
export interface OrganizationMenuItemProps extends Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'children' | 'type'> {
|
|
3
|
-
/**
|
|
4
|
-
* the type will be used to render the icon and the label
|
|
5
|
-
*/
|
|
6
|
-
type: 'home' | 'apps' | 'resources' | 'credentials' | 'team' | 'settings';
|
|
7
|
-
/**
|
|
8
|
-
* set the active status of the menu item
|
|
9
|
-
*/
|
|
10
|
-
isActive?: boolean;
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* Render the wrapper for the OrganizationMenuItem
|
|
14
|
-
*/
|
|
15
|
-
export declare const OrganizationMenuItem: FC<OrganizationMenuItemProps>;
|
|
16
|
-
/**
|
|
17
|
-
* Render the wrapper for the OrganizationMenuItem
|
|
18
|
-
*/
|
|
19
|
-
export declare const OrganizationMenu: FC<{
|
|
20
|
-
children: ReactNode;
|
|
21
|
-
}>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|