cetec-design-system 1.0.0 β†’ 1.1.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.
Files changed (45) hide show
  1. package/README.md +33 -17
  2. package/dist/panda.buildinfo.json +739 -0
  3. package/dist/styles.css +44530 -5
  4. package/package.json +5 -4
  5. package/dist/styles/global.css +0 -66
  6. package/dist/styles/recipes/avatar.css +0 -189
  7. package/dist/styles/recipes/badge.css +0 -129
  8. package/dist/styles/recipes/box.css +0 -14
  9. package/dist/styles/recipes/breadcrumbs.css +0 -52
  10. package/dist/styles/recipes/button.css +0 -370
  11. package/dist/styles/recipes/card.css +0 -59
  12. package/dist/styles/recipes/checkbox-input.css +0 -31
  13. package/dist/styles/recipes/checkbox.css +0 -88
  14. package/dist/styles/recipes/chip.css +0 -157
  15. package/dist/styles/recipes/code.css +0 -19
  16. package/dist/styles/recipes/date-picker.css +0 -207
  17. package/dist/styles/recipes/divider.css +0 -39
  18. package/dist/styles/recipes/form-field.css +0 -38
  19. package/dist/styles/recipes/heading.css +0 -43
  20. package/dist/styles/recipes/highlight-text.css +0 -20
  21. package/dist/styles/recipes/icon-button.css +0 -366
  22. package/dist/styles/recipes/icon.css +0 -9
  23. package/dist/styles/recipes/label.css +0 -15
  24. package/dist/styles/recipes/link.css +0 -49
  25. package/dist/styles/recipes/list-item-group.css +0 -33
  26. package/dist/styles/recipes/list-item.css +0 -161
  27. package/dist/styles/recipes/list.css +0 -19
  28. package/dist/styles/recipes/menu.css +0 -141
  29. package/dist/styles/recipes/modal.css +0 -128
  30. package/dist/styles/recipes/pre.css +0 -23
  31. package/dist/styles/recipes/radio-input.css +0 -23
  32. package/dist/styles/recipes/radio.css +0 -90
  33. package/dist/styles/recipes/spinner.css +0 -52
  34. package/dist/styles/recipes/tag.css +0 -24
  35. package/dist/styles/recipes/text-input.css +0 -123
  36. package/dist/styles/recipes/text.css +0 -72
  37. package/dist/styles/recipes/textarea.css +0 -78
  38. package/dist/styles/recipes/time-picker.css +0 -171
  39. package/dist/styles/recipes/toggle-input.css +0 -25
  40. package/dist/styles/recipes/toggle.css +0 -97
  41. package/dist/styles/recipes/tooltip.css +0 -66
  42. package/dist/styles/recipes.css +0 -36
  43. package/dist/styles/reset.css +0 -1
  44. package/dist/styles/tokens.css +0 -1286
  45. package/dist/styles/utilities.css +0 -2033
package/README.md CHANGED
@@ -176,10 +176,11 @@ Packages are published from the repo root with `dist` included in the published
176
176
  ### Contributing
177
177
 
178
178
  - **Workflow trigger**: Every push to `main` runs the release workflow.
179
+ - **Automatic labels**: PR title labels are synced automatically from the Conventional Commit title.
179
180
  - **Publishing behavior**: A merged change that resolves to a releasable bump publishes a prerelease by default. Add the `release` label to graduate that merge to a stable `latest` release.
180
- - **Version bump labels**: Use `major`, `minor`, or `patch` to control the semver bump.
181
- - **Default bump**: If the merged PR has no Auto semver label, Auto defaults the head change to `patch`.
182
- - **No-release labels**: `internal`, `documentation`, `tests`, and `dependencies` do not publish on their own.
181
+ - **Version bump labels**: `major`, `minor`, and `patch` remain manual labels.
182
+ - **Default bump**: If the merged PR has no semver label, Auto will not publish a release.
183
+ - **No-release labels**: `feat`, `fix`, `docs`, `style`, `refactor`, `perf`, `test`, `build`, `ci`, `chore`, and `revert` are changelog labels. They do not publish on their own unless paired with a semver label.
183
184
  - **Skip label**: Use `skip-release` to prevent publishing.
