@bcgov-sso/common-react-components 1.15.0 → 1.16.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.
@@ -24,6 +24,12 @@ export declare const styles: {
24
24
  secondary: {
25
25
  button: string;
26
26
  };
27
+ bcPrimary: {
28
+ button: string;
29
+ };
30
+ bcSecondary: {
31
+ button: string;
32
+ };
27
33
  };
28
34
  disabled: string;
29
35
  };
package/dist/esm/index.js CHANGED
@@ -8347,6 +8347,47 @@ const styles$1 = {
8347
8347
  color: #1a4dff;
8348
8348
  background-color: #ffffff;
8349
8349
 
8350
+ `,
8351
+ },
8352
+ bcPrimary: {
8353
+ button: `
8354
+ background-color: #003366;
8355
+ box-shadow: 0px 0px 0px 2px #003366 inset !important;
8356
+ color: #fff;
8357
+ border-radius: 0.222em;
8358
+ &:hover {
8359
+ text-decoration: underline;
8360
+ opacity: 0.80;
8361
+ }
8362
+ &:focus {
8363
+ outline: 4px solid #3B99FC;
8364
+ outline-offset: 1px;
8365
+ }
8366
+ &:active {
8367
+ opacity: 1;
8368
+ }
8369
+ &:disabled {
8370
+ background-color: #003366;
8371
+ box-shadow: 0px 0px 0px 2px #fff inset !important;
8372
+ color: #fff;
8373
+ cursor: not-allowed;
8374
+ opacity: 0.3;
8375
+ &:hover {
8376
+ text-decoration: none;
8377
+ }
8378
+ }
8379
+ `,
8380
+ },
8381
+ bcSecondary: {
8382
+ button: `
8383
+ background-color: #b2b2b2;
8384
+ border-radius: 0.222em;
8385
+ color: white;
8386
+ box-shadow: none !important;
8387
+
8388
+ &:hover {
8389
+ background-color: #b2b2b2;
8390
+ }
8350
8391
  `,
8351
8392
  },
8352
8393
  },