@dt-dds/react-select 1.0.0-beta.69 → 1.0.0-beta.70
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/CHANGELOG.md +20 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.mjs +8 -8
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @dt-ui/react-select
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.70
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix(config): update ESLint, TS, and Storybook config
|
|
8
|
+
- fix(icon-button): add missing @dt-dds/react-icon devDependency
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- Updated dependencies [223664b]
|
|
12
|
+
- @dt-dds/react-checkbox@1.0.0-beta.53
|
|
13
|
+
- @dt-dds/react-core@1.0.0-beta.52
|
|
14
|
+
- @dt-dds/react-dropdown@1.0.0-beta.79
|
|
15
|
+
- @dt-dds/react-icon@1.0.0-beta.55
|
|
16
|
+
- @dt-dds/react-icon-button@1.0.0-beta.21
|
|
17
|
+
- @dt-dds/react-label-field@1.0.0-beta.53
|
|
18
|
+
- @dt-dds/react-tooltip@1.0.0-beta.61
|
|
19
|
+
- @dt-dds/react-typography@1.0.0-beta.43
|
|
20
|
+
- @dt-dds/themes@1.0.0-beta.10
|
|
21
|
+
- @dt-dds/react-box@1.0.0-beta.58
|
|
22
|
+
|
|
3
23
|
## 1.0.0-beta.69
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CustomTheme } from '@dt-dds/themes';
|
|
2
|
-
import { BaseProps, Scale } from '@dt-dds/react-core';
|
|
3
2
|
import { ReactNode } from 'react';
|
|
3
|
+
import { BaseProps, Scale } from '@dt-dds/react-core';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
|
|
6
6
|
interface SelectOptionProps extends BaseProps {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CustomTheme } from '@dt-dds/themes';
|
|
2
|
-
import { BaseProps, Scale } from '@dt-dds/react-core';
|
|
3
2
|
import { ReactNode } from 'react';
|
|
3
|
+
import { BaseProps, Scale } from '@dt-dds/react-core';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
|
|
6
6
|
interface SelectOptionProps extends BaseProps {
|
package/dist/index.js
CHANGED
|
@@ -64,13 +64,13 @@ __export(index_exports, {
|
|
|
64
64
|
module.exports = __toCommonJS(index_exports);
|
|
65
65
|
|
|
66
66
|
// src/Select.tsx
|
|
67
|
+
var import_react2 = require("react");
|
|
68
|
+
var Downshift = __toESM(require("downshift"));
|
|
67
69
|
var import_react_box = require("@dt-dds/react-box");
|
|
68
70
|
var import_react_icon = require("@dt-dds/react-icon");
|
|
69
71
|
var import_react_icon_button = require("@dt-dds/react-icon-button");
|
|
70
72
|
var import_react_label_field = require("@dt-dds/react-label-field");
|
|
71
73
|
var import_react_tooltip = require("@dt-dds/react-tooltip");
|
|
72
|
-
var Downshift = __toESM(require("downshift"));
|
|
73
|
-
var import_react2 = require("react");
|
|
74
74
|
|
|
75
75
|
// src/components/SelectOption.tsx
|
|
76
76
|
var import_react_dropdown = require("@dt-dds/react-dropdown");
|
|
@@ -105,8 +105,8 @@ var SelectProvider = ({ children, value }) => {
|
|
|
105
105
|
};
|
|
106
106
|
|
|
107
107
|
// src/components/SelectOption.styled.ts
|
|
108
|
-
var import_react_checkbox = require("@dt-dds/react-checkbox");
|
|
109
108
|
var import_styled = __toESM(require("@emotion/styled"));
|
|
109
|
+
var import_react_checkbox = require("@dt-dds/react-checkbox");
|
|
110
110
|
var SelectCheckboxStyled = (0, import_styled.default)(import_react_checkbox.Checkbox)`
|
|
111
111
|
${({ theme }) => `
|
|
112
112
|
pointer-events: none;
|
|
@@ -159,9 +159,9 @@ var SelectOption = ({
|
|
|
159
159
|
};
|
|
160
160
|
|
|
161
161
|
// src/Select.styled.ts
|
|
162
|
+
var import_styled2 = __toESM(require("@emotion/styled"));
|
|
162
163
|
var import_react_dropdown2 = require("@dt-dds/react-dropdown");
|
|
163
164
|
var import_react_typography = require("@dt-dds/react-typography");
|
|
164
|
-
var import_styled2 = __toESM(require("@emotion/styled"));
|
|
165
165
|
var SelectStyled = import_styled2.default.div`
|
|
166
166
|
position: relative;
|
|
167
167
|
width: 100%;
|
package/dist/index.mjs
CHANGED
|
@@ -31,18 +31,18 @@ var __objRest = (source, exclude) => {
|
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
// src/Select.tsx
|
|
34
|
-
import { Box } from "@dt-dds/react-box";
|
|
35
|
-
import { Icon } from "@dt-dds/react-icon";
|
|
36
|
-
import { IconButton } from "@dt-dds/react-icon-button";
|
|
37
|
-
import { LabelField } from "@dt-dds/react-label-field";
|
|
38
|
-
import { Tooltip } from "@dt-dds/react-tooltip";
|
|
39
|
-
import * as Downshift from "downshift";
|
|
40
34
|
import {
|
|
41
35
|
Children,
|
|
42
36
|
isValidElement,
|
|
43
37
|
useMemo,
|
|
44
38
|
useRef
|
|
45
39
|
} from "react";
|
|
40
|
+
import * as Downshift from "downshift";
|
|
41
|
+
import { Box } from "@dt-dds/react-box";
|
|
42
|
+
import { Icon } from "@dt-dds/react-icon";
|
|
43
|
+
import { IconButton } from "@dt-dds/react-icon-button";
|
|
44
|
+
import { LabelField } from "@dt-dds/react-label-field";
|
|
45
|
+
import { Tooltip } from "@dt-dds/react-tooltip";
|
|
46
46
|
|
|
47
47
|
// src/components/SelectOption.tsx
|
|
48
48
|
import { Dropdown } from "@dt-dds/react-dropdown";
|
|
@@ -77,8 +77,8 @@ var SelectProvider = ({ children, value }) => {
|
|
|
77
77
|
};
|
|
78
78
|
|
|
79
79
|
// src/components/SelectOption.styled.ts
|
|
80
|
-
import { Checkbox } from "@dt-dds/react-checkbox";
|
|
81
80
|
import styled from "@emotion/styled";
|
|
81
|
+
import { Checkbox } from "@dt-dds/react-checkbox";
|
|
82
82
|
var SelectCheckboxStyled = styled(Checkbox)`
|
|
83
83
|
${({ theme }) => `
|
|
84
84
|
pointer-events: none;
|
|
@@ -131,9 +131,9 @@ var SelectOption = ({
|
|
|
131
131
|
};
|
|
132
132
|
|
|
133
133
|
// src/Select.styled.ts
|
|
134
|
+
import styled2 from "@emotion/styled";
|
|
134
135
|
import { Dropdown as Dropdown2 } from "@dt-dds/react-dropdown";
|
|
135
136
|
import { Typography } from "@dt-dds/react-typography";
|
|
136
|
-
import styled2 from "@emotion/styled";
|
|
137
137
|
var SelectStyled = styled2.div`
|
|
138
138
|
position: relative;
|
|
139
139
|
width: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dt-dds/react-select",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.70",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dist/index.js"
|
|
@@ -20,16 +20,16 @@
|
|
|
20
20
|
"test:update:snapshot": "jest -u"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@dt-dds/react-box": "1.0.0-beta.
|
|
24
|
-
"@dt-dds/react-checkbox": "1.0.0-beta.
|
|
25
|
-
"@dt-dds/react-core": "1.0.0-beta.
|
|
26
|
-
"@dt-dds/react-dropdown": "1.0.0-beta.
|
|
27
|
-
"@dt-dds/react-icon": "1.0.0-beta.
|
|
28
|
-
"@dt-dds/react-icon-button": "1.0.0-beta.
|
|
29
|
-
"@dt-dds/react-label-field": "1.0.0-beta.
|
|
30
|
-
"@dt-dds/react-tooltip": "1.0.0-beta.
|
|
31
|
-
"@dt-dds/react-typography": "1.0.0-beta.
|
|
32
|
-
"@dt-dds/themes": "1.0.0-beta.
|
|
23
|
+
"@dt-dds/react-box": "1.0.0-beta.58",
|
|
24
|
+
"@dt-dds/react-checkbox": "1.0.0-beta.53",
|
|
25
|
+
"@dt-dds/react-core": "1.0.0-beta.52",
|
|
26
|
+
"@dt-dds/react-dropdown": "1.0.0-beta.79",
|
|
27
|
+
"@dt-dds/react-icon": "1.0.0-beta.55",
|
|
28
|
+
"@dt-dds/react-icon-button": "1.0.0-beta.21",
|
|
29
|
+
"@dt-dds/react-label-field": "1.0.0-beta.53",
|
|
30
|
+
"@dt-dds/react-tooltip": "1.0.0-beta.61",
|
|
31
|
+
"@dt-dds/react-typography": "1.0.0-beta.43",
|
|
32
|
+
"@dt-dds/themes": "1.0.0-beta.10",
|
|
33
33
|
"downshift": "^9.0.10"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|