@dosgato/dialog 0.0.7 → 0.0.10

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.
@@ -50,8 +50,8 @@ async function checkifchanged(e) {
50
50
  }
51
51
  </script>
52
52
 
53
- <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={!notNull && nullableSerialize} deserialize={!notNull && nullableDeserialize} let:setVal let:valid let:invalid let:id let:onBlur let:onChange>
54
- <input bind:this={inputelement} bind:value={inputvalue} {id} {placeholder} class="dialog-input {className}" class:valid class:invalid aria-invalid={invalid} {onBlur} {onChange} aria-owns={listId} autocapitalize="none" type="text" autocomplete="off" aria-autocomplete="list" role="combobox" aria-expanded="false" {disabled} aria-describedby={helptext.length ? helpTextId : ''} on:keydown={checkifchanged}>
53
+ <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={!notNull && nullableSerialize} deserialize={!notNull && nullableDeserialize} let:setVal let:valid let:invalid let:id let:onBlur let:onChange let:messagesid>
54
+ <input bind:this={inputelement} bind:value={inputvalue} {id} {placeholder} class="dialog-input {className}" class:valid class:invalid aria-invalid={invalid} {onBlur} {onChange} aria-owns={listId} autocapitalize="none" type="text" autocomplete="off" aria-autocomplete="list" role="combobox" aria-expanded="false" {disabled} aria-describedby={`${messagesid ?? ''} ${helptext.length ? helpTextId : ''}`} on:keydown={checkifchanged}>
55
55
  <PopupMenu align="bottomleft" items={filteredChoices} buttonelement={inputelement} bind:value={popupvalue} on:change={onchangepopup(setVal)} emptyText="No options available"/>
