@watermarkinsights/ripple 5.19.0-alpha.5 → 5.19.0-alpha.6

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.
Files changed (41) hide show
  1. package/dist/cjs/{app-globals-2a103917.js → app-globals-9ca6f2eb.js} +1 -1
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/ripple.cjs.js +1 -1
  4. package/dist/cjs/wm-file.cjs.entry.js +1 -1
  5. package/dist/cjs/wm-uploader.cjs.entry.js +4 -4
  6. package/dist/collection/components/datepickers/datepicker.css +0 -31
  7. package/dist/collection/components/wm-file/wm-file.css +4 -1
  8. package/dist/collection/components/wm-menuitem/wm-menuitem.css +0 -31
  9. package/dist/collection/components/wm-navigator/priv-navigator-button/priv-navigator-button.css +0 -31
  10. package/dist/collection/components/wm-pagination/wm-pagination.css +0 -31
  11. package/dist/collection/components/wm-search/wm-search.css +0 -31
  12. package/dist/collection/components/wm-snackbar/wm-snackbar.css +0 -31
  13. package/dist/collection/components/wm-timepicker/wm-timepicker.css +0 -31
  14. package/dist/collection/components/wm-uploader/wm-uploader.css +41 -37
  15. package/dist/collection/components/wm-uploader/wm-uploader.js +3 -3
  16. package/dist/esm/{app-globals-94c59277.js → app-globals-b2588be9.js} +1 -1
  17. package/dist/esm/loader.js +1 -1
  18. package/dist/esm/polyfills/core-js.js +0 -0
  19. package/dist/esm/polyfills/dom.js +0 -0
  20. package/dist/esm/polyfills/es5-html-element.js +0 -0
  21. package/dist/esm/polyfills/index.js +0 -0
  22. package/dist/esm/polyfills/system.js +0 -0
  23. package/dist/esm/ripple.js +1 -1
  24. package/dist/esm/wm-file.entry.js +1 -1
  25. package/dist/esm/wm-uploader.entry.js +4 -4
  26. package/dist/esm-es5/{app-globals-94c59277.js → app-globals-b2588be9.js} +1 -1
  27. package/dist/esm-es5/loader.js +1 -1
  28. package/dist/esm-es5/ripple.js +1 -1
  29. package/dist/esm-es5/wm-file.entry.js +1 -1
  30. package/dist/esm-es5/wm-uploader.entry.js +1 -1
  31. package/dist/ripple/{p-4b70fbff.system.js → p-15cdce03.system.js} +1 -1
  32. package/dist/ripple/{p-7ca13016.system.entry.js → p-2f10c1fa.system.entry.js} +1 -1
  33. package/dist/ripple/{p-febafaa4.system.js → p-74d34b42.system.js} +1 -1
  34. package/dist/ripple/{p-25fbfc12.entry.js → p-92fe0ea4.entry.js} +1 -1
  35. package/dist/ripple/{p-dd144e35.system.entry.js → p-93b6ba69.system.entry.js} +1 -1
  36. package/dist/ripple/p-a578f968.entry.js +1 -0
  37. package/dist/ripple/{p-eb7a3c26.js → p-da78a5f7.js} +1 -1
  38. package/dist/ripple/ripple.esm.js +1 -1
  39. package/dist/ripple/ripple.js +1 -1
  40. package/package.json +2 -2
  41. package/dist/ripple/p-602ea108.entry.js +0 -1
@@ -860,37 +860,6 @@
860
860
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z'/%3E%3C/svg%3E%0A");
861
861
  }
862
862
 
