easy-richtextarea 3.0.97 → 3.0.100
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 +4 -2
- package/example.js +19 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -117,17 +117,19 @@ import withStyle from "easy-with-style";
|
|
|
117
117
|
|
|
118
118
|
export default (RichTextarea)`
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
display: none;
|
|
121
121
|
|
|
122
122
|
.active {
|
|
123
123
|
|
|
124
|
-
|
|
124
|
+
display: block
|
|
125
125
|
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
`;
|
|
129
129
|
```
|
|
130
130
|
|
|
131
|
+
Here active rich textarea elements are visible, inactive ones are not.
|
|
132
|
+
|
|
131
133
|
## Building
|
|
132
134
|
|
|
133
135
|
Automation is done with [npm scripts](https://docs.npmjs.com/misc/scripts), have a look at the `package.json` file. The pertinent commands are:
|