@telia-ace/alliance-ui 1.0.7-next.1 → 1.0.8-next.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/CHANGELOG.md +17 -0
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @telia-ace/alliance-ui
|
|
2
2
|
|
|
3
|
+
## 1.0.8-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3cfe2c7: Change scripts to `<script>:dev|prod|test` for local, production and test environment builds.
|
|
8
|
+
|
|
9
|
+
## 1.0.7
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- ebf3c0c: Add support for `required` property in `<alliance-modal>.`
|
|
14
|
+
- 0c1ec7b: Add `scroll-mode` property to `<alliance-modal>`.
|
|
15
|
+
|
|
16
|
+

|
|
17
|
+
|
|
18
|
+
- 0c1ec7b: Smaller action buttons and decreased vertical padding in `<alliance-modal>`.
|
|
19
|
+
|
|
3
20
|
## 1.0.7-next.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telia-ace/alliance-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8-next.0",
|
|
4
4
|
"description": "UI components used by ACE Alliance apps.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"author": "Telia Company AB",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"lit": "^2.6.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@telia-ace/alliance-framework": "^1.0.
|
|
49
|
-
"@telia-ace/alliance-utilities": "^1.0.
|
|
48
|
+
"@telia-ace/alliance-framework": "^1.0.8-next.0",
|
|
49
|
+
"@telia-ace/alliance-utilities": "^1.0.8-next.0",
|
|
50
50
|
"@types/fs-extra": "^11.0.1",
|
|
51
51
|
"fs-extra": "^11.1.0",
|
|
52
52
|
"vite": "^4.1.1"
|
|
@@ -56,8 +56,9 @@
|
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"dev": "rimraf chunks voca components && tsc && vite build --mode development --watch",
|
|
59
|
-
"build": "rimraf chunks voca components && tsc && vite build",
|
|
60
|
-
"build
|
|
59
|
+
"build:dev": "rimraf chunks voca components && tsc && vite build --mode development",
|
|
60
|
+
"build:prod": "rimraf chunks voca components && tsc && vite build --mode prod",
|
|
61
|
+
"build:test": "rimraf chunks voca components && tsc && vite build --mode test",
|
|
61
62
|
"update-voca-components-list": "node scripts/map-voca-components"
|
|
62
63
|
}
|
|
63
64
|
}
|