@pingux/astro 2.165.0 → 2.165.1-alpha.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.
@@ -0,0 +1,24 @@
1
+ var header = {
2
+ px: 'lg',
3
+ py: 'md',
4
+ minHeight: '75px',
5
+ border: 'none',
6
+ '&.is-hovered': {
7
+ backgroundColor: 'gray-100'
8
+ },
9
+ '&.is-focused': {
10
+ outline: '2px solid',
11
+ outlineColor: 'focus',
12
+ outlineOffset: '0'
13
+ }
14
+ };
15
+ var body = {
16
+ p: 'lg',
17
+ pt: 0
18
+ };
19
+ var item = {};
20
+ export default {
21
+ header: header,
22
+ body: body,
23
+ item: item
24
+ };
@@ -13,6 +13,7 @@ import attachment from '../../../../components/AIComponents/Attachment/Attachmen
13
13
  import skeleton from '../../../../components/Skeleton/Skeleton.styles';
14
14
  import codeView from '../codeView/codeView';
15
15
  import accordion from './accordion';
16
+ import accordionGrid from './accordionGrid';
16
17
  import { avatar } from './avatar';
17
18
  import { box } from './box';
18
19
  import button, { defaultFocus } from './button';
@@ -415,6 +416,7 @@ var statusIcon = {
415
416
  };
416
417
  export default {
417
418
  accordion: accordion,
419
+ accordionGrid: accordionGrid,
418
420
  attachment: attachment,
419
421
  avatar: avatar,
420
422
  breadcrumb: breadcrumb,