@react-foundry/simple-components 0.1.9 → 0.2.1
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 +4 -16
- package/package.json +10 -12
- package/dist/index.mjs +0 -4
package/dist/index.js
CHANGED
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.Tabs = exports.SimpleTable = exports.AnchorList = exports.Link = exports.A = exports.Anchor = void 0;
|
|
7
|
-
var anchor_1 = require("@react-foundry/anchor");
|
|
8
|
-
Object.defineProperty(exports, "Anchor", { enumerable: true, get: function () { return __importDefault(anchor_1).default; } });
|
|
9
|
-
Object.defineProperty(exports, "A", { enumerable: true, get: function () { return __importDefault(anchor_1).default; } });
|
|
10
|
-
Object.defineProperty(exports, "Link", { enumerable: true, get: function () { return __importDefault(anchor_1).default; } });
|
|
11
|
-
var anchor_list_1 = require("@react-foundry/anchor-list");
|
|
12
|
-
Object.defineProperty(exports, "AnchorList", { enumerable: true, get: function () { return __importDefault(anchor_list_1).default; } });
|
|
13
|
-
var simple_table_1 = require("@react-foundry/simple-table");
|
|
14
|
-
Object.defineProperty(exports, "SimpleTable", { enumerable: true, get: function () { return __importDefault(simple_table_1).default; } });
|
|
15
|
-
var tabs_1 = require("@react-foundry/tabs");
|
|
16
|
-
Object.defineProperty(exports, "Tabs", { enumerable: true, get: function () { return __importDefault(tabs_1).default; } });
|
|
1
|
+
export { default as Anchor, default as A, default as Link } from '@react-foundry/anchor';
|
|
2
|
+
export { default as AnchorList } from '@react-foundry/anchor-list';
|
|
3
|
+
export { default as SimpleTable } from '@react-foundry/simple-table';
|
|
4
|
+
export { default as Tabs } from '@react-foundry/tabs';
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-foundry/simple-components",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Simple React Foundry components.",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"sass": "assets/index.scss",
|
|
7
8
|
"exports": {
|
|
8
9
|
".": {
|
|
9
10
|
"sass": "./assets/index.scss",
|
|
10
11
|
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.
|
|
12
|
-
"
|
|
13
|
-
"default": "./dist/index.mjs"
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"react-components"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@react-foundry/anchor": "^0.1
|
|
27
|
-
"@react-foundry/anchor-list": "^0.1
|
|
28
|
-
"@react-foundry/
|
|
29
|
-
"@react-foundry/
|
|
26
|
+
"@react-foundry/anchor": "^0.2.1",
|
|
27
|
+
"@react-foundry/anchor-list": "^0.2.1",
|
|
28
|
+
"@react-foundry/simple-table": "^0.2.1",
|
|
29
|
+
"@react-foundry/tabs": "^0.2.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"jest": "30.3.0",
|
|
@@ -36,11 +36,9 @@
|
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
39
|
-
"build": "
|
|
40
|
-
"build:esm": "tsc -m es2022 && find dist -name '*.js' -exec sh -c 'mv \"$0\" \"${0%.js}.mjs\"' {} \\;",
|
|
41
|
-
"build:cjs": "tsc",
|
|
39
|
+
"build": "tsc",
|
|
42
40
|
"clean": "rm -rf dist tsconfig.tsbuildinfo"
|
|
43
41
|
},
|
|
44
|
-
"module": "dist/index.
|
|
42
|
+
"module": "dist/index.js",
|
|
45
43
|
"typings": "dist/index.d.ts"
|
|
46
44
|
}
|
package/dist/index.mjs
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export { default as Anchor, default as A, default as Link } from '@react-foundry/anchor';
|
|
2
|
-
export { default as AnchorList } from '@react-foundry/anchor-list';
|
|
3
|
-
export { default as SimpleTable } from '@react-foundry/simple-table';
|
|
4
|
-
export { default as Tabs } from '@react-foundry/tabs';
|