@kystverket/styrbord 1.0.18 → 1.1.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,7 +1,7 @@
1
1
  import type { StoryFn } from '@storybook/react';
2
2
  declare const meta: {
3
3
  title: string;
4
- component: ({ material, filled, className, size }: import("~/components/kystverket/Icon/icon").MaterialIconProps) => React.JSX.Element;
4
+ component: ({ material, filled, className, size, title }: import("~/components/kystverket/Icon/icon").MaterialIconProps) => React.JSX.Element;
5
5
  decorators: ((Story: import("@storybook/types").PartialStoryFn) => React.JSX.Element)[];
6
6
  tags: string[];
7
7
  argTypes: {};
@@ -5,6 +5,7 @@ export interface MaterialIconProps {
5
5
  filled?: boolean;
6
6
  className?: string;
7
7
  size?: IconSize;
8
+ title?: string;
8
9
  }
9
- declare const Icon: ({ material, filled, className, size }: MaterialIconProps) => React.JSX.Element;
10
+ declare const Icon: ({ material, filled, className, size, title }: MaterialIconProps) => React.JSX.Element;
10
11
  export default Icon;
@@ -1,2 +1,2 @@
1
- export declare const iconIdList: readonly ["add", "adjust", "anchor", "arrow_back", "arrow_forward", "arrow_right_alt", "article", "calendar_month", "change_history", "check_circle", "check", "chevron_left", "chevron_right", "circle", "close", "cloud_alert", "cloud_done", "content_copy", "data_table", "delete", "distance", "domain", "download", "edit_square", "edit", "error", "event", "file_save", "info", "keyboard_arrow_down", "keyboard_arrow_up", "lightbulb", "link", "lock", "login", "logout", "menu", "mode_cool", "more_vert", "open_in_new", "pending_actions", "person_add", "person", "radio_button_checked", "radio_button_unchecked", "sailing", "settings_input_antenna", "settings", "severe_cold", "source_environment", "stylus", "timeline", "video_library", "view_list", "warning", "numbers", "description"];
1
+ export declare const iconIdList: readonly ["add", "adjust", "anchor", "archive", "arrow_back", "arrow_forward", "arrow_right_alt", "article", "calendar_month", "change_history", "chat", "check_circle", "check", "chevron_left", "chevron_right", "circle", "close", "cloud_alert", "cloud_done", "content_copy", "data_table", "delete", "description", "distance", "domain", "download", "edit_document", "edit_square", "edit", "error", "event", "favorite", "file_save", "format_align_center", "format_align_left", "format_align_right", "inbox", "info", "keyboard_arrow_down", "keyboard_arrow_up", "lightbulb", "link", "lock", "login", "logout", "mail", "menu", "mode_cool", "more_vert", "numbers", "open_in_new", "pending_actions", "person_add", "person", "radio_button_checked", "radio_button_unchecked", "sailing", "send", "settings_input_antenna", "settings", "severe_cold", "source_environment", "stylus", "timeline", "video_library", "videocam", "view_list", "warning"];
2
2
  export type IconId = (typeof iconIdList)[number];