@arch-cadre/ui 0.0.15 → 0.0.17
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.cjs +24 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +3 -3
- package/src/index.ts +2 -0
package/dist/index.cjs
CHANGED
|
@@ -141,6 +141,30 @@ Object.keys(_textarea).forEach(function (key) {
|
|
|
141
141
|
}
|
|
142
142
|
});
|
|
143
143
|
});
|
|
144
|
+
var _avatar = require("./components/avatar.cjs");
|
|
145
|
+
Object.keys(_avatar).forEach(function (key) {
|
|
146
|
+
if (key === "default" || key === "__esModule") return;
|
|
147
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
148
|
+
if (key in exports && exports[key] === _avatar[key]) return;
|
|
149
|
+
Object.defineProperty(exports, key, {
|
|
150
|
+
enumerable: true,
|
|
151
|
+
get: function () {
|
|
152
|
+
return _avatar[key];
|
|
153
|
+
}
|
|
154
|
+
});
|
|
155
|
+
});
|
|
156
|
+
var _skeleton = require("./components/skeleton.cjs");
|
|
157
|
+
Object.keys(_skeleton).forEach(function (key) {
|
|
158
|
+
if (key === "default" || key === "__esModule") return;
|
|
159
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
160
|
+
if (key in exports && exports[key] === _skeleton[key]) return;
|
|
161
|
+
Object.defineProperty(exports, key, {
|
|
162
|
+
enumerable: true,
|
|
163
|
+
get: function () {
|
|
164
|
+
return _skeleton[key];
|
|
165
|
+
}
|
|
166
|
+
});
|
|
167
|
+
});
|
|
144
168
|
var _utils = require("./lib/utils.cjs");
|
|
145
169
|
Object.keys(_utils).forEach(function (key) {
|
|
146
170
|
if (key === "default" || key === "__esModule") return;
|
package/dist/index.d.ts
CHANGED
|
@@ -10,4 +10,6 @@ export * from "./components/label";
|
|
|
10
10
|
export * from "./components/language-switcher";
|
|
11
11
|
export * from "./components/table";
|
|
12
12
|
export * from "./components/textarea";
|
|
13
|
+
export * from "./components/avatar";
|
|
14
|
+
export * from "./components/skeleton";
|
|
13
15
|
export * from "./lib/utils";
|
package/dist/index.mjs
CHANGED
|
@@ -10,4 +10,6 @@ export * from "./components/label.mjs";
|
|
|
10
10
|
export * from "./components/language-switcher.mjs";
|
|
11
11
|
export * from "./components/table.mjs";
|
|
12
12
|
export * from "./components/textarea.mjs";
|
|
13
|
+
export * from "./components/avatar.mjs";
|
|
14
|
+
export * from "./components/skeleton.mjs";
|
|
13
15
|
export * from "./lib/utils.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arch-cadre/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./package.json": "./package.json",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"dev": "unbuild --stub"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@arch-cadre/core": "^0.0.
|
|
56
|
-
"@arch-cadre/intl": "^0.0.
|
|
55
|
+
"@arch-cadre/core": "^0.0.17",
|
|
56
|
+
"@arch-cadre/intl": "^0.0.17",
|
|
57
57
|
"@hookform/resolvers": "^5.2.2",
|
|
58
58
|
"@iconify-json/solar": "^1.2.2",
|
|
59
59
|
"@iconify/react": "^6.0.0",
|
package/src/index.ts
CHANGED
|
@@ -11,4 +11,6 @@ export * from "./components/label";
|
|
|
11
11
|
export * from "./components/language-switcher";
|
|
12
12
|
export * from "./components/table";
|
|
13
13
|
export * from "./components/textarea";
|
|
14
|
+
export * from "./components/avatar";
|
|
15
|
+
export * from "./components/skeleton";
|
|
14
16
|
export * from "./lib/utils";
|