@oxide/design-system 6.0.2 → 6.0.3-canary.72ddf9c

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
@@ -10,15 +10,15 @@ npm install --save @oxide/design-system
10
10
 
11
11
  ## Publishing
12
12
 
13
- This package uses [auto](https://github.com/intuit/auto/) to automatically publish new
14
- changes for any merged pull requests. Version bumps are determined by the GitHub labels
15
- added to the pull request. `major`, `minor`, and `patch` labels bumps the related semver
16
- version when the PR is merged. `documentation` and `internal` can be used instead to
17
- indicate that a version bump shouldn't happen. If you want to indiciate a version bump but
18
- don't want the release to happen yet you can use `major`, `minor`, or `patch` in conjunction
19
- with `skip-release`.
20
-
21
- For more information checkout [auto's docs](https://intuit.github.io/auto/docs).
13
+ Releases are managed via GitHub Actions workflows triggered from the Actions tab.
14
+
15
+ - **Full release**: Trigger the "Release" workflow manually with a version number (e.g.,
16
+ `6.0.3`). This publishes to npm under the `latest` tag, commits the version bump, creates
17
+ a git tag, and generates a GitHub Release.
18
+ - **Canary release**: Automatically published on every pull request. Each push to a PR
19
+ publishes a prerelease version (e.g., `6.0.2-canary.a1b2c3d`) to npm under the `canary`
20
+ tag. Install it with `npm install @oxide/design-system@canary` to test changes before
21
+ merging.
22
22
 
23
23
  ## Syncing with Figma
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxide/design-system",
3
- "version": "6.0.2",
3
+ "version": "6.0.3-canary.72ddf9c",
4
4
  "description": "Home of reusable design assets and token for oxide internal sites",
5
5
  "type": "module",
6
6
  "sideEffects": false,
package/styles/light.css CHANGED
@@ -20,7 +20,7 @@
20
20
  --surface-notice-secondary: var(--theme-notice-1000);
21
21
  --surface-error-inverse: var(--theme-error-800);
22
22
  --surface-error: var(--theme-error-1200);
23
- --surface-error-hover: var(--theme-notice-1100);
23
+ --surface-error-hover: var(--theme-error-1100);
24
24
  --surface-error-secondary: var(--theme-error-1000);
25
25
  --surface-inverse-raise: var(--content-raise);
26
26
  --surface-inverse-primary: var(--content-default);
@@ -35,31 +35,31 @@
35
35
  --content-tertiary: var(--color-neutral-600);
36
36
  --content-quaternary: var(--color-neutral-800);
37
37
  --content-disabled: var(--color-neutral-1000);
38
- --content-accent-alt: var(--theme-accent-alt-300);
39
- --content-accent-alt-secondary: var(--theme-accent-alt-500);
38
+ --content-accent-alt: var(--theme-accent-alt-500);
39
+ --content-accent-alt-secondary: var(--theme-accent-alt-600);
40
40
  --content-accent-alt-tertiary: var(--theme-accent-alt-700);
41
41
  --content-accent-alt-disabled: var(--theme-accent-alt-1000);
42
- --content-destructive: var(--theme-destructive-300);
43
- --content-destructive-secondary: var(--theme-destructive-500);
42
+ --content-destructive: var(--theme-destructive-500);
43
+ --content-destructive-secondary: var(--theme-destructive-600);
44
44
  --content-destructive-tertiary: var(--theme-destructive-700);
45
45
  --content-destructive-disabled: var(--theme-destructive-1000);
46
- --content-success: var(--theme-success-300);
47
- --content-success-secondary: var(--theme-success-500);
46
+ --content-success: var(--theme-success-500);
47
+ --content-success-secondary: var(--theme-success-600);
48
48
  --content-success-tertiary: var(--theme-success-700);
49
49
  --content-success-disabled: var(--theme-success-1000);
50
- --content-error: var(--theme-error-300);
51
- --content-error-secondary: var(--theme-error-500);
50
+ --content-error: var(--theme-error-500);
51
+ --content-error-secondary: var(--theme-error-600);
52
52
  --content-error-tertiary: var(--theme-error-700);
53
53
  --content-error-disabled: var(--theme-error-1000);
54
- --content-notice: var(--theme-notice-300);
55
- --content-notice-secondary: var(--theme-notice-500);
54
+ --content-notice: var(--theme-notice-500);
55
+ --content-notice-secondary: var(--theme-notice-600);
56
56
  --content-notice-tertiary: var(--theme-notice-700);
57
57
  --content-notice-disabled: var(--theme-notice-1000);
58
58
  --content-inverse: var(--surface-default);
59
59
  --content-inverse-raise: var(--surface-raise);
60
60
  --content-inverse-secondary: var(--surface-secondary);
61
- --content-info: var(--theme-info-300);
62
- --content-info-secondary: var(--theme-info-500);
61
+ --content-info: var(--theme-info-500);
62
+ --content-info-secondary: var(--theme-info-600);
63
63
  --content-info-tertiary: var(--theme-info-700);
64
64
  --content-info-disabled: var(--theme-info-1000);
65
65
  --stroke-default: var(--color-neutral-900);
@@ -103,8 +103,8 @@
103
103
  --surface-accent: var(--theme-accent-1200);
104
104
  --surface-accent-hover: var(--theme-accent-1100);
105
105
  --surface-accent-secondary: var(--theme-accent-1000);
106
- --content-accent: var(--theme-accent-300);
107
- --content-accent-secondary: var(--theme-accent-500);
106
+ --content-accent: var(--theme-accent-500);
107
+ --content-accent-secondary: var(--theme-accent-600);
108
108
  --content-accent-tertiary: var(--theme-accent-700);
109
109
  --content-accent-disabled: var(--theme-accent-1000);
110
110
  --stroke-accent: var(--theme-accent-800);