@warp-ds/css 1.0.0-alpha.29 → 1.0.0-alpha.30
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.
|
@@ -387,12 +387,11 @@ export namespace toggle {
|
|
|
387
387
|
export { a11y_5 as a11y };
|
|
388
388
|
}
|
|
389
389
|
export namespace clickable {
|
|
390
|
-
export const
|
|
391
|
-
export const clickableNotToggle: string;
|
|
390
|
+
export const toggle: string;
|
|
392
391
|
const label_6: string;
|
|
393
392
|
export { label_6 as label };
|
|
394
|
-
const
|
|
395
|
-
export
|
|
393
|
+
export const buttonOrLink: string;
|
|
394
|
+
export const buttonOrLinkStretch: string;
|
|
396
395
|
}
|
|
397
396
|
export namespace combobox {
|
|
398
397
|
const wrapper_11: string;
|
|
@@ -178,7 +178,7 @@ export const tabs = {
|
|
|
178
178
|
};
|
|
179
179
|
|
|
180
180
|
export const tab = {
|
|
181
|
-
tab: 'grid items-center font-bold gap-8 focusable antialias p-16 pb-8 border-b-4 i-text-$color-tabs-text i-border-$color-tabs-border hover:i-text-$color-tabs-text-hover hover:i-border-$color-tabs-border-hover',
|
|
181
|
+
tab: 'grid items-center font-bold gap-8 focusable antialias p-16 pb-8 border-b-4 bg-transparent i-text-$color-tabs-text i-border-$color-tabs-border hover:i-text-$color-tabs-text-hover hover:i-border-$color-tabs-border-hover',
|
|
182
182
|
tabActive: 'i-text-$color-tabs-text-active',
|
|
183
183
|
icon: 'mx-auto hover:i-text-$color-tabs-text-hover',
|
|
184
184
|
iconUnderlinedActive: 'i-text-$color-tabs-text-active',
|
|
@@ -411,10 +411,10 @@ export const toggle = {
|
|
|
411
411
|
};
|
|
412
412
|
|
|
413
413
|
export const clickable = {
|
|
414
|
-
|
|
415
|
-
clickableNotToggle: 'inset-0 absolute bg-transparent',
|
|
414
|
+
toggle: 'absolute inset-0 h-full w-full appearance-none cursor-pointer focusable focusable-inset',
|
|
416
415
|
label: `px-12 ${label.label} py-8! cursor-pointer focusable focusable-inset`,
|
|
417
|
-
|
|
416
|
+
buttonOrLink: 'bg-transparent focusable',
|
|
417
|
+
buttonOrLinkStretch: 'inset-0 absolute',
|
|
418
418
|
};
|
|
419
419
|
|
|
420
420
|
export const combobox = {
|
package/package.json
CHANGED