ehscan-react-components 0.1.26 → 0.1.27

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.
@@ -106,7 +106,7 @@ input:-webkit-autofill:active {
106
106
  }
107
107
 
108
108
  .ext-textarea-box-dropdown.open {
109
- border-radius: var(--ext-textarea-box-border-radius) var(--ext-textarea-box-border-radius) var(--ext-dropdown-border-radius) var(--ext-dropdown-border-radius) ;
109
+ border-radius: var(--ext-textarea-box-border-radius) var(--ext-textarea-box-border-radius) var(--ext-dropdown-border-radius) var(--ext-dropdown-border-radius);
110
110
  }
111
111
 
112
112
  .ext-textarea-wrapper {
@@ -194,7 +194,7 @@ input:-webkit-autofill:active {
194
194
  box-sizing: border-box;
195
195
  resize: none;
196
196
  overflow: hidden;
197
- padding: 10px;
197
+ padding: var(--ext-textarea-dropdown-inner-padding, 10px);
198
198
  line-height: 1.5;
199
199
  display: flex;
200
200
  flex-wrap: wrap;
@@ -212,7 +212,6 @@ input:-webkit-autofill:active {
212
212
  margin: 3px;
213
213
  background-color: var(--textarea-tag-bck-clr, white);
214
214
  color: var(--textarea-tag-clr, darkblue);
215
- padding: 5px 7px;
216
215
  border-radius: 6px;
217
216
  font-size: 90%;
218
217
  font-weight: 400;
@@ -223,8 +222,9 @@ input:-webkit-autofill:active {
223
222
  overflow: hidden;
224
223
  gap: 5px;
225
224
  flex: 0 0 auto;
226
- padding: 6px 10px;
227
- border-radius: 6px;
225
+ padding: 0 var(--loop-padding, 10px);
226
+ height: var(--loop-height, 20px);
227
+ border-radius: var(----loop-border-radius, 6px);
228
228
  align-items: center;
229
229
  justify-content: center;
230
230
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
@@ -237,7 +237,7 @@ input:-webkit-autofill:active {
237
237
  border-radius: 50px;
238
238
  }
239
239
 
240
- .textarea-tag-erase:hover{
240
+ .textarea-tag-erase:hover {
241
241
  background-color: lightgray;
242
242
  cursor: pointer;
243
243
  }
@@ -331,8 +331,9 @@ input:-webkit-autofill:active {
331
331
  .search-x-input {
332
332
  padding: 5px 7px;
333
333
  background-color: transparent;
334
- border: 1px dashed white;
335
- border-radius: 4px;
334
+ border: 1px dashed white;
335
+ border-radius: 4px;
336
+ margin: 0 10px 0 0;
336
337
  }
337
338
 
338
339
  .search-x-btn {
@@ -369,6 +370,8 @@ input:-webkit-autofill:active {
369
370
  cursor: pointer;
370
371
  }
371
372
 
372
- .search-x-input > input{
373
- width: -webkit-fill-available;
373
+ .search-x-input>input {
374
+ min-width: 0;
375
+ width: 100%;
376
+ box-sizing: border-box;
374
377
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ehscan-react-components",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "description": "components",
5
5
  "main": "dist/Components.js",
6
6
  "types": "dist/Components.d.ts",