@causw/design-system 0.0.11 → 0.0.13
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.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -7
- package/dist/index.mjs +0 -1
- package/package.json +3 -4
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
var core = require('@causw/core');
|
|
4
4
|
var tokens = require('@causw/tokens');
|
|
5
|
-
var components = require('@causw/components');
|
|
6
5
|
var icons = require('@causw/icons');
|
|
7
6
|
|
|
8
7
|
|
|
@@ -19,12 +18,6 @@ Object.keys(tokens).forEach(function (k) {
|
|
|
19
18
|
get: function () { return tokens[k]; }
|
|
20
19
|
});
|
|
21
20
|
});
|
|
22
|
-
Object.keys(components).forEach(function (k) {
|
|
23
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
24
|
-
enumerable: true,
|
|
25
|
-
get: function () { return components[k]; }
|
|
26
|
-
});
|
|
27
|
-
});
|
|
28
21
|
Object.keys(icons).forEach(function (k) {
|
|
29
22
|
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
30
23
|
enumerable: true,
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@causw/design-system",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "CAUSW Design System - Complete design system for CAU Software Community Service",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -16,9 +16,8 @@
|
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@causw/core": "0.0.
|
|
20
|
-
"@causw/tokens": "0.0.
|
|
21
|
-
"@causw/components": "0.0.9",
|
|
19
|
+
"@causw/core": "0.0.9",
|
|
20
|
+
"@causw/tokens": "0.0.10",
|
|
22
21
|
"@causw/icons": "0.0.8"
|
|
23
22
|
},
|
|
24
23
|
"repository": {
|