@pingux/astro 1.1.1-alpha.4 → 1.2.0-alpha.2
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/Breadcrumbs/BreadcrumbItem.js +3 -0
- package/lib/cjs/components/Breadcrumbs/Breadcrumbs.js +24 -14
- package/lib/cjs/components/Breadcrumbs/Breadcrumbs.test.js +9 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +338 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +295 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +287 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/index.js +18 -0
- package/lib/cjs/components/Link/Link.js +15 -4
- package/lib/cjs/components/Link/Link.stories.js +10 -0
- package/lib/cjs/components/Messages/Messages.reducer.js +2 -1
- package/lib/cjs/components/Messages/Messages.stories.js +10 -10
- package/lib/cjs/components/Messages/Messages.test.js +15 -1
- package/lib/cjs/components/Messages/index.js +21 -2
- package/lib/cjs/index.js +10 -0
- package/lib/cjs/styles/theme.js +1 -0
- package/lib/cjs/styles/variants/boxes.js +13 -0
- package/lib/cjs/styles/variants/buttons.js +23 -0
- package/lib/cjs/styles/variants/index.js +11 -1
- package/lib/cjs/styles/variants/links.js +67 -0
- package/lib/cjs/styles/variants/text.js +9 -0
- package/lib/cjs/styles/variants/variants.js +2 -2
- package/lib/cjs/utils/devUtils/constants/animals.js +11 -0
- package/lib/cjs/utils/devUtils/constants/firstNames.js +11 -0
- package/lib/cjs/utils/devUtils/createMockData.js +96 -0
- package/lib/components/Breadcrumbs/BreadcrumbItem.js +4 -1
- package/lib/components/Breadcrumbs/Breadcrumbs.js +24 -15
- package/lib/components/Breadcrumbs/Breadcrumbs.test.js +9 -0
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +296 -0
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +256 -0
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +246 -0
- package/lib/components/EnvironmentBreadcrumb/index.js +1 -0
- package/lib/components/Link/Link.js +16 -5
- package/lib/components/Link/Link.stories.js +8 -0
- package/lib/components/Messages/Messages.reducer.js +1 -1
- package/lib/components/Messages/Messages.stories.js +1 -1
- package/lib/components/Messages/Messages.test.js +11 -1
- package/lib/components/Messages/index.js +2 -1
- package/lib/index.js +1 -0
- package/lib/styles/theme.js +2 -1
- package/lib/styles/variants/boxes.js +13 -0
- package/lib/styles/variants/buttons.js +23 -0
- package/lib/styles/variants/index.js +1 -0
- package/lib/styles/variants/links.js +46 -0
- package/lib/styles/variants/text.js +9 -0
- package/lib/styles/variants/variants.js +2 -2
- package/lib/utils/devUtils/constants/animals.js +1 -0
- package/lib/utils/devUtils/constants/firstNames.js +1 -0
- package/lib/utils/devUtils/createMockData.js +68 -0
- package/package.json +1 -1
- package/lib/cjs/styles/variants/link.js +0 -27
- package/lib/styles/variants/link.js +0 -17
@@ -1,27 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
|
4
|
-
|
5
|
-
_Object$defineProperty(exports, "__esModule", {
|
6
|
-
value: true
|
7
|
-
});
|
8
|
-
|
9
|
-
exports["default"] = void 0;
|
10
|
-
var link = {
|
11
|
-
color: 'white',
|
12
|
-
fontFamily: 'standard',
|
13
|
-
fontSize: 'md',
|
14
|
-
textDecoration: 'none',
|
15
|
-
outline: 'none',
|
16
|
-
'&.is-hovered': {
|
17
|
-
textDecoration: 'underline'
|
18
|
-
},
|
19
|
-
'&.is-focused': {
|
20
|
-
textDecoration: 'underline'
|
21
|
-
},
|
22
|
-
'&.is-disabled': {
|
23
|
-
pointerEvents: 'none'
|
24
|
-
}
|
25
|
-
};
|
26
|
-
var _default = link;
|
27
|
-
exports["default"] = _default;
|
@@ -1,17 +0,0 @@
|
|
1
|
-
var link = {
|
2
|
-
color: 'white',
|
3
|
-
fontFamily: 'standard',
|
4
|
-
fontSize: 'md',
|
5
|
-
textDecoration: 'none',
|
6
|
-
outline: 'none',
|
7
|
-
'&.is-hovered': {
|
8
|
-
textDecoration: 'underline'
|
9
|
-
},
|
10
|
-
'&.is-focused': {
|
11
|
-
textDecoration: 'underline'
|
12
|
-
},
|
13
|
-
'&.is-disabled': {
|
14
|
-
pointerEvents: 'none'
|
15
|
-
}
|
16
|
-
};
|
17
|
-
export default link;
|