863
- /* --------------------------------------
864
- 1. Box-shadow
865
- -------------------------------------- */
866
- /* --------------------------------------
867
- 2. Border-radius
868
- -------------------------------------- */
869
- /* --------------------------------------
870
- 3. Transforms
871
- -------------------------------------- */
872
- /* --------------------------------------
873
- 4. Button Focus
874
- -------------------------------------- */
875
- /* --------------------------------------
876
- 5. Flex
877
- -------------------------------------- */
878
- /* --------------------------------------
879
- 7. Screen Reader Only
880
- -------------------------------------- */
881
- /* --------------------------------------
882
- 8. Label styles
883
- this mixin includes all the styles for the label
884
- + flex rules on the parent container to switch between top and left position
885
- + srOnly when label is hidden
886
- Assumes the following markup:
887
- div.wrapper[.label-left.invalid] > div.label-wrapper > label.label > span.required
888
- .wrapper is for the flex rules
889
- .label-wrapper is to set the height of the label when positioned left so it's the same height as
890
- the input. It can't be done directly on .label because of possible line wrapping.
891
- When the label is on top there's no line wrapping at all to ensure proper alignment of inlined elements
892
- (they can't be aligned on the baseline because of possible description text and error message)
893
- -------------------------------------- */
894
863
  :host * {
895
864
  box-sizing: border-box;
896
865
  }
@@ -928,6 +928,9 @@
928
928
  display: flex;
929
929
  gap: 1rem;
930
930
  }
931
+ .file-wrapper .file .right-group .file-controls wm-button {
932
+ --icon-size: 1.125rem;
933
+ }
931
934
  .file-wrapper .file .right-group .file-info {
932
935
  min-inline-size: 4.375rem;
933
936
  text-align: right;
@@ -957,7 +960,7 @@
957
960
  }
958
961
  .file-wrapper .file #file-details summary::before {
959
962
  position: absolute;
960
- transform: translate(0, -15%);
963
+ transform: translate(0, -12%);
961
964
  }
962
965
  .file-wrapper .file #file-details summary:focus-visible {
963
966
  outline: 3px solid var(--wmcolor-interactive-focus);
@@ -860,37 +860,6 @@
860
860
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z'/%3E%3C/svg%3E%0A");
861
861
  }
862
862
 
863
- /* --------------------------------------
864
- 1. Box-shadow
865
- -------------------------------------- */
866
- /* --------------------------------------
867
- 2. Border-radius
868
- -------------------------------------- */
869
- /* --------------------------------------
870
- 3. Transforms
871
- -------------------------------------- */
872
- /* --------------------------------------
873
- 4. Button Focus
874
- -------------------------------------- */
875
- /* --------------------------------------
876
- 5. Flex
877
- -------------------------------------- */
878
- /* --------------------------------------
879
- 7. Screen Reader Only
880
- -------------------------------------- */
881
- /* --------------------------------------
882
- 8. Label styles
883
- this mixin includes all the styles for the label
884
- + flex rules on the parent container to switch between top and left position
885
- + srOnly when label is hidden
886
- Assumes the following markup:
887
- div.wrapper[.label-left.invalid] > div.label-wrapper > label.label > span.required
888
- .wrapper is for the flex rules
889
- .label-wrapper is to set the height of the label when positioned left so it's the same height as
890
- the input. It can't be done directly on .label because of possible line wrapping.
891
- When the label is on top there's no line wrapping at all to ensure proper alignment of inlined elements
892
- (they can't be aligned on the baseline because of possible description text and error message)
893
- -------------------------------------- */
894
863
  :host(:focus-visible) {
895
864
  outline: none;
896
865
  }
@@ -860,37 +860,6 @@
860
860
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z'/%3E%3C/svg%3E%0A");
861
861
  }
862
862
 
863
- /* --------------------------------------
864
- 1. Box-shadow
865
- -------------------------------------- */
866
- /* --------------------------------------
867
- 2. Border-radius
868
- -------------------------------------- */
869
- /* --------------------------------------
870
- 3. Transforms
871
- -------------------------------------- */
872
- /* --------------------------------------
873
- 4. Button Focus
874
- -------------------------------------- */
875
- /* --------------------------------------
876
- 5. Flex
877
- -------------------------------------- */
878
- /* --------------------------------------
879
- 7. Screen Reader Only
880
- -------------------------------------- */
881
- /* --------------------------------------
882
- 8. Label styles
883
- this mixin includes all the styles for the label
884
- + flex rules on the parent container to switch between top and left position
885
- + srOnly when label is hidden
886
- Assumes the following markup:
887
- div.wrapper[.label-left.invalid] > div.label-wrapper > label.label > span.required
888
- .wrapper is for the flex rules
889
- .label-wrapper is to set the height of the label when positioned left so it's the same height as
890
- the input. It can't be done directly on .label because of possible line wrapping.
891
- When the label is on top there's no line wrapping at all to ensure proper alignment of inlined elements
892
- (they can't be aligned on the baseline because of possible description text and error message)
893
- -------------------------------------- */
894
863
  :host * {
895
864
  box-sizing: border-box;
896
865
  }
