@bigbinary/neeto-rules-frontend 0.0.66
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 +423 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/main.css +2 -0
- package/dist/main.css.map +1 -0
- package/package.json +139 -0
package/dist/main.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/stylesheets/components/_error-boundary.scss","../src/stylesheets/abstracts/_neeto-ui-variables.scss","../src/stylesheets/main.scss"],"names":[],"mappings":"AAAA,8BAIE,kBAAA,CAGA,wBCKkB,CDNlB,iBCeoB,CDlBpB,YAAA,CAEA,QAAA,CAHA,kBAAA,CADA,gBEOF,CFCE,gCACE,aECJ","file":"main.css","sourcesContent":[".neeto-filters-error-boundary {\n padding: 8px 20px;\n margin-bottom: 12px;\n display: flex;\n align-items: center;\n gap: 16px;\n border-radius: $neeto-ui-rounded-sm;\n background-color: $neeto-ui-gray-100;\n\n p {\n color: $neeto-ui-gray-800;\n }\n}\n","// Color pelette\n\n// primary\n$neeto-ui-white: #ffffff;\n// grays\n$neeto-ui-gray-800: #2f3941;\n$neeto-ui-gray-700: #49545c;\n$neeto-ui-gray-600: #68737d;\n$neeto-ui-gray-500: #87929d;\n$neeto-ui-gray-400: #c2c8cc;\n$neeto-ui-gray-300: #d8dcde;\n$neeto-ui-gray-200: #e9ebed;\n$neeto-ui-gray-100: #f8f9f9;\n// pastels\n$neeto-ui-pastel-blue: #eaf3fc;\n\n// Font weights\n$neeto-ui-font-semibold: 600;\n$neeto-ui-font-normal: 400;\n\n// Border Radius\n$neeto-ui-rounded-sm: 2px;\n\n// Box Shadows\n$neeto-ui-shadow-s: 0px 3px 12px -1px rgba(28, 52, 84, 0.12),\n 0px 2px 4px -1px rgba(28, 55, 90, 0.08);\n\n// Transition\n$neeto-ui-transition: all 0.3s ease-in-out;\n",".neeto-filters-error-boundary {\n padding: 8px 20px;\n margin-bottom: 12px;\n display: flex;\n align-items: center;\n gap: 16px;\n border-radius: 2px;\n background-color: #f8f9f9;\n}\n.neeto-filters-error-boundary p {\n color: #2f3941;\n}"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bigbinary/neeto-rules-frontend",
|
|
3
|
+
"version": "0.0.66",
|
|
4
|
+
"description": "Manage rules across neeto products.",
|
|
5
|
+
"author": "BigBinary",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": "https://github.com/bigbinary/neeto-rules-frontend",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18.12"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "NODE_ENV=production rollup -c --environment production",
|
|
14
|
+
"dev": "(trap 'kill 0' SIGINT; yarn start & yarn server)",
|
|
15
|
+
"prepare": "husky install",
|
|
16
|
+
"server": "node example/db",
|
|
17
|
+
"start": "NODE_ENV=development webpack-dev-server --open --mode development --config webpack.dev.config.js"
|
|
18
|
+
},
|
|
19
|
+
"lint-staged": {
|
|
20
|
+
"{src,example}/**/*.{js,jsx,json}": [
|
|
21
|
+
"prettier --write",
|
|
22
|
+
"eslint --fix"
|
|
23
|
+
],
|
|
24
|
+
"{package.json,.eslintrc.js,.prettierrc.js}": [
|
|
25
|
+
"prettier --write",
|
|
26
|
+
"eslint --fix"
|
|
27
|
+
],
|
|
28
|
+
".eslint-rules/**/*": [
|
|
29
|
+
"prettier --write",
|
|
30
|
+
"eslint --fix"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@babel/core": "^7.13.15",
|
|
35
|
+
"@babel/eslint-parser": "^7.17.0",
|
|
36
|
+
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
|
37
|
+
"@babel/preset-env": "^7.13.15",
|
|
38
|
+
"@babel/preset-react": "^7.13.13",
|
|
39
|
+
"@bigbinary/neeto-commons-frontend": "^2.0.7",
|
|
40
|
+
"@bigbinary/neeto-editor": "^1.4.1",
|
|
41
|
+
"@bigbinary/neeto-icons": "^1.9.1",
|
|
42
|
+
"@bigbinary/neetoui": "^4.1.43",
|
|
43
|
+
"@honeybadger-io/react": "^2.1.0",
|
|
44
|
+
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
|
|
45
|
+
"@rails/activestorage": "^7.0.4",
|
|
46
|
+
"@rollup/plugin-alias": "3.1.9",
|
|
47
|
+
"@rollup/plugin-babel": "5.3.1",
|
|
48
|
+
"@rollup/plugin-commonjs": "22.0.1",
|
|
49
|
+
"@rollup/plugin-html": "0.2.4",
|
|
50
|
+
"@rollup/plugin-json": "4.1.0",
|
|
51
|
+
"@rollup/plugin-node-resolve": "13.3.0",
|
|
52
|
+
"@rollup/plugin-replace": "4.0.0",
|
|
53
|
+
"@svgr/rollup": "^6.2.1",
|
|
54
|
+
"antd": "^4.23.5",
|
|
55
|
+
"autoprefixer": "^9",
|
|
56
|
+
"axios": "^0.27.2",
|
|
57
|
+
"babel-loader": "^8.2.2",
|
|
58
|
+
"classnames": "^2.3.1",
|
|
59
|
+
"clean-webpack-plugin": "^4.0.0",
|
|
60
|
+
"css-loader": "^4.3.0",
|
|
61
|
+
"css-minimizer-webpack-plugin": "1.3.0",
|
|
62
|
+
"dayjs": "^1.11.2",
|
|
63
|
+
"eslint": "^8.12.0",
|
|
64
|
+
"eslint-config-prettier": "^8.5.0",
|
|
65
|
+
"eslint-plugin-cypress": "^2.12.1",
|
|
66
|
+
"eslint-plugin-import": "^2.25.4",
|
|
67
|
+
"eslint-plugin-jam3": "^0.2.3",
|
|
68
|
+
"eslint-plugin-json": "^3.1.0",
|
|
69
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
70
|
+
"eslint-plugin-promise": "^6.0.0",
|
|
71
|
+
"eslint-plugin-react": "^7.29.4",
|
|
72
|
+
"eslint-plugin-react-hooks": "4.2.1-alpha-13455d26d-20211104",
|
|
73
|
+
"eslint-plugin-unused-imports": "^2.0.0",
|
|
74
|
+
"file-loader": "^6.1.1",
|
|
75
|
+
"formik": "^2.2.9",
|
|
76
|
+
"html-loader": "^1.3.1",
|
|
77
|
+
"html-webpack-plugin": "^4.5.0",
|
|
78
|
+
"husky": "^7.0.0",
|
|
79
|
+
"i18next": "^21.8.2",
|
|
80
|
+
"i18next-browser-languagedetector": "^6.1.4",
|
|
81
|
+
"mini-css-extract-plugin": "^2.6.1",
|
|
82
|
+
"postcss": "^7",
|
|
83
|
+
"postcss-import": "^12.0.1",
|
|
84
|
+
"postcss-loader": "^4.0.3",
|
|
85
|
+
"postcss-preset-env": "^6.7.0",
|
|
86
|
+
"prettier": "^2.6.1",
|
|
87
|
+
"prop-types": "^15.8.1",
|
|
88
|
+
"ramda": "^0.28.0",
|
|
89
|
+
"react": "17.0.2",
|
|
90
|
+
"react-dom": "17.0.2",
|
|
91
|
+
"react-i18next": "^11.16.9",
|
|
92
|
+
"react-refresh": "^0.11.0",
|
|
93
|
+
"react-router-dom": "5.2.0",
|
|
94
|
+
"react-router-nav-prompt": "0.4.1",
|
|
95
|
+
"react-scripts": "4.0.3",
|
|
96
|
+
"react-select": "^5.2.1",
|
|
97
|
+
"react-toastify": "8.0.2",
|
|
98
|
+
"rollup": "2.75.7",
|
|
99
|
+
"rollup-plugin-analyzer": "4.0.0",
|
|
100
|
+
"rollup-plugin-bundle-html": "0.2.2",
|
|
101
|
+
"rollup-plugin-cleaner": "1.0.0",
|
|
102
|
+
"rollup-plugin-generate-html-template": "1.7.0",
|
|
103
|
+
"rollup-plugin-livereload": "2.0.5",
|
|
104
|
+
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
105
|
+
"rollup-plugin-polyfill-node": "0.9.0",
|
|
106
|
+
"rollup-plugin-serve": "2.0.0",
|
|
107
|
+
"rollup-plugin-styles": "4.0.0",
|
|
108
|
+
"rollup-plugin-terser": "7.0.2",
|
|
109
|
+
"sass": "^1.26.11",
|
|
110
|
+
"sass-loader": "^10.0.2",
|
|
111
|
+
"style-loader": "^2.0.0",
|
|
112
|
+
"webpack": "^5.74.0",
|
|
113
|
+
"webpack-cli": "^5.0.1",
|
|
114
|
+
"webpack-dev-server": "^4.11.0",
|
|
115
|
+
"yup": "^0.32.11"
|
|
116
|
+
},
|
|
117
|
+
"peerDependencies": {
|
|
118
|
+
"@bigbinary/neeto-commons-frontend": "latest",
|
|
119
|
+
"@bigbinary/neeto-editor": "latest",
|
|
120
|
+
"@bigbinary/neeto-icons": "latest",
|
|
121
|
+
"@bigbinary/neetoui": "latest",
|
|
122
|
+
"@honeybadger-io/react": "^2.1.0",
|
|
123
|
+
"@rails/activestorage": "^7.0.4",
|
|
124
|
+
"axios": "^0.27.2",
|
|
125
|
+
"classnames": "^2.3.1",
|
|
126
|
+
"dayjs": "^1.11.0",
|
|
127
|
+
"formik": "^2.2.9",
|
|
128
|
+
"ramda": "^0.27.1",
|
|
129
|
+
"react": "17.0.2",
|
|
130
|
+
"react-dom": "17.0.2",
|
|
131
|
+
"yup": "^0.32.11"
|
|
132
|
+
},
|
|
133
|
+
"files": [
|
|
134
|
+
"dist"
|
|
135
|
+
],
|
|
136
|
+
"dependencies": {
|
|
137
|
+
"react-hotkeys-hook": "^3.4.7"
|
|
138
|
+
}
|
|
139
|
+
}
|