@appquality/unguess-design-system 2.10.34 → 2.10.37

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.
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { CardProps } from "../cards/_types";
3
+ export interface InfoCardProps extends CardProps {
4
+ infoImg: React.ReactNode;
5
+ infoSubtitle: string;
6
+ infoTitle: string;
7
+ infoButtons?: Array<React.ReactNode>;
8
+ }
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { InfoCardProps } from "./_types";
3
+ declare const InfoCard: (props: InfoCardProps) => JSX.Element;
4
+ export { InfoCard };
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { InfoCardProps } from "./_types";
3
+ import { ComponentMeta, Story } from "@storybook/react";
4
+ export declare const SingleCard: Story<InfoCardProps>;
5
+ export declare const Grid: Story<InfoCardProps>;
6
+ declare const _default: ComponentMeta<(props: InfoCardProps) => JSX.Element>;
7
+ export default _default;
@@ -4,12 +4,13 @@ export interface SidebarArgs extends NavArgs, WorkspaceDropdownArgs {
4
4
  projects?: Array<ProjectItem>;
5
5
  currentRoute?: string;
6
6
  homeItemLabel?: string;
7
+ servicesItemLabel?: string;
7
8
  dividerLabel?: string;
8
9
  tokens?: string;
9
10
  tokensLabel?: string;
10
11
  isExpanded?: boolean;
11
12
  onToggleMenu?: () => void;
12
- onNavToggle?: (route: string) => void;
13
+ onNavToggle?: (route: string, parameter?: string) => void;
13
14
  isLoading?: boolean;
14
15
  }
15
16
  export interface ProjectItem {
@@ -0,0 +1,17 @@
1
+ /// <reference types="react" />
2
+ import { CardProps } from "../cards/_types";
3
+ interface ITag {
4
+ label: string;
5
+ icon: React.ReactNode;
6
+ }
7
+ export interface ServiceCardsProps extends CardProps {
8
+ serviceIcon?: React.ReactNode;
9
+ serviceTitle?: string;
10
+ serviceSubtitle?: string;
11
+ tags?: Array<ITag>;
12
+ isHoverable?: boolean;
13
+ hoverTitle?: string;
14
+ hoverSubtitle?: string;
15
+ hoverButtons?: Array<React.ReactNode>;
16
+ }
17
+ export {};
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { ServiceCardsProps } from "./_types";
3
+ declare const ServiceCard: (props: ServiceCardsProps) => JSX.Element;
4
+ export { ServiceCard };
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { ServiceCardsProps } from "./_types";
3
+ import { ComponentMeta, Story } from "@storybook/react";
4
+ export declare const SingleCard: Story<ServiceCardsProps>;
5
+ export declare const Grid: Story<ServiceCardsProps>;
6
+ declare const _default: ComponentMeta<(props: ServiceCardsProps) => JSX.Element>;
7
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appquality/unguess-design-system",
3
- "version": "2.10.34",
3
+ "version": "2.10.37",
4
4
  "dependencies": {
5
5
  "@zendeskgarden/css-bedrock": "^9.0.0",
6
6
  "@zendeskgarden/react-accordions": "^8.49.0",