@@ -860,37 +860,6 @@
860
860
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z'/%3E%3C/svg%3E%0A");
861
861
  }
862
862
 
863
- /* --------------------------------------
864
- 1. Box-shadow
865
- -------------------------------------- */
866
- /* --------------------------------------
867
- 2. Border-radius
868
- -------------------------------------- */
869
- /* --------------------------------------
870
- 3. Transforms
871
- -------------------------------------- */
872
- /* --------------------------------------
873
- 4. Button Focus
874
- -------------------------------------- */
875
- /* --------------------------------------
876
- 5. Flex
877
- -------------------------------------- */
878
- /* --------------------------------------
879
- 7. Screen Reader Only
880
- -------------------------------------- */
881
- /* --------------------------------------
882
- 8. Label styles
883
- this mixin includes all the styles for the label
884
- + flex rules on the parent container to switch between top and left position
885
- + srOnly when label is hidden
886
- Assumes the following markup:
887
- div.wrapper[.label-left.invalid] > div.label-wrapper > label.label > span.required
888
- .wrapper is for the flex rules
889
- .label-wrapper is to set the height of the label when positioned left so it's the same height as
890
- the input. It can't be done directly on .label because of possible line wrapping.
891
- When the label is on top there's no line wrapping at all to ensure proper alignment of inlined elements
892
- (they can't be aligned on the baseline because of possible description text and error message)
893
- -------------------------------------- */
894
863
  :host,
895
864
  wm-pagination {
896
865
  --wmcolor-pagination-arrow-disabled: var(--wmcolor-interactive-disabled);
@@ -860,37 +860,6 @@
860
860
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z'/%3E%3C/svg%3E%0A");
861
861
  }
862
862
 
863
- /* --------------------------------------
864
- 1. Box-shadow
865
- -------------------------------------- */
866
- /* --------------------------------------
867
- 2. Border-radius
868
- -------------------------------------- */
869
- /* --------------------------------------
870
- 3. Transforms
871
- -------------------------------------- */
872
- /* --------------------------------------
873
- 4. Button Focus
874
- -------------------------------------- */
875
- /* --------------------------------------
876
- 5. Flex
877
- -------------------------------------- */
878
- /* --------------------------------------
879
- 7. Screen Reader Only
880
- -------------------------------------- */
881
- /* --------------------------------------
882
- 8. Label styles
883
- this mixin includes all the styles for the label
884
- + flex rules on the parent container to switch between top and left position
885
- + srOnly when label is hidden
886
- Assumes the following markup:
887
- div.wrapper[.label-left.invalid] > div.label-wrapper > label.label > span.required
888
- .wrapper is for the flex rules
889
- .label-wrapper is to set the height of the label when positioned left so it's the same height as
890
- the input. It can't be done directly on .label because of possible line wrapping.
891
- When the label is on top there's no line wrapping at all to ensure proper alignment of inlined elements
892
- (they can't be aligned on the baseline because of possible description text and error message)
893
- -------------------------------------- */
894
863
  :host * {
895
864
  box-sizing: border-box;
896
865
  }
@@ -860,37 +860,6 @@
860
860
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z'/%3E%3C/svg%3E%0A");
861
861
  }
862
862
 