56
56
  {#if helptext.length}
57
57
  <span id={helpTextId} class="field-help-text">{helptext}</span>
@@ -59,4 +59,4 @@ async function checkifchanged(e) {
59
59
  <ScreenReaderOnly arialive="polite" ariaatomic={true} id={liveTextId}>
60
60
  {filteredChoices.length} {filteredChoices.length === 1 ? 'option' : 'options'} available.
61
61
  </ScreenReaderOnly>
62
- </FieldStandard>
62
+ </FieldStandard>
@@ -10,7 +10,7 @@ declare const __propDef: {
10
10
  disabled?: boolean;
11
11
  choices: {
12
12
  label?: string;
13
- value: any;
13
+ value: string;
14
14
  disabled?: boolean;
15
15
  }[];
16
16
  defaultValue?: any;
package/FieldDate.svelte CHANGED
@@ -14,6 +14,6 @@ export let conditional = undefined;
14
14
  export let required = false;
15
15
  </script>
16
16
 
17
- <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={dateSerialize} deserialize={dateDeserialize} let:value let:valid let:invalid let:id let:onBlur let:onChange>
18
- <Input type="date" name={path} {value} {id} class="dialog-input {className}" {onChange} {onBlur} {valid} {invalid} {min} {max} {step} />
17
+ <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={dateSerialize} deserialize={dateDeserialize} let:value let:valid let:invalid let:id let:onBlur let:onChange let:messagesid>
18
+ <Input type="date" name={path} {value} {id} class="dialog-input {className}" {onChange} {onBlur} {valid} {invalid} {min} {max} {step} {messagesid} />
19
19
  </FieldStandard>
@@ -15,8 +15,8 @@ export let choices;
15
15
  export let defaultValue = [];
16
16
  export let conditional = undefined;
17
17
  export let required = false;
18
- let itemsToAdd = []; //the items selected in the left listbox
19
- let itemsToRemove = []; //the items selected in the right listbox
18
+ let itemsToAdd = []; // the items selected in the left listbox
19
+ let itemsToRemove = []; // the items selected in the right listbox
20
20
  let instructions = 'test';
21
21
  $: {
22
22
  if (itemsToAdd.length === 1)
@@ -46,10 +46,6 @@ function addToAvailable(value, setVal) {
46
46
  setVal(selected);
47
47
  };
48
48
  }
49
- let valueToLabel = {};
50
- for (const choice of choices) {
51
- valueToLabel[choice.value] = choice.label || choice.value;
52
- }
53
49
  function valueToSelectedChoices(value) {
54
50
  // keep the selected options ordered as they were in the available options
55
51
  const valueSet = new Set(value);
@@ -88,7 +84,7 @@ function onkeydown(value, setVal) {
88
84
  <ScreenReaderOnly>
89
85
  <span aria-live="polite">{instructions}</span>
90
86
  </ScreenReaderOnly>
91
- <Listbox label={sourceLabel} multiselect={multiselect} items={getAvailable(value)} {descid} {valid} {invalid} on:change={e => itemsToAdd = e.detail} selected={itemsToAdd} on:blur={onBlur}/>
87
+ <Listbox label={sourceLabel} multiselect={multiselect} items={getAvailable(value)} {descid} {valid} {invalid} on:change={e => { itemsToAdd = e.detail }} selected={itemsToAdd} on:blur={onBlur}/>
92
88
  <div class="toolbar">
93
89
  <button type="button" class="toolbar-button" title="Move selection to {selectedLabel}" disabled={itemsToAdd.length === 0} on:click={addToSelected(value, setVal)}>
94
90
  <Icon icon={menuRight} width='3em'/>
@@ -97,7 +93,7 @@ function onkeydown(value, setVal) {
97
93
  <Icon icon={menuLeft} width='3em'/>
98
94
  </button>
99
95
  </div>
100
- <Listbox label={selectedLabel} multiselect={multiselect} items={valueToSelectedChoices(value)} {descid} {valid} {invalid} on:change={e => itemsToRemove = e.detail} selected={itemsToRemove} on:blur={onBlur}/>
96
+ <Listbox label={selectedLabel} multiselect={multiselect} items={valueToSelectedChoices(value)} {descid} {valid} {invalid} on:change={e => { itemsToRemove = e.detail }} selected={itemsToRemove} on:blur={onBlur}/>
101
97
  </div>
102
98
  </FieldStandard>
103
99
 
@@ -115,4 +111,4 @@ function onkeydown(value, setVal) {
115
111
  border: 0;
116
112
  padding: 0;
117
113
  }
118
- </style>
114
+ </style>
@@ -14,8 +14,8 @@ export let conditional = undefined;
14
14
  export let required = false;
15
15
  </script>
16
16
 
17
- <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={!notNull && nullableSerialize} deserialize={!notNull && nullableDeserialize} let:value let:valid let:invalid let:id let:onBlur let:onChange>
18
- <select {id} name={path} {disabled} class="dialog-input dialog-select {className}" on:change={onChange} on:blur={onBlur} class:valid class:invalid>
17
+ <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={!notNull && nullableSerialize} deserialize={!notNull && nullableDeserialize} let:value let:valid let:invalid let:id let:onBlur let:onChange let:messagesid>
18
+ <select {id} name={path} {disabled} class="dialog-input dialog-select {className}" on:change={onChange} on:blur={onBlur} class:valid class:invalid aria-describedby={messagesid}>
19
19
  {#if !notNull}<option value="" selected={!value}>{placeholder}</option>{/if}
20
20
  {#each choices as choice (choice.value)}
21
21
  <option value={choice.value} disabled={choice.disabled} selected={value === choice.value}>{choice.label || choice.value}</option>
@@ -10,7 +10,7 @@ declare const __propDef: {
10
10
  disabled?: boolean;
11
11
  choices: {
12
12
  label?: string;
13
- value: any;
13
+ value: string;
14
14
  disabled?: boolean;
15
15
  }[];
16
16
  defaultValue?: any;
package/FieldText.svelte CHANGED
@@ -15,6 +15,6 @@ export let conditional = undefined;
15
15
  export let required = false;
16
16
  </script>
17
17
 
18
- <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={!notNull && nullableSerialize} deserialize={!notNull && nullableDeserialize} let:value let:valid let:invalid let:id let:onBlur let:onChange>
19
- <Input {type} name={path} {value} {id} class="dialog-input {className}" {allowlastpass} {onChange} {onBlur} {valid} {invalid} {maxlength}></Input>
18
+ <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={!notNull && nullableSerialize} deserialize={!notNull && nullableDeserialize} let:value let:valid let:invalid let:id let:onBlur let:onChange let:messagesid>
19
+ <Input {type} name={path} {value} {id} class="dialog-input {className}" {allowlastpass} {onChange} {onBlur} {valid} {invalid} {maxlength} {messagesid}></Input>
20
20
  </FieldStandard>
@@ -0,0 +1,24 @@
1
+ <script>import { nullableSerialize, nullableDeserialize } from '@txstate-mws/svelte-forms';
2
+ import FieldStandard from './FieldStandard.svelte';
3
+ let className = '';
4
+ export { className as class };
5
+ export let id = undefined;
6
+ export let path;
7
+ export let label = '';
8
+ export let notNull = false;
9
+ export let defaultValue = notNull ? '' : undefined;
10
+ export let maxlength = undefined;
11
+ export let rows = undefined;
12
+ export let conditional = undefined;
13
+ export let required = false;
14
+ </script>
15
+
16
+ <FieldStandard bind:id {label} {path} {required} {defaultValue} {conditional} serialize={!notNull && nullableSerialize} deserialize={!notNull && nullableDeserialize} let:value let:valid let:invalid let:id let:onBlur let:onChange let:messagesid>
17
+ <textarea name={path} {value} {id} {rows} class="dialog-input dialog-textarea {className}" class:valid class:invalid aria-invalid={invalid} aria-describedby={messagesid} on:change={onChange} on:blur={onBlur} on:keyup={onChange} {maxlength}></textarea>
18
+ </FieldStandard>
19
+
20
+ <style>
21
+ textarea {
22
+ resize: vertical;
23
+ }
24
+ </style>
@@ -0,0 +1,25 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ class?: string;
5
+ id?: string | undefined;
6
+ path: string;
7
+ label?: string;
8
+ notNull?: boolean;
9
+ defaultValue?: any;
10
+ maxlength?: number | undefined;
11
+ rows?: number | undefined;
12
+ conditional?: boolean | undefined;
13
+ required?: boolean;
14
+ };
15
+ events: {
16
+ [evt: string]: CustomEvent<any>;
17
+ };
18
+ slots: {};
19
+ };
20
+ export declare type FieldTextAreaProps = typeof __propDef.props;
21
+ export declare type FieldTextAreaEvents = typeof __propDef.events;
22
+ export declare type FieldTextAreaSlots = typeof __propDef.slots;
23
+ export default class FieldTextArea extends SvelteComponentTyped<FieldTextAreaProps, FieldTextAreaEvents, FieldTextAreaSlots> {
24
+ }
25
+ export {};
package/Form.svelte CHANGED
@@ -13,8 +13,23 @@ export let preload = undefined;
13
13
  setContext(CHOOSER_API_CONTEXT, chooserClient);
14
14
  </script>
15
15
 
16
- <Form bind:store class="{className} dialog-form" {submit} {validate} on:saved {autocomplete} {name} {preload} let:messages let:saved let:valid let:invalid let:validating let:submitting>
16
+ <Form bind:store class="{className} dialog-form" {submit} {validate} on:saved {autocomplete} {name} {preload} let:messages let:allMessages let:saved let:valid let:invalid let:validating let:submitting>
17
17
  <slot {messages} {saved} {validating} {submitting} {valid} {invalid} />
18
+ <div class="form-errors" aria-live='assertive'>
19
+ {#if messages.length}
20
+ <ul>
21
+ {#each messages as message}
22
+ <li>{message.message}</li>
23
+ {/each}
24
+ {#if invalid}
25
+ <li>More errors. See inline messages for details.</li>
26
+ {/if}
27
+ </ul>
28
+ {:else if invalid}
29
+ This form contains validation errors. See inline messages for details.
30
+ {/if}
31
+ </div>
32
+ <slot name="submit" {saved} {validating} {submitting} {valid} {invalid} />
18
33
  </Form>
19
34
 
20
35
  <style>
@@ -24,4 +39,8 @@ setContext(CHOOSER_API_CONTEXT, chooserClient);
24
39
  :global(.dialog-form) {
25
40
  padding: 0;
26
41
  }
42
+ .form-errors {
43
+ color: #9a3332;
44
+ padding: 1em;
45
+ }
27
46
  </style>
@@ -3,10 +3,10 @@ export declare type ChooserType = 'asset' | 'page';
3
3
  export declare type AnyItem = Asset | Folder | Page;
4
4
  export interface Client<F = any> {
5
5
  getSources: (type: ChooserType) => Promise<Source[]>;
6
- getChildren: (source: string, path: string, filters: F) => Promise<(AnyItem)[]>;
7
- find: (source: string, path: string, searchstring: string, filters: F) => Promise<(AnyItem)[]>;
8
- findById: (id: string) => Promise<AnyItem>;
9
- findByUrl?: (url: string) => Promise<AnyItem>;
6
+ getChildren: (source: string, path: string, filters: F) => Promise<AnyItem[]>;
7
+ find: (source: string, path: string, searchstring: string, filters: F) => Promise<AnyItem[]>;
8
+ findById: (id: string) => Promise<AnyItem | undefined>;
9
+ findByUrl?: (url: string) => Promise<AnyItem | undefined>;
10
10
  urlToValue?: (url: string) => string;
11
11
  upload: (source: string, path: string, files: FileList) => Promise<void>;
12
12
  }
@@ -0,0 +1,256 @@
1
+ <script>import FieldStandard from '../FieldStandard.svelte';
2
+ import { ScreenReaderOnly, Modal, modifierKey } from '@txstate-mws/svelte-components';
3
+ import { FontAwesomeIcons, IconCategories } from './iconpicker';
4
+ import Icon from '@iconify/svelte';
5
+ import { randomid, keyby } from 'txstate-utils';
6
+ export let id = undefined;
7
+ export let path;
8
+ export let label = '';
9
+ export let required = false;
10
+ export let defaultValue = { icon: 'fa-graduation-cap', prefix: 'fas' };
11
+ export let conditional = undefined;
12
+ const labelid = randomid();
13
+ const descid = randomid();
14
+ let modalOpen = false;
15
+ let selected = defaultValue;
16
+ const iconToPrefix = {};
17
+ const categoriesToIcons = keyby(IconCategories, 'key');
18
+ for (const icon of FontAwesomeIcons) {
19
+ iconToPrefix[icon.class] = icon.free.indexOf('brands') > -1 ? 'fab' : 'fas';
20
+ }
21
+ const iconElements = [];
22
+ let visibleIcons = FontAwesomeIcons;
23
+ let searchVal = '';
24
+ let category = 'all';
25
+ $: iconCountMessage = visibleIcons.length === FontAwesomeIcons.length ? 'Showing all icons' : `Showing ${visibleIcons.length} icons`;
26
+ function onSelectIcon(iconClass) {
27
+ selected = { icon: iconClass, prefix: iconToPrefix[iconClass] };
28
+ }
29
+ function onSaveIconSelection(setVal) {
30
+ return function () {
31
+ setVal(selected);
32
+ category = 'all';
33
+ searchVal = '';
34
+ visibleIcons = FontAwesomeIcons;
35
+ modalOpen = false;
36
+ };
37
+ }
38
+ function onCancel(val) {
39
+ return function () {
40
+ selected = val;
41
+ category = 'all';
42
+ searchVal = '';
43
+ visibleIcons = FontAwesomeIcons;
44
+ modalOpen = false;
45
+ };
46
+ }
47
+ function onSearch() {
48
+ visibleIcons = FontAwesomeIcons.filter(i => {
49
+ if (i.class.includes(searchVal))
50
+ return true;
51
+ for (const term of i.search.terms) {
52
+ if (term.includes(searchVal))
53
+ return true;
54
+ }
55
+ return false;
56
+ });
57
+ if (visibleIcons.findIndex(i => i.class === selected.icon) < 0) {
58
+ onSelectIcon(visibleIcons[0].class);
59
+ }
60
+ }
61
+ function onSelectCategory() {
62
+ if (category === 'all') {
63
+ visibleIcons = FontAwesomeIcons;
64
+ }
65
+ else {
66
+ visibleIcons = FontAwesomeIcons.filter(i => {
67
+ return categoriesToIcons[category].icons.includes(i.class);
68
+ });
69
+ }
70
+ if (visibleIcons.findIndex(i => i.class === selected.icon) < 0) {
71
+ onSelectIcon(visibleIcons[0].class);
72
+ }
73
+ }
74
+ function onKeyDown(e) {
75
+ const currentSelectionIndex = visibleIcons.findIndex(i => i.class === selected.icon);
76
+ let newIndex;
77
+ if (modifierKey(e))
78
+ return;
79
+ else if (e.key === 'ArrowDown' || e.key === 'ArrowRight') {
80
+ e.preventDefault();
81
+ if (currentSelectionIndex === visibleIcons.length - 1) {
82
+ newIndex = 0;
83
+ }
84
+ else {
85
+ newIndex = currentSelectionIndex + 1;
86
+ }
87
+ onSelectIcon(visibleIcons[newIndex].class);
88
+ iconElements[newIndex].focus();
89
+ }
90
+ else if (e.key === 'ArrowLeft' || e.key === 'ArrowDown') {
91
+ e.preventDefault();
92
+ if (currentSelectionIndex === 0) {
93
+ newIndex = visibleIcons.length - 1;
94
+ }
95
+ else {
96
+ newIndex = currentSelectionIndex - 1;
97
+ }
98
+ onSelectIcon(visibleIcons[newIndex].class);
99
+ iconElements[newIndex].focus();
100
+ }
101
+ }
102
+ </script>
103
+
104
+ <FieldStandard bind:id {path} {label} {required} {defaultValue} {conditional} let:value let:valid let:invalid let:id let:onBlur let:setVal>
105
+ <Icon icon={`${value.prefix === 'fab' ? 'fa-brands' : 'fa-solid'}:${value.icon.slice(3)}`}/>
106
+ <button id="btnSelectIcon" on:click={() => { modalOpen = true }}>Select New Icon</button>
107
+ {#if modalOpen}
108
+ <Modal>
109
+ <section>
110
+ <header id={labelid}>
111
+ Select Icon
112
+ </header>
113
+ <div id={descid} class="content">
114
+ <div class="icon-modal-content">
115
+ <div class="filters">
116
+ <div class="search-wrapper">
117
+ <input bind:value={searchVal} id="search_for" placeholder="Search Icons" on:keyup={onSearch}/>
118
+ <label for="search_for" class="fa fa-search" rel="tooltip" title="search"></label>
119
+ </div>
120
+ <select bind:value={category} class="icon-category" aria-label="Select Category" on:change={onSelectCategory}>
121
+ <option value="all">All</option>
122
+ {#each IconCategories as category (category.key)}
123
+ <option value={category.key}>{category.label}</option>
124
+ {/each}
125
+ </select>
126
+ </div>
127
+ <fieldset tabindex="0">
128
+ <ScreenReaderOnly><legend class="sr-only">Icons</legend></ScreenReaderOnly>
129
+ <div class="icon-picker-items" role="radiogroup" on:keydown={onKeyDown}>
130
+ {#each visibleIcons as icon, idx (icon.class)}
131
+ <div bind:this={iconElements[idx]} id={icon.class} class="icon-picker-item" role="radio" aria-checked={icon.class === selected.icon} tabindex={icon.class === selected.icon ? 0 : -1} data-index={idx} on:click={() => onSelectIcon(icon.class)}>
132
+ <Icon icon={`${iconToPrefix[icon.class] === 'fab' ? 'fa-brands' : 'fa-solid'}:${icon.class.slice(3)}`}/>
133
+ <ScreenReaderOnly>{icon.label}</ScreenReaderOnly>
134
+ </div>
135
+ {:else}
136
+ <div id="no-icons">No Icons Found</div>
137
+ {/each}
138
+ </div>
139
+ <ScreenReaderOnly arialive="polite">{iconCountMessage}</ScreenReaderOnly>
140
+ </fieldset>
141
+ </div>
142
+ </div>
143
+ <footer class="actions">
144
+ <button aria-describedby="{labelid} {descid}" on:click={onCancel(value)}>Cancel</button>
145
+ <button aria-describedby="{labelid} {descid}" on:click={onSaveIconSelection(setVal)}>Save Changes</button>
146
+ </footer>
147
+ </section>
148
+ </Modal>
149
+ {/if}
150
+ </FieldStandard>
151
+
152
+
153
+ <style>
154
+ section {
155
+ position: relative;
156
+ background-color: #f4f4f4;
157
+ border-radius: 0.5em;
158
+ padding: 1em;
159
+ overflow: hidden;
160
+ width: 75vw;
161
+ min-width: 250px;
162
+ max-width: 650px;
163
+ }
164
+
165
+ footer {
166
+ display: flex;
167
+ align-items: center;
168
+ justify-content: flex-end;
169
+ }
170
+
171
+ .icon-modal-content {
172
+ display:flex;
173
+ flex-direction: column;
174
+ height: 100%;
175
+ }
176
+
177
+ .icon-modal-content .filters {
178
+ display: flex;
179
+ justify-content: center;
180
+ }
181
+
182
+ .icon-modal-content .filters select {
183
+ width: 40%;
184
+ margin: 10px 0 5px 0;
185
+ height: 30px;
186
+ border-radius: 10px;
187
+ background-color: white;
188
+ border: 1px solid #999;
189
+ font-family: 'Nunito Sans', sans-serif !important;
190
+ }
191
+
192
+ .icon-modal-content fieldset {
193
+ max-height: 80%;
194
+ overflow-y: scroll;
195
+ }
196
+
197
+ /* Styles for search field */
198
+
199
+ .search-wrapper{
200
+ position: relative;
201
+ margin-top: 10px;
202
+ margin-bottom: 5px;
203
+ margin-right: 15px;
204
+ align-self: center;
205
+ width: 50%;
206
+ }
207
+
208
+ #search_for{
209
+ width: 90%;
210
+ border-radius: 10px;
211
+ border: 1px solid #999;
212
+ height: 30px;
213
+ padding: 0px 0px 0px 30px;
214
+ font-family: 'Nunito Sans', sans-serif !important;
215
+ }
216
+
217
+ #search_for + label{
218
+ position: absolute;
219
+ left: 7px;
220
+ top: 7px;
221
+ color: #999;
222
+ }
223
+
224
+ /* Styles for the icon picker grid */
225
+
226
+ .icon-picker-items{
227
+ margin-top: 5px;
228
+ padding: 5px;
229
+ }
230
+
231
+ .icon-picker-item {
232
+ float: left;
233
+ margin: 0px 11px 12px 11px;
234
+ text-align: center;
235
+ cursor: pointer;
236
+ color: inherit;
237
+ width: 10%;
238
+ position: relative;
239
+ font-size: 28px;
240
+ }
241
+
242
+ .icon-picker-item[aria-checked=true] {
243
+ outline: 4px solid #93BBC4;
244
+ background-color: #eee;
245
+ }
246
+
247
+ /* Message when no icons are returned from search */
248
+ #no-icons{
249
+ margin-top: 10px;
250
+ font-size: 1.5rem;
251
+ text-align: center;
252
+ vertical-align: middle;
253
+ line-height: 250px;
254
+ color: #999;
255
+ }
256
+ </style>
@@ -0,0 +1,24 @@
1
+ import { SvelteComponentTyped } from "svelte";
2
+ declare const __propDef: {
3
+ props: {
4
+ id?: string | undefined;
5
+ path: string;
6
+ label?: string;
7
+ required?: boolean;
8
+ defaultValue?: {
9
+ icon: string;
10
+ prefix: string;
11
+ };
12
+ conditional?: boolean | undefined;
13
+ };
14
+ events: {
15
+ [evt: string]: CustomEvent<any>;
16
+ };
17
+ slots: {};
18
+ };
19
+ export declare type FieldIconPickerProps = typeof __propDef.props;
20
+ export declare type FieldIconPickerEvents = typeof __propDef.events;
21
+ export declare type FieldIconPickerSlots = typeof __propDef.slots;
22
+ export default class FieldIconPicker extends SvelteComponentTyped<FieldIconPickerProps, FieldIconPickerEvents, FieldIconPickerSlots> {
23
+ }
24
+ export {};
@@ -0,0 +1,13 @@
1
+ export declare const FontAwesomeIcons: {
2
+ class: string;
3
+ search: {
4
+ terms: string[];
5
+ };
6
+ label: string;
7
+ free: string[];
8
+ }[];
9
+ export declare const IconCategories: {
10
+ key: string;
11
+ label: string;
12
+ icons: string[];
13
+ }[];