@olenbetong/synergi-react 2.1.2 → 2.3.0

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 (197) hide show
  1. package/dist/esm/ob.react.css +1189 -27
  2. package/dist/esm/ob.react.js +45612 -708
  3. package/dist/esm/ob.react.min.css +24 -1
  4. package/dist/esm/ob.react.min.css.map +3 -3
  5. package/dist/esm/ob.react.min.js +253 -1
  6. package/dist/esm/ob.react.min.js.map +4 -4
  7. package/dist/iife/ob.react.css +1189 -27
  8. package/dist/iife/ob.react.js +45625 -720
  9. package/dist/iife/ob.react.min.css +24 -1
  10. package/dist/iife/ob.react.min.css.map +3 -3
  11. package/dist/iife/ob.react.min.js +253 -1
  12. package/dist/iife/ob.react.min.js.map +4 -4
  13. package/dist/styles/styles.css +1 -1
  14. package/dist/styles/styles.css.map +1 -1
  15. package/{src → es/components}/ColorCard/index.css +10 -6
  16. package/es/{DateNavigator → components/DateNavigator}/index.js +2 -0
  17. package/es/components/FilePond.d.ts +44 -0
  18. package/es/components/FilePond.js +205 -0
  19. package/es/{PageBanner → components/PageBanner}/index.js +0 -1
  20. package/es/{Sidebar → components/Sidebar}/index.d.ts +2 -2
  21. package/es/{SplitContainer → components/SplitContainer}/index.js +3 -3
  22. package/es/{ValueToggleGroup → components/ValueToggleGroup}/index.css +18 -16
  23. package/es/{ValueToggleGroup → components/ValueToggleGroup}/index.js +4 -2
  24. package/es/elements/ElementDamage/DamageFormButtons.d.ts +9 -0
  25. package/es/elements/ElementDamage/DamageFormButtons.js +7 -0
  26. package/es/elements/ElementDamage/DescriptionInput.d.ts +14 -0
  27. package/es/elements/ElementDamage/DescriptionInput.js +44 -0
  28. package/es/elements/ElementDamage/DuplicateDamage/DesktopView.d.ts +7 -0
  29. package/es/elements/ElementDamage/DuplicateDamage/DesktopView.js +16 -0
  30. package/es/elements/ElementDamage/DuplicateDamage/DublicateElementDamageDialog.d.ts +10 -0
  31. package/es/elements/ElementDamage/DuplicateDamage/DublicateElementDamageDialog.js +12 -0
  32. package/es/elements/ElementDamage/DuplicateDamage/PhoneView.d.ts +6 -0
  33. package/es/elements/ElementDamage/DuplicateDamage/PhoneView.js +8 -0
  34. package/es/elements/ElementDamage/DuplicateDamage/index.d.ts +36 -0
  35. package/es/elements/ElementDamage/DuplicateDamage/index.js +40 -0
  36. package/es/elements/ElementDamage/ElementNumberTextField.d.ts +10 -0
  37. package/es/elements/ElementDamage/ElementNumberTextField.js +18 -0
  38. package/es/elements/ElementDamage/HiddenDamageFields.d.ts +6 -0
  39. package/es/elements/ElementDamage/HiddenDamageFields.js +4 -0
  40. package/es/elements/ElementDamage/RegisterFix.d.ts +14 -0
  41. package/es/elements/ElementDamage/RegisterFix.js +45 -0
  42. package/es/elements/ElementDamage/SubmitButtons.d.ts +20 -0
  43. package/es/elements/ElementDamage/SubmitButtons.js +7 -0
  44. package/es/elements/ElementDamage/TransportElementSelect.d.ts +7 -0
  45. package/es/elements/ElementDamage/TransportElementSelect.js +16 -0
  46. package/es/elements/ElementDamage/index.css +3 -0
  47. package/es/elements/ElementLookup.d.ts +20 -0
  48. package/es/elements/ElementLookup.js +30 -0
  49. package/es/elements/ElementLookupDialog/BarcodeScanner/DeadIcon.d.ts +2 -0
  50. package/es/elements/ElementLookupDialog/BarcodeScanner/DeadIcon.js +5 -0
  51. package/es/elements/ElementLookupDialog/BarcodeScanner/Error.d.ts +4 -0
  52. package/es/elements/ElementLookupDialog/BarcodeScanner/Error.js +33 -0
  53. package/es/elements/ElementLookupDialog/BarcodeScanner/index.d.ts +10 -0
  54. package/es/elements/ElementLookupDialog/BarcodeScanner/index.js +37 -0
  55. package/es/elements/ElementLookupDialog/BarcodeScanner/useScanner.d.ts +16 -0
  56. package/es/elements/ElementLookupDialog/BarcodeScanner/useScanner.js +135 -0
  57. package/es/elements/ElementLookupDialog/HIDScanner/index.css +17 -0
  58. package/es/elements/ElementLookupDialog/HIDScanner/index.d.ts +4 -0
  59. package/es/elements/ElementLookupDialog/HIDScanner/index.js +36 -0
  60. package/es/elements/ElementLookupDialog/HIDScanner/useHIDScanner.d.ts +1 -0
  61. package/es/elements/ElementLookupDialog/HIDScanner/useHIDScanner.js +27 -0
  62. package/es/elements/ElementLookupDialog/Manual/ManualForm.d.ts +12 -0
  63. package/es/elements/ElementLookupDialog/Manual/ManualForm.js +48 -0
  64. package/es/elements/ElementLookupDialog/getElement.d.ts +23 -0
  65. package/es/elements/ElementLookupDialog/getElement.js +55 -0
  66. package/es/elements/ElementLookupDialog/index.d.ts +24 -0
  67. package/es/elements/ElementLookupDialog/index.js +97 -0
  68. package/es/elements/ElementLookupDialog/utils/Giai.d.ts +52 -0
  69. package/es/elements/ElementLookupDialog/utils/Giai.js +158 -0
  70. package/es/elements/ElementLookupDialog/utils/beep.d.ts +10 -0
  71. package/es/elements/ElementLookupDialog/utils/beep.js +20 -0
  72. package/es/elements/ProjectSelect.d.ts +23 -0
  73. package/es/elements/ProjectSelect.js +42 -0
  74. package/es/elements/data/dsAttachments.d.ts +15 -0
  75. package/es/elements/data/dsAttachments.js +85 -0
  76. package/es/elements/data/dsCurrentAttachment.d.ts +13 -0
  77. package/es/elements/data/dsCurrentAttachment.js +75 -0
  78. package/es/elements/data/dsDamages.d.ts +25 -0
  79. package/es/elements/data/dsDamages.js +127 -0
  80. package/es/elements/data/dsDamagesDuplicateCheck.d.ts +2 -0
  81. package/es/elements/data/dsDamagesDuplicateCheck.js +3 -0
  82. package/es/elements/data/dsElements.d.ts +8 -0
  83. package/es/elements/data/dsElements.js +47 -0
  84. package/es/elements/data/dsProjects.d.ts +8 -0
  85. package/es/elements/data/dsProjects.js +51 -0
  86. package/es/elements/data/dsReportProjects.d.ts +2 -0
  87. package/es/elements/data/dsReportProjects.js +3 -0
  88. package/es/elements/data/dsTransportElements.d.ts +10 -0
  89. package/es/elements/data/dsTransportElements.js +57 -0
  90. package/es/elements/data/index.d.ts +11 -0
  91. package/es/elements/data/index.js +11 -0
  92. package/es/elements/data/procApproveDamage.d.ts +2 -0
  93. package/es/elements/data/procApproveDamage.js +18 -0
  94. package/es/elements/data/procDeleteAttachment.d.ts +2 -0
  95. package/es/elements/data/procDeleteAttachment.js +18 -0
  96. package/es/elements/data/procDeleteDamage.d.ts +2 -0
  97. package/es/elements/data/procDeleteDamage.js +18 -0
  98. package/es/elements/data/procRemoveDamageFix.d.ts +2 -0
  99. package/es/elements/data/procRemoveDamageFix.js +18 -0
  100. package/es/elements/data/procRestoreAttachments.d.ts +2 -0
  101. package/es/elements/data/procRestoreAttachments.js +18 -0
  102. package/es/elements/index.d.ts +9 -0
  103. package/es/elements/index.js +9 -0
  104. package/es/index.css +1 -1
  105. package/es/index.d.ts +12 -11
  106. package/es/index.js +12 -11
  107. package/package.json +16 -40
  108. package/src/{Checkbox → components/Checkbox}/index.tsx +1 -1
  109. package/{es → src/components}/ColorCard/index.css +10 -6
  110. package/src/{DateNavigator → components/DateNavigator}/index.tsx +2 -0
  111. package/src/components/FilePond.tsx +312 -0
  112. package/src/{LinkedCardList → components/LinkedCardList}/index.scss +1 -1
  113. package/src/{PageBanner → components/PageBanner}/index.scss +1 -1
  114. package/src/{PageBanner → components/PageBanner}/index.tsx +0 -1
  115. package/src/{ProgressBar → components/ProgressBar}/index.scss +1 -1
  116. package/src/{Sidebar → components/Sidebar}/index.tsx +3 -2
  117. package/src/{SplitContainer → components/SplitContainer}/index.tsx +1 -1
  118. package/src/{ValueToggleGroup → components/ValueToggleGroup}/index.css +18 -16
  119. package/src/{ValueToggleGroup → components/ValueToggleGroup}/index.tsx +2 -1
  120. package/src/elements/ElementDamage/DamageFormButtons.tsx +35 -0
  121. package/src/elements/ElementDamage/DescriptionInput.tsx +111 -0
  122. package/src/elements/ElementDamage/DuplicateDamage/DesktopView.tsx +75 -0
  123. package/src/elements/ElementDamage/DuplicateDamage/DublicateElementDamageDialog.tsx +65 -0
  124. package/src/elements/ElementDamage/DuplicateDamage/PhoneView.tsx +42 -0
  125. package/src/elements/ElementDamage/DuplicateDamage/index.tsx +105 -0
  126. package/src/elements/ElementDamage/ElementNumberTextField.tsx +41 -0
  127. package/src/elements/ElementDamage/HiddenDamageFields.tsx +13 -0
  128. package/src/elements/ElementDamage/RegisterFix.tsx +100 -0
  129. package/src/elements/ElementDamage/SubmitButtons.tsx +40 -0
  130. package/src/elements/ElementDamage/TransportElementSelect.tsx +52 -0
  131. package/src/elements/ElementDamage/index.css +3 -0
  132. package/src/elements/ElementLookup.tsx +90 -0
  133. package/src/elements/ElementLookupDialog/BarcodeScanner/DeadIcon.tsx +12 -0
  134. package/src/elements/ElementLookupDialog/BarcodeScanner/Error.tsx +46 -0
  135. package/src/elements/ElementLookupDialog/BarcodeScanner/index.tsx +75 -0
  136. package/src/elements/ElementLookupDialog/BarcodeScanner/useScanner.ts +170 -0
  137. package/src/elements/ElementLookupDialog/HIDScanner/index.css +17 -0
  138. package/src/elements/ElementLookupDialog/HIDScanner/index.tsx +67 -0
  139. package/src/elements/ElementLookupDialog/HIDScanner/useHIDScanner.ts +30 -0
  140. package/src/elements/ElementLookupDialog/Manual/ManualForm.tsx +110 -0
  141. package/src/elements/ElementLookupDialog/getElement.ts +89 -0
  142. package/src/elements/ElementLookupDialog/index.tsx +211 -0
  143. package/src/elements/ElementLookupDialog/utils/Giai.ts +209 -0
  144. package/src/elements/ElementLookupDialog/utils/beep.ts +35 -0
  145. package/src/elements/ProjectSelect.tsx +128 -0
  146. package/src/elements/data/dsAttachments.ts +101 -0
  147. package/src/elements/data/dsCurrentAttachment.ts +89 -0
  148. package/src/elements/data/dsDamages.ts +166 -0
  149. package/src/elements/data/dsDamagesDuplicateCheck.ts +4 -0
  150. package/src/elements/data/dsElements.ts +56 -0
  151. package/src/elements/data/dsProjects.ts +60 -0
  152. package/src/elements/data/dsReportProjects.ts +4 -0
  153. package/src/elements/data/dsTransportElements.ts +68 -0
  154. package/src/elements/data/index.ts +11 -0
  155. package/src/elements/data/procApproveDamage.ts +19 -0
  156. package/src/elements/data/procDeleteAttachment.ts +19 -0
  157. package/src/elements/data/procDeleteDamage.ts +19 -0
  158. package/src/elements/data/procRemoveDamageFix.ts +19 -0
  159. package/src/elements/data/procRestoreAttachments.ts +19 -0
  160. package/src/elements/index.ts +9 -0
  161. package/src/index.scss +10 -10
  162. package/src/index.ts +13 -13
  163. /package/es/{Checkbox → components/Checkbox}/index.css +0 -0
  164. /package/es/{Checkbox → components/Checkbox}/index.d.ts +0 -0
  165. /package/es/{Checkbox → components/Checkbox}/index.js +0 -0
  166. /package/es/{ColorCard → components/ColorCard}/index.d.ts +0 -0
  167. /package/es/{ColorCard → components/ColorCard}/index.js +0 -0
  168. /package/es/{DateNavigator → components/DateNavigator}/index.css +0 -0
  169. /package/es/{DateNavigator → components/DateNavigator}/index.d.ts +0 -0
  170. /package/es/{LinkedCardList → components/LinkedCardList}/index.css +0 -0
  171. /package/es/{LinkedCardList → components/LinkedCardList}/index.d.ts +0 -0
  172. /package/es/{LinkedCardList → components/LinkedCardList}/index.js +0 -0
  173. /package/es/{PageBanner → components/PageBanner}/index.css +0 -0
  174. /package/es/{PageBanner → components/PageBanner}/index.d.ts +0 -0
  175. /package/es/{Portal → components/Portal}/index.d.ts +0 -0
  176. /package/es/{Portal → components/Portal}/index.js +0 -0
  177. /package/es/{ProgressBar → components/ProgressBar}/index.css +0 -0
  178. /package/es/{ProgressBar → components/ProgressBar}/index.d.ts +0 -0
  179. /package/es/{ProgressBar → components/ProgressBar}/index.js +0 -0
  180. /package/es/{Sidebar → components/Sidebar}/index.css +0 -0
  181. /package/es/{Sidebar → components/Sidebar}/index.js +0 -0
  182. /package/es/{Spinner → components/Spinner}/index.css +0 -0
  183. /package/es/{Spinner → components/Spinner}/index.d.ts +0 -0
  184. /package/es/{Spinner → components/Spinner}/index.js +0 -0
  185. /package/es/{SplitContainer → components/SplitContainer}/index.css +0 -0
  186. /package/es/{SplitContainer → components/SplitContainer}/index.d.ts +0 -0
  187. /package/es/{ValueToggleGroup → components/ValueToggleGroup}/index.d.ts +0 -0
  188. /package/src/{Checkbox → components/Checkbox}/index.scss +0 -0
  189. /package/src/{ColorCard → components/ColorCard}/index.tsx +0 -0
  190. /package/src/{DateNavigator → components/DateNavigator}/index.css +0 -0
  191. /package/src/{LinkedCardList → components/LinkedCardList}/index.tsx +0 -0
  192. /package/src/{Portal → components/Portal}/index.tsx +0 -0
  193. /package/src/{ProgressBar → components/ProgressBar}/index.tsx +0 -0
  194. /package/src/{Sidebar → components/Sidebar}/index.scss +0 -0
  195. /package/src/{Spinner → components/Spinner}/index.css +0 -0
  196. /package/src/{Spinner → components/Spinner}/index.tsx +0 -0
  197. /package/src/{SplitContainer → components/SplitContainer}/index.scss +0 -0
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
 
