@cfx-dev/ui-components 0.0.6 → 0.0.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/{Combination-AG9vHdSx.js → Combination-Dj-a6dCZ.js} +546 -562
- package/dist/assets/global.css +1 -1
- package/dist/assets/themes.css +1 -1
- package/dist/components/Flyout/Flyout.js +1 -1
- package/dist/components/Layout/Scrollable/VirtualScrollable.js +93 -109
- package/dist/components/Overlay/Overlay.js +1 -1
- package/dist/components/Select/Select.js +271 -280
- package/dist/extends-Dk_bSU3E.js +13 -0
- package/dist/inheritsLoose-A8WKSWDx.js +11 -0
- package/dist/styles-scss/assets/images/bg2-blur.png +0 -0
- package/dist/styles-scss/assets/images/bgpat.png +0 -0
- package/dist/styles-scss/assets/images/checkered_dark.svg +7 -0
- package/dist/styles-scss/assets/images/checkered_light.svg +7 -0
- package/package.json +2 -11
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
function e() {
|
|
2
|
+
return e = Object.assign ? Object.assign.bind() : function(t) {
|
|
3
|
+
for (var n = 1; n < arguments.length; n++) {
|
|
4
|
+
var r = arguments[n];
|
|
5
|
+
for (var a in r)
|
|
6
|
+
({}).hasOwnProperty.call(r, a) && (t[a] = r[a]);
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
}, e.apply(null, arguments);
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
e as _
|
|
13
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
function e(t, o) {
|
|
2
|
+
return e = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(r, n) {
|
|
3
|
+
return r.__proto__ = n, r;
|
|
4
|
+
}, e(t, o);
|
|
5
|
+
}
|
|
6
|
+
function p(t, o) {
|
|
7
|
+
t.prototype = Object.create(o.prototype), t.prototype.constructor = t, e(t, o);
|
|
8
|
+
}
|
|
9
|
+
export {
|
|
10
|
+
p as _
|
|
11
|
+
};
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="2" height="2" viewBox="0 0 2 2" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0" y="1" width="1" height="1" style="fill: #161923" />
|
|
3
|
+
<rect x="1" y="0" width="1" height="1" style="fill: #161923" />
|
|
4
|
+
<rect x="0" y="0" width="1" height="1" style="fill: #161923" />
|
|
5
|
+
|
|
6
|
+
<rect x="1" y="1" width="1" height="1" style="fill: rgba(22, 25, 35, .05)" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="2" height="2" viewBox="0 0 2 2" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0" y="1" width="1" height="1" style="fill: #ffffff" />
|
|
3
|
+
<rect x="1" y="0" width="1" height="1" style="fill: #ffffff" />
|
|
4
|
+
<rect x="0" y="0" width="1" height="1" style="fill: #ffffff" />
|
|
5
|
+
|
|
6
|
+
<rect x="1" y="1" width="1" height="1" style="fill: rgba(255, 255, 255, .05)" />
|
|
7
|
+
</svg>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cfx-dev/ui-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.8",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/main.js",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"react-window": "^1.8.8"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@cfx-dev/eslint-config-ui": "^0.0.
|
|
46
|
+
"@cfx-dev/eslint-config-ui": "^0.0.11",
|
|
47
47
|
"@chromatic-com/storybook": "1.5.0",
|
|
48
48
|
"@storybook/addon-essentials": "^8.1.5",
|
|
49
49
|
"@storybook/addon-interactions": "^8.1.5",
|
|
@@ -53,21 +53,12 @@
|
|
|
53
53
|
"@storybook/react": "^8.1.5",
|
|
54
54
|
"@storybook/react-vite": "^8.1.5",
|
|
55
55
|
"@storybook/test": "^8.1.5",
|
|
56
|
-
"@stylistic/eslint-plugin": "^2.1.0",
|
|
57
56
|
"@types/node": "^20.12.13",
|
|
58
57
|
"@types/react": "^18.2.66",
|
|
59
58
|
"@types/react-dom": "^18.2.22",
|
|
60
59
|
"@types/react-window": "^1.8.8",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^7.8.0",
|
|
62
|
-
"@typescript-eslint/parser": "^7.8.0",
|
|
63
60
|
"@vitejs/plugin-react": "^4.2.1",
|
|
64
61
|
"eslint": "^8.57.0",
|
|
65
|
-
"eslint-config-airbnb": "^19.0.4",
|
|
66
|
-
"eslint-import-resolver-typescript": "^3.6.1",
|
|
67
|
-
"eslint-plugin-import": "^2.29.1",
|
|
68
|
-
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
69
|
-
"eslint-plugin-react": "^7.34.1",
|
|
70
|
-
"eslint-plugin-react-hooks": "^4.6.2",
|
|
71
62
|
"eslint-plugin-storybook": "^0.8.0",
|
|
72
63
|
"glob": "^10.4.1",
|
|
73
64
|
"sass": "^1.77.4",
|