@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 +14 -0
- package/build/index.js +1 -1
- package/build/stories/buttons/button/index.stories.d.ts +5 -4
- package/build/stories/dropdowns/select/index.stories.d.ts +1 -0
- package/build/stories/editor/index.stories.d.ts +1 -0
- package/build/stories/tooltip/index.stories.d.ts +1 -0
- package/package.json +1 -1
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, {
|
|
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?: "
|
|
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?: "
|
|
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?: "
|
|
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?: "
|
|
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 { 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, {
|