3
- /* src/Checkbox/index.scss */
3
+ /* src/components/Checkbox/index.scss */
4
4
  .ObCheckbox-root {
5
5
  --check-width: 2rem;
6
6
  --bg-color: var(--brand-dark, rgba(42, 65, 50, 0.5));
@@ -103,7 +103,7 @@
103
103
  }
104
104
  }
105
105
 
106
- /* src/ColorCard/index.css */
106
+ /* src/components/ColorCard/index.css */
107
107
  .ObColorCard-root {
108
108
  --bg-color-border: black;
109
109
  --bg-color-main: white;
@@ -186,6 +186,9 @@
186
186
  }
187
187
  }
188
188
  }
189
+ .ObColorCard-detailValue {
190
+ color: #555555;
191
+ }
189
192
  .ObColorCard-detailLabel {
190
193
  color: #696969;
191
194
  font-size: 0.8rem;
@@ -207,9 +210,6 @@
207
210
  font-size: 1rem;
208
211
  }
209
212
  }
210
- .ObColorCard-detailValue {
211
- color: #555555;
212
- }
213
213
  .ObColorCard-stepList {
214
214
  display: flex;
215
215
  flex-direction: column;
@@ -245,7 +245,7 @@
245
245
  z-index: 0;
246
246
  }
