@nimbus-ds/patterns 1.21.0-rc.1 → 1.22.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/CHANGELOG.md +12 -0
- package/dist/AppShell/index.d.ts +1 -1
- package/dist/CHANGELOG.md +12 -0
- package/dist/ChatInput/index.d.ts +2 -1
- package/dist/ChatInput/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -65,7 +65,7 @@ export interface AppShellProperties {
|
|
|
65
65
|
/**
|
|
66
66
|
* Can be used to control the responsive properties of the AppShell menu so you can change which breakpoint the menu hides under.
|
|
67
67
|
*/
|
|
68
|
-
menuProperties?:
|
|
68
|
+
menuProperties?: Omit<BoxBaseProps, "children" | "width" | "height" | "position" | "top" | "left" | "right" | "bottom" | "borderStyle" | "borderWidth" | "borderColor" | "borderRightWidth" | "transitionProperty" | "transitionDuration" | "transitionTimingFunction" | "flexShrink" | "ref">;
|
|
69
69
|
/**
|
|
70
70
|
* Controls whether the left sidebar (menu) is expanded (true) or collapsed (false). Defaults to true.
|
|
71
71
|
*/
|
|
@@ -1333,6 +1333,7 @@ export interface ChatInputPopoverProperties {
|
|
|
1333
1333
|
* @TJS-type React.ReactNode
|
|
1334
1334
|
*/
|
|
1335
1335
|
content: ReactNode;
|
|
1336
|
+
contentProperties?: Omit<BoxProperties, "children" | "display" | "flexDirection" | "gap">;
|
|
1336
1337
|
/**
|
|
1337
1338
|
* The trigger element that opens the popover, usually an IconButton.
|
|
1338
1339
|
* @TJS-type React.ReactNode
|
|
@@ -1349,7 +1350,7 @@ export interface ChatInputPopoverButtonProperties {
|
|
|
1349
1350
|
/**
|
|
1350
1351
|
* The text content of the button.
|
|
1351
1352
|
*/
|
|
1352
|
-
text:
|
|
1353
|
+
text: ReactNode;
|
|
1353
1354
|
/**
|
|
1354
1355
|
* Click handler for the button.
|
|
1355
1356
|
*/
|