@tamagui/use-controllable-state 1.0.1-beta.123 → 1.0.1-beta.126
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/useControllableState.js +14 -14
- package/dist/cjs/useControllableState.js.map +2 -2
- package/dist/esm/useControllableState.js +15 -15
- package/dist/esm/useControllableState.js.map +2 -2
- package/dist/jsx/useControllableState.js +15 -15
- package/dist/jsx/useControllableState.js.map +2 -2
- package/package.json +3 -3
- package/src/useControllableState.ts +15 -17
- package/types/useControllableState.d.ts +1 -1
- package/types/index.d.ts.map +0 -1
- package/types/useControllableState.d.ts.map +0 -1
|
@@ -32,8 +32,8 @@ function useControllableState({
|
|
|
32
32
|
}) {
|
|
33
33
|
const [state, setState] = (0, import_react.useState)(prop ?? defaultProp);
|
|
34
34
|
const previous = (0, import_react.useRef)(state);
|
|
35
|
-
const
|
|
36
|
-
const
|
|
35
|
+
const propWins = strategy === "prop-wins" && prop !== void 0;
|
|
36
|
+
const value = propWins ? prop : state;
|
|
37
37
|
const onChangeCb = (0, import_use_event.useEvent)(onChange || idFn);
|
|
38
38
|
(0, import_react.useEffect)(() => {
|
|
39
39
|
if (state !== previous.current) {
|
|
@@ -41,18 +41,18 @@ function useControllableState({
|
|
|
41
41
|
onChangeCb(state);
|
|
42
42
|
}
|
|
43
43
|
}, [onChangeCb, state]);
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
];
|
|
44
|
+
const setter = (0, import_use_event.useEvent)((next) => {
|
|
45
|
+
if (preventUpdate)
|
|
46
|
+
return;
|
|
47
|
+
console.log("setting", propWins, prop, next);
|
|
48
|
+
if (propWins) {
|
|
49
|
+
const nextValue = typeof next === "function" ? next(previous.current) : next;
|
|
50
|
+
onChangeCb(nextValue);
|
|
51
|
+
} else {
|
|
52
|
+
setState(next);
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
return [value, setter];
|
|
56
56
|
}
|
|
57
57
|
const idFn = () => {
|
|
58
58
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/useControllableState.ts"],
|
|
4
|
-
"sourcesContent": ["import { useEvent } from '@tamagui/use-event'\nimport React, { useCallback, useEffect, useRef, useState } from 'react'\n\n// can configure to allow most-recent-wins or prop-wins\n// defaults to prop-wins\n\ntype ChangeCb<T> = ((next: T) => void) | React.Dispatch<React.SetStateAction<T>>\n\nexport function useControllableState<T>({\n prop,\n defaultProp,\n onChange,\n strategy = 'prop-wins',\n preventUpdate,\n}: {\n prop?: T | undefined\n defaultProp: T\n onChange?: ChangeCb<T>\n strategy?: 'prop-wins' | 'most-recent-wins'\n preventUpdate?: boolean\n}): [T,
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAAyB;AACzB,mBAAgE;AAOzD,8BAAiC;AAAA,EACtC;AAAA,EACA;AAAA,EACA;AAAA,EACA,WAAW;AAAA,EACX;AAAA,
|
|
4
|
+
"sourcesContent": ["import { useEvent } from '@tamagui/use-event'\nimport React, { useCallback, useEffect, useRef, useState } from 'react'\n\n// can configure to allow most-recent-wins or prop-wins\n// defaults to prop-wins\n\ntype ChangeCb<T> = ((next: T) => void) | React.Dispatch<React.SetStateAction<T>>\n\nexport function useControllableState<T>({\n prop,\n defaultProp,\n onChange,\n strategy = 'prop-wins',\n preventUpdate,\n}: {\n prop?: T | undefined\n defaultProp: T\n onChange?: ChangeCb<T>\n strategy?: 'prop-wins' | 'most-recent-wins'\n preventUpdate?: boolean\n}): [T, React.Dispatch<React.SetStateAction<T>>] {\n const [state, setState] = useState(prop ?? defaultProp)\n const previous = useRef<any>(state)\n const propWins = strategy === 'prop-wins' && prop !== undefined\n const value = propWins ? prop : state\n const onChangeCb = useEvent(onChange || idFn)\n\n useEffect(() => {\n if (state !== previous.current) {\n previous.current = state\n onChangeCb(state)\n }\n }, [onChangeCb, state])\n\n const setter = useEvent((next) => {\n if (preventUpdate) return\n console.log('setting', propWins, prop, next)\n if (propWins) {\n const nextValue = typeof next === 'function' ? next(previous.current) : next\n onChangeCb(nextValue)\n } else {\n setState(next)\n }\n })\n\n return [value as T, setter]\n}\n\nconst idFn = () => {}\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,uBAAyB;AACzB,mBAAgE;AAOzD,8BAAiC;AAAA,EACtC;AAAA,EACA;AAAA,EACA;AAAA,EACA,WAAW;AAAA,EACX;AAAA,GAO+C;AAC/C,QAAM,CAAC,OAAO,YAAY,2BAAS,QAAQ,WAAW;AACtD,QAAM,WAAW,yBAAY,KAAK;AAClC,QAAM,WAAW,aAAa,eAAe,SAAS;AACtD,QAAM,QAAQ,WAAW,OAAO;AAChC,QAAM,aAAa,+BAAS,YAAY,IAAI;AAE5C,8BAAU,MAAM;AACd,QAAI,UAAU,SAAS,SAAS;AAC9B,eAAS,UAAU;AACnB,iBAAW,KAAK;AAAA,IAClB;AAAA,EACF,GAAG,CAAC,YAAY,KAAK,CAAC;AAEtB,QAAM,SAAS,+BAAS,CAAC,SAAS;AAChC,QAAI;AAAe;AACnB,YAAQ,IAAI,WAAW,UAAU,MAAM,IAAI;AAC3C,QAAI,UAAU;AACZ,YAAM,YAAY,OAAO,SAAS,aAAa,KAAK,SAAS,OAAO,IAAI;AACxE,iBAAW,SAAS;AAAA,IACtB,OAAO;AACL,eAAS,IAAI;AAAA,IACf;AAAA,EACF,CAAC;AAED,SAAO,CAAC,OAAY,MAAM;AAC5B;AAEA,MAAM,OAAO,MAAM;AAAC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useEvent } from "@tamagui/use-event";
|
|
2
|
-
import {
|
|
2
|
+
import { useEffect, useRef, useState } from "react";
|
|
3
3
|
function useControllableState({
|
|
4
4
|
prop,
|
|
5
5
|
defaultProp,
|
|
@@ -9,8 +9,8 @@ function useControllableState({
|
|
|
9
9
|
}) {
|
|
10
10
|
const [state, setState] = useState(prop ?? defaultProp);
|
|
11
11
|
const previous = useRef(state);
|
|
12
|
-
const
|
|
13
|
-
const
|
|
12
|
+
const propWins = strategy === "prop-wins" && prop !== void 0;
|
|
13
|
+
const value = propWins ? prop : state;
|
|
14
14
|
const onChangeCb = useEvent(onChange || idFn);
|
|
15
15
|
useEffect(() => {
|
|
16
16
|
if (state !== previous.current) {
|
|
@@ -18,18 +18,18 @@ function useControllableState({
|
|
|
18
18
|
onChangeCb(state);
|
|
19
19
|
}
|
|
20
20
|
}, [onChangeCb, state]);
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
];
|
|
21
|
+
const setter = useEvent((next) => {
|
|
22
|
+
if (preventUpdate)
|
|
23
|
+
return;
|
|
24
|
+
console.log("setting", propWins, prop, next);
|
|
25
|
+
if (propWins) {
|
|
26
|
+
const nextValue = typeof next === "function" ? next(previous.current) : next;
|
|
27
|
+
onChangeCb(nextValue);
|
|
28
|
+
} else {
|
|
29
|
+
setState(next);
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
return [value, setter];
|
|
33
33
|
}
|
|
34
34
|
const idFn = () => {
|
|
35
35
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/useControllableState.ts"],
|
|
4
|
-
"sourcesContent": ["import { useEvent } from '@tamagui/use-event'\nimport React, { useCallback, useEffect, useRef, useState } from 'react'\n\n// can configure to allow most-recent-wins or prop-wins\n// defaults to prop-wins\n\ntype ChangeCb<T> = ((next: T) => void) | React.Dispatch<React.SetStateAction<T>>\n\nexport function useControllableState<T>({\n prop,\n defaultProp,\n onChange,\n strategy = 'prop-wins',\n preventUpdate,\n}: {\n prop?: T | undefined\n defaultProp: T\n onChange?: ChangeCb<T>\n strategy?: 'prop-wins' | 'most-recent-wins'\n preventUpdate?: boolean\n}): [T,
|
|
5
|
-
"mappings": "AAAA;AACA;AAOO,8BAAiC;AAAA,EACtC;AAAA,EACA;AAAA,EACA;AAAA,EACA,WAAW;AAAA,EACX;AAAA,
|
|
4
|
+
"sourcesContent": ["import { useEvent } from '@tamagui/use-event'\nimport React, { useCallback, useEffect, useRef, useState } from 'react'\n\n// can configure to allow most-recent-wins or prop-wins\n// defaults to prop-wins\n\ntype ChangeCb<T> = ((next: T) => void) | React.Dispatch<React.SetStateAction<T>>\n\nexport function useControllableState<T>({\n prop,\n defaultProp,\n onChange,\n strategy = 'prop-wins',\n preventUpdate,\n}: {\n prop?: T | undefined\n defaultProp: T\n onChange?: ChangeCb<T>\n strategy?: 'prop-wins' | 'most-recent-wins'\n preventUpdate?: boolean\n}): [T, React.Dispatch<React.SetStateAction<T>>] {\n const [state, setState] = useState(prop ?? defaultProp)\n const previous = useRef<any>(state)\n const propWins = strategy === 'prop-wins' && prop !== undefined\n const value = propWins ? prop : state\n const onChangeCb = useEvent(onChange || idFn)\n\n useEffect(() => {\n if (state !== previous.current) {\n previous.current = state\n onChangeCb(state)\n }\n }, [onChangeCb, state])\n\n const setter = useEvent((next) => {\n if (preventUpdate) return\n console.log('setting', propWins, prop, next)\n if (propWins) {\n const nextValue = typeof next === 'function' ? next(previous.current) : next\n onChangeCb(nextValue)\n } else {\n setState(next)\n }\n })\n\n return [value as T, setter]\n}\n\nconst idFn = () => {}\n"],
|
|
5
|
+
"mappings": "AAAA;AACA;AAOO,8BAAiC;AAAA,EACtC;AAAA,EACA;AAAA,EACA;AAAA,EACA,WAAW;AAAA,EACX;AAAA,GAO+C;AAC/C,QAAM,CAAC,OAAO,YAAY,SAAS,QAAQ,WAAW;AACtD,QAAM,WAAW,OAAY,KAAK;AAClC,QAAM,WAAW,aAAa,eAAe,SAAS;AACtD,QAAM,QAAQ,WAAW,OAAO;AAChC,QAAM,aAAa,SAAS,YAAY,IAAI;AAE5C,YAAU,MAAM;AACd,QAAI,UAAU,SAAS,SAAS;AAC9B,eAAS,UAAU;AACnB,iBAAW,KAAK;AAAA,IAClB;AAAA,EACF,GAAG,CAAC,YAAY,KAAK,CAAC;AAEtB,QAAM,SAAS,SAAS,CAAC,SAAS;AAChC,QAAI;AAAe;AACnB,YAAQ,IAAI,WAAW,UAAU,MAAM,IAAI;AAC3C,QAAI,UAAU;AACZ,YAAM,YAAY,OAAO,SAAS,aAAa,KAAK,SAAS,OAAO,IAAI;AACxE,iBAAW,SAAS;AAAA,IACtB,OAAO;AACL,eAAS,IAAI;AAAA,IACf;AAAA,EACF,CAAC;AAED,SAAO,CAAC,OAAY,MAAM;AAC5B;AAEA,MAAM,OAAO,MAAM;AAAC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useEvent } from "@tamagui/use-event";
|
|
2
|
-
import {
|
|
2
|
+
import { useEffect, useRef, useState } from "react";
|
|
3
3
|
function useControllableState({
|
|
4
4
|
prop,
|
|
5
5
|
defaultProp,
|
|
@@ -9,8 +9,8 @@ function useControllableState({
|
|
|
9
9
|
}) {
|
|
10
10
|
const [state, setState] = useState(prop != null ? prop : defaultProp);
|
|
11
11
|
const previous = useRef(state);
|
|
12
|
-
const
|
|
13
|
-
const
|
|
12
|
+
const propWins = strategy === "prop-wins" && prop !== void 0;
|
|
13
|
+
const value = propWins ? prop : state;
|
|
14
14
|
const onChangeCb = useEvent(onChange || idFn);
|
|
15
15
|
useEffect(() => {
|
|
16
16
|
if (state !== previous.current) {
|
|
@@ -18,18 +18,18 @@ function useControllableState({
|
|
|
18
18
|
onChangeCb(state);
|
|
19
19
|
}
|
|
20
20
|
}, [onChangeCb, state]);
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
];
|
|
21
|
+
const setter = useEvent((next) => {
|
|
22
|
+
if (preventUpdate)
|
|
23
|
+
return;
|
|
24
|
+
console.log("setting", propWins, prop, next);
|
|
25
|
+
if (propWins) {
|
|
26
|
+
const nextValue = typeof next === "function" ? next(previous.current) : next;
|
|
27
|
+
onChangeCb(nextValue);
|
|
28
|
+
} else {
|
|
29
|
+
setState(next);
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
return [value, setter];
|
|
33
33
|
}
|
|
34
34
|
const idFn = () => {
|
|
35
35
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/useControllableState.ts"],
|
|
4
|
-
"sourcesContent": ["import { useEvent } from '@tamagui/use-event'\nimport React, { useCallback, useEffect, useRef, useState } from 'react'\n\n// can configure to allow most-recent-wins or prop-wins\n// defaults to prop-wins\n\ntype ChangeCb<T> = ((next: T) => void) | React.Dispatch<React.SetStateAction<T>>\n\nexport function useControllableState<T>({\n prop,\n defaultProp,\n onChange,\n strategy = 'prop-wins',\n preventUpdate,\n}: {\n prop?: T | undefined\n defaultProp: T\n onChange?: ChangeCb<T>\n strategy?: 'prop-wins' | 'most-recent-wins'\n preventUpdate?: boolean\n}): [T,
|
|
5
|
-
"mappings": "AAAA;AACA;AAOO,8BAAiC;AAAA,EACtC;AAAA,EACA;AAAA,EACA;AAAA,EACA,WAAW;AAAA,EACX;AAAA,
|
|
4
|
+
"sourcesContent": ["import { useEvent } from '@tamagui/use-event'\nimport React, { useCallback, useEffect, useRef, useState } from 'react'\n\n// can configure to allow most-recent-wins or prop-wins\n// defaults to prop-wins\n\ntype ChangeCb<T> = ((next: T) => void) | React.Dispatch<React.SetStateAction<T>>\n\nexport function useControllableState<T>({\n prop,\n defaultProp,\n onChange,\n strategy = 'prop-wins',\n preventUpdate,\n}: {\n prop?: T | undefined\n defaultProp: T\n onChange?: ChangeCb<T>\n strategy?: 'prop-wins' | 'most-recent-wins'\n preventUpdate?: boolean\n}): [T, React.Dispatch<React.SetStateAction<T>>] {\n const [state, setState] = useState(prop ?? defaultProp)\n const previous = useRef<any>(state)\n const propWins = strategy === 'prop-wins' && prop !== undefined\n const value = propWins ? prop : state\n const onChangeCb = useEvent(onChange || idFn)\n\n useEffect(() => {\n if (state !== previous.current) {\n previous.current = state\n onChangeCb(state)\n }\n }, [onChangeCb, state])\n\n const setter = useEvent((next) => {\n if (preventUpdate) return\n console.log('setting', propWins, prop, next)\n if (propWins) {\n const nextValue = typeof next === 'function' ? next(previous.current) : next\n onChangeCb(nextValue)\n } else {\n setState(next)\n }\n })\n\n return [value as T, setter]\n}\n\nconst idFn = () => {}\n"],
|
|
5
|
+
"mappings": "AAAA;AACA;AAOO,8BAAiC;AAAA,EACtC;AAAA,EACA;AAAA,EACA;AAAA,EACA,WAAW;AAAA,EACX;AAAA,GAO+C;AAC/C,QAAM,CAAC,OAAO,YAAY,SAAS,sBAAQ,WAAW;AACtD,QAAM,WAAW,OAAY,KAAK;AAClC,QAAM,WAAW,aAAa,eAAe,SAAS;AACtD,QAAM,QAAQ,WAAW,OAAO;AAChC,QAAM,aAAa,SAAS,YAAY,IAAI;AAE5C,YAAU,MAAM;AACd,QAAI,UAAU,SAAS,SAAS;AAC9B,eAAS,UAAU;AACnB,iBAAW,KAAK;AAAA,IAClB;AAAA,EACF,GAAG,CAAC,YAAY,KAAK,CAAC;AAEtB,QAAM,SAAS,SAAS,CAAC,SAAS;AAChC,QAAI;AAAe;AACnB,YAAQ,IAAI,WAAW,UAAU,MAAM,IAAI;AAC3C,QAAI,UAAU;AACZ,YAAM,YAAY,OAAO,SAAS,aAAa,KAAK,SAAS,OAAO,IAAI;AACxE,iBAAW,SAAS;AAAA,IACtB,OAAO;AACL,eAAS,IAAI;AAAA,IACf;AAAA,EACF,CAAC;AAED,SAAO,CAAC,OAAY,MAAM;AAC5B;AAEA,MAAM,OAAO,MAAM;AAAC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/use-controllable-state",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.126",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"clean:build": "tamagui-build clean:build"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@tamagui/use-event": "^1.0.1-beta.
|
|
22
|
+
"@tamagui/use-event": "^1.0.1-beta.126"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": "*",
|
|
26
26
|
"react-dom": "*"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
29
|
+
"@tamagui/build": "^1.0.1-beta.126",
|
|
30
30
|
"react": "*",
|
|
31
31
|
"react-dom": "*"
|
|
32
32
|
},
|
|
@@ -18,11 +18,11 @@ export function useControllableState<T>({
|
|
|
18
18
|
onChange?: ChangeCb<T>
|
|
19
19
|
strategy?: 'prop-wins' | 'most-recent-wins'
|
|
20
20
|
preventUpdate?: boolean
|
|
21
|
-
}): [T,
|
|
21
|
+
}): [T, React.Dispatch<React.SetStateAction<T>>] {
|
|
22
22
|
const [state, setState] = useState(prop ?? defaultProp)
|
|
23
23
|
const previous = useRef<any>(state)
|
|
24
|
-
const
|
|
25
|
-
const
|
|
24
|
+
const propWins = strategy === 'prop-wins' && prop !== undefined
|
|
25
|
+
const value = propWins ? prop : state
|
|
26
26
|
const onChangeCb = useEvent(onChange || idFn)
|
|
27
27
|
|
|
28
28
|
useEffect(() => {
|
|
@@ -32,20 +32,18 @@ export function useControllableState<T>({
|
|
|
32
32
|
}
|
|
33
33
|
}, [onChangeCb, state])
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
),
|
|
48
|
-
]
|
|
35
|
+
const setter = useEvent((next) => {
|
|
36
|
+
if (preventUpdate) return
|
|
37
|
+
console.log('setting', propWins, prop, next)
|
|
38
|
+
if (propWins) {
|
|
39
|
+
const nextValue = typeof next === 'function' ? next(previous.current) : next
|
|
40
|
+
onChangeCb(nextValue)
|
|
41
|
+
} else {
|
|
42
|
+
setState(next)
|
|
43
|
+
}
|
|
44
|
+
})
|
|
45
|
+
|
|
46
|
+
return [value as T, setter]
|
|
49
47
|
}
|
|
50
48
|
|
|
51
49
|
const idFn = () => {}
|
|
@@ -6,6 +6,6 @@ export declare function useControllableState<T>({ prop, defaultProp, onChange, s
|
|
|
6
6
|
onChange?: ChangeCb<T>;
|
|
7
7
|
strategy?: 'prop-wins' | 'most-recent-wins';
|
|
8
8
|
preventUpdate?: boolean;
|
|
9
|
-
}): [T,
|
|
9
|
+
}): [T, React.Dispatch<React.SetStateAction<T>>];
|
|
10
10
|
export {};
|
|
11
11
|
//# sourceMappingURL=useControllableState.d.ts.map
|
package/types/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useControllableState.d.ts","sourceRoot":"","sources":["../src/useControllableState.ts"],"names":[],"mappings":"AACA,OAAO,KAAmD,MAAM,OAAO,CAAA;AAKvE,aAAK,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAA;AAEhF,wBAAgB,oBAAoB,CAAC,CAAC,EAAE,EACtC,IAAI,EACJ,WAAW,EACX,QAAQ,EACR,QAAsB,EACtB,aAAa,GACd,EAAE;IACD,IAAI,CAAC,EAAE,CAAC,GAAG,SAAS,CAAA;IACpB,WAAW,EAAE,CAAC,CAAA;IACd,QAAQ,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAA;IACtB,QAAQ,CAAC,EAAE,WAAW,GAAG,kBAAkB,CAAA;IAC3C,aAAa,CAAC,EAAE,OAAO,CAAA;CACxB,GAAG,CAAC,CAAC,EAAE,CAAC,IAAI,EAAE,CAAC,KAAK,IAAI,CAAC,CA4BzB"}
|