@moderneinc/neo-design 5.0.0-next.bd2a49 → 5.0.0-next.e88b47

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
@@ -282,13 +282,13 @@ declare const icons: Icons;
282
282
  type Surfaces = {
283
283
  highlightBackground: 'rgba(38, 55, 230, 0)';
284
284
  activeHighlight: 'rgba(182, 191, 255, 0.4)';
285
- table: {
285
+ dataGrid: {
286
286
  header: '#f9fafb';
287
- cellSelected: '#f2f3ff';
288
- cellSelectedHover: '#dce0ff';
289
- cellHover: '#f9fafb';
290
- cellDefault: '#ffffff';
291
- cellDisabled: '#f3f4f6';
287
+ selected: '#f2f3ff';
288
+ selectedHover: '#dce0ff';
289
+ hover: '#f9fafb';
290
+ default: '#ffffff';
291
+ disabled: '#f3f4f6';
292
292
  background: '#ffffff';
293
293
  };
294
294
  page: '#f4f4f4';
@@ -10,13 +10,13 @@
10
10
  --neo-icons-active: #2f42ff;
11
11
  --neo-surfaces-highlight-background: rgba(38, 55, 230, 0);
12
12
  --neo-surfaces-active-highlight: rgba(182, 191, 255, 0.4);
13
- --neo-surfaces-table-header: #f9fafb;
14
- --neo-surfaces-table-cell-selected: #f2f3ff;
15
- --neo-surfaces-table-cell-selected-hover: #dce0ff;
16
- --neo-surfaces-table-cell-hover: #f9fafb;
17
- --neo-surfaces-table-cell-default: #ffffff;
18
- --neo-surfaces-table-cell-disabled: #f3f4f6;
19
- --neo-surfaces-table-background: #ffffff;
13
+ --neo-surfaces-data-grid-header: #f9fafb;
14
+ --neo-surfaces-data-grid-selected: #f2f3ff;
15
+ --neo-surfaces-data-grid-selected-hover: #dce0ff;
16
+ --neo-surfaces-data-grid-hover: #f9fafb;
17
+ --neo-surfaces-data-grid-default: #ffffff;
18
+ --neo-surfaces-data-grid-disabled: #f3f4f6;
19
+ --neo-surfaces-data-grid-background: #ffffff;
20
20
  --neo-surfaces-page: #f4f4f4;
21
21
  --neo-surfaces-card: #ffffff;
22
22
  --neo-surfaces-card-header: #f3f4f6;
@@ -22,13 +22,13 @@ export declare const icons: Icons;
22
22
  export type Surfaces = {
23
23
  highlightBackground: 'rgba(38, 55, 230, 0)';
24
24
  activeHighlight: 'rgba(182, 191, 255, 0.4)';
25
- table: {
25
+ dataGrid: {
26
26
  header: '#f9fafb';
27
- cellSelected: '#f2f3ff';
28
- cellSelectedHover: '#dce0ff';
29
- cellHover: '#f9fafb';
30
- cellDefault: '#ffffff';
31
- cellDisabled: '#f3f4f6';
27
+ selected: '#f2f3ff';
28
+ selectedHover: '#dce0ff';
29
+ hover: '#f9fafb';
30
+ default: '#ffffff';
31
+ disabled: '#f3f4f6';
32
32
  background: '#ffffff';
33
33
  };
34
34
  page: '#f4f4f4';
@@ -14,13 +14,13 @@
14
14
  export const icons = {"hoverBorder":"#dce0ff","pressedBackground":"#dce0ff","hover":"#1e2ec2","hoverBackground":"#f2f3ff","disabled":"#d1d5db","placeholder":"#9ca3af","pressed":"#131e7a","utility":"#9ca3af","default":"#1f2937","active":"#2f42ff"};
15
15
 
16
16
  /**
17
- * @typedef {{ highlightBackground: string, activeHighlight: string, table: object, page: string, card: string, cardHeader: string, tabActive: string, listHover: string, shadowNeutral: string, shadowPrimary: string, tooltip: string, scrim: string, tabSecondaryBackground: string, snackbarDarkMode: string, snackbarBrand: string, snackbarLightMode: string, white: string, black: string }} Surfaces
17
+ * @typedef {{ highlightBackground: string, activeHighlight: string, dataGrid: object, page: string, card: string, cardHeader: string, tabActive: string, listHover: string, shadowNeutral: string, shadowPrimary: string, tooltip: string, scrim: string, tabSecondaryBackground: string, snackbarDarkMode: string, snackbarBrand: string, snackbarLightMode: string, white: string, black: string }} Surfaces
18
18
  */
19
19
 
20
20
  /**
21
21
  * @type {Surfaces}
22
22
  */
23
- export const surfaces = {"highlightBackground":"rgba(38, 55, 230, 0)","activeHighlight":"rgba(182, 191, 255, 0.4)","table":{"header":"#f9fafb","cellSelected":"#f2f3ff","cellSelectedHover":"#dce0ff","cellHover":"#f9fafb","cellDefault":"#ffffff","cellDisabled":"#f3f4f6","background":"#ffffff"},"page":"#f4f4f4","card":"#ffffff","cardHeader":"#f3f4f6","tabActive":"#f3f4f6","listHover":"#f9fafb","shadowNeutral":"rgba(31, 41, 55, 0.1)","shadowPrimary":"rgba(47, 66, 255, 0.1)","tooltip":"#4b5563","scrim":"rgba(31, 41, 55, 0.2)","tabSecondaryBackground":"#e5e7eb","snackbarDarkMode":"#ffffff","snackbarBrand":"#131e7a","snackbarLightMode":"#4b5563","white":"#ffffff","black":"#000000"};
23
+ export const surfaces = {"highlightBackground":"rgba(38, 55, 230, 0)","activeHighlight":"rgba(182, 191, 255, 0.4)","dataGrid":{"header":"#f9fafb","selected":"#f2f3ff","selectedHover":"#dce0ff","hover":"#f9fafb","default":"#ffffff","disabled":"#f3f4f6","background":"#ffffff"},"page":"#f4f4f4","card":"#ffffff","cardHeader":"#f3f4f6","tabActive":"#f3f4f6","listHover":"#f9fafb","shadowNeutral":"rgba(31, 41, 55, 0.1)","shadowPrimary":"rgba(47, 66, 255, 0.1)","tooltip":"#4b5563","scrim":"rgba(31, 41, 55, 0.2)","tabSecondaryBackground":"#e5e7eb","snackbarDarkMode":"#ffffff","snackbarBrand":"#131e7a","snackbarLightMode":"#4b5563","white":"#ffffff","black":"#000000"};
24
24
 
25
25
  /**
26
26
  * @typedef {{ searchInputBackground: string, linkDefault: string, linkHover: string, navigation: object, linkWhite: string, linkWhiteHover: string, input: object, code: object, button: object, tab: object, link: object, error: string, success: string, warning: string, tooltip: string, legal: string, bodySecondary: string, body: string }} Typography
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moderneinc/neo-design",
3
- "version": "5.0.0-next.bd2a49",
3
+ "version": "5.0.0-next.e88b47",
4
4
  "type": "module",
5
5
  "description": "Design primitives and tokens for Moderne applications",
6
6
  "main": "dist/index.js",