@kystverket/styrbord 1.6.4 → 1.6.6
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/dist/src/components/kystverket/DateTimePicker/DateTimePicker.d.ts +2 -1
- package/dist/src/components/kystverket/DateTimePicker/DateTimePicker.stories.d.ts +2 -0
- package/dist/src/components/kystverket/Icon/icon.types.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/style.js +222 -220
- package/dist/style.umd.cjs +4 -4
- package/package.json +1 -1
|
@@ -15,5 +15,6 @@ export interface DateTimePickerProps {
|
|
|
15
15
|
minDate?: Date;
|
|
16
16
|
maxDate?: Date;
|
|
17
17
|
disabled?: boolean;
|
|
18
|
+
withPortal?: boolean;
|
|
18
19
|
}
|
|
19
|
-
export declare const DateTimePicker: ({ value, onChange, dateTimeFormat, timeInputLabel, showCalendarIcon, minDate, maxDate, showMonthDropdown, showYearDropdown, ...props }: DateTimePickerProps) => React.JSX.Element;
|
|
20
|
+
export declare const DateTimePicker: ({ value, onChange, dateTimeFormat, timeInputLabel, showCalendarIcon, minDate, maxDate, withPortal, showMonthDropdown, showYearDropdown, ...props }: DateTimePickerProps) => React.JSX.Element;
|
|
@@ -20,6 +20,7 @@ declare const meta: {
|
|
|
20
20
|
minDate?: Date | undefined;
|
|
21
21
|
maxDate?: Date | undefined;
|
|
22
22
|
disabled?: boolean | undefined;
|
|
23
|
+
withPortal?: boolean | undefined;
|
|
23
24
|
}>) => React.JSX.Element))[];
|
|
24
25
|
tags: string[];
|
|
25
26
|
argTypes: {};
|
|
@@ -37,4 +38,5 @@ export declare const WithError: Story;
|
|
|
37
38
|
export declare const WithMinDate: Story;
|
|
38
39
|
export declare const WithMaxDate: Story;
|
|
39
40
|
export declare const WithMinAndMaxDate: Story;
|
|
41
|
+
export declare const WithPortal: Story;
|
|
40
42
|
export declare const WithYearAndMonthDropdown: Story;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const iconIdList: readonly ["add", "add_box", "add_location", "add_location_alt", "adjust", "anchor", "apps", "archive", "arrow_back", "arrow_forward", "arrow_right_alt", "article", "calendar_month", "change_history", "chat", "check", "check_circle", "chevron_left", "chevron_right", "circle", "close", "cloud_alert", "cloud_done", "code_blocks", "content_copy", "data_table", "delete", "description", "directions_boat", "distance", "domain", "download", "edit", "edit_document", "edit_location", "edit_location_alt", "edit_square", "error", "event", "explore", "explore_nearby", "export_notes", "favorite", "file_map", "file_save", "folder_open", "format_align_center", "format_align_left", "format_align_right", "forward", "globe_uk", "groups", "image", "inbox", "info", "info_i", "keyboard_arrow_down", "keyboard_arrow_up", "language", "layers", "lightbulb", "link", "location_chip", "lock", "login", "logout", "mail", "map", "map_pin_heart", "menu", "mode_cool", "more_vert", "move", "numbers", "open_in_new", "pan_zoom", "pending_actions", "person", "person_add", "person_pin", "person_pin_circle", "photo_camera", "picture_as_pdf", "pin_drop", "radio_button_checked", "radio_button_unchecked", "sailing", "save", "send", "settings", "settings_input_antenna", "severe_cold", "source_environment", "stylus", "timeline", "upload", "video_library", "videocam", "view_list", "warning", "zoom_in_map", "zoom_out_map", "format_italic", "format_bold", "format_list_bulleted", "format_list_numbered", "format_align_justify", "undo", "redo", "visibility"];
|
|
1
|
+
export declare const iconIdList: readonly ["add", "add_box", "add_location", "add_location_alt", "adjust", "anchor", "apps", "archive", "arrow_back", "arrow_forward", "arrow_right_alt", "article", "calendar_month", "change_history", "chat", "check", "check_circle", "chevron_left", "chevron_right", "circle", "close", "cloud_alert", "cloud_done", "code_blocks", "content_copy", "data_table", "delete", "description", "directions_boat", "distance", "domain", "download", "edit", "edit_document", "edit_location", "edit_location_alt", "edit_square", "error", "event", "explore", "explore_nearby", "export_notes", "favorite", "file_map", "file_save", "folder_open", "format_align_center", "format_align_left", "format_align_right", "forward", "globe_uk", "groups", "image", "inbox", "info", "info_i", "keyboard_arrow_down", "keyboard_arrow_up", "language", "layers", "lightbulb", "link", "location_chip", "lock", "login", "logout", "mail", "map", "map_pin_heart", "menu", "mode_cool", "more_vert", "move", "numbers", "open_in_new", "pan_zoom", "pending_actions", "person", "person_add", "person_pin", "person_pin_circle", "photo_camera", "picture_as_pdf", "pin_drop", "radio_button_checked", "radio_button_unchecked", "sailing", "save", "send", "settings", "settings_input_antenna", "severe_cold", "source_environment", "stylus", "timeline", "upload", "video_library", "videocam", "view_list", "warning", "zoom_in_map", "zoom_out_map", "format_italic", "format_bold", "format_list_bulleted", "format_list_numbered", "format_align_justify", "undo", "redo", "visibility", "left_panel_close", "left_panel_open", "right_panel_close", "right_panel_open"];
|
|
2
2
|
export type IconId = (typeof iconIdList)[number];
|