Skip to content

Commit

Permalink
chore: v11 FileUploader
Browse files Browse the repository at this point in the history
For better compatibility with existing codebases sizes `field` and `small` are still supported. Note that flagship implementation does the same thing.
  • Loading branch information
gregorw committed Mar 27, 2023
1 parent 2d8b407 commit 6d72748
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion COMPONENT_INDEX.md
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@ None.
| Prop name | Required | Kind | Reactive | Type | Default value | Description |
| :-------------- | :------- | :--------------- | :------- | -------------------------------------------------------- | ------------------------------------------------ | ------------------------------------------------ |
| status | No | <code>let</code> | No | <code>"uploading" &#124; "edit" &#124; "complete"</code> | <code>"uploading"</code> | Specify the file uploader status |
| size | No | <code>let</code> | No | <code>"default" &#124; "field" &#124; "small"</code> | <code>"default"</code> | Specify the size of button skeleton |
| size | No | <code>let</code> | No | <code>"sm" &#124; "md" &#124; "lg"</code> | <code>"lg"</code> | Specify the size of button skeleton |
| iconDescription | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the ARIA label used for the status icons |
| invalid | No | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to indicate an invalid state |
| errorSubject | No | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the error subject text |
Expand Down
4 changes: 2 additions & 2 deletions docs/src/COMPONENT_API.json
Original file line number Diff line number Diff line change
Expand Up @@ -4220,8 +4220,8 @@
"name": "size",
"kind": "let",
"description": "Specify the size of button skeleton",
"type": "\"default\" | \"field\" | \"small\"",
"value": "\"default\"",
"type": "\"sm\" | \"md\" | \"lg\"",
"value": "\"lg\"",
"isFunction": false,
"isFunctionDeclaration": false,
"isRequired": false,
Expand Down
8 changes: 4 additions & 4 deletions docs/src/pages/components/FileUploader.svx
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ Use the `errorSubject` and `errorBody` props to customize the error message.

## Item sizes

The default `FileUploaderItem` size is "default".
The default `FileUploaderItem` size is "lg".

<FileUploaderItem size="default" name="README.md" status="uploading" />
<FileUploaderItem size="field" name="README.md" status="uploading" />
<FileUploaderItem size="small" name="README.md" status="uploading" />
<FileUploaderItem size="lg" name="README.md" status="uploading" />
<FileUploaderItem size="md" name="README.md" status="uploading" />
<FileUploaderItem size="sm" name="README.md" status="uploading" />

## Drop container

Expand Down
8 changes: 4 additions & 4 deletions src/FileUploader/FileUploaderItem.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
/**
* Specify the size of button skeleton
* @type {"default" | "field" | "small"}
* @type {"sm" | "md" | "lg"}
*/
export let size = "default";
export let size = "lg";
/** Specify the ARIA label used for the status icons */
export let iconDescription = "";
Expand Down Expand Up @@ -44,8 +44,8 @@
id="{id}"
class:bx--file__selected-file="{true}"
class:bx--file__selected-file--invalid="{invalid}"
class:bx--file__selected-file--md="{size === 'field'}"
class:bx--file__selected-file--sm="{size === 'small'}"
class:bx--file__selected-file--md="{size === 'md' || size === 'field'}"
class:bx--file__selected-file--sm="{size === 'sm' || size === 'small'}"
{...$$restProps}
on:mouseover
on:mouseenter
Expand Down
4 changes: 2 additions & 2 deletions types/FileUploader/FileUploaderItem.svelte.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface FileUploaderItemProps

/**
* Specify the size of button skeleton
* @default "default"
* @default "lg"
*/
size?: "default" | "field" | "small";
size?: "sm" | "md" | "lg";

/**
* Specify the ARIA label used for the status icons
Expand Down

0 comments on commit 6d72748

Please sign in to comment.