@appquality/unguess-design-system 3.0.2 → 3.0.3

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,3 +1,17 @@
1
+ # v3.0.3 (Fri May 12 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Fix sidebar toggle WIDTH [#246](https://github.com/AppQuality/unguess-design-system/pull/246) ([@sanchayan721](https://github.com/sanchayan721) [@cannarocks](https://github.com/cannarocks))
6
+ - Fix(SideBar): Sidebar Icon positioning [#245](https://github.com/AppQuality/unguess-design-system/pull/245) ([@sanchayan721](https://github.com/sanchayan721))
7
+
8
+ #### Authors: 2
9
+
10
+ - Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
11
+ - Sanchayan Bhunia ([@sanchayan721](https://github.com/sanchayan721))
12
+
13
+ ---
14
+
1
15
  # v3.0.2 (Wed May 10 2023)
2
16
 
3
17
  #### 🐛 Bug Fix
package/build/index.js CHANGED
@@ -3171,7 +3171,7 @@ const StyledToggle = styled__default["default"](IconButton) `
3171
3171
  }
3172
3172
  `;
3173
3173
  const NavToggle = (props) => {
3174
- return (jsxRuntime.jsx(StyledToggle, Object.assign({}, props, { className: "toggle-navigation", isPrimary: true, size: "small" }, { children: props.isExpanded ? (jsxRuntime.jsx(SvgChevronLeftStroke, { style: { width: "100%" } })) : (jsxRuntime.jsx(SvgChevronRightStroke, { style: { width: "100%" } })) })));
3174
+ return (jsxRuntime.jsx(StyledToggle, Object.assign({}, props, { className: "toggle-navigation", isPrimary: true, size: "small" }, { children: props.isExpanded ? (jsxRuntime.jsx(SvgChevronLeftStroke, {})) : (jsxRuntime.jsx(SvgChevronRightStroke, {})) })));
3175
3175
  };
3176
3176
 
3177
3177
  const UgNavItem$1 = styled__default["default"](reactChrome.NavItem) `
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ButtonArgs } from "./_types";
2
3
  export declare const Default: {
3
4
  decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/react/dist/types-0a347bb9").R, {
@@ -75,7 +76,7 @@ export declare const Default: {
75
76
  results?: number | undefined;
76
77
  security?: string | undefined;
77
78
  unselectable?: "on" | "off" | undefined;
78
- inputMode?: "decimal" | "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | undefined;
79
+ inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
79
80
  is?: string | undefined;
80
81
  'aria-activedescendant'?: string | undefined;
81
82
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
@@ -379,7 +380,7 @@ export declare const Basic: {
379
380
  results?: number | undefined;
380
381
  security?: string | undefined;
381
382
  unselectable?: "on" | "off" | undefined;
382
- inputMode?: "decimal" | "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | undefined;
383
+ inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
383
384
  is?: string | undefined;
384
385
  'aria-activedescendant'?: string | undefined;
385
386
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
@@ -683,7 +684,7 @@ export declare const Primary: {
683
684
  results?: number | undefined;
684
685
  security?: string | undefined;
685
686
  unselectable?: "on" | "off" | undefined;
686
- inputMode?: "decimal" | "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | undefined;
687
+ inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
687
688
  is?: string | undefined;
688
689
  'aria-activedescendant'?: string | undefined;
689
690
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
@@ -987,7 +988,7 @@ export declare const WithIcon: {
987
988
  results?: number | undefined;
988
989
  security?: string | undefined;
989
990
  unselectable?: "on" | "off" | undefined;
990
- inputMode?: "decimal" | "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | undefined;
991
+ inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
991
992
  is?: string | undefined;
992
993
  'aria-activedescendant'?: string | undefined;
993
994
  'aria-atomic'?: (boolean | "true" | "false") | undefined;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { DropdownArgs, SelectArgs } from "./_types";
2
3
  import { MenuArgs } from "../menu/_types";
3
4
  interface IItem {
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { EditorArgs } from "./_types";
2
3
  interface EditorStoryArgs extends EditorArgs {
3
4
  children?: any;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { TooltipArgs } from "./_types";
2
3
  export declare const Default: import("@storybook/types").AnnotatedStoryFn<import("@storybook/react/dist/types-0a347bb9").R, TooltipArgs>;
3
4
  declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appquality/unguess-design-system",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",