@cocreate/unique 1.10.2 → 1.10.4
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/.github/workflows/automated.yml +17 -5
- package/.github/workflows/manual.yml +3 -3
- package/CHANGELOG.md +17 -0
- package/docs/index.html +1 -1
- package/package.json +3 -3
|
@@ -8,7 +8,11 @@ jobs:
|
|
|
8
8
|
runs-on: ubuntu-latest
|
|
9
9
|
steps:
|
|
10
10
|
- name: Checkout
|
|
11
|
-
uses: actions/checkout@
|
|
11
|
+
uses: actions/checkout@v3
|
|
12
|
+
- name: setup nodejs
|
|
13
|
+
uses: actions/setup-node@v3
|
|
14
|
+
with:
|
|
15
|
+
node-version: 16
|
|
12
16
|
- name: Jaid/action-sync-node-meta
|
|
13
17
|
uses: jaid/action-sync-node-meta@v1.4.0
|
|
14
18
|
with:
|
|
@@ -19,6 +23,10 @@ jobs:
|
|
|
19
23
|
steps:
|
|
20
24
|
- name: Checkout
|
|
21
25
|
uses: actions/checkout@v3
|
|
26
|
+
- name: setup nodejs
|
|
27
|
+
uses: actions/setup-node@v3
|
|
28
|
+
with:
|
|
29
|
+
node-version: 16
|
|
22
30
|
- name: Semantic Release
|
|
23
31
|
uses: cycjimmy/semantic-release-action@v3
|
|
24
32
|
id: semantic
|
|
@@ -41,11 +49,11 @@ jobs:
|
|
|
41
49
|
VERSION: "${{ needs.release.outputs.new_release_version }}"
|
|
42
50
|
steps:
|
|
43
51
|
- name: Checkout
|
|
44
|
-
uses: actions/checkout@
|
|
52
|
+
uses: actions/checkout@v3
|
|
45
53
|
- name: setup nodejs
|
|
46
|
-
uses: actions/setup-node@
|
|
54
|
+
uses: actions/setup-node@v3
|
|
47
55
|
with:
|
|
48
|
-
node-version:
|
|
56
|
+
node-version: 16
|
|
49
57
|
- name: yarn install
|
|
50
58
|
run: >
|
|
51
59
|
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
|
|
@@ -77,7 +85,11 @@ jobs:
|
|
|
77
85
|
runs-on: ubuntu-latest
|
|
78
86
|
steps:
|
|
79
87
|
- name: Checkout
|
|
80
|
-
uses: actions/checkout@
|
|
88
|
+
uses: actions/checkout@v3
|
|
89
|
+
- name: setup nodejs
|
|
90
|
+
uses: actions/setup-node@v3
|
|
91
|
+
with:
|
|
92
|
+
node-version: 16
|
|
81
93
|
|
|
82
94
|
- name: update documentation
|
|
83
95
|
uses: CoCreate-app/CoCreate-docs@master
|
|
@@ -18,11 +18,11 @@ jobs:
|
|
|
18
18
|
|
|
19
19
|
steps:
|
|
20
20
|
- name: Checkout
|
|
21
|
-
uses: actions/checkout@
|
|
21
|
+
uses: actions/checkout@v3
|
|
22
22
|
- name: setup nodejs
|
|
23
|
-
uses: actions/setup-node@
|
|
23
|
+
uses: actions/setup-node@v3
|
|
24
24
|
with:
|
|
25
|
-
node-version:
|
|
25
|
+
node-version: 16
|
|
26
26
|
- name: yarn install
|
|
27
27
|
run: >
|
|
28
28
|
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [1.10.4](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.10.3...v1.10.4) (2023-04-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fullscreen target updated to fullscreen fullscreen-target ([825a448](https://github.com/CoCreate-app/CoCreate-unique/commit/825a448520c2742635b261b35e25331e3260b74f))
|
|
7
|
+
* package-lock.json and pnpm-lock.yaml added to .gitignore ([88d183f](https://github.com/CoCreate-app/CoCreate-unique/commit/88d183f0b6b29ee29ca8034b1c8c53b634ba288e))
|
|
8
|
+
* removed toogle fullscreen icons. now using css content ([390d365](https://github.com/CoCreate-app/CoCreate-unique/commit/390d365bed77e7a94f07f234c39582e653a22744))
|
|
9
|
+
|
|
10
|
+
## [1.10.3](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.10.2...v1.10.3) (2023-04-24)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* updated worrkflows to v3 and node version 16 ([d706e20](https://github.com/CoCreate-app/CoCreate-unique/commit/d706e2009ab43cdc1096d4676105c7a117ff68f2))
|
|
16
|
+
* workflow node version updated 16 ([8bd9726](https://github.com/CoCreate-app/CoCreate-unique/commit/8bd9726538c03306cd18eaee1b0be2b35ae70ae6))
|
|
17
|
+
|
|
1
18
|
## [1.10.2](https://github.com/CoCreate-app/CoCreate-unique/compare/v1.10.1...v1.10.2) (2023-04-24)
|
|
2
19
|
|
|
3
20
|
|
package/docs/index.html
CHANGED
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
<a class="margin-right:10px" hidden id="eye-slash" show="#eye, #demo-preview" hide="#eye-slash" toggle="code-height" toggle-target="#demo-code"><i class="fas fa-eye-slash"></i></a>
|
|
114
114
|
<a class="margin-right:10px" id="code" show="#code-slash" hide="#code, #demo-code"><i class="fa fa-code"></i></a>
|
|
115
115
|
<a class="margin-right:10px" hidden id="code-slash" show="#code, #demo-code" hide="#code-slash"><i class="fas fa-code"></i></a>
|
|
116
|
-
<a class="margin-right:5px" fullscreen target="#playground"
|
|
116
|
+
<a class="margin-right:5px" fullscreen fullscreen-target="#playground"></a>
|
|
117
117
|
</div>
|
|
118
118
|
|
|
119
119
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/unique",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.4",
|
|
4
4
|
"description": "A simple unique component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"unique",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"webpack-log": "^3.0.1"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@cocreate/crud-client": "^1.19.
|
|
63
|
-
"@cocreate/docs": "^1.7.
|
|
62
|
+
"@cocreate/crud-client": "^1.19.9",
|
|
63
|
+
"@cocreate/docs": "^1.7.1",
|
|
64
64
|
"@cocreate/uuid": "^1.4.1"
|
|
65
65
|
}
|
|
66
66
|
}
|