@bnsights/bbsf-controls 1.0.149 → 1.0.151
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/README.md +8 -0
- package/bnsights-bbsf-controls-1.0.151.tgz +0 -0
- package/esm2022/lib/Shared/Enums/Markdown.mjs +20 -0
- package/esm2022/lib/Shared/Models/MarkdownEditorOptions.mjs +24 -0
- package/esm2022/lib/controls/MarkdownEditor/markdown-editor.component.mjs +235 -0
- package/esm2022/lib/controls/TextArea/TextArea.component.mjs +24 -15
- package/esm2022/lib/controls/bbsf-controls.module.mjs +17 -8
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/bnsights-bbsf-controls.mjs +306 -23
- package/fesm2022/bnsights-bbsf-controls.mjs.map +1 -1
- package/lib/Shared/Enums/Markdown.d.ts +17 -0
- package/lib/Shared/Models/MarkdownEditorOptions.d.ts +29 -0
- package/lib/controls/MarkdownEditor/markdown-editor.component.d.ts +94 -0
- package/lib/controls/TextArea/TextArea.component.d.ts +2 -3
- package/lib/controls/bbsf-controls.module.d.ts +32 -30
- package/package.json +19 -17
- package/public-api.d.ts +3 -0
- package/src/lib/assets/Style-rtl.scss +18 -2
- package/src/lib/assets/Style.scss +4 -1
- package/src/lib/assets/ace-builds/ace.js +23 -0
- package/src/lib/assets/ace-builds/mode-markdown.js +8 -0
- package/src/lib/assets/ngx-markdown-editor/highlight.js/agate.min.css +17 -0
- package/src/lib/assets/ngx-markdown-editor/highlight.js/highlight.min.js +2 -0
- package/src/lib/assets/ngx-markdown-editor/marked.min.js +6 -0
- package/src/lib/assets/sass/base.scss +25 -13
- package/src/lib/assets/sass/markdown.scss +98 -0
- package/bnsights-bbsf-controls-1.0.149.tgz +0 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
code {
|
|
2
|
+
padding: 1rem !important;
|
|
3
|
+
width: fit-content;
|
|
4
|
+
margin-bottom: 1.5rem !important;
|
|
5
|
+
border-radius: 1.23rem !important;
|
|
6
|
+
box-shadow: none !important;
|
|
7
|
+
background-color: #95939314 !important;
|
|
8
|
+
|
|
9
|
+
.hljs-keyword,
|
|
10
|
+
.hljs-selector-tag,
|
|
11
|
+
.hljs-literal {
|
|
12
|
+
color: #0970c2;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.hljs-type,
|
|
16
|
+
.hljs-title,
|
|
17
|
+
.hljs-section,
|
|
18
|
+
.hljs-attribute,
|
|
19
|
+
.hljs-quote,
|
|
20
|
+
.hljs-built_in,
|
|
21
|
+
.hljs-builtin-name {
|
|
22
|
+
color: #888885;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.hljs-string,
|
|
26
|
+
.hljs-bullet {
|
|
27
|
+
color: #0970c2;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
.preview-panel {
|
|
36
|
+
#code-block {
|
|
37
|
+
margin-bottom: 1rem;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
a {
|
|
41
|
+
&:hover {
|
|
42
|
+
color: #1B84FF !important;
|
|
43
|
+
font-weight: 600;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
ul li {
|
|
48
|
+
font-size: 1.1rem;
|
|
49
|
+
margin-bottom: 0.3rem;
|
|
50
|
+
color: #616a80;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
ol li {
|
|
54
|
+
padding-inline-start: 0.5rem;
|
|
55
|
+
margin-bottom: 0.3rem;
|
|
56
|
+
font-size: 1.1rem;
|
|
57
|
+
color: #616a80;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
img {
|
|
61
|
+
border-radius: 0.5rem;
|
|
62
|
+
max-width: 250px !important;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
#sample-markdown-table {
|
|
67
|
+
margin-bottom: 1rem;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.table.table-bordered {
|
|
71
|
+
border: transparent;
|
|
72
|
+
|
|
73
|
+
thead {
|
|
74
|
+
tr {
|
|
75
|
+
border-top: transparent;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
tr {
|
|
80
|
+
border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
|
|
81
|
+
border-top: 1px dashed rgba(0, 0, 0, 0.12);
|
|
82
|
+
|
|
83
|
+
&:last-child {
|
|
84
|
+
border-bottom: transparent;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
th {
|
|
88
|
+
font-size: 1rem;
|
|
89
|
+
color: #616a80;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
td {
|
|
93
|
+
|
|
94
|
+
font-size: 1.1rem;
|
|
95
|
+
color: #78829D;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
Binary file
|