@goodhood-web/ui 3.4.0-development.12 → 3.4.0-development.13

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,4 +1,5 @@
1
1
  import { AriaRole } from 'react';
2
+ import { default as icons24_coloured } from './icons/coloured/24x24';
2
3
  import { default as icons32_coloured } from './icons/coloured/32x32';
3
4
  import { default as icons16_filled } from './icons/filled/16x16';
4
5
  import { default as icons24_filled } from './icons/filled/24x24';
@@ -7,8 +8,8 @@ import { default as icons16_outline } from './icons/outline/16x16';
7
8
  import { default as icons24_outline } from './icons/outline/24x24';
8
9
  import { default as icons32_outline } from './icons/outline/32x32';
9
10
  export type Icon32 = keyof typeof icons32_outline | keyof typeof icons32_filled | keyof typeof icons32_coloured;
10
- export type Icon24 = keyof typeof icons24_outline | keyof typeof icons24_filled;
11
- export type Icon16 = keyof typeof icons16_outline | keyof typeof icons16_filled;
11
+ export type Icon24 = keyof typeof icons24_outline | keyof typeof icons24_filled | keyof typeof icons24_coloured;
12
+ export type Icon16 = keyof typeof icons16_outline | keyof typeof icons16_filled | keyof typeof icons24_coloured;
12
13
  export declare const iconNames16: string[];
13
14
  export declare const iconNames24: string[];
14
15
  export declare const iconNames32: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "3.4.0-development.12",
3
+ "version": "3.4.0-development.13",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",