184
185
  - **Changelog**: Auto-generated based on PR labels and titles
185
186
  - **PR Titles**: Must follow our defined format for Auto release automation:
@@ -219,25 +220,40 @@ Packages are published from the repo root with `dist` included in the published
219
220
  >
220
221
  > Use your best judgement when deciding what type and scope to use for the PR you’re creating.
221
222
 
223
+ Auto-applied label behavior:
224
+
225
+ - Title type `feat`, `fix`, `docs`, `style`, `refactor`, `perf`, `test`, `build`, `ci`, `chore`, and `revert` applies the matching PR-type label.
226
+ - `major`, `minor`, `patch`, `release`, and `skip-release` remain manual labels.
227
+ - PR title scopes such as `major`, `minor`, and `patch` are allowed by validation, but they do not apply labels automatically.
228
+
222
229
  ### Release Labels
223
230
 
224
- - `major` - Major version bump (πŸ’₯ Breaking Change)
225
- - `minor` - Minor version bump (πŸš€ Enhancement)
226
- - `patch` - Patch version bump (πŸ› Bug Fix)
227
- - `release` - Graduate the publish from prerelease to stable `latest`
228
- - `skip-release` - Do not publish a release
229
- - `internal` - Internal changes only (🏠 Internal)
230
- - `documentation` - Documentation updates only (πŸ“ Documentation)
231
- - `tests` - Test-only changes (πŸ§ͺ Tests)
232
- - `dependencies` - Dependency updates only (πŸ”© Dependency Updates)
233
- - `performance` - Performance improvements (🏎 Performance)
231
+ - `major` - Use for breaking changes that should trigger a major version bump when merged
232
+ - `minor` - Use for new functionality that should trigger a minor version bump when merged
233
+ - `patch` - Use for fixes or small improvements that should trigger a patch version bump when merged
234
+ - `release` - Graduate the merge from a prerelease publish to a stable latest release
235
+ - `skip-release` - Prevent Auto from publishing a release for this PR when it is merged
236
+ - `changes` - Fallback changelog section for merged work that does not match a more specific PR type label
237
+ - `feat` - Feature work that adds or expands user-facing functionality
238
+ - `fix` - Bug fix work that corrects broken or incorrect behavior
239
+ - `docs` - Documentation-only work such as guides, examples, or API docs
240
+ - `style` - Visual or formatting changes that do not alter component behavior
241
+ - `refactor` - Code restructuring or cleanup that does not change intended behavior
242
+ - `perf` - Performance-focused work that improves speed, efficiency, or bundle cost
243
+ - `test` - Test-only work such as adding coverage or improving existing test cases
244
+ - `build` - Build, packaging, dependency, or tooling changes affecting how the project is produced
245
+ - `ci` - Continuous integration or deployment workflow changes
246
+ - `chore` - General maintenance work that does not fit a more specific change type
247
+ - `revert` - Reverts a previous change or backs out an earlier merge
234
248
 
235
249
  Examples:
236
250
 
237
- - `minor` => prerelease minor
238
- - `minor` + `release` => stable minor release
239
- - no Auto semver label => prerelease patch
240
- - `documentation` only => no publish
251
+ - `feat: add modal` => label `feat`, no publish until a semver label is added
252
+ - `ci: update release workflow` => label `ci`, no publish
253
+ - `fix(patch): restore export` => label `fix`, no publish until a semver label is added
254
+ - `refactor(major)!: break input API` => label `refactor`, no publish until a semver label is added
255
+ - `feat: add modal` + manual `minor` label => prerelease minor
256
+ - `feat: add modal` + manual `minor` + `release` labels => stable minor release
241
257
  - `skip-release` => no publish
242
258
 
243
259
  See `.autorc` for the complete configuration.