863
- /* --------------------------------------
864
- 1. Box-shadow
865
- -------------------------------------- */
866
- /* --------------------------------------
867
- 2. Border-radius
868
- -------------------------------------- */
869
- /* --------------------------------------
870
- 3. Transforms
871
- -------------------------------------- */
872
- /* --------------------------------------
873
- 4. Button Focus
874
- -------------------------------------- */
875
- /* --------------------------------------
876
- 5. Flex
877
- -------------------------------------- */
878
- /* --------------------------------------
879
- 7. Screen Reader Only
880
- -------------------------------------- */
881
- /* --------------------------------------
882
- 8. Label styles
883
- this mixin includes all the styles for the label
884
- + flex rules on the parent container to switch between top and left position
885
- + srOnly when label is hidden
886
- Assumes the following markup:
887
- div.wrapper[.label-left.invalid] > div.label-wrapper > label.label > span.required
888
- .wrapper is for the flex rules
889
- .label-wrapper is to set the height of the label when positioned left so it's the same height as
890
- the input. It can't be done directly on .label because of possible line wrapping.
891
- When the label is on top there's no line wrapping at all to ensure proper alignment of inlined elements
892
- (they can't be aligned on the baseline because of possible description text and error message)
893
- -------------------------------------- */
894
863
  :host * {
895
864
  box-sizing: border-box;
896
865
  margin: unset;
@@ -860,37 +860,6 @@
860
860
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z'/%3E%3C/svg%3E%0A");
861
861
  }
862
862
 
863
- /* --------------------------------------
864
- 1. Box-shadow
865
- -------------------------------------- */
866
- /* --------------------------------------
867
- 2. Border-radius
868
- -------------------------------------- */
869
- /* --------------------------------------
870
- 3. Transforms
871
- -------------------------------------- */
872
- /* --------------------------------------
873
- 4. Button Focus
874
- -------------------------------------- */
875
- /* --------------------------------------
876
- 5. Flex
877
- -------------------------------------- */
878
- /* --------------------------------------
879
- 7. Screen Reader Only
880
- -------------------------------------- */
881
- /* --------------------------------------
882
- 8. Label styles
883
- this mixin includes all the styles for the label
884
- + flex rules on the parent container to switch between top and left position
885
- + srOnly when label is hidden
886
- Assumes the following markup:
887
- div.wrapper[.label-left.invalid] > div.label-wrapper > label.label > span.required
888
- .wrapper is for the flex rules
889
- .label-wrapper is to set the height of the label when positioned left so it's the same height as
890
- the input. It can't be done directly on .label because of possible line wrapping.
891
- When the label is on top there's no line wrapping at all to ensure proper alignment of inlined elements
892
- (they can't be aligned on the baseline because of possible description text and error message)
893
- -------------------------------------- */
894
863
  :host * {
895
864
  box-sizing: border-box;
896
865
  }
@@ -1556,37 +1556,6 @@
1556
1556
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z'/%3E%3C/svg%3E%0A");
1557
1557
  }
1558
1558
 
1559
- /* --------------------------------------
1560
- 1. Box-shadow
1561
- -------------------------------------- */
1562
- /* --------------------------------------
1563
- 2. Border-radius
1564
- -------------------------------------- */
1565
- /* --------------------------------------
1566
- 3. Transforms
1567
- -------------------------------------- */
1568
- /* --------------------------------------
1569
- 4. Button Focus
1570
- -------------------------------------- */
1571
- /* --------------------------------------
1572
- 5. Flex
1573
- -------------------------------------- */
1574
- /* --------------------------------------
1575
- 7. Screen Reader Only
1576
- -------------------------------------- */
1577
- /* --------------------------------------
1578
- 8. Label styles
1579
- this mixin includes all the styles for the label
1580
- + flex rules on the parent container to switch between top and left position
1581
- + srOnly when label is hidden
1582
- Assumes the following markup:
1583
- div.wrapper[.label-left.invalid] > div.label-wrapper > label.label > span.required
1584
- .wrapper is for the flex rules
1585
- .label-wrapper is to set the height of the label when positioned left so it's the same height as
1586
- the input. It can't be done directly on .label because of possible line wrapping.
1587
- When the label is on top there's no line wrapping at all to ensure proper alignment of inlined elements
1588
- (they can't be aligned on the baseline because of possible description text and error message)
1589
- -------------------------------------- */
1590
1559
  :host {
1591
1560
  display: block;
1592
1561
  position: relative;
@@ -1857,28 +1826,63 @@
1857
1826
  }
