@npm_leadtech/legal-lib-components 2.11.8 → 2.11.10
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +19 -19
- package/dist/cjs/src/components/atoms/SearchSelect/SearchSelectProps.types.d.ts +3 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +19 -19
- package/dist/esm/src/components/atoms/SearchSelect/SearchSelectProps.types.d.ts +3 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -359,26 +359,26 @@ html[data-theme='uslawdistricts'] {
|
|
|
359
359
|
text-align: left;
|
|
360
360
|
border: none; }
|
|
361
361
|
.e-button.--styleless:hover {
|
|
362
|
-
color:
|
|
362
|
+
color: #078080; }
|
|
363
363
|
.e-button.--primary {
|
|
364
364
|
display: inline-block; }
|
|
365
365
|
.e-button.--primary-1 {
|
|
366
|
-
background-color:
|
|
367
|
-
border: 2px solid
|
|
366
|
+
background-color: #05646e;
|
|
367
|
+
border: 2px solid #05646e;
|
|
368
368
|
color: var(--others-white);
|
|
369
369
|
font-weight: bold;
|
|
370
370
|
height: 100%; }
|
|
371
371
|
.e-button.--primary-1:hover {
|
|
372
|
-
background-color:
|
|
373
|
-
border-color:
|
|
372
|
+
background-color: #078080;
|
|
373
|
+
border-color: #078080; }
|
|
374
374
|
.e-button.--primary-2 {
|
|
375
|
-
background-color:
|
|
376
|
-
border: 2px solid
|
|
375
|
+
background-color: #032a38;
|
|
376
|
+
border: 2px solid #032a38;
|
|
377
377
|
color: var(--others-white);
|
|
378
378
|
font-weight: bold; }
|
|
379
379
|
.e-button.--primary-2:hover {
|
|
380
|
-
background-color:
|
|
381
|
-
border-color:
|
|
380
|
+
background-color: #02374a;
|
|
381
|
+
border-color: #02374a; }
|
|
382
382
|
.e-button.--primary-3 {
|
|
383
383
|
background-color: var(--secondary-main);
|
|
384
384
|
border: 2px solid var(--secondary-main);
|
|
@@ -388,22 +388,22 @@ html[data-theme='uslawdistricts'] {
|
|
|
388
388
|
background-color: var(--secondary-main-dark-1);
|
|
389
389
|
border-color: var(--secondary-main-dark-1); }
|
|
390
390
|
.e-button.--primary-4 {
|
|
391
|
-
background-color:
|
|
392
|
-
border: 2px solid
|
|
393
|
-
color:
|
|
391
|
+
background-color: #032a38;
|
|
392
|
+
border: 2px solid #032a38;
|
|
393
|
+
color: #eff7f5;
|
|
394
394
|
font-weight: bold; }
|
|
395
395
|
.e-button.--primary-4:hover {
|
|
396
|
-
background-color:
|
|
397
|
-
border-color:
|
|
396
|
+
background-color: #02374a;
|
|
397
|
+
border-color: #02374a; }
|
|
398
398
|
.e-button.--secondary {
|
|
399
399
|
display: inline-block; }
|
|
400
400
|
.e-button.--secondary-1 {
|
|
401
401
|
background-color: var(--others-white);
|
|
402
|
-
border: 2px solid
|
|
403
|
-
color:
|
|
402
|
+
border: 2px solid #05646e;
|
|
403
|
+
color: #05646e;
|
|
404
404
|
font-weight: bold; }
|
|
405
405
|
.e-button.--secondary-1:hover {
|
|
406
|
-
background-color:
|
|
406
|
+
background-color: #e4f8f3; }
|
|
407
407
|
.e-button.--secondary-2 {
|
|
408
408
|
background-color: var(--others-white);
|
|
409
409
|
border: 2px solid var(--secondary-main);
|
|
@@ -485,11 +485,11 @@ html[data-theme='uslawdistricts'] {
|
|
|
485
485
|
font-weight: bold;
|
|
486
486
|
padding: 0.5rem 1rem;
|
|
487
487
|
display: inline-block;
|
|
488
|
-
color:
|
|
488
|
+
color: #078080;
|
|
489
489
|
border: none;
|
|
490
490
|
background: none; }
|
|
491
491
|
.button--tertiary:hover {
|
|
492
|
-
background-color:
|
|
492
|
+
background-color: #c0f7e8; }
|
|
493
493
|
|
|
494
494
|
.button--small {
|
|
495
495
|
line-height: 1; }
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
export interface SearchSelectProps {
|
|
2
3
|
id?: string;
|
|
3
4
|
name: string;
|
|
@@ -16,4 +17,6 @@ export interface SearchSelectProps {
|
|
|
16
17
|
isSearchable?: boolean;
|
|
17
18
|
placeholder?: string;
|
|
18
19
|
defaultMenuIsOpen?: boolean;
|
|
20
|
+
tooltipBesideLabel?: React.ReactNode;
|
|
21
|
+
width?: boolean;
|
|
19
22
|
}
|