247
247
 
248
- /* src/DateNavigator/index.css */
248
+ /* src/components/DateNavigator/index.css */
249
249
  :root {
250
250
  --ob-datenavigator-height: 3rem;
251
251
  }
@@ -324,7 +324,7 @@
324
324
  }
325
325
  }
326
326
 
327
- /* src/LinkedCardList/index.scss */
327
+ /* src/components/LinkedCardList/index.scss */
328
328
  :root {
329
329
  --ob-linked-list-bullet-size: 0.7em;
330
330
  --ob-linked-list-line-width: 0.2em;
@@ -400,7 +400,7 @@
400
400
  border-right-color: hsl(220, 20%, 94%) !important;
401
401
  }
402
402
 
403
- /* src/PageBanner/index.scss */
403
+ /* src/components/PageBanner/index.scss */
404
404
  .ObPageBanner-root {
405
405
  background-color: hsl(186, 72%, 24%);
406
406
  background-color: var(--brand-dark);
@@ -494,7 +494,7 @@
494
494
  border-color: white;
495
495
  }
496
496
 
497
- /* src/ProgressBar/index.scss */
497
+ /* src/components/ProgressBar/index.scss */
498
498
  .ObProgressBar-root {
499
499
  height: 1.5em;
500
500
  width: 100%;
@@ -580,7 +580,7 @@
580
580
  transition: width 0.5s ease-out;
581
581
  }
582
582
 
583
- /* src/Sidebar/index.scss */
583
+ /* src/components/Sidebar/index.scss */
584
584
  .ObSidebar-root {
585
585
  position: fixed;
586
586
  bottom: 0;
@@ -626,7 +626,7 @@
626
626
  visibility: visible;
627
627
  }
628
628
 
629
- /* src/Spinner/index.css */
629
+ /* src/components/Spinner/index.css */
630
630
  .ObSpinner-wrapper,
631
631
  .ObSpinner-fullPage {
632
632
  --bullet-size: 0.5em;
@@ -689,7 +689,7 @@
689
689
  }
690
690
  }
691
691
 
692
- /* src/SplitContainer/index.scss */
692
+ /* src/components/SplitContainer/index.scss */
693
693
  .\1f616 {
694
694
  display: initial;
695
695
  }
@@ -725,7 +725,21 @@
725
725
  pointer-events: none;
726
726
  }
727
727
 
728
- /* src/ValueToggleGroup/index.css */
728
+ /* src/components/ValueToggleGroup/index.css */
729
+ .ObValueToggleOption {
730
+ display: flex;
731
+ align-items: center;
732
+ margin: 0;
733
+ position: relative;
734
+ }
735
+ .ObValueToggleLabel {
736
+ font-size: 0.8em;
737
+ margin: 0 0.2em;
738
+ padding: 0.3em 0.5em;
739
+ text-transform: uppercase;
740
+ transition: background 0.2s ease, color 0.2s ease;
741
+ border-radius: 4px;
742
+ }
729
743
  .ObValueToggleGroup {
730
744
  padding: 0.25rem;
731
745
  border: 2px solid rgb(0 0 0 / 0.2);
@@ -748,12 +762,6 @@
748
762
  border-color: rgb(0 0 0 / 0.8);
749
763
  }
750
764
  }
751
- .ObValueToggleOption {
752
- display: flex;
753
- align-items: center;
754
- margin: 0;
755
- position: relative;
756
- }
757
765
  .ObValueToggleOption input {
758
766
  position: absolute;
759
767
  width: 1px;
@@ -764,14 +772,6 @@
764
772
  clip: rect(0, 0, 0, 0);
765
773
  border: 0;
766
774
  }
