@flexiui/svelte-rich-text 0.0.37 → 0.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/extensions/Audio.js
CHANGED
|
@@ -88,6 +88,20 @@ export const Audio = Node.create({
|
|
|
88
88
|
'data-seek-bar-bg-color': attrs.seekBarBgColor,
|
|
89
89
|
}),
|
|
90
90
|
},
|
|
91
|
+
playBtnBgColor: {
|
|
92
|
+
default: '#8d8d8d26',
|
|
93
|
+
parseHTML: el => el.getAttribute('data-play-btn-bg-color'),
|
|
94
|
+
renderHTML: attrs => ({
|
|
95
|
+
'data-play-btn-bg-color': attrs.playBtnBgColor,
|
|
96
|
+
}),
|
|
97
|
+
},
|
|
98
|
+
playBtnTextColor: {
|
|
99
|
+
default: 'currentColor',
|
|
100
|
+
parseHTML: el => el.getAttribute('data-play-btn-text-color'),
|
|
101
|
+
renderHTML: attrs => ({
|
|
102
|
+
'data-play-btn-text-color': attrs.playBtnTextColor,
|
|
103
|
+
}),
|
|
104
|
+
},
|
|
91
105
|
colorPlay: {
|
|
92
106
|
default: '#5d5d5dc9',
|
|
93
107
|
parseHTML: el => el.getAttribute('data-color-play'),
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
export let borderRadius: string;
|
|
19
19
|
export let accentColor: string;
|
|
20
20
|
export let accentColorPaused: string;
|
|
21
|
+
export let playBtnBgColor: string;
|
|
22
|
+
export let playBtnTextColor: string;
|
|
21
23
|
export let colorPlay: string;
|
|
22
24
|
export let maxWidth: string;
|
|
23
25
|
|
|
@@ -284,20 +286,23 @@
|
|
|
284
286
|
window.removeEventListener("mousemove", onVolumeGrabMouseMove);
|
|
285
287
|
window.removeEventListener("mouseup", onVolumeGrabMouseUp);
|
|
286
288
|
}
|
|
289
|
+
|
|
290
|
+
const styleVars = [
|
|
291
|
+
bgColor && `--player-bg-color: ${bgColor};`,
|
|
292
|
+
playBtnBgColor && `--player-play-btn-bg: ${playBtnBgColor};`,
|
|
293
|
+
playBtnTextColor && `--player-play-btn-color: ${playBtnTextColor};`,
|
|
294
|
+
accentColor && `--player-primary-color: ${accentColor};`,
|
|
295
|
+
accentColorPaused && `--player-progress-default-bg: ${accentColorPaused};`,
|
|
296
|
+
textColor && `--player-text-color: ${textColor};`,
|
|
297
|
+
borderRadius && `--player-border-radius: ${borderRadius};`,
|
|
298
|
+
].filter(Boolean).join('\n');
|
|
287
299
|
</script>
|
|
288
300
|
|
|
289
301
|
<div
|
|
290
302
|
class="audio-player"
|
|
291
303
|
{id}
|
|
292
304
|
class:playing
|
|
293
|
-
style={
|
|
294
|
-
--player-bg-color: ${bgColor};
|
|
295
|
-
--player-play-btn-bg: ${colorPlay};
|
|
296
|
-
--player-primary-color: ${accentColor};
|
|
297
|
-
--player-progress-default-bg: ${accentColorPaused};
|
|
298
|
-
--player-text-color: ${textColor};
|
|
299
|
-
--player-border-radius: ${borderRadius};
|
|
300
|
-
`}
|
|
305
|
+
style={styleVars}
|
|
301
306
|
>
|
|
302
307
|
<button
|
|
303
308
|
onclick={() => togglePlayPause()}
|
|
@@ -81,6 +81,8 @@
|
|
|
81
81
|
borderRadius={attrs.borderRadius}
|
|
82
82
|
accentColor={attrs.accentColor}
|
|
83
83
|
accentColorPaused={attrs.accentColorPaused}
|
|
84
|
+
playBtnBgColor={attrs.playBtnBgColor}
|
|
85
|
+
playBtnTextColor={attrs.playBtnTextColor}
|
|
84
86
|
colorPlay={attrs.colorPlay}
|
|
85
87
|
maxWidth={attrs.maxWidth}
|
|
86
88
|
></AudioPlayer>
|
package/dist/renderRichText.js
CHANGED
|
@@ -29,7 +29,7 @@ const nodeMapping = {
|
|
|
29
29
|
return `<div class="fl-grid-item">${serializeChildrenToHTMLString(children)}</div>`;
|
|
30
30
|
},
|
|
31
31
|
audio({ node, children }) {
|
|
32
|
-
const { id, src, controls, bgColor, textColor, borderRadius, accentColor, accentColorPaused, maxWidth, colorPlay } = node.attrs;
|
|
32
|
+
const { id, src, controls, bgColor, textColor, borderRadius, accentColor, accentColorPaused, playBtnBgColor, playBtnTextColor, maxWidth, colorPlay } = node.attrs;
|
|
33
33
|
return `
|
|
34
34
|
<fl-audio-player
|
|
35
35
|
class="fl-audio-player"
|
|
@@ -41,6 +41,8 @@ const nodeMapping = {
|
|
|
41
41
|
borderRadius="${borderRadius}"
|
|
42
42
|
accentColor="${accentColor}"
|
|
43
43
|
accentColorPaused="${accentColorPaused}"
|
|
44
|
+
playBtnBgColor="${playBtnBgColor}"
|
|
45
|
+
playBtnTextColor="${playBtnTextColor}"
|
|
44
46
|
maxWidth="${maxWidth}"
|
|
45
47
|
colorPlay="${colorPlay}"
|
|
46
48
|
>
|