wj-elements 0.7.2 → 0.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/dark.css CHANGED
@@ -171,6 +171,9 @@
171
171
  /* Divider */
172
172
  --wje-divider-border-color: var(--wje-border-color);
173
173
 
174
+ /* File Upload */
175
+ --wje-file-upload-padding: 0;
176
+
174
177
  /* File Upload - Item */
175
178
  --wje-file-upload-item-border-width: 1px;
176
179
  --wje-file-upload-item-border-style: solid;
package/dist/light.css CHANGED
@@ -402,6 +402,9 @@
402
402
  --wje-divider-border-color: var(--wje-border-color);
403
403
  --wje-divider-spacing: 0;
404
404
 
405
+ /* File Upload */
406
+ --wje-file-upload-padding: 0;
407
+
405
408
  /* File Upload - Item */
406
409
  --wje-file-upload-item-border-width: 1px;
407
410
  --wje-file-upload-item-border-style: solid;
@@ -10,6 +10,7 @@ import { Localizer } from '../utils/localize.js';
10
10
  * @csspart native - The native file upload part.
11
11
  * @csspart file-list - The file list part.
12
12
  * @csspart upload-button - The label part.
13
+ * @cssproperty [--wje-file-upload-padding=0] - Controls the padding around the native file upload area.
13
14
  * @event change - Fires when the file input changes.
14
15
  * @event drop - Fires when a file is dropped into the component.
15
16
  * @attribute {string} accepted-types - The accepted file types for upload.