767
- .ObValueToggleLabel {
768
- font-size: 0.8em;
769
- margin: 0 0.2em;
770
- padding: 0.3em 0.5em;
771
- text-transform: uppercase;
772
- transition: background 0.2s ease, color 0.2s ease;
773
- border-radius: 4px;
774
- }
775
775
  .ObValueToggleOption:hover input:not(:disabled) + .ObValueToggleLabel {
776
776
  cursor: pointer;
777
777
  background: #ccc;
@@ -792,3 +792,1165 @@
792
792
  .ObValueToggleOption input:checked:hover + .ObValueToggleLabel {
793
793
  background-color: var(--color-bg);
794
794
  }
795
+
796
+ /* src/features/ElementDamageForm/index.css */
797
+ .flow > * + * {
798
+ margin-top: var(--spacing, 1rem) !important;
799
+ }
800
+
801
+ /* src/features/AddElementDialog/HIDScanner/index.css */
802
+ @property --angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
803
+ @keyframes MovingBackground {
804
+ 0% {
805
+ --angle: 0deg;
806
+ }
807
+ 50% {
808
+ --angle: 180deg;
809
+ }
810
+ 100% {
811
+ --angle: 360deg;
812
+ }
813
+ }
814
+
815
+ /* ../../node_modules/.pnpm/filepond-plugin-file-poster@2.5.2_filepond@4.32.9/node_modules/filepond-plugin-file-poster/dist/filepond-plugin-file-poster.css */
816
+ .filepond--file-poster-wrapper {
817
+ z-index: 2;
818
+ }
819
+ .filepond--image-preview-wrapper ~ .filepond--file-poster-wrapper {
820
+ display: none;
821
+ }
822
+ .filepond--file-poster-overlay {
823
+ display: block;
824
+ position: absolute;
825
+ left: 0;
826
+ top: 0;
827
+ width: 100%;
828
+ min-height: 5rem;
829
+ max-height: 7rem;
830
+ margin: 0;
831
+ opacity: 0;
832
+ z-index: 1;
833
+ mix-blend-mode: multiply;
834
+ pointer-events: none;
835
+ -webkit-user-select: none;
836
+ -moz-user-select: none;
837
+ -ms-user-select: none;
838
+ user-select: none;
839
+ aspect-ratio: auto;
840
+ }
841
+ .filepond--file-poster-overlay:nth-of-type(2) {
842
+ mix-blend-mode: normal;
843
+ }
844
+ .filepond--file-poster-overlay:nth-of-type(3) {
845
+ mix-blend-mode: normal;
846
+ }
847
+ @supports (-webkit-marquee-repetition: infinite) and ((-o-object-fit: fill) or (object-fit: fill)) {
848
+ .filepond--file-poster-overlay {
849
+ mix-blend-mode: normal;
850
+ }
851
+ }
852
+ .filepond--file-poster-wrapper {
853
+ pointer-events: none;
854
+ position: absolute;
855
+ left: 0;
856
+ top: 0;
857
+ right: 0;
858
+ height: 100%;
859
+ margin: 0;
860
+ border-radius: 0.45em;
861
+ overflow: hidden;
862
+ background: rgba(0, 0, 0, 0.01);
863
+ }
864
+ .filepond--file-poster {
865
+ position: relative;
866
+ z-index: 1;
867
+ display: block;
868
+ width: 100%;
869
+ height: 100%;
870
+ pointer-events: none;
871
+ -webkit-transform-origin: center center;
872
+ transform-origin: center center;
873
+ background: #222;
874
+ will-change: transform, opacity;
875
+ }
876
+ .filepond--file-poster img {
877
+ height: 100%;
878
+ width: auto;
879
+ position: relative;
880
+ overflow: hidden;
881
+ margin: 0 auto;
882
+ display: block;
883
+ will-change: transform;
884
+ }
885
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--file-poster-wrapper {
886
+ border-radius: 0;
887
+ }
888
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--file-poster {
889
+ height: 100%;
890
+ display: flex;
891
+ justify-content: center;
892
+ align-items: center;
893
+ }
894
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file-poster-wrapper {
895
+ border-radius: 99999rem;
896
+ }
897
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file-poster-overlay {
898
+ top: auto;
899
+ bottom: 0;
900
+ -webkit-transform: scaleY(-1);
901
+ transform: scaleY(-1);
902
+ }
903
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file .filepond--file-action-button[data-align*=bottom]:not([data-align*=center]) {
904
+ margin-bottom: 0.325em;
905
+ }
906
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=left] {
907
+ left: calc(50% - 3em);
908
+ }
909
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=right] {
910
+ right: calc(50% - 3em);
911
+ }
912
+ .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=left],
913
+ .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=right] {
914
+ margin-bottom: calc(0.325em + 0.1875em);
915
+ }
916
+ .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=center] {
917
+ margin-top: 0;
918
+ margin-bottom: 0.1875em;
919
+ margin-left: 0.1875em;
920
+ }
921
+
922
+ /* ../../node_modules/.pnpm/filepond-plugin-image-preview@4.6.12_filepond@4.32.9/node_modules/filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css */
923
+ .filepond--image-preview-markup {
924
+ position: absolute;
925
+ left: 0;
926
+ top: 0;
927
+ }
928
+ .filepond--image-preview-wrapper {
929
+ z-index: 2;
930
+ }
931
+ .filepond--image-preview-overlay {
932
+ display: block;
933
+ position: absolute;
934
+ left: 0;
935
+ top: 0;
936
+ width: 100%;
937
+ min-height: 5rem;
938
+ max-height: 7rem;
939
+ margin: 0;
940
+ opacity: 0;
941
+ z-index: 2;
942
+ pointer-events: none;
943
+ -webkit-user-select: none;
944
+ -moz-user-select: none;
945
+ -ms-user-select: none;
946
+ user-select: none;
947
+ }
948
+ .filepond--image-preview-overlay svg {
949
+ width: 100%;
950
+ height: auto;
951
+ color: inherit;
952
+ max-height: inherit;
953
+ }
954
+ .filepond--image-preview-overlay-idle {
955
+ mix-blend-mode: multiply;
956
+ color: rgba(40, 40, 40, 0.85);
957
+ }
958
+ .filepond--image-preview-overlay-success {
959
+ mix-blend-mode: normal;
960
+ color: rgba(54, 151, 99, 1);
961
+ }
962
+ .filepond--image-preview-overlay-failure {
963
+ mix-blend-mode: normal;
964
+ color: rgba(196, 78, 71, 1);
965
+ }
966
+ @supports (-webkit-marquee-repetition: infinite) and ((-o-object-fit: fill) or (object-fit: fill)) {
967
+ .filepond--image-preview-overlay-idle {
968
+ mix-blend-mode: normal;
969
+ }
970
+ }
971
+ .filepond--image-preview-wrapper {
972
+ -webkit-user-select: none;
973
+ -moz-user-select: none;
974
+ -ms-user-select: none;
975
+ user-select: none;
976
+ position: absolute;
977
+ left: 0;
978
+ top: 0;
979
+ right: 0;
980
+ height: 100%;
981
+ margin: 0;
982
+ border-radius: 0.45em;
983
+ overflow: hidden;
984
+ background: rgba(0, 0, 0, 0.01);
985
+ }
986
+ .filepond--image-preview {
987
+ position: absolute;
988
+ left: 0;
989
+ top: 0;
990
+ z-index: 1;
991
+ display: flex;
992
+ align-items: center;
993
+ height: 100%;
994
+ width: 100%;
995
+ pointer-events: none;
996
+ background: #222;
997
+ will-change: transform, opacity;
998
+ }
999
+ .filepond--image-clip {
1000
+ position: relative;
1001
+ overflow: hidden;
1002
+ margin: 0 auto;
1003
+ }
1004
+ .filepond--image-clip[data-transparency-indicator=grid] img,
1005
+ .filepond--image-clip[data-transparency-indicator=grid] canvas {
1006
+ background-color: #fff;
1007
+ background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' fill='%23eee'%3E%3Cpath d='M0 0 H50 V50 H0'/%3E%3Cpath d='M50 50 H100 V100 H50'/%3E%3C/svg%3E");
1008
+ background-size: 1.25em 1.25em;
1009
+ }
1010
+ .filepond--image-bitmap,
1011
+ .filepond--image-vector {
1012
+ position: absolute;
1013
+ left: 0;
1014
+ top: 0;
1015
+ will-change: transform;
1016
+ }
1017
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview-wrapper {
1018
+ border-radius: 0;
1019
+ }
1020
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--image-preview {
1021
+ height: 100%;
1022
+ display: flex;
1023
+ justify-content: center;
1024
+ align-items: center;
1025
+ }
1026
+ .filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-wrapper {
1027
+ border-radius: 99999rem;
1028
+ }
1029
+ .filepond--root[data-style-panel-layout~=circle] .filepond--image-preview-overlay {
1030
+ top: auto;
1031
+ bottom: 0;
1032
+ -webkit-transform: scaleY(-1);
1033
+ transform: scaleY(-1);
1034
+ }
1035
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file .filepond--file-action-button[data-align*=bottom]:not([data-align*=center]) {
1036
+ margin-bottom: 0.325em;
1037
+ }
1038
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=left] {
1039
+ left: calc(50% - 3em);
1040
+ }
1041
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file [data-align*=right] {
1042
+ right: calc(50% - 3em);
1043
+ }
1044
+ .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=left],
1045
+ .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=right] {
1046
+ margin-bottom: calc(0.325em + 0.1875em);
1047
+ }
1048
+ .filepond--root[data-style-panel-layout~=circle] .filepond--progress-indicator[data-align*=bottom][data-align*=center] {
1049
+ margin-top: 0;
1050
+ margin-bottom: 0.1875em;
1051
+ margin-left: 0.1875em;
1052
+ }
1053
+
1054
+ /* ../../node_modules/.pnpm/filepond@4.32.9/node_modules/filepond/dist/filepond.css */
1055
+ .filepond--assistant {
1056
+ position: absolute;
1057
+ overflow: hidden;
1058
+ height: 1px;
1059
+ width: 1px;
1060
+ padding: 0;
1061
+ border: 0;
1062
+ clip: rect(1px, 1px, 1px, 1px);
1063
+ -webkit-clip-path: inset(50%);
1064
+ clip-path: inset(50%);
1065
+ white-space: nowrap;
1066
+ }
1067
+ .filepond--browser.filepond--browser {
1068
+ position: absolute;
1069
+ margin: 0;
1070
+ padding: 0;
1071
+ left: 1em;
1072
+ top: 1.75em;
1073
+ width: calc(100% - 2em);
1074
+ opacity: 0;
1075
+ font-size: 0;
1076
+ }
1077
+ .filepond--data {
1078
+ position: absolute;
1079
+ width: 0;
1080
+ height: 0;
1081
+ padding: 0;
1082
+ margin: 0;
1083
+ border: none;
1084
+ visibility: hidden;
1085
+ pointer-events: none;
1086
+ contain: strict;
1087
+ }
1088
+ .filepond--drip {
1089
+ position: absolute;
1090
+ top: 0;
1091
+ left: 0;
1092
+ right: 0;
1093
+ bottom: 0;
1094
+ overflow: hidden;
1095
+ opacity: 0.1;
1096
+ pointer-events: none;
1097
+ border-radius: 0.5em;
1098
+ background: rgba(0, 0, 0, 0.01);
1099
+ }
1100
+ .filepond--drip-blob {
1101
+ position: absolute;
1102
+ -webkit-transform-origin: center center;
1103
+ transform-origin: center center;
1104
+ top: 0;
1105
+ left: 0;
1106
+ width: 8em;
1107
+ height: 8em;
1108
+ margin-left: -4em;
1109
+ margin-top: -4em;
1110
+ background: #292625;
1111
+ border-radius: 50%;
1112
+ will-change: transform, opacity;
1113
+ }
1114
+ .filepond--drop-label {
1115
+ position: absolute;
1116
+ left: 0;
1117
+ right: 0;
1118
+ top: 0;
1119
+ margin: 0;
1120
+ color: #4f4f4f;
1121
+ display: flex;
1122
+ justify-content: center;
1123
+ align-items: center;
1124
+ height: 0px;
1125
+ -webkit-user-select: none;
1126
+ -moz-user-select: none;
1127
+ -ms-user-select: none;
1128
+ user-select: none;
1129
+ will-change: transform, opacity;
1130
+ }
1131
+ .filepond--drop-label.filepond--drop-label label {
1132
+ display: block;
1133
+ margin: 0;
1134
+ padding: 0.5em;
1135
+ }
1136
+ .filepond--drop-label label {
1137
+ cursor: default;
1138
+ font-size: 0.875em;
1139
+ font-weight: normal;
1140
+ text-align: center;
1141
+ line-height: 1.5;
1142
+ }
1143
+ .filepond--label-action {
1144
+ text-decoration: underline;
1145
+ -webkit-text-decoration-skip: ink;
1146
+ text-decoration-skip-ink: auto;
1147
+ -webkit-text-decoration-color: #a7a4a4;
1148
+ text-decoration-color: #a7a4a4;
1149
+ cursor: pointer;
1150
+ }
1151
+ .filepond--root[data-disabled] .filepond--drop-label label {
1152
+ opacity: 0.5;
1153
+ }
1154
+ .filepond--file-action-button.filepond--file-action-button {
1155
+ font-size: 1em;
1156
+ width: 1.625em;
1157
+ height: 1.625em;
1158
+ font-family: inherit;
1159
+ line-height: inherit;
1160
+ margin: 0;
1161
+ padding: 0;
1162
+ border: none;
1163
+ outline: none;
1164
+ will-change: transform, opacity;
1165
+ }
1166
+ .filepond--file-action-button.filepond--file-action-button span {
1167
+ position: absolute;
1168
+ overflow: hidden;
1169
+ height: 1px;
1170
+ width: 1px;
1171
+ padding: 0;
1172
+ border: 0;
1173
+ clip: rect(1px, 1px, 1px, 1px);
1174
+ -webkit-clip-path: inset(50%);
1175
+ clip-path: inset(50%);
1176
+ white-space: nowrap;
1177
+ }
1178
+ .filepond--file-action-button.filepond--file-action-button {
1179
+ }
1180
+ .filepond--file-action-button.filepond--file-action-button svg {
1181
+ width: 100%;
1182
+ height: 100%;
1183
+ }
1184
+ .filepond--file-action-button.filepond--file-action-button {
1185
+ }
1186
+ .filepond--file-action-button.filepond--file-action-button::after {
1187
+ position: absolute;
1188
+ left: -0.75em;
1189
+ right: -0.75em;
1190
+ top: -0.75em;
1191
+ bottom: -0.75em;
1192
+ content: "";
1193
+ }
1194
+ .filepond--file-action-button {
1195
+ cursor: auto;
1196
+ color: #fff;
1197
+ border-radius: 50%;
1198
+ background-color: rgba(0, 0, 0, 0.5);
1199
+ background-image: none;
1200
+ box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
1201
+ transition: box-shadow 0.25s ease-in;
1202
+ }
1203
+ .filepond--file-action-button:hover,
1204
+ .filepond--file-action-button:focus {
1205
+ box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.9);
1206
+ }
1207
+ .filepond--file-action-button[disabled] {
1208
+ color: rgba(255, 255, 255, 0.5);
1209
+ background-color: rgba(0, 0, 0, 0.25);
1210
+ }
1211
+ .filepond--file-action-button[hidden] {
1212
+ display: none;
1213
+ }
1214
+ .filepond--action-edit-item.filepond--action-edit-item {
1215
+ width: 2em;
1216
+ height: 2em;
1217
+ padding: 0.1875em;
1218
+ }
1219
+ .filepond--action-edit-item.filepond--action-edit-item[data-align*=center] {
1220
+ margin-left: -0.1875em;
1221
+ }
1222
+ .filepond--action-edit-item.filepond--action-edit-item[data-align*=bottom] {
1223
+ margin-bottom: -0.1875em;
1224
+ }
1225
+ .filepond--action-edit-item-alt {
1226
+ border: none;
1227
+ line-height: inherit;
1228
+ background: transparent;
1229
+ font-family: inherit;
1230
+ color: inherit;
1231
+ outline: none;
1232
+ padding: 0;
1233
+ margin: 0 0 0 0.25em;
1234
+ pointer-events: all;
1235
+ position: absolute;
1236
+ }
1237
+ .filepond--action-edit-item-alt svg {
1238
+ width: 1.3125em;
1239
+ height: 1.3125em;
1240
+ }
1241
+ .filepond--action-edit-item-alt span {
1242
+ font-size: 0;
1243
+ opacity: 0;
1244
+ }
1245
+ .filepond--file-info {
1246
+ position: static;
1247
+ display: flex;
1248
+ flex-direction: column;
1249
+ align-items: flex-start;
1250
+ flex: 1;
1251
+ margin: 0 0.5em 0 0;
1252
+ min-width: 0;
1253
+ will-change: transform, opacity;
1254
+ pointer-events: none;
1255
+ -webkit-user-select: none;
1256
+ -moz-user-select: none;
1257
+ -ms-user-select: none;
1258
+ user-select: none;
1259
+ }
1260
+ .filepond--file-info * {
1261
+ margin: 0;
1262
+ }
1263
+ .filepond--file-info {
1264
+ }
1265
+ .filepond--file-info .filepond--file-info-main {
1266
+ font-size: 0.75em;
1267
+ line-height: 1.2;
1268
+ text-overflow: ellipsis;
1269
+ overflow: hidden;
1270
+ white-space: nowrap;
1271
+ width: 100%;
1272
+ }
1273
+ .filepond--file-info .filepond--file-info-sub {
1274
+ font-size: 0.625em;
1275
+ opacity: 0.5;
1276
+ transition: opacity 0.25s ease-in-out;
1277
+ white-space: nowrap;
1278
+ }
1279
+ .filepond--file-info .filepond--file-info-sub:empty {
1280
+ display: none;
1281
+ }
1282
+ .filepond--file-status {
1283
+ position: static;
1284
+ display: flex;
1285
+ flex-direction: column;
1286
+ align-items: flex-end;
1287
+ flex-grow: 0;
1288
+ flex-shrink: 0;
1289
+ margin: 0;
1290
+ min-width: 2.25em;
1291
+ text-align: right;
1292
+ will-change: transform, opacity;
1293
+ pointer-events: none;
1294
+ -webkit-user-select: none;
1295
+ -moz-user-select: none;
1296
+ -ms-user-select: none;
1297
+ user-select: none;
1298
+ }
1299
+ .filepond--file-status * {
1300
+ margin: 0;
1301
+ white-space: nowrap;
1302
+ }
1303
+ .filepond--file-status {
1304
+ }
1305
+ .filepond--file-status .filepond--file-status-main {
1306
+ font-size: 0.75em;
1307
+ line-height: 1.2;
1308
+ }
1309
+ .filepond--file-status .filepond--file-status-sub {
1310
+ font-size: 0.625em;
1311
+ opacity: 0.5;
1312
+ transition: opacity 0.25s ease-in-out;
1313
+ }
1314
+ .filepond--file-wrapper.filepond--file-wrapper {
1315
+ border: none;
1316
+ margin: 0;
1317
+ padding: 0;
1318
+ min-width: 0;
1319
+ height: 100%;
1320
+ }
1321
+ .filepond--file-wrapper.filepond--file-wrapper > legend {
1322
+ position: absolute;
1323
+ overflow: hidden;
1324
+ height: 1px;
1325
+ width: 1px;
1326
+ padding: 0;
1327
+ border: 0;
1328
+ clip: rect(1px, 1px, 1px, 1px);
1329
+ -webkit-clip-path: inset(50%);
1330
+ clip-path: inset(50%);
1331
+ white-space: nowrap;
1332
+ }
1333
+ .filepond--file {
1334
+ position: static;
1335
+ display: flex;
1336
+ height: 100%;
1337
+ align-items: flex-start;
1338
+ padding: 0.5625em 0.5625em;
1339
+ color: #fff;
1340
+ border-radius: 0.5em;
1341
+ }
1342
+ .filepond--file .filepond--file-status {
1343
+ margin-left: auto;
1344
+ margin-right: 2.25em;
1345
+ }
1346
+ .filepond--file .filepond--processing-complete-indicator {
1347
+ pointer-events: none;
1348
+ -webkit-user-select: none;
1349
+ -moz-user-select: none;
1350
+ -ms-user-select: none;
1351
+ user-select: none;
1352
+ z-index: 3;
1353
+ }
1354
+ .filepond--file .filepond--processing-complete-indicator,
1355
+ .filepond--file .filepond--progress-indicator,
1356
+ .filepond--file .filepond--file-action-button {
1357
+ position: absolute;
1358
+ }
1359
+ .filepond--file {
1360
+ }
1361
+ .filepond--file [data-align*=left] {
1362
+ left: 0.5625em;
1363
+ }
1364
+ .filepond--file [data-align*=right] {
1365
+ right: 0.5625em;
1366
+ }
1367
+ .filepond--file [data-align*=center] {
1368
+ left: calc(50% - 0.8125em);
1369
+ }
1370
+ .filepond--file [data-align*=bottom] {
1371
+ bottom: 1.125em;
1372
+ }
1373
+ .filepond--file [data-align=center] {
1374
+ top: calc(50% - 0.8125em);
1375
+ }
1376
+ .filepond--file .filepond--progress-indicator {
1377
+ margin-top: 0.1875em;
1378
+ }
1379
+ .filepond--file .filepond--progress-indicator[data-align*=right] {
1380
+ margin-right: 0.1875em;
1381
+ }
1382
+ .filepond--file .filepond--progress-indicator[data-align*=left] {
1383
+ margin-left: 0.1875em;
1384
+ }
1385
+ [data-filepond-item-state=cancelled] .filepond--file-info,
1386
+ [data-filepond-item-state*=invalid] .filepond--file-info,
1387
+ [data-filepond-item-state*=error] .filepond--file-info {
1388
+ margin-right: 2.25em;
1389
+ }
1390
+ [data-filepond-item-state~=processing] .filepond--file-status-sub {
1391
+ opacity: 0;
1392
+ }
1393
+ [data-filepond-item-state~=processing] .filepond--action-abort-item-processing ~ .filepond--file-status .filepond--file-status-sub {
1394
+ opacity: 0.5;
1395
+ }
1396
+ [data-filepond-item-state=processing-error] .filepond--file-status-sub {
1397
+ opacity: 0;
1398
+ }
1399
+ [data-filepond-item-state=processing-error] .filepond--action-retry-item-processing ~ .filepond--file-status .filepond--file-status-sub {
1400
+ opacity: 0.5;
1401
+ }
1402
+ [data-filepond-item-state=processing-complete] {
1403
+ }
1404
+ [data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing svg {
1405
+ -webkit-animation: fall 0.5s 0.125s linear both;
1406
+ animation: fall 0.5s 0.125s linear both;
1407
+ }
1408
+ [data-filepond-item-state=processing-complete] {
1409
+ }
1410
+ [data-filepond-item-state=processing-complete] .filepond--file-status-sub {
1411
+ opacity: 0.5;
1412
+ }
1413
+ [data-filepond-item-state=processing-complete] .filepond--processing-complete-indicator:not([style*=hidden]) ~ .filepond--file-status .filepond--file-status-sub {
1414
+ opacity: 0;
1415
+ }
1416
+ [data-filepond-item-state=processing-complete] .filepond--file-info-sub {
1417
+ opacity: 0;
1418
+ }
1419
+ [data-filepond-item-state=processing-complete] .filepond--action-revert-item-processing ~ .filepond--file-info .filepond--file-info-sub {
1420
+ opacity: 0.5;
1421
+ }
1422
+ [data-filepond-item-state*=invalid] .filepond--panel,
1423
+ [data-filepond-item-state*=invalid] .filepond--file-wrapper,
1424
+ [data-filepond-item-state*=error] .filepond--panel,
1425
+ [data-filepond-item-state*=error] .filepond--file-wrapper {
1426
+ -webkit-animation: shake 0.65s linear both;
1427
+ animation: shake 0.65s linear both;
1428
+ }
1429
+ [data-filepond-item-state*=busy] .filepond--progress-indicator svg {
1430
+ -webkit-animation: spin 1s linear infinite;
1431
+ animation: spin 1s linear infinite;
1432
+ }
1433
+ @-webkit-keyframes spin {
1434
+ 0% {
1435
+ -webkit-transform: rotateZ(0deg);
1436
+ transform: rotateZ(0deg);
1437
+ }
1438
+ 100% {
1439
+ -webkit-transform: rotateZ(360deg);
1440
+ transform: rotateZ(360deg);
1441
+ }
1442
+ }
1443
+ @keyframes spin {
1444
+ 0% {
1445
+ -webkit-transform: rotateZ(0deg);
1446
+ transform: rotateZ(0deg);
1447
+ }
1448
+ 100% {
1449
+ -webkit-transform: rotateZ(360deg);
1450
+ transform: rotateZ(360deg);
1451
+ }
1452
+ }
1453
+ @-webkit-keyframes shake {
1454
+ 10%, 90% {
1455
+ -webkit-transform: translateX(-0.0625em);
1456
+ transform: translateX(-0.0625em);
1457
+ }
1458
+ 20%, 80% {
1459
+ -webkit-transform: translateX(0.125em);
1460
+ transform: translateX(0.125em);
1461
+ }
1462
+ 30%, 50%, 70% {
1463
+ -webkit-transform: translateX(-0.25em);
1464
+ transform: translateX(-0.25em);
1465
+ }
1466
+ 40%, 60% {
1467
+ -webkit-transform: translateX(0.25em);
1468
+ transform: translateX(0.25em);
1469
+ }
1470
+ }
1471
+ @keyframes shake {
1472
+ 10%, 90% {
1473
+ -webkit-transform: translateX(-0.0625em);
1474
+ transform: translateX(-0.0625em);
1475
+ }
1476
+ 20%, 80% {
1477
+ -webkit-transform: translateX(0.125em);
1478
+ transform: translateX(0.125em);
1479
+ }
1480
+ 30%, 50%, 70% {
1481
+ -webkit-transform: translateX(-0.25em);
1482
+ transform: translateX(-0.25em);
1483
+ }
1484
+ 40%, 60% {
1485
+ -webkit-transform: translateX(0.25em);
1486
+ transform: translateX(0.25em);
1487
+ }
1488
+ }
1489
+ @-webkit-keyframes fall {
1490
+ 0% {
1491
+ opacity: 0;
1492
+ -webkit-transform: scale(0.5);
1493
+ transform: scale(0.5);
1494
+ -webkit-animation-timing-function: ease-out;
1495
+ animation-timing-function: ease-out;
1496
+ }
1497
+ 70% {
1498
+ opacity: 1;
1499
+ -webkit-transform: scale(1.1);
1500
+ transform: scale(1.1);
1501
+ -webkit-animation-timing-function: ease-in-out;
1502
+ animation-timing-function: ease-in-out;
1503
+ }
1504
+ 100% {
1505
+ -webkit-transform: scale(1);
1506
+ transform: scale(1);
1507
+ -webkit-animation-timing-function: ease-out;
1508
+ animation-timing-function: ease-out;
1509
+ }
1510
+ }
1511
+ @keyframes fall {
1512
+ 0% {
1513
+ opacity: 0;
1514
+ -webkit-transform: scale(0.5);
1515
+ transform: scale(0.5);
1516
+ -webkit-animation-timing-function: ease-out;
1517
+ animation-timing-function: ease-out;
1518
+ }
1519
+ 70% {
1520
+ opacity: 1;
1521
+ -webkit-transform: scale(1.1);
1522
+ transform: scale(1.1);
1523
+ -webkit-animation-timing-function: ease-in-out;
1524
+ animation-timing-function: ease-in-out;
1525
+ }
1526
+ 100% {
1527
+ -webkit-transform: scale(1);
1528
+ transform: scale(1);
1529
+ -webkit-animation-timing-function: ease-out;
1530
+ animation-timing-function: ease-out;
1531
+ }
1532
+ }
1533
+ .filepond--hopper[data-hopper-state=drag-over] > * {
1534
+ pointer-events: none;
1535
+ }
1536
+ .filepond--hopper[data-hopper-state=drag-over]::after {
1537
+ content: "";
1538
+ position: absolute;
1539
+ left: 0;
1540
+ top: 0;
1541
+ right: 0;
1542
+ bottom: 0;
1543
+ z-index: 100;
1544
+ }
1545
+ .filepond--progress-indicator {
1546
+ z-index: 103;
1547
+ }
1548
+ .filepond--file-action-button {
1549
+ z-index: 102;
1550
+ }
1551
+ .filepond--file-status {
1552
+ z-index: 101;
1553
+ }
1554
+ .filepond--file-info {
1555
+ z-index: 100;
1556
+ }
1557
+ .filepond--item {
1558
+ position: absolute;
1559
+ top: 0;
1560
+ left: 0;
1561
+ right: 0;
1562
+ z-index: 1;
1563
+ padding: 0;
1564
+ margin: 0.25em;
1565
+ will-change: transform, opacity;
1566
+ touch-action: auto;
1567
+ }
1568
+ .filepond--item > .filepond--panel {
1569
+ z-index: -1;
1570
+ }
1571
+ .filepond--item > .filepond--panel .filepond--panel-bottom {
1572
+ box-shadow: 0 0.0625em 0.125em -0.0625em rgba(0, 0, 0, 0.25);
1573
+ }
1574
+ .filepond--item {
1575
+ }
1576
+ .filepond--item > .filepond--file-wrapper,
1577
+ .filepond--item > .filepond--panel {
1578
+ transition: opacity 0.15s ease-out;
1579
+ }
1580
+ .filepond--item[data-drag-state] {
1581
+ cursor: -webkit-grab;
1582
+ cursor: grab;
1583
+ }
1584
+ .filepond--item[data-drag-state] > .filepond--panel {
1585
+ transition: box-shadow 0.125s ease-in-out;
1586
+ box-shadow: 0 0 0 rgba(0, 0, 0, 0);
1587
+ }
1588
+ .filepond--item[data-drag-state=drag] {
1589
+ cursor: -webkit-grabbing;
1590
+ cursor: grabbing;
1591
+ }
1592
+ .filepond--item[data-drag-state=drag] > .filepond--panel {
1593
+ box-shadow: 0 0.125em 0.3125em rgba(0, 0, 0, 0.325);
1594
+ }
1595
+ .filepond--item[data-drag-state]:not([data-drag-state=idle]) {
1596
+ z-index: 2;
1597
+ }
1598
+ .filepond--item-panel {
1599
+ background-color: #64605e;
1600
+ }
1601
+ [data-filepond-item-state=processing-complete] .filepond--item-panel {
1602
+ background-color: #369763;
1603
+ }
1604
+ [data-filepond-item-state*=invalid] .filepond--item-panel,
1605
+ [data-filepond-item-state*=error] .filepond--item-panel {
1606
+ background-color: #c44e47;
1607
+ }
1608
+ .filepond--item-panel {
1609
+ border-radius: 0.5em;
1610
+ transition: background-color 0.25s;
1611
+ }
1612
+ .filepond--list-scroller {
1613
+ position: absolute;
1614
+ top: 0;
1615
+ left: 0;
1616
+ right: 0;
1617
+ margin: 0;
1618
+ will-change: transform;
1619
+ }
1620
+ .filepond--list-scroller[data-state=overflow] .filepond--list {
1621
+ bottom: 0;
1622
+ right: 0;
1623
+ }
1624
+ .filepond--list-scroller[data-state=overflow] {
1625
+ overflow-y: scroll;
1626
+ overflow-x: hidden;
1627
+ -webkit-overflow-scrolling: touch;
1628
+ -webkit-mask:
1629
+ linear-gradient(
1630
+ to bottom,
1631
+ #000 calc(100% - 0.5em),
1632
+ transparent 100%);
1633
+ mask:
1634
+ linear-gradient(
1635
+ to bottom,
1636
+ #000 calc(100% - 0.5em),
1637
+ transparent 100%);
1638
+ }
1639
+ .filepond--list-scroller::-webkit-scrollbar {
1640
+ background: transparent;
1641
+ }
1642
+ .filepond--list-scroller::-webkit-scrollbar:vertical {
1643
+ width: 1em;
1644
+ }
1645
+ .filepond--list-scroller::-webkit-scrollbar:horizontal {
1646
+ height: 0;
1647
+ }
1648
+ .filepond--list-scroller::-webkit-scrollbar-thumb {
1649
+ background-color: rgba(0, 0, 0, 0.3);
1650
+ border-radius: 99999px;
1651
+ border: 0.3125em solid transparent;
1652
+ background-clip: content-box;
1653
+ }
1654
+ .filepond--list.filepond--list {
1655
+ position: absolute;
1656
+ top: 0;
1657
+ margin: 0;
1658
+ padding: 0;
1659
+ list-style-type: none;
1660
+ will-change: transform;
1661
+ }
1662
+ .filepond--list {
1663
+ left: 0.75em;
1664
+ right: 0.75em;
1665
+ }
1666
+ .filepond--root[data-style-panel-layout~=integrated] {
1667
+ width: 100%;
1668
+ height: 100%;
1669
+ max-width: none;
1670
+ margin: 0;
1671
+ }
1672
+ .filepond--root[data-style-panel-layout~=circle] .filepond--panel-root,
1673
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root {
1674
+ border-radius: 0;
1675
+ }
1676
+ .filepond--root[data-style-panel-layout~=circle] .filepond--panel-root > *,
1677
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--panel-root > * {
1678
+ display: none;
1679
+ }
1680
+ .filepond--root[data-style-panel-layout~=circle] .filepond--drop-label,
1681
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
1682
+ bottom: 0;
1683
+ height: auto;
1684
+ display: flex;
1685
+ justify-content: center;
1686
+ align-items: center;
1687
+ z-index: 7;
1688
+ }
1689
+ .filepond--root[data-style-panel-layout~=circle],
1690
+ .filepond--root[data-style-panel-layout~=integrated] {
1691
+ }
1692
+ .filepond--root[data-style-panel-layout~=circle] .filepond--item-panel,
1693
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--item-panel {
1694
+ display: none;
1695
+ }
1696
+ .filepond--root[data-style-panel-layout~=compact] .filepond--list-scroller,
1697
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--list-scroller {
1698
+ overflow: hidden;
1699
+ height: 100%;
1700
+ margin-top: 0;
1701
+ margin-bottom: 0;
1702
+ }
1703
+ .filepond--root[data-style-panel-layout~=compact] .filepond--list,
1704
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--list {
1705
+ left: 0;
1706
+ right: 0;
1707
+ height: 100%;
1708
+ }
1709
+ .filepond--root[data-style-panel-layout~=compact] .filepond--item,
1710
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--item {
1711
+ margin: 0;
1712
+ }
1713
+ .filepond--root[data-style-panel-layout~=compact] .filepond--file-wrapper,
1714
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--file-wrapper {
1715
+ height: 100%;
1716
+ }
1717
+ .filepond--root[data-style-panel-layout~=compact] .filepond--drop-label,
1718
+ .filepond--root[data-style-panel-layout~=integrated] .filepond--drop-label {
1719
+ z-index: 7;
1720
+ }
1721
+ .filepond--root[data-style-panel-layout~=circle] {
1722
+ border-radius: 99999rem;
1723
+ overflow: hidden;
1724
+ }
1725
+ .filepond--root[data-style-panel-layout~=circle] > .filepond--panel {
1726
+ border-radius: inherit;
1727
+ }
1728
+ .filepond--root[data-style-panel-layout~=circle] > .filepond--panel > * {
1729
+ display: none;
1730
+ }
1731
+ .filepond--root[data-style-panel-layout~=circle] {
1732
+ }
1733
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file-info {
1734
+ display: none;
1735
+ }
1736
+ .filepond--root[data-style-panel-layout~=circle] .filepond--file-status {
1737
+ display: none;
1738
+ }
1739
+ .filepond--root[data-style-panel-layout~=circle] .filepond--action-edit-item {
1740
+ opacity: 1 !important;
1741
+ visibility: visible !important;
1742
+ }
1743
+ @media not all and (min-resolution: 0.001dpcm) {
1744
+ @supports (-webkit-appearance: none) and (stroke-color: transparent) {
1745
+ .filepond--root[data-style-panel-layout~=circle] {
1746
+ will-change: transform;
1747
+ }
1748
+ }
1749
+ }
1750
+ .filepond--panel-root {
1751
+ border-radius: 0.5em;
1752
+ background-color: #f1f0ef;
1753
+ }
1754
+ .filepond--panel {
1755
+ position: absolute;
1756
+ left: 0;
1757
+ top: 0;
1758
+ right: 0;
1759
+ margin: 0;
1760
+ height: 100% !important;
1761
+ pointer-events: none;
1762
+ }
1763
+ .filepond-panel:not([data-scalable=false]) {
1764
+ height: auto !important;
1765
+ }
1766
+ .filepond--panel[data-scalable=false] > div {
1767
+ display: none;
1768
+ }
1769
+ .filepond--panel[data-scalable=true] {
1770
+ -webkit-transform-style: preserve-3d;
1771
+ transform-style: preserve-3d;
1772
+ background-color: transparent !important;
1773
+ border: none !important;
1774
+ }
1775
+ .filepond--panel-top,
1776
+ .filepond--panel-bottom,
1777
+ .filepond--panel-center {
1778
+ position: absolute;
1779
+ left: 0;
1780
+ top: 0;
1781
+ right: 0;
1782
+ margin: 0;
1783
+ padding: 0;
1784
+ }
1785
+ .filepond--panel-top,
1786
+ .filepond--panel-bottom {
1787
+ height: 0.5em;
1788
+ }
1789
+ .filepond--panel-top {
1790
+ border-bottom-left-radius: 0 !important;
1791
+ border-bottom-right-radius: 0 !important;
1792
+ border-bottom: none !important;
1793
+ }
1794
+ .filepond--panel-top::after {
1795
+ content: "";
1796
+ position: absolute;
1797
+ height: 2px;
1798
+ left: 0;
1799
+ right: 0;
1800
+ bottom: -1px;
1801
+ background-color: inherit;
1802
+ }
1803
+ .filepond--panel-center,
1804
+ .filepond--panel-bottom {
1805
+ will-change: transform;
1806
+ -webkit-backface-visibility: hidden;
1807
+ backface-visibility: hidden;
1808
+ -webkit-transform-origin: left top;
1809
+ transform-origin: left top;
1810
+ -webkit-transform: translate3d(0, 0.5em, 0);
1811
+ transform: translate3d(0, 0.5em, 0);
1812
+ }
1813
+ .filepond--panel-bottom {
1814
+ border-top-left-radius: 0 !important;
1815
+ border-top-right-radius: 0 !important;
1816
+ border-top: none !important;
1817
+ }
1818
+ .filepond--panel-bottom::before {
1819
+ content: "";
1820
+ position: absolute;
1821
+ height: 2px;
1822
+ left: 0;
1823
+ right: 0;
1824
+ top: -1px;
1825
+ background-color: inherit;
1826
+ }
1827
+ .filepond--panel-center {
1828
+ height: 100px !important;
1829
+ border-top: none !important;
1830
+ border-bottom: none !important;
1831
+ border-radius: 0 !important;
1832
+ }
1833
+ .filepond--panel-center:not([style]) {
1834
+ visibility: hidden;
1835
+ }
1836
+ .filepond--progress-indicator {
1837
+ position: static;
1838
+ width: 1.25em;
1839
+ height: 1.25em;
1840
+ color: #fff;
1841
+ margin: 0;
1842
+ pointer-events: none;
1843
+ will-change: transform, opacity;
1844
+ }
1845
+ .filepond--progress-indicator svg {
1846
+ width: 100%;
1847
+ height: 100%;
1848
+ vertical-align: top;
1849
+ transform-box: fill-box;
1850
+ }
1851
+ .filepond--progress-indicator path {
1852
+ fill: none;
1853
+ stroke: currentColor;
1854
+ }
1855
+ .filepond--list-scroller {
1856
+ z-index: 6;
1857
+ }
1858
+ .filepond--drop-label {
1859
+ z-index: 5;
1860
+ }
1861
+ .filepond--drip {
1862
+ z-index: 3;
1863
+ }
1864
+ .filepond--root > .filepond--panel {
1865
+ z-index: 2;
1866
+ }
1867
+ .filepond--browser {
1868
+ z-index: 1;
1869
+ }
1870
+ .filepond--root {
1871
+ box-sizing: border-box;
1872
+ position: relative;
1873
+ margin-bottom: 1em;
1874
+ font-size: 1rem;
1875
+ line-height: normal;
1876
+ font-family:
1877
+ -apple-system,
1878
+ BlinkMacSystemFont,
1879
+ "Segoe UI",
1880
+ Roboto,
1881
+ Helvetica,
1882
+ Arial,
1883
+ sans-serif,
1884
+ "Apple Color Emoji",
1885
+ "Segoe UI Emoji",
1886
+ "Segoe UI Symbol";
1887
+ font-weight: 450;
1888
+ text-align: left;
1889
+ text-rendering: optimizeLegibility;
1890
+ direction: ltr;
1891
+ contain: layout style size;
1892
+ }
1893
+ .filepond--root * {
1894
+ box-sizing: inherit;
1895
+ line-height: inherit;
1896
+ }
1897
+ .filepond--root *:not(text) {
1898
+ font-size: inherit;
1899
+ }
1900
+ .filepond--root {
1901
+ }
1902
+ .filepond--root[data-disabled] {
1903
+ pointer-events: none;
1904
+ }
1905
+ .filepond--root[data-disabled] .filepond--list-scroller {
1906
+ pointer-events: all;
1907
+ }
1908
+ .filepond--root[data-disabled] .filepond--list {
1909
+ pointer-events: none;
1910
+ }
1911
+ .filepond--root .filepond--drop-label {
1912
+ min-height: 4.75em;
1913
+ }
1914
+ .filepond--root .filepond--list-scroller {
1915
+ margin-top: 1em;
1916
+ margin-bottom: 1em;
1917
+ }
1918
+ .filepond--root .filepond--credits {
1919
+ position: absolute;
1920
+ right: 0;
1921
+ opacity: 0.4;
1922
+ line-height: 0.85;
1923
+ font-size: 11px;
1924
+ color: inherit;
1925
+ text-decoration: none;
1926
+ z-index: 3;
1927
+ bottom: -14px;
1928
+ }
1929
+ .filepond--root .filepond--credits[style] {
1930
+ top: 0;
1931
+ bottom: auto;
1932
+ margin-top: 14px;
1933
+ }
1934
+ /*! Bundled license information:
1935
+
1936
+ filepond-plugin-file-poster/dist/filepond-plugin-file-poster.css:
1937
+ (*!
1938
+ * FilePondPluginFilePoster 2.5.2
1939
+ * Licensed under MIT, https://opensource.org/licenses/MIT/
1940
+ * Please visit https://pqina.nl/filepond/ for details.
1941
+ *)
1942
+
1943
+ filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css:
1944
+ (*!
1945
+ * FilePondPluginImagePreview 4.6.12
1946
+ * Licensed under MIT, https://opensource.org/licenses/MIT/
1947
+ * Please visit https://pqina.nl/filepond/ for details.
1948
+ *)
1949
+
1950
+ filepond/dist/filepond.css:
1951
+ (*!
1952
+ * FilePond 4.32.9
1953
+ * Licensed under MIT, https://opensource.org/licenses/MIT/
1954
+ * Please visit https://pqina.nl/filepond/ for details.
1955
+ *)
1956
+ */