@seeqdev/qomponents 0.0.104 → 0.0.106

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.js CHANGED
@@ -16190,10 +16190,10 @@ const ButtonWithDropdown = ({ dropdownItems, triggerIcon, id, extraClassNames, c
16190
16190
  }))))));
16191
16191
  };
16192
16192
 
16193
- const baseClasses = 'tw-mx-auto tw-p-4 tw-leading-normal tw-outline-none tw-py-2 tw-px-3 tw-rounded-sm tw-max-w-sm' +
16194
- ' tw-border-solid tw-border tw-text-sm tw-flex tw-flex-col';
16195
- const darkTheme = 'dark:tw-bg-sq-dark-background dark:tw-text-sq-dark-text';
16196
- const lightTheme = 'tw-text-sq-text-color tw-bg-sq-color-alert';
16193
+ const baseClasses = 'tw-mx-auto tw-p-4 tw-leading-normal tw-outline-none tw-py-2 tw-px-3 tw-rounded-sm tw-w-full' +
16194
+ ' tw-border-solid tw-border tw-text-sm tw-flex tw-flex-col tw-justify-center tw-items-center';
16195
+ const darkTheme = 'dark:tw-bg-sq-colored-hover-dark dark:tw-text-sq-dark-text';
16196
+ const lightTheme = 'tw-text-sq-text-color tw-bg-sq-colored-hover';
16197
16197
  const errorClasses = 'tw-border-sq-danger-color';
16198
16198
  const borderColorClasses = 'tw-border-sq-color-dark';
16199
16199
  /**
@@ -16203,7 +16203,7 @@ const Alert = ({ children, dismissible = true, onClose, show = true, variant, te
16203
16203
  const appliedTheme = {
16204
16204
  theme: `${lightTheme} ${darkTheme}`,
16205
16205
  danger: 'tw-text-sq-text-color tw-bg-sq-danger-color',
16206
- warning: 'tw-bg-sq-warning-color tw-text-sq-text-color',
16206
+ warning: 'tw-bg-sq-bg-warning-color tw-text-sq-text-color',
16207
16207
  };
16208
16208
  const appliedBorderTheme = {
16209
16209
  theme: borderColorClasses,