@common-origin/design-system 1.5.0 → 1.6.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.
@@ -1,2 +1,2 @@
1
- export type IconName = 'add' | 'arrowDown' | 'arrowUp' | 'arrowLeft' | 'arrowRight' | 'back' | 'caret' | 'close' | 'directionRight' | 'menu' | 'pause' | 'play' | 'playBack' | 'lineOut' | 'message' | 'copy' | 'link' | 'userBox';
1
+ export type IconName = 'add' | 'arrowDown' | 'arrowUp' | 'arrowLeft' | 'arrowRight' | 'back' | 'caret' | 'check' | 'close' | 'directionRight' | 'menu' | 'pause' | 'play' | 'playBack' | 'lineOut' | 'message' | 'copy' | 'link' | 'userBox';
2
2
  export { default as iconsData } from '../styles/icons.json';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-origin/design-system",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "Common Origin Design System - Atomic design components with comprehensive WCAG 2.2 AA testing",
5
5
  "private": false,
6
6
  "type": "module",
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- type CoverImageProps = {
3
- title: string;
4
- src: string;
5
- slug?: string;
6
- width?: number;
7
- height?: number;
8
- 'data-testid'?: string;
9
- };
10
- export declare const CoverImage: React.FC<CoverImageProps>;
11
- export {};
@@ -1 +0,0 @@
1
- export * from './CoverImage';
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- type DateFormatterProps = {
3
- dateString: string;
4
- formatString?: string;
5
- };
6
- export declare const DateFormatter: React.FC<DateFormatterProps>;
7
- export {};