@conduction/theme 1.0.12 → 1.0.13

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 CHANGED
@@ -4,6 +4,7 @@ Conduction's design tokens theme
4
4
  ## Changelog
5
5
 
6
6
  - **Version 1**
7
+ - 1.0.13: added secondary button styling for all themes.
7
8
  - 1.0.12: implemented Select Single styling in xxllnc and Leiden
8
9
  - 1.0.11: fixed typo and added page-content-background-color token to Conduction theme.
9
10
  - 1.0.10:
@@ -321,8 +321,8 @@
321
321
  --utrecht-icon-gap: var(--leiden-size-xs);
322
322
 
323
323
  /* Button */
324
- --utrecht-button-color: var(--leiden-color-primary);
325
- --utrecht-button-background-color: var(--leiden-color-white);
324
+ --utrecht-button-color: var(--leiden-color-white);
325
+ --utrecht-button-background-color: var(--leiden-color-primary);
326
326
 
327
327
  --utrecht-button-icon-gap: var(--leiden-size-xs);
328
328
  --utrecht-button-border-color: var(--leiden-color-primary);
@@ -357,6 +357,12 @@
357
357
  /* --utrecht-button-hover-border-color: unset; */
358
358
  /* --utrecht-button-focus-transform-scale: unset; */
359
359
 
360
+ --utrecht-button-secondary-action-background-color: var(--leiden-color-white);
361
+ --utrecht-button-secondary-action-border-color: var(--leiden-color-primary);
362
+ --utrecht-button-secondary-action-border-width: 2px;
363
+ --utrecht-button-secondary-action-color: var(--leiden-color-primary);
364
+ --utrecht-button-secondary-action-font-weight: var(--leiden-font-weight-normal);
365
+
360
366
  /* InputField */
361
367
  --utrecht-form-input-background-color: var(--leiden-color-white-100);
362
368
  --utrecht-form-input-border-width: var(--leiden-size-4xs);
@@ -366,6 +366,12 @@
366
366
  /* --utrecht-button-hover-border-color: unset; */
367
367
  /* --utrecht-button-focus-transform-scale: unset; */
368
368
 
369
+ --utrecht-button-secondary-action-background-color: var(--xxllnc-color-white);
370
+ --utrecht-button-secondary-action-border-color: var(--xxllnc-color-black-15);
371
+ --utrecht-button-secondary-action-border-width: 2px;
372
+ --utrecht-button-secondary-action-color: var(--xxllnc-color-black-15);
373
+ --utrecht-button-secondary-action-font-weight: var(--xxllnc-font-weight-normal);
374
+
369
375
  /* InputField */
370
376
  --utrecht-form-input-background-color: var(--xxllnc-color-white-100);
371
377
  --utrecht-form-input-border-width: var(--xxllnc-size-4xs);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/theme",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "Conduction's design tokens theme",
5
5
  "main": "index.js",
6
6
  "repository": {
package/theme.css CHANGED
@@ -366,6 +366,12 @@
366
366
 
367
367
  /* --utrecht-button-text-transform: <length>; */
368
368
 
369
+ --utrecht-button-secondary-action-background-color: var(--conduction-color-white);
370
+ --utrecht-button-secondary-action-border-color: var(--conduction-color-primary);
371
+ --utrecht-button-secondary-action-border-width: 2px;
372
+ --utrecht-button-secondary-action-color: var(--conduction-color-primary);
373
+ --utrecht-button-secondary-action-font-weight: var(--conduction-font-weight-normal);
374
+
369
375
  /* --utrecht-button-focus-background-color: <color>; */
370
376
  /* --utrecht-button-focus-border-color: <color>; */
371
377
  /* --utrecht-button-focus-color: <color>; */