@availity/element 0.1.0 → 0.1.2
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/CHANGELOG.md +9 -4
- package/dist/index.d.ts +1 -0
- package/dist/index.js +20 -0
- package/dist/index.mjs +2 -0
- package/package.json +4 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.2](https://github.com/Availity/element/compare/@availity/element@0.1.1...@availity/element@0.1.2) (2023-02-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* update exports ([af3f9f6](https://github.com/Availity/element/commit/af3f9f6715132b020bf96881dbc70906738bcda7))
|
|
11
|
+
|
|
12
|
+
## [0.1.1](https://github.com/Availity/element/compare/@availity/element@0.1.0...@availity/element@0.1.1) (2023-02-22)
|
|
13
|
+
|
|
5
14
|
## 0.1.0 (2023-02-21)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -17,7 +26,3 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s
|
|
|
17
26
|
|
|
18
27
|
* **element:** create package ([89750a3](https://github.com/Availity/element/commit/89750a3b1750e19e9a6b3078cb34f50356fd8237))
|
|
19
28
|
* **element:** create package ([0117531](https://github.com/Availity/element/commit/011753187798d7a4d67ae04b00a6ef44e59be3ea))
|
|
20
|
-
|
|
21
|
-
# Changelog
|
|
22
|
-
|
|
23
|
-
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@availity/theme-provider';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
16
|
+
|
|
17
|
+
// src/index.ts
|
|
18
|
+
var src_exports = {};
|
|
19
|
+
module.exports = __toCommonJS(src_exports);
|
|
20
|
+
__reExport(src_exports, require("@availity/theme-provider"), module.exports);
|
package/dist/index.mjs
ADDED
package/package.json
CHANGED
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/element",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"browser": "./dist/index.js",
|
|
4
5
|
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
5
7
|
"types": "./dist/index.d.ts",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"import": "./dist/index.mjs",
|
|
9
|
-
"require": "./dist/index.js"
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
8
|
"scripts": {
|
|
13
9
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
14
10
|
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
|
|
15
11
|
"clean": "rm -rf dist",
|
|
16
12
|
"clean:nm": "rm -rf node_modules",
|
|
17
|
-
"bundlesize": "bundlesize",
|
|
18
13
|
"publish": "yarn npm publish --tolerate-republish --access public",
|
|
19
14
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
20
15
|
},
|
|
21
16
|
"dependencies": {
|
|
22
|
-
"@availity/theme-provider": "0.1.
|
|
17
|
+
"@availity/theme-provider": "0.1.2"
|
|
23
18
|
},
|
|
24
19
|
"devDependencies": {
|
|
25
20
|
"react": "18.2.0",
|