@pingux/astro 2.178.3 → 2.178.4-alpha.0
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/lib/cjs/components/Link/Link.styles.js +4 -0
- package/lib/cjs/components/NavBar/NavBar.styles.js +0 -4
- package/lib/cjs/libs/astro/src/components/Link/Link.styles.d.ts +24 -0
- package/lib/cjs/libs/astro/src/components/NavBar/NavBar.styles.d.ts +0 -3
- package/lib/cjs/libs/astro/src/styles/themeOverrides/onyxSideNav.d.ts +9 -3
- package/lib/cjs/libs/astro/src/styles/themeOverrides/uiLibraryOverride.d.ts +29 -0
- package/lib/cjs/libs/astro/tsconfig.lib.tsbuildinfo +1 -1
- package/lib/cjs/styles/themeOverrides/onyxSideNav.js +10 -4
- package/lib/cjs/styles/themeOverrides/uiLibraryOverride.js +29 -0
- package/lib/components/Link/Link.styles.js +4 -0
- package/lib/components/NavBar/NavBar.styles.js +0 -4
- package/lib/styles/themeOverrides/onyxSideNav.js +10 -4
- package/lib/styles/themeOverrides/uiLibraryOverride.js +29 -0
- package/package.json +1 -1
|
@@ -106,9 +106,13 @@ var skip = {
|
|
|
106
106
|
top: '10px'
|
|
107
107
|
}
|
|
108
108
|
};
|
|
109
|
+
var pingLogo = _objectSpread(_objectSpread({}, app), {}, {
|
|
110
|
+
padding: '15px'
|
|
111
|
+
});
|
|
109
112
|
var _default = exports["default"] = {
|
|
110
113
|
app: app,
|
|
111
114
|
skip: skip,
|
|
115
|
+
pingLogo: pingLogo,
|
|
112
116
|
popover: popover,
|
|
113
117
|
web: web,
|
|
114
118
|
copyRightLink: copyRightLink,
|
|
@@ -225,9 +225,6 @@ var popUpHeaderText = _objectSpread(_objectSpread({}, headerText), {}, {
|
|
|
225
225
|
color: 'white'
|
|
226
226
|
}
|
|
227
227
|
});
|
|
228
|
-
var logoParent = {
|
|
229
|
-
p: 'md'
|
|
230
|
-
};
|
|
231
228
|
var headerNav = {
|
|
232
229
|
cursor: 'pointer',
|
|
233
230
|
minHeight: '40px',
|
|
@@ -369,7 +366,6 @@ var _default = exports["default"] = {
|
|
|
369
366
|
itemLinkButtonColor: itemLinkButtonColor,
|
|
370
367
|
sectionList: sectionList,
|
|
371
368
|
sideNavItem: sideNavItem,
|
|
372
|
-
logoParent: logoParent,
|
|
373
369
|
itemIcon: itemIcon,
|
|
374
370
|
itemIconSelected: itemIconSelected,
|
|
375
371
|
itemCustomIcon: itemCustomIcon,
|
|
@@ -41,6 +41,30 @@ declare const _default: {
|
|
|
41
41
|
top: string;
|
|
42
42
|
};
|
|
43
43
|
};
|
|
44
|
+
pingLogo: {
|
|
45
|
+
padding: string;
|
|
46
|
+
color: string;
|
|
47
|
+
fontFamily: string;
|
|
48
|
+
fontSize: string;
|
|
49
|
+
textDecoration: string;
|
|
50
|
+
outline: string;
|
|
51
|
+
'&.is-hovered': {
|
|
52
|
+
textDecoration: string;
|
|
53
|
+
};
|
|
54
|
+
'&.is-focused': {
|
|
55
|
+
boxShadow: string;
|
|
56
|
+
outline: string;
|
|
57
|
+
outlineColor: string;
|
|
58
|
+
outlineOffset: string;
|
|
59
|
+
};
|
|
60
|
+
'&.is-pressed': {
|
|
61
|
+
color: string;
|
|
62
|
+
textDecoration: string;
|
|
63
|
+
};
|
|
64
|
+
'&.is-disabled': {
|
|
65
|
+
pointerEvents: string;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
44
68
|
popover: {
|
|
45
69
|
color: string;
|
|
46
70
|
fontSize: string;
|
|
@@ -18,9 +18,6 @@ declare const _default: {
|
|
|
18
18
|
boxShadow: string;
|
|
19
19
|
zIndex: number;
|
|
20
20
|
};
|
|
21
|
-
logoParent: {
|
|
22
|
-
p: string;
|
|
23
|
-
};
|
|
24
21
|
sectionContainer: {
|
|
25
22
|
pt: string;
|
|
26
23
|
};
|
|
@@ -268,6 +265,15 @@ declare const _default: {
|
|
|
268
265
|
MozBoxShadow: string;
|
|
269
266
|
};
|
|
270
267
|
};
|
|
268
|
+
pingLogo: {
|
|
269
|
+
padding: string;
|
|
270
|
+
borderRadius: string;
|
|
271
|
+
'&.is-focused': {
|
|
272
|
+
outline: string;
|
|
273
|
+
outlineColor: string;
|
|
274
|
+
outlineOffset: string;
|
|
275
|
+
};
|
|
276
|
+
};
|
|
271
277
|
};
|
|
272
278
|
icons: {
|
|
273
279
|
test: string;
|
|
@@ -83,6 +83,35 @@ declare const _default: {
|
|
|
83
83
|
app: {
|
|
84
84
|
'&:hover': any;
|
|
85
85
|
};
|
|
86
|
+
skip: {
|
|
87
|
+
'&:hover': {
|
|
88
|
+
color: string;
|
|
89
|
+
textDecoration: string;
|
|
90
|
+
'&:focus': {
|
|
91
|
+
outline: string;
|
|
92
|
+
outlineColor: string;
|
|
93
|
+
color: string;
|
|
94
|
+
textDecoration: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
'&:visited': {
|
|
98
|
+
color: string;
|
|
99
|
+
textDecoration: string;
|
|
100
|
+
};
|
|
101
|
+
'&.is-pressed': {
|
|
102
|
+
color: string;
|
|
103
|
+
textDecoration: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
pingLogo: {
|
|
107
|
+
'&:hover': {
|
|
108
|
+
'&.is-focused': {
|
|
109
|
+
outline: string;
|
|
110
|
+
outlineColor: string;
|
|
111
|
+
outlineOffset: string;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
};
|
|
86
115
|
};
|
|
87
116
|
variants: {
|
|
88
117
|
accordion: {
|