@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/Alert/Alert.js +5 -5
- package/dist/Alert/Alert.js.map +1 -1
- package/dist/Alert/Alert.test.js +1 -1
- package/dist/Alert/Alert.test.js.map +1 -1
- package/dist/InputGroup/InputGroup.js +27 -0
- package/dist/InputGroup/InputGroup.js.map +1 -0
- package/dist/InputGroup/InputGroup.stories.js +66 -0
- package/dist/InputGroup/InputGroup.stories.js.map +1 -0
- package/dist/InputGroup/InputGroup.test.d.ts +1 -0
- package/dist/InputGroup/InputGroup.test.js +40 -0
- package/dist/InputGroup/InputGroup.test.js.map +1 -0
- package/dist/InputGroup/InputGroup.types.js +2 -0
- package/dist/InputGroup/InputGroup.types.js.map +1 -0
- package/dist/InputGroup/index.js +2 -0
- package/dist/InputGroup/index.js.map +1 -0
- package/dist/index.esm.js +5 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -0
- package/package.json +1 -1
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-
|
|
16194
|
-
' tw-border-solid tw-border tw-text-sm tw-flex tw-flex-col';
|
|
16195
|
-
const darkTheme = 'dark:tw-bg-sq-dark
|
|
16196
|
-
const lightTheme = 'tw-text-sq-text-color tw-bg-sq-
|
|
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,
|