@pingux/astro 2.164.1-alpha.1 → 2.165.1-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/AccordionGridGroup/AccordionGridGroup.stories.js +107 -21
- package/lib/cjs/components/AccordionGridItem/AccordionGridItem.js +1 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +7 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +7 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.d.ts +2 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +3 -1
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +21 -0
- package/lib/cjs/styles/themes/next-gen/variants/accordionGrid.d.ts +22 -0
- package/lib/cjs/styles/themes/next-gen/variants/accordionGrid.js +31 -0
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +21 -0
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +2 -0
- package/lib/components/AccordionGridGroup/AccordionGridGroup.stories.js +107 -21
- package/lib/components/AccordionGridItem/AccordionGridItem.js +1 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +7 -0
- package/lib/styles/themes/next-gen/convertedComponentList.js +3 -1
- package/lib/styles/themes/next-gen/variants/accordionGrid.js +24 -0
- package/lib/styles/themes/next-gen/variants/variants.js +2 -0
- package/lib/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -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,
|