@cloudtower/eagle 0.27.49 → 0.27.51

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.
@@ -148,6 +148,7 @@ $purple-a20-50:rgba($purple-50,20%);
148
148
  $purple-a16-50:rgba($purple-50,16%);
149
149
  $purple-a10-50:rgba($purple-50,10%);
150
150
 
151
+
151
152
  $fills-opaque-primary-light: $white;
152
153
  $fills-opaque-secondary-light: $gray-20;
153
154
  $fills-opaque-terdiary-light: $gray-30;
@@ -546,6 +547,7 @@ $eagle-table-form-header-index: 2;
546
547
  $table-header-index: 3;
547
548
  $table-drag-index: 9;
548
549
  $table-action-column-index:10;
550
+
549
551
  $text-neutral-primary: #00122E;
550
552
  $text-neutral-secondary: #2C3852BF;
551
553
  $text-neutral-tertiary: #2C385299;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudtower/eagle",
3
- "version": "0.27.49",
3
+ "version": "0.27.51",
4
4
  "main": "dist/umd/index.js",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -27,8 +27,8 @@
27
27
  "sync:color": "node tools/fetch-figma-color.js"
28
28
  },
29
29
  "dependencies": {
30
- "@cloudtower/icons-react": "0.27.49",
31
- "@cloudtower/parrot": "0.27.49",
30
+ "@cloudtower/icons-react": "0.27.51",
31
+ "@cloudtower/parrot": "0.27.51",
32
32
  "@cloudtower/rc-notification": "^4.6.1",
33
33
  "@linaria/core": "^4.2.2",
34
34
  "@linaria/react": "^4.3.0",
@@ -51,7 +51,7 @@
51
51
  "@babel/preset-env": "^7.22.15",
52
52
  "@babel/preset-react": "^7.22.15",
53
53
  "@babel/preset-typescript": "^7.22.15",
54
- "@cloudtower/icons": "0.27.49",
54
+ "@cloudtower/icons": "0.27.51",
55
55
  "@linaria/babel-preset": "4.4.3",
56
56
  "@linaria/rollup": "^4.1.5",
57
57
  "@linaria/vite": "^4.2.5",
@@ -88,6 +88,7 @@
88
88
  "jsdom": "^20.0.1",
89
89
  "less": "^4.1.3",
90
90
  "list-selectors": "^2.0.1",
91
+ "lorem-ipsum": "^2.0.8",
91
92
  "mini-css-extract-plugin": "^2.7.2",
92
93
  "mockdate": "^3.0.5",
93
94
  "postcss": "^8.4.20",
@@ -116,5 +117,5 @@
116
117
  "vite": "^3.1.7",
117
118
  "vitest": "^0.24.1"
118
119
  },
119
- "gitHead": "4b29f08663e78e7a3acf49c64dbe080c81cf794e"
120
+ "gitHead": "5bc8dc1033e9c4532cbef1fd0c3cf4bf74b87e1e"
120
121
  }
@@ -1,6 +0,0 @@
1
- import DonutChart from "../../../src/coreX/DonutChart";
2
- import type { Meta, StoryObj } from "@storybook/react";
3
- declare const meta: Meta<typeof DonutChart>;
4
- export default meta;
5
- type Story = StoryObj<typeof DonutChart>;
6
- export declare const Demo: Story;