1858
1827
 
1859
1828
  .requirements {
1829
+ --icon-size: 24px;
1860
1830
  font-size: 0.875rem;
1861
1831
  }
1862
1832
  .requirements summary {
1863
- inline-size: fit-content;
1864
- list-style-position: outside;
1865
- margin-inline-start: 1rem;
1833
+ list-style-type: none;
1866
1834
  font-weight: 700;
1867
1835
  color: var(--wmcolor-interactive);
1836
+ padding-inline-end: 0.5rem;
1837
+ width: fit-content;
1838
+ }
1839
+ .requirements summary .title-text {
1840
+ margin-inline-start: 2rem;
1841
+ }
1842
+ .requirements summary::marker {
1843
+ font-size: 0.75rem;
1844
+ }
1845
+ .requirements summary::before {
1846
+ color: var(--wmcolor-interactive);
1847
+ position: absolute;
1848
+ transform: translate(0, -12%);
1868
1849
  }
1869
1850
  .requirements summary:focus-visible {
1870
1851
  outline: 3px solid var(--wmcolor-interactive-focus);
1871
1852
  outline-offset: 2px;
1872
1853
  }
1873
- .requirements summary::marker {
1874
- font-size: 0.75rem;
1854
+ .requirements[open] summary:before {
1855
+ content: "";
1856
+ display: block;
1857
+ background-color: var(--icon-fill, currentColor);
1858
+ width: var(--icon-size, 0.875rem);
1859
+ height: var(--icon-size, 0.875rem);
1860
+ -webkit-mask-size: 100%;
1861
+ mask-size: 100%;
1862
+ }
1863
+ .requirements[open] summary:before {
1864
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M7,10L12,15L17,10H7Z'/%3E%3C/svg%3E%0A");
1865
+ mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M7,10L12,15L17,10H7Z'/%3E%3C/svg%3E%0A");
1866
+ }
1867
+ .requirements:not([open]) summary:before {
1868
+ content: "";
1869
+ display: block;
1870
+ background-color: var(--icon-fill, currentColor);
1871
+ width: var(--icon-size, 0.875rem);
1872
+ height: var(--icon-size, 0.875rem);
1873
+ -webkit-mask-size: 100%;
1874
+ mask-size: 100%;
1875
+ }
1876
+ .requirements:not([open]) summary:before {
1877
+ -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M10,17L15,12L10,7V17Z'/%3E%3C/svg%3E%0A");
1878
+ mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath style='fill: var(--icon-fill, currentColor)' d='M10,17L15,12L10,7V17Z'/%3E%3C/svg%3E%0A");
1875
1879
  }
1876
1880
  .requirements .requirements-wrapper {
1877
1881
  display: flex;
1878
1882
  flex-direction: column;
1879
1883
  gap: 0.25rem;
1880
1884
  margin-block-start: 0.25rem;
1881
- margin-inline-start: 1rem;
1885
+ margin-inline-start: 2rem;
1882
1886
  }
1883
1887
 
1884
1888
  #file-count {
@@ -296,7 +296,7 @@ export class Uploader {
296
296
  amount: this.fileTypes.split(" ").length,
297
297
  b: (chunks) => h("span", { style: { "font-weight": "600" } }, chunks),
298
298
  });
299
- return (h("details", { class: "requirements" }, h("summary", null, uploaderMessages.fileRequirements), h("div", { class: "requirements-wrapper" }, h("div", { id: "accepted-types", class: "accepted-types" }, acceptedTypesMessage), this.maxSize && h("span", { id: "max-size" }, maxSizeMessage))));
299
+ return (h("details", { class: "requirements" }, h("summary", null, h("span", { class: "title-text" }, uploaderMessages.fileRequirements)), h("div", { class: "requirements-wrapper" }, h("div", { id: "accepted-types", class: "accepted-types" }, acceptedTypesMessage), this.maxSize && h("span", { id: "max-size" }, maxSizeMessage))));
300
300
  }
