buildgrid-ui 1.8.2 → 1.9.0
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/blocks/html-text-editor/html-text-area.d.ts +4 -0
- package/dist/blocks/html-text-editor/html-text-editor.d.ts +9 -0
- package/dist/blocks/html-text-editor/index.d.ts +2 -0
- package/dist/blocks/html-text-editor/options-bar.d.ts +7 -0
- package/dist/blocks/index.d.ts +1 -0
- package/dist/buildgrid-ui.css +10 -0
- package/dist/buildgrid-ui.es.js +62201 -7826
- package/dist/buildgrid-ui.umd.js +179 -65
- package/package.json +3 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import 'highlight.js/styles/github-dark.css';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import './unreset.css';
|
|
4
|
+
interface TextEditorProps {
|
|
5
|
+
initialValue?: string;
|
|
6
|
+
onChange?: (value: string) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const HtmlTextEditor: React.FC<TextEditorProps>;
|
|
9
|
+
export {};
|
package/dist/blocks/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
.unreset blockquote{border-left:4px solid #ccc;padding-left:1rem;margin:.5rem 0;font-style:italic;color:#555}.unreset ul{list-style-type:disc;padding-left:1.5rem;margin:.5rem 0}.unreset ol{list-style-type:decimal;padding-left:1.5rem;margin:.5rem 0}.unreset pre{background-color:#f5f5f5;padding:1rem;border-radius:5px;overflow-x:auto}.unreset code{font-family:monospace;background:#f0f0f0;padding:2px 4px;border-radius:3px}.unreset img{max-width:100%;height:auto;display:block;margin:.5rem 0}pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!
|
|
2
|
+
Theme: GitHub Dark
|
|
3
|
+
Description: Dark theme as seen on github.com
|
|
4
|
+
Author: github.com
|
|
5
|
+
Maintainer: @Hirse
|
|
6
|
+
Updated: 2021-05-15
|
|
7
|
+
|
|
8
|
+
Outdated base version: https://github.com/primer/github-syntax-dark
|
|
9
|
+
Current colors taken from GitHub's CSS
|
|
10
|
+
*/.hljs{color:#c9d1d9;background:#0d1117}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#ff7b72}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#d2a8ff}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-variable,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id{color:#79c0ff}.hljs-regexp,.hljs-string,.hljs-meta .hljs-string{color:#a5d6ff}.hljs-built_in,.hljs-symbol{color:#ffa657}.hljs-comment,.hljs-code,.hljs-formula{color:#8b949e}.hljs-name,.hljs-quote,.hljs-selector-tag,.hljs-selector-pseudo{color:#7ee787}.hljs-subst{color:#c9d1d9}.hljs-section{color:#1f6feb;font-weight:700}.hljs-bullet{color:#f2cc60}.hljs-emphasis{color:#c9d1d9;font-style:italic}.hljs-strong{color:#c9d1d9;font-weight:700}.hljs-addition{color:#aff5b4;background-color:#033a16}.hljs-deletion{color:#ffdcd7;background-color:#67060c}
|