@crediblemark/build 0.25.7 → 0.25.8
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/ArrayField-HYHS4HCO.mjs +17 -0
- package/dist/{Editor-GDIQRAYD.mjs → Editor-P3UUWNSZ.mjs} +8 -10
- package/dist/ObjectField-4N5XWAFL.mjs +17 -0
- package/dist/{actions-LaZpJ1KE.d.ts → actions-CKSDxt4l.d.mts} +1 -1
- package/dist/{actions-LaZpJ1KE.d.mts → actions-CKSDxt4l.d.ts} +1 -1
- package/dist/{chunk-J2UWT4L6.mjs → chunk-44PQTFGV.mjs} +5 -7
- package/dist/{chunk-23V3TMNT.mjs → chunk-AZFZRLP7.mjs} +7 -7
- package/dist/{chunk-ETN6FGIH.mjs → chunk-E4F5M5JH.mjs} +1 -1
- package/dist/chunk-HHKM5MBJ.mjs +3163 -0
- package/dist/{chunk-M4S65TWW.mjs → chunk-KN26YZZJ.mjs} +285 -130
- package/dist/{chunk-ERLZ5CJF.mjs → chunk-MWCFPGI6.mjs} +1153 -3236
- package/dist/{chunk-64A37UUC.mjs → chunk-O44M27KT.mjs} +442 -7
- package/dist/{chunk-EDTYTRV5.mjs → chunk-P2AZFZ7Q.mjs} +2 -2
- package/dist/{chunk-GUUI5HW3.mjs → chunk-PFHKXXSV.mjs} +1 -1
- package/dist/{chunk-JERQUUM4.mjs → chunk-S32JZ2HU.mjs} +1 -1
- package/dist/{chunk-35OY5UFR.mjs → chunk-T2LBDQLG.mjs} +7 -7
- package/dist/{chunk-EWOJLVHT.mjs → chunk-XLRMLBFR.mjs} +1 -1
- package/dist/{chunk-BXF2PDCW.mjs → chunk-Z7DDX2XU.mjs} +2 -2
- package/dist/{full-Y52CQK4X.mjs → full-3VRJOFG5.mjs} +6 -8
- package/dist/{index-CD3PszvP.d.mts → index-Ds4Dkkyr.d.mts} +1 -1
- package/dist/{index-Bj2x5pZ7.d.ts → index-DwajIHZf.d.ts} +1 -1
- package/dist/index.css +188 -2
- package/dist/index.d.mts +8 -40
- package/dist/index.d.ts +8 -40
- package/dist/index.js +1224 -567
- package/dist/index.mjs +25 -25
- package/dist/internal.d.mts +2 -2
- package/dist/internal.d.ts +2 -2
- package/dist/internal.mjs +1 -2
- package/dist/{loaded-K43N3OFP.mjs → loaded-C2JGMUXV.mjs} +3 -5
- package/dist/{loaded-MWBOE5CB.mjs → loaded-FJHWTGH6.mjs} +3 -5
- package/dist/{loaded-IWWCJE75.mjs → loaded-NTEK7RT3.mjs} +3 -5
- package/dist/no-external.css +188 -2
- package/dist/no-external.d.mts +4 -4
- package/dist/no-external.d.ts +4 -4
- package/dist/no-external.js +1224 -567
- package/dist/no-external.mjs +25 -25
- package/dist/rsc.css +1420 -0
- package/dist/rsc.d.mts +2 -2
- package/dist/rsc.d.ts +2 -2
- package/dist/rsc.js +10324 -1007
- package/dist/rsc.mjs +20 -3
- package/dist/{walk-tree-BEw6kTXm.d.ts → walk-tree-B_jHFa3L.d.mts} +39 -2
- package/dist/{walk-tree-BO8uRNcW.d.mts → walk-tree-DHMRjk5Z.d.ts} +39 -2
- package/package.json +1 -1
- package/dist/ArrayField-OIQQLS2B.mjs +0 -19
- package/dist/ObjectField-WOW3T2WS.mjs +0 -19
- package/dist/chunk-2RLA42JA.mjs +0 -455
- package/dist/chunk-7LXZOPYT.mjs +0 -445
- package/dist/chunk-SMAWAXVX.mjs +0 -139
package/dist/index.mjs
CHANGED
|
@@ -1,37 +1,38 @@
|
|
|
1
1
|
import {
|
|
2
|
-
ColorPickerField,
|
|
3
2
|
CredBuild,
|
|
4
|
-
Drawer,
|
|
5
|
-
DropZone,
|
|
6
3
|
Render,
|
|
7
|
-
ResponsiveSliderField,
|
|
8
|
-
SliderField,
|
|
9
4
|
blocksPlugin,
|
|
5
|
+
codePlugin,
|
|
10
6
|
createUseCredBuild,
|
|
11
7
|
fieldsPlugin,
|
|
12
8
|
legacySideBarPlugin,
|
|
13
9
|
outlinePlugin,
|
|
14
10
|
overrideKeys,
|
|
15
|
-
registerOverlayPortal,
|
|
16
11
|
useCredBuild,
|
|
17
12
|
useGetCredBuild
|
|
18
|
-
} from "./chunk-
|
|
19
|
-
import
|
|
13
|
+
} from "./chunk-MWCFPGI6.mjs";
|
|
14
|
+
import {
|
|
15
|
+
ColorPickerField,
|
|
16
|
+
Drawer,
|
|
17
|
+
DropZone,
|
|
18
|
+
ResponsiveSliderField,
|
|
19
|
+
SliderField,
|
|
20
|
+
migrate,
|
|
21
|
+
registerOverlayPortal,
|
|
22
|
+
resolveAllData,
|
|
23
|
+
transformProps
|
|
24
|
+
} from "./chunk-HHKM5MBJ.mjs";
|
|
25
|
+
import "./chunk-Z7DDX2XU.mjs";
|
|
20
26
|
import {
|
|
21
27
|
setDeep
|
|
22
|
-
} from "./chunk-
|
|
23
|
-
import "./chunk-
|
|
28
|
+
} from "./chunk-44PQTFGV.mjs";
|
|
29
|
+
import "./chunk-P2AZFZ7Q.mjs";
|
|
24
30
|
import {
|
|
25
31
|
AutoField,
|
|
26
32
|
Button,
|
|
27
33
|
FieldLabel
|
|
28
|
-
} from "./chunk-
|
|
29
|
-
import "./chunk-
|
|
30
|
-
import {
|
|
31
|
-
migrate,
|
|
32
|
-
resolveAllData,
|
|
33
|
-
transformProps
|
|
34
|
-
} from "./chunk-2RLA42JA.mjs";
|
|
34
|
+
} from "./chunk-T2LBDQLG.mjs";
|
|
35
|
+
import "./chunk-E4F5M5JH.mjs";
|
|
35
36
|
import "./chunk-ISXFLTBM.mjs";
|
|
36
37
|
import {
|
|
37
38
|
Action,
|
|
@@ -41,17 +42,15 @@ import {
|
|
|
41
42
|
Label,
|
|
42
43
|
RichTextMenu,
|
|
43
44
|
Separator
|
|
44
|
-
} from "./chunk-
|
|
45
|
-
import "./chunk-
|
|
46
|
-
import "./chunk-
|
|
47
|
-
import "./chunk-
|
|
48
|
-
import "./chunk-
|
|
49
|
-
import "./chunk-64A37UUC.mjs";
|
|
50
|
-
import "./chunk-SMAWAXVX.mjs";
|
|
45
|
+
} from "./chunk-AZFZRLP7.mjs";
|
|
46
|
+
import "./chunk-XLRMLBFR.mjs";
|
|
47
|
+
import "./chunk-PFHKXXSV.mjs";
|
|
48
|
+
import "./chunk-S32JZ2HU.mjs";
|
|
49
|
+
import "./chunk-KN26YZZJ.mjs";
|
|
51
50
|
import "./chunk-BFHV72KK.mjs";
|
|
52
51
|
import {
|
|
53
52
|
walkTree
|
|
54
|
-
} from "./chunk-
|
|
53
|
+
} from "./chunk-O44M27KT.mjs";
|
|
55
54
|
import "./chunk-AFVEAZTD.mjs";
|
|
56
55
|
export {
|
|
57
56
|
Action,
|
|
@@ -72,6 +71,7 @@ export {
|
|
|
72
71
|
Separator,
|
|
73
72
|
SliderField,
|
|
74
73
|
blocksPlugin,
|
|
74
|
+
codePlugin,
|
|
75
75
|
createUseCredBuild,
|
|
76
76
|
fieldsPlugin,
|
|
77
77
|
legacySideBarPlugin,
|
package/dist/internal.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Reducer } from 'react';
|
|
2
|
-
import { D as Data, A as AppState, O as OnAction, P as PrivateAppState, C as CredBuildAction } from './actions-
|
|
3
|
-
import { A as AppStore } from './index-
|
|
2
|
+
import { D as Data, A as AppState, O as OnAction, P as PrivateAppState, C as CredBuildAction } from './actions-CKSDxt4l.mjs';
|
|
3
|
+
import { A as AppStore } from './index-Ds4Dkkyr.mjs';
|
|
4
4
|
import '@tiptap/react';
|
|
5
5
|
import '@tiptap/extension-blockquote';
|
|
6
6
|
import '@tiptap/extension-bold';
|
package/dist/internal.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Reducer } from 'react';
|
|
2
|
-
import { D as Data, A as AppState, O as OnAction, P as PrivateAppState, C as CredBuildAction } from './actions-
|
|
3
|
-
import { A as AppStore } from './index-
|
|
2
|
+
import { D as Data, A as AppState, O as OnAction, P as PrivateAppState, C as CredBuildAction } from './actions-CKSDxt4l.js';
|
|
3
|
+
import { A as AppStore } from './index-DwajIHZf.js';
|
|
4
4
|
import '@tiptap/react';
|
|
5
5
|
import '@tiptap/extension-blockquote';
|
|
6
6
|
import '@tiptap/extension-bold';
|
package/dist/internal.mjs
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
useListOptions
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-S32JZ2HU.mjs";
|
|
4
4
|
import {
|
|
5
5
|
List,
|
|
6
6
|
SelectControl,
|
|
7
7
|
useControlContext
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-64A37UUC.mjs";
|
|
10
|
-
import "./chunk-SMAWAXVX.mjs";
|
|
8
|
+
} from "./chunk-KN26YZZJ.mjs";
|
|
11
9
|
import "./chunk-BFHV72KK.mjs";
|
|
12
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-O44M27KT.mjs";
|
|
13
11
|
import "./chunk-AFVEAZTD.mjs";
|
|
14
12
|
|
|
15
13
|
// components/RichTextMenu/controls/ListSelect/loaded.tsx
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
useAlignOptions
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-XLRMLBFR.mjs";
|
|
4
4
|
import {
|
|
5
5
|
SelectControl,
|
|
6
6
|
TextAlignStart,
|
|
7
7
|
useControlContext
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-64A37UUC.mjs";
|
|
10
|
-
import "./chunk-SMAWAXVX.mjs";
|
|
8
|
+
} from "./chunk-KN26YZZJ.mjs";
|
|
11
9
|
import "./chunk-BFHV72KK.mjs";
|
|
12
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-O44M27KT.mjs";
|
|
13
11
|
import "./chunk-AFVEAZTD.mjs";
|
|
14
12
|
|
|
15
13
|
// components/RichTextMenu/controls/AlignSelect/loaded.tsx
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
useHeadingOptions
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-PFHKXXSV.mjs";
|
|
4
4
|
import {
|
|
5
5
|
Heading,
|
|
6
6
|
SelectControl,
|
|
7
7
|
useControlContext
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-64A37UUC.mjs";
|
|
10
|
-
import "./chunk-SMAWAXVX.mjs";
|
|
8
|
+
} from "./chunk-KN26YZZJ.mjs";
|
|
11
9
|
import "./chunk-BFHV72KK.mjs";
|
|
12
|
-
import "./chunk-
|
|
10
|
+
import "./chunk-O44M27KT.mjs";
|
|
13
11
|
import "./chunk-AFVEAZTD.mjs";
|
|
14
12
|
|
|
15
13
|
// components/RichTextMenu/controls/HeadingSelect/loaded.tsx
|
package/dist/no-external.css
CHANGED
|
@@ -2680,8 +2680,8 @@ body:has(._DropZone--isAnimating_1vmgt_68:empty) [data-credbuild-overlay] {
|
|
|
2680
2680
|
}
|
|
2681
2681
|
|
|
2682
2682
|
/* css-module:/home/runner/work/credbuild/credbuild/plugins/blocks/styles.module.css/#css-module-data */
|
|
2683
|
-
.
|
|
2684
|
-
padding: 16px;
|
|
2683
|
+
._BlocksPlugin_1q0b2_1 {
|
|
2684
|
+
padding: 0 16px 16px 16px;
|
|
2685
2685
|
height: 100%;
|
|
2686
2686
|
overflow-y: auto;
|
|
2687
2687
|
box-sizing: border-box;
|
|
@@ -2714,3 +2714,189 @@ body:has(._DropZone--isAnimating_1vmgt_68:empty) [data-credbuild-overlay] {
|
|
|
2714
2714
|
padding: 16px;
|
|
2715
2715
|
}
|
|
2716
2716
|
}
|
|
2717
|
+
|
|
2718
|
+
/* css-module:/home/runner/work/credbuild/credbuild/plugins/code/styles.module.css/#css-module-data */
|
|
2719
|
+
._CodePlugin_77s8n_1 {
|
|
2720
|
+
display: flex;
|
|
2721
|
+
flex-direction: column;
|
|
2722
|
+
height: 100%;
|
|
2723
|
+
box-sizing: border-box;
|
|
2724
|
+
overflow: hidden;
|
|
2725
|
+
}
|
|
2726
|
+
._CodePanel_77s8n_9 {
|
|
2727
|
+
display: flex;
|
|
2728
|
+
flex-direction: column;
|
|
2729
|
+
height: 100%;
|
|
2730
|
+
padding: 12px;
|
|
2731
|
+
box-sizing: border-box;
|
|
2732
|
+
overflow-y: auto;
|
|
2733
|
+
}
|
|
2734
|
+
._CodePanel-title_77s8n_18 {
|
|
2735
|
+
font-size: 11px !important;
|
|
2736
|
+
font-weight: 600 !important;
|
|
2737
|
+
text-transform: uppercase !important;
|
|
2738
|
+
letter-spacing: 0.05em !important;
|
|
2739
|
+
color: var(--cb-silver-muted) !important;
|
|
2740
|
+
margin-bottom: 12px !important;
|
|
2741
|
+
}
|
|
2742
|
+
._CodePanel_77s8n_9 textarea._CodePanel-textarea_77s8n_27 {
|
|
2743
|
+
height: 180px !important;
|
|
2744
|
+
min-height: 180px !important;
|
|
2745
|
+
width: 100% !important;
|
|
2746
|
+
font-family:
|
|
2747
|
+
ui-monospace,
|
|
2748
|
+
SFMono-Regular,
|
|
2749
|
+
Menlo,
|
|
2750
|
+
Monaco,
|
|
2751
|
+
Consolas,
|
|
2752
|
+
"Liberation Mono",
|
|
2753
|
+
"Courier New",
|
|
2754
|
+
monospace !important;
|
|
2755
|
+
font-size: 12px !important;
|
|
2756
|
+
line-height: 1.5 !important;
|
|
2757
|
+
background-color: var(--cb-bg-base) !important;
|
|
2758
|
+
color: var(--cb-silver) !important;
|
|
2759
|
+
border: 1px solid var(--cb-border) !important;
|
|
2760
|
+
border-radius: var(--cb-radius-m) !important;
|
|
2761
|
+
padding: 10px !important;
|
|
2762
|
+
resize: none !important;
|
|
2763
|
+
box-sizing: border-box !important;
|
|
2764
|
+
margin-bottom: 12px !important;
|
|
2765
|
+
}
|
|
2766
|
+
._CodePanel_77s8n_9 textarea._CodePanel-textarea_77s8n_27:focus {
|
|
2767
|
+
border-color: var(--cb-gold) !important;
|
|
2768
|
+
outline: none !important;
|
|
2769
|
+
}
|
|
2770
|
+
._CodePanel-optionsSection_77s8n_49 {
|
|
2771
|
+
margin-bottom: 12px !important;
|
|
2772
|
+
}
|
|
2773
|
+
._CodePanel-optionTitle_77s8n_53 {
|
|
2774
|
+
font-size: 11px !important;
|
|
2775
|
+
font-weight: 600 !important;
|
|
2776
|
+
text-transform: uppercase !important;
|
|
2777
|
+
letter-spacing: 0.05em !important;
|
|
2778
|
+
color: var(--cb-silver-muted) !important;
|
|
2779
|
+
margin-bottom: 6px !important;
|
|
2780
|
+
}
|
|
2781
|
+
._CodePanel-radioGroup_77s8n_62 {
|
|
2782
|
+
display: flex !important;
|
|
2783
|
+
flex-direction: column !important;
|
|
2784
|
+
gap: 6px !important;
|
|
2785
|
+
}
|
|
2786
|
+
._CodePanel-radioLabel_77s8n_68 {
|
|
2787
|
+
display: flex !important;
|
|
2788
|
+
align-items: center !important;
|
|
2789
|
+
gap: 8px !important;
|
|
2790
|
+
font-size: 12px !important;
|
|
2791
|
+
color: var(--cb-silver) !important;
|
|
2792
|
+
cursor: pointer !important;
|
|
2793
|
+
}
|
|
2794
|
+
._CodePanel-radioInput_77s8n_77 {
|
|
2795
|
+
accent-color: var(--cb-gold) !important;
|
|
2796
|
+
cursor: pointer !important;
|
|
2797
|
+
margin: 0 !important;
|
|
2798
|
+
width: auto !important;
|
|
2799
|
+
height: auto !important;
|
|
2800
|
+
min-height: 0 !important;
|
|
2801
|
+
display: inline-block !important;
|
|
2802
|
+
}
|
|
2803
|
+
._CodePanel-button_77s8n_87 {
|
|
2804
|
+
background: var(--cb-gold) !important;
|
|
2805
|
+
color: var(--cb-bg-base) !important;
|
|
2806
|
+
border: none !important;
|
|
2807
|
+
padding: 8px 16px !important;
|
|
2808
|
+
border-radius: var(--cb-radius-m) !important;
|
|
2809
|
+
font-weight: 700 !important;
|
|
2810
|
+
font-size: 11px !important;
|
|
2811
|
+
text-transform: uppercase !important;
|
|
2812
|
+
letter-spacing: 0.05em !important;
|
|
2813
|
+
cursor: pointer !important;
|
|
2814
|
+
transition: opacity 0.2s ease, transform 0.1s ease !important;
|
|
2815
|
+
display: flex !important;
|
|
2816
|
+
align-items: center !important;
|
|
2817
|
+
justify-content: center !important;
|
|
2818
|
+
gap: 8px !important;
|
|
2819
|
+
height: 36px !important;
|
|
2820
|
+
width: auto !important;
|
|
2821
|
+
}
|
|
2822
|
+
._CodePanel-button_77s8n_87:hover {
|
|
2823
|
+
opacity: 0.9 !important;
|
|
2824
|
+
}
|
|
2825
|
+
._CodePanel-button_77s8n_87:active {
|
|
2826
|
+
transform: scale(0.98) !important;
|
|
2827
|
+
}
|
|
2828
|
+
._CodePanel-button_77s8n_87:disabled {
|
|
2829
|
+
opacity: 0.5 !important;
|
|
2830
|
+
cursor: not-allowed !important;
|
|
2831
|
+
}
|
|
2832
|
+
._CodePanel-error_77s8n_120 {
|
|
2833
|
+
color: #f87171 !important;
|
|
2834
|
+
font-size: 11px !important;
|
|
2835
|
+
margin-bottom: 12px !important;
|
|
2836
|
+
line-height: 1.4 !important;
|
|
2837
|
+
padding: 8px !important;
|
|
2838
|
+
background-color: rgba(239, 68, 68, 0.1) !important;
|
|
2839
|
+
border: 1px solid rgba(239, 68, 68, 0.2) !important;
|
|
2840
|
+
border-radius: var(--cb-radius-m) !important;
|
|
2841
|
+
}
|
|
2842
|
+
._CodePanel-success_77s8n_131 {
|
|
2843
|
+
color: #34d399 !important;
|
|
2844
|
+
font-size: 11px !important;
|
|
2845
|
+
margin-bottom: 12px !important;
|
|
2846
|
+
line-height: 1.4 !important;
|
|
2847
|
+
padding: 8px !important;
|
|
2848
|
+
background-color: rgba(16, 185, 129, 0.1) !important;
|
|
2849
|
+
border: 1px solid rgba(16, 185, 129, 0.2) !important;
|
|
2850
|
+
border-radius: var(--cb-radius-m) !important;
|
|
2851
|
+
}
|
|
2852
|
+
._CodePanel-promptSection_77s8n_142 {
|
|
2853
|
+
margin-top: 16px !important;
|
|
2854
|
+
border-top: 1px solid var(--cb-border) !important;
|
|
2855
|
+
padding-top: 12px !important;
|
|
2856
|
+
}
|
|
2857
|
+
._CodePanel-promptHeader_77s8n_148 {
|
|
2858
|
+
display: flex !important;
|
|
2859
|
+
align-items: center !important;
|
|
2860
|
+
justify-content: space-between !important;
|
|
2861
|
+
margin-bottom: 8px !important;
|
|
2862
|
+
}
|
|
2863
|
+
._CodePanel-promptText_77s8n_155 {
|
|
2864
|
+
font-size: 11px !important;
|
|
2865
|
+
line-height: 1.5 !important;
|
|
2866
|
+
background-color: var(--cb-bg-base) !important;
|
|
2867
|
+
color: var(--cb-silver-muted) !important;
|
|
2868
|
+
border: 1px solid var(--cb-border) !important;
|
|
2869
|
+
border-radius: var(--cb-radius-m) !important;
|
|
2870
|
+
padding: 10px !important;
|
|
2871
|
+
white-space: pre-wrap !important;
|
|
2872
|
+
font-family: inherit !important;
|
|
2873
|
+
max-height: 80px !important;
|
|
2874
|
+
overflow-y: auto !important;
|
|
2875
|
+
}
|
|
2876
|
+
._CodePanel-copyBtn_77s8n_169 {
|
|
2877
|
+
background: transparent !important;
|
|
2878
|
+
border: 1px solid var(--cb-border) !important;
|
|
2879
|
+
color: var(--cb-silver-muted) !important;
|
|
2880
|
+
padding: 4px 8px !important;
|
|
2881
|
+
border-radius: var(--cb-radius-m) !important;
|
|
2882
|
+
font-size: 10px !important;
|
|
2883
|
+
font-weight: 600 !important;
|
|
2884
|
+
cursor: pointer !important;
|
|
2885
|
+
display: flex !important;
|
|
2886
|
+
align-items: center !important;
|
|
2887
|
+
gap: 4px !important;
|
|
2888
|
+
transition: all 0.2s ease !important;
|
|
2889
|
+
height: auto !important;
|
|
2890
|
+
width: auto !important;
|
|
2891
|
+
line-height: 1 !important;
|
|
2892
|
+
}
|
|
2893
|
+
._CodePanel-copyBtn_77s8n_169:hover {
|
|
2894
|
+
border-color: var(--cb-gold) !important;
|
|
2895
|
+
color: var(--cb-gold) !important;
|
|
2896
|
+
background-color: var(--cb-gold-faint) !important;
|
|
2897
|
+
}
|
|
2898
|
+
._CodePanel-copyBtn--copied_77s8n_193 {
|
|
2899
|
+
color: #34d399 !important;
|
|
2900
|
+
border-color: rgba(16, 185, 129, 0.4) !important;
|
|
2901
|
+
background-color: rgba(16, 185, 129, 0.05) !important;
|
|
2902
|
+
}
|
package/dist/no-external.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { w as Adaptor, A as AppState, x as ArrayField, y as ArrayState, z as AsFieldProps, B as BaseData, E as BaseField, G as CacheOpts,
|
|
2
|
-
export { Action, ActionBar, AutoField, Button,
|
|
3
|
-
export { m as migrate, r as resolveAllData, t as transformProps, w as walkTree } from './walk-tree-
|
|
1
|
+
export { w as Adaptor, A as AppState, x as ArrayField, y as ArrayState, z as AsFieldProps, B as BaseData, E as BaseField, G as CacheOpts, h as ComponentConfig, J as ComponentConfigExtensions, K as ComponentConfigParams, c as ComponentData, L as ComponentDataMap, N as ComponentDataOptionalId, Q as ComponentMetadata, a as Config, S as ConfigParams, m as Content, C as CredBuildAction, T as CredBuildComponent, X as CredBuildContext, Y as CredBuildMetadata, Z as CustomField, _ as CustomFieldRender, D as Data, o as DefaultComponentProps, n as DefaultComponents, p as DefaultRootFieldProps, $ as DefaultRootProps, a0 as DefaultRootRenderProps, a1 as Direction, a2 as DragAxis, a3 as ExternalField, a4 as ExternalFieldWithAdaptor, a5 as ExtractConfigParams, a6 as ExtractField, r as Field, a7 as FieldMetadata, s as FieldProps, a8 as FieldRenderFunctions, a9 as FieldTransformFn, aa as FieldTransformFnParams, i as FieldTransforms, F as Fields, H as History, I as IframeConfig, t as InitialHistory, ab as ItemWithId, ac as MappedItem, M as Metadata, ad as NumberField, ae as ObjectField, O as OnAction, af as OverrideKey, f as Overrides, b as Permissions, e as Plugin, ag as RadioField, d as ResolveDataTrigger, k as ResponsiveValue, ah as RichText, j as RichtextField, ai as RootConfig, q as RootData, R as RootDataWithProps, aj as RootDataWithoutProps, ak as SelectField, al as Slot, am as SlotComponent, an as SlotField, ao as TextField, ap as TextareaField, g as UiState, U as UserGenerics, aq as Viewport, V as Viewports, ar as WithChildren, as as WithCredBuildProps, W as WithId, at as WithSlotProps, au as overrideKeys } from './actions-CKSDxt4l.mjs';
|
|
2
|
+
export { Action, ActionBar, AutoField, Button, CredBuild, CredBuildApi, Drawer, FieldLabel, Group, IconButton, Label, Render, RichTextMenu, Separator, UseCredBuildData, blocksPlugin, codePlugin, createUseCredBuild, fieldsPlugin, legacySideBarPlugin, outlinePlugin, registerOverlayPortal, setDeep, useCredBuild, useGetCredBuild } from './index.mjs';
|
|
3
|
+
export { C as ColorPickerField, D as DropZone, R as ResponsiveSliderField, S as SliderField, m as migrate, r as resolveAllData, t as transformProps, w as walkTree } from './walk-tree-B_jHFa3L.mjs';
|
|
4
4
|
import 'react';
|
|
5
5
|
import '@tiptap/react';
|
|
6
6
|
import '@tiptap/extension-blockquote';
|
|
@@ -18,4 +18,4 @@ import '@tiptap/extension-strike';
|
|
|
18
18
|
import '@tiptap/extension-text-align';
|
|
19
19
|
import '@tiptap/extension-underline';
|
|
20
20
|
import 'react/jsx-runtime';
|
|
21
|
-
import './index-
|
|
21
|
+
import './index-Ds4Dkkyr.mjs';
|
package/dist/no-external.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { w as Adaptor, A as AppState, x as ArrayField, y as ArrayState, z as AsFieldProps, B as BaseData, E as BaseField, G as CacheOpts,
|
|
2
|
-
export { Action, ActionBar, AutoField, Button,
|
|
3
|
-
export { m as migrate, r as resolveAllData, t as transformProps, w as walkTree } from './walk-tree-
|
|
1
|
+
export { w as Adaptor, A as AppState, x as ArrayField, y as ArrayState, z as AsFieldProps, B as BaseData, E as BaseField, G as CacheOpts, h as ComponentConfig, J as ComponentConfigExtensions, K as ComponentConfigParams, c as ComponentData, L as ComponentDataMap, N as ComponentDataOptionalId, Q as ComponentMetadata, a as Config, S as ConfigParams, m as Content, C as CredBuildAction, T as CredBuildComponent, X as CredBuildContext, Y as CredBuildMetadata, Z as CustomField, _ as CustomFieldRender, D as Data, o as DefaultComponentProps, n as DefaultComponents, p as DefaultRootFieldProps, $ as DefaultRootProps, a0 as DefaultRootRenderProps, a1 as Direction, a2 as DragAxis, a3 as ExternalField, a4 as ExternalFieldWithAdaptor, a5 as ExtractConfigParams, a6 as ExtractField, r as Field, a7 as FieldMetadata, s as FieldProps, a8 as FieldRenderFunctions, a9 as FieldTransformFn, aa as FieldTransformFnParams, i as FieldTransforms, F as Fields, H as History, I as IframeConfig, t as InitialHistory, ab as ItemWithId, ac as MappedItem, M as Metadata, ad as NumberField, ae as ObjectField, O as OnAction, af as OverrideKey, f as Overrides, b as Permissions, e as Plugin, ag as RadioField, d as ResolveDataTrigger, k as ResponsiveValue, ah as RichText, j as RichtextField, ai as RootConfig, q as RootData, R as RootDataWithProps, aj as RootDataWithoutProps, ak as SelectField, al as Slot, am as SlotComponent, an as SlotField, ao as TextField, ap as TextareaField, g as UiState, U as UserGenerics, aq as Viewport, V as Viewports, ar as WithChildren, as as WithCredBuildProps, W as WithId, at as WithSlotProps, au as overrideKeys } from './actions-CKSDxt4l.js';
|
|
2
|
+
export { Action, ActionBar, AutoField, Button, CredBuild, CredBuildApi, Drawer, FieldLabel, Group, IconButton, Label, Render, RichTextMenu, Separator, UseCredBuildData, blocksPlugin, codePlugin, createUseCredBuild, fieldsPlugin, legacySideBarPlugin, outlinePlugin, registerOverlayPortal, setDeep, useCredBuild, useGetCredBuild } from './index.js';
|
|
3
|
+
export { C as ColorPickerField, D as DropZone, R as ResponsiveSliderField, S as SliderField, m as migrate, r as resolveAllData, t as transformProps, w as walkTree } from './walk-tree-DHMRjk5Z.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import '@tiptap/react';
|
|
6
6
|
import '@tiptap/extension-blockquote';
|
|
@@ -18,4 +18,4 @@ import '@tiptap/extension-strike';
|
|
|
18
18
|
import '@tiptap/extension-text-align';
|
|
19
19
|
import '@tiptap/extension-underline';
|
|
20
20
|
import 'react/jsx-runtime';
|
|
21
|
-
import './index-
|
|
21
|
+
import './index-DwajIHZf.js';
|