@fvc/empty 1.0.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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Empty } from './Empty';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Empty.types';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import r from"react";import{Empty as t}from"antd";var e=function(){return e=Object.assign||function(r){for(var t,e=1,o=arguments.length;e<o;e++)for(var n in t=arguments[e])Object.prototype.hasOwnProperty.call(t,n)&&(r[n]=t[n]);return r},e.apply(this,arguments)};"function"==typeof SuppressedError&&SuppressedError;var o=function(o){var n=o.testId,E=function(r,t){var e={};for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&t.indexOf(o)<0&&(e[o]=r[o]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(o=Object.getOwnPropertySymbols(r);n<o.length;n++)t.indexOf(o[n])<0&&Object.prototype.propertyIsEnumerable.call(r,o[n])&&(e[o[n]]=r[o[n]])}return e}(o,["testId"]);return r.createElement(t,e({"data-testid":n},E))};o.PRESENTED_IMAGE_DEFAULT=t.PRESENTED_IMAGE_DEFAULT,o.PRESENTED_IMAGE_SIMPLE=t.PRESENTED_IMAGE_SIMPLE;export{o as Empty};
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fvc/empty",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"main": "./dist/lib/index.js",
|
|
5
|
+
"types": "./dist/lib/empty/src/index.d.ts",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/lib/index.js",
|
|
8
|
+
"dist/lib/empty",
|
|
9
|
+
"package.json"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/lib/index.js",
|
|
14
|
+
"types": "./dist/lib/empty/src/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./types/*": "./dist/lib/empty/src/types/*"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "rm -rf dist && eslint --config ../../eslint.config.js . && bunx tsc --noEmit && rollup -c ./rollup.config.mjs"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"react": "^18.0.0",
|
|
23
|
+
"antd": "^5.0.0"
|
|
24
|
+
}
|
|
25
|
+
}
|