@salt-ds/lab 1.0.0-alpha.46 → 1.0.0-alpha.47
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/css/salt-lab.css +26 -2
- package/dist-cjs/date-picker/DatePickerPanel.css.js +1 -1
- package/dist-cjs/divider/Divider.css.js +6 -0
- package/dist-cjs/divider/Divider.css.js.map +1 -0
- package/dist-cjs/divider/Divider.js +44 -0
- package/dist-cjs/divider/Divider.js.map +1 -0
- package/dist-cjs/index.js +2 -0
- package/dist-cjs/index.js.map +1 -1
- package/dist-es/date-picker/DatePickerPanel.css.js +1 -1
- package/dist-es/divider/Divider.css.js +4 -0
- package/dist-es/divider/Divider.css.js.map +1 -0
- package/dist-es/divider/Divider.js +40 -0
- package/dist-es/divider/Divider.js.map +1 -0
- package/dist-es/index.js +1 -0
- package/dist-es/index.js.map +1 -1
- package/dist-types/divider/Divider.d.ts +12 -0
- package/dist-types/divider/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/package.json +2 -2
package/css/salt-lab.css
CHANGED
|
@@ -978,7 +978,7 @@
|
|
|
978
978
|
overflow: hidden;
|
|
979
979
|
overflow-y: auto;
|
|
980
980
|
position: relative;
|
|
981
|
-
z-index: var(--salt-zIndex-
|
|
981
|
+
z-index: var(--salt-zIndex-flyover);
|
|
982
982
|
box-shadow: var(--salt-overlayable-shadow-popout);
|
|
983
983
|
box-sizing: border-box;
|
|
984
984
|
display: flex;
|
|
@@ -1029,6 +1029,30 @@
|
|
|
1029
1029
|
transform: translateY(var(--deckLayout-transform-value));
|
|
1030
1030
|
}
|
|
1031
1031
|
|
|
1032
|
+
/* src/divider/Divider.css */
|
|
1033
|
+
.saltDivider-primary {
|
|
1034
|
+
--divider-background: var(--salt-separable-primary-borderColor);
|
|
1035
|
+
}
|
|
1036
|
+
.saltDivider-secondary {
|
|
1037
|
+
--divider-background: var(--salt-separable-secondary-borderColor);
|
|
1038
|
+
}
|
|
1039
|
+
.saltDivider-tertiary {
|
|
1040
|
+
--divider-background: var(--salt-separable-tertiary-borderColor);
|
|
1041
|
+
}
|
|
1042
|
+
.saltDivider {
|
|
1043
|
+
background: var(--divider-background);
|
|
1044
|
+
align-self: stretch;
|
|
1045
|
+
margin: 0;
|
|
1046
|
+
border: none;
|
|
1047
|
+
}
|
|
1048
|
+
.saltDivider-horizontal {
|
|
1049
|
+
height: var(--salt-size-border);
|
|
1050
|
+
}
|
|
1051
|
+
.saltDivider-vertical {
|
|
1052
|
+
width: var(--salt-size-border);
|
|
1053
|
+
height: auto;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1032
1056
|
/* src/dropdown/Dropdown.css */
|
|
1033
1057
|
.saltDropdown {
|
|
1034
1058
|
--saltIcon-margin: 2px 0 0 8px;
|
|
@@ -4056,4 +4080,4 @@
|
|
|
4056
4080
|
margin: calc(var(--salt-size-unit) / 2) 0;
|
|
4057
4081
|
}
|
|
4058
4082
|
|
|
4059
|
-
/* src/
|
|
4083
|
+
/* src/c3ed18f7-b895-46ac-bd1c-a7070ee9c1bf.css */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var css_248z = ".saltDatePickerPanel {\n background: var(--salt-container-primary-background);\n border: var(--salt-size-border) var(--salt-selectable-borderStyle-selected) var(--salt-selectable-borderColor-selected);\n overflow: hidden;\n overflow-y: auto;\n position: relative;\n z-index: var(--salt-zIndex-
|
|
3
|
+
var css_248z = ".saltDatePickerPanel {\n background: var(--salt-container-primary-background);\n border: var(--salt-size-border) var(--salt-selectable-borderStyle-selected) var(--salt-selectable-borderColor-selected);\n overflow: hidden;\n overflow-y: auto;\n position: relative;\n z-index: var(--salt-zIndex-flyover);\n box-shadow: var(--salt-overlayable-shadow-popout);\n box-sizing: border-box;\n display: flex;\n}\n.saltDatePickerPanel-container {\n width: min-content;\n gap: 1px;\n}\n\n.saltDatePickerPanel-header {\n padding: var(--salt-spacing-100);\n}\n";
|
|
4
4
|
|
|
5
5
|
module.exports = css_248z;
|
|
6
6
|
//# sourceMappingURL=DatePickerPanel.css.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var css_248z = ".saltDivider-primary {\n --divider-background: var(--salt-separable-primary-borderColor);\n}\n\n.saltDivider-secondary {\n --divider-background: var(--salt-separable-secondary-borderColor);\n}\n\n.saltDivider-tertiary {\n --divider-background: var(--salt-separable-tertiary-borderColor);\n}\n\n.saltDivider {\n background: var(--divider-background);\n align-self: stretch;\n margin: 0;\n border: none;\n}\n\n.saltDivider-horizontal {\n height: var(--salt-size-border);\n}\n\n.saltDivider-vertical {\n width: var(--salt-size-border);\n height: auto;\n}\n";
|
|
4
|
+
|
|
5
|
+
module.exports = css_248z;
|
|
6
|
+
//# sourceMappingURL=Divider.css.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Divider.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
6
|
+
var React = require('react');
|
|
7
|
+
var clsx = require('clsx');
|
|
8
|
+
var core = require('@salt-ds/core');
|
|
9
|
+
var window = require('@salt-ds/window');
|
|
10
|
+
var styles = require('@salt-ds/styles');
|
|
11
|
+
var Divider$1 = require('./Divider.css.js');
|
|
12
|
+
|
|
13
|
+
const withBaseName = core.makePrefixer("saltDivider");
|
|
14
|
+
const Divider = React.forwardRef(
|
|
15
|
+
function Divider2(props, ref) {
|
|
16
|
+
const {
|
|
17
|
+
className,
|
|
18
|
+
orientation = "horizontal",
|
|
19
|
+
variant = "primary",
|
|
20
|
+
...rest
|
|
21
|
+
} = props;
|
|
22
|
+
const targetWindow = window.useWindow();
|
|
23
|
+
styles.useComponentCssInjection({
|
|
24
|
+
testId: "salt-divider",
|
|
25
|
+
css: Divider$1,
|
|
26
|
+
window: targetWindow
|
|
27
|
+
});
|
|
28
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
29
|
+
className: clsx.clsx(
|
|
30
|
+
withBaseName(),
|
|
31
|
+
withBaseName(orientation),
|
|
32
|
+
withBaseName(variant),
|
|
33
|
+
className
|
|
34
|
+
),
|
|
35
|
+
"aria-orientation": orientation,
|
|
36
|
+
role: "separator",
|
|
37
|
+
ref,
|
|
38
|
+
...rest
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
exports.Divider = Divider;
|
|
44
|
+
//# sourceMappingURL=Divider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Divider.js","sources":["../src/divider/Divider.tsx"],"sourcesContent":["import { ComponentPropsWithoutRef, forwardRef } from \"react\";\nimport { clsx } from \"clsx\";\nimport { makePrefixer } from \"@salt-ds/core\";\nimport { useWindow } from \"@salt-ds/window\";\nimport { useComponentCssInjection } from \"@salt-ds/styles\";\nimport dividerCss from \"./Divider.css\";\n\ntype a = HTMLElementTagNameMap;\n\nexport interface DividerProps extends ComponentPropsWithoutRef<\"div\"> {\n /**\n * The orientation of the divider. Defaults to `\"horizontal\"`.\n */\n orientation?: \"horizontal\" | \"vertical\";\n /**\n * The variant of the divider. Defaults to `\"primary\"`.\n */\n variant?: \"primary\" | \"secondary\" | \"tertiary\";\n}\n\nconst withBaseName = makePrefixer(\"saltDivider\");\n\nexport const Divider = forwardRef<HTMLDivElement, DividerProps>(\n function Divider(props, ref) {\n const {\n className,\n orientation = \"horizontal\",\n variant = \"primary\",\n ...rest\n } = props;\n\n const targetWindow = useWindow();\n useComponentCssInjection({\n testId: \"salt-divider\",\n css: dividerCss,\n window: targetWindow,\n });\n\n return (\n <div\n className={clsx(\n withBaseName(),\n withBaseName(orientation),\n withBaseName(variant),\n className\n )}\n aria-orientation={orientation}\n role=\"separator\"\n ref={ref}\n {...rest}\n />\n );\n }\n);\n"],"names":["makePrefixer","forwardRef","Divider","useWindow","useComponentCssInjection","dividerCss","jsx","clsx"],"mappings":";;;;;;;;;;;;AAoBA,MAAM,YAAA,GAAeA,kBAAa,aAAa,CAAA,CAAA;AAExC,MAAM,OAAU,GAAAC,gBAAA;AAAA,EACrB,SAASC,QAAQ,CAAA,KAAA,EAAO,GAAK,EAAA;AAC3B,IAAM,MAAA;AAAA,MACJ,SAAA;AAAA,MACA,WAAc,GAAA,YAAA;AAAA,MACd,OAAU,GAAA,SAAA;AAAA,MACP,GAAA,IAAA;AAAA,KACD,GAAA,KAAA,CAAA;AAEJ,IAAA,MAAM,eAAeC,gBAAU,EAAA,CAAA;AAC/B,IAAyBC,+BAAA,CAAA;AAAA,MACvB,MAAQ,EAAA,cAAA;AAAA,MACR,GAAK,EAAAC,SAAA;AAAA,MACL,MAAQ,EAAA,YAAA;AAAA,KACT,CAAA,CAAA;AAED,IAAA,uBACGC,cAAA,CAAA,KAAA,EAAA;AAAA,MACC,SAAW,EAAAC,SAAA;AAAA,QACT,YAAa,EAAA;AAAA,QACb,aAAa,WAAW,CAAA;AAAA,QACxB,aAAa,OAAO,CAAA;AAAA,QACpB,SAAA;AAAA,OACF;AAAA,MACA,kBAAkB,EAAA,WAAA;AAAA,MAClB,IAAK,EAAA,WAAA;AAAA,MACL,GAAA;AAAA,MACC,GAAG,IAAA;AAAA,KACN,CAAA,CAAA;AAAA,GAEJ;AACF;;;;"}
|
package/dist-cjs/index.js
CHANGED
|
@@ -62,6 +62,7 @@ var DateInput = require('./date-input/DateInput.js');
|
|
|
62
62
|
var DatePicker = require('./date-picker/DatePicker.js');
|
|
63
63
|
var DeckItem = require('./deck-item/DeckItem.js');
|
|
64
64
|
var DeckLayout = require('./deck-layout/DeckLayout.js');
|
|
65
|
+
var Divider = require('./divider/Divider.js');
|
|
65
66
|
var DropdownBase = require('./dropdown/DropdownBase.js');
|
|
66
67
|
var DropdownButton = require('./dropdown/DropdownButton.js');
|
|
67
68
|
var Dropdown = require('./dropdown/Dropdown.js');
|
|
@@ -201,6 +202,7 @@ exports.DateInput = DateInput.DateInput;
|
|
|
201
202
|
exports.DatePicker = DatePicker.DatePicker;
|
|
202
203
|
exports.DeckItem = DeckItem.DeckItem;
|
|
203
204
|
exports.DeckLayout = DeckLayout.DeckLayout;
|
|
205
|
+
exports.Divider = Divider.Divider;
|
|
204
206
|
exports.DropdownBase = DropdownBase.DropdownBase;
|
|
205
207
|
exports.DropdownButton = DropdownButton.DropdownButton;
|
|
206
208
|
exports.Dropdown = Dropdown.Dropdown;
|
package/dist-cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var css_248z = ".saltDatePickerPanel {\n background: var(--salt-container-primary-background);\n border: var(--salt-size-border) var(--salt-selectable-borderStyle-selected) var(--salt-selectable-borderColor-selected);\n overflow: hidden;\n overflow-y: auto;\n position: relative;\n z-index: var(--salt-zIndex-
|
|
1
|
+
var css_248z = ".saltDatePickerPanel {\n background: var(--salt-container-primary-background);\n border: var(--salt-size-border) var(--salt-selectable-borderStyle-selected) var(--salt-selectable-borderColor-selected);\n overflow: hidden;\n overflow-y: auto;\n position: relative;\n z-index: var(--salt-zIndex-flyover);\n box-shadow: var(--salt-overlayable-shadow-popout);\n box-sizing: border-box;\n display: flex;\n}\n.saltDatePickerPanel-container {\n width: min-content;\n gap: 1px;\n}\n\n.saltDatePickerPanel-header {\n padding: var(--salt-spacing-100);\n}\n";
|
|
2
2
|
|
|
3
3
|
export { css_248z as default };
|
|
4
4
|
//# sourceMappingURL=DatePickerPanel.css.js.map
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var css_248z = ".saltDivider-primary {\n --divider-background: var(--salt-separable-primary-borderColor);\n}\n\n.saltDivider-secondary {\n --divider-background: var(--salt-separable-secondary-borderColor);\n}\n\n.saltDivider-tertiary {\n --divider-background: var(--salt-separable-tertiary-borderColor);\n}\n\n.saltDivider {\n background: var(--divider-background);\n align-self: stretch;\n margin: 0;\n border: none;\n}\n\n.saltDivider-horizontal {\n height: var(--salt-size-border);\n}\n\n.saltDivider-vertical {\n width: var(--salt-size-border);\n height: auto;\n}\n";
|
|
2
|
+
|
|
3
|
+
export { css_248z as default };
|
|
4
|
+
//# sourceMappingURL=Divider.css.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Divider.css.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { clsx } from 'clsx';
|
|
4
|
+
import { makePrefixer } from '@salt-ds/core';
|
|
5
|
+
import { useWindow } from '@salt-ds/window';
|
|
6
|
+
import { useComponentCssInjection } from '@salt-ds/styles';
|
|
7
|
+
import css_248z from './Divider.css.js';
|
|
8
|
+
|
|
9
|
+
const withBaseName = makePrefixer("saltDivider");
|
|
10
|
+
const Divider = forwardRef(
|
|
11
|
+
function Divider2(props, ref) {
|
|
12
|
+
const {
|
|
13
|
+
className,
|
|
14
|
+
orientation = "horizontal",
|
|
15
|
+
variant = "primary",
|
|
16
|
+
...rest
|
|
17
|
+
} = props;
|
|
18
|
+
const targetWindow = useWindow();
|
|
19
|
+
useComponentCssInjection({
|
|
20
|
+
testId: "salt-divider",
|
|
21
|
+
css: css_248z,
|
|
22
|
+
window: targetWindow
|
|
23
|
+
});
|
|
24
|
+
return /* @__PURE__ */ jsx("div", {
|
|
25
|
+
className: clsx(
|
|
26
|
+
withBaseName(),
|
|
27
|
+
withBaseName(orientation),
|
|
28
|
+
withBaseName(variant),
|
|
29
|
+
className
|
|
30
|
+
),
|
|
31
|
+
"aria-orientation": orientation,
|
|
32
|
+
role: "separator",
|
|
33
|
+
ref,
|
|
34
|
+
...rest
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
export { Divider };
|
|
40
|
+
//# sourceMappingURL=Divider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Divider.js","sources":["../src/divider/Divider.tsx"],"sourcesContent":["import { ComponentPropsWithoutRef, forwardRef } from \"react\";\nimport { clsx } from \"clsx\";\nimport { makePrefixer } from \"@salt-ds/core\";\nimport { useWindow } from \"@salt-ds/window\";\nimport { useComponentCssInjection } from \"@salt-ds/styles\";\nimport dividerCss from \"./Divider.css\";\n\ntype a = HTMLElementTagNameMap;\n\nexport interface DividerProps extends ComponentPropsWithoutRef<\"div\"> {\n /**\n * The orientation of the divider. Defaults to `\"horizontal\"`.\n */\n orientation?: \"horizontal\" | \"vertical\";\n /**\n * The variant of the divider. Defaults to `\"primary\"`.\n */\n variant?: \"primary\" | \"secondary\" | \"tertiary\";\n}\n\nconst withBaseName = makePrefixer(\"saltDivider\");\n\nexport const Divider = forwardRef<HTMLDivElement, DividerProps>(\n function Divider(props, ref) {\n const {\n className,\n orientation = \"horizontal\",\n variant = \"primary\",\n ...rest\n } = props;\n\n const targetWindow = useWindow();\n useComponentCssInjection({\n testId: \"salt-divider\",\n css: dividerCss,\n window: targetWindow,\n });\n\n return (\n <div\n className={clsx(\n withBaseName(),\n withBaseName(orientation),\n withBaseName(variant),\n className\n )}\n aria-orientation={orientation}\n role=\"separator\"\n ref={ref}\n {...rest}\n />\n );\n }\n);\n"],"names":["Divider","dividerCss"],"mappings":";;;;;;;;AAoBA,MAAM,YAAA,GAAe,aAAa,aAAa,CAAA,CAAA;AAExC,MAAM,OAAU,GAAA,UAAA;AAAA,EACrB,SAASA,QAAQ,CAAA,KAAA,EAAO,GAAK,EAAA;AAC3B,IAAM,MAAA;AAAA,MACJ,SAAA;AAAA,MACA,WAAc,GAAA,YAAA;AAAA,MACd,OAAU,GAAA,SAAA;AAAA,MACP,GAAA,IAAA;AAAA,KACD,GAAA,KAAA,CAAA;AAEJ,IAAA,MAAM,eAAe,SAAU,EAAA,CAAA;AAC/B,IAAyB,wBAAA,CAAA;AAAA,MACvB,MAAQ,EAAA,cAAA;AAAA,MACR,GAAK,EAAAC,QAAA;AAAA,MACL,MAAQ,EAAA,YAAA;AAAA,KACT,CAAA,CAAA;AAED,IAAA,uBACG,GAAA,CAAA,KAAA,EAAA;AAAA,MACC,SAAW,EAAA,IAAA;AAAA,QACT,YAAa,EAAA;AAAA,QACb,aAAa,WAAW,CAAA;AAAA,QACxB,aAAa,OAAO,CAAA;AAAA,QACpB,SAAA;AAAA,OACF;AAAA,MACA,kBAAkB,EAAA,WAAA;AAAA,MAClB,IAAK,EAAA,WAAA;AAAA,MACL,GAAA;AAAA,MACC,GAAG,IAAA;AAAA,KACN,CAAA,CAAA;AAAA,GAEJ;AACF;;;;"}
|
package/dist-es/index.js
CHANGED
|
@@ -58,6 +58,7 @@ export { DateInput } from './date-input/DateInput.js';
|
|
|
58
58
|
export { DatePicker } from './date-picker/DatePicker.js';
|
|
59
59
|
export { DeckItem } from './deck-item/DeckItem.js';
|
|
60
60
|
export { DeckLayout } from './deck-layout/DeckLayout.js';
|
|
61
|
+
export { Divider } from './divider/Divider.js';
|
|
61
62
|
export { DropdownBase } from './dropdown/DropdownBase.js';
|
|
62
63
|
export { DropdownButton } from './dropdown/DropdownButton.js';
|
|
63
64
|
export { Dropdown } from './dropdown/Dropdown.js';
|
package/dist-es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ComponentPropsWithoutRef } from "react";
|
|
2
|
+
export interface DividerProps extends ComponentPropsWithoutRef<"div"> {
|
|
3
|
+
/**
|
|
4
|
+
* The orientation of the divider. Defaults to `"horizontal"`.
|
|
5
|
+
*/
|
|
6
|
+
orientation?: "horizontal" | "vertical";
|
|
7
|
+
/**
|
|
8
|
+
* The variant of the divider. Defaults to `"primary"`.
|
|
9
|
+
*/
|
|
10
|
+
variant?: "primary" | "secondary" | "tertiary";
|
|
11
|
+
}
|
|
12
|
+
export declare const Divider: import("react").ForwardRefExoticComponent<DividerProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Divider";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export * from "./date-input";
|
|
|
16
16
|
export * from "./date-picker";
|
|
17
17
|
export * from "./deck-item";
|
|
18
18
|
export * from "./deck-layout";
|
|
19
|
+
export * from "./divider";
|
|
19
20
|
export * from "./dropdown";
|
|
20
21
|
export * from "./editable-label";
|
|
21
22
|
export { FormFieldLegacy as FormField, type FormFieldLegacyProps as FormFieldProps, FormLabel, } from "./form-field-legacy";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salt-ds/lab",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.47",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"react-window": "^1.8.6",
|
|
27
27
|
"rifm": "^0.12.0",
|
|
28
28
|
"tinycolor2": "^1.4.2",
|
|
29
|
-
"@salt-ds/core": "^1.
|
|
29
|
+
"@salt-ds/core": "^1.29.0",
|
|
30
30
|
"@salt-ds/window": "^0.1.1",
|
|
31
31
|
"@salt-ds/styles": "^0.2.1",
|
|
32
32
|
"@salt-ds/icons": "^1.12.0"
|