@kumori/aurora-wui-components 0.0.0 → 0.0.1

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.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './components/aurora-button.js';
2
+ export * from './styles/aurora-theme.js';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC"}
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './components/aurora-button.js';
2
+ export * from './styles/aurora-theme.js';
2
3
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC"}
@@ -0,0 +1,8 @@
1
+ export declare const auroraTheme: import("lit").CSSResult;
2
+ export declare const STATUS_COLORS: {
3
+ readonly HEALTHY: "var(--axebow-success)";
4
+ readonly ERROR: "var(--axebow-error)";
5
+ readonly WARNING: "var(--axebow-warning)";
6
+ readonly DEFAULT: "var(--axebow-gray)";
7
+ };
8
+ //# sourceMappingURL=aurora-theme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aurora-theme.d.ts","sourceRoot":"","sources":["../../src/styles/aurora-theme.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,yBAkCvB,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;CAKhB,CAAC"}
@@ -0,0 +1,43 @@
1
+ import { css } from 'lit';
2
+ export const auroraTheme = css `
3
+ .theme {
4
+ --axebow-primary: var(--color-primary, #34495e);
5
+ --axebow-primary-light: var(--color-primary-light, #b4cded);
6
+ --axebow-tertiary: var(--color-tertiary, #006bff);
7
+ --axebow-success: var(--color-success, #0ecd9a);
8
+ --axebow-secondary: var(--color-secondary, #78787a);
9
+ --axebow-base: var(--color-base, #f0f1f5);
10
+ --axebow-error: var(--color-error, #e93a3a);
11
+ --axebow-white: var(--color-white, #ffffff);
12
+ --axebow-black: var(--color-black, #000000);
13
+ --axebow-warning: var(--color-warning, #f9cf6c);
14
+ --axebow-table-border: var(--color-table-border, #ddd);
15
+ --axebow-gray: var(--color-gray, #8a94ae);
16
+ --axebow-light-gray: var(--color-light-gray, #d9d9d9);
17
+
18
+ --axebow-clickable-blue: var(--color-clickable-blue, #006bff);
19
+ --axebow-sky-gray: var(--color-sky-gray, #8a94ee);
20
+ --axebow-rich-black: var(--color-rich-black, #0d1821);
21
+ --axebow-anti-flash-white: var(--color-anti-flash-white, #f0f1f5);
22
+ --axebow-strong-gray: var(--color-strong-gray, #78787a);
23
+
24
+ --axebow-bg-primary: var(--color-bg-primary, #f0f1f5);
25
+
26
+ --axebow-text-gray: var(--color-text-gray, #78787a);
27
+
28
+ --axebow-premium-label: var(--color-premium-label, #b9935a33);
29
+ --axebow-premium-text: var(--color-premium-text, #b9935a);
30
+ --axebow-deleting-link: var(--color-deleting-link, #a0a0a0);
31
+ --axebow-border-gray: var(--color-border-gray, #9ca3af);
32
+ }
33
+ * {
34
+ font-family: 'Open Sans', sans-serif;
35
+ }
36
+ `;
37
+ export const STATUS_COLORS = {
38
+ HEALTHY: 'var(--axebow-success)',
39
+ ERROR: 'var(--axebow-error)',
40
+ WARNING: 'var(--axebow-warning)',
41
+ DEFAULT: 'var(--axebow-gray)',
42
+ };
43
+ //# sourceMappingURL=aurora-theme.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aurora-theme.js","sourceRoot":"","sources":["../../src/styles/aurora-theme.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE1B,MAAM,CAAC,MAAM,WAAW,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkC7B,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,OAAO,EAAE,uBAAuB;IAChC,KAAK,EAAE,qBAAqB;IAC5B,OAAO,EAAE,uBAAuB;IAChC,OAAO,EAAE,oBAAoB;CACrB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumori/aurora-wui-components",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "description": "Aurora WUI - public TypeScript + Lit web component library",
5
5
  "license": "ISC",
6
6
  "type": "module",
@@ -37,7 +37,7 @@
37
37
  "test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
38
38
  "prepublishOnly": "npm run build"
39
39
  },
40
- "dependencies": {
40
+ "peerDependencies": {
41
41
  "lit": "^3.2.1"
42
42
  },
43
43
  "devDependencies": {