@dpa-id-components/dpa-shared-components 13.0.0 → 13.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.
@@ -31,8 +31,8 @@ declare const meta: {
31
31
  $: import('vue').ComponentInternalInstance;
32
32
  $data: {};
33
33
  $props: {
34
- readonly id?: string | undefined;
35
34
  readonly modelValue?: string | undefined;
35
+ readonly id?: string | undefined;
36
36
  readonly type?: "text" | "number" | "time" | "date" | "password" | "datetime-local" | undefined;
37
37
  readonly label?: string | undefined;
38
38
  readonly placeholder?: string | undefined;
@@ -55,7 +55,7 @@ declare const meta: {
55
55
  readonly onFocus?: ((args_0: FocusEvent) => any) | undefined;
56
56
  readonly onInput?: ((args_0: string) => any) | undefined;
57
57
  readonly onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
58
- readonly "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
58
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
59
59
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
60
60
  $attrs: {
61
61
  [x: string]: unknown;
@@ -71,11 +71,12 @@ declare const meta: {
71
71
  $root: import('vue').ComponentPublicInstance | null;
72
72
  $parent: import('vue').ComponentPublicInstance | null;
73
73
  $host: Element | null;
74
- $emit: ((event: "blur", args_0: FocusEvent) => void) & ((event: "focus", args_0: FocusEvent) => void) & ((event: "input", args_0: string) => void) & ((event: "keyup", args_0: KeyboardEvent) => void) & ((event: "update:modelValue", args_0: string) => void);
74
+ $emit: ((event: "blur", args_0: FocusEvent) => void) & ((event: "focus", args_0: FocusEvent) => void) & ((event: "input", args_0: string) => void) & ((event: "keyup", args_0: KeyboardEvent) => void) & ((event: "update:modelValue", value: string) => void);
75
75
  $el: any;
76
76
  $options: import('vue').ComponentOptionsBase<Readonly<{
77
- id?: string;
78
77
  modelValue?: string;
78
+ } & {
79
+ id?: string;
79
80
  type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
80
81
  label?: string;
81
82
  placeholder?: string;
@@ -99,7 +100,7 @@ declare const meta: {
99
100
  onFocus?: ((args_0: FocusEvent) => any) | undefined;
100
101
  onInput?: ((args_0: string) => any) | undefined;
101
102
  onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
102
- "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
103
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
103
104
  }>, {
104
105
  inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
105
106
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -107,14 +108,13 @@ declare const meta: {
107
108
  focus: (args_0: FocusEvent) => any;
108
109
  input: (args_0: string) => any;
109
110
  keyup: (args_0: KeyboardEvent) => any;
110
- "update:modelValue": (args_0: string) => any;
111
+ "update:modelValue": (value: string) => any;
111
112
  }, string, {
112
113
  label: string;
113
114
  type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
114
115
  disabled: boolean;
115
116
  readonly: boolean;
116
117
  id: string;
117
- modelValue: string;
118
118
  placeholder: string;
119
119
  autofocus: boolean;
120
120
  chevron: boolean;
@@ -155,7 +155,6 @@ declare const meta: {
155
155
  disabled: boolean;
156
156
  readonly: boolean;
157
157
  id: string;
158
- modelValue: string;
159
158
  placeholder: string;
160
159
  autofocus: boolean;
161
160
  chevron: boolean;
@@ -171,8 +170,9 @@ declare const meta: {
171
170
  inputStatus: "default" | "info" | "readonly" | "warning" | "error";
172
171
  isUiAutocomplete: boolean;
173
172
  }> & Omit<Readonly<{
174
- id?: string;
175
173
  modelValue?: string;
174
+ } & {
175
+ id?: string;
176
176
  type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
177
177
  label?: string;
178
178
  placeholder?: string;
@@ -196,8 +196,8 @@ declare const meta: {
196
196
  onFocus?: ((args_0: FocusEvent) => any) | undefined;
197
197
  onInput?: ((args_0: string) => any) | undefined;
198
198
  onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
199
- "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
200
- }>, "inputRef" | ("label" | "type" | "disabled" | "readonly" | "id" | "modelValue" | "placeholder" | "autofocus" | "chevron" | "isDateTimePicker" | "autocomplete" | "isInvalid" | "errorMessage" | "showWarning" | "warningMessage" | "isTextarea" | "hasInfo" | "infoText" | "inputStatus" | "isUiAutocomplete")> & import('vue').ShallowUnwrapRef<{
199
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
200
+ }>, "inputRef" | ("label" | "type" | "disabled" | "readonly" | "id" | "placeholder" | "autofocus" | "chevron" | "isDateTimePicker" | "autocomplete" | "isInvalid" | "errorMessage" | "showWarning" | "warningMessage" | "isTextarea" | "hasInfo" | "infoText" | "inputStatus" | "isUiAutocomplete")> & import('vue').ShallowUnwrapRef<{
201
201
  inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
202
202
  }> & {} & import('vue').ComponentCustomProperties & {} & {
203
203
  $slots: {
@@ -22,8 +22,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
22
22
  $: import('vue').ComponentInternalInstance;
23
23
  $data: {};
24
24
  $props: {
25
- readonly id?: string | undefined;
26
25
  readonly modelValue?: string | undefined;
26
+ readonly id?: string | undefined;
27
27
  readonly type?: "text" | "number" | "time" | "date" | "password" | "datetime-local" | undefined;
28
28
  readonly label?: string | undefined;
29
29
  readonly placeholder?: string | undefined;
@@ -46,7 +46,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
46
46
  readonly onFocus?: ((args_0: FocusEvent) => any) | undefined;
47
47
  readonly onInput?: ((args_0: string) => any) | undefined;
48
48
  readonly onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
49
- readonly "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
49
+ readonly "onUpdate:modelValue"?: ((value: string) => any) | undefined;
50
50
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
51
51
  $attrs: {
52
52
  [x: string]: unknown;
@@ -62,11 +62,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
62
62
  $root: import('vue').ComponentPublicInstance | null;
63
63
  $parent: import('vue').ComponentPublicInstance | null;
64
64
  $host: Element | null;
65
- $emit: ((event: "blur", args_0: FocusEvent) => void) & ((event: "focus", args_0: FocusEvent) => void) & ((event: "input", args_0: string) => void) & ((event: "keyup", args_0: KeyboardEvent) => void) & ((event: "update:modelValue", args_0: string) => void);
65
+ $emit: ((event: "blur", args_0: FocusEvent) => void) & ((event: "focus", args_0: FocusEvent) => void) & ((event: "input", args_0: string) => void) & ((event: "keyup", args_0: KeyboardEvent) => void) & ((event: "update:modelValue", value: string) => void);
66
66
  $el: any;
67
67
  $options: import('vue').ComponentOptionsBase<Readonly<{
68
- id?: string;
69
68
  modelValue?: string;
69
+ } & {
70
+ id?: string;
70
71
  type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
71
72
  label?: string;
72
73
  placeholder?: string;
@@ -90,7 +91,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
90
91
  onFocus?: ((args_0: FocusEvent) => any) | undefined;
91
92
  onInput?: ((args_0: string) => any) | undefined;
92
93
  onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
93
- "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
94
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
94
95
  }>, {
95
96
  inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
96
97
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -98,14 +99,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
98
99
  focus: (args_0: FocusEvent) => any;
99
100
  input: (args_0: string) => any;
100
101
  keyup: (args_0: KeyboardEvent) => any;
101
- "update:modelValue": (args_0: string) => any;
102
+ "update:modelValue": (value: string) => any;
102
103
  }, string, {
103
104
  label: string;
104
105
  type: "text" | "number" | "time" | "date" | "password" | "datetime-local";
105
106
  disabled: boolean;
106
107
  readonly: boolean;
107
108
  id: string;
108
- modelValue: string;
109
109
  placeholder: string;
110
110
  autofocus: boolean;
111
111
  chevron: boolean;
@@ -146,7 +146,6 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
146
146
  disabled: boolean;
147
147
  readonly: boolean;
148
148
  id: string;
149
- modelValue: string;
150
149
  placeholder: string;
151
150
  autofocus: boolean;
152
151
  chevron: boolean;
@@ -162,8 +161,9 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
162
161
  inputStatus: "default" | "info" | "readonly" | "warning" | "error";
163
162
  isUiAutocomplete: boolean;
164
163
  }> & Omit<Readonly<{
165
- id?: string;
166
164
  modelValue?: string;
165
+ } & {
166
+ id?: string;
167
167
  type?: "text" | "number" | "time" | "date" | "password" | "datetime-local";
168
168
  label?: string;
169
169
  placeholder?: string;
@@ -187,8 +187,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
187
187
  onFocus?: ((args_0: FocusEvent) => any) | undefined;
188
188
  onInput?: ((args_0: string) => any) | undefined;
189
189
  onKeyup?: ((args_0: KeyboardEvent) => any) | undefined;
190
- "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
191
- }>, "inputRef" | ("label" | "type" | "disabled" | "readonly" | "id" | "modelValue" | "placeholder" | "autofocus" | "chevron" | "isDateTimePicker" | "autocomplete" | "isInvalid" | "errorMessage" | "showWarning" | "warningMessage" | "isTextarea" | "hasInfo" | "infoText" | "inputStatus" | "isUiAutocomplete")> & import('vue').ShallowUnwrapRef<{
190
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
191
+ }>, "inputRef" | ("label" | "type" | "disabled" | "readonly" | "id" | "placeholder" | "autofocus" | "chevron" | "isDateTimePicker" | "autocomplete" | "isInvalid" | "errorMessage" | "showWarning" | "warningMessage" | "isTextarea" | "hasInfo" | "infoText" | "inputStatus" | "isUiAutocomplete")> & import('vue').ShallowUnwrapRef<{
192
192
  inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
193
193
  }> & {} & import('vue').ComponentCustomProperties & {} & {
194
194
  $slots: {
@@ -76,7 +76,7 @@ declare const meta: {
76
76
  };
77
77
  iconName: {
78
78
  control: "select";
79
- options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up" | null)[];
79
+ options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "list-search" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up" | null)[];
80
80
  };
81
81
  mobileTrim: {
82
82
  control: "boolean";
@@ -79,7 +79,7 @@ declare const meta: {
79
79
  argTypes: {
80
80
  iconName: {
81
81
  control: "select";
82
- options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
82
+ options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "list-search" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
83
83
  };
84
84
  disabled: {
85
85
  control: "boolean";
@@ -234,9 +234,9 @@ declare const meta: {
234
234
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
235
235
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
236
236
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
237
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
238
237
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
239
238
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
239
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
240
240
  readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
241
241
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
242
242
  static: boolean;
@@ -767,9 +767,9 @@ declare const meta: {
767
767
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
768
768
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
769
769
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
770
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
771
770
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
772
771
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
772
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
773
773
  readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
774
774
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
775
775
  static: boolean;
@@ -1408,7 +1408,7 @@ declare const meta: {
1408
1408
  };
1409
1409
  iconLeft: {
1410
1410
  control: "select";
1411
- options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
1411
+ options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "list-search" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
1412
1412
  };
1413
1413
  };
1414
1414
  args: {
@@ -1670,9 +1670,9 @@ declare const meta: {
1670
1670
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
1671
1671
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
1672
1672
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
1673
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
1674
1673
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
1675
1674
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
1675
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
1676
1676
  readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
1677
1677
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
1678
1678
  static: boolean;
@@ -2203,9 +2203,9 @@ declare const meta: {
2203
2203
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
2204
2204
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
2205
2205
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
2206
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
2207
2206
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
2208
2207
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
2208
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
2209
2209
  readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
2210
2210
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
2211
2211
  static: boolean;
@@ -3000,9 +3000,9 @@ declare const meta: {
3000
3000
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
3001
3001
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
3002
3002
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
3003
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
3004
3003
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
3005
3004
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
3005
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
3006
3006
  readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
3007
3007
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
3008
3008
  static: boolean;
@@ -3533,9 +3533,9 @@ declare const meta: {
3533
3533
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
3534
3534
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
3535
3535
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
3536
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
3537
3536
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
3538
3537
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
3538
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
3539
3539
  readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
3540
3540
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
3541
3541
  static: boolean;
@@ -4331,9 +4331,9 @@ declare const meta: {
4331
4331
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
4332
4332
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
4333
4333
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
4334
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
4335
4334
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
4336
4335
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
4336
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
4337
4337
  readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
4338
4338
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
4339
4339
  static: boolean;
@@ -4864,9 +4864,9 @@ declare const meta: {
4864
4864
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
4865
4865
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
4866
4866
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
4867
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
4868
4867
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
4869
4868
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
4869
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
4870
4870
  readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
4871
4871
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
4872
4872
  static: boolean;
@@ -197,9 +197,9 @@ declare function __VLS_template(): {
197
197
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
198
198
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
199
199
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
200
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
201
200
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
202
201
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
202
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
203
203
  readonly range?: import('vue').Prop<boolean | RangeConfig | undefined, boolean | RangeConfig | undefined> | null | undefined;
204
204
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
205
205
  static: boolean;
@@ -730,9 +730,9 @@ declare function __VLS_template(): {
730
730
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
731
731
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
732
732
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
733
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
734
733
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
735
734
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
735
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
736
736
  readonly range?: import('vue').Prop<boolean | RangeConfig | undefined, boolean | RangeConfig | undefined> | null | undefined;
737
737
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
738
738
  static: boolean;
@@ -1315,9 +1315,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
1315
1315
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
1316
1316
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
1317
1317
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
1318
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
1319
1318
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
1320
1319
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
1320
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
1321
1321
  readonly range?: import('vue').Prop<boolean | RangeConfig | undefined, boolean | RangeConfig | undefined> | null | undefined;
1322
1322
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
1323
1323
  static: boolean;
@@ -1848,9 +1848,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
1848
1848
  readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
1849
1849
  readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
1850
1850
  readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
1851
- readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
1852
1851
  readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
1853
1852
  readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
1853
+ readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
1854
1854
  readonly range?: import('vue').Prop<boolean | RangeConfig | undefined, boolean | RangeConfig | undefined> | null | undefined;
1855
1855
  readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
1856
1856
  static: boolean;
@@ -49,7 +49,7 @@ declare const meta: {
49
49
  };
50
50
  chevronIcon: {
51
51
  control: "select";
52
- options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
52
+ options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "list-search" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
53
53
  };
54
54
  rotateIcon: {
55
55
  control: "boolean";
@@ -65,7 +65,7 @@ declare const meta: {
65
65
  };
66
66
  iconLeft: {
67
67
  control: "select";
68
- options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
68
+ options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "list-search" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
69
69
  };
70
70
  iconSize: {
71
71
  control: "select";
@@ -16,7 +16,7 @@ declare const meta: {
16
16
  argTypes: {
17
17
  name: {
18
18
  control: "select";
19
- options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
19
+ options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "list-search" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
20
20
  };
21
21
  size: {
22
22
  control: "select";
@@ -1 +1 @@
1
- export declare const iconNames: readonly ["activities", "alert", "alert-fill", "alert-octagon", "ai", "apps", "archive", "arrow-left", "arrow-nav-left", "arrow-nav-right", "arrow-up", "arrow-right", "arrow-down", "arrowhead-left", "arrowhead-right", "arrowhead-top", "atmo", "audio", "audio-circled", "audio-filled", "bag", "bell", "bell-fill", "book", "bookmark", "bookmark-fill", "bookmark-outlined", "box", "bulb", "call", "camera", "check", "checklist", "checkmark", "checkmark-double", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "clipboard", "clock", "close", "cloud-save", "code", "collapse", "color-palette", "comment", "comment-fill", "copy", "copy-link", "delete", "download", "dpa-id", "edit", "edit-add", "eil", "emoji", "emoji-add", "envelope", "event", "expand", "external-link", "file", "file-pdf", "filter", "filter-outline", "flag", "flag-fill", "flag-filled", "flag-outline", "flags", "flash", "folder", "folder-add", "folder-fill", "folder-filled", "gallery", "graphic", "graphic-circled", "graphic-filled", "graphics", "grid-1", "grid-2", "grid-3", "grid-4", "grid-6", "grid-9", "grid-masonry", "grid-masonry-9", "help", "home", "image", "image focus point", "impact-high", "impact-low", "impact-medium", "impact-very-high", "impact-very-low", "info", "info-fill", "info-filled", "label", "label-filled", "language", "latest", "lightbulb", "list", "lock", "lock-filled", "mail", "map", "map-outline", "menu", "minus", "more-horizontal", "more-vertical", "move", "move-up-down", "navigation", "note", "offline", "paper-plane", "paperplane", "pause", "pause-circle", "pdf", "pen", "pen-check", "people", "phone", "picture", "picture-circled", "picture-filled", "pin", "planning", "play", "play-circle", "play-fill", "plus", "plus-circle", "print", "refresh", "reset", "responsive", "rubix-thema", "save", "saved-search", "saved-search-fill", "search", "settings", "share", "share-alternative", "sidebar", "sidebar-fill", "slack", "slider-config", "spellcheck", "spinner", "standard-view", "star", "star-fill", "star-filled", "stop", "story", "sync", "tasks", "text", "text-circled", "text-filled", "thumbs-down", "thumbs-up", "thumbs-up-double", "topic", "union", "upload", "video", "video overlay", "video-circled", "video-filled", "view", "view-off", "volume-up"];
1
+ export declare const iconNames: readonly ["activities", "alert", "alert-fill", "alert-octagon", "ai", "apps", "archive", "arrow-left", "arrow-nav-left", "arrow-nav-right", "arrow-up", "arrow-right", "arrow-down", "arrowhead-left", "arrowhead-right", "arrowhead-top", "atmo", "audio", "audio-circled", "audio-filled", "bag", "bell", "bell-fill", "book", "bookmark", "bookmark-fill", "bookmark-outlined", "box", "bulb", "call", "camera", "check", "checklist", "checkmark", "checkmark-double", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "clipboard", "clock", "close", "cloud-save", "code", "collapse", "color-palette", "comment", "comment-fill", "copy", "copy-link", "delete", "download", "dpa-id", "edit", "edit-add", "eil", "emoji", "emoji-add", "envelope", "event", "expand", "external-link", "file", "file-pdf", "filter", "filter-outline", "flag", "flag-fill", "flag-filled", "flag-outline", "flags", "flash", "folder", "folder-add", "folder-fill", "folder-filled", "gallery", "graphic", "graphic-circled", "graphic-filled", "graphics", "grid-1", "grid-2", "grid-3", "grid-4", "grid-6", "grid-9", "grid-masonry", "grid-masonry-9", "help", "home", "image", "image focus point", "impact-high", "impact-low", "impact-medium", "impact-very-high", "impact-very-low", "info", "info-fill", "info-filled", "label", "label-filled", "language", "latest", "lightbulb", "list", "list-search", "lock", "lock-filled", "mail", "map", "map-outline", "menu", "minus", "more-horizontal", "more-vertical", "move", "move-up-down", "navigation", "note", "offline", "paper-plane", "paperplane", "pause", "pause-circle", "pdf", "pen", "pen-check", "people", "phone", "picture", "picture-circled", "picture-filled", "pin", "planning", "play", "play-circle", "play-fill", "plus", "plus-circle", "print", "refresh", "reset", "responsive", "rubix-thema", "save", "saved-search", "saved-search-fill", "search", "settings", "share", "share-alternative", "sidebar", "sidebar-fill", "slack", "slider-config", "spellcheck", "spinner", "standard-view", "star", "star-fill", "star-filled", "stop", "story", "sync", "tasks", "text", "text-circled", "text-filled", "thumbs-down", "thumbs-up", "thumbs-up-double", "topic", "union", "upload", "video", "video overlay", "video-circled", "video-filled", "view", "view-off", "volume-up"];
@@ -29,7 +29,7 @@ declare const meta: {
29
29
  argTypes: {
30
30
  iconName: {
31
31
  control: "select";
32
- options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
32
+ options: ("activities" | "alert" | "alert-fill" | "alert-octagon" | "ai" | "apps" | "archive" | "arrow-left" | "arrow-nav-left" | "arrow-nav-right" | "arrow-up" | "arrow-right" | "arrow-down" | "arrowhead-left" | "arrowhead-right" | "arrowhead-top" | "atmo" | "audio" | "audio-circled" | "audio-filled" | "bag" | "bell" | "bell-fill" | "book" | "bookmark" | "bookmark-fill" | "bookmark-outlined" | "box" | "bulb" | "call" | "camera" | "check" | "checklist" | "checkmark" | "checkmark-double" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "clipboard" | "clock" | "close" | "cloud-save" | "code" | "collapse" | "color-palette" | "comment" | "comment-fill" | "copy" | "copy-link" | "delete" | "download" | "dpa-id" | "edit" | "edit-add" | "eil" | "emoji" | "emoji-add" | "envelope" | "event" | "expand" | "external-link" | "file" | "file-pdf" | "filter" | "filter-outline" | "flag" | "flag-fill" | "flag-filled" | "flag-outline" | "flags" | "flash" | "folder" | "folder-add" | "folder-fill" | "folder-filled" | "gallery" | "graphic" | "graphic-circled" | "graphic-filled" | "graphics" | "grid-1" | "grid-2" | "grid-3" | "grid-4" | "grid-6" | "grid-9" | "grid-masonry" | "grid-masonry-9" | "help" | "home" | "image" | "image focus point" | "impact-high" | "impact-low" | "impact-medium" | "impact-very-high" | "impact-very-low" | "info" | "info-fill" | "info-filled" | "label" | "label-filled" | "language" | "latest" | "lightbulb" | "list" | "list-search" | "lock" | "lock-filled" | "mail" | "map" | "map-outline" | "menu" | "minus" | "more-horizontal" | "more-vertical" | "move" | "move-up-down" | "navigation" | "note" | "offline" | "paper-plane" | "paperplane" | "pause" | "pause-circle" | "pdf" | "pen" | "pen-check" | "people" | "phone" | "picture" | "picture-circled" | "picture-filled" | "pin" | "planning" | "play" | "play-circle" | "play-fill" | "plus" | "plus-circle" | "print" | "refresh" | "reset" | "responsive" | "rubix-thema" | "save" | "saved-search" | "saved-search-fill" | "search" | "settings" | "share" | "share-alternative" | "sidebar" | "sidebar-fill" | "slack" | "slider-config" | "spellcheck" | "spinner" | "standard-view" | "star" | "star-fill" | "star-filled" | "stop" | "story" | "sync" | "tasks" | "text" | "text-circled" | "text-filled" | "thumbs-down" | "thumbs-up" | "thumbs-up-double" | "topic" | "union" | "upload" | "video" | "video overlay" | "video-circled" | "video-filled" | "view" | "view-off" | "volume-up")[];
33
33
  };
34
34
  size: {
35
35
  control: "select";
@@ -61,7 +61,7 @@ declare const meta: {
61
61
  };
62
62
  iconName: {
63
63
  control: "select";
64
- options: readonly ["activities", "alert", "alert-fill", "alert-octagon", "ai", "apps", "archive", "arrow-left", "arrow-nav-left", "arrow-nav-right", "arrow-up", "arrow-right", "arrow-down", "arrowhead-left", "arrowhead-right", "arrowhead-top", "atmo", "audio", "audio-circled", "audio-filled", "bag", "bell", "bell-fill", "book", "bookmark", "bookmark-fill", "bookmark-outlined", "box", "bulb", "call", "camera", "check", "checklist", "checkmark", "checkmark-double", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "clipboard", "clock", "close", "cloud-save", "code", "collapse", "color-palette", "comment", "comment-fill", "copy", "copy-link", "delete", "download", "dpa-id", "edit", "edit-add", "eil", "emoji", "emoji-add", "envelope", "event", "expand", "external-link", "file", "file-pdf", "filter", "filter-outline", "flag", "flag-fill", "flag-filled", "flag-outline", "flags", "flash", "folder", "folder-add", "folder-fill", "folder-filled", "gallery", "graphic", "graphic-circled", "graphic-filled", "graphics", "grid-1", "grid-2", "grid-3", "grid-4", "grid-6", "grid-9", "grid-masonry", "grid-masonry-9", "help", "home", "image", "image focus point", "impact-high", "impact-low", "impact-medium", "impact-very-high", "impact-very-low", "info", "info-fill", "info-filled", "label", "label-filled", "language", "latest", "lightbulb", "list", "lock", "lock-filled", "mail", "map", "map-outline", "menu", "minus", "more-horizontal", "more-vertical", "move", "move-up-down", "navigation", "note", "offline", "paper-plane", "paperplane", "pause", "pause-circle", "pdf", "pen", "pen-check", "people", "phone", "picture", "picture-circled", "picture-filled", "pin", "planning", "play", "play-circle", "play-fill", "plus", "plus-circle", "print", "refresh", "reset", "responsive", "rubix-thema", "save", "saved-search", "saved-search-fill", "search", "settings", "share", "share-alternative", "sidebar", "sidebar-fill", "slack", "slider-config", "spellcheck", "spinner", "standard-view", "star", "star-fill", "star-filled", "stop", "story", "sync", "tasks", "text", "text-circled", "text-filled", "thumbs-down", "thumbs-up", "thumbs-up-double", "topic", "union", "upload", "video", "video overlay", "video-circled", "video-filled", "view", "view-off", "volume-up"];
64
+ options: readonly ["activities", "alert", "alert-fill", "alert-octagon", "ai", "apps", "archive", "arrow-left", "arrow-nav-left", "arrow-nav-right", "arrow-up", "arrow-right", "arrow-down", "arrowhead-left", "arrowhead-right", "arrowhead-top", "atmo", "audio", "audio-circled", "audio-filled", "bag", "bell", "bell-fill", "book", "bookmark", "bookmark-fill", "bookmark-outlined", "box", "bulb", "call", "camera", "check", "checklist", "checkmark", "checkmark-double", "chevron-down", "chevron-left", "chevron-right", "chevron-up", "clipboard", "clock", "close", "cloud-save", "code", "collapse", "color-palette", "comment", "comment-fill", "copy", "copy-link", "delete", "download", "dpa-id", "edit", "edit-add", "eil", "emoji", "emoji-add", "envelope", "event", "expand", "external-link", "file", "file-pdf", "filter", "filter-outline", "flag", "flag-fill", "flag-filled", "flag-outline", "flags", "flash", "folder", "folder-add", "folder-fill", "folder-filled", "gallery", "graphic", "graphic-circled", "graphic-filled", "graphics", "grid-1", "grid-2", "grid-3", "grid-4", "grid-6", "grid-9", "grid-masonry", "grid-masonry-9", "help", "home", "image", "image focus point", "impact-high", "impact-low", "impact-medium", "impact-very-high", "impact-very-low", "info", "info-fill", "info-filled", "label", "label-filled", "language", "latest", "lightbulb", "list", "list-search", "lock", "lock-filled", "mail", "map", "map-outline", "menu", "minus", "more-horizontal", "more-vertical", "move", "move-up-down", "navigation", "note", "offline", "paper-plane", "paperplane", "pause", "pause-circle", "pdf", "pen", "pen-check", "people", "phone", "picture", "picture-circled", "picture-filled", "pin", "planning", "play", "play-circle", "play-fill", "plus", "plus-circle", "print", "refresh", "reset", "responsive", "rubix-thema", "save", "saved-search", "saved-search-fill", "search", "settings", "share", "share-alternative", "sidebar", "sidebar-fill", "slack", "slider-config", "spellcheck", "spinner", "standard-view", "star", "star-fill", "star-filled", "stop", "story", "sync", "tasks", "text", "text-circled", "text-filled", "thumbs-down", "thumbs-up", "thumbs-up-double", "topic", "union", "upload", "video", "video overlay", "video-circled", "video-filled", "view", "view-off", "volume-up"];
65
65
  };
66
66
  iconSize: {
67
67
  control: "select";