@sikka/hawa 0.0.283 → 0.0.284
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/hawa-actions.yml +1 -1
- package/.github/workflows/hawa-publish-push.yml +19 -21
- package/dist/styles.css +0 -3
- package/es/index.es.js +2 -2
- package/lib/index.js +2 -2
- package/package.json +2 -1
- package/src/elements/HawaPhoneInput.tsx +7 -5
- package/src/elements/HawaSelect.tsx +7 -5
- package/src/elements/HawaSnackbar.tsx +2 -1
- package/src/styles.css +0 -3
- package/src/translations/ar.json +22 -0
- package/src/translations/en.json +22 -0
- package/src/translations/i18n.js +15 -0
|
@@ -4,10 +4,8 @@
|
|
|
4
4
|
name: Hawa Build, Deploy, and Publish on Push
|
|
5
5
|
|
|
6
6
|
on:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
release:
|
|
10
|
-
types: [created]
|
|
7
|
+
push:
|
|
8
|
+
branches: [main]
|
|
11
9
|
|
|
12
10
|
jobs:
|
|
13
11
|
build:
|
|
@@ -28,23 +26,23 @@ jobs:
|
|
|
28
26
|
env:
|
|
29
27
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
30
28
|
|
|
31
|
-
# Deployment job
|
|
32
|
-
deploy:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
29
|
+
# # Deployment job
|
|
30
|
+
# deploy:
|
|
31
|
+
# runs-on: ubuntu-latest
|
|
32
|
+
# environment:
|
|
33
|
+
# name: github-pages
|
|
34
|
+
# url: ${{ steps.deployment.outputs.page_url }}
|
|
35
|
+
# needs: build
|
|
36
|
+
# steps:
|
|
37
|
+
# - name: Deploy to GitHub Pages
|
|
38
|
+
# id: deployment
|
|
39
|
+
# uses: actions/deploy-pages@v2
|
|
40
|
+
# # with:
|
|
41
|
+
# # branch: gh-pages
|
|
42
|
+
# # folder: docs
|
|
43
|
+
# # - name: Deploy to GitHub Pages
|
|
44
|
+
# # id: deployment
|
|
45
|
+
# # uses: actions/deploy-pages@v2
|
|
48
46
|
|
|
49
47
|
# Publishing to NPM
|
|
50
48
|
publish:
|