@nypl/design-system-react-components 1.3.0-rc-2 → 1.3.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/CHANGELOG.md +1738 -0
- package/dist/components/TextInput/TextInput.d.ts +2 -0
- package/dist/design-system-react-components.cjs.development.js +29 -11
- package/dist/design-system-react-components.cjs.development.js.map +1 -1
- package/dist/design-system-react-components.cjs.production.min.js +1 -1
- package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
- package/dist/design-system-react-components.esm.js +29 -11
- package/dist/design-system-react-components.esm.js.map +1 -1
- package/dist/theme/components/select.d.ts +3 -3
- package/dist/utils/utils.d.ts +2 -0
- package/package.json +1 -1
|
@@ -4,9 +4,6 @@ interface SelectBaseStyle {
|
|
|
4
4
|
declare const Select: {
|
|
5
5
|
parts: string[];
|
|
6
6
|
baseStyle: ({ labelPosition }: SelectBaseStyle) => {
|
|
7
|
-
".chakra-select__icon-wrapper": {
|
|
8
|
-
zIndex: string;
|
|
9
|
-
};
|
|
10
7
|
inline: {
|
|
11
8
|
display: {
|
|
12
9
|
md: string;
|
|
@@ -52,6 +49,9 @@ declare const Select: {
|
|
|
52
49
|
opacity: string;
|
|
53
50
|
};
|
|
54
51
|
_focus: {
|
|
52
|
+
"+ .chakra-select__icon-wrapper": {
|
|
53
|
+
zIndex: string;
|
|
54
|
+
};
|
|
55
55
|
borderColor: string;
|
|
56
56
|
boxShadow: string;
|
|
57
57
|
outline: string;
|
package/dist/utils/utils.d.ts
CHANGED
|
@@ -28,4 +28,6 @@ interface GetAriaAttrsProps {
|
|
|
28
28
|
* `aria-describedby` attributes, based on the label and footnote values.
|
|
29
29
|
*/
|
|
30
30
|
export declare const getAriaAttrs: ({ footnote, id, labelText, name, showLabel, }: GetAriaAttrsProps) => AriaAttributes;
|
|
31
|
+
/** Convert a hex color value to an rgb or rgba value */
|
|
32
|
+
export declare const hexToRGB: (hex: string, alpha: number) => string;
|
|
31
33
|
export {};
|