@bpmn-io/properties-panel 0.8.0 → 0.8.1

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/CHANGELOG.md CHANGED
@@ -6,6 +6,11 @@ All notable changes to [`@bpmn-io/properties-panel`](https://github.com/bpmn-io/
6
6
 
7
7
  ___Note:__ Yet to be released changes appear here._
8
8
 
9
+ ## 0.8.1
10
+
11
+ * `CHORE`: add outline to checkboxes ([#120](https://github.com/bpmn-io/properties-panel/pull/120))
12
+ * `CHORE`: add missing description styles ([#121](https://github.com/bpmn-io/properties-panel/pull/121))
13
+
9
14
  ## 0.8.0
10
15
 
11
16
  * `FEAT`: allow to disable textarea, select, and checkbox ([#118](https://github.com/bpmn-io/properties-panel/pull/118))
@@ -29,7 +29,12 @@
29
29
 
30
30
  --text-base-color: var(--color-grey-225-10-15);
31
31
  --text-error-color: var(--color-red-360-100-45);
32
+ --link-color: var(--color-blue-205-100-50);
33
+
32
34
  --description-color: var(--color-grey-225-10-35);
35
+ --description-code-background-color: var(--color-grey-225-10-97);
36
+ --description-code-border-color: var(--color-grey-225-10-85);
37
+ --description-list-item-color: var(--color-grey-225-10-35);
33
38
 
34
39
  --placeholder-color: var(--color-grey-225-10-75);
35
40
 
@@ -359,7 +364,10 @@
359
364
  margin: 2px 0 1px;
360
365
  }
361
366
 
362
- .bio-properties-panel-description {
367
+ .bio-properties-panel-description,
368
+ .bio-properties-panel-description p,
369
+ .bio-properties-panel-description span,
370
+ .bio-properties-panel-description div {
363
371
  color: var(--description-color);
364
372
  display: block;
365
373
  margin: 2px 0 4px;
@@ -368,6 +376,34 @@
368
376
  font-size: var(--text-size-small);
369
377
  }
370
378
 
379
+ .bio-properties-panel-description code {
380
+ color: var(--description-color);
381
+ font-family: var(--font-family);
382
+ font-size: var(--text-size-small);
383
+ line-height: var(--line-height-condensed);
384
+ padding: 0 2px;
385
+ background-color: var(--description-code-background-color);
386
+ border: 1px solid var(--description-code-border-color);
387
+ border-radius: 3px;
388
+ }
389
+
390
+ .bio-properties-panel-description ul {
391
+ padding: 0;
392
+ margin: 0 0 0 12px;
393
+ list-style-type: disc;
394
+ }
395
+
396
+ .bio-properties-panel-description li {
397
+ color: var(--description-list-item-color);
398
+ margin: 0 0 0 12px;
399
+ }
400
+
401
+ .bio-properties-panel-description a {
402
+ color: var(--link-color);
403
+ font-size: var(--text-size-small);
404
+ text-decoration: underline;
405
+ }
406
+
371
407
  .bio-properties-panel-input {
372
408
  padding: 3px 6px 2px;
373
409
  border: 1px solid var(--input-border-color);
@@ -410,6 +446,11 @@ select.bio-properties-panel-input {
410
446
  vertical-align: middle;
411
447
  }
412
448
 
449
+ .bio-properties-panel-input[type="checkbox"]:focus {
450
+ outline: 1px solid var(--input-focus-border-color);
451
+ outline-offset: 0;
452
+ }
453
+
413
454
  .bio-properties-panel-checkbox > .bio-properties-panel-label {
414
455
  display: inline-block;
415
456
  font-size: var(--text-size-base);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmn-io/properties-panel",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Library for creating bpmn-io properties panels.",
5
5
  "main": "lib/index.js",
6
6
  "files": [