@seeqdev/qomponents 0.0.202 → 0.0.203
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/index.esm.js +8 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +8 -5
- package/dist/index.js.map +1 -1
- package/dist/styles.css +19 -13
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16767,9 +16767,10 @@ const SvgIcon = ({ onClick, icon, color, type = 'default', extraClassNames, view
|
|
|
16767
16767
|
const SeeqActionDropdownItem = (item) => {
|
|
16768
16768
|
let renderIcon = jsxRuntime.jsx(jsxRuntime.Fragment, {});
|
|
16769
16769
|
if (item.icon) {
|
|
16770
|
-
renderIcon = isSvgIcon(item.icon) ? (jsxRuntime.jsx(SvgIcon, { icon: item.icon, extraClassNames: item.iconExtraClassNames + 'tw:p-1 tw:h-
|
|
16770
|
+
renderIcon = isSvgIcon(item.icon) ? (jsxRuntime.jsx(SvgIcon, { icon: item.icon, extraClassNames: item.iconExtraClassNames + 'tw:p-1 tw:h-9 tw:w-9 tw:dark:text-sq-white tw:text-5.5! tw:text-sq-white', ...item })) : (jsxRuntime.jsx(Icon, { icon: item.icon, type: "text", extraClassNames: 'tw:dark:text-sq-white tw:text-5.5! tw:text-sq-white tw:min-w-9 ' + item.iconExtraClassNames }));
|
|
16771
16771
|
}
|
|
16772
|
-
return (jsxRuntime.jsxs("div", { className: "tw:flex-
|
|
16772
|
+
return (jsxRuntime.jsxs("div", { className: "tw:flex-row tw:flex tw:p-2.5 tw:pl-5 tw:w-150 tw:gap-4", children: [jsxRuntime.jsx("div", { className: classNames('tw:rounded-[0.1875rem] tw:h-9 tw:w-9 tw:bg-sq-theme-dark tw:flex tw:justify-center tw:items-center' +
|
|
16773
|
+
' tw:mt-1.5', item.iconContainerExtraClassNames), children: renderIcon }), jsxRuntime.jsxs("div", { className: "tw:flex tw:flex-col tw:justify-center", children: [jsxRuntime.jsx("div", { className: "tw:text-[20px] tw:font-semibold", children: item.display }), jsxRuntime.jsx("div", { className: "tw:text-sq-13 tw:leading-4", children: item.text })] })] }));
|
|
16773
16774
|
};
|
|
16774
16775
|
const ViewWorkbench = (item) => {
|
|
16775
16776
|
let renderIcon = jsxRuntime.jsx(jsxRuntime.Fragment, {});
|
|
@@ -16806,9 +16807,11 @@ const renderItem = (variant, item) => {
|
|
|
16806
16807
|
const SeeqActionDropdown = ({ seeqActionDropdownItems, trigger, id, extraClassNames, containerTestId, disabled = false, align = 'end', placement = 'bottom', placementOffset = 5, alignOffset = -35, hasArrow = false, onOpenChange, isOpen, setFocusOnTriggerOnClose = true, keepFocusInsideDropdown = true, variant, ...tooltipProps }) => {
|
|
16807
16808
|
const tooltipData = getQTipData(tooltipProps);
|
|
16808
16809
|
return (jsxRuntime.jsxs(Root2, { defaultOpen: false, open: isOpen, onOpenChange: onOpenChange, modal: keepFocusInsideDropdown, children: [jsxRuntime.jsx(Trigger, { id: id, "data-testid": id, className: `tw:border-none tw:focus-visible:outline-none tw:focus:outline-none tw:focus-within:outline-none`, asChild: true, disabled: disabled, children: jsxRuntime.jsx("div", { ...tooltipData, className: `tw:bg-transparent tw:flex tw:flex-col tw:items-center tw:focus-visible:outline-none tw:focus:outline-none tw:focus-within:outline-none ${disabled ? disabledClasses : ''} ${extraClassNames || ''}`, children: trigger }) }), jsxRuntime.jsx(Content2, { sideOffset: placementOffset, side: placement, align: align, alignOffset: alignOffset, asChild: true, onCloseAutoFocus: (e) => !setFocusOnTriggerOnClose && e.preventDefault(), className: "tw:focus-visible:outline-none tw:outline-none", children: jsxRuntime.jsxs("div", { "data-testid": containerTestId, className: bgStyles +
|
|
16809
|
-
' tw:relative tw:z-[1200] tw:min-w-6 tw:py-2 tw:
|
|
16810
|
-
' tw:
|
|
16811
|
-
'
|
|
16810
|
+
' tw:relative tw:z-[1200] tw:min-w-6 tw:py-2 tw:shadow-[0_4px_8px_rgba(0,0,0,0.2)]' +
|
|
16811
|
+
' tw:focus-visible:outline-none tw:outline-none tw:data-[state=open]:animate-in' +
|
|
16812
|
+
' tw:data-[state=closed]:animate-out forceFont tw:data-[side=top]:animate-slideDownAndFade' +
|
|
16813
|
+
' tw:data-[side=right]:animate-slideLeftAndFade tw:data-[side=bottom]:animate-slideUpAndFade' +
|
|
16814
|
+
' tw:data-[side=left]:animate-slideRightAndFade ' +
|
|
16812
16815
|
borderStyles, children: [hasArrow && (jsxRuntime.jsx(Arrow2, { asChild: true, children: jsxRuntime.jsx("div", { className: " tw:fill-transparent tw:bg-sq-white tw:w-sq-15 tw:h-sq-15 tw:rotate-45 tw:dark:bg-sq-dark-background tw:border-b tw:border-r tw:border-sq-disabled-gray tw:dark:border-gray-500 tw:-mt-sq-7" }) })), seeqActionDropdownItems.map((item, index) => {
|
|
16813
16816
|
return (jsxRuntime.jsxs("div", { children: [jsxRuntime.jsx(Item2, { onSelect: (e) => {
|
|
16814
16817
|
item.action(e);
|