oziko-ui-kit 0.0.2 → 0.0.4
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/index.export.d.ts +1 -1
- package/package.json +3 -4
package/dist/index.export.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export { default as ArrayMinimizedInput } from "./components/atoms/inputs/minimi
|
|
|
45
45
|
export { default as BooleanMinimizedInput } from "./components/atoms/inputs/minimized/boolean/Boolean";
|
|
46
46
|
export { default as ColorMinimizedInput } from "./components/atoms/inputs/minimized/color/ColorMinimized";
|
|
47
47
|
export { default as DateMinimizedInput } from "./components/atoms/inputs/minimized/date/Date";
|
|
48
|
-
export { default as LocationMinimizedInput } from "components/atoms/inputs/minimized/location/Location";
|
|
48
|
+
export { default as LocationMinimizedInput } from "./components/atoms/inputs/minimized/location/Location";
|
|
49
49
|
export { default as MultipleSelectionMinimizedInput } from "./components/atoms/inputs/minimized/multi-selection/MultiSelection";
|
|
50
50
|
export { default as NumberMinimizedInput } from "./components/atoms/inputs/minimized/number/NumberMinimized";
|
|
51
51
|
export { default as ObjectMinimizedInput } from "./components/atoms/inputs/minimized/object/Object";
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oziko-ui-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
7
|
+
"types": "dist/index.export.d.ts",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
|
10
10
|
"dist/index.css"
|
|
@@ -45,8 +45,7 @@
|
|
|
45
45
|
"eject": "react-scripts eject",
|
|
46
46
|
"format": "prettier --write \"src/**/*.{ts,js,tsx,jsx,json,css,scss,html}\"",
|
|
47
47
|
"rollup-clean-css": "sed -i '' '/@charset/d' build/dist/index.css",
|
|
48
|
-
"rollup": "rollup -c && yarn run rollup-clean-css"
|
|
49
|
-
"publish": "npm publish"
|
|
48
|
+
"rollup": "rollup -c && yarn run rollup-clean-css"
|
|
50
49
|
},
|
|
51
50
|
"eslintConfig": {
|
|
52
51
|
"extends": [
|