@policystudio/policy-studio-ui-vue 1.0.38 → 1.0.41

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.
@@ -0,0 +1,68 @@
1
+ name: Release and publish package
2
+ on:
3
+ push:
4
+ branches:
5
+ - master
6
+
7
+ jobs:
8
+ tag-and-release:
9
+ name: Release and publish package
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v3
14
+ with:
15
+ ref: master
16
+
17
+ - name: Check version changes
18
+ uses: EndBug/version-check@v1
19
+ id: check
20
+ with:
21
+ token: ${{ secrets.GITHUB_TOKEN }}
22
+ file-url: https://unpkg.com/@policystudio/policy-studio-ui-vue@latest/package.json
23
+ static-checking: localIsNew
24
+
25
+ - name: Version update detected
26
+ if: steps.check.outputs.changed == 'true'
27
+ run: 'echo "Version change found! New version: ${{ steps.check.outputs.version }} (${{ steps.check.outputs.type }})"'
28
+
29
+ - name: Create tag
30
+ if: steps.check.outputs.changed == 'true'
31
+ uses: actions/github-script@v5
32
+ with:
33
+ script: |
34
+ github.rest.git.createRef({
35
+ owner: context.repo.owner,
36
+ repo: context.repo.repo,
37
+ ref: 'refs/tags/v${{ steps.check.outputs.version }}',
38
+ sha: context.sha
39
+ })
40
+
41
+ - name: Create Release
42
+ id: create_release
43
+ if: steps.check.outputs.changed == 'true' && success()
44
+ uses: actions/create-release@v1
45
+ env:
46
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
+ with:
48
+ tag_name: 'v${{ steps.check.outputs.version }}'
49
+ release_name: 'v${{ steps.check.outputs.version }}'
50
+ draft: false
51
+ prerelease: false
52
+
53
+ - name: Setup Node.js
54
+ uses: actions/setup-node@v3
55
+ if: steps.check.outputs.changed == 'true' && success()
56
+ with:
57
+ node-version: '16.x'
58
+ registry-url: 'https://registry.npmjs.org'
59
+
60
+ - name: Install dependencies
61
+ if: steps.check.outputs.changed == 'true' && success()
62
+ run: npm ci
63
+
64
+ - name: Publish to npm.js
65
+ if: steps.check.outputs.changed == 'true' && success()
66
+ run: npm publish
67
+ env:
68
+ NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}
@@ -18727,9 +18727,6 @@ html {
18727
18727
  --text-opacity: 1;
18728
18728
  color: #798490;
18729
18729
  color: rgba(121, 132, 144, var(--text-opacity));
18730
- --bg-opacity: 1;
18731
- background-color: #F3F6F9;
18732
- background-color: rgba(243, 246, 249, var(--bg-opacity));
18733
18730
  }
18734
18731
 
18735
18732
  .psui-el-checkbox.disabled .psui-el-checkmark {
@@ -18778,7 +18775,7 @@ html {
18778
18775
  display: flex;
18779
18776
  cursor: pointer;
18780
18777
  align-items: center;
18781
- height: 18px;
18778
+ height: 100%;
18782
18779
  }
18783
18780
 
18784
18781
  .psui-el-checkbox.size-small .psui-el-checkmark span {
@@ -18827,7 +18824,7 @@ html {
18827
18824
  display: flex;
18828
18825
  cursor: pointer;
18829
18826
  align-items: center;
18830
- height: 24px;
18827
+ height: 100%;
18831
18828
  }
18832
18829
 
18833
18830
  .psui-el-checkbox.size-big .psui-el-checkmark span {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.0.38",
3
+ "version": "1.0.41",
4
4
  "description": "Policy Studio UI",
5
5
  "main": "src/index.js",
6
6
  "author": "Policy Studio Team",
7
- "url": "https://bitbucket.org/policy-studio/policy-studio-ui-vue",
7
+ "url": "https://github.com/Policy-Studio/policy-studio-ui-vue",
8
8
  "license": "MIT",
9
9
  "keywords": [
10
10
  "vue",
@@ -1,7 +1,7 @@
1
1
  @layer components {
2
2
 
3
3
  .psui-el-checkbox {
4
- @apply psui-relative psui-text-gray-50 psui-bg-gray-10;
4
+ @apply psui-relative psui-text-gray-50;
5
5
 
6
6
  &.disabled {
7
7
  .psui-el-checkmark {
@@ -38,7 +38,7 @@
38
38
  }
39
39
  .psui-el-checkmark {
40
40
  @apply psui-flex psui-cursor-pointer psui-items-center;
41
- height: 18px;
41
+ height: 100%;
42
42
 
43
43
  span {
44
44
  margin-left: 8px;
@@ -77,7 +77,7 @@
77
77
  }
78
78
  .psui-el-checkmark {
79
79
  @apply psui-flex psui-cursor-pointer psui-items-center;
80
- height: 24px;
80
+ height: 100%;
81
81
 
82
82
  span {
83
83
  margin-left: 8px;
@@ -28,7 +28,7 @@ export default {
28
28
  * It sets the value which should be monitored.
29
29
  */
30
30
  inputValue: {
31
- type: String,
31
+ type: [String, Boolean],
32
32
  },
33
33
  value:{
34
34
  type: Array