@uipath/apollo-react 4.42.0 → 4.43.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/canvas/styles/tailwind.canvas.css +1 -1
- package/dist/core/tokens/css/theme-variables.css +318 -4
- package/dist/core/tokens/css/variables.css +372 -0
- package/dist/core/tokens/jss/palette.cjs +1184 -0
- package/dist/core/tokens/jss/palette.d.ts +12 -1
- package/dist/core/tokens/jss/palette.js +1 -1
- package/dist/core/tokens/less/_variables.less +372 -0
- package/dist/core/tokens/scss/_variables.scss +895 -119
- package/dist/core/tokens/scss/base-host.scss +302 -0
- package/dist/core/tokens/scss/theme-variables.scss +310 -4
- package/dist/core/tokens/scss/theme.scss +307 -1
- package/dist/material/stories/chat-story-support.cjs +2437 -0
- package/dist/material/stories/chat-story-support.d.ts +11 -0
- package/dist/material/stories/chat-story-support.d.ts.map +1 -0
- package/dist/material/stories/chat-story-support.js +2381 -0
- package/dist/material/stories/storybook-helpers.cjs +166 -0
- package/dist/material/stories/storybook-helpers.d.ts +21 -0
- package/dist/material/stories/storybook-helpers.d.ts.map +1 -0
- package/dist/material/stories/storybook-helpers.js +109 -0
- package/dist/material/theme/index.cjs +27 -1
- package/dist/material/theme/index.d.ts +3 -1
- package/dist/material/theme/index.d.ts.map +1 -1
- package/dist/material/theme/index.js +23 -3
- package/dist/material/theme/overrides/MuiButton.cjs +4 -4
- package/dist/material/theme/overrides/MuiButton.js +4 -4
- package/dist/material/theme/overrides/MuiDatepicker.cjs +2 -2
- package/dist/material/theme/overrides/MuiDatepicker.js +2 -2
- package/dist/material/theme/overrides/MuiFab.cjs +3 -3
- package/dist/material/theme/overrides/MuiFab.js +3 -3
- package/dist/material/theme/overrides/index.cjs +8 -0
- package/dist/material/theme/overrides/index.d.ts +2 -0
- package/dist/material/theme/overrides/index.d.ts.map +1 -1
- package/dist/material/theme/overrides/index.js +4 -2
- package/package.json +5 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type ApChatTheme, AutopilotChatMode, type SupportedLocale } from '../components';
|
|
2
|
+
export declare function mapToChatLocale(globalLocale: unknown): SupportedLocale;
|
|
3
|
+
export declare function mapToChatTheme(globalTheme: unknown): ApChatTheme;
|
|
4
|
+
export interface ChatShowcaseDemoProps {
|
|
5
|
+
theme: ApChatTheme;
|
|
6
|
+
instanceName: string;
|
|
7
|
+
initialMode?: AutopilotChatMode;
|
|
8
|
+
locale?: SupportedLocale;
|
|
9
|
+
}
|
|
10
|
+
export declare function ChatShowcaseDemo({ theme, instanceName, initialMode, locale, }: ChatShowcaseDemoProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
//# sourceMappingURL=chat-story-support.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chat-story-support.d.ts","sourceRoot":"","sources":["../../../src/material/stories/chat-story-support.tsx"],"names":[],"mappings":"AAUA,OAAO,EAEL,KAAK,WAAW,EAGhB,iBAAiB,EAKjB,KAAK,eAAe,EACrB,MAAM,eAAe,CAAC;AAmCvB,wBAAgB,eAAe,CAAC,YAAY,EAAE,OAAO,GAAG,eAAe,CAItE;AAED,wBAAgB,cAAc,CAAC,WAAW,EAAE,OAAO,GAAG,WAAW,CAiBhE;AAsID,MAAM,WAAW,qBAAqB;IAEpC,KAAK,EAAE,WAAW,CAAC;IAMnB,YAAY,EAAE,MAAM,CAAC;IAErB,WAAW,CAAC,EAAE,iBAAiB,CAAC;IAEhC,MAAM,CAAC,EAAE,eAAe,CAAC;CAC1B;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,KAAK,EACL,YAAY,EACZ,WAA0C,EAC1C,MAAa,GACd,EAAE,qBAAqB,2CAuhEvB"}
|