@pega/cosmos-react-core 2.1.3 → 2.2.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/lib/components/ComboBox/ComboBox.styles.d.ts.map +1 -1
- package/lib/components/ComboBox/ComboBox.styles.js +1 -0
- package/lib/components/ComboBox/ComboBox.styles.js.map +1 -1
- package/lib/components/Configuration/Configuration.d.ts.map +1 -1
- package/lib/components/Configuration/Configuration.js +2 -2
- package/lib/components/Configuration/Configuration.js.map +1 -1
- package/lib/components/HTML/HTML.d.ts +12 -0
- package/lib/components/HTML/HTML.d.ts.map +1 -0
- package/lib/components/HTML/HTML.js +152 -0
- package/lib/components/HTML/HTML.js.map +1 -0
- package/lib/hooks/useAutoResize.d.ts +2 -2
- package/lib/hooks/useAutoResize.d.ts.map +1 -1
- package/lib/hooks/useAutoResize.js +18 -6
- package/lib/hooks/useAutoResize.js.map +1 -1
- package/lib/hooks/useI18n.d.ts +1 -0
- package/lib/hooks/useI18n.d.ts.map +1 -1
- package/lib/i18n/default.d.ts +1 -0
- package/lib/i18n/default.d.ts.map +1 -1
- package/lib/i18n/default.js +1 -0
- package/lib/i18n/default.js.map +1 -1
- package/lib/i18n/i18n.d.ts +2 -0
- package/lib/i18n/i18n.d.ts.map +1 -1
- package/lib/styles/GlobalStyle.d.ts +5 -1
- package/lib/styles/GlobalStyle.d.ts.map +1 -1
- package/lib/styles/GlobalStyle.js +84 -70
- package/lib/styles/GlobalStyle.js.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComboBox.styles.d.ts","sourceRoot":"","sources":["../../../src/components/ComboBox/ComboBox.styles.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,iBAAiB,yGAmD5B,CAAC;
|
|
1
|
+
{"version":3,"file":"ComboBox.styles.d.ts","sourceRoot":"","sources":["../../../src/components/ComboBox/ComboBox.styles.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,iBAAiB,yGAmD5B,CAAC;AAIH,eAAO,MAAM,cAAc,sPASzB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComboBox.styles.js","sourceRoot":"","sources":["../../../src/components/ComboBox/ComboBox.styles.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,EAAE,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAEhD,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,MAAM,iBAAiB,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE,EAAE;IAC9E,OAAO,GAAG,CAAA;;oBAEQ,IAAI,CAAC,UAAU,CAAC,CAAC,YAAY,CAAC;;;;sBAI5B,UAAU,CAAC,cAAc,CAAC,CAAC,QAAQ,CAAC,CAAC,cAAc,CAAC;oBACtD,UAAU,CAAC,cAAc,CAAC,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC;;;;;;;;;;qBAUjD,UAAU,CAAC,KAAK,CAAC,MAAM,UAAU,UAAU,CAAC,cAAc,CAAC,CAAC,cAAc,CAAC;eACjF,UAAU,CAAC,cAAc,CAAC,CAAC,kBAAkB,CAAC;;6BAEhC,IAAI,CAAC,OAAO;;;;;;;;;;;;;;;UAe/B,YAAY;;;;;;;UAOZ,IAAI,CAAC,eAAe,CAAC,MAAM,UAAU,CAAC,cAAc,CAAC,CAAC,eAAe,CAAC;;;;UAItE,IAAI,CAAC,eAAe,CAAC,MAAM,UAAU,CAAC,cAAc,CAAC,CAAC,eAAe,CAAC;;;GAG7E,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,cAAc,GAAG,MAAM,CAAC,iBAAiB,CAAC,CAAC,GAAG,EAAE;IAC3D,OAAO,GAAG,CAAA;;;MAGN,aAAa;;;;GAIhB,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,cAAc,CAAC,YAAY,GAAG,gBAAgB,CAAC","sourcesContent":["import styled, { css } from 'styled-components';\n\nimport { defaultThemeProp } from '../../theme';\nimport { StyledButton } from '../Button';\nimport { StyledFormControl } from '../FormControl';\nimport { StyledPopover } from '../Popover';\n\nexport const StyledSelectInput = styled.div(({ theme: { base, components } }) => {\n return css`\n @media (pointer: coarse) {\n min-height: ${base['hit-area']['finger-min']};\n }\n\n &:focus-within {\n border-color: ${components['form-control'][':focus']['border-color']};\n box-shadow: ${components['form-control'][':focus']['box-shadow']};\n }\n\n &:hover:not([readonly]):not([disabled]):focus-within {\n border-color: transparent;\n }\n\n input {\n min-width: 0;\n width: 100%;\n height: calc(${components.input.height} - 2 * ${components['form-control']['border-width']});\n color: ${components['form-control']['foreground-color']};\n text-overflow: ellipsis;\n margin-inline-start: ${base.spacing};\n }\n\n input,\n input:focus {\n border: none;\n outline: none;\n flex-grow: 1;\n background-color: transparent;\n\n &:read-only {\n cursor: default;\n }\n }\n\n & > ${StyledButton} {\n align-self: stretch;\n height: auto;\n margin-block: -0.0625rem;\n margin-inline-end: -0.0625rem;\n border-start-start-radius: 0;\n border-start-end-radius: calc(\n ${base['border-radius']} * ${components['form-control']['border-radius']}\n );\n border-end-start-radius: 0;\n border-end-end-radius: calc(\n ${base['border-radius']} * ${components['form-control']['border-radius']}\n );\n }\n `;\n});\n\nexport const StyledComboBox = styled(StyledFormControl)(() => {\n return css`\n border: 0;\n\n ${StyledPopover} {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n `;\n});\n\nStyledComboBox.defaultProps = defaultThemeProp;\n"]}
|
|
1
|
+
{"version":3,"file":"ComboBox.styles.js","sourceRoot":"","sources":["../../../src/components/ComboBox/ComboBox.styles.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,EAAE,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAC;AAEhD,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,CAAC,MAAM,iBAAiB,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE,EAAE;IAC9E,OAAO,GAAG,CAAA;;oBAEQ,IAAI,CAAC,UAAU,CAAC,CAAC,YAAY,CAAC;;;;sBAI5B,UAAU,CAAC,cAAc,CAAC,CAAC,QAAQ,CAAC,CAAC,cAAc,CAAC;oBACtD,UAAU,CAAC,cAAc,CAAC,CAAC,QAAQ,CAAC,CAAC,YAAY,CAAC;;;;;;;;;;qBAUjD,UAAU,CAAC,KAAK,CAAC,MAAM,UAAU,UAAU,CAAC,cAAc,CAAC,CAAC,cAAc,CAAC;eACjF,UAAU,CAAC,cAAc,CAAC,CAAC,kBAAkB,CAAC;;6BAEhC,IAAI,CAAC,OAAO;;;;;;;;;;;;;;;UAe/B,YAAY;;;;;;;UAOZ,IAAI,CAAC,eAAe,CAAC,MAAM,UAAU,CAAC,cAAc,CAAC,CAAC,eAAe,CAAC;;;;UAItE,IAAI,CAAC,eAAe,CAAC,MAAM,UAAU,CAAC,cAAc,CAAC,CAAC,eAAe,CAAC;;;GAG7E,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,iBAAiB,CAAC,YAAY,GAAG,gBAAgB,CAAC;AAElD,MAAM,CAAC,MAAM,cAAc,GAAG,MAAM,CAAC,iBAAiB,CAAC,CAAC,GAAG,EAAE;IAC3D,OAAO,GAAG,CAAA;;;MAGN,aAAa;;;;GAIhB,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,cAAc,CAAC,YAAY,GAAG,gBAAgB,CAAC","sourcesContent":["import styled, { css } from 'styled-components';\n\nimport { defaultThemeProp } from '../../theme';\nimport { StyledButton } from '../Button';\nimport { StyledFormControl } from '../FormControl';\nimport { StyledPopover } from '../Popover';\n\nexport const StyledSelectInput = styled.div(({ theme: { base, components } }) => {\n return css`\n @media (pointer: coarse) {\n min-height: ${base['hit-area']['finger-min']};\n }\n\n &:focus-within {\n border-color: ${components['form-control'][':focus']['border-color']};\n box-shadow: ${components['form-control'][':focus']['box-shadow']};\n }\n\n &:hover:not([readonly]):not([disabled]):focus-within {\n border-color: transparent;\n }\n\n input {\n min-width: 0;\n width: 100%;\n height: calc(${components.input.height} - 2 * ${components['form-control']['border-width']});\n color: ${components['form-control']['foreground-color']};\n text-overflow: ellipsis;\n margin-inline-start: ${base.spacing};\n }\n\n input,\n input:focus {\n border: none;\n outline: none;\n flex-grow: 1;\n background-color: transparent;\n\n &:read-only {\n cursor: default;\n }\n }\n\n & > ${StyledButton} {\n align-self: stretch;\n height: auto;\n margin-block: -0.0625rem;\n margin-inline-end: -0.0625rem;\n border-start-start-radius: 0;\n border-start-end-radius: calc(\n ${base['border-radius']} * ${components['form-control']['border-radius']}\n );\n border-end-start-radius: 0;\n border-end-end-radius: calc(\n ${base['border-radius']} * ${components['form-control']['border-radius']}\n );\n }\n `;\n});\n\nStyledSelectInput.defaultProps = defaultThemeProp;\n\nexport const StyledComboBox = styled(StyledFormControl)(() => {\n return css`\n border: 0;\n\n ${StyledPopover} {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n `;\n});\n\nStyledComboBox.defaultProps = defaultThemeProp;\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Configuration.d.ts","sourceRoot":"","sources":["../../../src/components/Configuration/Configuration.tsx"],"names":[],"mappings":"AAAA,OAAO,EAGL,iBAAiB,EACjB,aAAa,EACb,SAAS,EAIT,OAAO,EACR,MAAM,OAAO,CAAC;AAKf,OAAO,EACL,YAAY,EAEZ,oBAAoB,EACpB,sBAAsB,EACvB,MAAM,aAAa,CAAC;AACrB,OAAO,EAEL,WAAW,EACX,eAAe,EAGhB,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAGzC,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAC;IAC7C;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,GAAG,KAAK,CAAC;IAC1B;;OAEG;IACH,YAAY,CAAC,EAAE,WAAW,CAAC;IAC3B;;OAEG;IACH,KAAK,CAAC,EAAE,oBAAoB,CAAC;IAC7B;;OAEG;IACH,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC;;OAEG;IACH,gBAAgB,CAAC,EAAE,WAAW,CAAC;IAC/B;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,WAAW,CAAC,EAAE;QACZ,SAAS,CAAC,EAAE,aAAa,CAAC,cAAc,CAAC,CAAC;KAC3C,CAAC;IACF;;;OAGG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAChC;AAED,QAAA,MAAM,cAAc,eAAkE,CAAC;AAEvF,MAAM,WAAW,yBAAyB;IACxC,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,kBAAkB,CAAC,WAAW,CAAC,CAAC;IAC3C,YAAY,EAAE,eAAe,CAAC;IAC9B,YAAY,EAAE,YAAY,CAAC,sBAAsB,CAAC,CAAC;IACnD,gBAAgB,CAAC,EAAE,WAAW,CAAC;IAC/B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,EAAE,WAAW,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC5D,oBAAoB,EAAE,OAAO,CAAC;CAC/B;AAKD,eAAO,MAAM,oBAAoB,oCAU/B,CAAC;AAEH,QAAA,MAAM,OAAO,eAAiD,CAAC;AAE/D,UAAU,cAAc;IACtB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,CAAC,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC;KAC7B;CACF;AAUD,QAAA,MAAM,aAAa,EAAE,iBAAiB,CAAC,kBAAkB,
|
|
1
|
+
{"version":3,"file":"Configuration.d.ts","sourceRoot":"","sources":["../../../src/components/Configuration/Configuration.tsx"],"names":[],"mappings":"AAAA,OAAO,EAGL,iBAAiB,EACjB,aAAa,EACb,SAAS,EAIT,OAAO,EACR,MAAM,OAAO,CAAC;AAKf,OAAO,EACL,YAAY,EAEZ,oBAAoB,EACpB,sBAAsB,EACvB,MAAM,aAAa,CAAC;AACrB,OAAO,EAEL,WAAW,EACX,eAAe,EAGhB,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAGzC,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,QAAQ,EAAE,SAAS,CAAC;IACpB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC,yBAAyB,CAAC,CAAC;IAC7C;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,SAAS,CAAC,EAAE,KAAK,GAAG,KAAK,CAAC;IAC1B;;OAEG;IACH,YAAY,CAAC,EAAE,WAAW,CAAC;IAC3B;;OAEG;IACH,KAAK,CAAC,EAAE,oBAAoB,CAAC;IAC7B;;OAEG;IACH,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC;;OAEG;IACH,gBAAgB,CAAC,EAAE,WAAW,CAAC;IAC/B;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,WAAW,CAAC,EAAE;QACZ,SAAS,CAAC,EAAE,aAAa,CAAC,cAAc,CAAC,CAAC;KAC3C,CAAC;IACF;;;OAGG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAChC;AAED,QAAA,MAAM,cAAc,eAAkE,CAAC;AAEvF,MAAM,WAAW,yBAAyB;IACxC,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,kBAAkB,CAAC,WAAW,CAAC,CAAC;IAC3C,YAAY,EAAE,eAAe,CAAC;IAC9B,YAAY,EAAE,YAAY,CAAC,sBAAsB,CAAC,CAAC;IACnD,gBAAgB,CAAC,EAAE,WAAW,CAAC;IAC/B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,EAAE,WAAW,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC,CAAC;IAC5D,oBAAoB,EAAE,OAAO,CAAC;CAC/B;AAKD,eAAO,MAAM,oBAAoB,oCAU/B,CAAC;AAEH,QAAA,MAAM,OAAO,eAAiD,CAAC;AAE/D,UAAU,cAAc;IACtB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,CAAC,OAAO,CAAC,EAAE,cAAc,EAAE,CAAC;KAC7B;CACF;AAUD,QAAA,MAAM,aAAa,EAAE,iBAAiB,CAAC,kBAAkB,CAkExD,CAAC;AAIF,eAAe,aAAa,CAAC"}
|
|
@@ -25,7 +25,7 @@ if (windowIsAvailable) {
|
|
|
25
25
|
if (!window[metaKey]) {
|
|
26
26
|
window[metaKey] = [];
|
|
27
27
|
}
|
|
28
|
-
window[metaKey].push({ version: '2.
|
|
28
|
+
window[metaKey].push({ version: '2.2.0' });
|
|
29
29
|
}
|
|
30
30
|
const Configuration = ({ context = ConfigurationContext, children, locale, direction, translations: customTranslations, theme, disableDefaultFontLoading, styleSheetTarget, portalTarget, overrideMap, renderNativeControls }) => {
|
|
31
31
|
const ctx = useContext(context);
|
|
@@ -40,7 +40,7 @@ const Configuration = ({ context = ConfigurationContext, children, locale, direc
|
|
|
40
40
|
const wrappedChildren = ctx[initializedKey] ? (children) : (_jsx(StyleSheetManager, { disableVendorPrefixes: true, target: styleSheetTarget ?? ctx.styleSheetTarget, children: _jsxs(_Fragment, { children: [!disableDefaultFontLoading &&
|
|
41
41
|
mounted &&
|
|
42
42
|
documentIsAvailable &&
|
|
43
|
-
createPortal(_jsx("link", { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap' }, void 0), document.head), _jsx(GlobalStyle, {}, void 0), children] }, void 0) }, void 0));
|
|
43
|
+
createPortal(_jsx("link", { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap', "data-cosmos-global-style": true }, void 0), styleSheetTarget ?? ctx.styleSheetTarget ?? document.head), _jsx(GlobalStyle, {}, void 0), children] }, void 0) }, void 0));
|
|
44
44
|
return (_jsx(ConfigurationContext.Provider, { value: {
|
|
45
45
|
locale: locale ?? ctx.locale,
|
|
46
46
|
direction: direction ?? (locale !== undefined ? directionOfLocale(locale) : ctx.direction),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Configuration.js","sourceRoot":"","sources":["../../../src/components/Configuration/Configuration.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"Configuration.js","sourceRoot":"","sources":["../../../src/components/Configuration/Configuration.tsx"],"names":[],"mappings":"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","sourcesContent":["import {\n createContext,\n useContext,\n FunctionComponent,\n ComponentType,\n ReactNode,\n useMemo,\n useState,\n useEffect,\n Context\n} from 'react';\nimport { createPortal } from 'react-dom';\nimport { ThemeProvider, StyleSheetManager } from 'styled-components';\n\nimport { GlobalStyle } from '../../styles';\nimport {\n ThemeMachine,\n BaseThemeMachine,\n DefaultSettableTheme,\n DefaultThemeDefinition\n} from '../../theme';\nimport {\n createTranslationPack,\n Translation,\n TranslationPack,\n DefaultTranslation,\n direction as directionOfLocale\n} from '../../i18n';\nimport { FileInputProps } from '../File';\nimport { windowIsAvailable, navigatorIsAvailable, documentIsAvailable } from '../../utils';\n\nexport interface ConfigurationProps {\n /**\n * Any components or nodes that should be impacted by the settings applied by this Configuration component.\n */\n children: ReactNode;\n /**\n * Context to read previous configuration values from.\n */\n context?: Context<ConfigurationContextValue>;\n /**\n * User locale as defined in [BCP-47](https://www.techonthenet.com/js/language_tags.php).\n */\n locale?: string;\n /**\n * Override rendering direction of the document. Direction will be based on the locale if now provided.\n */\n direction?: 'ltr' | 'rtl';\n /**\n * Object with (partial) translations.\n */\n translations?: Translation;\n /**\n * Theme object used to override any or all Cosmos theme properties.\n */\n theme?: DefaultSettableTheme;\n /**\n * Disables loading Open Sans from Google Fonts. Only takes effect on the root configuration.\n */\n disableDefaultFontLoading?: boolean;\n /**\n * Target element for loading styles related to `styled-components`.\n */\n styleSheetTarget?: HTMLElement;\n /**\n * Target element for rendering a `ReactDOM` portal.\n */\n portalTarget?: Element;\n /**\n * Override map to replace Cosmos components.\n */\n overrideMap?: {\n FileInput?: ComponentType<FileInputProps>;\n };\n /**\n * Use native HTML5 controls for inputs instead of rich ones.\n * @default false\n */\n renderNativeControls?: boolean;\n}\n\nconst initializedKey = Symbol.for('@pega/cosmos-react-core.configuration.initialized');\n\nexport interface ConfigurationContextValue {\n [initializedKey]: boolean;\n locale: string;\n direction: ConfigurationProps['direction'];\n translations: TranslationPack;\n themeMachine: ThemeMachine<DefaultThemeDefinition>;\n styleSheetTarget?: HTMLElement;\n portalTarget?: Element;\n overrideMap: NonNullable<ConfigurationProps['overrideMap']>;\n renderNativeControls: boolean;\n}\n\nconst defaultProps: Partial<ConfigurationProps> = {};\nconst defaultLocale = navigatorIsAvailable ? navigator.language : 'en';\n\nexport const ConfigurationContext = createContext<ConfigurationContextValue>({\n [initializedKey]: false,\n locale: defaultLocale,\n direction: directionOfLocale(defaultLocale),\n translations: DefaultTranslation,\n themeMachine: BaseThemeMachine,\n styleSheetTarget: documentIsAvailable ? document.head : undefined,\n portalTarget: documentIsAvailable ? document.body : undefined,\n overrideMap: {},\n renderNativeControls: false\n});\n\nconst metaKey = Symbol.for('@pega/cosmos-react-core.metadata');\n\ninterface CosmosMetadata {\n version: string;\n}\n\ndeclare global {\n interface Window {\n [metaKey]: CosmosMetadata[];\n }\n}\n\nif (windowIsAvailable) {\n if (!window[metaKey]) {\n window[metaKey] = [];\n }\n\n window[metaKey].push({ version: '2.2.0' });\n}\n\nconst Configuration: FunctionComponent<ConfigurationProps> = ({\n context = ConfigurationContext,\n children,\n locale,\n direction,\n translations: customTranslations,\n theme,\n disableDefaultFontLoading,\n styleSheetTarget,\n portalTarget,\n overrideMap,\n renderNativeControls\n}: ConfigurationProps) => {\n const ctx = useContext(context);\n const themeMachine = theme\n ? new ThemeMachine<DefaultThemeDefinition>({ theme, parent: ctx.themeMachine })\n : ctx.themeMachine;\n const translations = useMemo(\n () => createTranslationPack({ ...ctx.translations, ...customTranslations }),\n [ctx.translations, customTranslations]\n );\n\n const [mounted, setMounted] = useState(false);\n\n useEffect(() => {\n setMounted(true);\n }, []);\n\n const wrappedChildren = ctx[initializedKey] ? (\n children\n ) : (\n <StyleSheetManager disableVendorPrefixes target={styleSheetTarget ?? ctx.styleSheetTarget}>\n <>\n {!disableDefaultFontLoading &&\n mounted &&\n documentIsAvailable &&\n createPortal(\n <link\n rel='stylesheet'\n href='https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap'\n data-cosmos-global-style\n />,\n styleSheetTarget ?? ctx.styleSheetTarget ?? document.head\n )}\n <GlobalStyle />\n {children}\n </>\n </StyleSheetManager>\n );\n return (\n <ConfigurationContext.Provider\n value={{\n locale: locale ?? ctx.locale,\n direction: direction ?? (locale !== undefined ? directionOfLocale(locale) : ctx.direction),\n translations,\n themeMachine,\n [initializedKey]: true,\n styleSheetTarget: styleSheetTarget ?? ctx.styleSheetTarget,\n portalTarget: portalTarget ?? ctx.portalTarget,\n overrideMap: overrideMap ? { ...ctx.overrideMap, ...overrideMap } : ctx.overrideMap,\n renderNativeControls: renderNativeControls ?? ctx.renderNativeControls\n }}\n >\n <ThemeProvider theme={themeMachine.theme}>{wrappedChildren}</ThemeProvider>\n </ConfigurationContext.Provider>\n );\n};\n\nConfiguration.defaultProps = defaultProps;\n\nexport default Configuration;\n"]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Ref } from 'react';
|
|
2
|
+
import { DefaultTheme } from 'styled-components';
|
|
3
|
+
import { BaseProps, NoChildrenProp } from '../../types';
|
|
4
|
+
export interface HTMLProps extends BaseProps, NoChildrenProp {
|
|
5
|
+
content: string;
|
|
6
|
+
ref?: Ref<HTMLDivElement>;
|
|
7
|
+
}
|
|
8
|
+
export declare const listStyles: import("styled-components").FlattenSimpleInterpolation;
|
|
9
|
+
export declare const getTableStyles: (theme: DefaultTheme) => import("styled-components").FlattenSimpleInterpolation;
|
|
10
|
+
export declare const getHtmlStyles: (theme: DefaultTheme) => string;
|
|
11
|
+
export declare const StyledHTML: import("styled-components").StyledComponent<"div", DefaultTheme, {}, never>;
|
|
12
|
+
//# sourceMappingURL=HTML.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HTML.d.ts","sourceRoot":"","sources":["../../../src/components/HTML/HTML.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AAC5B,OAAe,EAAO,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAK9D,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAExD,MAAM,WAAW,SAAU,SAAQ,SAAS,EAAE,cAAc;IAC1D,OAAO,EAAE,MAAM,CAAC;IAChB,GAAG,CAAC,EAAE,GAAG,CAAC,cAAc,CAAC,CAAC;CAC3B;AAED,eAAO,MAAM,UAAU,wDA2CtB,CAAC;AAEF,eAAO,MAAM,cAAc,UAAW,YAAY,2DA2BjD,CAAC;AAEF,eAAO,MAAM,aAAa,UAAW,YAAY,WAwDhD,CAAC;AAEF,eAAO,MAAM,UAAU,6EAmBrB,CAAC"}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import styled, { css } from 'styled-components';
|
|
2
|
+
import { StyledPopover } from '../Popover';
|
|
3
|
+
import { defaultThemeProp } from '../../theme';
|
|
4
|
+
import { calculateFontSize } from '../../styles';
|
|
5
|
+
export const listStyles = css `
|
|
6
|
+
ul,
|
|
7
|
+
ol {
|
|
8
|
+
padding-inline-start: 2.5rem;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
li {
|
|
12
|
+
margin: 0.5rem 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
ul li {
|
|
16
|
+
ul {
|
|
17
|
+
margin-inline-start: 1rem;
|
|
18
|
+
list-style-type: circle;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
ul ul {
|
|
22
|
+
margin-inline-start: 2rem;
|
|
23
|
+
list-style-type: square;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
ul ul ul {
|
|
27
|
+
margin-inline-start: 3rem;
|
|
28
|
+
list-style-type: disc;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
ol li {
|
|
33
|
+
ol {
|
|
34
|
+
margin-inline-start: 1rem;
|
|
35
|
+
list-style-type: lower-alpha;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
ol ol {
|
|
39
|
+
margin-inline-start: 2rem;
|
|
40
|
+
list-style-type: lower-roman;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
ol ol ol {
|
|
44
|
+
margin-inline-start: 3rem;
|
|
45
|
+
list-style-type: decimal;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
`;
|
|
49
|
+
export const getTableStyles = (theme) => css `
|
|
50
|
+
border-collapse: collapse;
|
|
51
|
+
|
|
52
|
+
td {
|
|
53
|
+
border: 0.0625rem solid ${theme.base.palette['border-line']};
|
|
54
|
+
min-width: 6.25rem;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
tr:first-child {
|
|
58
|
+
td:first-child {
|
|
59
|
+
border-top-left-radius: 0.125rem;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
td:last-child {
|
|
63
|
+
border-top-right-radius: 0.125rem;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
tr:last-child {
|
|
68
|
+
td:first-child {
|
|
69
|
+
border-bottom-left-radius: 0.125rem;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
td:last-child {
|
|
73
|
+
border-bottom-right-radius: 0.125rem;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
`;
|
|
77
|
+
export const getHtmlStyles = (theme) => {
|
|
78
|
+
const { base: { 'font-size': baseFontSize, 'font-scale': baseFontScale, palette }, components: { text } } = theme;
|
|
79
|
+
const fontSize = calculateFontSize(baseFontSize, baseFontScale);
|
|
80
|
+
return `
|
|
81
|
+
${listStyles}
|
|
82
|
+
table {
|
|
83
|
+
${getTableStyles(theme)}
|
|
84
|
+
}
|
|
85
|
+
img {
|
|
86
|
+
max-width: 100%;
|
|
87
|
+
height: auto;
|
|
88
|
+
border-radius: 0.25rem;
|
|
89
|
+
}
|
|
90
|
+
a {
|
|
91
|
+
color: ${palette.interactive};
|
|
92
|
+
}
|
|
93
|
+
pre {
|
|
94
|
+
white-space: break-spaces;
|
|
95
|
+
}
|
|
96
|
+
p {
|
|
97
|
+
min-height: ${fontSize[text.primary['font-size']]};
|
|
98
|
+
}
|
|
99
|
+
h1 {
|
|
100
|
+
font-size: ${fontSize[text.h1['font-size']]};
|
|
101
|
+
font-weight: ${text.h1['font-weight']};
|
|
102
|
+
min-height: ${fontSize[text.h1['font-size']]};
|
|
103
|
+
}
|
|
104
|
+
h2 {
|
|
105
|
+
font-size: ${fontSize[text.h2['font-size']]};
|
|
106
|
+
font-weight: ${text.h2['font-weight']};
|
|
107
|
+
min-height: ${fontSize[text.h2['font-size']]};
|
|
108
|
+
}
|
|
109
|
+
h3 {
|
|
110
|
+
font-size: ${fontSize[text.h3['font-size']]};
|
|
111
|
+
font-weight: ${text.h3['font-weight']};
|
|
112
|
+
min-height: ${fontSize[text.h3['font-size']]};
|
|
113
|
+
}
|
|
114
|
+
h4 {
|
|
115
|
+
font-size: ${fontSize[text.h4['font-size']]};
|
|
116
|
+
font-weight: ${text.h4['font-weight']};
|
|
117
|
+
min-height: ${fontSize[text.h4['font-size']]};
|
|
118
|
+
}
|
|
119
|
+
h5 {
|
|
120
|
+
font-size: ${fontSize[text.h5['font-size']]};
|
|
121
|
+
font-weight: ${text.h5['font-weight']};
|
|
122
|
+
min-height: ${fontSize[text.h5['font-size']]};
|
|
123
|
+
}
|
|
124
|
+
h6 {
|
|
125
|
+
font-size: ${fontSize[text.h6['font-size']]};
|
|
126
|
+
font-weight: ${text.h6['font-weight']};
|
|
127
|
+
min-height: ${fontSize[text.h6['font-size']]};
|
|
128
|
+
}
|
|
129
|
+
`;
|
|
130
|
+
};
|
|
131
|
+
export const StyledHTML = styled.div(({ theme }) => {
|
|
132
|
+
return css `
|
|
133
|
+
width: 100%;
|
|
134
|
+
overflow-x: auto;
|
|
135
|
+
${getHtmlStyles(theme)}
|
|
136
|
+
|
|
137
|
+
${StyledPopover} ul {
|
|
138
|
+
ul {
|
|
139
|
+
padding-inline-start: 0;
|
|
140
|
+
}
|
|
141
|
+
ol {
|
|
142
|
+
padding-inline-start: 0;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
${StyledPopover} li {
|
|
147
|
+
margin: 0;
|
|
148
|
+
}
|
|
149
|
+
`;
|
|
150
|
+
});
|
|
151
|
+
StyledHTML.defaultProps = defaultThemeProp;
|
|
152
|
+
//# sourceMappingURL=HTML.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"HTML.js","sourceRoot":"","sources":["../../../src/components/HTML/HTML.ts"],"names":[],"mappings":"AACA,OAAO,MAAM,EAAE,EAAE,GAAG,EAAgB,MAAM,mBAAmB,CAAC;AAE9D,OAAO,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAC3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,EAAE,iBAAiB,EAAY,MAAM,cAAc,CAAC;AAQ3D,MAAM,CAAC,MAAM,UAAU,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2C5B,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,KAAmB,EAAE,EAAE,CAAC,GAAG,CAAA;;;;8BAI5B,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;CAuB9D,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,KAAmB,EAAE,EAAE;IACnD,MAAM,EACJ,IAAI,EAAE,EAAE,WAAW,EAAE,YAAY,EAAE,YAAY,EAAE,aAAa,EAAE,OAAO,EAAE,EACzE,UAAU,EAAE,EAAE,IAAI,EAAE,EACrB,GAAG,KAAK,CAAC;IACV,MAAM,QAAQ,GAAG,iBAAiB,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC;IAChE,OAAO;MACH,UAAU;;QAER,cAAc,CAAC,KAAK,CAAC;;;;;;;;eAQd,OAAO,CAAC,WAAW;;;;;;oBAMd,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAa,CAAC;;;mBAGhD,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;qBACxC,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC;oBACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;;;mBAG3C,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;qBACxC,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC;oBACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;;;mBAG3C,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;qBACxC,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC;oBACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;;;mBAG3C,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;qBACxC,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC;oBACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;;;mBAG3C,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;qBACxC,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC;oBACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;;;mBAG3C,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;qBACxC,IAAI,CAAC,EAAE,CAAC,aAAa,CAAC;oBACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,WAAW,CAAa,CAAC;;GAE3D,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE;IACjD,OAAO,GAAG,CAAA;;;MAGN,aAAa,CAAC,KAAK,CAAC;;MAEpB,aAAa;;;;;;;;;MASb,aAAa;;;GAGhB,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,UAAU,CAAC,YAAY,GAAG,gBAAgB,CAAC","sourcesContent":["import { Ref } from 'react';\nimport styled, { css, DefaultTheme } from 'styled-components';\n\nimport { StyledPopover } from '../Popover';\nimport { defaultThemeProp } from '../../theme';\nimport { calculateFontSize, FontSize } from '../../styles';\nimport { BaseProps, NoChildrenProp } from '../../types';\n\nexport interface HTMLProps extends BaseProps, NoChildrenProp {\n content: string;\n ref?: Ref<HTMLDivElement>;\n}\n\nexport const listStyles = css`\n ul,\n ol {\n padding-inline-start: 2.5rem;\n }\n\n li {\n margin: 0.5rem 0;\n }\n\n ul li {\n ul {\n margin-inline-start: 1rem;\n list-style-type: circle;\n }\n\n ul ul {\n margin-inline-start: 2rem;\n list-style-type: square;\n }\n\n ul ul ul {\n margin-inline-start: 3rem;\n list-style-type: disc;\n }\n }\n\n ol li {\n ol {\n margin-inline-start: 1rem;\n list-style-type: lower-alpha;\n }\n\n ol ol {\n margin-inline-start: 2rem;\n list-style-type: lower-roman;\n }\n\n ol ol ol {\n margin-inline-start: 3rem;\n list-style-type: decimal;\n }\n }\n`;\n\nexport const getTableStyles = (theme: DefaultTheme) => css`\n border-collapse: collapse;\n\n td {\n border: 0.0625rem solid ${theme.base.palette['border-line']};\n min-width: 6.25rem;\n }\n\n tr:first-child {\n td:first-child {\n border-top-left-radius: 0.125rem;\n }\n\n td:last-child {\n border-top-right-radius: 0.125rem;\n }\n }\n\n tr:last-child {\n td:first-child {\n border-bottom-left-radius: 0.125rem;\n }\n\n td:last-child {\n border-bottom-right-radius: 0.125rem;\n }\n }\n`;\n\nexport const getHtmlStyles = (theme: DefaultTheme) => {\n const {\n base: { 'font-size': baseFontSize, 'font-scale': baseFontScale, palette },\n components: { text }\n } = theme;\n const fontSize = calculateFontSize(baseFontSize, baseFontScale);\n return `\n ${listStyles}\n table {\n ${getTableStyles(theme)}\n }\n img {\n max-width: 100%;\n height: auto;\n border-radius: 0.25rem;\n }\n a {\n color: ${palette.interactive};\n }\n pre {\n white-space: break-spaces;\n }\n p {\n min-height: ${fontSize[text.primary['font-size'] as FontSize]};\n }\n h1 {\n font-size: ${fontSize[text.h1['font-size'] as FontSize]};\n font-weight: ${text.h1['font-weight']};\n min-height: ${fontSize[text.h1['font-size'] as FontSize]};\n }\n h2 {\n font-size: ${fontSize[text.h2['font-size'] as FontSize]};\n font-weight: ${text.h2['font-weight']};\n min-height: ${fontSize[text.h2['font-size'] as FontSize]};\n }\n h3 {\n font-size: ${fontSize[text.h3['font-size'] as FontSize]};\n font-weight: ${text.h3['font-weight']};\n min-height: ${fontSize[text.h3['font-size'] as FontSize]};\n }\n h4 {\n font-size: ${fontSize[text.h4['font-size'] as FontSize]};\n font-weight: ${text.h4['font-weight']};\n min-height: ${fontSize[text.h4['font-size'] as FontSize]};\n }\n h5 {\n font-size: ${fontSize[text.h5['font-size'] as FontSize]};\n font-weight: ${text.h5['font-weight']};\n min-height: ${fontSize[text.h5['font-size'] as FontSize]};\n }\n h6 {\n font-size: ${fontSize[text.h6['font-size'] as FontSize]};\n font-weight: ${text.h6['font-weight']};\n min-height: ${fontSize[text.h6['font-size'] as FontSize]};\n }\n `;\n};\n\nexport const StyledHTML = styled.div(({ theme }) => {\n return css`\n width: 100%;\n overflow-x: auto;\n ${getHtmlStyles(theme)}\n\n ${StyledPopover} ul {\n ul {\n padding-inline-start: 0;\n }\n ol {\n padding-inline-start: 0;\n }\n }\n\n ${StyledPopover} li {\n margin: 0;\n }\n `;\n});\n\nStyledHTML.defaultProps = defaultThemeProp;\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MutableRefObject } from 'react';
|
|
2
2
|
/**
|
|
3
3
|
* @example const [ref, resizeFunction] = useAutoResize();
|
|
4
4
|
* maxHeight should be provided in pixels without units
|
|
@@ -7,6 +7,6 @@ import { RefObject } from 'react';
|
|
|
7
7
|
* * resizeFunction:: The function to call to automatically resize the element.
|
|
8
8
|
* element refers to auto resizable element
|
|
9
9
|
*/
|
|
10
|
-
declare const useAutoResize: <T extends HTMLElement = HTMLElement>(maxHeight?: number | undefined, minHeightProp?: number | undefined) => [
|
|
10
|
+
declare const useAutoResize: <T extends HTMLElement = HTMLElement>(maxHeight?: number | undefined, minHeightProp?: number | undefined) => [MutableRefObject<T | null>, () => void];
|
|
11
11
|
export default useAutoResize;
|
|
12
12
|
//# sourceMappingURL=useAutoResize.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useAutoResize.d.ts","sourceRoot":"","sources":["../../src/hooks/useAutoResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,
|
|
1
|
+
{"version":3,"file":"useAutoResize.d.ts","sourceRoot":"","sources":["../../src/hooks/useAutoResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAI3D;;;;;;;GAOG;AACH,QAAA,MAAM,aAAa,kJAGmB,IAAI,CAqCzC,CAAC;AAEF,eAAe,aAAa,CAAC"}
|
|
@@ -12,21 +12,33 @@ const useAutoResize = (maxHeight, minHeightProp) => {
|
|
|
12
12
|
const element = useRef(null);
|
|
13
13
|
const [minHeight, setMinHeight] = useState(minHeightProp || 0);
|
|
14
14
|
const autoResize = () => {
|
|
15
|
+
let scrollHeightElement = element.current;
|
|
16
|
+
let iframe;
|
|
17
|
+
if (element.current && element.current instanceof HTMLIFrameElement) {
|
|
18
|
+
iframe = element.current;
|
|
19
|
+
scrollHeightElement =
|
|
20
|
+
element.current.contentDocument?.querySelector('body') ?? element.current;
|
|
21
|
+
}
|
|
15
22
|
if (element.current) {
|
|
16
23
|
let newMinHeight = minHeight;
|
|
17
24
|
if (!minHeight) {
|
|
18
|
-
newMinHeight =
|
|
25
|
+
newMinHeight = scrollHeightElement.scrollHeight;
|
|
19
26
|
setMinHeight(newMinHeight);
|
|
20
27
|
}
|
|
21
28
|
// Reset the heights to the base height so there is an overflow / or none to calculate the new height
|
|
22
|
-
|
|
29
|
+
scrollHeightElement.style.height = `${newMinHeight}px`;
|
|
23
30
|
if (maxHeight) {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
31
|
+
scrollHeightElement.style.overflowY =
|
|
32
|
+
scrollHeightElement.scrollHeight > maxHeight ? 'auto' : 'hidden';
|
|
33
|
+
const height = `${Math.min(scrollHeightElement.scrollHeight, maxHeight)}px`;
|
|
34
|
+
scrollHeightElement.style.height = height;
|
|
35
|
+
if (iframe)
|
|
36
|
+
iframe.style.height = height;
|
|
27
37
|
}
|
|
28
38
|
else {
|
|
29
|
-
|
|
39
|
+
scrollHeightElement.style.height = `${scrollHeightElement.scrollHeight}px`;
|
|
40
|
+
if (iframe)
|
|
41
|
+
iframe.style.height = `${scrollHeightElement.scrollHeight}px`;
|
|
30
42
|
}
|
|
31
43
|
}
|
|
32
44
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useAutoResize.js","sourceRoot":"","sources":["../../src/hooks/useAutoResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,QAAQ,
|
|
1
|
+
{"version":3,"file":"useAutoResize.js","sourceRoot":"","sources":["../../src/hooks/useAutoResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAoB,MAAM,OAAO,CAAC;AAE3D,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC;;;;;;;GAOG;AACH,MAAM,aAAa,GAAG,CACpB,SAAkB,EAClB,aAAsB,EACoB,EAAE;IAC5C,MAAM,OAAO,GAAG,MAAM,CAAW,IAAI,CAAC,CAAC;IACvC,MAAM,CAAC,SAAS,EAAE,YAAY,CAAC,GAAG,QAAQ,CAAC,aAAa,IAAI,CAAC,CAAC,CAAC;IAE/D,MAAM,UAAU,GAAG,GAAG,EAAE;QACtB,IAAI,mBAAmB,GAAgB,OAAO,CAAC,OAAsB,CAAC;QACtE,IAAI,MAAqC,CAAC;QAC1C,IAAI,OAAO,CAAC,OAAO,IAAI,OAAO,CAAC,OAAO,YAAY,iBAAiB,EAAE;YACnE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;YACzB,mBAAmB;gBACjB,OAAO,CAAC,OAAO,CAAC,eAAe,EAAE,aAAa,CAAC,MAAM,CAAC,IAAI,OAAO,CAAC,OAAO,CAAC;SAC7E;QACD,IAAI,OAAO,CAAC,OAAO,EAAE;YACnB,IAAI,YAAY,GAAG,SAAS,CAAC;YAC7B,IAAI,CAAC,SAAS,EAAE;gBACd,YAAY,GAAG,mBAAmB,CAAC,YAAY,CAAC;gBAChD,YAAY,CAAC,YAAY,CAAC,CAAC;aAC5B;YACD,qGAAqG;YACrG,mBAAmB,CAAC,KAAK,CAAC,MAAM,GAAG,GAAG,YAAY,IAAI,CAAC;YAEvD,IAAI,SAAS,EAAE;gBACb,mBAAmB,CAAC,KAAK,CAAC,SAAS;oBACjC,mBAAmB,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC;gBACnE,MAAM,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAC,YAAY,EAAE,SAAS,CAAC,IAAI,CAAC;gBAC5E,mBAAmB,CAAC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;gBAC1C,IAAI,MAAM;oBAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;aAC1C;iBAAM;gBACL,mBAAmB,CAAC,KAAK,CAAC,MAAM,GAAG,GAAG,mBAAmB,CAAC,YAAY,IAAI,CAAC;gBAC3E,IAAI,MAAM;oBAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,GAAG,mBAAmB,CAAC,YAAY,IAAI,CAAC;aAC3E;SACF;IACH,CAAC,CAAC;IAEF,MAAM,mBAAmB,GAAG,QAAQ,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;IAEtD,OAAO,CAAC,OAAO,EAAE,mBAAmB,CAAC,CAAC;AACxC,CAAC,CAAC;AAEF,eAAe,aAAa,CAAC","sourcesContent":["import { useRef, useState, MutableRefObject } from 'react';\n\nimport { debounce } from '../utils';\n\n/**\n * @example const [ref, resizeFunction] = useAutoResize();\n * maxHeight should be provided in pixels without units\n * minHeight should be provided in pixels without units\n * @returns * ref:: A reference for the element that the resize functionality should be applied to. [React RefObject](https://reactjs.org/docs/refs-and-the-dom.html)\n * * resizeFunction:: The function to call to automatically resize the element.\n * element refers to auto resizable element\n */\nconst useAutoResize = <T extends HTMLElement = HTMLElement>(\n maxHeight?: number,\n minHeightProp?: number\n): [MutableRefObject<T | null>, () => void] => {\n const element = useRef<T | null>(null);\n const [minHeight, setMinHeight] = useState(minHeightProp || 0);\n\n const autoResize = () => {\n let scrollHeightElement: HTMLElement = element.current as HTMLElement;\n let iframe: HTMLIFrameElement | undefined;\n if (element.current && element.current instanceof HTMLIFrameElement) {\n iframe = element.current;\n scrollHeightElement =\n element.current.contentDocument?.querySelector('body') ?? element.current;\n }\n if (element.current) {\n let newMinHeight = minHeight;\n if (!minHeight) {\n newMinHeight = scrollHeightElement.scrollHeight;\n setMinHeight(newMinHeight);\n }\n // Reset the heights to the base height so there is an overflow / or none to calculate the new height\n scrollHeightElement.style.height = `${newMinHeight}px`;\n\n if (maxHeight) {\n scrollHeightElement.style.overflowY =\n scrollHeightElement.scrollHeight > maxHeight ? 'auto' : 'hidden';\n const height = `${Math.min(scrollHeightElement.scrollHeight, maxHeight)}px`;\n scrollHeightElement.style.height = height;\n if (iframe) iframe.style.height = height;\n } else {\n scrollHeightElement.style.height = `${scrollHeightElement.scrollHeight}px`;\n if (iframe) iframe.style.height = `${scrollHeightElement.scrollHeight}px`;\n }\n }\n };\n\n const debouncedAutoResize = debounce(autoResize, 100);\n\n return [element, debouncedAutoResize];\n};\n\nexport default useAutoResize;\n"]}
|
package/lib/hooks/useI18n.d.ts
CHANGED
|
@@ -205,6 +205,7 @@ declare const useI18n: () => import("../i18n/translate").TranslationFunction<Rea
|
|
|
205
205
|
rte_unindent_selection: string;
|
|
206
206
|
rte_toolbar_instructions: string;
|
|
207
207
|
rte_text_formatting_toolbar: string;
|
|
208
|
+
rte_link: string;
|
|
208
209
|
feed_new_post: string;
|
|
209
210
|
feed_cancel_conversation: string;
|
|
210
211
|
feed_context: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useI18n.d.ts","sourceRoot":"","sources":["../../src/hooks/useI18n.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,QAAA,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"useI18n.d.ts","sourceRoot":"","sources":["../../src/hooks/useI18n.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAGZ,CAAC;AAEF,eAAe,OAAO,CAAC"}
|
package/lib/i18n/default.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAirBE"}
|
package/lib/i18n/default.js
CHANGED
|
@@ -235,6 +235,7 @@ export default {
|
|
|
235
235
|
rte_unindent_selection: 'Unindent selection',
|
|
236
236
|
rte_toolbar_instructions: 'Hit tab to enter the editor toolbar',
|
|
237
237
|
rte_text_formatting_toolbar: 'Text formatting toolbar',
|
|
238
|
+
rte_link: 'Link',
|
|
238
239
|
/* social:Feed */
|
|
239
240
|
feed_new_post: 'New post',
|
|
240
241
|
feed_cancel_conversation: 'Cancel conversation',
|
package/lib/i18n/default.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"default.js","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":"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","sourcesContent":["export default {\n // -----------------------------------------------------------------------------\n // Common translation entries\n // -----------------------------------------------------------------------------\n\n /* Nouns, Types, Terms, Phrases, etc... */\n filters: 'Filters',\n actions: 'Actions',\n status: 'Status',\n additional_info: 'Additional info',\n search_placeholder_default: 'Search…',\n\n /* Verbs */\n remove: 'Remove',\n follow: 'Follow',\n unfollow: 'Unfollow',\n add: 'Add',\n cancel: 'Cancel',\n try_again: 'Try again',\n update: 'Update',\n submit: 'Submit',\n edit: 'Edit',\n preview: 'Preview',\n delete: 'Delete',\n close: 'Close',\n activate: 'Activate',\n expand: 'Expand',\n collapse: 'Collapse',\n accept: 'Accept',\n clear: 'Clear',\n use: 'Use',\n undo: 'Undo',\n redo: 'Redo',\n\n /* Static verb noun */\n view_all: 'View all',\n view_less: 'View less',\n show_more: 'Show more',\n show_less: 'Show less',\n clear_all: 'Clear all',\n link_open_in_tab_text: 'Open in tab',\n edit_details: 'Edit details',\n add_emoji: 'Add emoji',\n\n /* Dynamic verb {noun} */\n close_noun: 'Close: {0}',\n view_all_noun: 'View all: {0}',\n view_less_noun: 'View less: {0}',\n expand_noun: 'Expand: {0}',\n add_noun: 'Add: {0}',\n collapse_noun: 'Collapse: {0}',\n checked_noun: '{0}: checked',\n selected_noun: '{0}: selected',\n deselected_noun: '{0}: unselected',\n use_input_value: 'Use {0}',\n preview_of_noun: 'Preview of: {0}',\n\n /* States */\n edited: 'Edited',\n done: 'Done',\n uploading: 'Uploading',\n loading: 'Loading…',\n submitting: 'Submitting…',\n no_items: 'No items',\n unknown_error: 'Unknown error',\n image_load_error: 'Error loading image',\n selected: 'Selected',\n\n /* Date and time */\n day_label_a11y: 'Day',\n day_placeholder: 'DD',\n quarter_label_a11y: 'Quarter',\n month_label_a11y: 'Month',\n month_placeholder: 'MM',\n year_label_a11y: 'Year',\n year_placeholder: 'YYYY',\n hour_label_a11y: 'Hour',\n hour_placeholder: 'hh',\n minute_label_a11y: 'Minute',\n minute_placeholder: 'mm',\n second_label_a11y: 'Second',\n second_placeholder: 'ss',\n meridiem_label_a11y: 'Meridiem',\n meridiem_value_am: 'AM',\n meridiem_value_pm: 'PM',\n week_label_a11y: 'Week',\n week_placeholder: 'ww',\n week_text: 'Week',\n seconds_text: 'Seconds',\n minutes_text: 'Minutes',\n hours_text: 'Hours',\n days_text: 'Days',\n time_text: 'Time',\n time_format_info: 'hh:mm:ss',\n week_text_short: 'Wk',\n day_text_short: 'd',\n hour_text_short: 'h',\n minute_text_short: 'm',\n second_text_short: 's',\n date_quarter_q1: 'Q1 {0}',\n date_quarter_q2: 'Q2 {0}',\n date_quarter_q3: 'Q3 {0}',\n date_quarter_q4: 'Q4 {0}',\n\n /* Count based types */\n attachments_count: {\n zero: 'No attachments',\n one: '{0} attachment',\n two: '{0} attachments',\n few: '{0} attachments',\n many: '{0} attachments',\n other: '{0} attachments'\n },\n results_count: {\n zero: 'No results',\n one: '{0} result',\n two: '{0} results',\n few: '{0} results',\n many: '{0} results',\n other: '{0} results'\n },\n new_emails_count: {\n zero: 'No new emails',\n one: '{0} new email',\n two: '{0} new emails',\n few: '{0} new emails',\n many: '{0} new emails',\n other: '{0} new emails'\n },\n\n /* Pagination */\n pagination_page_of: 'Page {0} of {1}',\n pagination_next: 'Next',\n pagination_prev: 'Previous',\n\n /* Miscellaneous */\n x_of_y: '{0} of {1}',\n\n // -----------------------------------------------------------------------------\n // {pkg}:{ComponentDir} entries\n // -----------------------------------------------------------------------------\n\n /* core:Link */\n preview_link_arrow_navigation: 'Arrow left or right for link options',\n\n /* core:SkipLinks */\n go_to_main_content: 'Go to main content',\n\n /* core:AppShell */\n app_shell_create: 'Create',\n app_shell_open_nav: 'Open navigation menu',\n\n /* core:ComboBox */\n combobox_open_close: 'Arrow down to open, press escape to close.',\n combobox_search_instructions: 'Start typing to search',\n combobox_open_list_button_a11y: 'Open combobox list',\n combobox_close_list_button_a11y: 'Close combobox list',\n\n /* core:Menu */\n menu_selection_instructions: 'Press enter to select items.',\n menu_item_expand_arrow: 'Arrow right to expand.',\n menu_item_collapse_arrow: 'Arrow left to collapse.',\n menu_item_collapse_shift_space: 'Press shift space to collapse.',\n menu_item_shift_space_expand_collapse: 'Press shift space to expand and collapse.',\n\n /* core:Modal */\n modal_minimize: 'Minimize modal',\n modal_maximize: 'Maximize modal',\n modal_dock: 'Dock Modal',\n modal_close: 'Close modal',\n\n /* core:Datetime */\n selected_date_a11y: 'Selected date:',\n open_calendar_button_a11y: 'Open calendar',\n close_calendar_button_a11y: 'Close calendar',\n open_time_button_a11y: 'Open time picker',\n close_time_button_a11y: 'Close time picker',\n picker_next_month: 'Next month',\n picker_prev_month: 'Previous month',\n picker_jump_to_month: 'Jump to month',\n calendar_assist: 'Use cursor keys to navigate dates',\n\n /* core:Boolean */\n boolean_display_true_label: 'Yes',\n boolean_display_false_label: 'No',\n\n /* core:Number */\n measured_in: 'measured in {0}',\n number_increment_value_by: 'Increment value by {0}',\n number_decrement_value_by: 'Decrement value by {0}',\n\n /* core:Banner */\n banner_dismiss_button_label_a11y: 'Dismiss banner',\n\n /* core:File */\n file_upload_text_main: 'Drag and drop or {0}',\n file_upload_text_one: 'choose file',\n file_upload_text_multiple: 'choose files',\n\n /* core:Location */\n my_current_location_button_a11y: 'Use my current location',\n location_input_placeholder: 'Enter a location',\n location_not_found_text: 'Location not found',\n allow_location_permissions_text:\n 'To get current location, allow location permissions for this app',\n\n /* work:CaseView */\n utilities_summary: 'Utilities summary',\n expand_summary_panel: 'Expand summary panel',\n collapse_summary_panel: 'Collapse summary panel',\n expand_utilities_panel: 'Expand utilities panel',\n collapse_utilities_panel: 'Collapse utilities panel',\n\n /* work:CasePreview */\n close_preview: 'Close preview',\n\n /* work:Confirmation */\n confirmation_details: 'Details',\n confirmation_whats_next: \"What's next\",\n confirmation_open_tasks: 'Open tasks',\n\n /* work:Stakeholders */\n add_stakeholders: 'Add stakeholder',\n edit_stakeholder: 'Edit stakeholder',\n view_stakeholders: 'Stakeholders',\n stakeholders_role: 'Role',\n stakeholders: {\n zero: '{0} stakeholders',\n one: '{0} stakeholder',\n two: '{0} stakeholders',\n few: '{0} stakeholders',\n many: '{0} stakeholders',\n other: '{0} stakeholders'\n },\n\n /* work:Tags */\n edit_tags: 'Edit tags',\n tags: 'Tags',\n\n /* work:AppAnnouncement */\n app_announcement_dismiss_button_label_a11y: 'Hide until next update',\n app_announcement_details_list_header: 'Announcements',\n app_announcement_whats_new_button_label: \"See what's new\",\n\n /* rte:RichTextEditor */\n rte_heading_style: 'Heading style',\n rte_bold: 'Bold',\n rte_italic: 'Italic',\n rte_strike_through: 'Strike-through',\n rte_cut: 'Cut',\n rte_copy: 'Copy',\n rte_paste: 'Paste',\n rte_bulleted_list: 'Bulleted list',\n rte_numbered_list: 'Numbered list',\n rte_indent: 'Indent',\n rte_unindent: 'Unindent',\n rte_table: 'Table',\n rte_anchor: 'Anchor',\n rte_image: 'Image',\n rte_invalid_html: 'Invalid HTML',\n rte_invalid_url: 'Invalid URL',\n rte_change_text_format: 'Change text format to',\n rte_toggle_unordered_list: 'Toggle unordered list',\n rte_indent_selection: 'Indent selection',\n rte_unindent_selection: 'Unindent selection',\n rte_toolbar_instructions: 'Hit tab to enter the editor toolbar',\n rte_text_formatting_toolbar: 'Text formatting toolbar',\n\n /* social:Feed */\n feed_new_post: 'New post',\n feed_cancel_conversation: 'Cancel conversation',\n feed_context: 'in {0}',\n feed_liked_by: 'Liked by {0}',\n feed_likes: 'Likes',\n feed_private_post: 'Private post',\n feed_public_post: 'Public post',\n feed_recipients: 'Recipients',\n feed_edit_post: 'Edit post',\n feed_post_likes: {\n zero: 'No likes',\n one: '{0} like',\n two: '{0} likes',\n few: '{0} likes',\n many: '{0} likes',\n other: '{0} likes'\n },\n feed_attachments_added: {\n zero: 'No attachments added',\n one: '{0} attachment added',\n two: '{0} attachments added',\n few: '{0} attachments added',\n many: '{0} attachments added',\n other: '{0} attachments added'\n },\n feed_attachments_removed: {\n zero: 'No attachments removed',\n one: '{0} attachment removed',\n two: '{0} attachments removed',\n few: '{0} attachments removed',\n many: '{0} attachments removed',\n other: '{0} attachments removed'\n },\n feed_post_liked: 'Post has been liked',\n feed_post_deliked: 'Post has been deliked',\n feed_post_removed: 'Post has been removed',\n feed_reply_removed: 'Reply has been removed',\n showing_num_of_num: 'Showing {0} of {1}',\n\n /* cs:Chat */\n scroll_to_latest_message: 'Scroll to latest message',\n scroll_to_unread_messages: 'Scroll to unread messages',\n suggested_replies_current_of_total: 'Suggested replies {0} of {1}',\n confidence_percentage: '{0}% confidence',\n next_suggested_reply: 'Next suggested reply',\n prev_suggested_reply: 'Previous suggested reply',\n dismiss_suggested_replies: 'Dismiss suggested replies',\n\n /* cs:Email */\n more_count: '{0} more…',\n empty_search: 'Enter a search term',\n new_messages: 'New messages',\n earlier_transcripts: 'Earlier transcripts',\n send_label: 'Send',\n enter_message: 'Enter message',\n download: 'Download',\n close_chat_utility: 'Close chat utility',\n subject: 'Subject',\n to: 'To',\n from: 'From',\n cc: 'Cc',\n bcc: 'Bcc',\n date: 'Date',\n reply: 'Reply',\n reply_all: 'Reply all',\n auto_reply: 'Auto-Reply',\n forward: 'Forward',\n email: 'Email',\n email_message: 'Email message',\n email_filters: 'Email filters',\n unread_email_count: 'unread email count is {0}',\n priority: 'Priority',\n inbox: 'Inbox',\n insert: 'Insert',\n email_add_attachment: 'Add attachment, the maximum number of attachments allowed is {0}.',\n email_disable_attachment:\n 'Adding attachments are disabled, the maximum number of attachments allowed is {0}.',\n email_remove_attachment: 'Remove attachment',\n\n /* cs:ArticleList */\n article_list_label_a11y: 'Article list',\n article_list_filter_label_a11y: 'Article lists filter',\n article_list_header_submit_label: 'Submit',\n\n /* cs:CallControlPanel */\n call_panel_heading: 'Pega call',\n call_panel_make_new_call: 'Make new call',\n call_panel_agent_status: 'Status',\n call_panel_pause_call_menu_item: 'Pause call',\n call_panel_resume_call_menu_item: 'Resume call',\n call_panel_mute_mic_menu_item: 'Mute microphone',\n call_panel_unmute_mic_menu_item: 'Unmute microphone',\n call_panel_call_on_hold: 'On hold {0}',\n call_panel_consult_call_menu_item: 'Consult',\n call_panel_transfer_call_menu_item: 'Transfer',\n call_panel_send_dtmf_menu_item: 'Send DTMF',\n call_panel_conference_call_menu_item: 'Conference',\n call_panel_hangup_call_menu_item: 'Hang up',\n call_panel_contacts_add_to_favorites: 'Add to favorites',\n call_panel_contacts_remove_from_favorites: 'Remove from favorites',\n call_panel_contacts_call_button_label: 'Call',\n call_panel_contacts_list_heading: 'Contacts',\n call_panel_contacts_favorites_heading: 'Favorites',\n call_panel_contacts_dial_pad_heading: 'Dial pad',\n call_panel_new_call_heading: 'New call',\n call_panel_consult_with_heading: 'Consult with',\n call_panel_conference_heading: 'Conference',\n call_panel_transfer_button_label: 'Transfer',\n call_panel_transfer_call_heading: 'Transfer call',\n call_panel_transfer_reason_label: 'Reason',\n call_panel_transfer_to_label: 'Transfer to',\n call_panel_transfer_comments_label: 'Comments',\n call_panel_transfer_call_option_label: 'Call option',\n call_panel_transfer_call_only_option: 'Call only',\n call_panel_transfer_call_and_interaction_option: 'Call and interaction',\n call_panel_merge_call_menu_item: 'Merge',\n call_panel_send_dtmf_heading: 'Send DTMF',\n call_panel_expand: 'Expand call control panel',\n call_panel_collapse: 'Collapse call control panel',\n\n /* cs:DialPad */\n dial_pad_keyboard: 'Dial pad keyboard',\n dial_pad_phone_number_input_label: 'Phone number input',\n dial_pad_call_button_label: 'Call {0}',\n\n /* cs:TaskManager */\n dismiss_case: 'Dismiss case',\n task_manager_add_task: 'Add task',\n task_manager_wrap_up: 'Wrap up',\n task_manager_tasks: 'Tasks',\n add_tasks: 'Add tasks',\n selected_tasks: 'Selected tasks',\n no_selected_tasks: 'No selected tasks',\n task_picker_close: 'Close task picker',\n task_manager_overflow_menu: 'Menu for added tasks',\n go_label: 'Go',\n go_label_a11y: 'Go to {0}',\n continue_label: 'Continue',\n continue_label_a11y: 'Continue with {0}',\n review_label: 'Review',\n review_label_a11y: 'Review {0}',\n dismiss_label: 'Dismiss',\n dismiss_label_a11y: 'Dismiss {0}',\n task_manager_search_results_empty_text: 'No tasks',\n task_manager_delete_task: 'Delete {0}',\n search_tasks: 'Search tasks…',\n task_manager_picker_add_label: {\n zero: 'No items to add',\n one: 'Add {0} new item',\n two: 'Add {0} new item',\n few: 'Add {0} new item',\n many: 'Add {0} new item',\n other: 'Add {0} new item'\n },\n\n /* cs:Sentiment */\n sentiment_positive: 'Positive',\n sentiment_negative: 'Negative',\n sentiment_neutral: 'Neutral',\n\n /* cs:IntelligentGuidance */\n expand_intelligent_guidance_button_a11y: 'Expand intelligent guidance',\n collapse_intelligent_guidance_button_a11y: 'Collapse intelligent guidance',\n no_recommendations: 'No recommendations',\n\n /* condition-builder:ConditionBuilder */\n condition_builder_advanced_condition_label: 'Advanced condition',\n condition_builder_advanced_condition_placeholder: 'Advanced condition',\n condition_builder_advanced_mode_button_label: 'Advanced mode',\n condition_builder_basic_mode_button_label: 'Basic mode',\n condition_builder_condition_select_info_default: 'No selection',\n condition_builder_possible_values_label: 'Values',\n condition_builder_selection_text_default: 'Select values',\n condition_builder_submit_button_label: 'Submit',\n condition_builder_add_button_label: 'Add new condition',\n condition_builder_remove_button_label: 'Remove condition',\n condition_builder_switch_banner_text:\n 'Switching from Advanced mode can reset all AND/OR/NOT operators. Do you want to continue?',\n condition_builder_confirm_button_label: 'OK',\n condition_builder_empty_selection_error_text: 'No selection',\n condition_builder_compare_with: 'Compare with',\n condition_builder_compare_with_another_field: 'Another field',\n condition_builder_compare_with_relative_date: 'Relative date',\n condition_builder_compare_with_text_value: 'Text value',\n condition_builder_compare_with_numeric_value: 'Numeric value',\n condition_builder_compare_with_date_value: 'Date value',\n condition_builder_compare_with_time_value: 'Time value',\n condition_builder_invalid_time_period: 'Invalid time period',\n condition_builder_invalid_relative_date: 'Invalid relative date',\n condition_builder_invalid_value: 'Invalid value',\n condition_builder_invalid_number: 'Invalid number',\n condition_builder_date_function_year: 'Year',\n condition_builder_date_function_quarter: 'Quarter',\n condition_builder_select_placeholder: 'Select…',\n condition_builder_day_number_of_month: {\n zero: '{0}th day of the month',\n one: '{0}st day of the month',\n two: '{0}nd day of the month',\n few: '{0}rd day of the month',\n many: '{0}th day of the month',\n other: '{0}th day of the month'\n },\n condition_builder_date_function_month: 'Month',\n condition_builder_date_function_week: 'Week',\n condition_builder_date_function_day: 'Day',\n condition_builder_date_function_hour: 'Hour',\n condition_builder_date_function_month_of_year: 'Month of year',\n condition_builder_date_function_day_of_month: 'Day of month',\n condition_builder_date_function_day_of_week: 'Day of week',\n condition_builder_date_part: 'Date part',\n condition_builder_relative_dates_minute: 'Minute(s)',\n condition_builder_relative_dates_hour: 'Hour(s)',\n condition_builder_relative_dates_day: 'Day(s)',\n condition_builder_relative_dates_week: 'Week(s)',\n condition_builder_relative_dates_month: 'Month(s)',\n condition_builder_relative_dates_quarter: 'Quarter(s)',\n condition_builder_relative_dates_year: 'Year(s)',\n condition_builder_current_minute: 'Current minute',\n condition_builder_current_hour: 'Current hour',\n condition_builder_current_day: 'Current day',\n condition_builder_current_week: 'Current week',\n condition_builder_current_month: 'Current month',\n condition_builder_current_quarter: 'Current quarter',\n condition_builder_current_year: 'Current year',\n condition_builder_last_X_minutes: {\n zero: 'Current minute',\n one: 'Last minute',\n two: 'Last {0} minutes',\n few: 'Last {0} minutes',\n many: 'Last {0} minutes',\n other: 'Last {0} minutes'\n },\n condition_builder_last_X_hours: {\n zero: 'Current hour',\n one: 'Last hour',\n two: 'Last {0} hours',\n few: 'Last {0} hours',\n many: 'Last {0} hours',\n other: 'Last {0} hours'\n },\n condition_builder_last_X_days: {\n zero: 'Current day',\n one: 'Last day',\n two: 'Last {0} days',\n few: 'Last {0} days',\n many: 'Last {0} days',\n other: 'Last {0} days'\n },\n condition_builder_last_X_weeks: {\n zero: 'Current week',\n one: 'Last week',\n two: 'Last {0} weeks',\n few: 'Last {0} weeks',\n many: 'Last {0} weeks',\n other: 'Last {0} weeks'\n },\n condition_builder_last_X_months: {\n zero: 'Current month',\n one: 'Last month',\n two: 'Last {0} months',\n few: 'Last {0} months',\n many: 'Last {0} months',\n other: 'Last {0} months'\n },\n condition_builder_last_X_quarters: {\n zero: 'Current quarter',\n one: 'Last quarter',\n two: 'Last {0} quarters',\n few: 'Last {0} quarters',\n many: 'Last {0} quarters',\n other: 'Last {0} quarters'\n },\n condition_builder_last_X_years: {\n zero: 'Current year',\n one: 'Last year',\n two: 'Last {0} years',\n few: 'Last {0} years',\n many: 'Last {0} years',\n other: 'Last {0} years'\n },\n condition_builder_next_X_minutes: {\n zero: 'Current minute',\n one: 'Next minute',\n two: 'Next {0} minutes',\n few: 'Next {0} minutes',\n many: 'Next {0} minutes',\n other: 'Next {0} minutes'\n },\n condition_builder_next_X_hours: {\n zero: 'Current hour',\n one: 'Next hour',\n two: 'Next {0} hours',\n few: 'Next {0} hours',\n many: 'Next {0} hours',\n other: 'Next {0} hours'\n },\n condition_builder_next_X_days: {\n zero: 'Current day',\n one: 'Next day',\n two: 'Next {0} days',\n few: 'Next {0} days',\n many: 'Next {0} days',\n other: 'Next {0} days'\n },\n condition_builder_next_X_weeks: {\n zero: 'Current week',\n one: 'Next week',\n two: 'Next {0} weeks',\n few: 'Next {0} weeks',\n many: 'Next {0} weeks',\n other: 'Next {0} weeks'\n },\n condition_builder_next_X_months: {\n zero: 'Current month',\n one: 'Next month',\n two: 'Next {0} months',\n few: 'Next {0} months',\n many: 'Next {0} months',\n other: 'Next {0} months'\n },\n condition_builder_next_X_quarters: {\n zero: 'Current quarter',\n one: 'Next quarter',\n two: 'Next {0} quarters',\n few: 'Next {0} quarters',\n many: 'Next {0} quarters',\n other: 'Next {0} quarters'\n },\n condition_builder_next_X_years: {\n zero: 'Current year',\n one: 'Next year',\n two: 'Next {0} years',\n few: 'Next {0} years',\n many: 'Next {0} years',\n other: 'Next {0} years'\n },\n condition_builder_previous_X_minutes: {\n zero: 'Current minute',\n one: 'Previous minute',\n two: 'Previous {0} minutes',\n few: 'Previous {0} minutes',\n many: 'Previous {0} minutes',\n other: 'Previous {0} minutes'\n },\n condition_builder_previous_X_hours: {\n zero: 'Current hour',\n one: 'Previous hour',\n two: 'Previous {0} hours',\n few: 'Previous {0} hours',\n many: 'Previous {0} hours',\n other: 'Previous {0} hours'\n },\n condition_builder_previous_X_days: {\n zero: 'Current day',\n one: 'Previous day',\n two: 'Previous {0} days',\n few: 'Previous {0} days',\n many: 'Previous {0} days',\n other: 'Previous {0} days'\n },\n condition_builder_previous_X_weeks: {\n zero: 'Current week',\n one: 'Previous week',\n two: 'Previous {0} weeks',\n few: 'Previous {0} weeks',\n many: 'Previous {0} weeks',\n other: 'Previous {0} weeks'\n },\n condition_builder_previous_X_months: {\n zero: 'Current month',\n one: 'Previous month',\n two: 'Previous {0} months',\n few: 'Previous {0} months',\n many: 'Previous {0} months',\n other: 'Previous {0} months'\n },\n condition_builder_previous_X_quarters: {\n zero: 'Current quarter',\n one: 'Previous quarter',\n two: 'Previous {0} quarters',\n few: 'Previous {0} quarters',\n many: 'Previous {0} quarters',\n other: 'Previous {0} quarters'\n },\n condition_builder_previous_X_years: {\n zero: 'Current year',\n one: 'Previous year',\n two: 'Previous {0} years',\n few: 'Previous {0} years',\n many: 'Previous {0} years',\n other: 'Previous {0} years'\n },\n condition_builder_time_period_label: 'Time period',\n condition_builder_time_period_last: 'Last',\n condition_builder_time_period_current: 'Current',\n condition_builder_time_period_previous: 'Previous',\n condition_builder_time_period_next: 'Next',\n condition_builder_value_label: 'Value',\n\n /* build:AppShell */\n dev_mode: 'Dev mode',\n expand_navigation: 'Expand navigation',\n collapse_navigation: 'Collapse navigation',\n\n /* build:Lifecycle */\n parallel: 'Parallel',\n stage: 'Stage',\n alternate_stage: 'Alternate stage',\n stage_see_full_lifecycle: 'See full lifecycle',\n lifecycle: '{0} lifecycle',\n add_stage: 'Add stage',\n add_alternate_stage: 'Add alternate stage',\n\n /* build:FlowModeller */\n add_node: 'Add node',\n search_nodes: 'Search nodes',\n\n /* build:Workbench */\n zoom_level: 'Zoom level'\n};\n"]}
|
|
1
|
+
{"version":3,"file":"default.js","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":"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","sourcesContent":["export default {\n // -----------------------------------------------------------------------------\n // Common translation entries\n // -----------------------------------------------------------------------------\n\n /* Nouns, Types, Terms, Phrases, etc... */\n filters: 'Filters',\n actions: 'Actions',\n status: 'Status',\n additional_info: 'Additional info',\n search_placeholder_default: 'Search…',\n\n /* Verbs */\n remove: 'Remove',\n follow: 'Follow',\n unfollow: 'Unfollow',\n add: 'Add',\n cancel: 'Cancel',\n try_again: 'Try again',\n update: 'Update',\n submit: 'Submit',\n edit: 'Edit',\n preview: 'Preview',\n delete: 'Delete',\n close: 'Close',\n activate: 'Activate',\n expand: 'Expand',\n collapse: 'Collapse',\n accept: 'Accept',\n clear: 'Clear',\n use: 'Use',\n undo: 'Undo',\n redo: 'Redo',\n\n /* Static verb noun */\n view_all: 'View all',\n view_less: 'View less',\n show_more: 'Show more',\n show_less: 'Show less',\n clear_all: 'Clear all',\n link_open_in_tab_text: 'Open in tab',\n edit_details: 'Edit details',\n add_emoji: 'Add emoji',\n\n /* Dynamic verb {noun} */\n close_noun: 'Close: {0}',\n view_all_noun: 'View all: {0}',\n view_less_noun: 'View less: {0}',\n expand_noun: 'Expand: {0}',\n add_noun: 'Add: {0}',\n collapse_noun: 'Collapse: {0}',\n checked_noun: '{0}: checked',\n selected_noun: '{0}: selected',\n deselected_noun: '{0}: unselected',\n use_input_value: 'Use {0}',\n preview_of_noun: 'Preview of: {0}',\n\n /* States */\n edited: 'Edited',\n done: 'Done',\n uploading: 'Uploading',\n loading: 'Loading…',\n submitting: 'Submitting…',\n no_items: 'No items',\n unknown_error: 'Unknown error',\n image_load_error: 'Error loading image',\n selected: 'Selected',\n\n /* Date and time */\n day_label_a11y: 'Day',\n day_placeholder: 'DD',\n quarter_label_a11y: 'Quarter',\n month_label_a11y: 'Month',\n month_placeholder: 'MM',\n year_label_a11y: 'Year',\n year_placeholder: 'YYYY',\n hour_label_a11y: 'Hour',\n hour_placeholder: 'hh',\n minute_label_a11y: 'Minute',\n minute_placeholder: 'mm',\n second_label_a11y: 'Second',\n second_placeholder: 'ss',\n meridiem_label_a11y: 'Meridiem',\n meridiem_value_am: 'AM',\n meridiem_value_pm: 'PM',\n week_label_a11y: 'Week',\n week_placeholder: 'ww',\n week_text: 'Week',\n seconds_text: 'Seconds',\n minutes_text: 'Minutes',\n hours_text: 'Hours',\n days_text: 'Days',\n time_text: 'Time',\n time_format_info: 'hh:mm:ss',\n week_text_short: 'Wk',\n day_text_short: 'd',\n hour_text_short: 'h',\n minute_text_short: 'm',\n second_text_short: 's',\n date_quarter_q1: 'Q1 {0}',\n date_quarter_q2: 'Q2 {0}',\n date_quarter_q3: 'Q3 {0}',\n date_quarter_q4: 'Q4 {0}',\n\n /* Count based types */\n attachments_count: {\n zero: 'No attachments',\n one: '{0} attachment',\n two: '{0} attachments',\n few: '{0} attachments',\n many: '{0} attachments',\n other: '{0} attachments'\n },\n results_count: {\n zero: 'No results',\n one: '{0} result',\n two: '{0} results',\n few: '{0} results',\n many: '{0} results',\n other: '{0} results'\n },\n new_emails_count: {\n zero: 'No new emails',\n one: '{0} new email',\n two: '{0} new emails',\n few: '{0} new emails',\n many: '{0} new emails',\n other: '{0} new emails'\n },\n\n /* Pagination */\n pagination_page_of: 'Page {0} of {1}',\n pagination_next: 'Next',\n pagination_prev: 'Previous',\n\n /* Miscellaneous */\n x_of_y: '{0} of {1}',\n\n // -----------------------------------------------------------------------------\n // {pkg}:{ComponentDir} entries\n // -----------------------------------------------------------------------------\n\n /* core:Link */\n preview_link_arrow_navigation: 'Arrow left or right for link options',\n\n /* core:SkipLinks */\n go_to_main_content: 'Go to main content',\n\n /* core:AppShell */\n app_shell_create: 'Create',\n app_shell_open_nav: 'Open navigation menu',\n\n /* core:ComboBox */\n combobox_open_close: 'Arrow down to open, press escape to close.',\n combobox_search_instructions: 'Start typing to search',\n combobox_open_list_button_a11y: 'Open combobox list',\n combobox_close_list_button_a11y: 'Close combobox list',\n\n /* core:Menu */\n menu_selection_instructions: 'Press enter to select items.',\n menu_item_expand_arrow: 'Arrow right to expand.',\n menu_item_collapse_arrow: 'Arrow left to collapse.',\n menu_item_collapse_shift_space: 'Press shift space to collapse.',\n menu_item_shift_space_expand_collapse: 'Press shift space to expand and collapse.',\n\n /* core:Modal */\n modal_minimize: 'Minimize modal',\n modal_maximize: 'Maximize modal',\n modal_dock: 'Dock Modal',\n modal_close: 'Close modal',\n\n /* core:Datetime */\n selected_date_a11y: 'Selected date:',\n open_calendar_button_a11y: 'Open calendar',\n close_calendar_button_a11y: 'Close calendar',\n open_time_button_a11y: 'Open time picker',\n close_time_button_a11y: 'Close time picker',\n picker_next_month: 'Next month',\n picker_prev_month: 'Previous month',\n picker_jump_to_month: 'Jump to month',\n calendar_assist: 'Use cursor keys to navigate dates',\n\n /* core:Boolean */\n boolean_display_true_label: 'Yes',\n boolean_display_false_label: 'No',\n\n /* core:Number */\n measured_in: 'measured in {0}',\n number_increment_value_by: 'Increment value by {0}',\n number_decrement_value_by: 'Decrement value by {0}',\n\n /* core:Banner */\n banner_dismiss_button_label_a11y: 'Dismiss banner',\n\n /* core:File */\n file_upload_text_main: 'Drag and drop or {0}',\n file_upload_text_one: 'choose file',\n file_upload_text_multiple: 'choose files',\n\n /* core:Location */\n my_current_location_button_a11y: 'Use my current location',\n location_input_placeholder: 'Enter a location',\n location_not_found_text: 'Location not found',\n allow_location_permissions_text:\n 'To get current location, allow location permissions for this app',\n\n /* work:CaseView */\n utilities_summary: 'Utilities summary',\n expand_summary_panel: 'Expand summary panel',\n collapse_summary_panel: 'Collapse summary panel',\n expand_utilities_panel: 'Expand utilities panel',\n collapse_utilities_panel: 'Collapse utilities panel',\n\n /* work:CasePreview */\n close_preview: 'Close preview',\n\n /* work:Confirmation */\n confirmation_details: 'Details',\n confirmation_whats_next: \"What's next\",\n confirmation_open_tasks: 'Open tasks',\n\n /* work:Stakeholders */\n add_stakeholders: 'Add stakeholder',\n edit_stakeholder: 'Edit stakeholder',\n view_stakeholders: 'Stakeholders',\n stakeholders_role: 'Role',\n stakeholders: {\n zero: '{0} stakeholders',\n one: '{0} stakeholder',\n two: '{0} stakeholders',\n few: '{0} stakeholders',\n many: '{0} stakeholders',\n other: '{0} stakeholders'\n },\n\n /* work:Tags */\n edit_tags: 'Edit tags',\n tags: 'Tags',\n\n /* work:AppAnnouncement */\n app_announcement_dismiss_button_label_a11y: 'Hide until next update',\n app_announcement_details_list_header: 'Announcements',\n app_announcement_whats_new_button_label: \"See what's new\",\n\n /* rte:RichTextEditor */\n rte_heading_style: 'Heading style',\n rte_bold: 'Bold',\n rte_italic: 'Italic',\n rte_strike_through: 'Strike-through',\n rte_cut: 'Cut',\n rte_copy: 'Copy',\n rte_paste: 'Paste',\n rte_bulleted_list: 'Bulleted list',\n rte_numbered_list: 'Numbered list',\n rte_indent: 'Indent',\n rte_unindent: 'Unindent',\n rte_table: 'Table',\n rte_anchor: 'Anchor',\n rte_image: 'Image',\n rte_invalid_html: 'Invalid HTML',\n rte_invalid_url: 'Invalid URL',\n rte_change_text_format: 'Change text format to',\n rte_toggle_unordered_list: 'Toggle unordered list',\n rte_indent_selection: 'Indent selection',\n rte_unindent_selection: 'Unindent selection',\n rte_toolbar_instructions: 'Hit tab to enter the editor toolbar',\n rte_text_formatting_toolbar: 'Text formatting toolbar',\n rte_link: 'Link',\n\n /* social:Feed */\n feed_new_post: 'New post',\n feed_cancel_conversation: 'Cancel conversation',\n feed_context: 'in {0}',\n feed_liked_by: 'Liked by {0}',\n feed_likes: 'Likes',\n feed_private_post: 'Private post',\n feed_public_post: 'Public post',\n feed_recipients: 'Recipients',\n feed_edit_post: 'Edit post',\n feed_post_likes: {\n zero: 'No likes',\n one: '{0} like',\n two: '{0} likes',\n few: '{0} likes',\n many: '{0} likes',\n other: '{0} likes'\n },\n feed_attachments_added: {\n zero: 'No attachments added',\n one: '{0} attachment added',\n two: '{0} attachments added',\n few: '{0} attachments added',\n many: '{0} attachments added',\n other: '{0} attachments added'\n },\n feed_attachments_removed: {\n zero: 'No attachments removed',\n one: '{0} attachment removed',\n two: '{0} attachments removed',\n few: '{0} attachments removed',\n many: '{0} attachments removed',\n other: '{0} attachments removed'\n },\n feed_post_liked: 'Post has been liked',\n feed_post_deliked: 'Post has been deliked',\n feed_post_removed: 'Post has been removed',\n feed_reply_removed: 'Reply has been removed',\n showing_num_of_num: 'Showing {0} of {1}',\n\n /* cs:Chat */\n scroll_to_latest_message: 'Scroll to latest message',\n scroll_to_unread_messages: 'Scroll to unread messages',\n suggested_replies_current_of_total: 'Suggested replies {0} of {1}',\n confidence_percentage: '{0}% confidence',\n next_suggested_reply: 'Next suggested reply',\n prev_suggested_reply: 'Previous suggested reply',\n dismiss_suggested_replies: 'Dismiss suggested replies',\n\n /* cs:Email */\n more_count: '{0} more…',\n empty_search: 'Enter a search term',\n new_messages: 'New messages',\n earlier_transcripts: 'Earlier transcripts',\n send_label: 'Send',\n enter_message: 'Enter message',\n download: 'Download',\n close_chat_utility: 'Close chat utility',\n subject: 'Subject',\n to: 'To',\n from: 'From',\n cc: 'Cc',\n bcc: 'Bcc',\n date: 'Date',\n reply: 'Reply',\n reply_all: 'Reply all',\n auto_reply: 'Auto-Reply',\n forward: 'Forward',\n email: 'Email',\n email_message: 'Email message',\n email_filters: 'Email filters',\n unread_email_count: 'unread email count is {0}',\n priority: 'Priority',\n inbox: 'Inbox',\n insert: 'Insert',\n email_add_attachment: 'Add attachment, the maximum number of attachments allowed is {0}.',\n email_disable_attachment:\n 'Adding attachments are disabled, the maximum number of attachments allowed is {0}.',\n email_remove_attachment: 'Remove attachment',\n\n /* cs:ArticleList */\n article_list_label_a11y: 'Article list',\n article_list_filter_label_a11y: 'Article lists filter',\n article_list_header_submit_label: 'Submit',\n\n /* cs:CallControlPanel */\n call_panel_heading: 'Pega call',\n call_panel_make_new_call: 'Make new call',\n call_panel_agent_status: 'Status',\n call_panel_pause_call_menu_item: 'Pause call',\n call_panel_resume_call_menu_item: 'Resume call',\n call_panel_mute_mic_menu_item: 'Mute microphone',\n call_panel_unmute_mic_menu_item: 'Unmute microphone',\n call_panel_call_on_hold: 'On hold {0}',\n call_panel_consult_call_menu_item: 'Consult',\n call_panel_transfer_call_menu_item: 'Transfer',\n call_panel_send_dtmf_menu_item: 'Send DTMF',\n call_panel_conference_call_menu_item: 'Conference',\n call_panel_hangup_call_menu_item: 'Hang up',\n call_panel_contacts_add_to_favorites: 'Add to favorites',\n call_panel_contacts_remove_from_favorites: 'Remove from favorites',\n call_panel_contacts_call_button_label: 'Call',\n call_panel_contacts_list_heading: 'Contacts',\n call_panel_contacts_favorites_heading: 'Favorites',\n call_panel_contacts_dial_pad_heading: 'Dial pad',\n call_panel_new_call_heading: 'New call',\n call_panel_consult_with_heading: 'Consult with',\n call_panel_conference_heading: 'Conference',\n call_panel_transfer_button_label: 'Transfer',\n call_panel_transfer_call_heading: 'Transfer call',\n call_panel_transfer_reason_label: 'Reason',\n call_panel_transfer_to_label: 'Transfer to',\n call_panel_transfer_comments_label: 'Comments',\n call_panel_transfer_call_option_label: 'Call option',\n call_panel_transfer_call_only_option: 'Call only',\n call_panel_transfer_call_and_interaction_option: 'Call and interaction',\n call_panel_merge_call_menu_item: 'Merge',\n call_panel_send_dtmf_heading: 'Send DTMF',\n call_panel_expand: 'Expand call control panel',\n call_panel_collapse: 'Collapse call control panel',\n\n /* cs:DialPad */\n dial_pad_keyboard: 'Dial pad keyboard',\n dial_pad_phone_number_input_label: 'Phone number input',\n dial_pad_call_button_label: 'Call {0}',\n\n /* cs:TaskManager */\n dismiss_case: 'Dismiss case',\n task_manager_add_task: 'Add task',\n task_manager_wrap_up: 'Wrap up',\n task_manager_tasks: 'Tasks',\n add_tasks: 'Add tasks',\n selected_tasks: 'Selected tasks',\n no_selected_tasks: 'No selected tasks',\n task_picker_close: 'Close task picker',\n task_manager_overflow_menu: 'Menu for added tasks',\n go_label: 'Go',\n go_label_a11y: 'Go to {0}',\n continue_label: 'Continue',\n continue_label_a11y: 'Continue with {0}',\n review_label: 'Review',\n review_label_a11y: 'Review {0}',\n dismiss_label: 'Dismiss',\n dismiss_label_a11y: 'Dismiss {0}',\n task_manager_search_results_empty_text: 'No tasks',\n task_manager_delete_task: 'Delete {0}',\n search_tasks: 'Search tasks…',\n task_manager_picker_add_label: {\n zero: 'No items to add',\n one: 'Add {0} new item',\n two: 'Add {0} new item',\n few: 'Add {0} new item',\n many: 'Add {0} new item',\n other: 'Add {0} new item'\n },\n\n /* cs:Sentiment */\n sentiment_positive: 'Positive',\n sentiment_negative: 'Negative',\n sentiment_neutral: 'Neutral',\n\n /* cs:IntelligentGuidance */\n expand_intelligent_guidance_button_a11y: 'Expand intelligent guidance',\n collapse_intelligent_guidance_button_a11y: 'Collapse intelligent guidance',\n no_recommendations: 'No recommendations',\n\n /* condition-builder:ConditionBuilder */\n condition_builder_advanced_condition_label: 'Advanced condition',\n condition_builder_advanced_condition_placeholder: 'Advanced condition',\n condition_builder_advanced_mode_button_label: 'Advanced mode',\n condition_builder_basic_mode_button_label: 'Basic mode',\n condition_builder_condition_select_info_default: 'No selection',\n condition_builder_possible_values_label: 'Values',\n condition_builder_selection_text_default: 'Select values',\n condition_builder_submit_button_label: 'Submit',\n condition_builder_add_button_label: 'Add new condition',\n condition_builder_remove_button_label: 'Remove condition',\n condition_builder_switch_banner_text:\n 'Switching from Advanced mode can reset all AND/OR/NOT operators. Do you want to continue?',\n condition_builder_confirm_button_label: 'OK',\n condition_builder_empty_selection_error_text: 'No selection',\n condition_builder_compare_with: 'Compare with',\n condition_builder_compare_with_another_field: 'Another field',\n condition_builder_compare_with_relative_date: 'Relative date',\n condition_builder_compare_with_text_value: 'Text value',\n condition_builder_compare_with_numeric_value: 'Numeric value',\n condition_builder_compare_with_date_value: 'Date value',\n condition_builder_compare_with_time_value: 'Time value',\n condition_builder_invalid_time_period: 'Invalid time period',\n condition_builder_invalid_relative_date: 'Invalid relative date',\n condition_builder_invalid_value: 'Invalid value',\n condition_builder_invalid_number: 'Invalid number',\n condition_builder_date_function_year: 'Year',\n condition_builder_date_function_quarter: 'Quarter',\n condition_builder_select_placeholder: 'Select…',\n condition_builder_day_number_of_month: {\n zero: '{0}th day of the month',\n one: '{0}st day of the month',\n two: '{0}nd day of the month',\n few: '{0}rd day of the month',\n many: '{0}th day of the month',\n other: '{0}th day of the month'\n },\n condition_builder_date_function_month: 'Month',\n condition_builder_date_function_week: 'Week',\n condition_builder_date_function_day: 'Day',\n condition_builder_date_function_hour: 'Hour',\n condition_builder_date_function_month_of_year: 'Month of year',\n condition_builder_date_function_day_of_month: 'Day of month',\n condition_builder_date_function_day_of_week: 'Day of week',\n condition_builder_date_part: 'Date part',\n condition_builder_relative_dates_minute: 'Minute(s)',\n condition_builder_relative_dates_hour: 'Hour(s)',\n condition_builder_relative_dates_day: 'Day(s)',\n condition_builder_relative_dates_week: 'Week(s)',\n condition_builder_relative_dates_month: 'Month(s)',\n condition_builder_relative_dates_quarter: 'Quarter(s)',\n condition_builder_relative_dates_year: 'Year(s)',\n condition_builder_current_minute: 'Current minute',\n condition_builder_current_hour: 'Current hour',\n condition_builder_current_day: 'Current day',\n condition_builder_current_week: 'Current week',\n condition_builder_current_month: 'Current month',\n condition_builder_current_quarter: 'Current quarter',\n condition_builder_current_year: 'Current year',\n condition_builder_last_X_minutes: {\n zero: 'Current minute',\n one: 'Last minute',\n two: 'Last {0} minutes',\n few: 'Last {0} minutes',\n many: 'Last {0} minutes',\n other: 'Last {0} minutes'\n },\n condition_builder_last_X_hours: {\n zero: 'Current hour',\n one: 'Last hour',\n two: 'Last {0} hours',\n few: 'Last {0} hours',\n many: 'Last {0} hours',\n other: 'Last {0} hours'\n },\n condition_builder_last_X_days: {\n zero: 'Current day',\n one: 'Last day',\n two: 'Last {0} days',\n few: 'Last {0} days',\n many: 'Last {0} days',\n other: 'Last {0} days'\n },\n condition_builder_last_X_weeks: {\n zero: 'Current week',\n one: 'Last week',\n two: 'Last {0} weeks',\n few: 'Last {0} weeks',\n many: 'Last {0} weeks',\n other: 'Last {0} weeks'\n },\n condition_builder_last_X_months: {\n zero: 'Current month',\n one: 'Last month',\n two: 'Last {0} months',\n few: 'Last {0} months',\n many: 'Last {0} months',\n other: 'Last {0} months'\n },\n condition_builder_last_X_quarters: {\n zero: 'Current quarter',\n one: 'Last quarter',\n two: 'Last {0} quarters',\n few: 'Last {0} quarters',\n many: 'Last {0} quarters',\n other: 'Last {0} quarters'\n },\n condition_builder_last_X_years: {\n zero: 'Current year',\n one: 'Last year',\n two: 'Last {0} years',\n few: 'Last {0} years',\n many: 'Last {0} years',\n other: 'Last {0} years'\n },\n condition_builder_next_X_minutes: {\n zero: 'Current minute',\n one: 'Next minute',\n two: 'Next {0} minutes',\n few: 'Next {0} minutes',\n many: 'Next {0} minutes',\n other: 'Next {0} minutes'\n },\n condition_builder_next_X_hours: {\n zero: 'Current hour',\n one: 'Next hour',\n two: 'Next {0} hours',\n few: 'Next {0} hours',\n many: 'Next {0} hours',\n other: 'Next {0} hours'\n },\n condition_builder_next_X_days: {\n zero: 'Current day',\n one: 'Next day',\n two: 'Next {0} days',\n few: 'Next {0} days',\n many: 'Next {0} days',\n other: 'Next {0} days'\n },\n condition_builder_next_X_weeks: {\n zero: 'Current week',\n one: 'Next week',\n two: 'Next {0} weeks',\n few: 'Next {0} weeks',\n many: 'Next {0} weeks',\n other: 'Next {0} weeks'\n },\n condition_builder_next_X_months: {\n zero: 'Current month',\n one: 'Next month',\n two: 'Next {0} months',\n few: 'Next {0} months',\n many: 'Next {0} months',\n other: 'Next {0} months'\n },\n condition_builder_next_X_quarters: {\n zero: 'Current quarter',\n one: 'Next quarter',\n two: 'Next {0} quarters',\n few: 'Next {0} quarters',\n many: 'Next {0} quarters',\n other: 'Next {0} quarters'\n },\n condition_builder_next_X_years: {\n zero: 'Current year',\n one: 'Next year',\n two: 'Next {0} years',\n few: 'Next {0} years',\n many: 'Next {0} years',\n other: 'Next {0} years'\n },\n condition_builder_previous_X_minutes: {\n zero: 'Current minute',\n one: 'Previous minute',\n two: 'Previous {0} minutes',\n few: 'Previous {0} minutes',\n many: 'Previous {0} minutes',\n other: 'Previous {0} minutes'\n },\n condition_builder_previous_X_hours: {\n zero: 'Current hour',\n one: 'Previous hour',\n two: 'Previous {0} hours',\n few: 'Previous {0} hours',\n many: 'Previous {0} hours',\n other: 'Previous {0} hours'\n },\n condition_builder_previous_X_days: {\n zero: 'Current day',\n one: 'Previous day',\n two: 'Previous {0} days',\n few: 'Previous {0} days',\n many: 'Previous {0} days',\n other: 'Previous {0} days'\n },\n condition_builder_previous_X_weeks: {\n zero: 'Current week',\n one: 'Previous week',\n two: 'Previous {0} weeks',\n few: 'Previous {0} weeks',\n many: 'Previous {0} weeks',\n other: 'Previous {0} weeks'\n },\n condition_builder_previous_X_months: {\n zero: 'Current month',\n one: 'Previous month',\n two: 'Previous {0} months',\n few: 'Previous {0} months',\n many: 'Previous {0} months',\n other: 'Previous {0} months'\n },\n condition_builder_previous_X_quarters: {\n zero: 'Current quarter',\n one: 'Previous quarter',\n two: 'Previous {0} quarters',\n few: 'Previous {0} quarters',\n many: 'Previous {0} quarters',\n other: 'Previous {0} quarters'\n },\n condition_builder_previous_X_years: {\n zero: 'Current year',\n one: 'Previous year',\n two: 'Previous {0} years',\n few: 'Previous {0} years',\n many: 'Previous {0} years',\n other: 'Previous {0} years'\n },\n condition_builder_time_period_label: 'Time period',\n condition_builder_time_period_last: 'Last',\n condition_builder_time_period_current: 'Current',\n condition_builder_time_period_previous: 'Previous',\n condition_builder_time_period_next: 'Next',\n condition_builder_value_label: 'Value',\n\n /* build:AppShell */\n dev_mode: 'Dev mode',\n expand_navigation: 'Expand navigation',\n collapse_navigation: 'Collapse navigation',\n\n /* build:Lifecycle */\n parallel: 'Parallel',\n stage: 'Stage',\n alternate_stage: 'Alternate stage',\n stage_see_full_lifecycle: 'See full lifecycle',\n lifecycle: '{0} lifecycle',\n add_stage: 'Add stage',\n add_alternate_stage: 'Add alternate stage',\n\n /* build:FlowModeller */\n add_node: 'Add node',\n search_nodes: 'Search nodes',\n\n /* build:Workbench */\n zoom_level: 'Zoom level'\n};\n"]}
|
package/lib/i18n/i18n.d.ts
CHANGED
|
@@ -204,6 +204,7 @@ declare const create: (translations?: Partial<{
|
|
|
204
204
|
rte_unindent_selection: string;
|
|
205
205
|
rte_toolbar_instructions: string;
|
|
206
206
|
rte_text_formatting_toolbar: string;
|
|
207
|
+
rte_link: string;
|
|
207
208
|
feed_new_post: string;
|
|
208
209
|
feed_cancel_conversation: string;
|
|
209
210
|
feed_context: string;
|
|
@@ -800,6 +801,7 @@ export declare const DefaultTranslation: Readonly<Readonly<{
|
|
|
800
801
|
rte_unindent_selection: string;
|
|
801
802
|
rte_toolbar_instructions: string;
|
|
802
803
|
rte_text_formatting_toolbar: string;
|
|
804
|
+
rte_link: string;
|
|
803
805
|
feed_new_post: string;
|
|
804
806
|
feed_cancel_conversation: string;
|
|
805
807
|
feed_context: string;
|
package/lib/i18n/i18n.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,WAAW,CAAC;AAE3C,oBAAY,eAAe,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAClE,oBAAY,WAAW,GAAG,OAAO,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE7D,QAAA,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../src/i18n/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,MAAM,WAAW,CAAC;AAE3C,oBAAY,eAAe,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAClE,oBAAY,WAAW,GAAG,OAAO,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE7D,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAAiC,SAAS,eAAe,CAEpE,CAAC;AACF,eAAe,MAAM,CAAC;AAEtB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAW,CAAC;AAiB3C,eAAO,MAAM,SAAS,cAAe,MAAM,KAAG,KAAK,GAAG,KAErD,CAAC"}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { DefaultTheme } from 'styled-components';
|
|
2
|
+
export declare const globalSpacingStyles = "\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n }\n";
|
|
3
|
+
export declare const createGlobalRootStyles: ({ base: { scale } }: DefaultTheme) => string;
|
|
4
|
+
export declare const createGlobalBodyStyles: ({ base: { "font-size": baseFontSize, "font-scale": baseFontScale, "font-family": fontFamily, palette: { "foreground-color": foregroundColor }, "line-height": lineHeight }, components: { text } }: DefaultTheme) => string;
|
|
5
|
+
declare const _default: import("styled-components").GlobalStyleComponent<{}, DefaultTheme>;
|
|
2
6
|
export default _default;
|
|
3
7
|
//# sourceMappingURL=GlobalStyle.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GlobalStyle.d.ts","sourceRoot":"","sources":["../../src/styles/GlobalStyle.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"GlobalStyle.d.ts","sourceRoot":"","sources":["../../src/styles/GlobalStyle.ts"],"names":[],"mappings":"AAAA,OAAO,EAA0B,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAIzE,eAAO,MAAM,mBAAmB,4GAQ/B,CAAC;AAEF,eAAO,MAAM,sBAAsB,wBAAyB,YAAY,WAUvE,CAAC;AAEF,eAAO,MAAM,sBAAsB,uMAShC,YAAY,WAgBd,CAAC;;AAEF,wBAkFG"}
|
|
@@ -1,98 +1,112 @@
|
|
|
1
1
|
import { createGlobalStyle, css } from 'styled-components';
|
|
2
2
|
import { calculateFontSize } from './utils';
|
|
3
|
-
export
|
|
3
|
+
export const globalSpacingStyles = `
|
|
4
|
+
*,
|
|
5
|
+
*::before,
|
|
6
|
+
*::after {
|
|
7
|
+
box-sizing: border-box;
|
|
8
|
+
margin: 0;
|
|
9
|
+
padding: 0;
|
|
10
|
+
}
|
|
11
|
+
`;
|
|
12
|
+
export const createGlobalRootStyles = ({ base: { scale } }) => {
|
|
13
|
+
return `
|
|
14
|
+
:root,
|
|
15
|
+
:host {
|
|
16
|
+
height: 100%;
|
|
17
|
+
-webkit-text-size-adjust: 100%;
|
|
18
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
19
|
+
font-size: calc(${scale} * 1rem);
|
|
20
|
+
}
|
|
21
|
+
`;
|
|
22
|
+
};
|
|
23
|
+
export const createGlobalBodyStyles = ({ base: { 'font-size': baseFontSize, 'font-scale': baseFontScale, 'font-family': fontFamily, palette: { 'foreground-color': foregroundColor }, 'line-height': lineHeight }, components: { text } }) => {
|
|
4
24
|
// Can't call a hook here
|
|
5
25
|
const fontSize = calculateFontSize(baseFontSize, baseFontScale);
|
|
26
|
+
return `
|
|
27
|
+
body,
|
|
28
|
+
:host {
|
|
29
|
+
min-height: 100%;
|
|
30
|
+
margin: 0;
|
|
31
|
+
padding: 0;
|
|
32
|
+
font-size: ${fontSize[text.primary['font-size']]};
|
|
33
|
+
font-family: ${fontFamily};
|
|
34
|
+
color: ${foregroundColor};
|
|
35
|
+
line-height: ${lineHeight};
|
|
36
|
+
}
|
|
37
|
+
`;
|
|
38
|
+
};
|
|
39
|
+
export default createGlobalStyle(({ theme }) => {
|
|
40
|
+
const { base: { 'custom-scrollbar': customScrollbar, 'border-radius': borderRadius, palette: { 'scrollbar-track': scrollbarTrack, 'scrollbar-thumb': scrollbarThumb, 'scrollbar-thumb-hover': scrollbarThumbHover } } } = theme;
|
|
6
41
|
return css `
|
|
7
|
-
|
|
8
|
-
*::before,
|
|
9
|
-
*::after {
|
|
10
|
-
box-sizing: border-box;
|
|
11
|
-
margin: 0;
|
|
12
|
-
padding: 0;
|
|
13
|
-
}
|
|
42
|
+
${globalSpacingStyles}
|
|
14
43
|
|
|
15
|
-
|
|
44
|
+
${customScrollbar &&
|
|
16
45
|
css `
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
@supports not ((scrollbar-width: thin) or (scrollbar-color: black white)) {
|
|
23
|
-
/* stylelint-disable unit-allowed-list */
|
|
46
|
+
* {
|
|
47
|
+
scrollbar-color: ${scrollbarThumb} ${scrollbarTrack};
|
|
48
|
+
scrollbar-width: thin;
|
|
49
|
+
}
|
|
24
50
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
height: 12px;
|
|
28
|
-
}
|
|
51
|
+
@supports not ((scrollbar-width: thin) or (scrollbar-color: black white)) {
|
|
52
|
+
/* stylelint-disable unit-allowed-list */
|
|
29
53
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
54
|
+
*::-webkit-scrollbar {
|
|
55
|
+
width: 12px;
|
|
56
|
+
height: 12px;
|
|
57
|
+
}
|
|
33
58
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
59
|
+
*::-webkit-scrollbar-track {
|
|
60
|
+
background-color: ${scrollbarTrack};
|
|
61
|
+
}
|
|
38
62
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
box-shadow: inset 0 0 2px 4px ${scrollbarThumb};
|
|
44
|
-
}
|
|
63
|
+
*::-webkit-scrollbar-corner {
|
|
64
|
+
background-color: ${scrollbarTrack};
|
|
65
|
+
border-bottom-right-radius: inherit;
|
|
66
|
+
}
|
|
45
67
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
68
|
+
*::-webkit-scrollbar-thumb {
|
|
69
|
+
background-color: transparent;
|
|
70
|
+
border: 3px solid transparent;
|
|
71
|
+
border-radius: calc(1.125 * ${borderRadius});
|
|
72
|
+
box-shadow: inset 0 0 2px 4px ${scrollbarThumb};
|
|
73
|
+
}
|
|
49
74
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
75
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
76
|
+
box-shadow: inset 0 0 2px 4px ${scrollbarThumbHover};
|
|
77
|
+
}
|
|
53
78
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
79
|
+
*::-webkit-scrollbar-track:horizontal {
|
|
80
|
+
border-bottom-left-radius: inherit;
|
|
81
|
+
}
|
|
57
82
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}
|
|
83
|
+
*::-webkit-scrollbar-track:vertical {
|
|
84
|
+
border-top-right-radius: inherit;
|
|
85
|
+
}
|
|
62
86
|
|
|
63
|
-
|
|
87
|
+
/* stylelint-disable-next-line selector-pseudo-class-no-unknown */
|
|
88
|
+
*::-webkit-scrollbar-track:not(:corner-present) {
|
|
89
|
+
border-bottom-right-radius: inherit;
|
|
64
90
|
}
|
|
65
|
-
`}
|
|
66
91
|
|
|
67
|
-
|
|
68
|
-
:host {
|
|
69
|
-
height: 100%;
|
|
70
|
-
-webkit-text-size-adjust: 100%;
|
|
71
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
72
|
-
font-size: calc(${scale} * 1rem);
|
|
92
|
+
/* stylelint-enable unit-allowed-list */
|
|
73
93
|
}
|
|
94
|
+
`}
|
|
74
95
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
margin: 0;
|
|
79
|
-
padding: 0;
|
|
80
|
-
font-size: ${fontSize[text.primary['font-size']]};
|
|
81
|
-
font-family: ${fontFamily};
|
|
82
|
-
color: ${foregroundColor};
|
|
83
|
-
line-height: ${lineHeight};
|
|
84
|
-
}
|
|
96
|
+
${createGlobalRootStyles(theme)}
|
|
97
|
+
|
|
98
|
+
${createGlobalBodyStyles(theme)}
|
|
85
99
|
|
|
86
100
|
input,
|
|
87
101
|
button,
|
|
88
102
|
select,
|
|
89
103
|
optgroup,
|
|
90
104
|
textarea {
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
105
|
+
margin: 0;
|
|
106
|
+
font-family: inherit;
|
|
107
|
+
font-size: inherit;
|
|
108
|
+
line-height: inherit;
|
|
109
|
+
}
|
|
110
|
+
`;
|
|
97
111
|
});
|
|
98
112
|
//# sourceMappingURL=GlobalStyle.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GlobalStyle.js","sourceRoot":"","sources":["../../src/styles/GlobalStyle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,GAAG,
|
|
1
|
+
{"version":3,"file":"GlobalStyle.js","sourceRoot":"","sources":["../../src/styles/GlobalStyle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,GAAG,EAAgB,MAAM,mBAAmB,CAAC;AAEzE,OAAO,EAAE,iBAAiB,EAAY,MAAM,SAAS,CAAC;AAEtD,MAAM,CAAC,MAAM,mBAAmB,GAAG;;;;;;;;CAQlC,CAAC;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,EAAgB,EAAE,EAAE;IAC1E,OAAO;;;;;;wBAMe,KAAK;;GAE1B,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,EACrC,IAAI,EAAE,EACJ,WAAW,EAAE,YAAY,EACzB,YAAY,EAAE,aAAa,EAC3B,aAAa,EAAE,UAAU,EACzB,OAAO,EAAE,EAAE,kBAAkB,EAAE,eAAe,EAAE,EAChD,aAAa,EAAE,UAAU,EAC1B,EACD,UAAU,EAAE,EAAE,IAAI,EAAE,EACP,EAAE,EAAE;IACjB,yBAAyB;IACzB,MAAM,QAAQ,GAAG,iBAAiB,CAAC,YAAY,EAAE,aAAa,CAAC,CAAC;IAEhE,OAAO;;;;;;mBAMU,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAa,CAAC;qBAC7C,UAAU;eAChB,eAAe;qBACT,UAAU;;GAE5B,CAAC;AACJ,CAAC,CAAC;AAEF,eAAe,iBAAiB,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE;IAC7C,MAAM,EACJ,IAAI,EAAE,EACJ,kBAAkB,EAAE,eAAe,EACnC,eAAe,EAAE,YAAY,EAC7B,OAAO,EAAE,EACP,iBAAiB,EAAE,cAAc,EACjC,iBAAiB,EAAE,cAAc,EACjC,uBAAuB,EAAE,mBAAmB,EAC7C,EACF,EACF,GAAG,KAAK,CAAC;IACV,OAAO,GAAG,CAAA;MACN,mBAAmB;;MAEnB,eAAe;QACjB,GAAG,CAAA;;2BAEoB,cAAc,IAAI,cAAc;;;;;;;;;;;;;8BAa7B,cAAc;;;;8BAId,cAAc;;;;;;;wCAOJ,YAAY;0CACV,cAAc;;;;0CAId,mBAAmB;;;;;;;;;;;;;;;;;;KAkBxD;;QAEG,sBAAsB,CAAC,KAAK,CAAC;;QAE7B,sBAAsB,CAAC,KAAK,CAAC;;;;;;;;;;;;GAYlC,CAAC;AACJ,CAAC,CAAC,CAAC","sourcesContent":["import { createGlobalStyle, css, DefaultTheme } from 'styled-components';\n\nimport { calculateFontSize, FontSize } from './utils';\n\nexport const globalSpacingStyles = `\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n margin: 0;\n padding: 0;\n }\n`;\n\nexport const createGlobalRootStyles = ({ base: { scale } }: DefaultTheme) => {\n return `\n :root,\n :host {\n height: 100%;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n font-size: calc(${scale} * 1rem);\n }\n `;\n};\n\nexport const createGlobalBodyStyles = ({\n base: {\n 'font-size': baseFontSize,\n 'font-scale': baseFontScale,\n 'font-family': fontFamily,\n palette: { 'foreground-color': foregroundColor },\n 'line-height': lineHeight\n },\n components: { text }\n}: DefaultTheme) => {\n // Can't call a hook here\n const fontSize = calculateFontSize(baseFontSize, baseFontScale);\n\n return `\n body,\n :host {\n min-height: 100%;\n margin: 0;\n padding: 0;\n font-size: ${fontSize[text.primary['font-size'] as FontSize]};\n font-family: ${fontFamily};\n color: ${foregroundColor};\n line-height: ${lineHeight};\n }\n `;\n};\n\nexport default createGlobalStyle(({ theme }) => {\n const {\n base: {\n 'custom-scrollbar': customScrollbar,\n 'border-radius': borderRadius,\n palette: {\n 'scrollbar-track': scrollbarTrack,\n 'scrollbar-thumb': scrollbarThumb,\n 'scrollbar-thumb-hover': scrollbarThumbHover\n }\n }\n } = theme;\n return css`\n ${globalSpacingStyles}\n\n ${customScrollbar &&\n css`\n * {\n scrollbar-color: ${scrollbarThumb} ${scrollbarTrack};\n scrollbar-width: thin;\n }\n\n @supports not ((scrollbar-width: thin) or (scrollbar-color: black white)) {\n /* stylelint-disable unit-allowed-list */\n\n *::-webkit-scrollbar {\n width: 12px;\n height: 12px;\n }\n\n *::-webkit-scrollbar-track {\n background-color: ${scrollbarTrack};\n }\n\n *::-webkit-scrollbar-corner {\n background-color: ${scrollbarTrack};\n border-bottom-right-radius: inherit;\n }\n\n *::-webkit-scrollbar-thumb {\n background-color: transparent;\n border: 3px solid transparent;\n border-radius: calc(1.125 * ${borderRadius});\n box-shadow: inset 0 0 2px 4px ${scrollbarThumb};\n }\n\n *::-webkit-scrollbar-thumb:hover {\n box-shadow: inset 0 0 2px 4px ${scrollbarThumbHover};\n }\n\n *::-webkit-scrollbar-track:horizontal {\n border-bottom-left-radius: inherit;\n }\n\n *::-webkit-scrollbar-track:vertical {\n border-top-right-radius: inherit;\n }\n\n /* stylelint-disable-next-line selector-pseudo-class-no-unknown */\n *::-webkit-scrollbar-track:not(:corner-present) {\n border-bottom-right-radius: inherit;\n }\n\n /* stylelint-enable unit-allowed-list */\n }\n `}\n\n ${createGlobalRootStyles(theme)}\n\n ${createGlobalBodyStyles(theme)}\n\n input,\n button,\n select,\n optgroup,\n textarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n }\n `;\n});\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pega/cosmos-react-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Cosmos is a visual design system and UI component collection. Its goal is to empower application developers in their pursuit to create engaging and rewarding user experiences.",
|
|
5
5
|
"author": "Pegasystems",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|