@deephaven/components 0.51.0 → 0.51.1-alpha-theme-fix.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/AutoCompleteInput.d.ts +2 -2
- package/dist/AutoCompleteInput.d.ts.map +1 -1
- package/dist/AutoCompleteInput.js.map +1 -1
- package/dist/ComboBox.d.ts +2 -2
- package/dist/ComboBox.d.ts.map +1 -1
- package/dist/ComboBox.js.map +1 -1
- package/dist/CustomTimeSelect.d.ts +3 -3
- package/dist/CustomTimeSelect.d.ts.map +1 -1
- package/dist/CustomTimeSelect.js.map +1 -1
- package/dist/DateInput.d.ts +3 -3
- package/dist/DateInput.d.ts.map +1 -1
- package/dist/DateInput.js.map +1 -1
- package/dist/DateTimeInput.d.ts +4 -4
- package/dist/DateTimeInput.d.ts.map +1 -1
- package/dist/DateTimeInput.js.map +1 -1
- package/dist/DebouncedSearchInput.d.ts +1 -1
- package/dist/DebouncedSearchInput.d.ts.map +1 -1
- package/dist/DebouncedSearchInput.js.map +1 -1
- package/dist/DragUtils.d.ts +3 -3
- package/dist/DragUtils.d.ts.map +1 -1
- package/dist/DragUtils.js.map +1 -1
- package/dist/DraggableItemList.d.ts +1 -1
- package/dist/DraggableItemList.d.ts.map +1 -1
- package/dist/DraggableItemList.js.map +1 -1
- package/dist/EditableItemList.js.map +1 -1
- package/dist/HierarchicalCheckboxMenu.d.ts +1 -1
- package/dist/HierarchicalCheckboxMenu.d.ts.map +1 -1
- package/dist/HierarchicalCheckboxMenu.js.map +1 -1
- package/dist/ItemList.d.ts +4 -4
- package/dist/ItemList.d.ts.map +1 -1
- package/dist/ItemList.js +6 -6
- package/dist/ItemList.js.map +1 -1
- package/dist/ItemListItem.d.ts +13 -13
- package/dist/ItemListItem.d.ts.map +1 -1
- package/dist/ItemListItem.js.map +1 -1
- package/dist/MaskedInput.d.ts +5 -5
- package/dist/MaskedInput.d.ts.map +1 -1
- package/dist/MaskedInput.js.map +1 -1
- package/dist/SelectValueList.d.ts +2 -2
- package/dist/SelectValueList.d.ts.map +1 -1
- package/dist/SelectValueList.js.map +1 -1
- package/dist/TimeInput.d.ts +4 -4
- package/dist/TimeInput.d.ts.map +1 -1
- package/dist/TimeInput.js.map +1 -1
- package/dist/TimeSlider.d.ts +2 -2
- package/dist/TimeSlider.d.ts.map +1 -1
- package/dist/TimeSlider.js.map +1 -1
- package/dist/context-actions/ContextActionUtils.d.ts +1 -1
- package/dist/context-actions/ContextActionUtils.d.ts.map +1 -1
- package/dist/context-actions/ContextActionUtils.js +4 -4
- package/dist/context-actions/ContextActionUtils.js.map +1 -1
- package/dist/context-actions/ContextMenu.d.ts +4 -4
- package/dist/context-actions/ContextMenu.d.ts.map +1 -1
- package/dist/context-actions/ContextMenu.js +1 -1
- package/dist/context-actions/ContextMenu.js.map +1 -1
- package/dist/context-actions/ContextMenuItem.d.ts +4 -4
- package/dist/context-actions/ContextMenuItem.d.ts.map +1 -1
- package/dist/context-actions/ContextMenuItem.js.map +1 -1
- package/dist/declaration.d.js.map +1 -1
- package/dist/menu-actions/DropdownMenu.d.ts +2 -2
- package/dist/menu-actions/DropdownMenu.d.ts.map +1 -1
- package/dist/menu-actions/DropdownMenu.js.map +1 -1
- package/dist/menu-actions/Menu.d.ts +3 -3
- package/dist/menu-actions/Menu.d.ts.map +1 -1
- package/dist/menu-actions/Menu.js +1 -1
- package/dist/menu-actions/Menu.js.map +1 -1
- package/dist/theme/theme-dark/index.d.ts +14 -1
- package/dist/theme/theme-dark/index.d.ts.map +1 -1
- package/dist/theme/theme-dark/index.js +19 -6
- package/dist/theme/theme-dark/index.js.map +1 -1
- package/dist/theme/theme-light/index.d.ts +37 -0
- package/dist/theme/theme-light/index.d.ts.map +1 -1
- package/dist/theme/theme-light/index.js +38 -1
- package/dist/theme/theme-light/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -1,4 +1,41 @@
|
|
|
1
|
-
import themeLightPalette from "./theme-light-palette.css?
|
|
1
|
+
import themeLightPalette from "./theme-light-palette.css?raw";
|
|
2
|
+
/**
|
|
3
|
+
* DH theme variables are imported via Vite `?raw` query which provides the
|
|
4
|
+
* text content of the variable files as a string. The exported theme is just a
|
|
5
|
+
* concatenation of the contents of all of these imports.
|
|
6
|
+
*
|
|
7
|
+
* Note that ?raw / ?inline imports are natively supported by Vite, but consumers
|
|
8
|
+
* of @deephaven/components using Webpack will need to add a rule to their module
|
|
9
|
+
* config.
|
|
10
|
+
* e.g.
|
|
11
|
+
* module: {
|
|
12
|
+
* rules: [
|
|
13
|
+
* {
|
|
14
|
+
* resourceQuery: /inline/,
|
|
15
|
+
* type: 'asset/source',
|
|
16
|
+
* },
|
|
17
|
+
* ],
|
|
18
|
+
* }
|
|
19
|
+
*
|
|
20
|
+
* e.g.
|
|
21
|
+
*
|
|
22
|
+
* :root {
|
|
23
|
+
* --dh-color-from-light-palette: #fff;
|
|
24
|
+
* --dh-color-from-light-palette2: #ccc;
|
|
25
|
+
* }
|
|
26
|
+
* :root {
|
|
27
|
+
* --dh-color-from-light-semantic: #000;
|
|
28
|
+
* }
|
|
29
|
+
* :root {
|
|
30
|
+
* --dh-color-from-light-semantic-editor: #000;
|
|
31
|
+
* }
|
|
32
|
+
* :root {
|
|
33
|
+
* --dh-color-from-light-semantic-grid: #000;
|
|
34
|
+
* }
|
|
35
|
+
* :root {
|
|
36
|
+
* --dh-color-from-light-components: #000;
|
|
37
|
+
* }
|
|
38
|
+
*/
|
|
2
39
|
export var themeLight = themeLightPalette;
|
|
3
40
|
export default themeLight;
|
|
4
41
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["themeLightPalette","themeLight"],"sources":["../../../src/theme/theme-light/index.ts"],"sourcesContent":["import themeLightPalette from './theme-light-palette.css?inline';\n\nexport const themeLight = themeLightPalette;\n\nexport default themeLight;\n"],"mappings":"OAAOA,iBAAiB;AAExB,OAAO,IAAMC,UAAU,GAAGD,iBAAiB;AAE3C,eAAeC,UAAU"}
|
|
1
|
+
{"version":3,"file":"index.js","names":["themeLightPalette","themeLight"],"sources":["../../../src/theme/theme-light/index.ts"],"sourcesContent":["import themeLightPalette from './theme-light-palette.css?raw';\n\n/**\n * DH theme variables are imported via Vite `?raw` query which provides the\n * text content of the variable files as a string. The exported theme is just a\n * concatenation of the contents of all of these imports.\n *\n * Note that ?raw / ?inline imports are natively supported by Vite, but consumers\n * of @deephaven/components using Webpack will need to add a rule to their module\n * config.\n * e.g.\n * module: {\n * rules: [\n * {\n * resourceQuery: /inline/,\n * type: 'asset/source',\n * },\n * ],\n * }\n *\n * e.g.\n *\n * :root {\n * --dh-color-from-light-palette: #fff;\n * --dh-color-from-light-palette2: #ccc;\n * }\n * :root {\n * --dh-color-from-light-semantic: #000;\n * }\n * :root {\n * --dh-color-from-light-semantic-editor: #000;\n * }\n * :root {\n * --dh-color-from-light-semantic-grid: #000;\n * }\n * :root {\n * --dh-color-from-light-components: #000;\n * }\n */\nexport const themeLight = themeLightPalette;\n\nexport default themeLight;\n"],"mappings":"OAAOA,iBAAiB;AAExB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,IAAMC,UAAU,GAAGD,iBAAiB;AAE3C,eAAeC,UAAU"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven/components",
|
|
3
|
-
"version": "0.51.
|
|
3
|
+
"version": "0.51.1-alpha-theme-fix.1+add15f1b",
|
|
4
4
|
"description": "Deephaven React component library",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@adobe/react-spectrum": "^3.29.0",
|
|
27
|
-
"@deephaven/icons": "^0.51.
|
|
28
|
-
"@deephaven/log": "^0.51.
|
|
29
|
-
"@deephaven/react-hooks": "^0.51.
|
|
30
|
-
"@deephaven/utils": "^0.51.
|
|
27
|
+
"@deephaven/icons": "^0.51.1-alpha-theme-fix.1+add15f1b",
|
|
28
|
+
"@deephaven/log": "^0.51.1-alpha-theme-fix.1+add15f1b",
|
|
29
|
+
"@deephaven/react-hooks": "^0.51.1-alpha-theme-fix.1+add15f1b",
|
|
30
|
+
"@deephaven/utils": "^0.51.1-alpha-theme-fix.1+add15f1b",
|
|
31
31
|
"@fortawesome/fontawesome-svg-core": "^6.2.1",
|
|
32
32
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
33
33
|
"@react-spectrum/theme-default": "^3.5.1",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"react-dom": "^17.x"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@deephaven/mocks": "^0.51.
|
|
54
|
+
"@deephaven/mocks": "^0.51.1-alpha-theme-fix.1+add15f1b"
|
|
55
55
|
},
|
|
56
56
|
"files": [
|
|
57
57
|
"dist",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "add15f1b1ce7ad96bf40849a39c80434070b54c0"
|
|
68
68
|
}
|