@@ -104,16 +104,18 @@ You can style your `<EdiText/>` components with `styled-components` or similar l
104
104
105
105
Each customizable HTML element has a ` editext=xxx ` attribute. Use below as a reference table:
106
106
107
- | Attr. Value | Description |
108
- | ------------------ | -------------------------------------------------------------------------------- |
109
- | ` view-container ` | the container in ` view ` mode |
110
- | ` edit-container ` | the container in ` edit ` mode |
111
- | ` button-container ` | the container for the ` save ` and ` cancel ` buttons |
112
- | ` edit-button ` | use this to style the ** edit button** |
113
- | ` save-button ` | use this to style the ** save button** |
114
- | ` cancel-button ` | use this to style the ** cancel button** |
115
- | ` input ` | There is only one input. You can select it directly or just use this attr value. |
116
- | ` hint ` | To style the hint container. |
107
+ | Attr. Value | Description |
108
+ | ---------------------- | -------------------------------------------------------------------------------- |
109
+ | ` main-container ` | the main container |
110
+ | ` view-container ` | the container in ` view ` mode |
111
+ | ` edit-container ` | the container in ` edit ` mode |
112
+ | ` button-container ` | the container for the ` save ` and ` cancel ` buttons |
113
+ | ` validation-container ` | the container for validation message area |
114
+ | ` edit-button ` | use this to style the ** edit button** |
115
+ | ` save-button ` | use this to style the ** save button** |
116
+ | ` cancel-button ` | use this to style the ** cancel button** |
117
+ | ` input ` | There is only one input. You can select it directly or just use this attr value. |
118
+ | ` hint ` | To style the hint container. |
117
119
118
120
Usage:
119
121
@@ -132,6 +134,11 @@ div[editext='view-container'] {
132
134
color : #fff ;
133
135
}
134
136
137
+ div [editext = ' validation-container' ] {
138
+ color : #d3d3d3 ;
139
+ text-decoration : underline ;
140
+ }
141
+
135
142
input ,
136
143
textarea {
137
144
/* * or input[editext="input"] {} */
@@ -147,9 +154,8 @@ textarea {
147
154
## Browser Support
148
155
149
156
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari-ios/safari-ios_48x48.png" alt="iOS Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>iOS Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/opera/opera_48x48.png" alt="Opera" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Opera | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Edge |
150
- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
151
- | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
152
-
157
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
158
+ | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
153
159
154
160
## Development
155
161
0 commit comments