@v1nt1248/3nclient-lib 0.1.93 → 0.1.95

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@v1nt1248/3nclient-lib",
3
3
  "license": "AGPL-3.0-or-later",
4
4
  "author": "v1nt1248",
5
- "version": "0.1.93",
5
+ "version": "0.1.95",
6
6
  "description": "Library for 3NWeb clients",
7
7
  "type": "module",
8
8
  "files": [
@@ -9,6 +9,7 @@ export interface Ui3nChipProps {
9
9
  color?: string;
10
10
  textSize?: number | string;
11
11
  textColor?: string;
12
+ disabled?: boolean;
12
13
  }
13
14
  export interface Ui3nChipEmits {
14
15
  (ev: 'close'): void;
@@ -76,6 +76,7 @@ function onClick() {
76
76
  color="transparent"
77
77
  icon="round-close"
78
78
  icon-color="var(--color-icon-control-primary-default)"
79
+ :disabled="disabled"
79
80
  @click.stop.prevent="onClick"
80
81
  />
81
82
  </div>
@@ -364,7 +364,6 @@
364
364
  span {
365
365
  display: block;
366
366
  position: relative;
367
- height: var(--dialog-title-font-size);
368
367
  flex-grow: 1;
369
368
  font-size: var(--dialog-title-font-size);
370
369
  font-weight: 600;