@norskvideo/norsk-studio-built-ins 1.19.0 → 1.26.0-2025-02-19-e81e84b9

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 (247) hide show
  1. package/client/info.js +5983 -699
  2. package/client/output.preview/styles.css +69 -69
  3. package/client/output.whep/styles.css +9 -0
  4. package/client/style.css +283 -856
  5. package/lib/info.js +14 -14
  6. package/lib/info.js.map +1 -1
  7. package/lib/input.rtmp/info.js +19 -5
  8. package/lib/input.rtmp/info.js.map +1 -1
  9. package/lib/input.rtmp/inline-view.js +3 -3
  10. package/lib/input.rtmp/runtime.d.ts +46 -7
  11. package/lib/input.rtmp/runtime.js +245 -59
  12. package/lib/input.rtmp/runtime.js.map +1 -1
  13. package/lib/input.rtmp/summary-view.d.ts +3 -5
  14. package/lib/input.rtmp/summary-view.js +51 -6
  15. package/lib/input.rtmp/summary-view.js.map +1 -1
  16. package/lib/input.rtmp/types.d.ts +193 -0
  17. package/lib/{processor.browserOverlay/openApi.js → input.rtmp/types.js} +1 -1
  18. package/lib/input.rtmp/types.js.map +1 -0
  19. package/lib/input.rtmp/types.yaml +147 -0
  20. package/lib/input.silence/info.js +9 -2
  21. package/lib/input.silence/info.js.map +1 -1
  22. package/lib/input.silence/runtime.d.ts +1 -0
  23. package/lib/input.silence/runtime.js.map +1 -1
  24. package/lib/input.srt-caller/info.js +8 -1
  25. package/lib/input.srt-caller/info.js.map +1 -1
  26. package/lib/input.srt-caller/runtime.d.ts +1 -0
  27. package/lib/input.srt-caller/runtime.js.map +1 -1
  28. package/lib/input.srt-listener/info.js +15 -2
  29. package/lib/input.srt-listener/info.js.map +1 -1
  30. package/lib/input.srt-listener/runtime.d.ts +41 -5
  31. package/lib/input.srt-listener/runtime.js +236 -57
  32. package/lib/input.srt-listener/runtime.js.map +1 -1
  33. package/lib/input.srt-listener/summary-view.d.ts +3 -5
  34. package/lib/input.srt-listener/summary-view.js +45 -6
  35. package/lib/input.srt-listener/summary-view.js.map +1 -1
  36. package/lib/input.srt-listener/types.d.ts +193 -0
  37. package/lib/input.srt-listener/types.js +3 -0
  38. package/lib/input.srt-listener/types.js.map +1 -0
  39. package/lib/input.srt-listener/types.yaml +145 -0
  40. package/lib/input.udp-ts/info.js +2 -1
  41. package/lib/input.udp-ts/info.js.map +1 -1
  42. package/lib/input.udp-ts/runtime.d.ts +1 -0
  43. package/lib/input.udp-ts/runtime.js.map +1 -1
  44. package/lib/input.videoTestCard/info.d.ts +1 -1
  45. package/lib/input.videoTestCard/info.js +17 -4
  46. package/lib/input.videoTestCard/info.js.map +1 -1
  47. package/lib/input.videoTestCard/runtime.d.ts +1 -0
  48. package/lib/output.autoCmaf/form-views.d.ts +2 -2
  49. package/lib/output.autoCmaf/form-views.js +13 -3
  50. package/lib/output.autoCmaf/form-views.js.map +1 -1
  51. package/lib/output.autoCmaf/info.d.ts +21 -2
  52. package/lib/output.autoCmaf/info.js +106 -32
  53. package/lib/output.autoCmaf/info.js.map +1 -1
  54. package/lib/output.autoCmaf/inline-view.d.ts +6 -0
  55. package/lib/output.autoCmaf/inline-view.js +8 -0
  56. package/lib/output.autoCmaf/inline-view.js.map +1 -0
  57. package/lib/output.autoCmaf/runtime.d.ts +29 -43
  58. package/lib/output.autoCmaf/runtime.js +314 -96
  59. package/lib/output.autoCmaf/runtime.js.map +1 -1
  60. package/lib/output.autoCmaf/summary-view.d.ts +4 -0
  61. package/lib/output.autoCmaf/summary-view.js +24 -0
  62. package/lib/output.autoCmaf/summary-view.js.map +1 -0
  63. package/lib/output.autoCmaf/summary.js +3 -0
  64. package/lib/output.autoCmaf/summary.js.map +1 -1
  65. package/lib/output.autoCmaf/types.d.ts +158 -0
  66. package/lib/output.autoCmaf/types.js +3 -0
  67. package/lib/output.autoCmaf/types.js.map +1 -0
  68. package/lib/output.autoCmaf/types.yaml +182 -0
  69. package/lib/output.autoHls/info.d.ts +3 -0
  70. package/lib/output.autoHls/info.js +22 -0
  71. package/lib/output.autoHls/info.js.map +1 -0
  72. package/lib/output.autoHls/runtime.d.ts +6 -0
  73. package/lib/output.autoHls/runtime.js +13 -0
  74. package/lib/output.autoHls/runtime.js.map +1 -0
  75. package/lib/output.preview/info.d.ts +5 -2
  76. package/lib/output.preview/info.js +23 -3
  77. package/lib/output.preview/info.js.map +1 -1
  78. package/lib/output.preview/inline-view.d.ts +2 -4
  79. package/lib/output.preview/inline-view.js +65 -7
  80. package/lib/output.preview/inline-view.js.map +1 -1
  81. package/lib/output.preview/runtime.d.ts +18 -12
  82. package/lib/output.preview/runtime.js +122 -33
  83. package/lib/output.preview/runtime.js.map +1 -1
  84. package/lib/output.preview/types.d.ts +56 -0
  85. package/lib/output.preview/types.js +3 -0
  86. package/lib/output.preview/types.js.map +1 -0
  87. package/lib/output.preview/types.yaml +37 -0
  88. package/lib/output.rtmp/info.js +14 -2
  89. package/lib/output.rtmp/info.js.map +1 -1
  90. package/lib/output.rtmp/inline-view.js +5 -2
  91. package/lib/output.rtmp/inline-view.js.map +1 -1
  92. package/lib/output.rtmp/runtime.d.ts +31 -5
  93. package/lib/output.rtmp/runtime.js +169 -34
  94. package/lib/output.rtmp/runtime.js.map +1 -1
  95. package/lib/output.rtmp/summary-view.d.ts +4 -0
  96. package/lib/output.rtmp/summary-view.js +24 -0
  97. package/lib/output.rtmp/summary-view.js.map +1 -0
  98. package/lib/output.rtmp/types.d.ts +101 -0
  99. package/lib/output.rtmp/types.js +3 -0
  100. package/lib/output.rtmp/types.js.map +1 -0
  101. package/lib/output.rtmp/types.yaml +30 -0
  102. package/lib/output.srt/info.d.ts +2 -2
  103. package/lib/output.srt/info.js +29 -1
  104. package/lib/output.srt/info.js.map +1 -1
  105. package/lib/output.srt/inline-view.d.ts +6 -0
  106. package/lib/output.srt/inline-view.js +8 -0
  107. package/lib/output.srt/inline-view.js.map +1 -0
  108. package/lib/output.srt/runtime.d.ts +35 -5
  109. package/lib/output.srt/runtime.js +174 -6
  110. package/lib/output.srt/runtime.js.map +1 -1
  111. package/lib/output.srt/summary-view.d.ts +4 -0
  112. package/lib/output.srt/summary-view.js +24 -0
  113. package/lib/output.srt/summary-view.js.map +1 -0
  114. package/lib/output.srt/types.d.ts +101 -0
  115. package/lib/output.srt/types.js +3 -0
  116. package/lib/output.srt/types.js.map +1 -0
  117. package/lib/output.srt/types.yaml +31 -0
  118. package/lib/output.statistics/info.js +3 -1
  119. package/lib/output.statistics/info.js.map +1 -1
  120. package/lib/output.statistics/inline-view.js +3 -2
  121. package/lib/output.statistics/inline-view.js.map +1 -1
  122. package/lib/output.statistics/runtime.d.ts +1 -0
  123. package/lib/output.statistics/runtime.js.map +1 -1
  124. package/lib/output.udpTs/info.js +4 -0
  125. package/lib/output.udpTs/info.js.map +1 -1
  126. package/lib/output.udpTs/runtime.d.ts +1 -0
  127. package/lib/output.udpTs/runtime.js.map +1 -1
  128. package/lib/output.whep/info.d.ts +2 -2
  129. package/lib/output.whep/info.js +61 -1
  130. package/lib/output.whep/info.js.map +1 -1
  131. package/lib/output.whep/inline-view.d.ts +4 -0
  132. package/lib/output.whep/inline-view.js +57 -0
  133. package/lib/output.whep/inline-view.js.map +1 -0
  134. package/lib/output.whep/runtime.d.ts +39 -5
  135. package/lib/output.whep/runtime.js +175 -13
  136. package/lib/output.whep/runtime.js.map +1 -1
  137. package/lib/output.whep/summary-view.d.ts +4 -0
  138. package/lib/output.whep/summary-view.js +24 -0
  139. package/lib/output.whep/summary-view.js.map +1 -0
  140. package/lib/output.whep/types.d.ts +101 -0
  141. package/lib/output.whep/types.js +3 -0
  142. package/lib/output.whep/types.js.map +1 -0
  143. package/lib/output.whep/types.yaml +30 -0
  144. package/lib/processor.audioEncoder/form-views.d.ts +8 -0
  145. package/lib/processor.audioEncoder/form-views.js +8 -0
  146. package/lib/processor.audioEncoder/form-views.js.map +1 -0
  147. package/lib/processor.audioEncoder/info.d.ts +3 -0
  148. package/lib/processor.audioEncoder/info.js +160 -0
  149. package/lib/processor.audioEncoder/info.js.map +1 -0
  150. package/lib/processor.audioEncoder/runtime.d.ts +21 -0
  151. package/lib/processor.audioEncoder/runtime.js +20 -0
  152. package/lib/processor.audioEncoder/runtime.js.map +1 -0
  153. package/lib/processor.browserOverlay/info.js +1 -0
  154. package/lib/processor.browserOverlay/info.js.map +1 -1
  155. package/lib/processor.browserOverlay/runtime.d.ts +1 -0
  156. package/lib/processor.browserOverlay/runtime.js +6 -26
  157. package/lib/processor.browserOverlay/runtime.js.map +1 -1
  158. package/lib/processor.browserOverlay/types.js +3 -0
  159. package/lib/processor.browserOverlay/types.js.map +1 -0
  160. package/lib/processor.cascadingSwitch/info.js +3 -2
  161. package/lib/processor.cascadingSwitch/info.js.map +1 -1
  162. package/lib/processor.cascadingSwitch/inline-view.js +3 -3
  163. package/lib/processor.cascadingSwitch/runtime.d.ts +1 -0
  164. package/lib/processor.cascadingSwitch/runtime.js +2 -2
  165. package/lib/processor.cascadingSwitch/runtime.js.map +1 -1
  166. package/lib/processor.fixedLadder/codec-editor.js +1 -1
  167. package/lib/processor.fixedLadder/codec-editor.js.map +1 -1
  168. package/lib/processor.fixedLadder/codec-view.d.ts +1 -1
  169. package/lib/processor.fixedLadder/codec-view.js +1 -1
  170. package/lib/processor.fixedLadder/codec-view.js.map +1 -1
  171. package/lib/processor.fixedLadder/info.d.ts +33 -7
  172. package/lib/processor.fixedLadder/info.js +19 -6
  173. package/lib/processor.fixedLadder/info.js.map +1 -1
  174. package/lib/processor.fixedLadder/runtime.d.ts +16 -29
  175. package/lib/processor.fixedLadder/runtime.js +16 -1
  176. package/lib/processor.fixedLadder/runtime.js.map +1 -1
  177. package/lib/processor.fixedLadder/types.d.ts +240 -0
  178. package/lib/processor.fixedLadder/types.js +3 -0
  179. package/lib/processor.fixedLadder/types.js.map +1 -0
  180. package/lib/processor.fixedLadder/types.yaml +541 -0
  181. package/lib/processor.onscreenGraphic/info.js +11 -5
  182. package/lib/processor.onscreenGraphic/info.js.map +1 -1
  183. package/lib/processor.onscreenGraphic/runtime.d.ts +27 -2
  184. package/lib/processor.onscreenGraphic/runtime.js +116 -52
  185. package/lib/processor.onscreenGraphic/runtime.js.map +1 -1
  186. package/lib/processor.onscreenGraphic/summary-view.d.ts +1 -1
  187. package/lib/processor.onscreenGraphic/summary-view.js +235 -11
  188. package/lib/processor.onscreenGraphic/summary-view.js.map +1 -1
  189. package/lib/processor.onscreenGraphic/types.d.ts +15 -1
  190. package/lib/processor.onscreenGraphic/types.yaml +63 -14
  191. package/lib/processor.streamKeyOverride/info.d.ts +3 -0
  192. package/lib/processor.streamKeyOverride/info.js +151 -0
  193. package/lib/processor.streamKeyOverride/info.js.map +1 -0
  194. package/lib/processor.streamKeyOverride/runtime.d.ts +55 -0
  195. package/lib/processor.streamKeyOverride/runtime.js +226 -0
  196. package/lib/processor.streamKeyOverride/runtime.js.map +1 -0
  197. package/lib/shared/api.d.ts +35 -0
  198. package/lib/shared/api.js +34 -0
  199. package/lib/shared/api.js.map +1 -0
  200. package/lib/test/auto-cmaf.js +219 -43
  201. package/lib/test/auto-cmaf.js.map +1 -1
  202. package/lib/test/onscreen-graphic.js +79 -42
  203. package/lib/test/onscreen-graphic.js.map +1 -1
  204. package/lib/test/preview.js +69 -64
  205. package/lib/test/preview.js.map +1 -1
  206. package/lib/test/rtmp-input.js +6 -3
  207. package/lib/test/rtmp-input.js.map +1 -1
  208. package/lib/test/rtmp-output.js +105 -1
  209. package/lib/test/rtmp-output.js.map +1 -1
  210. package/lib/test/srt-input-listener.js +331 -0
  211. package/lib/test/srt-input-listener.js.map +1 -1
  212. package/lib/test/srt-output.js +93 -4
  213. package/lib/test/srt-output.js.map +1 -1
  214. package/lib/test/whep-output.js +192 -5
  215. package/lib/test/whep-output.js.map +1 -1
  216. package/lib/util.stats.latency/info.js +1 -0
  217. package/lib/util.stats.latency/info.js.map +1 -1
  218. package/lib/util.stats.latency/runtime.d.ts +1 -0
  219. package/lib/util.stats.latency/runtime.js +2 -2
  220. package/lib/util.stats.latency/runtime.js.map +1 -1
  221. package/package.json +4 -4
  222. package/lib/processor.browserOverlay/openApi.js.map +0 -1
  223. package/lib/processor.whisper-transcribe/info.d.ts +0 -3
  224. package/lib/processor.whisper-transcribe/info.js +0 -44
  225. package/lib/processor.whisper-transcribe/info.js.map +0 -1
  226. package/lib/processor.whisper-transcribe/runtime.d.ts +0 -29
  227. package/lib/processor.whisper-transcribe/runtime.js +0 -83
  228. package/lib/processor.whisper-transcribe/runtime.js.map +0 -1
  229. package/lib/util.stats.ma35d/info.d.ts +0 -3
  230. package/lib/util.stats.ma35d/info.js +0 -79
  231. package/lib/util.stats.ma35d/info.js.map +0 -1
  232. package/lib/util.stats.ma35d/inline-view.d.ts +0 -6
  233. package/lib/util.stats.ma35d/inline-view.js +0 -76
  234. package/lib/util.stats.ma35d/inline-view.js.map +0 -1
  235. package/lib/util.stats.ma35d/runtime.d.ts +0 -21
  236. package/lib/util.stats.ma35d/runtime.js +0 -49
  237. package/lib/util.stats.ma35d/runtime.js.map +0 -1
  238. package/lib/util.timestamps/info.d.ts +0 -5
  239. package/lib/util.timestamps/info.js +0 -87
  240. package/lib/util.timestamps/info.js.map +0 -1
  241. package/lib/util.timestamps/inline-view.d.ts +0 -6
  242. package/lib/util.timestamps/inline-view.js +0 -94
  243. package/lib/util.timestamps/inline-view.js.map +0 -1
  244. package/lib/util.timestamps/runtime.d.ts +0 -29
  245. package/lib/util.timestamps/runtime.js +0 -40
  246. package/lib/util.timestamps/runtime.js.map +0 -1
  247. /package/lib/processor.browserOverlay/{openApi.d.ts → types.d.ts} +0 -0
