@eleventheye/asui 2.12.3 → 2.12.4
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/aschart/donut/donutHelpers.js +0 -1
- package/dist/asnavbar/ASNavBar.js +2 -1
- package/dist/asnavbar/mobile/ASNavBarMW.js +0 -1
- package/dist/asnavbar/navbararrowbuttons/ASNavBarArrowButtons.js +3 -5
- package/dist/asnavbar/navbararrowbuttons/ASNavBarArrowButtons.types.d.ts +4 -4
- package/dist/asnavbar/navbararrowbuttons/ASNavBarArrowButtons.types.d.ts.map +1 -1
- package/dist/asnavbar/navbararrowbuttons/styles.d.ts +1 -1
- package/dist/asnavbar/navbararrowbuttons/styles.d.ts.map +1 -1
- package/dist/asnavbar/navbararrowbuttons/styles.js +10 -10
- package/dist/icons/ASIcon.d.ts.map +1 -1
- package/dist/icons/ASIcon.js +15 -3
- package/package.json +16 -15
|
@@ -35,7 +35,6 @@ const calculateDonutPath = (thickness, position) => {
|
|
|
35
35
|
const val = num + multipliers[index] * diffNumber;
|
|
36
36
|
result = result.replace(strPosition, `${val}`);
|
|
37
37
|
});
|
|
38
|
-
console.log(`%c RESULT %c = ${result}`, cls, '');
|
|
39
38
|
return result;
|
|
40
39
|
};
|
|
41
40
|
exports.calculateDonutPath = calculateDonutPath;
|
|
@@ -56,7 +56,8 @@ const ASNavBar = ({ className = '', navItems = [], selectedItemId = '', onItemSe
|
|
|
56
56
|
const { $mobileBreakpoint = 768, $disableTransitionsBetweenDisplayModes, $displayModeOverride } = styleOptions;
|
|
57
57
|
(0, react_1.useEffect)(() => {
|
|
58
58
|
const screenSize = (0, screenSizeHelpers_1.getScreenSize)();
|
|
59
|
-
|
|
59
|
+
if (!screenSize)
|
|
60
|
+
console.info(`Screen size detected: ${screenSize}`);
|
|
60
61
|
}, []);
|
|
61
62
|
(0, react_1.useEffect)(() => {
|
|
62
63
|
setSelectedId(selectedItemId);
|
|
@@ -90,7 +90,6 @@ const ASNavBarMW = ({ id = `asnavbar-mw-${(0, uuid_1.v4)()}`, className = '', na
|
|
|
90
90
|
}
|
|
91
91
|
};
|
|
92
92
|
const onButtonsPressed = (e, direction) => {
|
|
93
|
-
console.log(`onButtonsPressed`, e);
|
|
94
93
|
if (direction === ASUI_types_1.ArrowButtonDirection.Left) {
|
|
95
94
|
selectPrev(e);
|
|
96
95
|
}
|
|
@@ -11,23 +11,21 @@ const styles_1 = require("./styles");
|
|
|
11
11
|
const clsY = 'background: goldenrod; color: #000000; border-radius: 10px;';
|
|
12
12
|
const clsG = 'background: forestgreen; color: #000000; border-radius: 10px;';
|
|
13
13
|
const ASNavBarArrowButtons = ({ className = '', onArrowButtonClicked = () => undefined, selectedIndex = 0, totalItemCount = 0, size = apptypes_1.ComponentSize.Medium, styleOptions = ASNavBar_1.defaultNavBarStyleOptions, theme = astheme_1.default, isMobile = false, }) => {
|
|
14
|
-
return ((0, jsx_runtime_1.jsxs)(styles_1.ASNavBarArrowButtonsStyled, { className: `${className} ${size}`, theme: theme, isMobile: isMobile, styleOptions: styleOptions, children: [(0, jsx_runtime_1.jsx)(ASLeftNavBarArrowButton, { onArrowButtonClicked: onArrowButtonClicked, theme: theme, size: size, selectedIndex: selectedIndex, disabled: selectedIndex <= 0, isMobile: isMobile }), (0, jsx_runtime_1.jsx)(ASRightNavBarArrowButton, { onArrowButtonClicked: onArrowButtonClicked, theme: theme, size: size, selectedIndex: selectedIndex, disabled: selectedIndex >= totalItemCount - 1, isMobile: isMobile })] }));
|
|
14
|
+
return ((0, jsx_runtime_1.jsxs)(styles_1.ASNavBarArrowButtonsStyled, { className: `${className} ${size}`, theme: theme, "$isMobile": isMobile, "$styleOptions": styleOptions, children: [(0, jsx_runtime_1.jsx)(ASLeftNavBarArrowButton, { onArrowButtonClicked: onArrowButtonClicked, theme: theme, size: size, selectedIndex: selectedIndex, disabled: selectedIndex <= 0, isMobile: isMobile }), (0, jsx_runtime_1.jsx)(ASRightNavBarArrowButton, { onArrowButtonClicked: onArrowButtonClicked, theme: theme, size: size, selectedIndex: selectedIndex, disabled: selectedIndex >= totalItemCount - 1, isMobile: isMobile })] }));
|
|
15
15
|
};
|
|
16
16
|
exports.ASNavBarArrowButtons = ASNavBarArrowButtons;
|
|
17
17
|
exports.default = exports.ASNavBarArrowButtons;
|
|
18
18
|
const ASLeftNavBarArrowButton = ({ size = apptypes_1.ComponentSize.Medium, theme = astheme_1.default, disabled = false, onArrowButtonClicked = () => undefined, isMobile = false, }) => {
|
|
19
19
|
const tapHandler = (e, dir) => {
|
|
20
|
-
console.log(`e: %c ${e.currentTarget.role} %c, dir: %c ${dir} %c`, clsG, '', clsY, '');
|
|
21
20
|
onArrowButtonClicked(e, dir);
|
|
22
21
|
};
|
|
23
|
-
return ((0, jsx_runtime_1.jsx)(styles_1.ASIconButtonLeftStyled, { icon: icons_1.ArrowLeftIcon, onIconButtonTap: (e) => tapHandler(e, apptypes_1.ArrowButtonDirection.Left), theme: theme, size: size, toggle: false, selected: false, disabled: disabled,
|
|
22
|
+
return ((0, jsx_runtime_1.jsx)(styles_1.ASIconButtonLeftStyled, { icon: icons_1.ArrowLeftIcon, onIconButtonTap: (e) => tapHandler(e, apptypes_1.ArrowButtonDirection.Left), theme: theme, size: size, toggle: false, selected: false, disabled: disabled, "$mobileMode": isMobile, id: "LeftButtonId", iconSize: size === apptypes_1.ComponentSize.Large ? 32 : size === apptypes_1.ComponentSize.Medium ? 28 : 24, fillColor: theme.button.buttonIconColor }));
|
|
24
23
|
};
|
|
25
24
|
exports.ASLeftNavBarArrowButton = ASLeftNavBarArrowButton;
|
|
26
25
|
const ASRightNavBarArrowButton = ({ size = apptypes_1.ComponentSize.Medium, theme = astheme_1.default, onArrowButtonClicked = () => undefined, disabled = false, isMobile = false, }) => {
|
|
27
26
|
const tapHandler = (e, dir) => {
|
|
28
|
-
console.log(`e: %c ${e.currentTarget.role} %c, dir: %c ${dir} %c`, clsG, '', clsY, '');
|
|
29
27
|
onArrowButtonClicked(e, dir);
|
|
30
28
|
};
|
|
31
|
-
return ((0, jsx_runtime_1.jsx)(styles_1.ASIconButtonRightStyled, { icon: icons_1.ArrowRightIcon, onIconButtonTap: (e) => tapHandler(e, apptypes_1.ArrowButtonDirection.Right), theme: theme, toggle: false, selected: false, size: size,
|
|
29
|
+
return ((0, jsx_runtime_1.jsx)(styles_1.ASIconButtonRightStyled, { icon: icons_1.ArrowRightIcon, onIconButtonTap: (e) => tapHandler(e, apptypes_1.ArrowButtonDirection.Right), theme: theme, toggle: false, selected: false, size: size, "$mobileMode": isMobile, disabled: disabled, id: "RightButtonId", iconSize: size === apptypes_1.ComponentSize.Large ? 32 : size === apptypes_1.ComponentSize.Medium ? 28 : 24, fillColor: theme.button.buttonIconColor }));
|
|
32
30
|
};
|
|
33
31
|
exports.ASRightNavBarArrowButton = ASRightNavBarArrowButton;
|
|
@@ -2,12 +2,12 @@ import { PointerEvent } from 'react';
|
|
|
2
2
|
import { ASComponentDirection, ASComponentSize, ASNavBarStyleOptions, ASTheme } from '../../apptypes';
|
|
3
3
|
export interface ASNavBarArrowButtonsStyledProps {
|
|
4
4
|
itemId?: string;
|
|
5
|
-
displayText?: string;
|
|
5
|
+
$displayText?: string;
|
|
6
6
|
icon?: React.ReactNode;
|
|
7
7
|
theme?: ASTheme;
|
|
8
|
-
size?: ASComponentSize;
|
|
9
|
-
isMobile?: boolean;
|
|
10
|
-
styleOptions?: ASNavBarStyleOptions;
|
|
8
|
+
$size?: ASComponentSize;
|
|
9
|
+
$isMobile?: boolean;
|
|
10
|
+
$styleOptions?: ASNavBarStyleOptions;
|
|
11
11
|
}
|
|
12
12
|
export type ASNavBarArrowButtonClickFn = (event: PointerEvent, dir: ASComponentDirection) => void;
|
|
13
13
|
export type ASNavBarArrowButtonsProps = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ASNavBarArrowButtons.types.d.ts","sourceRoot":"","sources":["../../../src/asnavbar/navbararrowbuttons/ASNavBarArrowButtons.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AACrC,OAAO,EAAE,oBAAoB,EAAE,eAAe,EAAE,oBAAoB,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAEtG,MAAM,WAAW,+BAA+B;IAC9C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,
|
|
1
|
+
{"version":3,"file":"ASNavBarArrowButtons.types.d.ts","sourceRoot":"","sources":["../../../src/asnavbar/navbararrowbuttons/ASNavBarArrowButtons.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AACrC,OAAO,EAAE,oBAAoB,EAAE,eAAe,EAAE,oBAAoB,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAEtG,MAAM,WAAW,+BAA+B;IAC9C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,aAAa,CAAC,EAAE,oBAAoB,CAAC;CACtC;AAED,MAAM,MAAM,0BAA0B,GAAG,CAAC,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,oBAAoB,KAAK,IAAI,CAAC;AAElG,MAAM,MAAM,yBAAyB,GAAG;IACtC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,oBAAoB,CAAC,EAAE,0BAA0B,CAAC;IAClD,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,eAAe,CAAC;IACvB,YAAY,CAAC,EAAE,oBAAoB,CAAC;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC"}
|
|
@@ -8,7 +8,7 @@ interface ASNavBarIconButtonStyledProps {
|
|
|
8
8
|
$maxWidth?: number;
|
|
9
9
|
$borderRadius?: number;
|
|
10
10
|
$padding?: string;
|
|
11
|
-
size?: ASComponentSize;
|
|
11
|
+
$size?: ASComponentSize;
|
|
12
12
|
}
|
|
13
13
|
export declare const ASIconButtonRightStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<{
|
|
14
14
|
className?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../src/asnavbar/navbararrowbuttons/styles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,OAAO,EAAiB,MAAM,gBAAgB,CAAC;AAGzE,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAwC/E,eAAO,MAAM,0BAA0B,oQA+BtC,CAAC;AAEF,UAAU,6BAA6B;IACrC,KAAK,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../src/asnavbar/navbararrowbuttons/styles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,OAAO,EAAiB,MAAM,gBAAgB,CAAC;AAGzE,OAAO,EAAE,+BAA+B,EAAE,MAAM,8BAA8B,CAAC;AAwC/E,eAAO,MAAM,0BAA0B,oQA+BtC,CAAC;AAEF,UAAU,6BAA6B;IACrC,KAAK,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,eAAe,CAAC;CACzB;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;;;;qKAKnC,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;qKAKlC,CAAC"}
|
|
@@ -40,13 +40,13 @@ const getWidthBySize = (size) => size === apptypes_1.ComponentSize.Large ? 50 :
|
|
|
40
40
|
exports.ASNavBarArrowButtonsStyled = styled_components_1.default.div `
|
|
41
41
|
position: fixed;
|
|
42
42
|
contain: strict;
|
|
43
|
-
display: ${({ styleOptions = ASNavBar_1.defaultNavBarStyleOptions }) => styleOptions.$hideNavArrowButtonsInDW ? 'none' : 'flex'};
|
|
43
|
+
display: ${({ $styleOptions = ASNavBar_1.defaultNavBarStyleOptions }) => $styleOptions.$hideNavArrowButtonsInDW ? 'none' : 'flex'};
|
|
44
44
|
align-items: center;
|
|
45
45
|
justify-content: space-between;
|
|
46
46
|
width: -webkit-fill-available;
|
|
47
|
-
max-width: ${({ styleOptions = ASNavBar_1.defaultNavBarStyleOptions, isMobile = false }) => styleOptions.$maxWidth && styleOptions.$maxWidthUnit
|
|
48
|
-
? `${styleOptions.$maxWidth}${styleOptions.$maxWidthUnit}`
|
|
49
|
-
: isMobile
|
|
47
|
+
max-width: ${({ $styleOptions = ASNavBar_1.defaultNavBarStyleOptions, $isMobile = false }) => $styleOptions.$maxWidth && $styleOptions.$maxWidthUnit
|
|
48
|
+
? `${$styleOptions.$maxWidth}${$styleOptions.$maxWidthUnit}`
|
|
49
|
+
: $isMobile
|
|
50
50
|
? '300px'
|
|
51
51
|
: '100%'};
|
|
52
52
|
pointer-events: none;
|
|
@@ -55,25 +55,25 @@ exports.ASNavBarArrowButtonsStyled = styled_components_1.default.div `
|
|
|
55
55
|
|
|
56
56
|
&:before {
|
|
57
57
|
${scrollEdgesCover}
|
|
58
|
-
width: ${({ size = apptypes_1.ComponentSize.Medium }) => `calc(${getWidthBySize(size)}px + 6px)`};
|
|
58
|
+
width: ${({ $size = apptypes_1.ComponentSize.Medium }) => `calc(${getWidthBySize($size)}px + 6px)`};
|
|
59
59
|
left: 0;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
&:after {
|
|
63
63
|
${scrollEdgesCover}
|
|
64
|
-
width: ${({ size = apptypes_1.ComponentSize.Medium }) => `calc(${getWidthBySize(size)}px + 6px)`};
|
|
64
|
+
width: ${({ $size = apptypes_1.ComponentSize.Medium }) => `calc(${getWidthBySize($size)}px + 6px)`};
|
|
65
65
|
right: 0;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
${dimensionsForSizes}
|
|
69
69
|
`;
|
|
70
70
|
exports.ASIconButtonRightStyled = (0, styled_components_1.default)(asiconbutton_1.default) `
|
|
71
|
-
margin: ${({ size = apptypes_1.ComponentSize.Medium }) => size === apptypes_1.ComponentSize.Small ? '0 10px' : size === apptypes_1.ComponentSize.Large ? '0' : '0 5px 0 0'};
|
|
71
|
+
margin: ${({ $size = apptypes_1.ComponentSize.Medium }) => $size === apptypes_1.ComponentSize.Small ? '0 10px' : $size === apptypes_1.ComponentSize.Large ? '0' : '0 5px 0 0'};
|
|
72
72
|
z-index: 1;
|
|
73
|
-
scale: ${({ size = apptypes_1.ComponentSize.Medium }) => (size === apptypes_1.ComponentSize.Large ? '0.75' : '0.75')};
|
|
73
|
+
scale: ${({ $size = apptypes_1.ComponentSize.Medium }) => ($size === apptypes_1.ComponentSize.Large ? '0.75' : '0.75')};
|
|
74
74
|
`;
|
|
75
75
|
exports.ASIconButtonLeftStyled = (0, styled_components_1.default)(asiconbutton_1.default) `
|
|
76
|
-
margin: ${({ size = apptypes_1.ComponentSize.Medium }) => size === apptypes_1.ComponentSize.Small ? '0 10px' : size === apptypes_1.ComponentSize.Large ? '0' : '0 5px'};
|
|
76
|
+
margin: ${({ $size = apptypes_1.ComponentSize.Medium }) => $size === apptypes_1.ComponentSize.Small ? '0 10px' : $size === apptypes_1.ComponentSize.Large ? '0' : '0 5px'};
|
|
77
77
|
z-index: 1;
|
|
78
|
-
scale: ${({ size = apptypes_1.ComponentSize.Medium }) => (size === apptypes_1.ComponentSize.Large ? '0.75' : '0.75')};
|
|
78
|
+
scale: ${({ $size = apptypes_1.ComponentSize.Medium }) => ($size === apptypes_1.ComponentSize.Large ? '0.75' : '0.75')};
|
|
79
79
|
`;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ASIcon.d.ts","sourceRoot":"","sources":["../../src/icons/ASIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA8B1C,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,SAAS,CAAC,
|
|
1
|
+
{"version":3,"file":"ASIcon.d.ts","sourceRoot":"","sources":["../../src/icons/ASIcon.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AA8B1C,QAAA,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAwClD,CAAC;AAEF,eAAe,MAAM,CAAC"}
|
package/dist/icons/ASIcon.js
CHANGED
|
@@ -5,9 +5,21 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
5
5
|
const react_1 = tslib_1.__importDefault(require("react"));
|
|
6
6
|
const styles_1 = require("./styles");
|
|
7
7
|
const CircleSvg = ({ iconSize = 24, circleStrokeWidth = 1.5, circleFillColor = 'transparent', circleStrokeColor = '#fffff0', circleFillOpacity = 1, withCircle = false, }) => ((0, jsx_runtime_1.jsx)(styles_1.IconCircle, { width: iconSize, height: iconSize, viewBox: "0 0 24 24", fill: "transparent", xmlns: "http://www.w3.org/2000/svg", children: (0, jsx_runtime_1.jsx)("circle", { fill: withCircle ? circleFillColor : 'none', fillOpacity: circleFillOpacity, cx: "12", cy: "12", r: "10.5", stroke: withCircle ? circleStrokeColor : 'transparent', strokeWidth: `${circleStrokeWidth}px` }) }));
|
|
8
|
-
const ASIcon = ({ className = '', iconSize = 24, color = '#fffff0', fillColor = 'transparent', fillOpacity = 1, circleStrokeColor = '#fffff0', circleStrokeWidth = 1.5, withCircle = false, style, children, ...props }) => {
|
|
9
|
-
return ((0, jsx_runtime_1.jsxs)(styles_1.IconWrapper, { className: className, style: props.style, ...props, onClick: props.onClick, children: [(0, jsx_runtime_1.jsx)(CircleSvg, { iconSize: iconSize, circleStrokeColor, withCircle, circleStrokeWidth, ...props }), react_1.default.Children.map(children, (child) => react_1.default.isValidElement(child)
|
|
10
|
-
? react_1.default.cloneElement(child, {
|
|
8
|
+
const ASIcon = ({ className = '', iconSize = 24, color = '#fffff0', fillColor = 'transparent', fillOpacity = 1, circleStrokeColor = '#fffff0', circleStrokeWidth = 1.5, circleFillColor, circleFillOpacity, withCircle = false, style, children, ...props }) => {
|
|
9
|
+
return ((0, jsx_runtime_1.jsxs)(styles_1.IconWrapper, { className: className, style: props.style, ...props, onClick: props.onClick, children: [(0, jsx_runtime_1.jsx)(CircleSvg, { iconSize: iconSize, circleStrokeColor, withCircle, circleStrokeWidth, circleFillColor, circleFillOpacity, ...props }), react_1.default.Children.map(children, (child) => react_1.default.isValidElement(child)
|
|
10
|
+
? react_1.default.cloneElement(child, {
|
|
11
|
+
iconSize,
|
|
12
|
+
color,
|
|
13
|
+
fillColor,
|
|
14
|
+
withCircle,
|
|
15
|
+
fillOpacity,
|
|
16
|
+
style,
|
|
17
|
+
circleStrokeColor,
|
|
18
|
+
circleStrokeWidth,
|
|
19
|
+
circleFillColor,
|
|
20
|
+
circleFillOpacity,
|
|
21
|
+
...props,
|
|
22
|
+
})
|
|
11
23
|
: child)] }));
|
|
12
24
|
};
|
|
13
25
|
exports.default = ASIcon;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eleventheye/asui",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "AS UI React Library by eleventheye (another one!)",
|
|
6
6
|
"keywords": [
|
|
@@ -57,27 +57,28 @@
|
|
|
57
57
|
"build-storybook": "storybook build"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@storybook/addon-
|
|
61
|
-
"@storybook/addon-
|
|
62
|
-
"@storybook/addon-
|
|
60
|
+
"@storybook/addon-docs": "^9.1.3",
|
|
61
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
62
|
+
"@storybook/addon-interactions": "^8.6.14",
|
|
63
|
+
"@storybook/addon-onboarding": "^9.1.3",
|
|
63
64
|
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
64
|
-
"@storybook/blocks": "^8.6.
|
|
65
|
-
"@storybook/react": "^
|
|
66
|
-
"@storybook/react-webpack5": "^
|
|
67
|
-
"@storybook/test": "^8.6.
|
|
65
|
+
"@storybook/blocks": "^8.6.14",
|
|
66
|
+
"@storybook/react": "^9.1.3",
|
|
67
|
+
"@storybook/react-webpack5": "^9.1.3",
|
|
68
|
+
"@storybook/test": "^8.6.14",
|
|
68
69
|
"@svgr/webpack": "^8.1.0",
|
|
69
|
-
"@types/react": "^19.1.
|
|
70
|
-
"@types/react-dom": "^19.1.
|
|
70
|
+
"@types/react": "^19.1.11",
|
|
71
|
+
"@types/react-dom": "^19.1.7",
|
|
71
72
|
"@types/styled-components": "^5.1.34",
|
|
72
73
|
"npmignore": "^0.3.1",
|
|
73
|
-
"storybook": "^
|
|
74
|
-
"typescript": "^5.
|
|
74
|
+
"storybook": "^9.1.3",
|
|
75
|
+
"typescript": "^5.9.2"
|
|
75
76
|
},
|
|
76
77
|
"dependencies": {
|
|
77
|
-
"react": "^19.1.
|
|
78
|
-
"react-dom": "^19.1.
|
|
78
|
+
"react": "^19.1.1",
|
|
79
|
+
"react-dom": "^19.1.1",
|
|
79
80
|
"rimraf": "^6.0.1",
|
|
80
|
-
"styled-components": "^6.1.
|
|
81
|
+
"styled-components": "^6.1.19",
|
|
81
82
|
"uuid": "11.1.0"
|
|
82
83
|
}
|
|
83
84
|
}
|