@warp-ds/css 1.8.5-next.1 → 1.9.0-next.1

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.
@@ -468,10 +468,18 @@ export namespace attention {
468
468
  export let highlight: string;
469
469
  export let popover: string;
470
470
  export let arrowBase: string;
471
+ export let arrowDirectionLeftStart: string;
471
472
  export let arrowDirectionLeft: string;
473
+ export let arrowDirectionLeftEnd: string;
474
+ export let arrowDirectionRightStart: string;
472
475
  export let arrowDirectionRight: string;
476
+ export let arrowDirectionRightEnd: string;
477
+ export let arrowDirectionBottomStart: string;
473
478
  export let arrowDirectionBottom: string;
479
+ export let arrowDirectionBottomEnd: string;
480
+ export let arrowDirectionTopStart: string;
474
481
  export let arrowDirectionTop: string;
482
+ export let arrowDirectionTopEnd: string;
475
483
  export let arrowTooltip: string;
476
484
  export let arrowCallout: string;
477
485
  export let arrowPopover: string;
@@ -504,13 +504,21 @@ export const attention = {
504
504
  base: 'border-2 relative flex items-start',
505
505
  tooltip: 's-bg-inverted border-[--w-s-color-background-inverted] shadow-m s-text-inverted rounded-4 py-6 px-8',
506
506
  callout: 'bg-[--w-color-callout-background] border-[--w-color-callout-border] s-text py-8 px-16 rounded-8',
507
- highlight: 'bg-[--w-color-callout-background] border-[--w-color-callout-border] s-text py-8 px-16 rounded-8 drop-shadow-m',
508
- popover: 's-bg border-[--w-s-color-background] s-text rounded-8 p-16 drop-shadow-m',
507
+ highlight: 'bg-[--w-color-callout-background] border-[--w-color-callout-border] s-text py-8 px-16 rounded-8 drop-shadow-m translate-z-0',
508
+ popover: 's-bg border-[--w-s-color-background] s-text rounded-8 p-16 drop-shadow-m translate-z-0',
509
509
  arrowBase: 'absolute h-[14px] w-[14px] border-2 border-b-0 border-r-0 rounded-tl-4 transform',
510
+ arrowDirectionLeftStart: '-left-[8px]',
510
511
  arrowDirectionLeft: '-left-[8px]',
512
+ arrowDirectionLeftEnd: '-left-[8px]',
513
+ arrowDirectionRightStart: '-right-[8px]',
511
514
  arrowDirectionRight: '-right-[8px]',
515
+ arrowDirectionRightEnd: '-right-[8px]',
516
+ arrowDirectionBottomStart: '-bottom-[8px]',
512
517
  arrowDirectionBottom: '-bottom-[8px]',
518
+ arrowDirectionBottomEnd: '-bottom-[8px]',
519
+ arrowDirectionTopStart: '-top-[8px]',
513
520
  arrowDirectionTop: '-top-[8px]',
521
+ arrowDirectionTopEnd: '-top-[8px]',
514
522
  arrowTooltip: 's-bg-inverted border-[--w-s-color-background-inverted]',
515
523
  arrowCallout: 'bg-[--w-color-callout-background] border-[--w-color-callout-border]',
516
524
  arrowPopover: 's-bg border-[--w-s-color-background]',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@warp-ds/css",
3
3
  "repository": "git@github.com:warp-ds/css.git",
4
- "version": "1.8.5-next.1",
4
+ "version": "1.9.0-next.1",
5
5
  "scripts": {
6
6
  "build": "pnpm build:tokens && pnpm build:resets && pnpm build:cc",
7
7
  "commit": "cz",