@measured/puck 0.21.0-canary.7dca3a5a → 0.21.0-canary.8358d3e1
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/Editor-F2LSS6SE.css +403 -0
- package/dist/Editor-N46HUQEC.mjs +201 -0
- package/dist/Render-QEMDIDQC.css +101 -0
- package/dist/Render-Y567PGZ7.mjs +53 -0
- package/dist/chunk-3QHWXJEI.mjs +33 -0
- package/dist/chunk-7KY6RHEY.mjs +2230 -0
- package/dist/chunk-C2TVYIYC.mjs +415 -0
- package/dist/chunk-DCSQEDMK.mjs +194 -0
- package/dist/chunk-DJSH5REF.mjs +537 -0
- package/dist/chunk-DNF2EMM4.mjs +63 -0
- package/dist/chunk-FNWOH4R6.mjs +109 -0
- package/dist/chunk-GQKMOYLG.mjs +53 -0
- package/dist/chunk-K3V4LVUL.mjs +704 -0
- package/dist/{chunk-FKDVYRQW.mjs → chunk-N5XMZOMC.mjs} +5078 -7463
- package/dist/chunk-R6CVX2IY.mjs +103 -0
- package/dist/chunk-WUWXFMEM.mjs +11 -0
- package/dist/full-2GJTAAZE.css +301 -0
- package/dist/full-NLUNPJWS.mjs +90 -0
- package/dist/index.css +636 -758
- package/dist/index.d.mts +101 -20
- package/dist/index.d.ts +101 -20
- package/dist/index.js +7363 -4751
- package/dist/index.mjs +25 -15
- package/dist/loaded-EV34KGYJ.mjs +57 -0
- package/dist/loaded-HMSPJUZM.mjs +54 -0
- package/dist/loaded-RVWBFK7L.css +87 -0
- package/dist/loaded-ZXOU6S6R.mjs +54 -0
- package/dist/no-external.css +636 -758
- package/dist/no-external.d.mts +17 -2
- package/dist/no-external.d.ts +17 -2
- package/dist/no-external.js +7360 -4748
- package/dist/no-external.mjs +25 -15
- package/dist/rsc.css +101 -0
- package/dist/rsc.d.mts +17 -2
- package/dist/rsc.d.ts +17 -2
- package/dist/rsc.js +419 -34
- package/dist/rsc.mjs +16 -9
- package/dist/{walk-tree-DS1xB387.d.mts → walk-tree-Ja9bNCM9.d.mts} +216 -26
- package/dist/{walk-tree-DS1xB387.d.ts → walk-tree-Ja9bNCM9.d.ts} +216 -26
- package/package.json +23 -1
- package/dist/chunk-6SIKCDJJ.mjs +0 -967
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__spreadValues,
|
|
3
|
+
init_react_import
|
|
4
|
+
} from "./chunk-DCSQEDMK.mjs";
|
|
5
|
+
|
|
6
|
+
// components/RichTextEditor/extension.ts
|
|
7
|
+
init_react_import();
|
|
8
|
+
import { Extension } from "@tiptap/core";
|
|
9
|
+
import { Blockquote } from "@tiptap/extension-blockquote";
|
|
10
|
+
import { Bold } from "@tiptap/extension-bold";
|
|
11
|
+
import { Code } from "@tiptap/extension-code";
|
|
12
|
+
import { CodeBlock } from "@tiptap/extension-code-block";
|
|
13
|
+
import { Document } from "@tiptap/extension-document";
|
|
14
|
+
import { HardBreak } from "@tiptap/extension-hard-break";
|
|
15
|
+
import { Heading } from "@tiptap/extension-heading";
|
|
16
|
+
import { HorizontalRule } from "@tiptap/extension-horizontal-rule";
|
|
17
|
+
import { Italic } from "@tiptap/extension-italic";
|
|
18
|
+
import { Link } from "@tiptap/extension-link";
|
|
19
|
+
import {
|
|
20
|
+
BulletList,
|
|
21
|
+
ListItem,
|
|
22
|
+
ListKeymap,
|
|
23
|
+
OrderedList
|
|
24
|
+
} from "@tiptap/extension-list";
|
|
25
|
+
import { Paragraph } from "@tiptap/extension-paragraph";
|
|
26
|
+
import { Strike } from "@tiptap/extension-strike";
|
|
27
|
+
import { Text } from "@tiptap/extension-text";
|
|
28
|
+
import TextAlign from "@tiptap/extension-text-align";
|
|
29
|
+
import { Underline } from "@tiptap/extension-underline";
|
|
30
|
+
var defaultPuckRichTextOptions = {
|
|
31
|
+
textAlign: {
|
|
32
|
+
types: ["heading", "paragraph"]
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
var PuckRichText = Extension.create({
|
|
36
|
+
name: "puckRichText",
|
|
37
|
+
addExtensions() {
|
|
38
|
+
const extensions = [];
|
|
39
|
+
const options = __spreadValues(__spreadValues({}, this.options), defaultPuckRichTextOptions);
|
|
40
|
+
if (options.bold !== false) {
|
|
41
|
+
extensions.push(Bold.configure(options.bold));
|
|
42
|
+
}
|
|
43
|
+
if (options.blockquote !== false) {
|
|
44
|
+
extensions.push(Blockquote.configure(options.blockquote));
|
|
45
|
+
}
|
|
46
|
+
if (options.bulletList !== false) {
|
|
47
|
+
extensions.push(BulletList.configure(options.bulletList));
|
|
48
|
+
}
|
|
49
|
+
if (options.code !== false) {
|
|
50
|
+
extensions.push(Code.configure(options.code));
|
|
51
|
+
}
|
|
52
|
+
if (options.codeBlock !== false) {
|
|
53
|
+
extensions.push(CodeBlock.configure(options.codeBlock));
|
|
54
|
+
}
|
|
55
|
+
if (options.document !== false) {
|
|
56
|
+
extensions.push(Document.configure(options.document));
|
|
57
|
+
}
|
|
58
|
+
if (options.hardBreak !== false) {
|
|
59
|
+
extensions.push(HardBreak.configure(options.hardBreak));
|
|
60
|
+
}
|
|
61
|
+
if (options.heading !== false) {
|
|
62
|
+
extensions.push(Heading.configure(options.heading));
|
|
63
|
+
}
|
|
64
|
+
if (options.horizontalRule !== false) {
|
|
65
|
+
extensions.push(HorizontalRule.configure(options.horizontalRule));
|
|
66
|
+
}
|
|
67
|
+
if (options.italic !== false) {
|
|
68
|
+
extensions.push(Italic.configure(options.italic));
|
|
69
|
+
}
|
|
70
|
+
if (options.listItem !== false) {
|
|
71
|
+
extensions.push(ListItem.configure(options.listItem));
|
|
72
|
+
}
|
|
73
|
+
if (options.listKeymap !== false) {
|
|
74
|
+
extensions.push(ListKeymap.configure(options == null ? void 0 : options.listKeymap));
|
|
75
|
+
}
|
|
76
|
+
if (options.link !== false) {
|
|
77
|
+
extensions.push(Link.configure(options == null ? void 0 : options.link));
|
|
78
|
+
}
|
|
79
|
+
if (options.orderedList !== false) {
|
|
80
|
+
extensions.push(OrderedList.configure(options.orderedList));
|
|
81
|
+
}
|
|
82
|
+
if (options.paragraph !== false) {
|
|
83
|
+
extensions.push(Paragraph.configure(options.paragraph));
|
|
84
|
+
}
|
|
85
|
+
if (options.strike !== false) {
|
|
86
|
+
extensions.push(Strike.configure(options.strike));
|
|
87
|
+
}
|
|
88
|
+
if (options.text !== false) {
|
|
89
|
+
extensions.push(Text.configure(options.text));
|
|
90
|
+
}
|
|
91
|
+
if (options.textAlign !== false) {
|
|
92
|
+
extensions.push(TextAlign.configure(options.textAlign));
|
|
93
|
+
}
|
|
94
|
+
if (options.underline !== false) {
|
|
95
|
+
extensions.push(Underline.configure(options == null ? void 0 : options.underline));
|
|
96
|
+
}
|
|
97
|
+
return extensions;
|
|
98
|
+
}
|
|
99
|
+
});
|
|
100
|
+
|
|
101
|
+
export {
|
|
102
|
+
PuckRichText
|
|
103
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import {
|
|
2
|
+
init_react_import
|
|
3
|
+
} from "./chunk-DCSQEDMK.mjs";
|
|
4
|
+
|
|
5
|
+
// css-module:/home/runner/work/puck/puck/packages/core/components/RichTextEditor/styles.module.css#css-module
|
|
6
|
+
init_react_import();
|
|
7
|
+
var styles_module_default = { "RichTextEditor": "_RichTextEditor_1elol_1", "RichTextEditor--editor": "_RichTextEditor--editor_1elol_50", "RichTextEditor--disabled": "_RichTextEditor--disabled_1elol_106", "RichTextEditor--isActive": "_RichTextEditor--isActive_1elol_110", "RichTextEditor-menu": "_RichTextEditor-menu_1elol_116" };
|
|
8
|
+
|
|
9
|
+
export {
|
|
10
|
+
styles_module_default
|
|
11
|
+
};
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/RichTextMenu/styles.module.css/#css-module-data */
|
|
2
|
+
._RichTextMenu_k97eh_1 {
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-direction: row;
|
|
5
|
+
flex-wrap: nowrap;
|
|
6
|
+
}
|
|
7
|
+
._RichTextMenu--form_k97eh_7 {
|
|
8
|
+
border-top-left-radius: 4px;
|
|
9
|
+
border-top-right-radius: 4px;
|
|
10
|
+
padding: 6px 6px;
|
|
11
|
+
background-color: var(--puck-color-grey-12);
|
|
12
|
+
position: relative;
|
|
13
|
+
scrollbar-width: none;
|
|
14
|
+
overflow-x: auto;
|
|
15
|
+
}
|
|
16
|
+
._RichTextMenu-group_k97eh_17 {
|
|
17
|
+
display: flex;
|
|
18
|
+
align-items: space-between;
|
|
19
|
+
flex-direction: row;
|
|
20
|
+
flex-wrap: nowrap;
|
|
21
|
+
padding-inline: 6px;
|
|
22
|
+
gap: 2px;
|
|
23
|
+
position: relative;
|
|
24
|
+
}
|
|
25
|
+
._RichTextMenu-group_k97eh_17:first-of-type {
|
|
26
|
+
padding-left: 0;
|
|
27
|
+
}
|
|
28
|
+
._RichTextMenu-group_k97eh_17:last-of-type {
|
|
29
|
+
padding-right: 0;
|
|
30
|
+
}
|
|
31
|
+
._RichTextMenu--inline_k97eh_35 ._RichTextMenu-group_k97eh_17 {
|
|
32
|
+
color: var(--puck-color-grey-08);
|
|
33
|
+
gap: 0px;
|
|
34
|
+
flex-wrap: nowrap;
|
|
35
|
+
}
|
|
36
|
+
._RichTextMenu-group_k97eh_17 + ._RichTextMenu-group_k97eh_17 {
|
|
37
|
+
border-left: 1px solid var(--puck-color-grey-10);
|
|
38
|
+
}
|
|
39
|
+
._RichTextMenu--inline_k97eh_35 ._RichTextMenu-group_k97eh_17 + ._RichTextMenu-group_k97eh_17 {
|
|
40
|
+
border-left: 0.5px solid var(--puck-color-grey-05);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/IconButton/IconButton.module.css/#css-module-data */
|
|
44
|
+
._IconButton_ffob9_1 {
|
|
45
|
+
align-items: center;
|
|
46
|
+
background: transparent;
|
|
47
|
+
border: none;
|
|
48
|
+
border-radius: 4px;
|
|
49
|
+
color: currentColor;
|
|
50
|
+
display: flex;
|
|
51
|
+
font-family: var(--puck-font-family);
|
|
52
|
+
justify-content: center;
|
|
53
|
+
padding: 4px;
|
|
54
|
+
transition: background-color 50ms ease-in, color 50ms ease-in;
|
|
55
|
+
}
|
|
56
|
+
._IconButton--active_ffob9_14 {
|
|
57
|
+
color: var(--puck-color-azure-04);
|
|
58
|
+
}
|
|
59
|
+
._IconButton_ffob9_1:focus-visible {
|
|
60
|
+
outline: 2px solid var(--puck-color-azure-05);
|
|
61
|
+
outline-offset: -2px;
|
|
62
|
+
}
|
|
63
|
+
@media (hover: hover) and (pointer: fine) {
|
|
64
|
+
._IconButton_ffob9_1:hover:not(._IconButton--disabled_ffob9_24) {
|
|
65
|
+
background: var(--puck-color-grey-10);
|
|
66
|
+
color: var(--puck-color-azure-04);
|
|
67
|
+
cursor: pointer;
|
|
68
|
+
transition: none;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
._IconButton_ffob9_1:active {
|
|
72
|
+
background: var(--puck-color-azure-11);
|
|
73
|
+
transition: none;
|
|
74
|
+
}
|
|
75
|
+
._IconButton-title_ffob9_37 {
|
|
76
|
+
clip: rect(0 0 0 0);
|
|
77
|
+
clip-path: inset(100%);
|
|
78
|
+
height: 1px;
|
|
79
|
+
overflow: hidden;
|
|
80
|
+
position: absolute;
|
|
81
|
+
white-space: nowrap;
|
|
82
|
+
width: 1px;
|
|
83
|
+
}
|
|
84
|
+
._IconButton--disabled_ffob9_24 {
|
|
85
|
+
color: var(--puck-color-grey-07);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Loader/styles.module.css/#css-module-data */
|
|
89
|
+
@keyframes _loader-animation_nacdm_1 {
|
|
90
|
+
0% {
|
|
91
|
+
transform: rotate(0deg) scale(1);
|
|
92
|
+
}
|
|
93
|
+
50% {
|
|
94
|
+
transform: rotate(180deg) scale(0.8);
|
|
95
|
+
}
|
|
96
|
+
100% {
|
|
97
|
+
transform: rotate(360deg) scale(1);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
._Loader_nacdm_13 {
|
|
101
|
+
background: transparent;
|
|
102
|
+
border-radius: 100%;
|
|
103
|
+
border: 2px solid currentColor;
|
|
104
|
+
border-bottom-color: transparent;
|
|
105
|
+
display: inline-block;
|
|
106
|
+
animation: _loader-animation_nacdm_1 1s 0s infinite linear;
|
|
107
|
+
animation-fill-mode: both;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/ActionBar/styles.module.css/#css-module-data */
|
|
111
|
+
._ActionBar_1nmyk_1 {
|
|
112
|
+
align-items: center;
|
|
113
|
+
cursor: default;
|
|
114
|
+
display: flex;
|
|
115
|
+
width: auto;
|
|
116
|
+
padding: 4px;
|
|
117
|
+
padding-inline-start: 0;
|
|
118
|
+
padding-inline-end: 0;
|
|
119
|
+
border-top-left-radius: 8px;
|
|
120
|
+
border-top-right-radius: 8px;
|
|
121
|
+
border-radius: 8px;
|
|
122
|
+
background: var(--puck-color-grey-01);
|
|
123
|
+
color: var(--puck-color-white);
|
|
124
|
+
font-family: var(--puck-font-family);
|
|
125
|
+
min-height: 26px;
|
|
126
|
+
}
|
|
127
|
+
._ActionBar-label_1nmyk_18 {
|
|
128
|
+
color: var(--puck-color-grey-08);
|
|
129
|
+
font-size: var(--puck-font-size-xxxs);
|
|
130
|
+
font-weight: 500;
|
|
131
|
+
padding-inline-start: 8px;
|
|
132
|
+
padding-inline-end: 8px;
|
|
133
|
+
margin-inline-start: 4px;
|
|
134
|
+
margin-inline-end: 4px;
|
|
135
|
+
text-overflow: ellipsis;
|
|
136
|
+
white-space: nowrap;
|
|
137
|
+
}
|
|
138
|
+
._ActionBarAction_1nmyk_30 + ._ActionBar-label_1nmyk_18 {
|
|
139
|
+
padding-inline-start: 0;
|
|
140
|
+
}
|
|
141
|
+
._ActionBar-label_1nmyk_18 + ._ActionBarAction_1nmyk_30 {
|
|
142
|
+
margin-inline-start: -4px;
|
|
143
|
+
}
|
|
144
|
+
._ActionBar-group_1nmyk_38 {
|
|
145
|
+
align-items: center;
|
|
146
|
+
border-inline-start: 0.5px solid var(--puck-color-grey-05);
|
|
147
|
+
display: flex;
|
|
148
|
+
height: 100%;
|
|
149
|
+
padding-inline-start: 4px;
|
|
150
|
+
padding-inline-end: 4px;
|
|
151
|
+
}
|
|
152
|
+
._ActionBar-group_1nmyk_38:first-of-type {
|
|
153
|
+
border-inline-start: 0;
|
|
154
|
+
}
|
|
155
|
+
._ActionBar-group_1nmyk_38:empty {
|
|
156
|
+
display: none;
|
|
157
|
+
}
|
|
158
|
+
._ActionBarAction_1nmyk_30 {
|
|
159
|
+
background: transparent;
|
|
160
|
+
border: none;
|
|
161
|
+
color: var(--puck-color-grey-08);
|
|
162
|
+
cursor: pointer;
|
|
163
|
+
padding: 6px;
|
|
164
|
+
margin-inline-start: 4px;
|
|
165
|
+
margin-inline-end: 4px;
|
|
166
|
+
border-radius: 4px;
|
|
167
|
+
overflow: hidden;
|
|
168
|
+
display: flex;
|
|
169
|
+
align-items: center;
|
|
170
|
+
justify-content: center;
|
|
171
|
+
transition: color 50ms ease-in;
|
|
172
|
+
}
|
|
173
|
+
._ActionBarAction--disabled_1nmyk_71 {
|
|
174
|
+
cursor: auto;
|
|
175
|
+
color: var(--puck-color-grey-06);
|
|
176
|
+
}
|
|
177
|
+
._ActionBarAction_1nmyk_30 svg {
|
|
178
|
+
max-width: none !important;
|
|
179
|
+
}
|
|
180
|
+
._ActionBarAction_1nmyk_30:focus-visible {
|
|
181
|
+
outline: 2px solid var(--puck-color-azure-05);
|
|
182
|
+
outline-offset: -2px;
|
|
183
|
+
}
|
|
184
|
+
@media (hover: hover) and (pointer: fine) {
|
|
185
|
+
._ActionBarAction_1nmyk_30:hover:not(._ActionBarAction--disabled_1nmyk_71) {
|
|
186
|
+
color: var(--puck-color-azure-06);
|
|
187
|
+
transition: none;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
._ActionBarAction_1nmyk_30:active:not(._ActionBarAction--disabled_1nmyk_71),
|
|
191
|
+
._ActionBarAction--active_1nmyk_93 {
|
|
192
|
+
color: var(--puck-color-azure-07);
|
|
193
|
+
transition: none;
|
|
194
|
+
}
|
|
195
|
+
._ActionBar-group_1nmyk_38 * {
|
|
196
|
+
margin: 0;
|
|
197
|
+
}
|
|
198
|
+
._ActionBar-separator_1nmyk_102 {
|
|
199
|
+
background: var(--puck-color-grey-05);
|
|
200
|
+
margin-inline: 4px;
|
|
201
|
+
width: 0.5px;
|
|
202
|
+
height: 100%;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/RichTextMenu/components/Control/styles.module.css/#css-module-data */
|
|
206
|
+
._Control_1aveu_1 .lucide {
|
|
207
|
+
height: 18px;
|
|
208
|
+
width: 18px;
|
|
209
|
+
}
|
|
210
|
+
._Control--inline_1aveu_6 .lucide {
|
|
211
|
+
height: 16px;
|
|
212
|
+
width: 16px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Select/styles.module.css/#css-module-data */
|
|
216
|
+
._Select_xjbef_1 {
|
|
217
|
+
position: relative;
|
|
218
|
+
z-index: 1;
|
|
219
|
+
}
|
|
220
|
+
._Select-button_xjbef_6 {
|
|
221
|
+
align-items: center;
|
|
222
|
+
background: transparent;
|
|
223
|
+
border: none;
|
|
224
|
+
border-radius: 4px;
|
|
225
|
+
display: flex;
|
|
226
|
+
justify-content: center;
|
|
227
|
+
gap: 0px;
|
|
228
|
+
height: 100%;
|
|
229
|
+
padding: 4px;
|
|
230
|
+
padding-right: 2px;
|
|
231
|
+
}
|
|
232
|
+
._Select--hasOptions_xjbef_19 ._Select-button_xjbef_6 {
|
|
233
|
+
color: currentColor;
|
|
234
|
+
}
|
|
235
|
+
._Select--hasOptions_xjbef_19:not(._Select--disabled_xjbef_23) ._Select-button_xjbef_6 {
|
|
236
|
+
cursor: pointer;
|
|
237
|
+
}
|
|
238
|
+
._Select-buttonIcon_xjbef_27 {
|
|
239
|
+
align-items: center;
|
|
240
|
+
display: flex;
|
|
241
|
+
justify-content: center;
|
|
242
|
+
}
|
|
243
|
+
._Select--standalone_xjbef_33 ._Select-buttonIcon_xjbef_27 .lucide {
|
|
244
|
+
height: 18px;
|
|
245
|
+
width: 18px;
|
|
246
|
+
}
|
|
247
|
+
._Select--actionBar_xjbef_38 ._Select-buttonIcon_xjbef_27 .lucide {
|
|
248
|
+
height: 16px;
|
|
249
|
+
width: 16px;
|
|
250
|
+
}
|
|
251
|
+
._Select--hasOptions_xjbef_19:not(._Select--disabled_xjbef_23) ._Select-button_xjbef_6:hover,
|
|
252
|
+
._Select--hasValue_xjbef_44 ._Select-button_xjbef_6 {
|
|
253
|
+
background: var(--puck-color-grey-10);
|
|
254
|
+
color: var(--puck-color-azure-04);
|
|
255
|
+
}
|
|
256
|
+
._Select--disabled_xjbef_23 ._Select-button_xjbef_6 {
|
|
257
|
+
color: var(--puck-color-grey-07);
|
|
258
|
+
}
|
|
259
|
+
._Select--actionBar_xjbef_38 {
|
|
260
|
+
&._Select--hasOptions_xjbef_19 ._Select-button_xjbef_6:hover,
|
|
261
|
+
&._Select--hasValue_xjbef_44 ._Select-button_xjbef_6 {
|
|
262
|
+
background: none;
|
|
263
|
+
color: var(--puck-color-azure-07);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
._Select-items_xjbef_61 {
|
|
267
|
+
background: white;
|
|
268
|
+
border: 1px solid var(--puck-color-grey-09);
|
|
269
|
+
border-radius: 8px;
|
|
270
|
+
margin: 10px 8px;
|
|
271
|
+
margin-left: 0;
|
|
272
|
+
padding: 4px;
|
|
273
|
+
z-index: 2;
|
|
274
|
+
list-style: none;
|
|
275
|
+
}
|
|
276
|
+
._SelectItem_xjbef_72 {
|
|
277
|
+
background: transparent;
|
|
278
|
+
border-radius: 4px;
|
|
279
|
+
border: none;
|
|
280
|
+
color: var(--puck-color-grey-04);
|
|
281
|
+
cursor: pointer;
|
|
282
|
+
display: flex;
|
|
283
|
+
gap: 8px;
|
|
284
|
+
align-items: center;
|
|
285
|
+
font-size: var(--puck-font-size-xxs);
|
|
286
|
+
margin: 0;
|
|
287
|
+
padding: 8px 12px;
|
|
288
|
+
width: 100%;
|
|
289
|
+
}
|
|
290
|
+
._SelectItem--isSelected_xjbef_87 {
|
|
291
|
+
background: var(--puck-color-azure-11);
|
|
292
|
+
color: var(--puck-color-azure-04);
|
|
293
|
+
font-weight: 500;
|
|
294
|
+
}
|
|
295
|
+
._SelectItem--isSelected_xjbef_87 ._SelectItem-icon_xjbef_93 {
|
|
296
|
+
color: var(--puck-color-azure-04);
|
|
297
|
+
}
|
|
298
|
+
._SelectItem_xjbef_72:hover {
|
|
299
|
+
background: var(--puck-color-azure-11);
|
|
300
|
+
color: var(--puck-color-azure-04);
|
|
301
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import {
|
|
2
|
+
LoadedRichTextMenuInner
|
|
3
|
+
} from "./chunk-K3V4LVUL.mjs";
|
|
4
|
+
import "./chunk-GQKMOYLG.mjs";
|
|
5
|
+
import "./chunk-DNF2EMM4.mjs";
|
|
6
|
+
import "./chunk-3QHWXJEI.mjs";
|
|
7
|
+
import "./chunk-7KY6RHEY.mjs";
|
|
8
|
+
import "./chunk-DJSH5REF.mjs";
|
|
9
|
+
import {
|
|
10
|
+
__spreadValues,
|
|
11
|
+
init_react_import
|
|
12
|
+
} from "./chunk-DCSQEDMK.mjs";
|
|
13
|
+
|
|
14
|
+
// components/RichTextMenu/full.tsx
|
|
15
|
+
init_react_import();
|
|
16
|
+
import { useEditorState } from "@tiptap/react";
|
|
17
|
+
import { useMemo } from "react";
|
|
18
|
+
|
|
19
|
+
// components/RichTextEditor/selector.ts
|
|
20
|
+
init_react_import();
|
|
21
|
+
var defaultEditorState = (ctx, readOnly) => {
|
|
22
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A, _B;
|
|
23
|
+
const editor = ctx.editor;
|
|
24
|
+
if (!editor) return {};
|
|
25
|
+
const canChain = () => editor.can().chain();
|
|
26
|
+
return {
|
|
27
|
+
isAlignLeft: editor.isActive({ textAlign: "left" }),
|
|
28
|
+
canAlignLeft: !readOnly && ((_b = (_a = canChain()).setTextAlign) == null ? void 0 : _b.call(_a, "left").run()),
|
|
29
|
+
isAlignCenter: editor.isActive({ textAlign: "center" }),
|
|
30
|
+
canAlignCenter: !readOnly && ((_d = (_c = canChain()).setTextAlign) == null ? void 0 : _d.call(_c, "center").run()),
|
|
31
|
+
isAlignRight: editor.isActive({ textAlign: "right" }),
|
|
32
|
+
canAlignRight: !readOnly && ((_f = (_e = canChain()).setTextAlign) == null ? void 0 : _f.call(_e, "right").run()),
|
|
33
|
+
isAlignJustify: editor.isActive({ textAlign: "justify" }),
|
|
34
|
+
canAlignJustify: !readOnly && ((_h = (_g = canChain()).setTextAlign) == null ? void 0 : _h.call(_g, "justify").run()),
|
|
35
|
+
isBold: editor.isActive("bold"),
|
|
36
|
+
canBold: !readOnly && ((_j = (_i = canChain()).toggleBold) == null ? void 0 : _j.call(_i).run()),
|
|
37
|
+
isItalic: editor.isActive("italic"),
|
|
38
|
+
canItalic: !readOnly && ((_l = (_k = canChain()).toggleItalic) == null ? void 0 : _l.call(_k).run()),
|
|
39
|
+
isUnderline: editor.isActive("underline"),
|
|
40
|
+
canUnderline: !readOnly && ((_n = (_m = canChain()).toggleUnderline) == null ? void 0 : _n.call(_m).run()),
|
|
41
|
+
isStrike: editor.isActive("strike"),
|
|
42
|
+
canStrike: !readOnly && ((_p = (_o = canChain()).toggleStrike) == null ? void 0 : _p.call(_o).run()),
|
|
43
|
+
isInlineCode: editor.isActive("code"),
|
|
44
|
+
canInlineCode: !readOnly && ((_r = (_q = canChain()).toggleCode) == null ? void 0 : _r.call(_q).run()),
|
|
45
|
+
isBulletList: editor.isActive("bulletList"),
|
|
46
|
+
canBulletList: !readOnly && ((_t = (_s = canChain()).toggleBulletList) == null ? void 0 : _t.call(_s).run()),
|
|
47
|
+
isOrderedList: editor.isActive("orderedList"),
|
|
48
|
+
canOrderedList: !readOnly && ((_v = (_u = canChain()).toggleOrderedList) == null ? void 0 : _v.call(_u).run()),
|
|
49
|
+
isCodeBlock: editor.isActive("codeBlock"),
|
|
50
|
+
canCodeBlock: !readOnly && ((_x = (_w = canChain()).toggleCodeBlock) == null ? void 0 : _x.call(_w).run()),
|
|
51
|
+
isBlockquote: editor.isActive("blockquote"),
|
|
52
|
+
canBlockquote: !readOnly && ((_z = (_y = canChain()).toggleBlockquote) == null ? void 0 : _z.call(_y).run()),
|
|
53
|
+
canHorizontalRule: !readOnly && ((_B = (_A = canChain()).setHorizontalRule) == null ? void 0 : _B.call(_A).run())
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
// components/RichTextMenu/full.tsx
|
|
58
|
+
import { jsx } from "react/jsx-runtime";
|
|
59
|
+
var LoadedRichTextMenuFull = ({
|
|
60
|
+
editor,
|
|
61
|
+
field,
|
|
62
|
+
readOnly,
|
|
63
|
+
inline
|
|
64
|
+
}) => {
|
|
65
|
+
const { tiptap = {} } = field;
|
|
66
|
+
const { selector } = tiptap;
|
|
67
|
+
const resolvedSelector = useMemo(() => {
|
|
68
|
+
return (ctx) => __spreadValues(__spreadValues({}, defaultEditorState(ctx, readOnly)), selector ? selector(ctx, readOnly) : {});
|
|
69
|
+
}, [selector, readOnly]);
|
|
70
|
+
const editorState = useEditorState({
|
|
71
|
+
editor,
|
|
72
|
+
selector: resolvedSelector
|
|
73
|
+
});
|
|
74
|
+
if (!editor || !editorState) {
|
|
75
|
+
return null;
|
|
76
|
+
}
|
|
77
|
+
return /* @__PURE__ */ jsx(
|
|
78
|
+
LoadedRichTextMenuInner,
|
|
79
|
+
{
|
|
80
|
+
editor,
|
|
81
|
+
editorState,
|
|
82
|
+
field,
|
|
83
|
+
readOnly,
|
|
84
|
+
inline
|
|
85
|
+
}
|
|
86
|
+
);
|
|
87
|
+
};
|
|
88
|
+
export {
|
|
89
|
+
LoadedRichTextMenuFull
|
|
90
|
+
};
|