@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 CHANGED
@@ -1,4 +1,3 @@
1
1
  export * from '@causw/core';
2
2
  export * from '@causw/tokens';
3
- export * from '@causw/components';
4
3
  export * from '@causw/icons';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
1
  export * from '@causw/core';
2
2
  export * from '@causw/tokens';
3
- export * from '@causw/components';
4
3
  export * from '@causw/icons';
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
@@ -1,4 +1,3 @@
1
1
  export * from '@causw/core';
2
2
  export * from '@causw/tokens';
3
- export * from '@causw/components';
4
3
  export * from '@causw/icons';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@causw/design-system",
3
- "version": "0.0.11",
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.6",
20
- "@causw/tokens": "0.0.9",
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": {