@veritree/ui 0.50.0 → 0.50.2
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veritree/ui",
|
|
3
|
-
"version": "0.50.
|
|
3
|
+
"version": "0.50.2",
|
|
4
4
|
"description": "veritree ui library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -8,11 +8,12 @@
|
|
|
8
8
|
"author": "cyroveritree <cyro@veritree.com>",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"publishConfig": {
|
|
11
|
-
"
|
|
11
|
+
"registry": "https://registry.npmjs.org"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"test": "vitest",
|
|
15
|
-
"coverage": "vitest run --coverage"
|
|
15
|
+
"coverage": "vitest run --coverage",
|
|
16
|
+
"release": "np --no-tests --no-2fa"
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
18
19
|
"@floating-ui/dom": "^1.2.0",
|
|
@@ -20,8 +21,13 @@
|
|
|
20
21
|
"@veritree/icons": "^0.43.0"
|
|
21
22
|
},
|
|
22
23
|
"devDependencies": {
|
|
24
|
+
"np": "^8.0.4",
|
|
23
25
|
"prettier": "^2.7.1",
|
|
24
26
|
"prettier-plugin-tailwindcss": "^0.1.13",
|
|
25
27
|
"tailwindcss": "^3.3.2"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"npm": ">=8.0.0",
|
|
31
|
+
"node": ">=18.0.0"
|
|
26
32
|
}
|
|
27
33
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
:class="[
|
|
4
4
|
headless
|
|
5
5
|
? 'progress-bar'
|
|
6
|
-
: 'relative min-h-[10px] w-full overflow-hidden rounded
|
|
6
|
+
: 'relative min-h-[10px] w-full overflow-hidden rounded bg-gray-200',
|
|
7
7
|
]"
|
|
8
8
|
role="progressbar"
|
|
9
9
|
aria-valuemin="0"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
:class="[
|
|
16
16
|
headless
|
|
17
17
|
? 'progress-bar__indicator'
|
|
18
|
-
: 'bg-secondary-200 absolute left-0 h-full transition-all',
|
|
18
|
+
: 'bg-secondary-200 absolute left-0 h-full transition-all duration-500',
|
|
19
19
|
]"
|
|
20
20
|
:style="{ width: `${percentageComputed}%` }"
|
|
21
21
|
></div>
|