@warp-ds/css 1.1.3-next.1 → 1.2.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.
|
@@ -2,6 +2,7 @@ export namespace attention {
|
|
|
2
2
|
const base: string;
|
|
3
3
|
const tooltip: string;
|
|
4
4
|
const callout: string;
|
|
5
|
+
const highlight: string;
|
|
5
6
|
const popover: string;
|
|
6
7
|
const arrowBase: string;
|
|
7
8
|
const arrowDirectionLeft: string;
|
|
@@ -11,6 +12,7 @@ export namespace attention {
|
|
|
11
12
|
const arrowTooltip: string;
|
|
12
13
|
const arrowCallout: string;
|
|
13
14
|
const arrowPopover: string;
|
|
15
|
+
const arrowHighlight: string;
|
|
14
16
|
const content: string;
|
|
15
17
|
const notCallout: string;
|
|
16
18
|
}
|
|
@@ -3,6 +3,7 @@ export const attention = {
|
|
|
3
3
|
tooltip:
|
|
4
4
|
'i-bg-$color-tooltip-background i-border-$color-tooltip-background i-shadow-$shadow-tooltip i-text-$color-tooltip-text rounded-4 py-6 px-8',
|
|
5
5
|
callout: 'i-bg-$color-callout-background i-border-$color-callout-border i-text-$color-callout-text py-8 px-16 rounded-8',
|
|
6
|
+
highlight: 'i-bg-$color-callout-background i-border-$color-callout-border i-text-$color-callout-text py-8 px-16 rounded-8 drop-shadow-m',
|
|
6
7
|
popover:
|
|
7
8
|
'i-bg-$color-popover-background i-border-$color-popover-background i-text-$color-popover-paragraph-text rounded-8 p-16 drop-shadow-m',
|
|
8
9
|
arrowBase:
|
|
@@ -14,6 +15,7 @@ export const attention = {
|
|
|
14
15
|
arrowTooltip: 'i-bg-$color-tooltip-background i-border-$color-tooltip-background',
|
|
15
16
|
arrowCallout: 'i-bg-$color-callout-background i-border-$color-callout-border',
|
|
16
17
|
arrowPopover: 'i-bg-$color-popover-background i-border-$color-popover-background',
|
|
18
|
+
arrowHighlight: 'i-bg-$color-callout-background i-border-$color-callout-border',
|
|
17
19
|
content: 'last-child:mb-0',
|
|
18
20
|
notCallout: 'absolute z-50',
|
|
19
21
|
};
|
package/package.json
CHANGED