quix-ui 1.1.6 → 1.1.8
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.js +3 -4
- package/dist/types/index.d.ts +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var require$$0 = require('react');
|
|
1
|
+
import require$$0 from 'react';
|
|
4
2
|
|
|
5
3
|
var jsxRuntime = {exports: {}};
|
|
6
4
|
|
|
@@ -1403,5 +1401,6 @@ function Buttons(props) {
|
|
|
1403
1401
|
}, onClick: onClick, children: label });
|
|
1404
1402
|
}
|
|
1405
1403
|
|
|
1406
|
-
|
|
1404
|
+
export { Buttons, ViewContainer };
|
|
1405
|
+
Buttons;
|
|
1407
1406
|
exports.ViewContainer = ViewContainer;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export { default as ViewContainer } from './view/ViewContainer';
|
|
2
|
+
export { default as Buttons } from './components/Buttons/Buttons';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quix-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "This is a react component library.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"jest": "^30.2.0",
|
|
81
81
|
"jest-environment-jsdom": "^30.2.0",
|
|
82
82
|
"jiti": "^2.6.1",
|
|
83
|
+
"quix-ui": "^1.1.6",
|
|
83
84
|
"react": "^18.3.1",
|
|
84
85
|
"react-dom": "^18.3.1",
|
|
85
86
|
"rimraf": "^6.1.2",
|
|
@@ -98,7 +99,6 @@
|
|
|
98
99
|
"react-dom": "^16"
|
|
99
100
|
},
|
|
100
101
|
"dependencies": {
|
|
101
|
-
"fs": "^0.0.1-security"
|
|
102
|
-
"quix-ui": "^1.1.5"
|
|
102
|
+
"fs": "^0.0.1-security"
|
|
103
103
|
}
|
|
104
104
|
}
|