@bigbinary/neeto-custom-domains-frontend 1.1.0 → 1.2.0-beta2
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/README.md +70 -91
- package/app/javascript/src/translations/en.json +19 -10
- package/dist/CustomDomainDashboard.js +40 -905
- package/dist/CustomDomainDashboard.js.map +1 -1
- package/dist/cjs/CustomDomainDashboard.js +44 -955
- package/dist/cjs/CustomDomainDashboard.js.map +1 -1
- package/dist/cjs/index.js +539 -32
- package/dist/cjs/index.js.map +1 -1
- package/dist/index-6d441e24.js +959 -0
- package/dist/index-6d441e24.js.map +1 -0
- package/dist/index-a5a14202.js +903 -0
- package/dist/index-a5a14202.js.map +1 -0
- package/dist/index.js +500 -31
- package/dist/index.js.map +1 -1
- package/package.json +16 -18
- package/types.d.ts +3 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-custom-domains-frontend",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "A repo acts as the source of truth for the new
|
|
3
|
+
"version": "1.2.0-beta2",
|
|
4
|
+
"description": "A repo acts as the source of truth for the new nanos structure, configs, data etc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"homepage": "https://github.com/bigbinary/neeto-custom-domains-nano",
|
|
7
7
|
"bugs": {
|
|
@@ -39,16 +39,14 @@
|
|
|
39
39
|
"./**/*.rb": [
|
|
40
40
|
"bundle exec rubocop -a --force-exclusion"
|
|
41
41
|
],
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"eslint --fix"
|
|
42
|
+
"{Gemfile,Rakefile}": [
|
|
43
|
+
"bundle exec rubocop -a --force-exclusion"
|
|
45
44
|
],
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"eslint --fix"
|
|
45
|
+
"./**/app/views/**/*.html.erb": [
|
|
46
|
+
"bundle exec erblint --lint-all --format compact -a"
|
|
49
47
|
],
|
|
50
|
-
"{
|
|
51
|
-
"
|
|
48
|
+
"{package.json,.prettierrc.js}": [
|
|
49
|
+
"prettier --write"
|
|
52
50
|
]
|
|
53
51
|
},
|
|
54
52
|
"devDependencies": {
|
|
@@ -63,11 +61,11 @@
|
|
|
63
61
|
"@bigbinary/eslint-plugin-neeto": "1.5.4",
|
|
64
62
|
"@bigbinary/neeto-audit-frontend": "2.0.15",
|
|
65
63
|
"@bigbinary/neeto-cist": "1.0.12",
|
|
66
|
-
"@bigbinary/neeto-commons-frontend": "4.
|
|
64
|
+
"@bigbinary/neeto-commons-frontend": "4.6.3",
|
|
67
65
|
"@bigbinary/neeto-filters-frontend": "4.3.4",
|
|
68
|
-
"@bigbinary/neeto-icons": "1.20.
|
|
69
|
-
"@bigbinary/neeto-molecules": "3.7.
|
|
70
|
-
"@bigbinary/neetoui": "8.2.
|
|
66
|
+
"@bigbinary/neeto-icons": "1.20.8",
|
|
67
|
+
"@bigbinary/neeto-molecules": "3.7.11",
|
|
68
|
+
"@bigbinary/neetoui": "8.2.18",
|
|
71
69
|
"@emotion/is-prop-valid": "1.2.0",
|
|
72
70
|
"@faker-js/faker": "8.2.0",
|
|
73
71
|
"@honeybadger-io/js": "^6.4.1",
|
|
@@ -169,11 +167,11 @@
|
|
|
169
167
|
"peerDependencies": {
|
|
170
168
|
"@babel/runtime": "7.19.0",
|
|
171
169
|
"@bigbinary/neeto-cist": "1.0.12",
|
|
172
|
-
"@bigbinary/neeto-commons-frontend": "4.
|
|
170
|
+
"@bigbinary/neeto-commons-frontend": "4.6.3",
|
|
173
171
|
"@bigbinary/neeto-filters-frontend": "4.3.4",
|
|
174
|
-
"@bigbinary/neeto-icons": "1.20.
|
|
175
|
-
"@bigbinary/neeto-molecules": "3.7.
|
|
176
|
-
"@bigbinary/neetoui": "8.2.
|
|
172
|
+
"@bigbinary/neeto-icons": "1.20.8",
|
|
173
|
+
"@bigbinary/neeto-molecules": "3.7.11",
|
|
174
|
+
"@bigbinary/neetoui": "8.2.18",
|
|
177
175
|
"@honeybadger-io/js": "^6.4.1",
|
|
178
176
|
"@honeybadger-io/react": "^6.1.3",
|
|
179
177
|
"@tanstack/react-query": "5.40.0",
|