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.
- package/README.md +33 -17
- package/dist/panda.buildinfo.json +739 -0
- package/dist/styles.css +44530 -5
- package/package.json +5 -4
- package/dist/styles/global.css +0 -66
- package/dist/styles/recipes/avatar.css +0 -189
- package/dist/styles/recipes/badge.css +0 -129
- package/dist/styles/recipes/box.css +0 -14
- package/dist/styles/recipes/breadcrumbs.css +0 -52
- package/dist/styles/recipes/button.css +0 -370
- package/dist/styles/recipes/card.css +0 -59
- package/dist/styles/recipes/checkbox-input.css +0 -31
- package/dist/styles/recipes/checkbox.css +0 -88
- package/dist/styles/recipes/chip.css +0 -157
- package/dist/styles/recipes/code.css +0 -19
- package/dist/styles/recipes/date-picker.css +0 -207
- package/dist/styles/recipes/divider.css +0 -39
- package/dist/styles/recipes/form-field.css +0 -38
- package/dist/styles/recipes/heading.css +0 -43
- package/dist/styles/recipes/highlight-text.css +0 -20
- package/dist/styles/recipes/icon-button.css +0 -366
- package/dist/styles/recipes/icon.css +0 -9
- package/dist/styles/recipes/label.css +0 -15
- package/dist/styles/recipes/link.css +0 -49
- package/dist/styles/recipes/list-item-group.css +0 -33
- package/dist/styles/recipes/list-item.css +0 -161
- package/dist/styles/recipes/list.css +0 -19
- package/dist/styles/recipes/menu.css +0 -141
- package/dist/styles/recipes/modal.css +0 -128
- package/dist/styles/recipes/pre.css +0 -23
- package/dist/styles/recipes/radio-input.css +0 -23
- package/dist/styles/recipes/radio.css +0 -90
- package/dist/styles/recipes/spinner.css +0 -52
- package/dist/styles/recipes/tag.css +0 -24
- package/dist/styles/recipes/text-input.css +0 -123
- package/dist/styles/recipes/text.css +0 -72
- package/dist/styles/recipes/textarea.css +0 -78
- package/dist/styles/recipes/time-picker.css +0 -171
- package/dist/styles/recipes/toggle-input.css +0 -25
- package/dist/styles/recipes/toggle.css +0 -97
- package/dist/styles/recipes/tooltip.css +0 -66
- package/dist/styles/recipes.css +0 -36
- package/dist/styles/reset.css +0 -1
- package/dist/styles/tokens.css +0 -1286
- 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**:
|
|
181
|
-
- **Default bump**: If the merged PR has no
|
|
182
|
-
- **No-release labels**: `
|
|
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` -
|
|
225
|
-
- `minor` -
|
|
226
|
-
- `patch` -
|
|
227
|
-
- `release` - Graduate the
|
|
228
|
-
- `skip-release` -
|
|
229
|
-
- `
|
|
230
|
-
- `
|
|
231
|
-
- `
|
|
232
|
-
- `
|
|
233
|
-
- `
|
|
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
|
-
- `
|
|
238
|
-
- `
|
|
239
|
-
- no
|
|
240
|
-
- `
|
|
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.
|