@uniformdev/design-system 20.66.5-alpha.2 → 20.66.6-alpha.13
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 +4 -2
- package/dist/index.d.mts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +4 -2
- package/package.json +4 -4
package/dist/esm/index.js
CHANGED
|
@@ -205,9 +205,11 @@ var Theme = ({ disableReset = false, disableGlobalReset = false }) => {
|
|
|
205
205
|
--z-drawer: 50;
|
|
206
206
|
--z-50: 50;
|
|
207
207
|
--z-menu: 80;
|
|
208
|
-
/* tooltip sits above the side chat so it is never clipped */
|
|
209
|
-
--z-tooltip: 100;
|
|
210
208
|
--z-side-chat: 100;
|
|
209
|
+
/* pinned (in-flow) side chat sits below page popovers/menus */
|
|
210
|
+
--z-side-chat-pinned: 0;
|
|
211
|
+
/* portaled tooltips must sit above floating side chat (--z-side-chat) */
|
|
212
|
+
--z-tooltip: 110;
|
|
211
213
|
|
|
212
214
|
/* opacity */
|
|
213
215
|
--opacity-0: 0;
|
package/dist/index.d.mts
CHANGED
|
@@ -5041,6 +5041,13 @@ type StackedModalProps = {
|
|
|
5041
5041
|
*/
|
|
5042
5042
|
declare const StackedModal: React__default.ForwardRefExoticComponent<StackedModalProps & React__default.RefAttributes<HTMLDialogElement>>;
|
|
5043
5043
|
|
|
5044
|
+
type StackedModalHeaderProps = {
|
|
5045
|
+
children: ReactNode;
|
|
5046
|
+
onBack?: () => void;
|
|
5047
|
+
icon?: IconType;
|
|
5048
|
+
};
|
|
5049
|
+
declare const StackedModalHeader: ({ children, onBack, icon }: StackedModalHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
5050
|
+
|
|
5044
5051
|
/** Props for a single step within a `StackedModal`. */
|
|
5045
5052
|
type StackedModalStepProps = {
|
|
5046
5053
|
/**
|
|
@@ -5068,13 +5075,6 @@ type StackedModalStepProps = {
|
|
|
5068
5075
|
*/
|
|
5069
5076
|
declare function StackedModalStep({ children, buttonGroup }: StackedModalStepProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
5070
5077
|
|
|
5071
|
-
type StackedModalHeaderProps = {
|
|
5072
|
-
children: ReactNode;
|
|
5073
|
-
onBack?: () => void;
|
|
5074
|
-
icon?: IconType;
|
|
5075
|
-
};
|
|
5076
|
-
declare const StackedModalHeader: ({ children, onBack, icon }: StackedModalHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
5077
|
-
|
|
5078
5078
|
type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
|
|
5079
5079
|
/** sets the label value */
|
|
5080
5080
|
label: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -5041,6 +5041,13 @@ type StackedModalProps = {
|
|
|
5041
5041
|
*/
|
|
5042
5042
|
declare const StackedModal: React__default.ForwardRefExoticComponent<StackedModalProps & React__default.RefAttributes<HTMLDialogElement>>;
|
|
5043
5043
|
|
|
5044
|
+
type StackedModalHeaderProps = {
|
|
5045
|
+
children: ReactNode;
|
|
5046
|
+
onBack?: () => void;
|
|
5047
|
+
icon?: IconType;
|
|
5048
|
+
};
|
|
5049
|
+
declare const StackedModalHeader: ({ children, onBack, icon }: StackedModalHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
5050
|
+
|
|
5044
5051
|
/** Props for a single step within a `StackedModal`. */
|
|
5045
5052
|
type StackedModalStepProps = {
|
|
5046
5053
|
/**
|
|
@@ -5068,13 +5075,6 @@ type StackedModalStepProps = {
|
|
|
5068
5075
|
*/
|
|
5069
5076
|
declare function StackedModalStep({ children, buttonGroup }: StackedModalStepProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
5070
5077
|
|
|
5071
|
-
type StackedModalHeaderProps = {
|
|
5072
|
-
children: ReactNode;
|
|
5073
|
-
onBack?: () => void;
|
|
5074
|
-
icon?: IconType;
|
|
5075
|
-
};
|
|
5076
|
-
declare const StackedModalHeader: ({ children, onBack, icon }: StackedModalHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
5077
|
-
|
|
5078
5078
|
type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
|
|
5079
5079
|
/** sets the label value */
|
|
5080
5080
|
label: ReactNode;
|
package/dist/index.js
CHANGED
|
@@ -1911,9 +1911,11 @@ var Theme = ({ disableReset = false, disableGlobalReset = false }) => {
|
|
|
1911
1911
|
--z-drawer: 50;
|
|
1912
1912
|
--z-50: 50;
|
|
1913
1913
|
--z-menu: 80;
|
|
1914
|
-
/* tooltip sits above the side chat so it is never clipped */
|
|
1915
|
-
--z-tooltip: 100;
|
|
1916
1914
|
--z-side-chat: 100;
|
|
1915
|
+
/* pinned (in-flow) side chat sits below page popovers/menus */
|
|
1916
|
+
--z-side-chat-pinned: 0;
|
|
1917
|
+
/* portaled tooltips must sit above floating side chat (--z-side-chat) */
|
|
1918
|
+
--z-tooltip: 110;
|
|
1917
1919
|
|
|
1918
1920
|
/* opacity */
|
|
1919
1921
|
--opacity-0: 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/design-system",
|
|
3
|
-
"version": "20.66.
|
|
3
|
+
"version": "20.66.6-alpha.13+fe28111153",
|
|
4
4
|
"description": "Uniform design system components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"exports": {
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"@storybook/react-vite": "10.2.10",
|
|
34
34
|
"@types/react": "19.2.2",
|
|
35
35
|
"@types/react-dom": "19.2.2",
|
|
36
|
-
"@uniformdev/canvas": "^20.66.
|
|
37
|
-
"@uniformdev/richtext": "^20.66.
|
|
36
|
+
"@uniformdev/canvas": "^20.66.6-alpha.13+fe28111153",
|
|
37
|
+
"@uniformdev/richtext": "^20.66.6-alpha.13+fe28111153",
|
|
38
38
|
"autoprefixer": "10.4.21",
|
|
39
39
|
"hygen": "6.2.11",
|
|
40
40
|
"jsdom": "29.0.2",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"publishConfig": {
|
|
85
85
|
"access": "public"
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "fe28111153c9c1db9a7025cc18512fc4239c2b5c"
|
|
88
88
|
}
|