@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.esm.js
CHANGED
|
@@ -16747,9 +16747,10 @@ const SvgIcon = ({ onClick, icon, color, type = 'default', extraClassNames, view
|
|
|
16747
16747
|
const SeeqActionDropdownItem = (item) => {
|
|
16748
16748
|
let renderIcon = jsx$1(Fragment, {});
|
|
16749
16749
|
if (item.icon) {
|
|
16750
|
-
renderIcon = isSvgIcon(item.icon) ? (jsx$1(SvgIcon, { icon: item.icon, extraClassNames: item.iconExtraClassNames + 'tw:p-1 tw:h-
|
|
16750
|
+
renderIcon = isSvgIcon(item.icon) ? (jsx$1(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 })) : (jsx$1(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 }));
|
|
16751
16751
|
}
|
|
16752
|
-
return (jsxs("div", { className: "tw:flex-
|
|
16752
|
+
return (jsxs("div", { className: "tw:flex-row tw:flex tw:p-2.5 tw:pl-5 tw:w-150 tw:gap-4", children: [jsx$1("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' +
|
|
16753
|
+
' tw:mt-1.5', item.iconContainerExtraClassNames), children: renderIcon }), jsxs("div", { className: "tw:flex tw:flex-col tw:justify-center", children: [jsx$1("div", { className: "tw:text-[20px] tw:font-semibold", children: item.display }), jsx$1("div", { className: "tw:text-sq-13 tw:leading-4", children: item.text })] })] }));
|
|
16753
16754
|
};
|
|
16754
16755
|
const ViewWorkbench = (item) => {
|
|
16755
16756
|
let renderIcon = jsx$1(Fragment, {});
|
|
@@ -16786,9 +16787,11 @@ const renderItem = (variant, item) => {
|
|
|
16786
16787
|
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 }) => {
|
|
16787
16788
|
const tooltipData = getQTipData(tooltipProps);
|
|
16788
16789
|
return (jsxs(Root2, { defaultOpen: false, open: isOpen, onOpenChange: onOpenChange, modal: keepFocusInsideDropdown, children: [jsx$1(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: jsx$1("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 }) }), jsx$1(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: jsxs("div", { "data-testid": containerTestId, className: bgStyles +
|
|
16789
|
-
' tw:relative tw:z-[1200] tw:min-w-6 tw:py-2 tw:
|
|
16790
|
-
' tw:
|
|
16791
|
-
'
|
|
16790
|
+
' tw:relative tw:z-[1200] tw:min-w-6 tw:py-2 tw:shadow-[0_4px_8px_rgba(0,0,0,0.2)]' +
|
|
16791
|
+
' tw:focus-visible:outline-none tw:outline-none tw:data-[state=open]:animate-in' +
|
|
16792
|
+
' tw:data-[state=closed]:animate-out forceFont tw:data-[side=top]:animate-slideDownAndFade' +
|
|
16793
|
+
' tw:data-[side=right]:animate-slideLeftAndFade tw:data-[side=bottom]:animate-slideUpAndFade' +
|
|
16794
|
+
' tw:data-[side=left]:animate-slideRightAndFade ' +
|
|
16792
16795
|
borderStyles, children: [hasArrow && (jsx$1(Arrow2, { asChild: true, children: jsx$1("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) => {
|
|
16793
16796
|
return (jsxs("div", { children: [jsx$1(Item2, { onSelect: (e) => {
|
|
16794
16797
|
item.action(e);
|