pollination-react-io 1.7.2 → 1.8.0
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 +17 -0
- package/build/ComboFileSelector/ComboFileSelector.d.ts +4 -0
- package/build/ComboFileSelector/ComboFileSelector.types.d.ts +10 -0
- package/build/CreateStudy/CreateStudy.d.ts +1 -1
- package/build/RecipeInputsForm/RecipeInputsForm.d.ts +1 -0
- package/build/RecipeInputsForm/RecipeInputsForm.types.d.ts +4 -3
- package/build/atoms/Button/Button.d.ts +2 -1
- package/build/atoms/ComboBox/ComboBox.d.ts +1 -0
- package/build/atoms/Dropdown/Dropdown.d.ts +1 -0
- package/build/atoms/FileInput/FileInput.d.ts +1 -0
- package/build/atoms/RadioList/RadioList.d.ts +1 -0
- package/build/atoms/SettingsButton/index.d.ts +1 -0
- package/build/atoms/TextInput/TextInput.d.ts +1 -0
- package/build/atoms/Tooltip/index.d.ts +1 -0
- package/build/index.d.ts +1 -0
- package/build/index.esm.js +912 -288
- package/build/index.esm.js.map +1 -1
- package/build/index.js +912 -287
- package/build/index.js.map +1 -1
- package/package.json +10 -6
- package/build/variables.css +0 -12
package/package.json
CHANGED
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"Library",
|
|
30
30
|
"Rollup",
|
|
31
31
|
"Typescript",
|
|
32
|
+
"Sass",
|
|
32
33
|
"Storybook"
|
|
33
34
|
],
|
|
34
35
|
"author": "Pollination",
|
|
@@ -41,6 +42,11 @@
|
|
|
41
42
|
"react": ">=16.8.0",
|
|
42
43
|
"react-dom": ">=16.8.0"
|
|
43
44
|
},
|
|
45
|
+
"sass": {
|
|
46
|
+
"includePaths": [
|
|
47
|
+
"./node_modules"
|
|
48
|
+
]
|
|
49
|
+
},
|
|
44
50
|
"devDependencies": {
|
|
45
51
|
"@babel/core": "^7.15.0",
|
|
46
52
|
"@rollup/plugin-commonjs": "^17.1.0",
|
|
@@ -72,23 +78,21 @@
|
|
|
72
78
|
"html-webpack-plugin": "^5.5.0",
|
|
73
79
|
"identity-obj-proxy": "^3.0.0",
|
|
74
80
|
"jest": "^26.6.3",
|
|
75
|
-
"postcss": "^8.4.16",
|
|
76
|
-
"postcss-loader": "^7.0.1",
|
|
77
81
|
"react": "^16.14.0",
|
|
78
82
|
"react-dom": "^16.14.0",
|
|
79
83
|
"rollup": "^2.56.3",
|
|
80
84
|
"rollup-plugin-copy": "^3.4.0",
|
|
81
|
-
"rollup-plugin-import-css": "^3.0.3",
|
|
82
85
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
83
86
|
"rollup-plugin-postcss": "^4.0.2",
|
|
84
87
|
"rollup-plugin-svg": "^2.0.0",
|
|
85
88
|
"rollup-plugin-typescript2": "^0.29.0",
|
|
86
|
-
"sass": "^1.
|
|
87
|
-
"sass-loader": "^
|
|
89
|
+
"sass": "^1.52.1",
|
|
90
|
+
"sass-loader": "^10.1.1",
|
|
88
91
|
"style-loader": "^2.0.0",
|
|
89
92
|
"ts-jest": "^26.5.6",
|
|
90
93
|
"tslib": "^2.4.0",
|
|
91
94
|
"typescript": "^4.4.2",
|
|
95
|
+
"typescript-plugin-css-modules": "^3.4.0",
|
|
92
96
|
"webpack": "^5.73.0"
|
|
93
97
|
},
|
|
94
98
|
"dependencies": {
|
|
@@ -113,5 +117,5 @@
|
|
|
113
117
|
"react-tabs": "^4.2.1",
|
|
114
118
|
"slugify": "^1.6.5"
|
|
115
119
|
},
|
|
116
|
-
"version": "1.
|
|
120
|
+
"version": "1.8.0"
|
|
117
121
|
}
|
package/build/variables.css
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
@import "../../node_modules/@radix-ui/colors/slate.css";
|
|
2
|
-
|
|
3
|
-
:root {
|
|
4
|
-
--background: #FFFAEE;
|
|
5
|
-
--primary: #1890ff;
|
|
6
|
-
--primary2: #40a9ff;
|
|
7
|
-
--primary1: #cceefe;
|
|
8
|
-
--primary0: #e6f7ff;
|
|
9
|
-
--secondary: #fff566;
|
|
10
|
-
|
|
11
|
-
--font: -apple-system, BlinkMacSystemFont, 'avenir next', avenir, helvetica, 'helvetica neue', ubuntu, roboto, noto, 'segoe ui', arial, sans-serif;
|
|
12
|
-
}
|