package/client/style.css CHANGED
@@ -1,6 +1,4 @@
1
- *, ::before, ::after {
2
- --tw-border-spacing-x: 0;
3
- --tw-border-spacing-y: 0;
1
+ .transform, .peer-checked\:after\:translate-x-full::after {
4
2
  --tw-translate-x: 0;
5
3
  --tw-translate-y: 0;
6
4
  --tw-rotate: 0;
@@ -8,53 +6,9 @@
8
6
  --tw-skew-y: 0;
9
7
  --tw-scale-x: 1;
10
8
  --tw-scale-y: 1;
11
- --tw-pan-x: ;
12
- --tw-pan-y: ;
13
- --tw-pinch-zoom: ;
14
- --tw-scroll-snap-strictness: proximity;
15
- --tw-gradient-from-position: ;
16
- --tw-gradient-via-position: ;
17
- --tw-gradient-to-position: ;
18
- --tw-ordinal: ;
19
- --tw-slashed-zero: ;
20
- --tw-numeric-figure: ;
21
- --tw-numeric-spacing: ;
22
- --tw-numeric-fraction: ;
23
- --tw-ring-inset: ;
24
- --tw-ring-offset-width: 0px;
25
- --tw-ring-offset-color: #fff;
26
- --tw-ring-color: rgb(63 131 248 / 0.5);
27
- --tw-ring-offset-shadow: 0 0 #0000;
28
- --tw-ring-shadow: 0 0 #0000;
29
- --tw-shadow: 0 0 #0000;
30
- --tw-shadow-colored: 0 0 #0000;
31
- --tw-blur: ;
32
- --tw-brightness: ;
33
- --tw-contrast: ;
34
- --tw-grayscale: ;
35
- --tw-hue-rotate: ;
36
- --tw-invert: ;
37
- --tw-saturate: ;
38
- --tw-sepia: ;
39
- --tw-drop-shadow: ;
40
- --tw-backdrop-blur: ;
41
- --tw-backdrop-brightness: ;
42
- --tw-backdrop-contrast: ;
43
- --tw-backdrop-grayscale: ;
44
- --tw-backdrop-hue-rotate: ;
45
- --tw-backdrop-invert: ;
46
- --tw-backdrop-opacity: ;
47
- --tw-backdrop-saturate: ;
48
- --tw-backdrop-sepia: ;
49
- --tw-contain-size: ;
50
- --tw-contain-layout: ;
51
- --tw-contain-paint: ;
52
- --tw-contain-style: ;
53
- }
54
-
55
- ::backdrop {
56
- --tw-border-spacing-x: 0;
57
- --tw-border-spacing-y: 0;
9
+ }
10
+
11
+ .rtl\:peer-checked\:after\:-translate-x-full:where([dir="rtl"], [dir="rtl"] *)::after {
58
12
  --tw-translate-x: 0;
59
13
  --tw-translate-y: 0;
60
14
  --tw-rotate: 0;
@@ -62,18 +16,16 @@
62
16
  --tw-skew-y: 0;
63
17
  --tw-scale-x: 1;
64
18
  --tw-scale-y: 1;
65
- --tw-pan-x: ;
66
- --tw-pan-y: ;
67
- --tw-pinch-zoom: ;
68
- --tw-scroll-snap-strictness: proximity;
69
- --tw-gradient-from-position: ;
70
- --tw-gradient-via-position: ;
71
- --tw-gradient-to-position: ;
72
- --tw-ordinal: ;
73
- --tw-slashed-zero: ;
74
- --tw-numeric-figure: ;
75
- --tw-numeric-spacing: ;
76
- --tw-numeric-fraction: ;
19
+ }
20
+
21
+ .shadow-lg, .shadow-sm {
22
+ --tw-ring-offset-shadow: 0 0 #0000;
23
+ --tw-ring-shadow: 0 0 #0000;
24
+ --tw-shadow: 0 0 #0000;
25
+ --tw-shadow-colored: 0 0 #0000;
26
+ }
27
+
28
+ .focus\:ring-4, .peer-focus\:ring-4 {
77
29
  --tw-ring-inset: ;
78
30
  --tw-ring-offset-width: 0px;
79
31
  --tw-ring-offset-color: #fff;
@@ -82,6 +34,9 @@
82
34
  --tw-ring-shadow: 0 0 #0000;
83
35
  --tw-shadow: 0 0 #0000;
84
36
  --tw-shadow-colored: 0 0 #0000;
37
+ }
38
+
39
+ .filter {
85
40
  --tw-blur: ;
86
41
  --tw-brightness: ;
87
42
  --tw-contrast: ;
@@ -91,802 +46,10 @@
91
46
  --tw-saturate: ;
92
47
  --tw-sepia: ;
93
48
  --tw-drop-shadow: ;
94
- --tw-backdrop-blur: ;
95
- --tw-backdrop-brightness: ;
96
- --tw-backdrop-contrast: ;
97
- --tw-backdrop-grayscale: ;
98
- --tw-backdrop-hue-rotate: ;
99
- --tw-backdrop-invert: ;
100
- --tw-backdrop-opacity: ;
101
- --tw-backdrop-saturate: ;
102
- --tw-backdrop-sepia: ;
103
- --tw-contain-size: ;
104
- --tw-contain-layout: ;
105
- --tw-contain-paint: ;
106
- --tw-contain-style: ;
107
- }
108
-
109
- /*
110
- ! tailwindcss v3.4.12 | MIT License | https://tailwindcss.com
111
- */
112
-
113
- /*
114
- 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
115
- 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
116
- */
117
-
118
- *,
119
- ::before,
120
- ::after {
121
- box-sizing: border-box;
122
- /* 1 */
123
- border-width: 0;
124
- /* 2 */
125
- border-style: solid;
126
- /* 2 */
127
- border-color: #E5E7EB;
128
- /* 2 */
129
- }
130
-
131
- ::before,
132
- ::after {
133
- --tw-content: '';
134
- }
135
-
136
- /*
137
- 1. Use a consistent sensible line-height in all browsers.
138
- 2. Prevent adjustments of font size after orientation changes in iOS.
139
- 3. Use a more readable tab size.
140
- 4. Use the user's configured `sans` font-family by default.
141
- 5. Use the user's configured `sans` font-feature-settings by default.
142
- 6. Use the user's configured `sans` font-variation-settings by default.
143
- 7. Disable tap highlights on iOS
144
- */
145
-
146
- html,
147
- :host {
148
- line-height: 1.5;
149
- /* 1 */
150
- -webkit-text-size-adjust: 100%;
151
- /* 2 */
152
- -moz-tab-size: 4;
153
- /* 3 */
154
- -o-tab-size: 4;
155
- tab-size: 4;
156
- /* 3 */
157
- font-family: Inter, ui-sans-serif, system-ui, -apple-system, system-ui, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
158
- /* 4 */
159
- font-feature-settings: normal;
160
- /* 5 */
161
- font-variation-settings: normal;
162
- /* 6 */
163
- -webkit-tap-highlight-color: transparent;
164
- /* 7 */
165
- }
166
-
167
- /*
168
- 1. Remove the margin in all browsers.
169
- 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
170
- */
171
-
172
- body {
173
- margin: 0;
174
- /* 1 */
175
- line-height: inherit;
176
- /* 2 */
177
- }
178
-
179
- /*
180
- 1. Add the correct height in Firefox.
181
- 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
182
- 3. Ensure horizontal rules are visible by default.
183
- */
184
-
185
- hr {
186
- height: 0;
187
- /* 1 */
188
- color: inherit;
189
- /* 2 */
190
- border-top-width: 1px;
191
- /* 3 */
192
- }
193
-
194
- /*
195
- Add the correct text decoration in Chrome, Edge, and Safari.
196
- */
197
-
198
- abbr:where([title]) {
199
- -webkit-text-decoration: underline dotted;
200
- text-decoration: underline dotted;
201
- }
202
-
203
- /*
204
- Remove the default font size and weight for headings.
205
- */
206
-
207
- h1,
208
- h2,
209
- h3,
210
- h4,
211
- h5,
212
- h6 {
213
- font-size: inherit;
214
- font-weight: inherit;
215
- }
216
-
217
- /*
218
- Reset links to optimize for opt-in styling instead of opt-out.
219
- */
220
-
221
- a {
222
- color: inherit;
223
- text-decoration: inherit;
224
- }
225
-
226
- /*
227
- Add the correct font weight in Edge and Safari.
228
- */
229
-
230
- b,
231
- strong {
232
- font-weight: bolder;
233
- }
234
-
235
- /*
236
- 1. Use the user's configured `mono` font-family by default.
237
- 2. Use the user's configured `mono` font-feature-settings by default.
238
- 3. Use the user's configured `mono` font-variation-settings by default.
239
- 4. Correct the odd `em` font sizing in all browsers.
240
- */
241
-
242
- code,
243
- kbd,
244
- samp,
245
- pre {
246
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
247
- /* 1 */
248
- font-feature-settings: normal;
249
- /* 2 */
250
- font-variation-settings: normal;
251
- /* 3 */
252
- font-size: 1em;
253
- /* 4 */
254
- }
255
-
256
- /*
257
- Add the correct font size in all browsers.
258
- */
259
-
260
- small {
261
- font-size: 80%;
262
- }
263
-
264
- /*
265
- Prevent `sub` and `sup` elements from affecting the line height in all browsers.
266
- */
267
-
268
- sub,
269
- sup {
270
- font-size: 75%;
271
- line-height: 0;
272
- position: relative;
273
- vertical-align: baseline;
274
- }
275
-
276
- sub {
277
- bottom: -0.25em;
278
- }
279
-
280
- sup {
281
- top: -0.5em;
282
- }
283
-
284
- /*
285
- 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
286
- 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
287
- 3. Remove gaps between table borders by default.
288
- */
289
-
290
- table {
291
- text-indent: 0;
292
- /* 1 */
293
- border-color: inherit;
294
- /* 2 */
295
- border-collapse: collapse;
296
- /* 3 */
297
- }
298
-
299
- /*
300
- 1. Change the font styles in all browsers.
301
- 2. Remove the margin in Firefox and Safari.
302
- 3. Remove default padding in all browsers.
303
- */
304
-
305
- button,
306
- input,
307
- optgroup,
308
- select,
309
- textarea {
310
- font-family: inherit;
311
- /* 1 */
312
- font-feature-settings: inherit;
313
- /* 1 */
314
- font-variation-settings: inherit;
315
- /* 1 */
316
- font-size: 100%;
317
- /* 1 */
318
- font-weight: inherit;
319
- /* 1 */
320
- line-height: inherit;
321
- /* 1 */
322
- letter-spacing: inherit;
323
- /* 1 */
324
- color: inherit;
325
- /* 1 */
326
- margin: 0;
327
- /* 2 */
328
- padding: 0;
329
- /* 3 */
330
- }
331
-
332
- /*
333
- Remove the inheritance of text transform in Edge and Firefox.
334
- */
335
-
336
- button,
337
- select {
338
- text-transform: none;
339
- }
340
-
341
- /*
342
- 1. Correct the inability to style clickable types in iOS and Safari.
343
- 2. Remove default button styles.
344
- */
345
-
346
- button,
347
- input:where([type='button']),
348
- input:where([type='reset']),
349
- input:where([type='submit']) {
350
- -webkit-appearance: button;
351
- /* 1 */
352
- background-color: transparent;
353
- /* 2 */
354
- background-image: none;
355
- /* 2 */
356
- }
357
-
358
- /*
359
- Use the modern Firefox focus style for all focusable elements.
360
- */
361
-
362
- :-moz-focusring {
363
- outline: auto;
364
- }
365
-
366
- /*
367
- Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
368
- */
369
-
370
- :-moz-ui-invalid {
371
- box-shadow: none;
372
- }
373
-
374
- /*
375
- Add the correct vertical alignment in Chrome and Firefox.
376
- */
377
-
378
- progress {
379
- vertical-align: baseline;
380
- }
381
-
382
- /*
383
- Correct the cursor style of increment and decrement buttons in Safari.
384
- */
385
-
386
- ::-webkit-inner-spin-button,
387
- ::-webkit-outer-spin-button {
388
- height: auto;
389
- }
390
-
391
- /*
392
- 1. Correct the odd appearance in Chrome and Safari.
393
- 2. Correct the outline style in Safari.
394
- */
395
-
396
- [type='search'] {
397
- -webkit-appearance: textfield;
398
- /* 1 */
399
- outline-offset: -2px;
400
- /* 2 */
401
- }
402
-
403
- /*
404
- Remove the inner padding in Chrome and Safari on macOS.
405
- */
406
-
407
- ::-webkit-search-decoration {
408
- -webkit-appearance: none;
409
- }
410
-
411
- /*
412
- 1. Correct the inability to style clickable types in iOS and Safari.
413
- 2. Change font properties to `inherit` in Safari.
414
- */
415
-
416
- ::-webkit-file-upload-button {
417
- -webkit-appearance: button;
418
- /* 1 */
419
- font: inherit;
420
- /* 2 */
421
- }
422
-
423
- /*
424
- Add the correct display in Chrome and Safari.
425
- */
426
-
427
- summary {
428
- display: list-item;
429
- }
430
-
431
- /*
432
- Removes the default spacing and border for appropriate elements.
433
- */
434
-
435
- blockquote,
436
- dl,
437
- dd,
438
- h1,
439
- h2,
440
- h3,
441
- h4,
442
- h5,
443
- h6,
444
- hr,
445
- figure,
446
- p,
447
- pre {
448
- margin: 0;
449
- }
450
-
451
- fieldset {
452
- margin: 0;
453
- padding: 0;
454
- }
455
-
456
- legend {
457
- padding: 0;
458
- }
459
-
460
- ol,
461
- ul,
462
- menu {
463
- list-style: none;
464
- margin: 0;
465
- padding: 0;
466
- }
467
-
468
- /*
469
- Reset default styling for dialogs.
470
- */
471
-
472
- dialog {
473
- padding: 0;
474
- }
475
-
476
- /*
477
- Prevent resizing textareas horizontally by default.
478
- */
479
-
480
- textarea {
481
- resize: vertical;
482
- }
483
-
484
- /*
485
- 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
486
- 2. Set the default placeholder color to the user's configured gray 400 color.
487
- */
488
-
489
- input::-moz-placeholder, textarea::-moz-placeholder {
490
- opacity: 1;
491
- /* 1 */
492
- color: #9CA3AF;
493
- /* 2 */
494
- }
495
-
496
- input::placeholder,
497
- textarea::placeholder {
498
- opacity: 1;
499
- /* 1 */
500
- color: #9CA3AF;
501
- /* 2 */
502
- }
503
-
504
- /*
505
- Set the default cursor for buttons.
506
- */
507
-
508
- button,
509
- [role="button"] {
510
- cursor: pointer;
511
- }
512
-
513
- /*
514
- Make sure disabled buttons don't get the pointer cursor.
515
- */
516
-
517
- :disabled {
518
- cursor: default;
519
- }
520
-
521
- /*
522
- 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
523
- 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
524
- This can trigger a poorly considered lint error in some tools but is included by design.
525
- */
526
-
527
- img,
528
- svg,
529
- video,
530
- canvas,
531
- audio,
532
- iframe,
533
- embed,
534
- object {
535
- display: block;
536
- /* 1 */
537
- vertical-align: middle;
538
- /* 2 */
539
- }
540
-
541
- /*
542
- Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
543
- */
544
-
545
- img,
546
- video {
547
- max-width: 100%;
548
- height: auto;
549
- }
550
-
551
- /* Make elements with the HTML hidden attribute stay hidden by default */
552
-
553
- [hidden] {
554
- display: none;
555
- }
556
-
557
- [data-popper-arrow],[data-popper-arrow]:before {
558
- position: absolute;
559
- width: 8px;
560
- height: 8px;
561
- background: inherit;
562
- }
563
-
564
- [data-popper-arrow] {
565
- visibility: hidden;
566
- }
567
-
568
- [data-popper-arrow]:before {
569
- content: "";
570
- visibility: visible;
571
- transform: rotate(45deg);
572
- }
573
-
574
- [data-popper-arrow]:after {
575
- content: "";
576
- visibility: visible;
577
- transform: rotate(45deg);
578
- position: absolute;
579
- width: 9px;
580
- height: 9px;
581
- background: inherit;
582
- }
583
-
584
- [role="tooltip"] > [data-popper-arrow]:before {
585
- border-style: solid;
586
- border-color: #e5e7eb;
587
- }
588
-
589
- [role="tooltip"] > [data-popper-arrow]:after {
590
- border-style: solid;
591
- border-color: #e5e7eb;
592
- }
593
-
594
- [data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow]:before {
595
- border-bottom-width: 1px;
596
- border-right-width: 1px;
597
- }
598
-
599
- [data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow]:after {
600
- border-bottom-width: 1px;
601
- border-right-width: 1px;
602
- }
603
-
604
- [data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow]:before {
605
- border-bottom-width: 1px;
606
- border-left-width: 1px;
607
- }
608
-
609
- [data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow]:after {
610
- border-bottom-width: 1px;
611
- border-left-width: 1px;
612
- }
613
-
614
- [data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow]:before {
615
- border-top-width: 1px;
616
- border-left-width: 1px;
617
- }
618
-
619
- [data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow]:after {
620
- border-top-width: 1px;
621
- border-left-width: 1px;
622
- }
623
-
624
- [data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow]:before {
625
- border-top-width: 1px;
626
- border-right-width: 1px;
627
- }
628
-
629
- [data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow]:after {
630
- border-top-width: 1px;
631
- border-right-width: 1px;
632
- }
633
-
634
- [data-popover][role="tooltip"][data-popper-placement^='top'] > [data-popper-arrow] {
635
- bottom: -5px;
636
- }
637
-
638
- [data-popover][role="tooltip"][data-popper-placement^='bottom'] > [data-popper-arrow] {
639
- top: -5px;
640
- }
641
-
642
- [data-popover][role="tooltip"][data-popper-placement^='left'] > [data-popper-arrow] {
643
- right: -5px;
644
- }
645
-
646
- [data-popover][role="tooltip"][data-popper-placement^='right'] > [data-popper-arrow] {
647
- left: -5px;
648
- }
649
-
650
- [type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
651
- -webkit-appearance: none;
652
- -moz-appearance: none;
653
- appearance: none;
654
- background-color: #fff;
655
- border-color: #6B7280;
656
- border-width: 1px;
657
- border-radius: 0px;
658
- padding-top: 0.5rem;
659
- padding-right: 0.75rem;
660
- padding-bottom: 0.5rem;
661
- padding-left: 0.75rem;
662
- font-size: 1rem;
663
- line-height: 1.5rem;
664
- --tw-shadow: 0 0 #0000;
665
- }
666
-
667
- [type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
668
- outline: 2px solid transparent;
669
- outline-offset: 2px;
670
- --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
671
- --tw-ring-offset-width: 0px;
672
- --tw-ring-offset-color: #fff;
673
- --tw-ring-color: #1C64F2;
674
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
675
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
676
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
677
- border-color: #1C64F2;
678
- }
679
-
680
- input::-moz-placeholder, textarea::-moz-placeholder {
681
- color: #6B7280;
682
- opacity: 1;
683
- }
684
-
685
- input::placeholder,textarea::placeholder {
686
- color: #6B7280;
687
- opacity: 1;
688
- }
689
-
690
- ::-webkit-datetime-edit-fields-wrapper {
691
- padding: 0;
692
- }
693
-
694
- input[type="time"]::-webkit-calendar-picker-indicator {
695
- background: none;
696
- }
697
-
698
- select:not([size]) {
699
- background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 10 6'%3e %3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 1 4 4 4-4'/%3e %3c/svg%3e");
700
- background-position: right 0.75rem center;
701
- background-repeat: no-repeat;
702
- background-size: 0.75em 0.75em;
703
- padding-right: 2.5rem;
704
- -webkit-print-color-adjust: exact;
705
- print-color-adjust: exact;
706
- }
707
-
708
- :is([dir=rtl]) select:not([size]) {
709
- background-position: left 0.75rem center;
710
- padding-right: 0.75rem;
711
- padding-left: 0;
712
- }
713
-
714
- [multiple] {
715
- background-image: initial;
716
- background-position: initial;
717
- background-repeat: unset;
718
- background-size: initial;
719
- padding-right: 0.75rem;
720
- -webkit-print-color-adjust: unset;
721
- print-color-adjust: unset;
722
- }
723
-
724
- [type='checkbox'],[type='radio'] {
725
- -webkit-appearance: none;
726
- -moz-appearance: none;
727
- appearance: none;
728
- padding: 0;
729
- -webkit-print-color-adjust: exact;
730
- print-color-adjust: exact;
731
- display: inline-block;
732
- vertical-align: middle;
733
- background-origin: border-box;
734
- -webkit-user-select: none;
735
- -moz-user-select: none;
736
- user-select: none;
737
- flex-shrink: 0;
738
- height: 1rem;
739
- width: 1rem;
740
- color: #1C64F2;
741
- background-color: #fff;
742
- border-color: #6B7280;
743
- border-width: 1px;
744
- --tw-shadow: 0 0 #0000;
745
- }
746
-
747
- [type='checkbox'] {
748
- border-radius: 0px;
749
- }
750
-
751
- [type='radio'] {
752
- border-radius: 100%;
753
- }
754
-
755
- [type='checkbox']:focus,[type='radio']:focus {
756
- outline: 2px solid transparent;
757
- outline-offset: 2px;
758
- --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
759
- --tw-ring-offset-width: 2px;
760
- --tw-ring-offset-color: #fff;
761
- --tw-ring-color: #1C64F2;
762
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
763
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
764
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
765
49
  }
766
50
 
767
- [type='checkbox']:checked,[type='radio']:checked,.dark [type='checkbox']:checked,.dark [type='radio']:checked {
768
- border-color: transparent;
769
- background-color: currentColor;
770
- background-size: 0.55em 0.55em;
771
- background-position: center;
772
- background-repeat: no-repeat;
773
- }
774
-
775
- [type='checkbox']:checked {
776
- background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M1 5.917 5.724 10.5 15 1.5'/%3e %3c/svg%3e");
777
- background-repeat: no-repeat;
778
- background-size: 0.55em 0.55em;
779
- -webkit-print-color-adjust: exact;
780
- print-color-adjust: exact;
781
- }
782
-
783
- [type='radio']:checked {
784
- background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
785
- background-size: 1em 1em;
786
- }
787
-
788
- [type='checkbox']:indeterminate {
789
- background-image: url("data:image/svg+xml,%3csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e %3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M0.5 6h14'/%3e %3c/svg%3e");
790
- background-color: currentColor;
791
- border-color: transparent;
792
- background-position: center;
793
- background-repeat: no-repeat;
794
- background-size: 0.55em 0.55em;
795
- -webkit-print-color-adjust: exact;
796
- print-color-adjust: exact;
797
- }
798
-
799
- [type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
800
- border-color: transparent;
801
- background-color: currentColor;
802
- }
803
-
804
- [type='file'] {
805
- background: unset;
806
- border-color: inherit;
807
- border-width: 0;
808
- border-radius: 0;
809
- padding: 0;
810
- font-size: unset;
811
- line-height: inherit;
812
- }
813
-
814
- [type='file']:focus {
815
- outline: 1px auto inherit;
816
- }
817
-
818
- input[type=file]::file-selector-button {
819
- color: white;
820
- background: #1F2937;
821
- border: 0;
822
- font-weight: 500;
823
- font-size: 0.875rem;
824
- cursor: pointer;
825
- padding-top: 0.625rem;
826
- padding-bottom: 0.625rem;
827
- padding-left: 2rem;
828
- padding-right: 1rem;
829
- margin-inline-start: -1rem;
830
- margin-inline-end: 1rem;
831
- }
832
-
833
- input[type=file]::file-selector-button:hover {
834
- background: #374151;
835
- }
836
-
837
- :is([dir=rtl]) input[type=file]::file-selector-button {
838
- padding-right: 2rem;
839
- padding-left: 1rem;
840
- }
841
-
842
- input[type="range"]::-webkit-slider-thumb {
843
- height: 1.25rem;
844
- width: 1.25rem;
845
- background: #1C64F2;
846
- border-radius: 9999px;
847
- border: 0;
848
- appearance: none;
849
- -moz-appearance: none;
850
- -webkit-appearance: none;
851
- cursor: pointer;
852
- }
853
-
854
- input[type="range"]:disabled::-webkit-slider-thumb {
855
- background: #9CA3AF;
856
- }
857
-
858
- input[type="range"]:focus::-webkit-slider-thumb {
859
- outline: 2px solid transparent;
860
- outline-offset: 2px;
861
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
862
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
863
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
864
- --tw-ring-opacity: 1px;
865
- --tw-ring-color: rgb(164 202 254 / var(--tw-ring-opacity));
866
- }
867
-
868
- input[type="range"]::-moz-range-thumb {
869
- height: 1.25rem;
870
- width: 1.25rem;
871
- background: #1C64F2;
872
- border-radius: 9999px;
873
- border: 0;
874
- appearance: none;
875
- -moz-appearance: none;
876
- -webkit-appearance: none;
877
- cursor: pointer;
878
- }
879
-
880
- input[type="range"]:disabled::-moz-range-thumb {
881
- background: #9CA3AF;
882
- }
883
-
884
- input[type="range"]::-moz-range-progress {
885
- background: #3F83F8;
886
- }
887
-
888
- input[type="range"]::-ms-fill-lower {
889
- background: #3F83F8;
51
+ .\!container {
52
+ width: 100% !important;
890
53
  }
891
54
 
892
55
  .container {
@@ -894,36 +57,60 @@ input[type="range"]::-ms-fill-lower {
894
57
  }
895
58
 
896
59
  @media (min-width: 300px) {
60
+ .\!container {
61
+ max-width: 300px !important;
62
+ }
63
+
897
64
  .container {
898
65
  max-width: 300px;
899
66
  }
900
67
  }
901
68
 
902
69
  @media (min-width: 640px) {
70
+ .\!container {
71
+ max-width: 640px !important;
72
+ }
73
+
903
74
  .container {
904
75
  max-width: 640px;
905
76
  }
906
77
  }
907
78
 
908
79
  @media (min-width: 768px) {
80
+ .\!container {
81
+ max-width: 768px !important;
82
+ }
83
+
909
84
  .container {
910
85
  max-width: 768px;
911
86
  }
912
87
  }
913
88
 
914
89
  @media (min-width: 1024px) {
90
+ .\!container {
91
+ max-width: 1024px !important;
92
+ }
93
+
915
94
  .container {
916
95
  max-width: 1024px;
917
96
  }
918
97
  }
919
98
 
920
99
  @media (min-width: 1280px) {
100
+ .\!container {
101
+ max-width: 1280px !important;
102
+ }
103
+
921
104
  .container {
922
105
  max-width: 1280px;
923
106
  }
924
107
  }
925
108
 
926
109
  @media (min-width: 1536px) {
110
+ .\!container {
111
+ max-width: 1536px !important;
112
+ }
113
+
927
114
  .container {
928
115
  max-width: 1536px;
929
116
  }
@@ -945,10 +132,18 @@ input[type="range"]::-ms-fill-lower {
945
132
  position: static;
946
133
  }
947
134
 
135
+ .absolute {
136
+ position: absolute;
137
+ }
138
+
948
139
  .relative {
949
140
  position: relative;
950
141
  }
951
142
 
143
+ .inset-0 {
144
+ inset: 0px;
145
+ }
146
+
952
147
  .z-40 {
953
148
  z-index: 40;
954
149
  }
@@ -961,6 +156,11 @@ input[type="range"]::-ms-fill-lower {
961
156
  grid-column: span 2 / span 2;
962
157
  }
963
158
 
159
+ .mx-auto {
160
+ margin-left: auto;
161
+ margin-right: auto;
162
+ }
163
+
964
164
  .mb-1 {
965
165
  margin-bottom: 0.25rem;
966
166
  }
@@ -973,18 +173,38 @@ input[type="range"]::-ms-fill-lower {
973
173
  margin-bottom: 0.75rem;
974
174
  }
975
175
 
176
+ .mb-4 {
177
+ margin-bottom: 1rem;
178
+ }
179
+
976
180
  .mb-5 {
977
181
  margin-bottom: 1.25rem;
978
182
  }
979
183
 
184
+ .mb-6 {
185
+ margin-bottom: 1.5rem;
186
+ }
187
+
188
+ .mb-8 {
189
+ margin-bottom: 2rem;
190
+ }
191
+
980
192
  .me-3 {
981
193
  margin-inline-end: 0.75rem;
982
194
  }
983
195
 
196
+ .ml-2 {
197
+ margin-left: 0.5rem;
198
+ }
199
+
984
200
  .mr-2 {
985
201
  margin-right: 0.5rem;
986
202
  }
987
203
 
204
+ .mt-1 {
205
+ margin-top: 0.25rem;
206
+ }
207
+
988
208
  .mt-2 {
989
209
  margin-top: 0.5rem;
990
210
  }
@@ -993,10 +213,18 @@ input[type="range"]::-ms-fill-lower {
993
213
  margin-top: 0.75rem;
994
214
  }
995
215
 
216
+ .mt-4 {
217
+ margin-top: 1rem;
218
+ }
219
+
996
220
  .block {
997
221
  display: block;
998
222
  }
999
223
 
224
+ .inline-block {
225
+ display: inline-block;
226
+ }
227
+
1000
228
  .inline {
1001
229
  display: inline;
1002
230
  }
@@ -1017,6 +245,14 @@ input[type="range"]::-ms-fill-lower {
1017
245
  display: none;
1018
246
  }
1019
247
 
248
+ .h-2 {
249
+ height: 0.5rem;
250
+ }
251
+
252
+ .h-4 {
253
+ height: 1rem;
254
+ }
255
+
1020
256
  .h-6 {
1021
257
  height: 1.5rem;
1022
258
  }
@@ -1025,6 +261,10 @@ input[type="range"]::-ms-fill-lower {
1025
261
  height: 2.25rem;
1026
262
  }
1027
263
 
264
+ .h-full {
265
+ height: 100%;
266
+ }
267
+
1028
268
  .min-h-fit {
1029
269
  min-height: -moz-fit-content;
1030
270
  min-height: fit-content;
@@ -1038,10 +278,18 @@ input[type="range"]::-ms-fill-lower {
1038
278
  width: 2.75rem;
1039
279
  }
1040
280
 
281
+ .w-2 {
282
+ width: 0.5rem;
283
+ }
284
+
1041
285
  .w-4 {
1042
286
  width: 1rem;
1043
287
  }
1044
288
 
289
+ .w-6 {
290
+ width: 1.5rem;
291
+ }
292
+
1045
293
  .w-60 {
1046
294
  width: 15rem;
1047
295
  }
@@ -1054,6 +302,10 @@ input[type="range"]::-ms-fill-lower {
1054
302
  width: 100%;
1055
303
  }
1056
304
 
305
+ .max-w-lg {
306
+ max-width: 32rem;
307
+ }
308
+
1057
309
  .shrink {
1058
310
  flex-shrink: 1;
1059
311
  }
@@ -1066,6 +318,10 @@ input[type="range"]::-ms-fill-lower {
1066
318
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1067
319
  }
1068
320
 
321
+ .cursor-move {
322
+ cursor: move;
323
+ }
324
+
1069
325
  .cursor-not-allowed {
1070
326
  cursor: not-allowed;
1071
327
  }
@@ -1094,6 +350,10 @@ input[type="range"]::-ms-fill-lower {
1094
350
  grid-template-columns: min-content 1fr;
1095
351
  }
1096
352
 
353
+ .flex-col {
354
+ flex-direction: column;
355
+ }
356
+
1097
357
  .items-center {
1098
358
  align-items: center;
1099
359
  }
@@ -1102,10 +362,30 @@ input[type="range"]::-ms-fill-lower {
1102
362
  justify-content: center;
1103
363
  }
1104
364
 
365
+ .justify-between {
366
+ justify-content: space-between;
367
+ }
368
+
1105
369
  .gap-2 {
1106
370
  gap: 0.5rem;
1107
371
  }
1108
372
 
373
+ .gap-4 {
374
+ gap: 1rem;
375
+ }
376
+
377
+ .space-x-2 > :not([hidden]) ~ :not([hidden]) {
378
+ --tw-space-x-reverse: 0;
379
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
380
+ margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
381
+ }
382
+
383
+ .space-y-2 > :not([hidden]) ~ :not([hidden]) {
384
+ --tw-space-y-reverse: 0;
385
+ margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
386
+ margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
387
+ }
388
+
1109
389
  .space-y-3 > :not([hidden]) ~ :not([hidden]) {
1110
390
  --tw-space-y-reverse: 0;
1111
391
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
@@ -1130,6 +410,10 @@ input[type="range"]::-ms-fill-lower {
1130
410
  border-radius: 0.5rem;
1131
411
  }
1132
412
 
413
+ .rounded-md {
414
+ border-radius: 0.375rem;
415
+ }
416
+
1133
417
  .rounded-e-lg {
1134
418
  border-start-end-radius: 0.5rem;
1135
419
  border-end-end-radius: 0.5rem;
@@ -1164,6 +448,21 @@ input[type="range"]::-ms-fill-lower {
1164
448
  background-color: rgb(249 250 251 / var(--tw-bg-opacity)) !important;
1165
449
  }
1166
450
 
451
+ .bg-black {
452
+ --tw-bg-opacity: 1;
453
+ background-color: rgb(0 0 0 / var(--tw-bg-opacity));
454
+ }
455
+
456
+ .bg-blue-500 {
457
+ --tw-bg-opacity: 1;
458
+ background-color: rgb(63 131 248 / var(--tw-bg-opacity));
459
+ }
460
+
461
+ .bg-blue-600 {
462
+ --tw-bg-opacity: 1;
463
+ background-color: rgb(28 100 242 / var(--tw-bg-opacity));
464
+ }
465
+
1167
466
  .bg-gray-100 {
1168
467
  --tw-bg-opacity: 1;
1169
468
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
@@ -1179,11 +478,26 @@ input[type="range"]::-ms-fill-lower {
1179
478
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
1180
479
  }
1181
480
 
481
+ .bg-green-500 {
482
+ --tw-bg-opacity: 1;
483
+ background-color: rgb(14 159 110 / var(--tw-bg-opacity));
484
+ }
485
+
486
+ .bg-primary-500 {
487
+ --tw-bg-opacity: 1;
488
+ background-color: rgb(59 130 246 / var(--tw-bg-opacity));
489
+ }
490
+
1182
491
  .bg-primary-700 {
1183
492
  --tw-bg-opacity: 1;
1184
493
  background-color: rgb(29 78 216 / var(--tw-bg-opacity));
1185
494
  }
1186
495
 
496
+ .bg-red-500 {
497
+ --tw-bg-opacity: 1;
498
+ background-color: rgb(240 82 82 / var(--tw-bg-opacity));
499
+ }
500
+
1187
501
  .bg-red-600 {
1188
502
  --tw-bg-opacity: 1;
1189
503
  background-color: rgb(224 36 36 / var(--tw-bg-opacity));
@@ -1194,6 +508,14 @@ input[type="range"]::-ms-fill-lower {
1194
508
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
1195
509
  }
1196
510
 
511
+ .bg-opacity-50 {
512
+ --tw-bg-opacity: 0.5;
513
+ }
514
+
515
+ .bg-opacity-75 {
516
+ --tw-bg-opacity: 0.75;
517
+ }
518
+
1197
519
  .stroke-gray-700 {
1198
520
  stroke: #374151;
1199
521
  }
@@ -1206,11 +528,26 @@ input[type="range"]::-ms-fill-lower {
1206
528
  padding: 0.625rem;
1207
529
  }
1208
530
 
531
+ .px-2 {
532
+ padding-left: 0.5rem;
533
+ padding-right: 0.5rem;
534
+ }
535
+
536
+ .px-3 {
537
+ padding-left: 0.75rem;
538
+ padding-right: 0.75rem;
539
+ }
540
+
1209
541
  .px-5 {
1210
542
  padding-left: 1.25rem;
1211
543
  padding-right: 1.25rem;
1212
544
  }
1213
545
 
546
+ .py-1 {
547
+ padding-top: 0.25rem;
548
+ padding-bottom: 0.25rem;
549
+ }
550
+
1214
551
  .py-2\.5 {
1215
552
  padding-top: 0.625rem;
1216
553
  padding-bottom: 0.625rem;
@@ -1235,6 +572,11 @@ input[type="range"]::-ms-fill-lower {
1235
572
  line-height: 1.75rem;
1236
573
  }
1237
574
 
575
+ .text-xs {
576
+ font-size: 0.75rem;
577
+ line-height: 1rem;
578
+ }
579
+
1238
580
  .font-bold {
1239
581
  font-weight: 700;
1240
582
  }
@@ -1247,6 +589,10 @@ input[type="range"]::-ms-fill-lower {
1247
589
  font-weight: 600;
1248
590
  }
1249
591
 
592
+ .italic {
593
+ font-style: italic;
594
+ }
595
+
1250
596
  .leading-6 {
1251
597
  line-height: 1.5rem;
1252
598
  }
@@ -1260,6 +606,21 @@ input[type="range"]::-ms-fill-lower {
1260
606
  color: rgb(0 0 0 / var(--tw-text-opacity));
1261
607
  }
1262
608
 
609
+ .text-gray-500 {
610
+ --tw-text-opacity: 1;
611
+ color: rgb(107 114 128 / var(--tw-text-opacity));
612
+ }
613
+
614
+ .text-gray-600 {
615
+ --tw-text-opacity: 1;
616
+ color: rgb(75 85 99 / var(--tw-text-opacity));
617
+ }
618
+
619
+ .text-gray-700 {
620
+ --tw-text-opacity: 1;
621
+ color: rgb(55 65 81 / var(--tw-text-opacity));
622
+ }
623
+
1263
624
  .text-gray-900 {
1264
625
  --tw-text-opacity: 1;
1265
626
  color: rgb(17 24 39 / var(--tw-text-opacity));
@@ -1270,6 +631,16 @@ input[type="range"]::-ms-fill-lower {
1270
631
  color: rgb(132 225 188 / var(--tw-text-opacity));
1271
632
  }
1272
633
 
634
+ .text-green-400 {
635
+ --tw-text-opacity: 1;
636
+ color: rgb(49 196 141 / var(--tw-text-opacity));
637
+ }
638
+
639
+ .text-green-500 {
640
+ --tw-text-opacity: 1;
641
+ color: rgb(14 159 110 / var(--tw-text-opacity));
642
+ }
643
+
1273
644
  .text-green-600 {
1274
645
  --tw-text-opacity: 1;
1275
646
  color: rgb(5 122 85 / var(--tw-text-opacity));
@@ -1280,6 +651,11 @@ input[type="range"]::-ms-fill-lower {
1280
651
  color: rgb(253 186 140 / var(--tw-text-opacity));
1281
652
  }
1282
653
 
654
+ .text-orange-500 {
655
+ --tw-text-opacity: 1;
656
+ color: rgb(255 90 31 / var(--tw-text-opacity));
657
+ }
658
+
1283
659
  .text-red-600 {
1284
660
  --tw-text-opacity: 1;
1285
661
  color: rgb(224 36 36 / var(--tw-text-opacity));
@@ -1294,16 +670,32 @@ input[type="range"]::-ms-fill-lower {
1294
670
  opacity: 0.5;
1295
671
  }
1296
672
 
673
+ .opacity-80 {
674
+ opacity: 0.8;
675
+ }
676
+
1297
677
  .shadow-lg {
1298
678
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
1299
679
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
1300
680
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1301
681
  }
1302
682
 
683
+ .shadow-sm {
684
+ --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
685
+ --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
686
+ box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
687
+ }
688
+
1303
689
  .filter {
1304
690
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
1305
691
  }
1306
692
 
693
+ .transition-colors {
694
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
695
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
696
+ transition-duration: 150ms;
697
+ }
698
+
1307
699
  .node-editor-label {
1308
700
  margin-bottom: 0.125rem;
1309
701
  display: block;
@@ -1549,6 +941,16 @@ input[type="range"]::-ms-fill-lower {
1549
941
  content: var(--tw-content);
1550
942
  }
1551
943
 
944
+ .hover\:bg-blue-700:hover {
945
+ --tw-bg-opacity: 1;
946
+ background-color: rgb(26 86 219 / var(--tw-bg-opacity));
947
+ }
948
+
949
+ .hover\:bg-green-700:hover {
950
+ --tw-bg-opacity: 1;
951
+ background-color: rgb(4 108 78 / var(--tw-bg-opacity));
952
+ }
953
+
1552
954
  .hover\:bg-primary-800:hover {
1553
955
  --tw-bg-opacity: 1;
1554
956
  background-color: rgb(30 64 175 / var(--tw-bg-opacity));
@@ -1559,11 +961,20 @@ input[type="range"]::-ms-fill-lower {
1559
961
  background-color: rgb(200 30 30 / var(--tw-bg-opacity));
1560
962
  }
1561
963
 
964
+ .hover\:bg-opacity-75:hover {
965
+ --tw-bg-opacity: 0.75;
966
+ }
967
+
1562
968
  .focus\:border-blue-500:focus {
1563
969
  --tw-border-opacity: 1;
1564
970
  border-color: rgb(63 131 248 / var(--tw-border-opacity));
1565
971
  }
1566
972
 
973
+ .focus\:border-primary-500:focus {
974
+ --tw-border-opacity: 1;
975
+ border-color: rgb(59 130 246 / var(--tw-border-opacity));
976
+ }
977
+
1567
978
  .focus\:outline-none:focus {
1568
979
  outline: 2px solid transparent;
1569
980
  outline-offset: 2px;
@@ -1585,11 +996,20 @@ input[type="range"]::-ms-fill-lower {
1585
996
  --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity));
1586
997
  }
1587
998
 
999
+ .focus\:ring-primary-500:focus {
1000
+ --tw-ring-opacity: 1;
1001
+ --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
1002
+ }
1003
+
1588
1004
  .focus\:ring-red-300:focus {
1589
1005
  --tw-ring-opacity: 1;
1590
1006
  --tw-ring-color: rgb(248 180 180 / var(--tw-ring-opacity));
1591
1007
  }
1592
1008
 
1009
+ .group:hover .group-hover\:opacity-100 {
1010
+ opacity: 1;
1011
+ }
1012
+
1593
1013
  .peer:checked ~ .peer-checked\:bg-blue-600 {
1594
1014
  --tw-bg-opacity: 1;
1595
1015
  background-color: rgb(28 100 242 / var(--tw-bg-opacity));
@@ -1732,6 +1152,13 @@ input[type="range"]::-ms-fill-lower {
1732
1152
  --tw-ring-color: rgb(30 66 159 / var(--tw-ring-opacity));
1733
1153
  }
1734
1154
 
1155
+ @media (min-width: 640px) {
1156
+ .sm\:text-sm {
1157
+ font-size: 0.875rem;
1158
+ line-height: 1.25rem;
1159
+ }
1160
+ }
1161
+
1735
1162
  .peer:checked ~ .rtl\:peer-checked\:after\:-translate-x-full:where([dir="rtl"], [dir="rtl"] *)::after {
1736
1163
  content: var(--tw-content);
1737
1164
  --tw-translate-x: -100%;