@4alldigital/foundation-ui--gamma 1.44.1 → 1.44.3

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.
@@ -1 +1,2 @@
1
- export declare const cardWrapperClasses = "relative rounded-lg overflow-hidden transition duration-300 ease-in-out cursor-pointer hover:scale-105 shadow hover:shadow-lg bg-white text-black hover:bg-primary hover:text-bodyText-inverted";
1
+ export declare const cardWrapperClasses = "relative rounded-lg overflow-hidden cursor-pointer hover:scale-105 shadow hover:shadow-lg bg-white text-black hover:bg-primary hover:text-bodyTextInverted group";
2
+ export declare const animateClasses = "transition duration-300 ease-in-out ";
@@ -0,0 +1,7 @@
1
+ import { Props } from './ListItem.types';
2
+ declare const ListItem: {
3
+ ({ children, as: Tag, id, testID, className }: Props): React.ReactElement;
4
+ displayName: string;
5
+ };
6
+ export default ListItem;
7
+ export type { Props };
@@ -0,0 +1 @@
1
+ export { default } from './ListItem';
@@ -13,6 +13,7 @@ export { default as Label } from './Label';
13
13
  export { default as Link } from './Link';
14
14
  export { default as List } from './List';
15
15
  export { default as Logo } from './Logo';
16
+ export { default as ListItem } from './ListItem';
16
17
  export { default as Notice } from './Notice';
17
18
  export { default as Radio } from './Radio';
18
19
  export { default as Switch } from './Switch';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4alldigital/foundation-ui--gamma",
3
- "version": "1.44.1",
3
+ "version": "1.44.3",
4
4
  "description": "Foundation UI Component library with GAMMA theme. ",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -39,7 +39,7 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "9c50b9d0961502d89cbd3095320aed2401a235e6",
42
+ "gitHead": "a71b0a6904161c5893677939156fee34b61e5fab",
43
43
  "dependencies": {
44
44
  "@elastic/datemath": "^5.0.3",
45
45
  "@elastic/react-search-ui": "^1.21.1",
@@ -83,5 +83,8 @@
83
83
  "bugs": {
84
84
  "url": "https://github.com/4AllDigital/foundation-ui/issues"
85
85
  },
86
- "homepage": "https://github.com/4AllDigital/foundation-ui#readme"
86
+ "homepage": "https://github.com/4AllDigital/foundation-ui#readme",
87
+ "devDependencies": {
88
+ "moment": "^2.30.1"
89
+ }
87
90
  }