@breadstone/mosaik-elements-foundation 0.0.268 → 0.0.270
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Controls/Components/Forms/FormFieldElementTemplate.d.ts.map +1 -1
- package/Controls/Components/Forms/FormFieldElementTemplate.js +6 -3
- package/Controls/Components/Forms/FormFieldElementTemplate.js.map +1 -1
- package/Controls/Components/Inputs/Calendar/CalendarElement.d.ts +2 -2
- package/Controls/Components/Inputs/Calendar/CalendarElement.js +2 -2
- package/Controls/Components/Inputs/DateTimeBox/DateTimeBoxElement.d.ts +9 -2
- package/Controls/Components/Inputs/DateTimeBox/DateTimeBoxElement.d.ts.map +1 -1
- package/Controls/Components/Inputs/DateTimeBox/DateTimeBoxElement.js +9 -2
- package/Controls/Components/Inputs/DateTimeBox/DateTimeBoxElement.js.map +1 -1
- package/Controls/Components/Inputs/FileBox/Accessors/FileBoxElementValueAccessor.d.ts +29 -0
- package/Controls/Components/Inputs/FileBox/Accessors/FileBoxElementValueAccessor.d.ts.map +1 -0
- package/Controls/Components/Inputs/FileBox/Accessors/FileBoxElementValueAccessor.js +44 -0
- package/Controls/Components/Inputs/FileBox/Accessors/FileBoxElementValueAccessor.js.map +1 -0
- package/Controls/Components/Inputs/FileBox/FileBoxElement.d.ts +301 -0
- package/Controls/Components/Inputs/FileBox/FileBoxElement.d.ts.map +1 -0
- package/Controls/Components/Inputs/FileBox/FileBoxElement.js +577 -0
- package/Controls/Components/Inputs/FileBox/FileBoxElement.js.map +1 -0
- package/Controls/Components/Inputs/FileBox/FileBoxElementTemplate.d.ts +9 -0
- package/Controls/Components/Inputs/FileBox/FileBoxElementTemplate.d.ts.map +1 -0
- package/Controls/Components/Inputs/FileBox/FileBoxElementTemplate.js +80 -0
- package/Controls/Components/Inputs/FileBox/FileBoxElementTemplate.js.map +1 -0
- package/Controls/Components/Inputs/FileBox/IFileBoxElementProps.d.ts +25 -0
- package/Controls/Components/Inputs/FileBox/IFileBoxElementProps.d.ts.map +1 -0
- package/Controls/Components/Inputs/FileBox/IFileBoxElementProps.js +3 -0
- package/Controls/Components/Inputs/FileBox/IFileBoxElementProps.js.map +1 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Cosmopolitan.d.ts +6 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Cosmopolitan.d.ts.map +1 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Cosmopolitan.js +222 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Cosmopolitan.js.map +1 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Joy.d.ts +6 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Joy.d.ts.map +1 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Joy.js +407 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Joy.js.map +1 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Memphis.d.ts +6 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Memphis.d.ts.map +1 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Memphis.js +231 -0
- package/Controls/Components/Inputs/FileBox/Themes/FileBoxElement.Memphis.js.map +1 -0
- package/Controls/Components/Inputs/FileUpload/Themes/FilePickerElement.Cosmopolitan.d.ts.map +1 -1
- package/Controls/Components/Inputs/FileUpload/Themes/FilePickerElement.Cosmopolitan.js +1 -0
- package/Controls/Components/Inputs/FileUpload/Themes/FilePickerElement.Cosmopolitan.js.map +1 -1
- package/Controls/Components/Inputs/FileUpload/Themes/FilePickerElement.Joy.d.ts.map +1 -1
- package/Controls/Components/Inputs/FileUpload/Themes/FilePickerElement.Joy.js +1 -0
- package/Controls/Components/Inputs/FileUpload/Themes/FilePickerElement.Joy.js.map +1 -1
- package/Controls/Components/Inputs/FileUpload/Themes/FilePickerElement.Memphis.d.ts.map +1 -1
- package/Controls/Components/Inputs/FileUpload/Themes/FilePickerElement.Memphis.js +1 -0
- package/Controls/Components/Inputs/FileUpload/Themes/FilePickerElement.Memphis.js.map +1 -1
- package/Controls/Components/Layouts/Page/PageHeaderElement.d.ts +3 -0
- package/Controls/Components/Layouts/Page/PageHeaderElement.d.ts.map +1 -1
- package/Controls/Components/Layouts/Page/PageHeaderElement.js +3 -0
- package/Controls/Components/Layouts/Page/PageHeaderElement.js.map +1 -1
- package/Controls/Components/Layouts/TileManager/TileManagerTileElement.d.ts +3 -3
- package/Controls/Components/Layouts/TileManager/TileManagerTileElement.js +3 -3
- package/Controls/Components/Overlays/MessageBox/MessageBoxElement.d.ts +6 -6
- package/Controls/Components/Overlays/MessageBox/MessageBoxElement.js +6 -6
- package/Controls/events/FileEvents.d.ts +18 -0
- package/Controls/events/FileEvents.d.ts.map +1 -1
- package/Controls/events/index.d.ts +1 -1
- package/Controls/events/index.d.ts.map +1 -1
- package/Index.d.ts +2 -0
- package/Index.d.ts.map +1 -1
- package/Index.js +2 -0
- package/Index.js.map +1 -1
- package/Resources/Icons.js +1 -0
- package/Resources/Icons.js.map +1 -1
- package/custom-elements.json +1329 -52
- package/package.json +3 -3
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
import { IEventEmitter } from '@breadstone/mosaik-elements';
|
|
2
|
+
import { IClearable } from '../../../Behaviors/Clearable';
|
|
3
|
+
import { type IInvalidable } from '../../../Behaviors/Invalidable';
|
|
4
|
+
import { ISlottable } from '../../../Behaviors/Slottable';
|
|
5
|
+
import type { IFilesSelectedEventDetail } from '../../../events';
|
|
6
|
+
import { InputBaseElement } from '../Abstracts/InputBase';
|
|
7
|
+
import type { IFileBoxElementProps } from './IFileBoxElementProps';
|
|
8
|
+
declare const FileBoxElement_base: (abstract new (...args: Array<any>) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Clearable").IClearableProps & import("../../../Behaviors/Clearable").IClearableEvents & IClearable) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array<any>) => IInvalidable & import("../../../Behaviors/Invalidable").IInvalidableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Valueable").IValueableProps<unknown>) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Variantable").IVariantableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Labelable").ILabelableProps) & (abstract new (...args: Array<any>) => import("../../../Behaviors/Appearanceable").IAppearanceableProps) & typeof InputBaseElement & import("../../../Behaviors/Themeable").IThemeableCtor;
|
|
9
|
+
/**
|
|
10
|
+
* File Box - A text-box-styled file input control with a trailing browse button.
|
|
11
|
+
*
|
|
12
|
+
* @description
|
|
13
|
+
* The File Box component provides a familiar text-box appearance for file selection.
|
|
14
|
+
* It displays the selected file name(s) in a readonly text input and offers a trailing
|
|
15
|
+
* browse button to open the native file picker dialog. Supports single and multiple file
|
|
16
|
+
* selection, directory selection, file type filtering via accept attribute, clearable state,
|
|
17
|
+
* and form integration through value accessors. Bridges the gap between the primitive
|
|
18
|
+
* FilePicker and the complex FileUpload component.
|
|
19
|
+
*
|
|
20
|
+
* @name File Box
|
|
21
|
+
* @element mosaik-filebox
|
|
22
|
+
* @category Inputs
|
|
23
|
+
*
|
|
24
|
+
* @slot prefix - Content placed before the input field.
|
|
25
|
+
* @slot suffix - Content placed after the input field.
|
|
26
|
+
*
|
|
27
|
+
* @csspart browse - The browse button.
|
|
28
|
+
* @csspart clear - The clear button.
|
|
29
|
+
* @csspart fileInput - The fileInput part.
|
|
30
|
+
* @csspart focusRing - The focus ring indicator.
|
|
31
|
+
* @csspart inner - The inner container wrapper.
|
|
32
|
+
* @csspart input - The readonly text input showing file names.
|
|
33
|
+
* @csspart label - The floating label element.
|
|
34
|
+
* @csspart prefix - The prefix content container.
|
|
35
|
+
* @csspart suffix - The suffix content container.
|
|
36
|
+
*
|
|
37
|
+
* @cssprop {String} --file-box-background-color - The box background color CSS custom property.
|
|
38
|
+
* @cssprop {String} --file-box-border-color - The box border color CSS custom property.
|
|
39
|
+
* @cssprop {String} --file-box-border-radius - The box border radius CSS custom property.
|
|
40
|
+
* @cssprop {String} --file-box-border-style - The box border style CSS custom property.
|
|
41
|
+
* @cssprop {String} --file-box-border-width - The box border width CSS custom property.
|
|
42
|
+
* @cssprop {String} --file-box-focus-ring-width - The box focus ring width CSS custom property.
|
|
43
|
+
* @cssprop {String} --file-box-font-family - The box font family CSS custom property.
|
|
44
|
+
* @cssprop {String} --file-box-font-letter-spacing - The box font letter spacing CSS custom property.
|
|
45
|
+
* @cssprop {String} --file-box-font-line-height - The box font line height CSS custom property.
|
|
46
|
+
* @cssprop {String} --file-box-font-size - The box font size CSS custom property.
|
|
47
|
+
* @cssprop {String} --file-box-font-text-decoration - The box font text decoration CSS custom property.
|
|
48
|
+
* @cssprop {String} --file-box-font-text-transform - The box font text transform CSS custom property.
|
|
49
|
+
* @cssprop {String} --file-box-font-weight - The box font weight CSS custom property.
|
|
50
|
+
* @cssprop {String} --file-box-foreground-color - The box foreground color CSS custom property.
|
|
51
|
+
* @cssprop {String} --file-box-gap - The box gap CSS custom property.
|
|
52
|
+
* @cssprop {String} --file-box-height - The box height CSS custom property.
|
|
53
|
+
* @cssprop {String} --file-box-padding-bottom - The box padding bottom CSS custom property.
|
|
54
|
+
* @cssprop {String} --file-box-padding-left - The box padding left CSS custom property.
|
|
55
|
+
* @cssprop {String} --file-box-padding-right - The box padding right CSS custom property.
|
|
56
|
+
* @cssprop {String} --file-box-padding-top - The box padding top CSS custom property.
|
|
57
|
+
* @cssprop {String} --file-box-shadow - The box shadow CSS custom property.
|
|
58
|
+
* @cssprop {String} --file-box-shadow-blur - The box shadow blur CSS custom property.
|
|
59
|
+
* @cssprop {String} --file-box-shadow-color - The box shadow color CSS custom property.
|
|
60
|
+
* @cssprop {String} --file-box-shadow-offset-x - The box shadow offset x CSS custom property.
|
|
61
|
+
* @cssprop {String} --file-box-shadow-offset-y - The box shadow offset y CSS custom property.
|
|
62
|
+
* @cssprop {String} --file-box-shadow-spread - The box shadow spread CSS custom property.
|
|
63
|
+
* @cssprop {String} --file-box-transition-duration - The box transition duration CSS custom property.
|
|
64
|
+
* @cssprop {String} --file-box-transition-mode - The box transition mode CSS custom property.
|
|
65
|
+
* @cssprop {String} --file-box-transition-property - The box transition property CSS custom property.
|
|
66
|
+
* @cssprop {String} --file-box-translate - The box translate CSS custom property.
|
|
67
|
+
*
|
|
68
|
+
* @fires cleared {ClearedEvent} - Fired when the file selection is cleared.
|
|
69
|
+
* @fires filesSelected {FilesSelectedEvent} - Fired when files are selected.
|
|
70
|
+
*
|
|
71
|
+
* @dependency mosaik-button - Used for the browse button.
|
|
72
|
+
* @dependency mosaik-focus-ring - Used for focus indication.
|
|
73
|
+
*
|
|
74
|
+
* @example
|
|
75
|
+
* ```html
|
|
76
|
+
* <mosaik-filebox
|
|
77
|
+
* placeholder="Choose a file..."
|
|
78
|
+
* accept=".pdf,.doc,.docx">
|
|
79
|
+
* </mosaik-filebox>
|
|
80
|
+
* ```
|
|
81
|
+
*
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class FileBoxElement extends FileBoxElement_base implements IFileBoxElementProps, IInvalidable, IClearable, ISlottable {
|
|
85
|
+
private readonly _filesSelected;
|
|
86
|
+
private _fileInputElement;
|
|
87
|
+
private _value;
|
|
88
|
+
private _readonly;
|
|
89
|
+
private _required;
|
|
90
|
+
private _autofocus;
|
|
91
|
+
private _name;
|
|
92
|
+
private _placeholder;
|
|
93
|
+
private _multiple;
|
|
94
|
+
private _accept;
|
|
95
|
+
private _directory;
|
|
96
|
+
private _files;
|
|
97
|
+
/**
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
constructor();
|
|
101
|
+
/**
|
|
102
|
+
* Returns the `is` property.
|
|
103
|
+
* The `is` property represents natural name of this element.
|
|
104
|
+
*
|
|
105
|
+
* @public
|
|
106
|
+
* @static
|
|
107
|
+
* @readonly
|
|
108
|
+
*/
|
|
109
|
+
static get is(): string;
|
|
110
|
+
/**
|
|
111
|
+
* Gets or sets the `value` property.
|
|
112
|
+
* The value represents the display text of the selected file(s).
|
|
113
|
+
*
|
|
114
|
+
* @public
|
|
115
|
+
* @override
|
|
116
|
+
*/
|
|
117
|
+
get value(): string;
|
|
118
|
+
set value(value: string);
|
|
119
|
+
/**
|
|
120
|
+
* Gets or sets the `readonly` property.
|
|
121
|
+
*
|
|
122
|
+
* @public
|
|
123
|
+
* @attr
|
|
124
|
+
*/
|
|
125
|
+
get readonly(): boolean;
|
|
126
|
+
set readonly(value: boolean);
|
|
127
|
+
/**
|
|
128
|
+
* Gets or sets the `required` property.
|
|
129
|
+
*
|
|
130
|
+
* @public
|
|
131
|
+
* @attr
|
|
132
|
+
*/
|
|
133
|
+
get required(): boolean;
|
|
134
|
+
set required(value: boolean);
|
|
135
|
+
/**
|
|
136
|
+
* Gets or sets the `autofocus` property.
|
|
137
|
+
*
|
|
138
|
+
* @public
|
|
139
|
+
* @override
|
|
140
|
+
*/
|
|
141
|
+
get autofocus(): boolean;
|
|
142
|
+
set autofocus(value: boolean);
|
|
143
|
+
/**
|
|
144
|
+
* Gets or sets the `name` property.
|
|
145
|
+
*
|
|
146
|
+
* @public
|
|
147
|
+
* @attr
|
|
148
|
+
*/
|
|
149
|
+
get name(): string;
|
|
150
|
+
set name(value: string);
|
|
151
|
+
/**
|
|
152
|
+
* Gets or sets the `placeholder` property.
|
|
153
|
+
*
|
|
154
|
+
* @public
|
|
155
|
+
* @attr
|
|
156
|
+
*/
|
|
157
|
+
get placeholder(): string;
|
|
158
|
+
set placeholder(value: string);
|
|
159
|
+
/**
|
|
160
|
+
* Gets or sets the `multiple` property.
|
|
161
|
+
* When true, allows selecting multiple files.
|
|
162
|
+
*
|
|
163
|
+
* @public
|
|
164
|
+
* @attr
|
|
165
|
+
*/
|
|
166
|
+
get multiple(): boolean;
|
|
167
|
+
set multiple(value: boolean);
|
|
168
|
+
/**
|
|
169
|
+
* Gets or sets the `accept` property.
|
|
170
|
+
* Specifies the file types that the file input should accept.
|
|
171
|
+
*
|
|
172
|
+
* @public
|
|
173
|
+
* @attr
|
|
174
|
+
*/
|
|
175
|
+
get accept(): Array<string>;
|
|
176
|
+
set accept(value: Array<string>);
|
|
177
|
+
/**
|
|
178
|
+
* Gets or sets the `directory` property.
|
|
179
|
+
* When true, allows selecting directories instead of files.
|
|
180
|
+
*
|
|
181
|
+
* @public
|
|
182
|
+
* @attr
|
|
183
|
+
*/
|
|
184
|
+
get directory(): boolean;
|
|
185
|
+
set directory(value: boolean);
|
|
186
|
+
/**
|
|
187
|
+
* Gets or sets the selected files.
|
|
188
|
+
*
|
|
189
|
+
* @public
|
|
190
|
+
* @readonly
|
|
191
|
+
*/
|
|
192
|
+
get files(): ReadonlyArray<File>;
|
|
193
|
+
set files(value: ReadonlyArray<File>);
|
|
194
|
+
/**
|
|
195
|
+
* Determines whether the element has a prefix or not.
|
|
196
|
+
*
|
|
197
|
+
* @private
|
|
198
|
+
* @readonly
|
|
199
|
+
* @attr
|
|
200
|
+
*/
|
|
201
|
+
get hasPrefix(): boolean;
|
|
202
|
+
/**
|
|
203
|
+
* Determines whether the element has a suffix or not.
|
|
204
|
+
*
|
|
205
|
+
* @private
|
|
206
|
+
* @readonly
|
|
207
|
+
* @attr
|
|
208
|
+
*/
|
|
209
|
+
get hasSuffix(): boolean;
|
|
210
|
+
/**
|
|
211
|
+
* Called when files are selected.
|
|
212
|
+
* Provides reference to `IFilesSelectedEventDetail` as event detail.
|
|
213
|
+
*
|
|
214
|
+
* @public
|
|
215
|
+
* @readonly
|
|
216
|
+
* @eventProperty
|
|
217
|
+
*/
|
|
218
|
+
get filesSelected(): IEventEmitter<IFilesSelectedEventDetail>;
|
|
219
|
+
/**
|
|
220
|
+
* @public
|
|
221
|
+
* @override
|
|
222
|
+
*/
|
|
223
|
+
focus(): void;
|
|
224
|
+
/**
|
|
225
|
+
* @public
|
|
226
|
+
* @override
|
|
227
|
+
*/
|
|
228
|
+
blur(): void;
|
|
229
|
+
/**
|
|
230
|
+
* Opens the native file picker dialog.
|
|
231
|
+
*
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
browse(): void;
|
|
235
|
+
/**
|
|
236
|
+
* Clears the selected files and value.
|
|
237
|
+
*
|
|
238
|
+
* @public
|
|
239
|
+
* @override
|
|
240
|
+
*/
|
|
241
|
+
clear(force?: boolean): boolean;
|
|
242
|
+
/**
|
|
243
|
+
* Resets the value, all kinds of validation and errors.
|
|
244
|
+
*
|
|
245
|
+
* @public
|
|
246
|
+
* @override
|
|
247
|
+
*/
|
|
248
|
+
reset(): void;
|
|
249
|
+
/**
|
|
250
|
+
* Checks the validity of the element.
|
|
251
|
+
*
|
|
252
|
+
* @public
|
|
253
|
+
* @override
|
|
254
|
+
*/
|
|
255
|
+
checkValidity(): boolean;
|
|
256
|
+
/**
|
|
257
|
+
* Handles file input change events.
|
|
258
|
+
*
|
|
259
|
+
* @public
|
|
260
|
+
*/
|
|
261
|
+
onFileChange(event: Event): void;
|
|
262
|
+
/**
|
|
263
|
+
* @template
|
|
264
|
+
* @protected
|
|
265
|
+
* @override
|
|
266
|
+
*/
|
|
267
|
+
onFocus(event: FocusEvent): void;
|
|
268
|
+
/**
|
|
269
|
+
* @template
|
|
270
|
+
* @protected
|
|
271
|
+
* @override
|
|
272
|
+
*/
|
|
273
|
+
onBlur(event: FocusEvent): void;
|
|
274
|
+
/**
|
|
275
|
+
* @protected
|
|
276
|
+
* @override
|
|
277
|
+
*/
|
|
278
|
+
protected onApplyTemplate(): void;
|
|
279
|
+
/**
|
|
280
|
+
* Emits the `filesSelected` event.
|
|
281
|
+
*
|
|
282
|
+
* @protected
|
|
283
|
+
*/
|
|
284
|
+
protected onFilesSelected(args: IFilesSelectedEventDetail): void;
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* @public
|
|
288
|
+
*/
|
|
289
|
+
export declare namespace FileBoxElement {
|
|
290
|
+
type Props = IFileBoxElementProps;
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* @public
|
|
294
|
+
*/
|
|
295
|
+
declare global {
|
|
296
|
+
interface HTMLElementTagNameMap {
|
|
297
|
+
'mosaik-filebox': FileBoxElement;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
export {};
|
|
301
|
+
//# sourceMappingURL=FileBoxElement.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FileBoxElement.d.ts","sourceRoot":"","sources":["../../../../../src/Controls/Components/Inputs/FileBox/FileBoxElement.ts"],"names":[],"mappings":"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"}
|