payload-intl 1.2.2 → 1.2.3

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.
Files changed (163) hide show
  1. package/dist/components/MessageFormField.d.ts +15 -0
  2. package/dist/components/MessageFormField.d.ts.map +1 -0
  3. package/dist/components/{MessageController.js → MessageFormField.js} +5 -3
  4. package/dist/components/MessageFormField.js.map +1 -0
  5. package/dist/components/MessagesForm.d.ts +3 -1
  6. package/dist/components/MessagesForm.d.ts.map +1 -1
  7. package/dist/components/MessagesForm.js +25 -36
  8. package/dist/components/MessagesForm.js.map +1 -1
  9. package/dist/components/{MessageFormContext.d.ts → MessagesFormProvider.d.ts} +6 -2
  10. package/dist/components/MessagesFormProvider.d.ts.map +1 -0
  11. package/dist/components/{MessageFormContext.js → MessagesFormProvider.js} +8 -4
  12. package/dist/components/MessagesFormProvider.js.map +1 -0
  13. package/dist/components/MessagesLink.js +5 -2
  14. package/dist/components/MessagesLink.js.map +1 -1
  15. package/dist/components/MessagesView.d.ts +1 -1
  16. package/dist/components/MessagesView.d.ts.map +1 -1
  17. package/dist/components/MessagesView.js +13 -4
  18. package/dist/components/MessagesView.js.map +1 -1
  19. package/dist/components/actions/CopyMessages.d.ts +2 -0
  20. package/dist/components/actions/CopyMessages.d.ts.map +1 -0
  21. package/dist/components/actions/{Move.js → CopyMessages.js} +6 -6
  22. package/dist/components/actions/CopyMessages.js.map +1 -0
  23. package/dist/components/actions/JsonImport.d.ts +4 -1
  24. package/dist/components/actions/JsonImport.d.ts.map +1 -1
  25. package/dist/components/actions/JsonImport.js +7 -25
  26. package/dist/components/actions/JsonImport.js.map +1 -1
  27. package/dist/components/hooks/useHtmlLexicalAdapter.d.ts +12 -0
  28. package/dist/components/hooks/useHtmlLexicalAdapter.d.ts.map +1 -0
  29. package/dist/components/hooks/useHtmlLexicalAdapter.js +63 -0
  30. package/dist/components/hooks/useHtmlLexicalAdapter.js.map +1 -0
  31. package/dist/components/hooks/useMessagesFormSubmit.d.ts +11 -0
  32. package/dist/components/hooks/useMessagesFormSubmit.d.ts.map +1 -0
  33. package/dist/components/hooks/useMessagesFormSubmit.js +44 -0
  34. package/dist/components/hooks/useMessagesFormSubmit.js.map +1 -0
  35. package/dist/components/inputs/FieldWrapper.d.ts +9 -0
  36. package/dist/components/inputs/FieldWrapper.d.ts.map +1 -0
  37. package/dist/components/inputs/FieldWrapper.js +24 -0
  38. package/dist/components/inputs/FieldWrapper.js.map +1 -0
  39. package/dist/components/inputs/{InputWrapper.module.css → FieldWrapper.module.css} +2 -12
  40. package/dist/components/inputs/LexicalInput.d.ts +2 -13
  41. package/dist/components/inputs/LexicalInput.d.ts.map +1 -1
  42. package/dist/components/inputs/LexicalInput.js +4 -63
  43. package/dist/components/inputs/LexicalInput.js.map +1 -1
  44. package/dist/components/inputs/MessageInput.d.ts +6 -3
  45. package/dist/components/inputs/MessageInput.d.ts.map +1 -1
  46. package/dist/components/inputs/MessageInput.js +47 -43
  47. package/dist/components/inputs/MessageInput.js.map +1 -1
  48. package/dist/components/inputs/MessageInput.module.css +23 -4
  49. package/dist/components/inputs/ReferencePopover.d.ts +7 -0
  50. package/dist/components/inputs/ReferencePopover.d.ts.map +1 -0
  51. package/dist/components/inputs/ReferencePopover.js +42 -0
  52. package/dist/components/inputs/ReferencePopover.js.map +1 -0
  53. package/dist/components/inputs/ReferencePopover.module.css +70 -0
  54. package/dist/components/inputs/SingleLinePlugin.d.ts +2 -0
  55. package/dist/components/inputs/SingleLinePlugin.d.ts.map +1 -0
  56. package/dist/components/inputs/SingleLinePlugin.js +24 -0
  57. package/dist/components/inputs/SingleLinePlugin.js.map +1 -0
  58. package/dist/components/inputs/variables/VariableChip.d.ts.map +1 -1
  59. package/dist/components/inputs/variables/VariableChip.js +31 -32
  60. package/dist/components/inputs/variables/VariableChip.js.map +1 -1
  61. package/dist/components/inputs/variables/VariableChip.module.css +3 -3
  62. package/dist/components/inputs/variables/VariableSuggestion.d.ts +4 -0
  63. package/dist/components/inputs/variables/VariableSuggestion.d.ts.map +1 -0
  64. package/dist/components/inputs/variables/VariableSuggestion.js +24 -0
  65. package/dist/components/inputs/variables/VariableSuggestion.js.map +1 -0
  66. package/dist/components/inputs/variables/editors/PluralVariableEditor.d.ts.map +1 -1
  67. package/dist/components/inputs/variables/editors/PluralVariableEditor.js +62 -60
  68. package/dist/components/inputs/variables/editors/PluralVariableEditor.js.map +1 -1
  69. package/dist/components/inputs/variables/editors/PluralVariableEditor.module.css +4 -4
  70. package/dist/components/inputs/variables/editors/TemporalVariableEditor.d.ts +11 -0
  71. package/dist/components/inputs/variables/editors/TemporalVariableEditor.d.ts.map +1 -0
  72. package/dist/components/inputs/variables/editors/{DateVariableEditor.js → TemporalVariableEditor.js} +3 -3
  73. package/dist/components/inputs/variables/editors/TemporalVariableEditor.js.map +1 -0
  74. package/dist/components/inputs/variables/pickers/NumericVariableEditor.d.ts +7 -0
  75. package/dist/components/inputs/variables/pickers/{NumericVariablePicker.d.ts.map → NumericVariableEditor.d.ts.map} +1 -1
  76. package/dist/components/inputs/variables/pickers/{NumericVariablePicker.js → NumericVariableEditor.js} +15 -9
  77. package/dist/components/inputs/variables/pickers/NumericVariableEditor.js.map +1 -0
  78. package/dist/components/inputs/variables/pickers/{NumericVariablePicker.module.css → NumericVariableEditor.module.css} +3 -3
  79. package/dist/components/inputs/variables/pickers/TemporalVariablePicker.d.ts +7 -0
  80. package/dist/components/inputs/variables/pickers/TemporalVariablePicker.d.ts.map +1 -0
  81. package/dist/components/inputs/variables/pickers/TemporalVariablePicker.js +57 -0
  82. package/dist/components/inputs/variables/pickers/TemporalVariablePicker.js.map +1 -0
  83. package/dist/components/inputs/variables/pickers/{TemporalElementEditor.module.css → TemporalVariablePicker.module.css} +3 -3
  84. package/dist/components/layout/GroupStatusDot.d.ts +6 -0
  85. package/dist/components/layout/GroupStatusDot.d.ts.map +1 -0
  86. package/dist/components/layout/GroupStatusDot.js +24 -0
  87. package/dist/components/layout/GroupStatusDot.js.map +1 -0
  88. package/dist/components/layout/MessageField.d.ts +2 -1
  89. package/dist/components/layout/MessageField.d.ts.map +1 -1
  90. package/dist/components/layout/MessageField.js +52 -33
  91. package/dist/components/layout/MessageField.js.map +1 -1
  92. package/dist/components/layout/MessageField.module.css +21 -10
  93. package/dist/components/layout/MessagesTabs.d.ts.map +1 -1
  94. package/dist/components/layout/MessagesTabs.js +3 -5
  95. package/dist/components/layout/MessagesTabs.js.map +1 -1
  96. package/dist/components/layout/MessagesTree.d.ts +1 -1
  97. package/dist/components/layout/MessagesTree.d.ts.map +1 -1
  98. package/dist/components/layout/MessagesTree.js +33 -43
  99. package/dist/components/layout/MessagesTree.js.map +1 -1
  100. package/dist/components/layout/MessagesTree.module.css +10 -5
  101. package/dist/components/layout/StatusDot.d.ts +7 -0
  102. package/dist/components/layout/StatusDot.d.ts.map +1 -0
  103. package/dist/components/layout/StatusDot.js +12 -0
  104. package/dist/components/layout/StatusDot.js.map +1 -0
  105. package/dist/components/layout/StatusDot.module.css +16 -0
  106. package/dist/const.d.ts +2 -2
  107. package/dist/const.js +1 -1
  108. package/dist/entities.js +1 -1
  109. package/dist/internals/index.d.ts.map +1 -0
  110. package/dist/internals/index.js.map +1 -0
  111. package/dist/internals/procedure.d.ts.map +1 -0
  112. package/dist/internals/procedure.js.map +1 -0
  113. package/dist/internals/urls.d.ts.map +1 -0
  114. package/dist/internals/urls.js.map +1 -0
  115. package/dist/internals/utils.d.ts.map +1 -0
  116. package/dist/internals/utils.js.map +1 -0
  117. package/dist/utils/sanitize.d.ts +7 -6
  118. package/dist/utils/sanitize.d.ts.map +1 -1
  119. package/dist/utils/sanitize.js +11 -8
  120. package/dist/utils/sanitize.js.map +1 -1
  121. package/package.json +4 -3
  122. package/dist/_common/index.d.ts.map +0 -1
  123. package/dist/_common/index.js.map +0 -1
  124. package/dist/_common/procedure.d.ts.map +0 -1
  125. package/dist/_common/procedure.js.map +0 -1
  126. package/dist/_common/urls.d.ts.map +0 -1
  127. package/dist/_common/urls.js.map +0 -1
  128. package/dist/_common/utils.d.ts.map +0 -1
  129. package/dist/_common/utils.js.map +0 -1
  130. package/dist/components/MessageController.d.ts +0 -13
  131. package/dist/components/MessageController.d.ts.map +0 -1
  132. package/dist/components/MessageController.js.map +0 -1
  133. package/dist/components/MessageFormContext.d.ts.map +0 -1
  134. package/dist/components/MessageFormContext.js.map +0 -1
  135. package/dist/components/actions/Move.d.ts +0 -2
  136. package/dist/components/actions/Move.d.ts.map +0 -1
  137. package/dist/components/actions/Move.js.map +0 -1
  138. package/dist/components/inputs/InputWrapper.d.ts +0 -8
  139. package/dist/components/inputs/InputWrapper.d.ts.map +0 -1
  140. package/dist/components/inputs/InputWrapper.js +0 -34
  141. package/dist/components/inputs/InputWrapper.js.map +0 -1
  142. package/dist/components/inputs/variables/editors/DateVariableEditor.d.ts +0 -10
  143. package/dist/components/inputs/variables/editors/DateVariableEditor.d.ts.map +0 -1
  144. package/dist/components/inputs/variables/editors/DateVariableEditor.js.map +0 -1
  145. package/dist/components/inputs/variables/editors/TimeVariableEditor.d.ts +0 -10
  146. package/dist/components/inputs/variables/editors/TimeVariableEditor.d.ts.map +0 -1
  147. package/dist/components/inputs/variables/editors/TimeVariableEditor.js +0 -15
  148. package/dist/components/inputs/variables/editors/TimeVariableEditor.js.map +0 -1
  149. package/dist/components/inputs/variables/pickers/NumericVariablePicker.d.ts +0 -7
  150. package/dist/components/inputs/variables/pickers/NumericVariablePicker.js.map +0 -1
  151. package/dist/components/inputs/variables/pickers/TemporalElementEditor.d.ts +0 -7
  152. package/dist/components/inputs/variables/pickers/TemporalElementEditor.d.ts.map +0 -1
  153. package/dist/components/inputs/variables/pickers/TemporalElementEditor.js +0 -58
  154. package/dist/components/inputs/variables/pickers/TemporalElementEditor.js.map +0 -1
  155. /package/dist/components/actions/{Move.module.css → CopyMessages.module.css} +0 -0
  156. /package/dist/{_common → internals}/index.d.ts +0 -0
  157. /package/dist/{_common → internals}/index.js +0 -0
  158. /package/dist/{_common → internals}/procedure.d.ts +0 -0
  159. /package/dist/{_common → internals}/procedure.js +0 -0
  160. /package/dist/{_common → internals}/urls.d.ts +0 -0
  161. /package/dist/{_common → internals}/urls.js +0 -0
  162. /package/dist/{_common → internals}/utils.d.ts +0 -0
  163. /package/dist/{_common → internals}/utils.js +0 -0
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../../../src/components/inputs/variables/pickers/NumericVariablePicker.tsx"],"sourcesContent":["import { ToggleGroup } from 'radix-ui';\nimport { useEffect, useRef, useState } from 'react';\nimport type { NumberElement, PluralElement } from '@/types';\n\nimport { isNumberElement, isPluralElement } from '@/utils/guards';\n\nimport { PluralVariableEditor } from '../editors/PluralVariableEditor';\nimport styles from './NumericVariablePicker.module.css';\n\nconst NUMERIC_TYPES = [\n 'number',\n 'plural',\n // \"selectordinal\"\n] as const;\n\ntype NumericType = (typeof NUMERIC_TYPES)[number];\n\nexport interface NumericVariablePickerProps {\n element: NumberElement | PluralElement;\n onUpdate: (value: string) => void;\n}\n\nexport function NumericVariablePicker({\n element,\n onUpdate,\n}: NumericVariablePickerProps) {\n const [type, setType] = useState<NumericType | undefined>(() => {\n if (isNumberElement(element)) return 'number';\n if (isPluralElement(element)) return 'plural';\n return undefined;\n });\n const getValueRef = useRef<{ getValue: () => string }>(null);\n\n // biome-ignore lint/correctness/useExhaustiveDependencies: useEffectEvent\n useEffect(() => {\n return () => {\n if (!getValueRef.current) return;\n onUpdate(getValueRef.current.getValue());\n };\n }, []);\n\n return (\n <div>\n <ToggleGroup.Root\n className={styles.toggleGroup}\n onValueChange={(value) => setType(value as NumericType)}\n type=\"single\"\n value={type}\n >\n {NUMERIC_TYPES.map((type) => (\n <ToggleGroup.Item\n className={styles.toggleItem}\n key={type}\n value={type}\n >\n {type}\n </ToggleGroup.Item>\n ))}\n </ToggleGroup.Root>\n\n <div className={styles.content}>\n {type === 'plural' && (\n <PluralVariableEditor\n element={isPluralElement(element) ? element : undefined}\n ref={getValueRef}\n variableName={element.value}\n />\n )}\n </div>\n </div>\n );\n}\n"],"names":["ToggleGroup","useEffect","useRef","useState","isNumberElement","isPluralElement","PluralVariableEditor","styles","NUMERIC_TYPES","NumericVariablePicker","element","onUpdate","type","setType","undefined","getValueRef","current","getValue","div","Root","className","toggleGroup","onValueChange","value","map","Item","toggleItem","content","ref","variableName"],"mappings":";AAAA,SAASA,WAAW,QAAQ,WAAW;AACvC,SAASC,SAAS,EAAEC,MAAM,EAAEC,QAAQ,QAAQ,QAAQ;AAGpD,SAASC,eAAe,EAAEC,eAAe,QAAQ,iBAAiB;AAElE,SAASC,oBAAoB,QAAQ,kCAAkC;AACvE,OAAOC,YAAY,qCAAqC;AAExD,MAAMC,gBAAgB;IACpB;IACA;CAED;AASD,OAAO,SAASC,sBAAsB,EACpCC,OAAO,EACPC,QAAQ,EACmB;IAC3B,MAAM,CAACC,MAAMC,QAAQ,GAAGV,SAAkC;QACxD,IAAIC,gBAAgBM,UAAU,OAAO;QACrC,IAAIL,gBAAgBK,UAAU,OAAO;QACrC,OAAOI;IACT;IACA,MAAMC,cAAcb,OAAmC;IAEvD,0EAA0E;IAC1ED,UAAU;QACR,OAAO;YACL,IAAI,CAACc,YAAYC,OAAO,EAAE;YAC1BL,SAASI,YAAYC,OAAO,CAACC,QAAQ;QACvC;IACF,GAAG,EAAE;IAEL,qBACE,MAACC;;0BACC,KAAClB,YAAYmB,IAAI;gBACfC,WAAWb,OAAOc,WAAW;gBAC7BC,eAAe,CAACC,QAAUV,QAAQU;gBAClCX,MAAK;gBACLW,OAAOX;0BAENJ,cAAcgB,GAAG,CAAC,CAACZ,qBAClB,KAACZ,YAAYyB,IAAI;wBACfL,WAAWb,OAAOmB,UAAU;wBAE5BH,OAAOX;kCAENA;uBAHIA;;0BAQX,KAACM;gBAAIE,WAAWb,OAAOoB,OAAO;0BAC3Bf,SAAS,0BACR,KAACN;oBACCI,SAASL,gBAAgBK,WAAWA,UAAUI;oBAC9Cc,KAAKb;oBACLc,cAAcnB,QAAQa,KAAK;;;;;AAMvC"}
@@ -1,7 +0,0 @@
1
- import type { DateElement, TimeElement } from '../../../../types';
2
- export interface TemporalElementEditorProps {
3
- element: DateElement | TimeElement;
4
- onUpdate: (value: string) => void;
5
- }
6
- export declare function TemporalElementEditor({ element, onUpdate, }: TemporalElementEditorProps): import("react/jsx-runtime").JSX.Element;
7
- //# sourceMappingURL=TemporalElementEditor.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TemporalElementEditor.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/variables/pickers/TemporalElementEditor.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAYxD,MAAM,WAAW,0BAA0B;IACzC,OAAO,EAAE,WAAW,GAAG,WAAW,CAAC;IACnC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC;AAED,wBAAgB,qBAAqB,CAAC,EACpC,OAAO,EACP,QAAQ,GACT,EAAE,0BAA0B,2CAqD5B"}
@@ -1,58 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { ToggleGroup } from 'radix-ui';
3
- import { useEffect, useRef, useState } from 'react';
4
- import { isDateElement, isTimeElement } from '../../../../utils/guards';
5
- import { DateVariableEditor } from '../editors/DateVariableEditor';
6
- import { TimeElementEditor } from '../editors/TimeVariableEditor';
7
- import styles from './TemporalElementEditor.module.css';
8
- const TEMPORAL_TYPES = [
9
- 'date',
10
- 'time'
11
- ];
12
- export function TemporalElementEditor({ element, onUpdate }) {
13
- const [type, setType] = useState(()=>{
14
- if (isDateElement(element)) return 'date';
15
- if (isTimeElement(element)) return 'time';
16
- return undefined;
17
- });
18
- const getValueRef = useRef(null);
19
- // biome-ignore lint/correctness/useExhaustiveDependencies: useEffectEvent
20
- useEffect(()=>{
21
- return ()=>{
22
- if (!getValueRef.current) return;
23
- onUpdate(getValueRef.current.getValue());
24
- };
25
- }, []);
26
- return /*#__PURE__*/ _jsxs("div", {
27
- children: [
28
- /*#__PURE__*/ _jsx(ToggleGroup.Root, {
29
- className: styles.toggleGroup,
30
- onValueChange: (value)=>setType(value),
31
- type: "single",
32
- value: type,
33
- children: TEMPORAL_TYPES.map((type)=>/*#__PURE__*/ _jsx(ToggleGroup.Item, {
34
- className: styles.toggleItem,
35
- value: type,
36
- children: type
37
- }, type))
38
- }),
39
- /*#__PURE__*/ _jsxs("div", {
40
- className: styles.content,
41
- children: [
42
- type === 'date' && /*#__PURE__*/ _jsx(DateVariableEditor, {
43
- element: isDateElement(element) ? element : undefined,
44
- name: element.value,
45
- ref: getValueRef
46
- }),
47
- type === 'time' && /*#__PURE__*/ _jsx(TimeElementEditor, {
48
- element: isTimeElement(element) ? element : undefined,
49
- name: element.value,
50
- ref: getValueRef
51
- })
52
- ]
53
- })
54
- ]
55
- });
56
- }
57
-
58
- //# sourceMappingURL=TemporalElementEditor.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../../../../src/components/inputs/variables/pickers/TemporalElementEditor.tsx"],"sourcesContent":["import { ToggleGroup } from 'radix-ui';\nimport { useEffect, useRef, useState } from 'react';\nimport type { DateElement, TimeElement } from '@/types';\n\nimport { isDateElement, isTimeElement } from '@/utils/guards';\n\nimport { DateVariableEditor } from '../editors/DateVariableEditor';\nimport { TimeElementEditor } from '../editors/TimeVariableEditor';\nimport styles from './TemporalElementEditor.module.css';\n\nconst TEMPORAL_TYPES = ['date', 'time'] as const;\n\ntype TemporalType = (typeof TEMPORAL_TYPES)[number];\n\nexport interface TemporalElementEditorProps {\n element: DateElement | TimeElement;\n onUpdate: (value: string) => void;\n}\n\nexport function TemporalElementEditor({\n element,\n onUpdate,\n}: TemporalElementEditorProps) {\n const [type, setType] = useState<TemporalType | undefined>(() => {\n if (isDateElement(element)) return 'date';\n if (isTimeElement(element)) return 'time';\n return undefined;\n });\n const getValueRef = useRef<{ getValue: () => string }>(null);\n\n // biome-ignore lint/correctness/useExhaustiveDependencies: useEffectEvent\n useEffect(() => {\n return () => {\n if (!getValueRef.current) return;\n onUpdate(getValueRef.current.getValue());\n };\n }, []);\n\n return (\n <div>\n <ToggleGroup.Root\n className={styles.toggleGroup}\n onValueChange={(value) => setType(value as TemporalType)}\n type=\"single\"\n value={type}\n >\n {TEMPORAL_TYPES.map((type) => (\n <ToggleGroup.Item\n className={styles.toggleItem}\n key={type}\n value={type}\n >\n {type}\n </ToggleGroup.Item>\n ))}\n </ToggleGroup.Root>\n\n <div className={styles.content}>\n {type === 'date' && (\n <DateVariableEditor\n element={isDateElement(element) ? element : undefined}\n name={element.value}\n ref={getValueRef}\n />\n )}\n {type === 'time' && (\n <TimeElementEditor\n element={isTimeElement(element) ? element : undefined}\n name={element.value}\n ref={getValueRef}\n />\n )}\n </div>\n </div>\n );\n}\n"],"names":["ToggleGroup","useEffect","useRef","useState","isDateElement","isTimeElement","DateVariableEditor","TimeElementEditor","styles","TEMPORAL_TYPES","TemporalElementEditor","element","onUpdate","type","setType","undefined","getValueRef","current","getValue","div","Root","className","toggleGroup","onValueChange","value","map","Item","toggleItem","content","name","ref"],"mappings":";AAAA,SAASA,WAAW,QAAQ,WAAW;AACvC,SAASC,SAAS,EAAEC,MAAM,EAAEC,QAAQ,QAAQ,QAAQ;AAGpD,SAASC,aAAa,EAAEC,aAAa,QAAQ,iBAAiB;AAE9D,SAASC,kBAAkB,QAAQ,gCAAgC;AACnE,SAASC,iBAAiB,QAAQ,gCAAgC;AAClE,OAAOC,YAAY,qCAAqC;AAExD,MAAMC,iBAAiB;IAAC;IAAQ;CAAO;AASvC,OAAO,SAASC,sBAAsB,EACpCC,OAAO,EACPC,QAAQ,EACmB;IAC3B,MAAM,CAACC,MAAMC,QAAQ,GAAGX,SAAmC;QACzD,IAAIC,cAAcO,UAAU,OAAO;QACnC,IAAIN,cAAcM,UAAU,OAAO;QACnC,OAAOI;IACT;IACA,MAAMC,cAAcd,OAAmC;IAEvD,0EAA0E;IAC1ED,UAAU;QACR,OAAO;YACL,IAAI,CAACe,YAAYC,OAAO,EAAE;YAC1BL,SAASI,YAAYC,OAAO,CAACC,QAAQ;QACvC;IACF,GAAG,EAAE;IAEL,qBACE,MAACC;;0BACC,KAACnB,YAAYoB,IAAI;gBACfC,WAAWb,OAAOc,WAAW;gBAC7BC,eAAe,CAACC,QAAUV,QAAQU;gBAClCX,MAAK;gBACLW,OAAOX;0BAENJ,eAAegB,GAAG,CAAC,CAACZ,qBACnB,KAACb,YAAY0B,IAAI;wBACfL,WAAWb,OAAOmB,UAAU;wBAE5BH,OAAOX;kCAENA;uBAHIA;;0BAQX,MAACM;gBAAIE,WAAWb,OAAOoB,OAAO;;oBAC3Bf,SAAS,wBACR,KAACP;wBACCK,SAASP,cAAcO,WAAWA,UAAUI;wBAC5Cc,MAAMlB,QAAQa,KAAK;wBACnBM,KAAKd;;oBAGRH,SAAS,wBACR,KAACN;wBACCI,SAASN,cAAcM,WAAWA,UAAUI;wBAC5Cc,MAAMlB,QAAQa,KAAK;wBACnBM,KAAKd;;;;;;AAMjB"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes