@skedulo/sked-ui 19.17.0 → 19.18.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/dist/components/icon/iconPaths.d.ts +1 -0
- package/dist/index.js +17 -0
- package/package.json +4 -1
package/dist/index.js
CHANGED
|
@@ -10318,6 +10318,22 @@ thread.defaultProps = {
|
|
|
10318
10318
|
height: "20",
|
|
10319
10319
|
viewBox: "0 0 20 20"
|
|
10320
10320
|
};
|
|
10321
|
+
|
|
10322
|
+
var jobFill = function jobFill(props) {
|
|
10323
|
+
return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("svg", props, react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("g", null, react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("path", {
|
|
10324
|
+
fillRule: "evenodd",
|
|
10325
|
+
clipRule: "evenodd",
|
|
10326
|
+
d: "M6.5 21.875a.5.5 0 0 1-.5-.5v-16a.5.5 0 0 1 .5-.5h.25a.5.5 0 0 0 .5-.5v-1.25a3 3 0 0 1 3-3h3.5a3 3 0 0 1 3 3v1.25a.5.5 0 0 0 .5.5h.25a.5.5 0 0 1 .5.5v16a.5.5 0 0 1-.5.5h-11zm3.75-19.75a1 1 0 0 0-1 1v1.25a.5.5 0 0 0 .5.5h4.5a.5.5 0 0 0 .5-.5v-1.25a1 1 0 0 0-1-1h-3.5z"
|
|
10327
|
+
}), react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("path", {
|
|
10328
|
+
d: "M4 5.375a.5.5 0 0 0-.5-.5 3.5 3.5 0 0 0-3.5 3.5v10a3.5 3.5 0 0 0 3.5 3.5.5.5 0 0 0 .5-.5v-16zM20.5 4.875a.5.5 0 0 0-.5.5v16a.5.5 0 0 0 .5.5 3.5 3.5 0 0 0 3.5-3.5v-10a3.5 3.5 0 0 0-3.5-3.5z"
|
|
10329
|
+
})));
|
|
10330
|
+
};
|
|
10331
|
+
|
|
10332
|
+
jobFill.defaultProps = {
|
|
10333
|
+
width: "24",
|
|
10334
|
+
height: "24",
|
|
10335
|
+
viewBox: "0 0 24 24"
|
|
10336
|
+
};
|
|
10321
10337
|
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
10322
10338
|
actions: actions,
|
|
10323
10339
|
activity: activity,
|
|
@@ -10375,6 +10391,7 @@ thread.defaultProps = {
|
|
|
10375
10391
|
infoOutline: infoOutline,
|
|
10376
10392
|
jobDependency: jobDependency,
|
|
10377
10393
|
jobFields: jobFields,
|
|
10394
|
+
jobFill: jobFill,
|
|
10378
10395
|
jobs: jobs,
|
|
10379
10396
|
location: location,
|
|
10380
10397
|
locked: locked,
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skedulo/sked-ui",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.18.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": "^12 || ^14"
|
|
9
|
+
},
|
|
7
10
|
"scripts": {
|
|
8
11
|
"bootstrap": "rm -rf node_modules && yarn install --pure-lockfile --peer",
|
|
9
12
|
"clean": "rm -rf dist && rm -rf storybook-static",
|