301
301
  renderListContainer() {
302
302
  const hasNewlyUploadedFiles = this.fileEls.filter((file) => file.progress && file.progress === 100).length;
@@ -309,9 +309,9 @@ export class Uploader {
309
309
  return (h("div", { class: `drop-area -${this.dropArea}`, ref: (el) => (this.dropAreaEl = el), onDragEnter: (ev) => this.handleDragEnter(ev), onDragOver: (ev) => this.handleDragOver(ev), onDragLeave: (ev) => this.handleDragLeave(ev), onDrop: (ev) => this.handleDrop(ev) }, this.dropArea == "page" && (h("div", { ref: (el) => (this.dropOverlayEl = el), class: "drop-overlay", popover: "manual" }, h("span", { class: "upload-arrow" }), h("span", null, "Drop to Upload")))));
310
310
  }
311
311
  render() {
312
- return (h(Host, { key: '5e31c446aa655b9f43fd0067791ff78d0598b7c3', class: `-${this.dropArea}` }, this.uploaderType == "drop" && this.renderDropArea(), this.label && this.renderLabel(), this.renderHeader(), this.renderListContainer(), h("div", { key: 'b506e26760d3e6ea6f91936e9738837d6ff5019a', ref: (el) => (this.assertiveLiveRegionEl = el), class: "live-region sr-only", "aria-live": "assertive" // since it's directly linked to the action the user took, it should be read in priority. With polite, some messages get dismissed in favor of the page title
312
+ return (h(Host, { key: 'b58548a627b616f7baf9e2218140583b42d2eeff', class: `-${this.dropArea}` }, this.uploaderType == "drop" && this.renderDropArea(), this.label && this.renderLabel(), this.renderHeader(), this.renderListContainer(), h("div", { key: '4325b5923dd0879157bd0d0370ff2e9011fc3e89', ref: (el) => (this.assertiveLiveRegionEl = el), class: "live-region sr-only", "aria-live": "assertive" // since it's directly linked to the action the user took, it should be read in priority. With polite, some messages get dismissed in favor of the page title
313
313
  ,
314
- "aria-atomic": "true" }), h("div", { key: 'ce16fc6627ec05dc8b44d48b19f89f79276745ae', ref: (el) => (this.politeLiveRegionEl = el), class: "live-region sr-only", "aria-live": "polite", "aria-atomic": "true" })));
314
+ "aria-atomic": "true" }), h("div", { key: '4431d6e65f0b13f02a1b91c35a4fae6953c95a97', ref: (el) => (this.politeLiveRegionEl = el), class: "live-region sr-only", "aria-live": "polite", "aria-atomic": "true" })));
315
315
  }
316
316
  static get is() { return "wm-uploader"; }
317
317
  static get encapsulation() { return "shadow"; }
@@ -1,6 +1,6 @@
1
1
  import './index-130e07bb.js';
2
2
 
3
- const version = "5.19.0-alpha.5";
3
+ const version = "5.19.0-alpha.6";
4
4
 
5
5
  // PRINT RIPPLE VERSION IN CONSOLE
6
6
  // test envs return 0 for plugin.length
@@ -1,6 +1,6 @@
1
1
  import { b as bootstrapLazy } from './index-130e07bb.js';
2
2
  export { s as setNonce } from './index-130e07bb.js';
3
- import { g as globalScripts } from './app-globals-94c59277.js';
3
+ import { g as globalScripts } from './app-globals-b2588be9.js';
4
4
 
5
5
  const defineCustomElements = async (win, options) => {
6
6
  if (typeof window === 'undefined') return undefined;
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,6 +1,6 @@
1
1
  import { p as promiseResolve, b as bootstrapLazy } from './index-130e07bb.js';
2
2
  export { s as setNonce } from './index-130e07bb.js';
3
- import { g as globalScripts } from './app-globals-94c59277.js';
3
+ import { g as globalScripts } from './app-globals-b2588be9.js';
4
4
 
5
5
  /*
6
6
  Stencil Client Patch Browser v4.21.0 | MIT Licensed | https://stenciljs.com