@vkontakte/vkui 5.9.4 → 5.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/ConfigProvider/ConfigProvider.d.ts +1 -1
- package/dist/cjs/components/ConfigProvider/ConfigProvider.d.ts.map +1 -1
- package/dist/cjs/components/ConfigProvider/ConfigProvider.js +2 -1
- package/dist/cjs/components/ConfigProvider/ConfigProvider.js.map +1 -1
- package/dist/cjs/index.d.ts +2 -2
- package/dist/cjs/index.d.ts.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/lib/utils.d.ts +5 -0
- package/dist/cjs/lib/utils.d.ts.map +1 -1
- package/dist/cjs/lib/utils.js +12 -0
- package/dist/cjs/lib/utils.js.map +1 -1
- package/dist/components/ConfigProvider/ConfigProvider.d.ts +1 -1
- package/dist/components/ConfigProvider/ConfigProvider.d.ts.map +1 -1
- package/dist/components/ConfigProvider/ConfigProvider.js +3 -2
- package/dist/components/ConfigProvider/ConfigProvider.js.map +1 -1
- package/dist/components.css +1 -1
- package/dist/components.css.map +1 -1
- package/dist/components.js.tmp +506 -495
- package/dist/cssm/components/ConfigProvider/ConfigProvider.d.ts +1 -1
- package/dist/cssm/components/ConfigProvider/ConfigProvider.d.ts.map +1 -1
- package/dist/cssm/components/ConfigProvider/ConfigProvider.js +3 -2
- package/dist/cssm/components/ConfigProvider/ConfigProvider.js.map +1 -1
- package/dist/cssm/index.d.ts +2 -2
- package/dist/cssm/index.d.ts.map +1 -1
- package/dist/cssm/index.js +1 -1
- package/dist/cssm/index.js.map +1 -1
- package/dist/cssm/lib/utils.d.ts +5 -0
- package/dist/cssm/lib/utils.d.ts.map +1 -1
- package/dist/cssm/lib/utils.js +9 -0
- package/dist/cssm/lib/utils.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/utils.d.ts +5 -0
- package/dist/lib/utils.d.ts.map +1 -1
- package/dist/lib/utils.js +9 -0
- package/dist/lib/utils.js.map +1 -1
- package/dist/vkui.css +1 -1
- package/dist/vkui.css.map +1 -1
- package/dist/vkui.js.tmp +506 -495
- package/package.json +1 -1
- package/src/components/ConfigProvider/ConfigProvider.tsx +7 -2
- package/src/index.ts +2 -2
- package/src/lib/utils.ts +16 -0
|
@@ -14,5 +14,5 @@ export interface ConfigProviderProps extends Partial<ConfigProviderContextInterf
|
|
|
14
14
|
/**
|
|
15
15
|
* @see https://vkcom.github.io/VKUI/#/ConfigProvider
|
|
16
16
|
*/
|
|
17
|
-
export declare const ConfigProvider: (
|
|
17
|
+
export declare const ConfigProvider: (propsRaw: ConfigProviderProps) => React.JSX.Element;
|
|
18
18
|
//# sourceMappingURL=ConfigProvider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfigProvider.d.ts","sourceRoot":"","sources":["../../../../src/components/ConfigProvider/ConfigProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ConfigProvider.d.ts","sourceRoot":"","sources":["../../../../src/components/ConfigProvider/ConfigProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAc/B,OAAO,EAEL,8BAA8B,EAG/B,MAAM,yBAAyB,CAAC;AAIjC,MAAM,WAAW,mBAAoB,SAAQ,OAAO,CAAC,8BAA8B,CAAC;IAClF;;;;;;OAMG;IACH,0BAA0B,CAAC,EAAE,MAAM,IAAI,CAAC;IACxC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED;;GAEG;AACH,eAAO,MAAM,cAAc,aAAc,mBAAmB,sBAqF3D,CAAC"}
|
|
@@ -22,7 +22,8 @@ var _utils = require("../../lib/utils");
|
|
|
22
22
|
var _warnOnce = require("../../lib/warnOnce");
|
|
23
23
|
var _ConfigProviderContext = require("./ConfigProviderContext");
|
|
24
24
|
var warn = (0, _warnOnce.warnOnce)("ConfigProvider");
|
|
25
|
-
var ConfigProvider = function(
|
|
25
|
+
var ConfigProvider = function(propsRaw) {
|
|
26
|
+
var props = (0, _utils.excludeKeysWithUndefined)(propsRaw);
|
|
26
27
|
var parentConfig = (0, _ConfigProviderContext.useConfigProvider)();
|
|
27
28
|
var _$_object_spread = _object_spread._({}, parentConfig, props), children = _$_object_spread.children, webviewType = _$_object_spread.webviewType, hasCustomPanelHeaderAfterMerged = _$_object_spread.hasCustomPanelHeaderAfter, customPanelHeaderAfterMinWidth = _$_object_spread.customPanelHeaderAfterMinWidth, isWebView = _$_object_spread.isWebView, transitionMotionEnabled = _$_object_spread.transitionMotionEnabled, platform = _$_object_spread.platform, locale = _$_object_spread.locale, appearanceProp = _$_object_spread.appearance, _object_spread_onDetectAppearanceByBridge = _$_object_spread.onDetectAppearanceByBridge, onDetectAppearanceByBridge = _object_spread_onDetectAppearanceByBridge === void 0 ? _vkjs.noop : _object_spread_onDetectAppearanceByBridge;
|
|
28
29
|
// TODO [>=6]: Удалить данный бэкпорт
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../src/components/ConfigProvider/ConfigProvider.tsx"],"sourcesContent":["import * as React from 'react';\nimport { noop } from '@vkontakte/vkjs';\nimport { generateVKUITokensClassName } from '../../helpers/generateVKUITokensClassName';\nimport { useAutoDetectAppearance } from '../../hooks/useAutoDetectAppearance';\nimport { useObjectMemo } from '../../hooks/useObjectMemo';\nimport { useDOM } from '../../lib/dom';\nimport { TokensClassProvider } from '../../lib/tokensClassProvider';\nimport { useIsomorphicLayoutEffect } from '../../lib/useIsomorphicLayoutEffect';\nimport {
|
|
1
|
+
{"version":3,"sources":["../../../../src/components/ConfigProvider/ConfigProvider.tsx"],"sourcesContent":["import * as React from 'react';\nimport { noop } from '@vkontakte/vkjs';\nimport { generateVKUITokensClassName } from '../../helpers/generateVKUITokensClassName';\nimport { useAutoDetectAppearance } from '../../hooks/useAutoDetectAppearance';\nimport { useObjectMemo } from '../../hooks/useObjectMemo';\nimport { useDOM } from '../../lib/dom';\nimport { TokensClassProvider } from '../../lib/tokensClassProvider';\nimport { useIsomorphicLayoutEffect } from '../../lib/useIsomorphicLayoutEffect';\nimport {\n addClassNameToElement,\n excludeKeysWithUndefined,\n removeClassNameFromElement,\n} from '../../lib/utils';\nimport { warnOnce } from '../../lib/warnOnce';\nimport {\n ConfigProviderContext,\n ConfigProviderContextInterface,\n useConfigProvider,\n WebviewType,\n} from './ConfigProviderContext';\n\nconst warn = warnOnce('ConfigProvider');\n\nexport interface ConfigProviderProps extends Partial<ConfigProviderContextInterface> {\n /**\n * > ⚠️ В **v6** метод будет удалён (см. https://github.com/VKCOM/VKUI/issues/5049).\n * > Используйте хук `useAppearance()` из библиотеки `@vkontakte/vk-bridge-react`, если вам нужно\n * > определять, что `appearance` был передан через VK Bridge.\n *\n * @deprecated v5.8.0\n */\n onDetectAppearanceByBridge?: () => void; // TODO [>=6]: удалить\n children: React.ReactNode;\n}\n\n/**\n * @see https://vkcom.github.io/VKUI/#/ConfigProvider\n */\nexport const ConfigProvider = (propsRaw: ConfigProviderProps) => {\n const props = excludeKeysWithUndefined(propsRaw);\n const parentConfig = useConfigProvider();\n\n const {\n children,\n webviewType,\n hasCustomPanelHeaderAfter: hasCustomPanelHeaderAfterMerged,\n customPanelHeaderAfterMinWidth,\n isWebView,\n transitionMotionEnabled,\n platform,\n locale,\n appearance: appearanceProp,\n onDetectAppearanceByBridge = noop,\n } = {\n ...parentConfig,\n ...props,\n };\n\n // TODO [>=6]: Удалить данный бэкпорт\n const hasCustomPanelHeaderAfter =\n props.webviewType && props.hasCustomPanelHeaderAfter === undefined\n ? props.webviewType === WebviewType.VKAPPS\n : hasCustomPanelHeaderAfterMerged;\n\n if (process.env.NODE_ENV === 'development') {\n // TODO [>=6]: удалить warn\n let webviewTypeRule = '';\n if (props.webviewType) {\n webviewTypeRule =\n props.webviewType === WebviewType.INTERNAL\n ? '3. замените webviewType={WebviewType.INTERNAL} на hasCustomPanelHeaderAfterProp={false}'\n : '3. замените webviewType={WebviewType.VKAPPS} на hasCustomPanelHeaderAfterProp={true}';\n }\n warn(`[@vkontakte/vk-bridge's deprecated] Если вы используете VK Bridge, то:\n\n1. используйте хук useAppearance() из @vkontakte/vk-bridge-react и результат передайте в параметр appearance;\n2. передайте bridge.isWebView() в параметр isWebView;\n${webviewTypeRule}\n\nПодробности см. https://github.com/VKCOM/VKUI/issues/5049\n`);\n }\n\n // TODO [>=6]: удалить использование хука\n const appearance = useAutoDetectAppearance(appearanceProp, onDetectAppearanceByBridge);\n\n const { document } = useDOM();\n\n // TODO [>=6]: переместить хук в AppRoot (см. https://github.com/VKCOM/VKUI/issues/4810).\n useIsomorphicLayoutEffect(\n function attachVKUITokensClassNameToBody() {\n if (!document) {\n return;\n }\n\n const VKUITokensClassName = generateVKUITokensClassName(platform, appearance);\n\n addClassNameToElement(document.body, VKUITokensClassName);\n return () => {\n removeClassNameFromElement(document.body, VKUITokensClassName);\n };\n },\n [platform, appearance],\n );\n\n const configContext = useObjectMemo({\n webviewType,\n hasCustomPanelHeaderAfter,\n customPanelHeaderAfterMinWidth,\n isWebView,\n transitionMotionEnabled,\n platform,\n locale,\n appearance,\n });\n\n return (\n <ConfigProviderContext.Provider value={configContext}>\n <TokensClassProvider platform={platform} appearance={appearance}>\n {children}\n </TokensClassProvider>\n </ConfigProviderContext.Provider>\n );\n};\n"],"names":["ConfigProvider","warn","warnOnce","propsRaw","props","excludeKeysWithUndefined","parentConfig","useConfigProvider","children","webviewType","hasCustomPanelHeaderAfter","hasCustomPanelHeaderAfterMerged","customPanelHeaderAfterMinWidth","isWebView","transitionMotionEnabled","platform","locale","appearance","appearanceProp","onDetectAppearanceByBridge","noop","undefined","WebviewType","VKAPPS","process","env","NODE_ENV","webviewTypeRule","INTERNAL","useAutoDetectAppearance","document","useDOM","useIsomorphicLayoutEffect","attachVKUITokensClassNameToBody","VKUITokensClassName","generateVKUITokensClassName","addClassNameToElement","body","removeClassNameFromElement","configContext","useObjectMemo","ConfigProviderContext","Provider","value","TokensClassProvider"],"mappings":";;;;+BAsCaA;;;eAAAA;;;;;+DAtCU;oBACF;2CACuB;uCACJ;6BACV;mBACP;mCACa;yCACM;qBAKnC;wBACkB;qCAMlB;AAEP,IAAMC,OAAOC,IAAAA,kBAAQ,EAAC;AAiBf,IAAMF,iBAAiB,SAACG;IAC7B,IAAMC,QAAQC,IAAAA,+BAAwB,EAACF;IACvC,IAAMG,eAAeC,IAAAA,wCAAiB;IAEtC,IAWI,mBAAA,qBACCD,cACAF,QAZHI,WAUE,iBAVFA,UACAC,cASE,iBATFA,aACAC,AAA2BC,kCAQzB,iBARFD,2BACAE,iCAOE,iBAPFA,gCACAC,YAME,iBANFA,WACAC,0BAKE,iBALFA,yBACAC,WAIE,iBAJFA,UACAC,SAGE,iBAHFA,QACAC,AAAYC,iBAEV,iBAFFD,wDAEE,iBADFE,4BAAAA,oFAA6BC,UAAI;IAMnC,qCAAqC;IACrC,IAAMV,4BACJN,MAAMK,WAAW,IAAIL,MAAMM,yBAAyB,KAAKW,YACrDjB,MAAMK,WAAW,KAAKa,kCAAW,CAACC,MAAM,GACxCZ;IAEN,IAAIa,QAAQC,GAAG,CAACC,QAAQ,KAAK,eAAe;QAC1C,2BAA2B;QAC3B,IAAIC,kBAAkB;QACtB,IAAIvB,MAAMK,WAAW,EAAE;YACrBkB,kBACEvB,MAAMK,WAAW,KAAKa,kCAAW,CAACM,QAAQ,GACtC,4FACA;QACR;QACA3B,KAAK,AAAC,mPAIQ,OAAhB0B,iBAAgB;IAIhB;IAEA,yCAAyC;IACzC,IAAMV,aAAaY,IAAAA,gDAAuB,EAACX,gBAAgBC;IAE3D,IAAM,AAAEW,WAAaC,IAAAA,WAAM,IAAnBD;IAER,yFAAyF;IACzFE,IAAAA,oDAAyB,EACvB,SAASC;QACP,IAAI,CAACH,UAAU;YACb;QACF;QAEA,IAAMI,sBAAsBC,IAAAA,wDAA2B,EAACpB,UAAUE;QAElEmB,IAAAA,4BAAqB,EAACN,SAASO,IAAI,EAAEH;QACrC,OAAO;YACLI,IAAAA,iCAA0B,EAACR,SAASO,IAAI,EAAEH;QAC5C;IACF,GACA;QAACnB;QAAUE;KAAW;IAGxB,IAAMsB,gBAAgBC,IAAAA,4BAAa,EAAC;QAClC/B,aAAAA;QACAC,2BAAAA;QACAE,gCAAAA;QACAC,WAAAA;QACAC,yBAAAA;QACAC,UAAAA;QACAC,QAAAA;QACAC,YAAAA;IACF;IAEA,qBACE,qBAACwB,4CAAqB,CAACC,QAAQ;QAACC,OAAOJ;qBACrC,qBAACK,wCAAmB;QAAC7B,UAAUA;QAAUE,YAAYA;OAClDT;AAIT"}
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -35,6 +35,8 @@ export type { ImageBaseSize, ImageBaseExpectedIconProps, ImageBaseBadgeProps, Im
|
|
|
35
35
|
*/
|
|
36
36
|
export { Button } from './components/Button/Button';
|
|
37
37
|
export type { ButtonProps } from './components/Button/Button';
|
|
38
|
+
export { IconButton } from './components/IconButton/IconButton';
|
|
39
|
+
export type { IconButtonProps } from './components/IconButton/IconButton';
|
|
38
40
|
/**
|
|
39
41
|
* Layout
|
|
40
42
|
*/
|
|
@@ -106,8 +108,6 @@ export { Badge } from './components/Badge/Badge';
|
|
|
106
108
|
export type { BadgeProps } from './components/Badge/Badge';
|
|
107
109
|
export { ButtonGroup } from './components/ButtonGroup/ButtonGroup';
|
|
108
110
|
export type { ButtonGroupProps } from './components/ButtonGroup/ButtonGroup';
|
|
109
|
-
export { IconButton } from './components/IconButton/IconButton';
|
|
110
|
-
export type { IconButtonProps } from './components/IconButton/IconButton';
|
|
111
111
|
export { Card } from './components/Card/Card';
|
|
112
112
|
export type { CardProps } from './components/Card/Card';
|
|
113
113
|
export { CardGrid } from './components/CardGrid/CardGrid';
|
package/dist/cjs/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,CAAC;AAEzB,OAAO,wBAAwB,CAAC;AAChC,OAAO,gCAAgC,CAAC;AACxC,OAAO,4BAA4B,CAAC;AAEpC,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAEjE;;GAEG;AACH,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAC5D,YAAY,EAAE,UAAU,EAAE,MAAM,qCAAqC,CAAC;AACtE,OAAO,EAAE,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AACrE,YAAY,EAAE,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAC/E,OAAO,EAAE,IAAI,EAAE,MAAM,mCAAmC,CAAC;AACzD,YAAY,EAAE,SAAS,EAAE,MAAM,mCAAmC,CAAC;AACnE,OAAO,EAAE,SAAS,EAAE,MAAM,6CAA6C,CAAC;AACxE,YAAY,EAAE,cAAc,EAAE,MAAM,6CAA6C,CAAC;AAClF,OAAO,EAAE,OAAO,EAAE,MAAM,yCAAyC,CAAC;AAClE,YAAY,EAAE,YAAY,EAAE,MAAM,yCAAyC,CAAC;AAC5E,OAAO,EAAE,QAAQ,EAAE,MAAM,2CAA2C,CAAC;AACrE,YAAY,EAAE,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAC/E,OAAO,EAAE,OAAO,EAAE,MAAM,yCAAyC,CAAC;AAClE,YAAY,EAAE,YAAY,EAAE,MAAM,yCAAyC,CAAC;AAE5E;;GAEG;AACH,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EACL,gBAAgB,EAChB,SAAS,EACT,+BAA+B,EAC/B,kCAAkC,EAClC,iCAAiC,GAClC,MAAM,kCAAkC,CAAC;AAC1C,YAAY,EACV,aAAa,EACb,0BAA0B,EAC1B,mBAAmB,EACnB,qBAAqB,GACtB,MAAM,kCAAkC,CAAC;AAE1C;;GAEG;AACH,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAE9D;;GAEG;AACH,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,kDAAkD,CAAC;AACrF,YAAY,EAAE,sBAAsB,EAAE,MAAM,kDAAkD,CAAC;AAC/F,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,kBAAkB,EAAE,MAAM,oDAAoD,CAAC;AACxF,YAAY,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAClG,OAAO,EAAE,kBAAkB,EAAE,MAAM,oDAAoD,CAAC;AACxF,YAAY,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAClG,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,gBAAgB,EAAE,MAAM,gDAAgD,CAAC;AAClF,YAAY,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AAC5F,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAE7E;;GAEG;AACH,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AACzE,YAAY,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AACnF,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AACjF,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EACV,gBAAgB,EAChB,yBAAyB,GAC1B,MAAM,sCAAsC,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAC/E,YAAY,EAAE,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AACzF,OAAO,EAAE,8BAA8B,EAAE,MAAM,yDAAyD,CAAC;AACzG,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AACzE,YAAY,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AACnF,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAEpE;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,0CAA0C,CAAC;AACrE,YAAY,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,EAAE,oBAAoB,EAAE,MAAM,6CAA6C,CAAC;AACnF,OAAO,EAAE,gBAAgB,EAAE,MAAM,yCAAyC,CAAC;AAC3E,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAC/E,YAAY,EAAE,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AACzF,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,kBAAkB,EAAE,MAAM,oDAAoD,CAAC;AACxF,YAAY,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAElG;;GAEG;AACH,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,YAAY,EAAE,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AACrF,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,YAAY,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AACtF,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,0BAA0B,EAC1B,kBAAkB,GACnB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAChG,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAC/F,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AACzE,YAAY,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AACnF,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uCAAuC,CAAC;AACzE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EACV,gBAAgB,EAChB,yBAAyB,EACzB,oBAAoB,EACpB,sBAAsB,EACtB,oBAAoB,EACpB,uBAAuB,GACxB,MAAM,sCAAsC,CAAC;AAC9C,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AACtE,YAAY,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AACtE,YAAY,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,MAAM,gDAAgD,CAAC;AAClF,YAAY,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AAC5F,OAAO,EAAE,mBAAmB,EAAE,MAAM,sDAAsD,CAAC;AAC3F,YAAY,EAAE,wBAAwB,EAAE,MAAM,sDAAsD,CAAC;AACrG,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AACvE,YAAY,EAAE,qBAAqB,EAAE,MAAM,yCAAyC,CAAC;AAErF;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAC/E,YAAY,EAAE,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AACzF,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAChF,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,eAAe,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AACpG,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AACzE,YAAY,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AACnF,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AACtE,YAAY,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AACtE,YAAY,EACV,WAAW,EACX,2BAA2B,GAC5B,MAAM,wCAAwC,CAAC;AAChD,OAAO,EAAE,kBAAkB,EAAE,MAAM,oDAAoD,CAAC;AACxF,YAAY,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAClG,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,YAAY,EAAE,eAAe,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAChG,OAAO,EAAE,gBAAgB,EAAE,MAAM,gDAAgD,CAAC;AAClF,YAAY,EACV,qBAAqB,EACrB,+BAA+B,EAC/B,qBAAqB,GACtB,MAAM,gDAAgD,CAAC;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AACzE,YAAY,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AACnF,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,YAAY,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,YAAY,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AAEtF;;GAEG;AACH,OAAO,EAAE,GAAG,EAAE,MAAM,sBAAsB,CAAC;AAC3C,YAAY,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AACtE,YAAY,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,gBAAgB,EAAE,MAAM,gDAAgD,CAAC;AAClF,OAAO,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAC/E,YAAY,EAAE,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AACzF,OAAO,EAAE,iBAAiB,EAAE,MAAM,kDAAkD,CAAC;AACrF,OAAO,EAAE,eAAe,EAAE,MAAM,8CAA8C,CAAC;AAC/E,YAAY,EAAE,oBAAoB,EAAE,MAAM,8CAA8C,CAAC;AACzF,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AACzE,YAAY,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;AACnF,OAAO,EAAE,mBAAmB,EAAE,MAAM,sDAAsD,CAAC;AAC3F,YAAY,EAAE,wBAAwB,EAAE,MAAM,sDAAsD,CAAC;AACrG,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,oBAAoB,EAAE,MAAM,wDAAwD,CAAC;AAC9F,YAAY,EAAE,yBAAyB,EAAE,MAAM,wDAAwD,CAAC;AAExG;;GAEG;AACH,OAAO,EAAE,kBAAkB,EAAE,MAAM,oDAAoD,CAAC;AACxF,YAAY,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAClG,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,YAAY,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AACtF,OAAO,EACL,iBAAiB,EACjB,qBAAqB,EACrB,WAAW,GACZ,MAAM,mDAAmD,CAAC;AAC3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,oDAAoD,CAAC;AACxF,YAAY,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAClG,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,YAAY,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AACtF,OAAO,EAAE,gBAAgB,EAAE,MAAM,gDAAgD,CAAC;AAClF,YAAY,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAC;AAE5F;;GAEG;AACH,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AACnE,YAAY,EAAE,gBAAgB,EAAE,MAAM,sCAAsC,CAAC;AAE7E;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EACL,KAAK,8BAA8B,EACnC,8BAA8B,GAC/B,MAAM,wCAAwC,CAAC;AAChD,OAAO,EACL,KAAK,+BAA+B,EACpC,+BAA+B,GAChC,MAAM,yCAAyC,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,oCAAoC,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,wDAAwD,CAAC;AAC1F,OAAO,EAAE,eAAe,EAAE,MAAM,0EAA0E,CAAC;AAC3G,OAAO,EAAE,QAAQ,EAAE,MAAM,oCAAoC,CAAC;AAC9D,YAAY,EAAE,mBAAmB,EAAE,MAAM,0EAA0E,CAAC;AACpH,OAAO,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC;AAEjF;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,OAAO,EAAE,eAAe,IAAI,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,YAAY,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,EACL,SAAS,EACT,UAAU,EACV,QAAQ,EACR,2BAA2B,EAC3B,6BAA6B,GAC9B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,KAAK,SAAS,IAAI,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AACtE,YAAY,EAAE,eAAe,EAAE,MAAM,mDAAmD,CAAC;AACzF,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAC3D,OAAO,EAAE,gBAAgB,EAAE,MAAM,gDAAgD,CAAC;AAElF;;GAEG;AACH,YAAY,EAAE,SAAS,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACrF,YAAY,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AACjD,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,YAAY,EAAE,sBAAsB,EAAE,MAAM,wDAAwD,CAAC;AAErG;;GAEG;AACH,OAAO,EAAE,WAAW,IAAI,oBAAoB,EAAE,MAAM,sCAAsC,CAAC;AAC3F,YAAY,EAAE,gBAAgB,IAAI,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AAE1G,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAC3E,YAAY,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AAE1F,OAAO,EAAE,WAAW,IAAI,oBAAoB,EAAE,MAAM,sCAAsC,CAAC;AAC3F,YAAY,EAAE,gBAAgB,IAAI,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AAE1G,OAAO,EAAE,WAAW,IAAI,oBAAoB,EAAE,MAAM,sCAAsC,CAAC;AAC3F,YAAY,EAAE,gBAAgB,IAAI,yBAAyB,EAAE,MAAM,sCAAsC,CAAC;AAE1G,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,4BAA4B,CAAC;AACvE,YAAY,EAAE,WAAW,IAAI,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAEtF,OAAO,EAAE,YAAY,IAAI,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AACvF,YAAY,EAAE,iBAAiB,IAAI,0BAA0B,EAAE,MAAM,gCAAgC,CAAC;AAEtG,OAAO,EAAE,sBAAsB,IAAI,+BAA+B,EAAE,MAAM,4DAA4D,CAAC;AACvI,YAAY,EAAE,2BAA2B,IAAI,oCAAoC,EAAE,MAAM,4DAA4D,CAAC;AAEtJ,OAAO,qBAAqB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/cjs/index.js
CHANGED
|
@@ -545,6 +545,7 @@ var _Tappable = require("./components/Tappable/Tappable");
|
|
|
545
545
|
var _FixedLayout = require("./components/FixedLayout/FixedLayout");
|
|
546
546
|
var _ImageBase = require("./components/ImageBase/ImageBase");
|
|
547
547
|
var _Button = require("./components/Button/Button");
|
|
548
|
+
var _IconButton = require("./components/IconButton/IconButton");
|
|
548
549
|
var _Root = require("./components/Root/Root");
|
|
549
550
|
var _View = require("./components/View/View");
|
|
550
551
|
var _Panel = require("./components/Panel/Panel");
|
|
@@ -576,7 +577,6 @@ var _ModalCard = require("./components/ModalCard/ModalCard");
|
|
|
576
577
|
var _ModalDismissButton = require("./components/ModalDismissButton/ModalDismissButton");
|
|
577
578
|
var _Badge = require("./components/Badge/Badge");
|
|
578
579
|
var _ButtonGroup = require("./components/ButtonGroup/ButtonGroup");
|
|
579
|
-
var _IconButton = require("./components/IconButton/IconButton");
|
|
580
580
|
var _Card = require("./components/Card/Card");
|
|
581
581
|
var _CardGrid = require("./components/CardGrid/CardGrid");
|
|
582
582
|
var _CardScroll = require("./components/CardScroll/CardScroll");
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import './lib/polyfills';\n\nimport './styles/constants.css';\nimport './styles/adaptivity.module.css';\nimport './styles/dynamicTokens.css';\n\nexport { AppRoot } from './components/AppRoot/AppRoot';\nexport type { AppRootProps } from './components/AppRoot/AppRoot';\n\n/**\n * Typography\n */\nexport { Title } from './components/Typography/Title/Title';\nexport type { TitleProps } from './components/Typography/Title/Title';\nexport { Headline } from './components/Typography/Headline/Headline';\nexport type { HeadlineProps } from './components/Typography/Headline/Headline';\nexport { Text } from './components/Typography/Text/Text';\nexport type { TextProps } from './components/Typography/Text/Text';\nexport { Paragraph } from './components/Typography/Paragraph/Paragraph';\nexport type { ParagraphProps } from './components/Typography/Paragraph/Paragraph';\nexport { Subhead } from './components/Typography/Subhead/Subhead';\nexport type { SubheadProps } from './components/Typography/Subhead/Subhead';\nexport { Footnote } from './components/Typography/Footnote/Footnote';\nexport type { FootnoteProps } from './components/Typography/Footnote/Footnote';\nexport { Caption } from './components/Typography/Caption/Caption';\nexport type { CaptionProps } from './components/Typography/Caption/Caption';\n\n/**\n * Service\n */\nexport { Tappable } from './components/Tappable/Tappable';\nexport type { TappableProps } from './components/Tappable/Tappable';\nexport { FixedLayout } from './components/FixedLayout/FixedLayout';\nexport type { FixedLayoutProps } from './components/FixedLayout/FixedLayout';\nexport {\n ImageBaseContext,\n ImageBase,\n getBadgeIconSizeByImageBaseSize,\n getFallbackIconSizeByImageBaseSize,\n getOverlayIconSizeByImageBaseSize,\n} from './components/ImageBase/ImageBase';\nexport type {\n ImageBaseSize,\n ImageBaseExpectedIconProps,\n ImageBaseBadgeProps,\n ImageBaseOverlayProps,\n} from './components/ImageBase/ImageBase';\n\n/**\n * Primitives\n */\nexport { Button } from './components/Button/Button';\nexport type { ButtonProps } from './components/Button/Button';\n\n/**\n * Layout\n */\nexport { Root } from './components/Root/Root';\nexport type { RootProps } from './components/Root/Root';\nexport { View } from './components/View/View';\nexport type { ViewProps } from './components/View/View';\nexport { Panel } from './components/Panel/Panel';\nexport type { PanelProps } from './components/Panel/Panel';\nexport { PanelHeaderButton } from './components/PanelHeaderButton/PanelHeaderButton';\nexport type { PanelHeaderButtonProps } from './components/PanelHeaderButton/PanelHeaderButton';\nexport { PanelHeader } from './components/PanelHeader/PanelHeader';\nexport type { PanelHeaderProps } from './components/PanelHeader/PanelHeader';\nexport { PanelHeaderContent } from './components/PanelHeaderContent/PanelHeaderContent';\nexport type { PanelHeaderContentProps } from './components/PanelHeaderContent/PanelHeaderContent';\nexport { PanelHeaderContext } from './components/PanelHeaderContext/PanelHeaderContext';\nexport type { PanelHeaderContextProps } from './components/PanelHeaderContext/PanelHeaderContext';\nexport { SplitLayout } from './components/SplitLayout/SplitLayout';\nexport type { SplitLayoutProps } from './components/SplitLayout/SplitLayout';\nexport { SplitCol } from './components/SplitCol/SplitCol';\nexport type { SplitColProps } from './components/SplitCol/SplitCol';\nexport { Epic } from './components/Epic/Epic';\nexport type { EpicProps } from './components/Epic/Epic';\nexport { Tabbar } from './components/Tabbar/Tabbar';\nexport type { TabbarProps } from './components/Tabbar/Tabbar';\nexport { TabbarItem } from './components/TabbarItem/TabbarItem';\nexport type { TabbarItemProps } from './components/TabbarItem/TabbarItem';\nexport { ScrollArrow } from './components/ScrollArrow/ScrollArrow';\nexport type { ScrollArrowProps } from './components/ScrollArrow/ScrollArrow';\nexport { HorizontalScroll } from './components/HorizontalScroll/HorizontalScroll';\nexport type { HorizontalScrollProps } from './components/HorizontalScroll/HorizontalScroll';\nexport { AspectRatio } from './components/AspectRatio/AspectRatio';\nexport type { AspectRatioProps } from './components/AspectRatio/AspectRatio';\n\n/**\n * Popouts\n */\nexport { PopoutWrapper } from './components/PopoutWrapper/PopoutWrapper';\nexport type { PopoutWrapperProps } from './components/PopoutWrapper/PopoutWrapper';\nexport { Alert } from './components/Alert/Alert';\nexport type { AlertProps, AlertActionInterface } from './components/Alert/Alert';\nexport { ActionSheet } from './components/ActionSheet/ActionSheet';\nexport type {\n ActionSheetProps,\n ActionSheetOnCloseOptions,\n} from './components/ActionSheet/ActionSheet';\nexport { ActionSheetItem } from './components/ActionSheetItem/ActionSheetItem';\nexport type { ActionSheetItemProps } from './components/ActionSheetItem/ActionSheetItem';\nexport { ActionSheetDefaultIosCloseItem } from './components/ActionSheet/ActionSheetDefaultIosCloseItem';\nexport { ScreenSpinner } from './components/ScreenSpinner/ScreenSpinner';\nexport type { ScreenSpinnerProps } from './components/ScreenSpinner/ScreenSpinner';\nexport { Snackbar } from './components/Snackbar/Snackbar';\nexport type { SnackbarProps } from './components/Snackbar/Snackbar';\n\n/**\n * Modals\n */\nexport { ModalRoot } from './components/ModalRoot/ModalRootAdaptive';\nexport type { ModalRootProps } from './components/ModalRoot/types';\nexport { withModalRootContext } from './components/ModalRoot/withModalRootContext';\nexport { ModalRootContext } from './components/ModalRoot/ModalRootContext';\nexport { ModalPage } from './components/ModalPage/ModalPage';\nexport type { ModalPageProps } from './components/ModalPage/ModalPage';\nexport { ModalPageHeader } from './components/ModalPageHeader/ModalPageHeader';\nexport type { ModalPageHeaderProps } from './components/ModalPageHeader/ModalPageHeader';\nexport { ModalCard } from './components/ModalCard/ModalCard';\nexport type { ModalCardProps } from './components/ModalCard/ModalCard';\nexport { ModalDismissButton } from './components/ModalDismissButton/ModalDismissButton';\nexport type { ModalDismissButtonProps } from './components/ModalDismissButton/ModalDismissButton';\n\n/**\n * Blocks\n */\nexport { Badge } from './components/Badge/Badge';\nexport type { BadgeProps } from './components/Badge/Badge';\nexport { ButtonGroup } from './components/ButtonGroup/ButtonGroup';\nexport type { ButtonGroupProps } from './components/ButtonGroup/ButtonGroup';\nexport { IconButton } from './components/IconButton/IconButton';\nexport type { IconButtonProps } from './components/IconButton/IconButton';\nexport { Card } from './components/Card/Card';\nexport type { CardProps } from './components/Card/Card';\nexport { CardGrid } from './components/CardGrid/CardGrid';\nexport type { CardGridProps } from './components/CardGrid/CardGrid';\nexport { CardScroll } from './components/CardScroll/CardScroll';\nexport type { CardScrollProps } from './components/CardScroll/CardScroll';\nexport { ContentCard } from './components/ContentCard/ContentCard';\nexport type { ContentCardProps } from './components/ContentCard/ContentCard';\nexport { Header } from './components/Header/Header';\nexport type { HeaderProps } from './components/Header/Header';\nexport { Group } from './components/Group/Group';\nexport type { GroupProps } from './components/Group/Group';\nexport { Gradient } from './components/Gradient/Gradient';\nexport type { GradientProps } from './components/Gradient/Gradient';\nexport { List } from './components/List/List';\nexport type { ListProps } from './components/List/List';\nexport { Cell } from './components/Cell/Cell';\nexport type { CellProps } from './components/Cell/Cell';\nexport type { CellCheckboxProps } from './components/Cell/CellCheckbox/CellCheckbox';\nexport { RichCell } from './components/RichCell/RichCell';\nexport type { RichCellProps } from './components/RichCell/RichCell';\nexport { SimpleCell } from './components/SimpleCell/SimpleCell';\nexport type { SimpleCellProps } from './components/SimpleCell/SimpleCell';\nexport { CellButton } from './components/CellButton/CellButton';\nexport type { CellButtonProps } from './components/CellButton/CellButton';\nexport { HorizontalCell } from './components/HorizontalCell/HorizontalCell';\nexport type { HorizontalCellProps } from './components/HorizontalCell/HorizontalCell';\nexport { Footer } from './components/Footer/Footer';\nexport type { FooterProps } from './components/Footer/Footer';\nexport { InfoRow } from './components/InfoRow/InfoRow';\nexport type { InfoRowProps } from './components/InfoRow/InfoRow';\nexport { Gallery } from './components/Gallery/Gallery';\nexport type { GalleryProps } from './components/Gallery/Gallery';\nexport { Avatar } from './components/Avatar/Avatar';\nexport type {\n AvatarProps,\n AvatarBadgeProps,\n AvatarBadgeWithPresetProps,\n AvatarOverlayProps,\n} from './components/Avatar/Avatar';\nexport { GridAvatar } from './components/GridAvatar/GridAvatar';\nexport type { GridAvatarProps, GridAvatarBadgeProps } from './components/GridAvatar/GridAvatar';\nexport { Image } from './components/Image/Image';\nexport type { ImageProps, ImageBadgeProps, ImageOverlayProps } from './components/Image/Image';\nexport { Progress } from './components/Progress/Progress';\nexport type { ProgressProps } from './components/Progress/Progress';\nexport { Search } from './components/Search/Search';\nexport type { SearchProps } from './components/Search/Search';\nexport { Tabs } from './components/Tabs/Tabs';\nexport type { TabsProps } from './components/Tabs/Tabs';\nexport { TabsItem } from './components/TabsItem/TabsItem';\nexport type { TabsItemProps } from './components/TabsItem/TabsItem';\nexport { Spinner } from './components/Spinner/Spinner';\nexport type { SpinnerProps } from './components/Spinner/Spinner';\nexport { PullToRefresh } from './components/PullToRefresh/PullToRefresh';\nexport type { PullToRefreshProps } from './components/PullToRefresh/PullToRefresh';\nexport { Link } from './components/Link/Link';\nexport type { LinkProps } from './components/Link/Link';\nexport { Tooltip } from './components/Tooltip/Tooltip';\nexport type { TooltipProps } from './components/Tooltip/Tooltip';\nexport { TooltipContainer } from './components/Tooltip/TooltipContainer';\nexport { Counter } from './components/Counter/Counter';\nexport type { CounterProps } from './components/Counter/Counter';\nexport { UsersStack } from './components/UsersStack/UsersStack';\nexport type { UsersStackProps } from './components/UsersStack/UsersStack';\nexport { Separator } from './components/Separator/Separator';\nexport type { SeparatorProps } from './components/Separator/Separator';\nexport { Spacing } from './components/Spacing/Spacing';\nexport type { SpacingProps } from './components/Spacing/Spacing';\nexport { Placeholder } from './components/Placeholder/Placeholder';\nexport type {\n PlaceholderProps,\n PlaceholderContainerProps,\n PlaceholderIconProps,\n PlaceholderHeaderProps,\n PlaceholderTextProps,\n PlaceholderActionsProps,\n} from './components/Placeholder/Placeholder';\nexport { Banner } from './components/Banner/Banner';\nexport type { BannerProps } from './components/Banner/Banner';\nexport { MiniInfoCell } from './components/MiniInfoCell/MiniInfoCell';\nexport type { MiniInfoCellProps } from './components/MiniInfoCell/MiniInfoCell';\nexport { WriteBar } from './components/WriteBar/WriteBar';\nexport type { WriteBarProps } from './components/WriteBar/WriteBar';\nexport { WriteBarIcon } from './components/WriteBarIcon/WriteBarIcon';\nexport type { WriteBarIconProps } from './components/WriteBarIcon/WriteBarIcon';\nexport { SubnavigationBar } from './components/SubnavigationBar/SubnavigationBar';\nexport type { SubnavigationBarProps } from './components/SubnavigationBar/SubnavigationBar';\nexport { SubnavigationButton } from './components/SubnavigationButton/SubnavigationButton';\nexport type { SubnavigationButtonProps } from './components/SubnavigationButton/SubnavigationButton';\nexport { Pagination } from './components/Pagination/Pagination';\nexport type { PaginationProps } from './components/Pagination/Pagination';\nexport { Accordion } from './components/Accordion/Accordion';\nexport type { AccordionProps } from './components/Accordion/Accordion';\nexport type { AccordionSummaryProps } from './components/Accordion/AccordionSummary';\n\n/**\n * Forms\n */\nexport { FormLayout } from './components/FormLayout/FormLayout';\nexport type { FormLayoutProps } from './components/FormLayout/FormLayout';\nexport { FormItem } from './components/FormItem/FormItem';\nexport type { FormItemProps } from './components/FormItem/FormItem';\nexport { FormField } from './components/FormField/FormField';\nexport type { FormFieldProps } from './components/FormField/FormField';\nexport { FormLayoutGroup } from './components/FormLayoutGroup/FormLayoutGroup';\nexport type { FormLayoutGroupProps } from './components/FormLayoutGroup/FormLayoutGroup';\nexport { FormStatus } from './components/FormStatus/FormStatus';\nexport type { FormStatusProps } from './components/FormStatus/FormStatus';\nexport { Switch } from './components/Switch/Switch';\nexport type { SwitchProps } from './components/Switch/Switch';\nexport { File } from './components/File/File';\nexport type { FileProps } from './components/File/File';\nexport { Input } from './components/Input/Input';\nexport type { InputProps } from './components/Input/Input';\nexport { Chip } from './components/Chip/Chip';\nexport type { ChipProps, ChipOption, RenderChip } from './components/Chip/Chip';\nexport { ChipsInput } from './components/ChipsInput/ChipsInput';\nexport type { ChipsInputProps } from './components/ChipsInput/ChipsInput';\nexport { Slider } from './components/Slider/Slider';\nexport type { SliderBaseProps, SliderProps, SliderMultipleProps } from './components/Slider/Slider';\nexport { RangeSlider } from './components/RangeSlider/RangeSlider';\nexport type { RangeSliderProps } from './components/RangeSlider/RangeSlider';\nexport { Textarea } from './components/Textarea/Textarea';\nexport type { TextareaProps } from './components/Textarea/Textarea';\nexport { Radio } from './components/Radio/Radio';\nexport type { RadioProps } from './components/Radio/Radio';\nexport { RadioGroup } from './components/RadioGroup/RadioGroup';\nexport type { RadioGroupProps } from './components/RadioGroup/RadioGroup';\nexport { Checkbox } from './components/Checkbox/Checkbox';\nexport type { CheckboxProps } from './components/Checkbox/Checkbox';\nexport { Select } from './components/Select/Select';\nexport { SelectMimicry } from './components/SelectMimicry/SelectMimicry';\nexport type { SelectMimicryProps } from './components/SelectMimicry/SelectMimicry';\nexport { NativeSelect } from './components/NativeSelect/NativeSelect';\nexport type { NativeSelectProps } from './components/NativeSelect/NativeSelect';\nexport { CustomSelect } from './components/CustomSelect/CustomSelect';\nexport type {\n SelectProps,\n CustomSelectOptionInterface,\n} from './components/CustomSelect/CustomSelect';\nexport { CustomSelectOption } from './components/CustomSelectOption/CustomSelectOption';\nexport type { CustomSelectOptionProps } from './components/CustomSelectOption/CustomSelectOption';\nexport { DatePicker } from './components/DatePicker/DatePicker';\nexport type { DatePickerProps, DatePickerDateFormat } from './components/DatePicker/DatePicker';\nexport { SegmentedControl } from './components/SegmentedControl/SegmentedControl';\nexport type {\n SegmentedControlProps,\n SegmentedControlOptionInterface,\n SegmentedControlValue,\n} from './components/SegmentedControl/SegmentedControl';\nexport { Calendar } from './components/Calendar/Calendar';\nexport type { CalendarProps } from './components/Calendar/Calendar';\nexport { CalendarRange } from './components/CalendarRange/CalendarRange';\nexport type { CalendarRangeProps } from './components/CalendarRange/CalendarRange';\nexport { DateInput } from './components/DateInput/DateInput';\nexport type { DateInputProps } from './components/DateInput/DateInput';\nexport { DateRangeInput } from './components/DateRangeInput/DateRangeInput';\nexport type { DateRangeInputProps } from './components/DateRangeInput/DateRangeInput';\n\n/**\n * Helpers\n */\nexport { Div } from './components/Div/Div';\nexport type { DivProps } from './components/Div/Div';\nexport { Touch } from './components/Touch/Touch';\nexport type { TouchProps } from './components/Touch/Touch';\nexport { PanelSpinner } from './components/PanelSpinner/PanelSpinner';\nexport type { PanelSpinnerProps } from './components/PanelSpinner/PanelSpinner';\nexport { PanelHeaderClose } from './components/PanelHeaderClose/PanelHeaderClose';\nexport { PanelHeaderBack } from './components/PanelHeaderBack/PanelHeaderBack';\nexport type { PanelHeaderBackProps } from './components/PanelHeaderBack/PanelHeaderBack';\nexport { PanelHeaderSubmit } from './components/PanelHeaderSubmit/PanelHeaderSubmit';\nexport { PanelHeaderEdit } from './components/PanelHeaderEdit/PanelHeaderEdit';\nexport type { PanelHeaderEditProps } from './components/PanelHeaderEdit/PanelHeaderEdit';\nexport { ModalCardBase } from './components/ModalCardBase/ModalCardBase';\nexport type { ModalCardBaseProps } from './components/ModalCardBase/ModalCardBase';\nexport { VisuallyHiddenInput } from './components/VisuallyHiddenInput/VisuallyHiddenInput';\nexport type { VisuallyHiddenInputProps } from './components/VisuallyHiddenInput/VisuallyHiddenInput';\nexport { VisuallyHidden } from './components/VisuallyHidden/VisuallyHidden';\nexport { AdaptiveIconRenderer } from './components/AdaptiveIconRenderer/AdaptiveIconRenderer';\nexport type { AdaptiveIconRendererProps } from './components/AdaptiveIconRenderer/AdaptiveIconRenderer';\n\n/**\n * Wrappers\n */\nexport { AdaptivityProvider } from './components/AdaptivityProvider/AdaptivityProvider';\nexport type { AdaptivityProviderProps } from './components/AdaptivityProvider/AdaptivityProvider';\nexport { ConfigProvider } from './components/ConfigProvider/ConfigProvider';\nexport type { ConfigProviderProps } from './components/ConfigProvider/ConfigProvider';\nexport {\n useConfigProvider,\n ConfigProviderContext,\n WebviewType,\n} from './components/ConfigProvider/ConfigProviderContext';\nexport { AppearanceProvider } from './components/AppearanceProvider/AppearanceProvider';\nexport type { AppearanceProviderProps } from './components/AppearanceProvider/AppearanceProvider';\nexport { Appearance } from './helpers/appearance';\nexport { LocaleProvider } from './components/LocaleProvider/LocaleProvider';\nexport type { LocaleProviderProps } from './components/LocaleProvider/LocaleProvider';\nexport { PlatformProvider } from './components/PlatformProvider/PlatformProvider';\nexport type { PlatformProviderProps } from './components/PlatformProvider/PlatformProvider';\n\n/**\n * Advertisement\n */\nexport { PromoBanner } from './components/PromoBanner/PromoBanner';\nexport type { PromoBannerProps } from './components/PromoBanner/PromoBanner';\n\n/**\n * HOCs\n */\nexport { withInsets } from './hoc/withInsets';\nexport { withPlatform } from './hoc/withPlatform';\n\n/**\n * Hooks\n */\nexport { useInsets } from './hooks/useInsets';\nexport { usePlatform } from './hooks/usePlatform';\nexport { useAdaptivity } from './hooks/useAdaptivity';\nexport {\n type UseAdaptivityConditionalRender,\n useAdaptivityConditionalRender,\n} from './hooks/useAdaptivityConditionalRender';\nexport {\n type UseAdaptivityWithJSMediaQueries,\n useAdaptivityWithJSMediaQueries,\n} from './hooks/useAdaptivityWithJSMediaQueries';\nexport { useAppearance } from './hooks/useAppearance';\nexport { usePagination } from './hooks/usePagination';\nexport { useTodayDate } from './hooks/useTodayDate';\nexport { useScrollLock } from './components/AppRoot/ScrollContext';\nexport { useNavTransition } from './components/NavTransitionContext/NavTransitionContext';\nexport { useNavDirection } from './components/NavTransitionDirectionContext/NavTransitionDirectionContext';\nexport { useNavId } from './components/NavIdContext/useNavId';\nexport type { TransitionDirection } from './components/NavTransitionDirectionContext/NavTransitionDirectionContext';\nexport { useModalRootContext } from './components/ModalRoot/useModalRootContext';\n\n/**\n * Utils\n */\nexport { classNames } from '@vkontakte/vkjs';\nexport { animate } from './lib/animate';\nexport { defaultFilterFn as filterFnForSelect } from './lib/select';\nexport { removeObjectKeys } from './lib/removeObjectKeys';\nexport { SSRWrapper } from './lib/SSR';\nexport type { SSRWrapperProps } from './lib/SSR';\nexport { platform, Platform } from './lib/platform';\nexport {\n ViewWidth,\n ViewHeight,\n SizeType,\n getViewWidthByViewportWidth,\n getViewHeightByViewportHeight,\n} from './lib/adaptivity';\nexport { type Placement as FloatingPlacement } from './lib/floating';\nexport { getPlatformClassName } from './helpers/getPlatformClassName';\nexport type { AdaptivityProps } from './components/AdaptivityProvider/AdaptivityContext';\nexport { calcInitialsAvatarColor } from './helpers/avatar';\nexport { CustomScrollView } from './components/CustomScrollView/CustomScrollView';\n\n/**\n * Types\n */\nexport type { AlignType, HasPlatform, HasInsets, HasRef, HasRootRef } from './types';\nexport type { NavIdProps } from './lib/getNavId';\nexport type { PlatformType } from './lib/platform';\nexport type { TransitionContextProps } from './components/NavTransitionContext/NavTransitionContext';\n\n/**\n * Unstable\n */\nexport { ChipsSelect as unstable_ChipsSelect } from './components/ChipsSelect/ChipsSelect';\nexport type { ChipsSelectProps as unstable_ChipsSelectProps } from './components/ChipsSelect/ChipsSelect';\n\nexport { Popover as unstable_Popover } from './components/Popover/Popover';\nexport type { PopoverProps as unstable_PopoverProps } from './components/Popover/Popover';\n\nexport { TextTooltip as unstable_TextTooltip } from './components/TextTooltip/TextTooltip';\nexport type { TextTooltipProps as unstable_TextTooltipProps } from './components/TextTooltip/TextTooltip';\n\nexport { RichTooltip as unstable_RichTooltip } from './components/RichTooltip/RichTooltip';\nexport type { RichTooltipProps as unstable_RichTooltipProps } from './components/RichTooltip/RichTooltip';\n\nexport { Popper as unstable_Popper } from './components/Popper/Popper';\nexport type { PopperProps as unstable_PopperProps } from './components/Popper/Popper';\n\nexport { ViewInfinite as unstable_ViewInfinite } from './components/View/ViewInfinite';\nexport type { ViewInfiniteProps as unstable_ViewInfiniteProps } from './components/View/ViewInfinite';\n\nexport { HorizontalCellShowMore as unstable_HorizontalCellShowMore } from './components/HorizontalCellShowMore/HorizontalCellShowMore';\nexport type { HorizontalCellShowMoreProps as unstable_HorizontalCellShowMoreProps } from './components/HorizontalCellShowMore/HorizontalCellShowMore';\n\nimport './styles/common.css';\n"],"names":["Accordion","ActionSheet","ActionSheetDefaultIosCloseItem","ActionSheetItem","AdaptiveIconRenderer","AdaptivityProvider","Alert","AppRoot","Appearance","AppearanceProvider","AspectRatio","Avatar","Badge","Banner","Button","ButtonGroup","Calendar","CalendarRange","Caption","Card","CardGrid","CardScroll","Cell","CellButton","Checkbox","Chip","ChipsInput","ConfigProvider","ConfigProviderContext","ContentCard","Counter","CustomScrollView","CustomSelect","CustomSelectOption","DateInput","DatePicker","DateRangeInput","Div","Epic","File","FixedLayout","Footer","Footnote","FormField","FormItem","FormLayout","FormLayoutGroup","FormStatus","Gallery","Gradient","GridAvatar","Group","Header","Headline","HorizontalCell","HorizontalScroll","IconButton","Image","ImageBase","ImageBaseContext","InfoRow","Input","Link","List","LocaleProvider","MiniInfoCell","ModalCard","ModalCardBase","ModalDismissButton","ModalPage","ModalPageHeader","ModalRoot","ModalRootContext","NativeSelect","Pagination","Panel","PanelHeader","PanelHeaderBack","PanelHeaderButton","PanelHeaderClose","PanelHeaderContent","PanelHeaderContext","PanelHeaderEdit","PanelHeaderSubmit","PanelSpinner","Paragraph","Placeholder","Platform","PlatformProvider","PopoutWrapper","Progress","PromoBanner","PullToRefresh","Radio","RadioGroup","RangeSlider","RichCell","Root","SSRWrapper","ScreenSpinner","ScrollArrow","Search","SegmentedControl","Select","SelectMimicry","Separator","SimpleCell","SizeType","Slider","Snackbar","Spacing","Spinner","SplitCol","SplitLayout","Subhead","SubnavigationBar","SubnavigationButton","Switch","Tabbar","TabbarItem","Tabs","TabsItem","Tappable","Text","Textarea","Title","Tooltip","TooltipContainer","Touch","UsersStack","View","ViewHeight","ViewWidth","VisuallyHidden","VisuallyHiddenInput","WebviewType","WriteBar","WriteBarIcon","animate","calcInitialsAvatarColor","classNames","filterFnForSelect","defaultFilterFn","getBadgeIconSizeByImageBaseSize","getFallbackIconSizeByImageBaseSize","getOverlayIconSizeByImageBaseSize","getPlatformClassName","getViewHeightByViewportHeight","getViewWidthByViewportWidth","platform","removeObjectKeys","unstable_ChipsSelect","ChipsSelect","unstable_HorizontalCellShowMore","HorizontalCellShowMore","unstable_Popover","Popover","unstable_Popper","Popper","unstable_RichTooltip","RichTooltip","unstable_TextTooltip","TextTooltip","unstable_ViewInfinite","ViewInfinite","useAdaptivity","useAdaptivityConditionalRender","useAdaptivityWithJSMediaQueries","useAppearance","useConfigProvider","useInsets","useModalRootContext","useNavDirection","useNavId","useNavTransition","usePagination","usePlatform","useScrollLock","useTodayDate","withInsets","withModalRootContext","withPlatform"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["import './lib/polyfills';\n\nimport './styles/constants.css';\nimport './styles/adaptivity.module.css';\nimport './styles/dynamicTokens.css';\n\nexport { AppRoot } from './components/AppRoot/AppRoot';\nexport type { AppRootProps } from './components/AppRoot/AppRoot';\n\n/**\n * Typography\n */\nexport { Title } from './components/Typography/Title/Title';\nexport type { TitleProps } from './components/Typography/Title/Title';\nexport { Headline } from './components/Typography/Headline/Headline';\nexport type { HeadlineProps } from './components/Typography/Headline/Headline';\nexport { Text } from './components/Typography/Text/Text';\nexport type { TextProps } from './components/Typography/Text/Text';\nexport { Paragraph } from './components/Typography/Paragraph/Paragraph';\nexport type { ParagraphProps } from './components/Typography/Paragraph/Paragraph';\nexport { Subhead } from './components/Typography/Subhead/Subhead';\nexport type { SubheadProps } from './components/Typography/Subhead/Subhead';\nexport { Footnote } from './components/Typography/Footnote/Footnote';\nexport type { FootnoteProps } from './components/Typography/Footnote/Footnote';\nexport { Caption } from './components/Typography/Caption/Caption';\nexport type { CaptionProps } from './components/Typography/Caption/Caption';\n\n/**\n * Service\n */\nexport { Tappable } from './components/Tappable/Tappable';\nexport type { TappableProps } from './components/Tappable/Tappable';\nexport { FixedLayout } from './components/FixedLayout/FixedLayout';\nexport type { FixedLayoutProps } from './components/FixedLayout/FixedLayout';\nexport {\n ImageBaseContext,\n ImageBase,\n getBadgeIconSizeByImageBaseSize,\n getFallbackIconSizeByImageBaseSize,\n getOverlayIconSizeByImageBaseSize,\n} from './components/ImageBase/ImageBase';\nexport type {\n ImageBaseSize,\n ImageBaseExpectedIconProps,\n ImageBaseBadgeProps,\n ImageBaseOverlayProps,\n} from './components/ImageBase/ImageBase';\n\n/**\n * Primitives\n */\nexport { Button } from './components/Button/Button';\nexport type { ButtonProps } from './components/Button/Button';\nexport { IconButton } from './components/IconButton/IconButton';\nexport type { IconButtonProps } from './components/IconButton/IconButton';\n\n/**\n * Layout\n */\nexport { Root } from './components/Root/Root';\nexport type { RootProps } from './components/Root/Root';\nexport { View } from './components/View/View';\nexport type { ViewProps } from './components/View/View';\nexport { Panel } from './components/Panel/Panel';\nexport type { PanelProps } from './components/Panel/Panel';\nexport { PanelHeaderButton } from './components/PanelHeaderButton/PanelHeaderButton';\nexport type { PanelHeaderButtonProps } from './components/PanelHeaderButton/PanelHeaderButton';\nexport { PanelHeader } from './components/PanelHeader/PanelHeader';\nexport type { PanelHeaderProps } from './components/PanelHeader/PanelHeader';\nexport { PanelHeaderContent } from './components/PanelHeaderContent/PanelHeaderContent';\nexport type { PanelHeaderContentProps } from './components/PanelHeaderContent/PanelHeaderContent';\nexport { PanelHeaderContext } from './components/PanelHeaderContext/PanelHeaderContext';\nexport type { PanelHeaderContextProps } from './components/PanelHeaderContext/PanelHeaderContext';\nexport { SplitLayout } from './components/SplitLayout/SplitLayout';\nexport type { SplitLayoutProps } from './components/SplitLayout/SplitLayout';\nexport { SplitCol } from './components/SplitCol/SplitCol';\nexport type { SplitColProps } from './components/SplitCol/SplitCol';\nexport { Epic } from './components/Epic/Epic';\nexport type { EpicProps } from './components/Epic/Epic';\nexport { Tabbar } from './components/Tabbar/Tabbar';\nexport type { TabbarProps } from './components/Tabbar/Tabbar';\nexport { TabbarItem } from './components/TabbarItem/TabbarItem';\nexport type { TabbarItemProps } from './components/TabbarItem/TabbarItem';\nexport { ScrollArrow } from './components/ScrollArrow/ScrollArrow';\nexport type { ScrollArrowProps } from './components/ScrollArrow/ScrollArrow';\nexport { HorizontalScroll } from './components/HorizontalScroll/HorizontalScroll';\nexport type { HorizontalScrollProps } from './components/HorizontalScroll/HorizontalScroll';\nexport { AspectRatio } from './components/AspectRatio/AspectRatio';\nexport type { AspectRatioProps } from './components/AspectRatio/AspectRatio';\n\n/**\n * Popouts\n */\nexport { PopoutWrapper } from './components/PopoutWrapper/PopoutWrapper';\nexport type { PopoutWrapperProps } from './components/PopoutWrapper/PopoutWrapper';\nexport { Alert } from './components/Alert/Alert';\nexport type { AlertProps, AlertActionInterface } from './components/Alert/Alert';\nexport { ActionSheet } from './components/ActionSheet/ActionSheet';\nexport type {\n ActionSheetProps,\n ActionSheetOnCloseOptions,\n} from './components/ActionSheet/ActionSheet';\nexport { ActionSheetItem } from './components/ActionSheetItem/ActionSheetItem';\nexport type { ActionSheetItemProps } from './components/ActionSheetItem/ActionSheetItem';\nexport { ActionSheetDefaultIosCloseItem } from './components/ActionSheet/ActionSheetDefaultIosCloseItem';\nexport { ScreenSpinner } from './components/ScreenSpinner/ScreenSpinner';\nexport type { ScreenSpinnerProps } from './components/ScreenSpinner/ScreenSpinner';\nexport { Snackbar } from './components/Snackbar/Snackbar';\nexport type { SnackbarProps } from './components/Snackbar/Snackbar';\n\n/**\n * Modals\n */\nexport { ModalRoot } from './components/ModalRoot/ModalRootAdaptive';\nexport type { ModalRootProps } from './components/ModalRoot/types';\nexport { withModalRootContext } from './components/ModalRoot/withModalRootContext';\nexport { ModalRootContext } from './components/ModalRoot/ModalRootContext';\nexport { ModalPage } from './components/ModalPage/ModalPage';\nexport type { ModalPageProps } from './components/ModalPage/ModalPage';\nexport { ModalPageHeader } from './components/ModalPageHeader/ModalPageHeader';\nexport type { ModalPageHeaderProps } from './components/ModalPageHeader/ModalPageHeader';\nexport { ModalCard } from './components/ModalCard/ModalCard';\nexport type { ModalCardProps } from './components/ModalCard/ModalCard';\nexport { ModalDismissButton } from './components/ModalDismissButton/ModalDismissButton';\nexport type { ModalDismissButtonProps } from './components/ModalDismissButton/ModalDismissButton';\n\n/**\n * Blocks\n */\nexport { Badge } from './components/Badge/Badge';\nexport type { BadgeProps } from './components/Badge/Badge';\nexport { ButtonGroup } from './components/ButtonGroup/ButtonGroup';\nexport type { ButtonGroupProps } from './components/ButtonGroup/ButtonGroup';\nexport { Card } from './components/Card/Card';\nexport type { CardProps } from './components/Card/Card';\nexport { CardGrid } from './components/CardGrid/CardGrid';\nexport type { CardGridProps } from './components/CardGrid/CardGrid';\nexport { CardScroll } from './components/CardScroll/CardScroll';\nexport type { CardScrollProps } from './components/CardScroll/CardScroll';\nexport { ContentCard } from './components/ContentCard/ContentCard';\nexport type { ContentCardProps } from './components/ContentCard/ContentCard';\nexport { Header } from './components/Header/Header';\nexport type { HeaderProps } from './components/Header/Header';\nexport { Group } from './components/Group/Group';\nexport type { GroupProps } from './components/Group/Group';\nexport { Gradient } from './components/Gradient/Gradient';\nexport type { GradientProps } from './components/Gradient/Gradient';\nexport { List } from './components/List/List';\nexport type { ListProps } from './components/List/List';\nexport { Cell } from './components/Cell/Cell';\nexport type { CellProps } from './components/Cell/Cell';\nexport type { CellCheckboxProps } from './components/Cell/CellCheckbox/CellCheckbox';\nexport { RichCell } from './components/RichCell/RichCell';\nexport type { RichCellProps } from './components/RichCell/RichCell';\nexport { SimpleCell } from './components/SimpleCell/SimpleCell';\nexport type { SimpleCellProps } from './components/SimpleCell/SimpleCell';\nexport { CellButton } from './components/CellButton/CellButton';\nexport type { CellButtonProps } from './components/CellButton/CellButton';\nexport { HorizontalCell } from './components/HorizontalCell/HorizontalCell';\nexport type { HorizontalCellProps } from './components/HorizontalCell/HorizontalCell';\nexport { Footer } from './components/Footer/Footer';\nexport type { FooterProps } from './components/Footer/Footer';\nexport { InfoRow } from './components/InfoRow/InfoRow';\nexport type { InfoRowProps } from './components/InfoRow/InfoRow';\nexport { Gallery } from './components/Gallery/Gallery';\nexport type { GalleryProps } from './components/Gallery/Gallery';\nexport { Avatar } from './components/Avatar/Avatar';\nexport type {\n AvatarProps,\n AvatarBadgeProps,\n AvatarBadgeWithPresetProps,\n AvatarOverlayProps,\n} from './components/Avatar/Avatar';\nexport { GridAvatar } from './components/GridAvatar/GridAvatar';\nexport type { GridAvatarProps, GridAvatarBadgeProps } from './components/GridAvatar/GridAvatar';\nexport { Image } from './components/Image/Image';\nexport type { ImageProps, ImageBadgeProps, ImageOverlayProps } from './components/Image/Image';\nexport { Progress } from './components/Progress/Progress';\nexport type { ProgressProps } from './components/Progress/Progress';\nexport { Search } from './components/Search/Search';\nexport type { SearchProps } from './components/Search/Search';\nexport { Tabs } from './components/Tabs/Tabs';\nexport type { TabsProps } from './components/Tabs/Tabs';\nexport { TabsItem } from './components/TabsItem/TabsItem';\nexport type { TabsItemProps } from './components/TabsItem/TabsItem';\nexport { Spinner } from './components/Spinner/Spinner';\nexport type { SpinnerProps } from './components/Spinner/Spinner';\nexport { PullToRefresh } from './components/PullToRefresh/PullToRefresh';\nexport type { PullToRefreshProps } from './components/PullToRefresh/PullToRefresh';\nexport { Link } from './components/Link/Link';\nexport type { LinkProps } from './components/Link/Link';\nexport { Tooltip } from './components/Tooltip/Tooltip';\nexport type { TooltipProps } from './components/Tooltip/Tooltip';\nexport { TooltipContainer } from './components/Tooltip/TooltipContainer';\nexport { Counter } from './components/Counter/Counter';\nexport type { CounterProps } from './components/Counter/Counter';\nexport { UsersStack } from './components/UsersStack/UsersStack';\nexport type { UsersStackProps } from './components/UsersStack/UsersStack';\nexport { Separator } from './components/Separator/Separator';\nexport type { SeparatorProps } from './components/Separator/Separator';\nexport { Spacing } from './components/Spacing/Spacing';\nexport type { SpacingProps } from './components/Spacing/Spacing';\nexport { Placeholder } from './components/Placeholder/Placeholder';\nexport type {\n PlaceholderProps,\n PlaceholderContainerProps,\n PlaceholderIconProps,\n PlaceholderHeaderProps,\n PlaceholderTextProps,\n PlaceholderActionsProps,\n} from './components/Placeholder/Placeholder';\nexport { Banner } from './components/Banner/Banner';\nexport type { BannerProps } from './components/Banner/Banner';\nexport { MiniInfoCell } from './components/MiniInfoCell/MiniInfoCell';\nexport type { MiniInfoCellProps } from './components/MiniInfoCell/MiniInfoCell';\nexport { WriteBar } from './components/WriteBar/WriteBar';\nexport type { WriteBarProps } from './components/WriteBar/WriteBar';\nexport { WriteBarIcon } from './components/WriteBarIcon/WriteBarIcon';\nexport type { WriteBarIconProps } from './components/WriteBarIcon/WriteBarIcon';\nexport { SubnavigationBar } from './components/SubnavigationBar/SubnavigationBar';\nexport type { SubnavigationBarProps } from './components/SubnavigationBar/SubnavigationBar';\nexport { SubnavigationButton } from './components/SubnavigationButton/SubnavigationButton';\nexport type { SubnavigationButtonProps } from './components/SubnavigationButton/SubnavigationButton';\nexport { Pagination } from './components/Pagination/Pagination';\nexport type { PaginationProps } from './components/Pagination/Pagination';\nexport { Accordion } from './components/Accordion/Accordion';\nexport type { AccordionProps } from './components/Accordion/Accordion';\nexport type { AccordionSummaryProps } from './components/Accordion/AccordionSummary';\n\n/**\n * Forms\n */\nexport { FormLayout } from './components/FormLayout/FormLayout';\nexport type { FormLayoutProps } from './components/FormLayout/FormLayout';\nexport { FormItem } from './components/FormItem/FormItem';\nexport type { FormItemProps } from './components/FormItem/FormItem';\nexport { FormField } from './components/FormField/FormField';\nexport type { FormFieldProps } from './components/FormField/FormField';\nexport { FormLayoutGroup } from './components/FormLayoutGroup/FormLayoutGroup';\nexport type { FormLayoutGroupProps } from './components/FormLayoutGroup/FormLayoutGroup';\nexport { FormStatus } from './components/FormStatus/FormStatus';\nexport type { FormStatusProps } from './components/FormStatus/FormStatus';\nexport { Switch } from './components/Switch/Switch';\nexport type { SwitchProps } from './components/Switch/Switch';\nexport { File } from './components/File/File';\nexport type { FileProps } from './components/File/File';\nexport { Input } from './components/Input/Input';\nexport type { InputProps } from './components/Input/Input';\nexport { Chip } from './components/Chip/Chip';\nexport type { ChipProps, ChipOption, RenderChip } from './components/Chip/Chip';\nexport { ChipsInput } from './components/ChipsInput/ChipsInput';\nexport type { ChipsInputProps } from './components/ChipsInput/ChipsInput';\nexport { Slider } from './components/Slider/Slider';\nexport type { SliderBaseProps, SliderProps, SliderMultipleProps } from './components/Slider/Slider';\nexport { RangeSlider } from './components/RangeSlider/RangeSlider';\nexport type { RangeSliderProps } from './components/RangeSlider/RangeSlider';\nexport { Textarea } from './components/Textarea/Textarea';\nexport type { TextareaProps } from './components/Textarea/Textarea';\nexport { Radio } from './components/Radio/Radio';\nexport type { RadioProps } from './components/Radio/Radio';\nexport { RadioGroup } from './components/RadioGroup/RadioGroup';\nexport type { RadioGroupProps } from './components/RadioGroup/RadioGroup';\nexport { Checkbox } from './components/Checkbox/Checkbox';\nexport type { CheckboxProps } from './components/Checkbox/Checkbox';\nexport { Select } from './components/Select/Select';\nexport { SelectMimicry } from './components/SelectMimicry/SelectMimicry';\nexport type { SelectMimicryProps } from './components/SelectMimicry/SelectMimicry';\nexport { NativeSelect } from './components/NativeSelect/NativeSelect';\nexport type { NativeSelectProps } from './components/NativeSelect/NativeSelect';\nexport { CustomSelect } from './components/CustomSelect/CustomSelect';\nexport type {\n SelectProps,\n CustomSelectOptionInterface,\n} from './components/CustomSelect/CustomSelect';\nexport { CustomSelectOption } from './components/CustomSelectOption/CustomSelectOption';\nexport type { CustomSelectOptionProps } from './components/CustomSelectOption/CustomSelectOption';\nexport { DatePicker } from './components/DatePicker/DatePicker';\nexport type { DatePickerProps, DatePickerDateFormat } from './components/DatePicker/DatePicker';\nexport { SegmentedControl } from './components/SegmentedControl/SegmentedControl';\nexport type {\n SegmentedControlProps,\n SegmentedControlOptionInterface,\n SegmentedControlValue,\n} from './components/SegmentedControl/SegmentedControl';\nexport { Calendar } from './components/Calendar/Calendar';\nexport type { CalendarProps } from './components/Calendar/Calendar';\nexport { CalendarRange } from './components/CalendarRange/CalendarRange';\nexport type { CalendarRangeProps } from './components/CalendarRange/CalendarRange';\nexport { DateInput } from './components/DateInput/DateInput';\nexport type { DateInputProps } from './components/DateInput/DateInput';\nexport { DateRangeInput } from './components/DateRangeInput/DateRangeInput';\nexport type { DateRangeInputProps } from './components/DateRangeInput/DateRangeInput';\n\n/**\n * Helpers\n */\nexport { Div } from './components/Div/Div';\nexport type { DivProps } from './components/Div/Div';\nexport { Touch } from './components/Touch/Touch';\nexport type { TouchProps } from './components/Touch/Touch';\nexport { PanelSpinner } from './components/PanelSpinner/PanelSpinner';\nexport type { PanelSpinnerProps } from './components/PanelSpinner/PanelSpinner';\nexport { PanelHeaderClose } from './components/PanelHeaderClose/PanelHeaderClose';\nexport { PanelHeaderBack } from './components/PanelHeaderBack/PanelHeaderBack';\nexport type { PanelHeaderBackProps } from './components/PanelHeaderBack/PanelHeaderBack';\nexport { PanelHeaderSubmit } from './components/PanelHeaderSubmit/PanelHeaderSubmit';\nexport { PanelHeaderEdit } from './components/PanelHeaderEdit/PanelHeaderEdit';\nexport type { PanelHeaderEditProps } from './components/PanelHeaderEdit/PanelHeaderEdit';\nexport { ModalCardBase } from './components/ModalCardBase/ModalCardBase';\nexport type { ModalCardBaseProps } from './components/ModalCardBase/ModalCardBase';\nexport { VisuallyHiddenInput } from './components/VisuallyHiddenInput/VisuallyHiddenInput';\nexport type { VisuallyHiddenInputProps } from './components/VisuallyHiddenInput/VisuallyHiddenInput';\nexport { VisuallyHidden } from './components/VisuallyHidden/VisuallyHidden';\nexport { AdaptiveIconRenderer } from './components/AdaptiveIconRenderer/AdaptiveIconRenderer';\nexport type { AdaptiveIconRendererProps } from './components/AdaptiveIconRenderer/AdaptiveIconRenderer';\n\n/**\n * Wrappers\n */\nexport { AdaptivityProvider } from './components/AdaptivityProvider/AdaptivityProvider';\nexport type { AdaptivityProviderProps } from './components/AdaptivityProvider/AdaptivityProvider';\nexport { ConfigProvider } from './components/ConfigProvider/ConfigProvider';\nexport type { ConfigProviderProps } from './components/ConfigProvider/ConfigProvider';\nexport {\n useConfigProvider,\n ConfigProviderContext,\n WebviewType,\n} from './components/ConfigProvider/ConfigProviderContext';\nexport { AppearanceProvider } from './components/AppearanceProvider/AppearanceProvider';\nexport type { AppearanceProviderProps } from './components/AppearanceProvider/AppearanceProvider';\nexport { Appearance } from './helpers/appearance';\nexport { LocaleProvider } from './components/LocaleProvider/LocaleProvider';\nexport type { LocaleProviderProps } from './components/LocaleProvider/LocaleProvider';\nexport { PlatformProvider } from './components/PlatformProvider/PlatformProvider';\nexport type { PlatformProviderProps } from './components/PlatformProvider/PlatformProvider';\n\n/**\n * Advertisement\n */\nexport { PromoBanner } from './components/PromoBanner/PromoBanner';\nexport type { PromoBannerProps } from './components/PromoBanner/PromoBanner';\n\n/**\n * HOCs\n */\nexport { withInsets } from './hoc/withInsets';\nexport { withPlatform } from './hoc/withPlatform';\n\n/**\n * Hooks\n */\nexport { useInsets } from './hooks/useInsets';\nexport { usePlatform } from './hooks/usePlatform';\nexport { useAdaptivity } from './hooks/useAdaptivity';\nexport {\n type UseAdaptivityConditionalRender,\n useAdaptivityConditionalRender,\n} from './hooks/useAdaptivityConditionalRender';\nexport {\n type UseAdaptivityWithJSMediaQueries,\n useAdaptivityWithJSMediaQueries,\n} from './hooks/useAdaptivityWithJSMediaQueries';\nexport { useAppearance } from './hooks/useAppearance';\nexport { usePagination } from './hooks/usePagination';\nexport { useTodayDate } from './hooks/useTodayDate';\nexport { useScrollLock } from './components/AppRoot/ScrollContext';\nexport { useNavTransition } from './components/NavTransitionContext/NavTransitionContext';\nexport { useNavDirection } from './components/NavTransitionDirectionContext/NavTransitionDirectionContext';\nexport { useNavId } from './components/NavIdContext/useNavId';\nexport type { TransitionDirection } from './components/NavTransitionDirectionContext/NavTransitionDirectionContext';\nexport { useModalRootContext } from './components/ModalRoot/useModalRootContext';\n\n/**\n * Utils\n */\nexport { classNames } from '@vkontakte/vkjs';\nexport { animate } from './lib/animate';\nexport { defaultFilterFn as filterFnForSelect } from './lib/select';\nexport { removeObjectKeys } from './lib/removeObjectKeys';\nexport { SSRWrapper } from './lib/SSR';\nexport type { SSRWrapperProps } from './lib/SSR';\nexport { platform, Platform } from './lib/platform';\nexport {\n ViewWidth,\n ViewHeight,\n SizeType,\n getViewWidthByViewportWidth,\n getViewHeightByViewportHeight,\n} from './lib/adaptivity';\nexport { type Placement as FloatingPlacement } from './lib/floating';\nexport { getPlatformClassName } from './helpers/getPlatformClassName';\nexport type { AdaptivityProps } from './components/AdaptivityProvider/AdaptivityContext';\nexport { calcInitialsAvatarColor } from './helpers/avatar';\nexport { CustomScrollView } from './components/CustomScrollView/CustomScrollView';\n\n/**\n * Types\n */\nexport type { AlignType, HasPlatform, HasInsets, HasRef, HasRootRef } from './types';\nexport type { NavIdProps } from './lib/getNavId';\nexport type { PlatformType } from './lib/platform';\nexport type { TransitionContextProps } from './components/NavTransitionContext/NavTransitionContext';\n\n/**\n * Unstable\n */\nexport { ChipsSelect as unstable_ChipsSelect } from './components/ChipsSelect/ChipsSelect';\nexport type { ChipsSelectProps as unstable_ChipsSelectProps } from './components/ChipsSelect/ChipsSelect';\n\nexport { Popover as unstable_Popover } from './components/Popover/Popover';\nexport type { PopoverProps as unstable_PopoverProps } from './components/Popover/Popover';\n\nexport { TextTooltip as unstable_TextTooltip } from './components/TextTooltip/TextTooltip';\nexport type { TextTooltipProps as unstable_TextTooltipProps } from './components/TextTooltip/TextTooltip';\n\nexport { RichTooltip as unstable_RichTooltip } from './components/RichTooltip/RichTooltip';\nexport type { RichTooltipProps as unstable_RichTooltipProps } from './components/RichTooltip/RichTooltip';\n\nexport { Popper as unstable_Popper } from './components/Popper/Popper';\nexport type { PopperProps as unstable_PopperProps } from './components/Popper/Popper';\n\nexport { ViewInfinite as unstable_ViewInfinite } from './components/View/ViewInfinite';\nexport type { ViewInfiniteProps as unstable_ViewInfiniteProps } from './components/View/ViewInfinite';\n\nexport { HorizontalCellShowMore as unstable_HorizontalCellShowMore } from './components/HorizontalCellShowMore/HorizontalCellShowMore';\nexport type { HorizontalCellShowMoreProps as unstable_HorizontalCellShowMoreProps } from './components/HorizontalCellShowMore/HorizontalCellShowMore';\n\nimport './styles/common.css';\n"],"names":["Accordion","ActionSheet","ActionSheetDefaultIosCloseItem","ActionSheetItem","AdaptiveIconRenderer","AdaptivityProvider","Alert","AppRoot","Appearance","AppearanceProvider","AspectRatio","Avatar","Badge","Banner","Button","ButtonGroup","Calendar","CalendarRange","Caption","Card","CardGrid","CardScroll","Cell","CellButton","Checkbox","Chip","ChipsInput","ConfigProvider","ConfigProviderContext","ContentCard","Counter","CustomScrollView","CustomSelect","CustomSelectOption","DateInput","DatePicker","DateRangeInput","Div","Epic","File","FixedLayout","Footer","Footnote","FormField","FormItem","FormLayout","FormLayoutGroup","FormStatus","Gallery","Gradient","GridAvatar","Group","Header","Headline","HorizontalCell","HorizontalScroll","IconButton","Image","ImageBase","ImageBaseContext","InfoRow","Input","Link","List","LocaleProvider","MiniInfoCell","ModalCard","ModalCardBase","ModalDismissButton","ModalPage","ModalPageHeader","ModalRoot","ModalRootContext","NativeSelect","Pagination","Panel","PanelHeader","PanelHeaderBack","PanelHeaderButton","PanelHeaderClose","PanelHeaderContent","PanelHeaderContext","PanelHeaderEdit","PanelHeaderSubmit","PanelSpinner","Paragraph","Placeholder","Platform","PlatformProvider","PopoutWrapper","Progress","PromoBanner","PullToRefresh","Radio","RadioGroup","RangeSlider","RichCell","Root","SSRWrapper","ScreenSpinner","ScrollArrow","Search","SegmentedControl","Select","SelectMimicry","Separator","SimpleCell","SizeType","Slider","Snackbar","Spacing","Spinner","SplitCol","SplitLayout","Subhead","SubnavigationBar","SubnavigationButton","Switch","Tabbar","TabbarItem","Tabs","TabsItem","Tappable","Text","Textarea","Title","Tooltip","TooltipContainer","Touch","UsersStack","View","ViewHeight","ViewWidth","VisuallyHidden","VisuallyHiddenInput","WebviewType","WriteBar","WriteBarIcon","animate","calcInitialsAvatarColor","classNames","filterFnForSelect","defaultFilterFn","getBadgeIconSizeByImageBaseSize","getFallbackIconSizeByImageBaseSize","getOverlayIconSizeByImageBaseSize","getPlatformClassName","getViewHeightByViewportHeight","getViewWidthByViewportWidth","platform","removeObjectKeys","unstable_ChipsSelect","ChipsSelect","unstable_HorizontalCellShowMore","HorizontalCellShowMore","unstable_Popover","Popover","unstable_Popper","Popper","unstable_RichTooltip","RichTooltip","unstable_TextTooltip","TextTooltip","unstable_ViewInfinite","ViewInfinite","useAdaptivity","useAdaptivityConditionalRender","useAdaptivityWithJSMediaQueries","useAppearance","useConfigProvider","useInsets","useModalRootContext","useNavDirection","useNavId","useNavTransition","usePagination","usePlatform","useScrollLock","useTodayDate","withInsets","withModalRootContext","withPlatform"],"mappings":";;;;;;;;;;;IAiOSA,SAAS;eAATA,oBAAS;;IAhITC,WAAW;eAAXA,wBAAW;;IAOXC,8BAA8B;eAA9BA,8DAA8B;;IAF9BC,eAAe;eAAfA,gCAAe;;IAmNfC,oBAAoB;eAApBA,0CAAoB;;IAMpBC,kBAAkB;eAAlBA,sCAAkB;;IAhOlBC,KAAK;eAALA,YAAK;;IAzFLC,OAAO;eAAPA,gBAAO;;IAoUPC,UAAU;eAAVA,sBAAU;;IAFVC,kBAAkB;eAAlBA,sCAAkB;;IAjPlBC,WAAW;eAAXA,wBAAW;;IA+EXC,MAAM;eAANA,cAAM;;IArCNC,KAAK;eAALA,YAAK;;IAkFLC,MAAM;eAANA,cAAM;;IAhKNC,MAAM;eAANA,cAAM;;IAgFNC,WAAW;eAAXA,wBAAW;;IAyJXC,QAAQ;eAARA,kBAAQ;;IAERC,aAAa;eAAbA,4BAAa;;IAtQbC,OAAO;eAAPA,gBAAO;;IA6GPC,IAAI;eAAJA,UAAI;;IAEJC,QAAQ;eAARA,kBAAQ;;IAERC,UAAU;eAAVA,sBAAU;;IAYVC,IAAI;eAAJA,UAAI;;IAOJC,UAAU;eAAVA,sBAAU;;IA0GVC,QAAQ;eAARA,kBAAQ;;IAdRC,IAAI;eAAJA,UAAI;;IAEJC,UAAU;eAAVA,sBAAU;;IAuEVC,cAAc;eAAdA,8BAAc;;IAIrBC,qBAAqB;eAArBA,4CAAqB;;IA1LdC,WAAW;eAAXA,wBAAW;;IAuDXC,OAAO;eAAPA,gBAAO;;IAuMPC,gBAAgB;eAAhBA,kCAAgB;;IA5HhBC,YAAY;eAAZA,0BAAY;;IAKZC,kBAAkB;eAAlBA,sCAAkB;;IAclBC,SAAS;eAATA,oBAAS;;IAZTC,UAAU;eAAVA,sBAAU;;IAcVC,cAAc;eAAdA,8BAAc;;IAMdC,GAAG;eAAHA,QAAG;;IA3NHC,IAAI;eAAJA,UAAI;;IAuKJC,IAAI;eAAJA,UAAI;;IApNJC,WAAW;eAAXA,wBAAW;;IAgIXC,MAAM;eAANA,cAAM;;IA1INC,QAAQ;eAARA,kBAAQ;;IAsNRC,SAAS;eAATA,oBAAS;;IAFTC,QAAQ;eAARA,kBAAQ;;IAFRC,UAAU;eAAVA,sBAAU;;IAMVC,eAAe;eAAfA,gCAAe;;IAEfC,UAAU;eAAVA,sBAAU;;IA5EVC,OAAO;eAAPA,gBAAO;;IAnBPC,QAAQ;eAARA,kBAAQ;;IA4BRC,UAAU;eAAVA,sBAAU;;IA9BVC,KAAK;eAALA,YAAK;;IAFLC,MAAM;eAANA,cAAM;;IA/HNC,QAAQ;eAARA,kBAAQ;;IAgJRC,cAAc;eAAdA,8BAAc;;IAzEdC,gBAAgB;eAAhBA,kCAAgB;;IAhChBC,UAAU;eAAVA,sBAAU;;IA0HVC,KAAK;eAALA,YAAK;;IA3IZC,SAAS;eAATA,oBAAS;;IADTC,gBAAgB;eAAhBA,2BAAgB;;IA+HTC,OAAO;eAAPA,gBAAO;;IAoFPC,KAAK;eAALA,YAAK;;IAzDLC,IAAI;eAAJA,UAAI;;IA1CJC,IAAI;eAAJA,UAAI;;IAwLJC,cAAc;eAAdA,8BAAc;;IAtHdC,YAAY;eAAZA,0BAAY;;IA5FZC,SAAS;eAATA,oBAAS;;IA2LTC,aAAa;eAAbA,4BAAa;;IAzLbC,kBAAkB;eAAlBA,sCAAkB;;IANlBC,SAAS;eAATA,oBAAS;;IAETC,eAAe;eAAfA,gCAAe;;IANfC,SAAS;eAATA,4BAAS;;IAGTC,gBAAgB;eAAhBA,kCAAgB;;IAuJhBC,YAAY;eAAZA,0BAAY;;IA5CZC,UAAU;eAAVA,sBAAU;;IAhKVC,KAAK;eAALA,YAAK;;IAILC,WAAW;eAAXA,wBAAW;;IA4OXC,eAAe;eAAfA,gCAAe;;IA9OfC,iBAAiB;eAAjBA,oCAAiB;;IA6OjBC,gBAAgB;eAAhBA,kCAAgB;;IAzOhBC,kBAAkB;eAAlBA,sCAAkB;;IAElBC,kBAAkB;eAAlBA,sCAAkB;;IA2OlBC,eAAe;eAAfA,gCAAe;;IADfC,iBAAiB;eAAjBA,oCAAiB;;IALjBC,YAAY;eAAZA,0BAAY;;IA1RZC,SAAS;eAATA,oBAAS;;IAwLTC,WAAW;eAAXA,wBAAW;;IAmLDC,QAAQ;eAARA,kBAAQ;;IAhDlBC,gBAAgB;eAAhBA,kCAAgB;;IAhPhBC,aAAa;eAAbA,4BAAa;;IAoFbC,QAAQ;eAARA,kBAAQ;;IAkKRC,WAAW;eAAXA,wBAAW;;IAxJXC,aAAa;eAAbA,4BAAa;;IAuEbC,KAAK;eAALA,YAAK;;IAELC,UAAU;eAAVA,sBAAU;;IANVC,WAAW;eAAXA,wBAAW;;IAtGXC,QAAQ;eAARA,kBAAQ;;IA7FRC,IAAI;eAAJA,UAAI;;IAgUJC,UAAU;eAAVA,eAAU;;IAlRVC,aAAa;eAAbA,4BAAa;;IAtBbC,WAAW;eAAXA,wBAAW;;IAgGXC,MAAM;eAANA,cAAM;;IAmGNC,gBAAgB;eAAhBA,kCAAgB;;IAdhBC,MAAM;eAANA,cAAM;;IACNC,aAAa;eAAbA,4BAAa;;IAnEbC,SAAS;eAATA,oBAAS;;IA5CTC,UAAU;eAAVA,sBAAU;;IAuOjBC,QAAQ;eAARA,oBAAQ;;IArIDC,MAAM;eAANA,cAAM;;IAjJNC,QAAQ;eAARA,kBAAQ;;IA6FRC,OAAO;eAAPA,gBAAO;;IAfPC,OAAO;eAAPA,gBAAO;;IA9GPC,QAAQ;eAARA,kBAAQ;;IAFRC,WAAW;eAAXA,wBAAW;;IArDXC,OAAO;eAAPA,gBAAO;;IAuMPC,gBAAgB;eAAhBA,kCAAgB;;IAEhBC,mBAAmB;eAAnBA,wCAAmB;;IAqBnBC,MAAM;eAANA,cAAM;;IAnKNC,MAAM;eAANA,cAAM;;IAENC,UAAU;eAAVA,sBAAU;;IAoGVC,IAAI;eAAJA,UAAI;;IAEJC,QAAQ;eAARA,kBAAQ;;IAzJRC,QAAQ;eAARA,kBAAQ;;IAdRC,IAAI;eAAJA,UAAI;;IAgPJC,QAAQ;eAARA,kBAAQ;;IApPRC,KAAK;eAALA,YAAK;;IAmLLC,OAAO;eAAPA,gBAAO;;IAEPC,gBAAgB;eAAhBA,kCAAgB;;IAyGhBC,KAAK;eAALA,YAAK;;IAtGLC,UAAU;eAAVA,sBAAU;;IAvIVC,IAAI;eAAJA,UAAI;;IAmUXC,UAAU;eAAVA,sBAAU;;IADVC,SAAS;eAATA,qBAAS;;IAvEFC,cAAc;eAAdA,8BAAc;;IAFdC,mBAAmB;eAAnBA,wCAAmB;;IAgB1BC,WAAW;eAAXA,kCAAW;;IA/GJC,QAAQ;eAARA,kBAAQ;;IAERC,YAAY;eAAZA,0BAAY;;IA+JZC,OAAO;eAAPA,gBAAO;;IAgBPC,uBAAuB;eAAvBA,+BAAuB;;IAjBvBC,UAAU;eAAVA,gBAAU;;IAESC,iBAAiB;eAApCC,uBAAe;;IApVtBC,+BAA+B;eAA/BA,0CAA+B;;IAC/BC,kCAAkC;eAAlCA,6CAAkC;;IAClCC,iCAAiC;eAAjCA,4CAAiC;;IA+V1BC,oBAAoB;eAApBA,0CAAoB;;IAH3BC,6BAA6B;eAA7BA,yCAA6B;;IAD7BC,2BAA2B;eAA3BA,uCAA2B;;IALpBC,QAAQ;eAARA,kBAAQ;;IAHRC,gBAAgB;eAAhBA,kCAAgB;;IA4BDC,oBAAoB;eAAnCC,wBAAW;;IAkBeC,+BAA+B;eAAzDC,8CAAsB;;IAfXC,gBAAgB;eAA3BC,gBAAO;;IASGC,eAAe;eAAzBC,cAAM;;IAHSC,oBAAoB;eAAnCC,wBAAW;;IAHIC,oBAAoB;eAAnCC,wBAAW;;IASKC,qBAAqB;eAArCC,0BAAY;;IApEZC,aAAa;eAAbA,4BAAa;;IAGpBC,8BAA8B;eAA9BA,8DAA8B;;IAI9BC,+BAA+B;eAA/BA,gEAA+B;;IAExBC,aAAa;eAAbA,4BAAa;;IAtCpBC,iBAAiB;eAAjBA,wCAAiB;;IA2BVC,SAAS;eAATA,oBAAS;;IAmBTC,mBAAmB;eAAnBA,wCAAmB;;IAHnBC,eAAe;eAAfA,8CAAe;;IACfC,QAAQ;eAARA,kBAAQ;;IAFRC,gBAAgB;eAAhBA,sCAAgB;;IAHhBC,aAAa;eAAbA,4BAAa;;IAXbC,WAAW;eAAXA,wBAAW;;IAaXC,aAAa;eAAbA,4BAAa;;IADbC,YAAY;eAAZA,0BAAY;;IAnBZC,UAAU;eAAVA,sBAAU;;IAtOVC,oBAAoB;eAApBA,0CAAoB;;IAuOpBC,YAAY;eAAZA,0BAAY;;;QA1Vd;uBAMiB;qBAMF;wBAEG;oBAEJ;yBAEK;uBAEF;wBAEC;uBAED;wBAMC;2BAEG;yBAQrB;sBAWgB;0BAEI;oBAMN;oBAEA;qBAEC;iCAEY;2BAEN;kCAEO;kCAEA;2BAEP;wBAEH;oBAEJ;sBAEE;0BAEI;2BAEC;gCAEK;2BAEL;6BAME;qBAER;2BAEM;+BAKI;8CAEe;6BACjB;wBAEL;iCAMC;oCAEW;gCACJ;yBACP;+BAEM;yBAEN;kCAES;qBAMb;2BAEM;oBAEP;wBAEI;0BAEE;2BAEC;sBAEL;qBAED;wBAEG;oBAEJ;oBAEA;wBAGI;0BAEE;0BAEA;8BAEI;sBAER;uBAEC;uBAEA;sBAED;0BAOI;qBAEL;wBAEG;sBAEF;oBAEF;wBAEI;uBAED;6BAEM;oBAET;uBAEG;gCAES;uBACT;0BAEG;yBAED;uBAEF;2BAEI;sBASL;4BAEM;wBAEJ;4BAEI;gCAEI;mCAEG;0BAET;yBAED;0BAOC;wBAEF;yBAEC;+BAEM;0BAEL;sBAEJ;oBAEF;qBAEC;oBAED;0BAEM;sBAEJ;2BAEK;wBAEH;qBAEH;0BAEK;wBAEF;sBAEF;6BACO;4BAED;4BAEA;kCAKM;0BAER;gCAEM;wBAMR;6BAEK;yBAEJ;8BAEK;mBAMX;qBAEE;4BAEO;gCAEI;+BACD;iCAEE;+BACF;6BAEF;mCAEM;8BAEL;oCACM;kCAMF;8BAEJ;qCAMxB;kCAC4B;0BAER;8BACI;gCAEE;2BAML;0BAMD;4BACE;yBAKH;2BACE;6BACE;8CAIvB;+CAIA;6BACuB;6BACA;4BACD;6BACC;oCACG;6CACD;wBACP;mCAEW;oBAKT;uBACH;sBAC6B;gCACpB;mBACN;wBAEQ;0BAO5B;oCAE8B;sBAEG;gCACP;2BAamB;uBAGR;2BAGQ;2BAGA;sBAGV;4BAGY;sCAGoB"}
|
package/dist/cjs/lib/utils.d.ts
CHANGED
|
@@ -9,4 +9,9 @@ export declare function getTitleFromChildren(children: React.ReactNode): string;
|
|
|
9
9
|
export declare const stopPropagation: <T extends React.SyntheticEvent<Element, Event>>(event: T) => void;
|
|
10
10
|
export declare function addClassNameToElement(element: HTMLElement, className: string): void;
|
|
11
11
|
export declare function removeClassNameFromElement(element: HTMLElement, classNameToRemove: string): void;
|
|
12
|
+
type ExcludeKeysWithUndefined<T> = {
|
|
13
|
+
[P in keyof T]?: Exclude<T[P], undefined>;
|
|
14
|
+
};
|
|
15
|
+
export declare const excludeKeysWithUndefined: <T extends Record<string | number | symbol, any>>(obj: T) => ExcludeKeysWithUndefined<T>;
|
|
16
|
+
export {};
|
|
12
17
|
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,MAAM,iBAAiB,GAAG;KAC7B,KAAK,IAAI,OAAO,CACf,MAAM,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,EAC/C,MAAM,KAAK,CAAC,cAAc,CAAC,gBAAgB,CAAC,CAC7C,GAAG,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC,KAAK,CAAC;CACrD,CAAC;AAEF,wBAAgB,QAAQ,CAAC,CAAC,SAAS,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,IAAI,EAAE,KAAK,EAAE,MAAM,aAG9D,CAAC,UAInB;AAED,wBAAgB,MAAM,CAAC,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAQ9D;AAED,wBAAgB,QAAQ,CAAC,CAAC,EAAE,GAAG,IAAI,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,GAAG,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,CAWxF;AAED,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,MAAM,CAUtE;AAED,eAAO,MAAM,eAAe,oEACH,CAAC;AAE1B,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,QAK5E;AAED,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,QAWzF"}
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,MAAM,iBAAiB,GAAG;KAC7B,KAAK,IAAI,OAAO,CACf,MAAM,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,EAC/C,MAAM,KAAK,CAAC,cAAc,CAAC,gBAAgB,CAAC,CAC7C,GAAG,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC,KAAK,CAAC;CACrD,CAAC;AAEF,wBAAgB,QAAQ,CAAC,CAAC,SAAS,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,IAAI,EAAE,KAAK,EAAE,MAAM,aAG9D,CAAC,UAInB;AAED,wBAAgB,MAAM,CAAC,CAAC,EAAE,OAAO,EAAE,CAAC,EAAE,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAQ9D;AAED,wBAAgB,QAAQ,CAAC,CAAC,EAAE,GAAG,IAAI,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,GAAG,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,CAWxF;AAED,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,MAAM,CAUtE;AAED,eAAO,MAAM,eAAe,oEACH,CAAC;AAE1B,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,QAK5E;AAED,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,QAWzF;AAED,KAAK,wBAAwB,CAAC,CAAC,IAAI;KAChC,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC;CAC1C,CAAC;AAEF,eAAO,MAAM,wBAAwB,0FAUpC,CAAC"}
|
package/dist/cjs/lib/utils.js
CHANGED
|
@@ -15,6 +15,9 @@ _export(exports, {
|
|
|
15
15
|
debounce: function() {
|
|
16
16
|
return debounce;
|
|
17
17
|
},
|
|
18
|
+
excludeKeysWithUndefined: function() {
|
|
19
|
+
return excludeKeysWithUndefined;
|
|
20
|
+
},
|
|
18
21
|
getTitleFromChildren: function() {
|
|
19
22
|
return getTitleFromChildren;
|
|
20
23
|
},
|
|
@@ -100,5 +103,14 @@ function removeClassNameFromElement(element1, classNameToRemove) {
|
|
|
100
103
|
classNamesArray.splice(elementIndexToRemove, 1);
|
|
101
104
|
element1.setAttribute("class", classNamesArray.join(" "));
|
|
102
105
|
}
|
|
106
|
+
var excludeKeysWithUndefined = function(obj) {
|
|
107
|
+
var filteredObj = {};
|
|
108
|
+
for(var key in obj){
|
|
109
|
+
if (obj.hasOwnProperty(key) && obj[key] !== undefined) {
|
|
110
|
+
filteredObj[key] = obj[key];
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
return filteredObj;
|
|
114
|
+
};
|
|
103
115
|
|
|
104
116
|
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/lib/utils.ts"],"sourcesContent":["import * as React from 'react';\n\nexport type ImgOnlyAttributes = {\n [index in Exclude<\n keyof React.ImgHTMLAttributes<HTMLImageElement>,\n keyof React.HTMLAttributes<HTMLImageElement>\n >]: React.ImgHTMLAttributes<HTMLImageElement>[index];\n};\n\nexport function debounce<A extends any[]>(fn: (...args: A) => void, delay: number) {\n let timeout: any;\n\n return (...args: A) => {\n clearTimeout(timeout);\n timeout = setTimeout(() => fn(...args), delay);\n };\n}\n\nexport function setRef<T>(element: T, ref?: React.Ref<T>): void {\n if (ref) {\n if (typeof ref === 'function') {\n ref(element);\n } else {\n (ref as React.MutableRefObject<T>).current = element;\n }\n }\n}\n\nexport function multiRef<T>(...refs: Array<React.Ref<T> | undefined>): React.RefObject<T> {\n let current: T | null = null;\n return {\n get current() {\n return current;\n },\n set current(element) {\n current = element;\n refs.forEach((ref) => ref && setRef(element, ref));\n },\n };\n}\n\nexport function getTitleFromChildren(children: React.ReactNode): string {\n let label = '';\n\n React.Children.map(children, (child) => {\n if (typeof child === 'string') {\n label += ' ' + child;\n }\n });\n\n return label.trim();\n}\n\nexport const stopPropagation = <T extends React.SyntheticEvent>(event: T) =>\n event.stopPropagation();\n\nexport function addClassNameToElement(element: HTMLElement, className: string) {\n const elementClassName = element.getAttribute('class') || '';\n const updatedClassName = `${elementClassName}${elementClassName ? ' ' : ''}${className}`;\n\n element.setAttribute('class', updatedClassName);\n}\n\nexport function removeClassNameFromElement(element: HTMLElement, classNameToRemove: string) {\n const classNamesArray = (element.getAttribute('class') || '').split(/\\s+/);\n const elementIndexToRemove = classNamesArray.findIndex(\n (className) => className === classNameToRemove,\n );\n if (elementIndexToRemove === -1) {\n return;\n }\n classNamesArray.splice(elementIndexToRemove, 1);\n\n element.setAttribute('class', classNamesArray.join(' '));\n}\n"],"names":["addClassNameToElement","debounce","getTitleFromChildren","multiRef","removeClassNameFromElement","setRef","stopPropagation","fn","delay","timeout","args","clearTimeout","setTimeout","element","ref","current","refs","forEach","children","label","React","Children","map","child","trim","event","className","elementClassName","getAttribute","updatedClassName","setAttribute","classNameToRemove","classNamesArray","split","elementIndexToRemove","findIndex","splice","join"],"mappings":";;;;;;;;;;;IAwDgBA,qBAAqB;eAArBA;;IA/CAC,QAAQ;eAARA;;
|
|
1
|
+
{"version":3,"sources":["../../../src/lib/utils.ts"],"sourcesContent":["import * as React from 'react';\n\nexport type ImgOnlyAttributes = {\n [index in Exclude<\n keyof React.ImgHTMLAttributes<HTMLImageElement>,\n keyof React.HTMLAttributes<HTMLImageElement>\n >]: React.ImgHTMLAttributes<HTMLImageElement>[index];\n};\n\nexport function debounce<A extends any[]>(fn: (...args: A) => void, delay: number) {\n let timeout: any;\n\n return (...args: A) => {\n clearTimeout(timeout);\n timeout = setTimeout(() => fn(...args), delay);\n };\n}\n\nexport function setRef<T>(element: T, ref?: React.Ref<T>): void {\n if (ref) {\n if (typeof ref === 'function') {\n ref(element);\n } else {\n (ref as React.MutableRefObject<T>).current = element;\n }\n }\n}\n\nexport function multiRef<T>(...refs: Array<React.Ref<T> | undefined>): React.RefObject<T> {\n let current: T | null = null;\n return {\n get current() {\n return current;\n },\n set current(element) {\n current = element;\n refs.forEach((ref) => ref && setRef(element, ref));\n },\n };\n}\n\nexport function getTitleFromChildren(children: React.ReactNode): string {\n let label = '';\n\n React.Children.map(children, (child) => {\n if (typeof child === 'string') {\n label += ' ' + child;\n }\n });\n\n return label.trim();\n}\n\nexport const stopPropagation = <T extends React.SyntheticEvent>(event: T) =>\n event.stopPropagation();\n\nexport function addClassNameToElement(element: HTMLElement, className: string) {\n const elementClassName = element.getAttribute('class') || '';\n const updatedClassName = `${elementClassName}${elementClassName ? ' ' : ''}${className}`;\n\n element.setAttribute('class', updatedClassName);\n}\n\nexport function removeClassNameFromElement(element: HTMLElement, classNameToRemove: string) {\n const classNamesArray = (element.getAttribute('class') || '').split(/\\s+/);\n const elementIndexToRemove = classNamesArray.findIndex(\n (className) => className === classNameToRemove,\n );\n if (elementIndexToRemove === -1) {\n return;\n }\n classNamesArray.splice(elementIndexToRemove, 1);\n\n element.setAttribute('class', classNamesArray.join(' '));\n}\n\ntype ExcludeKeysWithUndefined<T> = {\n [P in keyof T]?: Exclude<T[P], undefined>;\n};\n\nexport const excludeKeysWithUndefined = <T extends Record<string | number | symbol, any>>(\n obj: T,\n): ExcludeKeysWithUndefined<T> => {\n const filteredObj: ExcludeKeysWithUndefined<T> = {};\n for (const key in obj) {\n if (obj.hasOwnProperty(key) && obj[key] !== undefined) {\n filteredObj[key] = obj[key];\n }\n }\n return filteredObj;\n};\n"],"names":["addClassNameToElement","debounce","excludeKeysWithUndefined","getTitleFromChildren","multiRef","removeClassNameFromElement","setRef","stopPropagation","fn","delay","timeout","args","clearTimeout","setTimeout","element","ref","current","refs","forEach","children","label","React","Children","map","child","trim","event","className","elementClassName","getAttribute","updatedClassName","setAttribute","classNameToRemove","classNamesArray","split","elementIndexToRemove","findIndex","splice","join","obj","filteredObj","key","hasOwnProperty","undefined"],"mappings":";;;;;;;;;;;IAwDgBA,qBAAqB;eAArBA;;IA/CAC,QAAQ;eAARA;;IAuEHC,wBAAwB;eAAxBA;;IAvCGC,oBAAoB;eAApBA;;IAbAC,QAAQ;eAARA;;IAmCAC,0BAA0B;eAA1BA;;IA7CAC,MAAM;eAANA;;IAmCHC,eAAe;eAAfA;;;;;+DArDU;AAShB,SAASN,SAA0BO,EAAwB,EAAEC,KAAa;IAC/E,IAAIC;IAEJ,OAAO;yCAAIC;YAAAA;;QACTC,aAAaF;QACbA,UAAUG,WAAW;mBAAML,GAAAA,MAAAA,KAAAA,GAAG,uBAAGG;WAAOF;IAC1C;AACF;AAEO,SAASH,OAAUQ,QAAU,EAAEC,GAAkB;IACtD,IAAIA,KAAK;QACP,IAAI,OAAOA,QAAQ,YAAY;YAC7BA,IAAID;QACN,OAAO;YACJC,IAAkCC,OAAO,GAAGF;QAC/C;IACF;AACF;AAEO,SAASV;IAAY,IAAA,IAAA,OAAA,UAAA,QAAA,AAAGa,OAAH,UAAA,OAAA,OAAA,GAAA,OAAA,MAAA,OAAA;QAAGA,KAAH,QAAA,SAAA,CAAA,KAAwC;IAAD;IACjE,IAAID,UAAoB;IACxB,OAAO;QACL,IAAIA,WAAU;YACZ,OAAOA;QACT;QACA,IAAIA,SAAQF,QAAS;YACnBE,UAAUF;YACVG,KAAKC,OAAO,CAAC,SAACH;uBAAQA,OAAOT,OAAOQ,SAASC;;QAC/C;IACF;AACF;AAEO,SAASZ,qBAAqBgB,QAAyB;IAC5D,IAAIC,QAAQ;IAEZC,OAAMC,QAAQ,CAACC,GAAG,CAACJ,UAAU,SAACK;QAC5B,IAAI,OAAOA,UAAU,UAAU;YAC7BJ,SAAS,MAAMI;QACjB;IACF;IAEA,OAAOJ,MAAMK,IAAI;AACnB;AAEO,IAAMlB,kBAAkB,SAAiCmB;WAC9DA,MAAMnB,eAAe;;AAEhB,SAASP,sBAAsBc,QAAoB,EAAEa,SAAiB;IAC3E,IAAMC,mBAAmBd,SAAQe,YAAY,CAAC,YAAY;IAC1D,IAAMC,mBAAmB,AAAC,GAAqBF,OAAnBA,kBAAiDD,OAA9BC,mBAAmB,MAAM,IAAe,OAAVD;IAE7Eb,SAAQiB,YAAY,CAAC,SAASD;AAChC;AAEO,SAASzB,2BAA2BS,QAAoB,EAAEkB,iBAAyB;IACxF,IAAMC,kBAAkB,AAACnB,CAAAA,SAAQe,YAAY,CAAC,YAAY,EAAC,EAAGK,KAAK,CAAC;IACpE,IAAMC,uBAAuBF,gBAAgBG,SAAS,CACpD,SAACT;eAAcA,cAAcK;;IAE/B,IAAIG,yBAAyB,CAAC,GAAG;QAC/B;IACF;IACAF,gBAAgBI,MAAM,CAACF,sBAAsB;IAE7CrB,SAAQiB,YAAY,CAAC,SAASE,gBAAgBK,IAAI,CAAC;AACrD;AAMO,IAAMpC,2BAA2B,SACtCqC;IAEA,IAAMC,cAA2C,CAAC;IAClD,IAAK,IAAMC,OAAOF,IAAK;QACrB,IAAIA,IAAIG,cAAc,CAACD,QAAQF,GAAG,CAACE,IAAI,KAAKE,WAAW;YACrDH,WAAW,CAACC,IAAI,GAAGF,GAAG,CAACE,IAAI;QAC7B;IACF;IACA,OAAOD;AACT"}
|
|
@@ -14,5 +14,5 @@ export interface ConfigProviderProps extends Partial<ConfigProviderContextInterf
|
|
|
14
14
|
/**
|
|
15
15
|
* @see https://vkcom.github.io/VKUI/#/ConfigProvider
|
|
16
16
|
*/
|
|
17
|
-
export declare const ConfigProvider: (
|
|
17
|
+
export declare const ConfigProvider: (propsRaw: ConfigProviderProps) => React.JSX.Element;
|
|
18
18
|
//# sourceMappingURL=ConfigProvider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfigProvider.d.ts","sourceRoot":"","sources":["../../../src/components/ConfigProvider/ConfigProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ConfigProvider.d.ts","sourceRoot":"","sources":["../../../src/components/ConfigProvider/ConfigProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAc/B,OAAO,EAEL,8BAA8B,EAG/B,MAAM,yBAAyB,CAAC;AAIjC,MAAM,WAAW,mBAAoB,SAAQ,OAAO,CAAC,8BAA8B,CAAC;IAClF;;;;;;OAMG;IACH,0BAA0B,CAAC,EAAE,MAAM,IAAI,CAAC;IACxC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED;;GAEG;AACH,eAAO,MAAM,cAAc,aAAc,mBAAmB,sBAqF3D,CAAC"}
|
|
@@ -7,13 +7,14 @@ import { useObjectMemo } from "../../hooks/useObjectMemo";
|
|
|
7
7
|
import { useDOM } from "../../lib/dom";
|
|
8
8
|
import { TokensClassProvider } from "../../lib/tokensClassProvider";
|
|
9
9
|
import { useIsomorphicLayoutEffect } from "../../lib/useIsomorphicLayoutEffect";
|
|
10
|
-
import { addClassNameToElement, removeClassNameFromElement } from "../../lib/utils";
|
|
10
|
+
import { addClassNameToElement, excludeKeysWithUndefined, removeClassNameFromElement } from "../../lib/utils";
|
|
11
11
|
import { warnOnce } from "../../lib/warnOnce";
|
|
12
12
|
import { ConfigProviderContext, useConfigProvider, WebviewType } from "./ConfigProviderContext";
|
|
13
13
|
var warn = warnOnce("ConfigProvider");
|
|
14
14
|
/**
|
|
15
15
|
* @see https://vkcom.github.io/VKUI/#/ConfigProvider
|
|
16
|
-
*/ export var ConfigProvider = function(
|
|
16
|
+
*/ export var ConfigProvider = function(propsRaw) {
|
|
17
|
+
var props = excludeKeysWithUndefined(propsRaw);
|
|
17
18
|
var parentConfig = useConfigProvider();
|
|
18
19
|
var _$_object_spread = _object_spread({}, parentConfig, props), children = _$_object_spread.children, webviewType = _$_object_spread.webviewType, hasCustomPanelHeaderAfterMerged = _$_object_spread.hasCustomPanelHeaderAfter, customPanelHeaderAfterMinWidth = _$_object_spread.customPanelHeaderAfterMinWidth, isWebView = _$_object_spread.isWebView, transitionMotionEnabled = _$_object_spread.transitionMotionEnabled, platform = _$_object_spread.platform, locale = _$_object_spread.locale, appearanceProp = _$_object_spread.appearance, _object_spread_onDetectAppearanceByBridge = _$_object_spread.onDetectAppearanceByBridge, onDetectAppearanceByBridge = _object_spread_onDetectAppearanceByBridge === void 0 ? noop : _object_spread_onDetectAppearanceByBridge;
|
|
19
20
|
// TODO [>=6]: Удалить данный бэкпорт
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/components/ConfigProvider/ConfigProvider.tsx"],"sourcesContent":["import * as React from 'react';\nimport { noop } from '@vkontakte/vkjs';\nimport { generateVKUITokensClassName } from '../../helpers/generateVKUITokensClassName';\nimport { useAutoDetectAppearance } from '../../hooks/useAutoDetectAppearance';\nimport { useObjectMemo } from '../../hooks/useObjectMemo';\nimport { useDOM } from '../../lib/dom';\nimport { TokensClassProvider } from '../../lib/tokensClassProvider';\nimport { useIsomorphicLayoutEffect } from '../../lib/useIsomorphicLayoutEffect';\nimport {
|
|
1
|
+
{"version":3,"sources":["../../../src/components/ConfigProvider/ConfigProvider.tsx"],"sourcesContent":["import * as React from 'react';\nimport { noop } from '@vkontakte/vkjs';\nimport { generateVKUITokensClassName } from '../../helpers/generateVKUITokensClassName';\nimport { useAutoDetectAppearance } from '../../hooks/useAutoDetectAppearance';\nimport { useObjectMemo } from '../../hooks/useObjectMemo';\nimport { useDOM } from '../../lib/dom';\nimport { TokensClassProvider } from '../../lib/tokensClassProvider';\nimport { useIsomorphicLayoutEffect } from '../../lib/useIsomorphicLayoutEffect';\nimport {\n addClassNameToElement,\n excludeKeysWithUndefined,\n removeClassNameFromElement,\n} from '../../lib/utils';\nimport { warnOnce } from '../../lib/warnOnce';\nimport {\n ConfigProviderContext,\n ConfigProviderContextInterface,\n useConfigProvider,\n WebviewType,\n} from './ConfigProviderContext';\n\nconst warn = warnOnce('ConfigProvider');\n\nexport interface ConfigProviderProps extends Partial<ConfigProviderContextInterface> {\n /**\n * > ⚠️ В **v6** метод будет удалён (см. https://github.com/VKCOM/VKUI/issues/5049).\n * > Используйте хук `useAppearance()` из библиотеки `@vkontakte/vk-bridge-react`, если вам нужно\n * > определять, что `appearance` был передан через VK Bridge.\n *\n * @deprecated v5.8.0\n */\n onDetectAppearanceByBridge?: () => void; // TODO [>=6]: удалить\n children: React.ReactNode;\n}\n\n/**\n * @see https://vkcom.github.io/VKUI/#/ConfigProvider\n */\nexport const ConfigProvider = (propsRaw: ConfigProviderProps) => {\n const props = excludeKeysWithUndefined(propsRaw);\n const parentConfig = useConfigProvider();\n\n const {\n children,\n webviewType,\n hasCustomPanelHeaderAfter: hasCustomPanelHeaderAfterMerged,\n customPanelHeaderAfterMinWidth,\n isWebView,\n transitionMotionEnabled,\n platform,\n locale,\n appearance: appearanceProp,\n onDetectAppearanceByBridge = noop,\n } = {\n ...parentConfig,\n ...props,\n };\n\n // TODO [>=6]: Удалить данный бэкпорт\n const hasCustomPanelHeaderAfter =\n props.webviewType && props.hasCustomPanelHeaderAfter === undefined\n ? props.webviewType === WebviewType.VKAPPS\n : hasCustomPanelHeaderAfterMerged;\n\n if (process.env.NODE_ENV === 'development') {\n // TODO [>=6]: удалить warn\n let webviewTypeRule = '';\n if (props.webviewType) {\n webviewTypeRule =\n props.webviewType === WebviewType.INTERNAL\n ? '3. замените webviewType={WebviewType.INTERNAL} на hasCustomPanelHeaderAfterProp={false}'\n : '3. замените webviewType={WebviewType.VKAPPS} на hasCustomPanelHeaderAfterProp={true}';\n }\n warn(`[@vkontakte/vk-bridge's deprecated] Если вы используете VK Bridge, то:\n\n1. используйте хук useAppearance() из @vkontakte/vk-bridge-react и результат передайте в параметр appearance;\n2. передайте bridge.isWebView() в параметр isWebView;\n${webviewTypeRule}\n\nПодробности см. https://github.com/VKCOM/VKUI/issues/5049\n`);\n }\n\n // TODO [>=6]: удалить использование хука\n const appearance = useAutoDetectAppearance(appearanceProp, onDetectAppearanceByBridge);\n\n const { document } = useDOM();\n\n // TODO [>=6]: переместить хук в AppRoot (см. https://github.com/VKCOM/VKUI/issues/4810).\n useIsomorphicLayoutEffect(\n function attachVKUITokensClassNameToBody() {\n if (!document) {\n return;\n }\n\n const VKUITokensClassName = generateVKUITokensClassName(platform, appearance);\n\n addClassNameToElement(document.body, VKUITokensClassName);\n return () => {\n removeClassNameFromElement(document.body, VKUITokensClassName);\n };\n },\n [platform, appearance],\n );\n\n const configContext = useObjectMemo({\n webviewType,\n hasCustomPanelHeaderAfter,\n customPanelHeaderAfterMinWidth,\n isWebView,\n transitionMotionEnabled,\n platform,\n locale,\n appearance,\n });\n\n return (\n <ConfigProviderContext.Provider value={configContext}>\n <TokensClassProvider platform={platform} appearance={appearance}>\n {children}\n </TokensClassProvider>\n </ConfigProviderContext.Provider>\n );\n};\n"],"names":["React","noop","generateVKUITokensClassName","useAutoDetectAppearance","useObjectMemo","useDOM","TokensClassProvider","useIsomorphicLayoutEffect","addClassNameToElement","excludeKeysWithUndefined","removeClassNameFromElement","warnOnce","ConfigProviderContext","useConfigProvider","WebviewType","warn","ConfigProvider","propsRaw","props","parentConfig","children","webviewType","hasCustomPanelHeaderAfter","hasCustomPanelHeaderAfterMerged","customPanelHeaderAfterMinWidth","isWebView","transitionMotionEnabled","platform","locale","appearance","appearanceProp","onDetectAppearanceByBridge","undefined","VKAPPS","process","env","NODE_ENV","webviewTypeRule","INTERNAL","document","attachVKUITokensClassNameToBody","VKUITokensClassName","body","configContext","Provider","value"],"mappings":";AAAA,YAAYA,WAAW,QAAQ;AAC/B,SAASC,IAAI,QAAQ,kBAAkB;AACvC,SAASC,2BAA2B,QAAQ,4CAA4C;AACxF,SAASC,uBAAuB,QAAQ,sCAAsC;AAC9E,SAASC,aAAa,QAAQ,4BAA4B;AAC1D,SAASC,MAAM,QAAQ,gBAAgB;AACvC,SAASC,mBAAmB,QAAQ,gCAAgC;AACpE,SAASC,yBAAyB,QAAQ,sCAAsC;AAChF,SACEC,qBAAqB,EACrBC,wBAAwB,EACxBC,0BAA0B,QACrB,kBAAkB;AACzB,SAASC,QAAQ,QAAQ,qBAAqB;AAC9C,SACEC,qBAAqB,EAErBC,iBAAiB,EACjBC,WAAW,QACN,0BAA0B;AAEjC,IAAMC,OAAOJ,SAAS;AActB;;CAEC,GACD,OAAO,IAAMK,iBAAiB,SAACC;IAC7B,IAAMC,QAAQT,yBAAyBQ;IACvC,IAAME,eAAeN;IAErB,IAWI,mBAAA,mBACCM,cACAD,QAZHE,WAUE,iBAVFA,UACAC,cASE,iBATFA,aACAC,AAA2BC,kCAQzB,iBARFD,2BACAE,iCAOE,iBAPFA,gCACAC,YAME,iBANFA,WACAC,0BAKE,iBALFA,yBACAC,WAIE,iBAJFA,UACAC,SAGE,iBAHFA,QACAC,AAAYC,iBAEV,iBAFFD,wDAEE,iBADFE,4BAAAA,oFAA6B9B;IAM/B,qCAAqC;IACrC,IAAMqB,4BACJJ,MAAMG,WAAW,IAAIH,MAAMI,yBAAyB,KAAKU,YACrDd,MAAMG,WAAW,KAAKP,YAAYmB,MAAM,GACxCV;IAEN,IAAIW,QAAQC,GAAG,CAACC,QAAQ,KAAK,eAAe;QAC1C,2BAA2B;QAC3B,IAAIC,kBAAkB;QACtB,IAAInB,MAAMG,WAAW,EAAE;YACrBgB,kBACEnB,MAAMG,WAAW,KAAKP,YAAYwB,QAAQ,GACtC,4FACA;QACR;QACAvB,KAAK,AAAC,mPAIQ,OAAhBsB,iBAAgB;IAIhB;IAEA,yCAAyC;IACzC,IAAMR,aAAa1B,wBAAwB2B,gBAAgBC;IAE3D,IAAM,AAAEQ,WAAalC,SAAbkC;IAER,yFAAyF;IACzFhC,0BACE,SAASiC;QACP,IAAI,CAACD,UAAU;YACb;QACF;QAEA,IAAME,sBAAsBvC,4BAA4ByB,UAAUE;QAElErB,sBAAsB+B,SAASG,IAAI,EAAED;QACrC,OAAO;YACL/B,2BAA2B6B,SAASG,IAAI,EAAED;QAC5C;IACF,GACA;QAACd;QAAUE;KAAW;IAGxB,IAAMc,gBAAgBvC,cAAc;QAClCiB,aAAAA;QACAC,2BAAAA;QACAE,gCAAAA;QACAC,WAAAA;QACAC,yBAAAA;QACAC,UAAAA;QACAC,QAAAA;QACAC,YAAAA;IACF;IAEA,qBACE,oBAACjB,sBAAsBgC,QAAQ;QAACC,OAAOF;qBACrC,oBAACrC;QAAoBqB,UAAUA;QAAUE,YAAYA;OAClDT;AAIT,EAAE"}
|