@uniformdev/design-system 19.56.1-alpha.9 → 19.57.0
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/esm/index.js +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/esm/index.js
CHANGED
|
@@ -68,7 +68,7 @@ var Theme = ({ disableReset = false }) => {
|
|
|
68
68
|
--tertiary-action-hover: var(--gray-600);
|
|
69
69
|
--tertiary-action-active: var(--gray-50);
|
|
70
70
|
--tertiary-action-disabled: var(--gray-400);
|
|
71
|
-
|
|
71
|
+
|
|
72
72
|
/* accent dark */
|
|
73
73
|
--accent-dark: var(--purple-rain-500);
|
|
74
74
|
--accent-dark-hover: var(--purple-rain-400);
|
package/dist/index.d.mts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
2
1
|
import * as React$1 from 'react';
|
|
3
2
|
import React__default, { RefObject, HTMLAttributes, ReactNode, ImgHTMLAttributes, SVGProps, CSSProperties, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
|
|
4
3
|
import { GroupBase } from 'react-select';
|
|
5
4
|
export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
|
|
6
5
|
import * as _emotion_react from '@emotion/react';
|
|
7
6
|
import { SerializedStyles } from '@emotion/react';
|
|
7
|
+
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
8
8
|
import { LottieComponentProps } from 'lottie-react';
|
|
9
9
|
import { ButtonProps as ButtonProps$1 } from 'reakit/Button';
|
|
10
10
|
import { MenuProps as MenuProps$1, MenuItemHTMLProps } from 'reakit';
|
|
@@ -35,7 +35,7 @@ type ThemeProps = {
|
|
|
35
35
|
/**
|
|
36
36
|
* Uniform CSS Variables, font provider and optional reset stylesheet
|
|
37
37
|
* @example <Theme disableReset={true} /> */
|
|
38
|
-
declare const Theme:
|
|
38
|
+
declare const Theme: React__default.ElementType;
|
|
39
39
|
|
|
40
40
|
/** Breakpoint label values */
|
|
41
41
|
type BreakpointSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
2
1
|
import * as React$1 from 'react';
|
|
3
2
|
import React__default, { RefObject, HTMLAttributes, ReactNode, ImgHTMLAttributes, SVGProps, CSSProperties, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
|
|
4
3
|
import { GroupBase } from 'react-select';
|
|
5
4
|
export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
|
|
6
5
|
import * as _emotion_react from '@emotion/react';
|
|
7
6
|
import { SerializedStyles } from '@emotion/react';
|
|
7
|
+
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
8
8
|
import { LottieComponentProps } from 'lottie-react';
|
|
9
9
|
import { ButtonProps as ButtonProps$1 } from 'reakit/Button';
|
|
10
10
|
import { MenuProps as MenuProps$1, MenuItemHTMLProps } from 'reakit';
|
|
@@ -35,7 +35,7 @@ type ThemeProps = {
|
|
|
35
35
|
/**
|
|
36
36
|
* Uniform CSS Variables, font provider and optional reset stylesheet
|
|
37
37
|
* @example <Theme disableReset={true} /> */
|
|
38
|
-
declare const Theme:
|
|
38
|
+
declare const Theme: React__default.ElementType;
|
|
39
39
|
|
|
40
40
|
/** Breakpoint label values */
|
|
41
41
|
type BreakpointSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
package/dist/index.js
CHANGED
|
@@ -1636,7 +1636,7 @@ var Theme = ({ disableReset = false }) => {
|
|
|
1636
1636
|
--tertiary-action-hover: var(--gray-600);
|
|
1637
1637
|
--tertiary-action-active: var(--gray-50);
|
|
1638
1638
|
--tertiary-action-disabled: var(--gray-400);
|
|
1639
|
-
|
|
1639
|
+
|
|
1640
1640
|
/* accent dark */
|
|
1641
1641
|
--accent-dark: var(--purple-rain-500);
|
|
1642
1642
|
--accent-dark-hover: var(--purple-rain-400);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/design-system",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.57.0",
|
|
4
4
|
"description": "Uniform design system components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"@storybook/react": "6.5.16",
|
|
25
25
|
"@types/react": "18.2.21",
|
|
26
26
|
"@types/react-dom": "18.2.7",
|
|
27
|
-
"@uniformdev/canvas": "^19.
|
|
28
|
-
"@uniformdev/richtext": "^19.
|
|
27
|
+
"@uniformdev/canvas": "^19.57.0",
|
|
28
|
+
"@uniformdev/richtext": "^19.57.0",
|
|
29
29
|
"autoprefixer": "10.4.15",
|
|
30
30
|
"hygen": "6.2.11",
|
|
31
31
|
"postcss": "8.4.28",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "34b8d4a74f9029d507640eb8ef52d7bcf7e6d552"
|
|
71
71
|
}
|