@tamagui/demos 1.0.1-beta.97 → 1.0.1-beta.98
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/DrawerSimpleDemo.js +52 -0
- package/dist/cjs/DrawerSimpleDemo.js.map +7 -0
- package/dist/cjs/index.js +22 -19
- package/dist/cjs/index.js.map +2 -2
- package/dist/esm/DrawerSimpleDemo.js +26 -0
- package/dist/esm/DrawerSimpleDemo.js.map +7 -0
- package/dist/esm/index.js +21 -19
- package/dist/esm/index.js.map +2 -2
- package/dist/jsx/DrawerSimpleDemo.js +20 -0
- package/dist/jsx/DrawerSimpleDemo.js.map +7 -0
- package/dist/jsx/index.js +21 -19
- package/dist/jsx/index.js.map +2 -2
- package/package.json +16 -5
- package/src/DrawerSimpleDemo.tsx +25 -0
- package/src/index.tsx +23 -22
- package/types/DrawerSimpleDemo.d.ts +3 -0
- package/types/DrawerSimpleDemo.d.ts.map +1 -0
- package/types/index.d.ts +20 -19
- package/types/index.d.ts.map +1 -1
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
|
|
20
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
21
|
+
var DrawerSimpleDemo_exports = {};
|
|
22
|
+
__export(DrawerSimpleDemo_exports, {
|
|
23
|
+
DrawerSimpleDemo: () => DrawerSimpleDemo
|
|
24
|
+
});
|
|
25
|
+
module.exports = __toCommonJS(DrawerSimpleDemo_exports);
|
|
26
|
+
var import_drawer_simple = require("@tamagui/drawer-simple");
|
|
27
|
+
var import_feather_icons = require("@tamagui/feather-icons");
|
|
28
|
+
var import_react = __toESM(require("react"));
|
|
29
|
+
var import_tamagui = require("tamagui");
|
|
30
|
+
const DrawerSimpleDemo = () => {
|
|
31
|
+
const [position, setPosition] = (0, import_react.useState)(0);
|
|
32
|
+
return /* @__PURE__ */ import_react.default.createElement(import_drawer_simple.Drawer, {
|
|
33
|
+
snapPoints: [80, 10],
|
|
34
|
+
position,
|
|
35
|
+
onChangePosition: setPosition
|
|
36
|
+
}, /* @__PURE__ */ import_react.default.createElement(import_drawer_simple.Drawer.Backdrop, null), /* @__PURE__ */ import_react.default.createElement(import_drawer_simple.Drawer.Frame, {
|
|
37
|
+
ai: "center",
|
|
38
|
+
jc: "center"
|
|
39
|
+
}, /* @__PURE__ */ import_react.default.createElement(import_drawer_simple.Drawer.Handle, null), /* @__PURE__ */ import_react.default.createElement(import_tamagui.Button, {
|
|
40
|
+
size: "$6",
|
|
41
|
+
circular: true,
|
|
42
|
+
icon: import_feather_icons.ChevronDown,
|
|
43
|
+
onPress: () => {
|
|
44
|
+
setPosition(1);
|
|
45
|
+
}
|
|
46
|
+
})));
|
|
47
|
+
};
|
|
48
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
49
|
+
0 && (module.exports = {
|
|
50
|
+
DrawerSimpleDemo
|
|
51
|
+
});
|
|
52
|
+
//# sourceMappingURL=DrawerSimpleDemo.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/DrawerSimpleDemo.tsx"],
|
|
4
|
+
"sourcesContent": ["import { Drawer } from '@tamagui/drawer-simple'\nimport { ChevronDown } from '@tamagui/feather-icons'\nimport React, { useState } from 'react'\nimport { Button, H1 } from 'tamagui'\n\nexport const DrawerSimpleDemo = () => {\n const [position, setPosition] = useState(0)\n\n return (\n <Drawer snapPoints={[80, 10]} position={position} onChangePosition={setPosition}>\n <Drawer.Backdrop />\n <Drawer.Frame ai=\"center\" jc=\"center\">\n <Drawer.Handle />\n <Button\n size=\"$6\"\n circular\n icon={ChevronDown}\n onPress={() => {\n setPosition(1)\n }}\n />\n </Drawer.Frame>\n </Drawer>\n )\n}\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,2BAAuB;AACvB,2BAA4B;AAC5B,mBAAgC;AAChC,qBAA2B;AAEpB,MAAM,mBAAmB,MAAM;AACpC,QAAM,CAAC,UAAU,eAAe,2BAAS,CAAC;AAE1C,SACE,mDAAC;AAAA,IAAO,YAAY,CAAC,IAAI,EAAE;AAAA,IAAG;AAAA,IAAoB,kBAAkB;AAAA,KAClE,mDAAC,4BAAO,UAAP,IAAgB,GACjB,mDAAC,4BAAO,OAAP;AAAA,IAAa,IAAG;AAAA,IAAS,IAAG;AAAA,KAC3B,mDAAC,4BAAO,QAAP,IAAc,GACf,mDAAC;AAAA,IACC,MAAK;AAAA,IACL,UAAQ;AAAA,IACR,MAAM;AAAA,IACN,SAAS,MAAM;AACb,kBAAY,CAAC;AAAA,IACf;AAAA,GACF,CACF,CACF;AAEJ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/dist/cjs/index.js
CHANGED
|
@@ -26,6 +26,7 @@ __export(src_exports, {
|
|
|
26
26
|
ButtonDemo: () => import_ButtonDemo.ButtonDemo,
|
|
27
27
|
CardDemo: () => import_CardDemo.CardDemo,
|
|
28
28
|
DialogDemo: () => import_DialogDemo.DialogDemo,
|
|
29
|
+
DrawerSimpleDemo: () => import_DrawerSimpleDemo.DrawerSimpleDemo,
|
|
29
30
|
FeatherIconsDemo: () => import_FeatherIconsDemo.FeatherIconsDemo,
|
|
30
31
|
FormsDemo: () => import_FormsDemo.FormsDemo,
|
|
31
32
|
GroupDemo: () => import_GroupDemo.GroupDemo,
|
|
@@ -48,34 +49,35 @@ __export(src_exports, {
|
|
|
48
49
|
TooltipDemo: () => import_TooltipDemo.TooltipDemo
|
|
49
50
|
});
|
|
50
51
|
module.exports = __toCommonJS(src_exports);
|
|
51
|
-
var
|
|
52
|
-
var
|
|
53
|
-
var
|
|
52
|
+
var import_AnimationsDemo = require("./AnimationsDemo");
|
|
53
|
+
var import_AnimationsEnterDemo = require("./AnimationsEnterDemo");
|
|
54
|
+
var import_AnimationsHoverDemo = require("./AnimationsHoverDemo");
|
|
55
|
+
var import_AnimationsPresenceDemo = require("./AnimationsPresenceDemo");
|
|
56
|
+
var import_AvatarDemo = require("./AvatarDemo");
|
|
54
57
|
var import_ButtonDemo = require("./ButtonDemo");
|
|
55
|
-
var
|
|
58
|
+
var import_CardDemo = require("./CardDemo");
|
|
59
|
+
var import_DialogDemo = require("./DialogDemo");
|
|
60
|
+
var import_DrawerSimpleDemo = require("./DrawerSimpleDemo");
|
|
61
|
+
var import_FeatherIconsDemo = require("./FeatherIconsDemo");
|
|
56
62
|
var import_FormsDemo = require("./FormsDemo");
|
|
57
|
-
var
|
|
63
|
+
var import_GroupDemo = require("./GroupDemo");
|
|
58
64
|
var import_HeadingsDemo = require("./HeadingsDemo");
|
|
59
|
-
var import_SelectDemo = require("./SelectDemo");
|
|
60
|
-
var import_SeparatorDemo = require("./SeparatorDemo");
|
|
61
65
|
var import_ImageDemo = require("./ImageDemo");
|
|
62
|
-
var import_AnimationsDemo = require("./AnimationsDemo");
|
|
63
66
|
var import_LabelDemo = require("./LabelDemo");
|
|
64
|
-
var
|
|
65
|
-
var import_CardDemo = require("./CardDemo");
|
|
66
|
-
var import_AvatarDemo = require("./AvatarDemo");
|
|
67
|
-
var import_ProgressDemo = require("./ProgressDemo");
|
|
67
|
+
var import_LinearGradientDemo = require("./LinearGradientDemo");
|
|
68
68
|
var import_ListItemDemo = require("./ListItemDemo");
|
|
69
|
-
var import_TooltipDemo = require("./TooltipDemo");
|
|
70
69
|
var import_PopoverDemo = require("./PopoverDemo");
|
|
71
|
-
var
|
|
72
|
-
var
|
|
73
|
-
var
|
|
74
|
-
var
|
|
75
|
-
var import_SwitchDemo = require("./SwitchDemo");
|
|
70
|
+
var import_ProgressDemo = require("./ProgressDemo");
|
|
71
|
+
var import_SelectDemo = require("./SelectDemo");
|
|
72
|
+
var import_SeparatorDemo = require("./SeparatorDemo");
|
|
73
|
+
var import_ShapesDemo = require("./ShapesDemo");
|
|
76
74
|
var import_SliderDemo = require("./SliderDemo");
|
|
77
75
|
var import_SpinnerDemo = require("./SpinnerDemo");
|
|
78
|
-
var
|
|
76
|
+
var import_StacksDemo = require("./StacksDemo");
|
|
77
|
+
var import_SwitchDemo = require("./SwitchDemo");
|
|
78
|
+
var import_TextDemo = require("./TextDemo");
|
|
79
|
+
var import_ThemeInverseDemo = require("./ThemeInverseDemo");
|
|
80
|
+
var import_TooltipDemo = require("./TooltipDemo");
|
|
79
81
|
__reExport(src_exports, require("./useOnIntersecting"), module.exports);
|
|
80
82
|
__reExport(src_exports, require("./TamaguiLogo"), module.exports);
|
|
81
83
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -88,6 +90,7 @@ __reExport(src_exports, require("./TamaguiLogo"), module.exports);
|
|
|
88
90
|
ButtonDemo,
|
|
89
91
|
CardDemo,
|
|
90
92
|
DialogDemo,
|
|
93
|
+
DrawerSimpleDemo,
|
|
91
94
|
FeatherIconsDemo,
|
|
92
95
|
FormsDemo,
|
|
93
96
|
GroupDemo,
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.tsx"],
|
|
4
|
-
"sourcesContent": ["export {
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wBAA2B;AAC3B,wBAA2B;AAC3B,sBAAyB;AACzB,wBAA2B;AAC3B,8BAAiC;AACjC,uBAA0B;AAC1B,
|
|
4
|
+
"sourcesContent": ["// export { DrawerDemo } from './DrawerDemo'\n// export { MenuDemo } from './MenuDemo'\n// gorhom bottom-sheet giving kitchen-sink problems\nexport { AnimationsDemo } from './AnimationsDemo'\nexport { AnimationsEnterDemo } from './AnimationsEnterDemo'\nexport { AnimationsHoverDemo } from './AnimationsHoverDemo'\nexport { AnimationsPresenceDemo } from './AnimationsPresenceDemo'\nexport { AvatarDemo } from './AvatarDemo'\nexport { ButtonDemo } from './ButtonDemo'\nexport { CardDemo } from './CardDemo'\nexport { DialogDemo } from './DialogDemo'\nexport { DrawerSimpleDemo } from './DrawerSimpleDemo'\nexport { FeatherIconsDemo } from './FeatherIconsDemo'\nexport { FormsDemo } from './FormsDemo'\nexport { GroupDemo } from './GroupDemo'\nexport { HeadingsDemo } from './HeadingsDemo'\nexport { ImageDemo } from './ImageDemo'\nexport { LabelDemo } from './LabelDemo'\nexport { LinearGradientDemo } from './LinearGradientDemo'\nexport { ListItemDemo } from './ListItemDemo'\nexport { PopoverDemo } from './PopoverDemo'\nexport { ProgressDemo } from './ProgressDemo'\nexport { SelectDemo } from './SelectDemo'\nexport { SeparatorDemo } from './SeparatorDemo'\nexport { ShapesDemo } from './ShapesDemo'\nexport { SliderDemo } from './SliderDemo'\nexport { SpinnerDemo } from './SpinnerDemo'\nexport { StacksDemo } from './StacksDemo'\nexport { SwitchDemo } from './SwitchDemo'\nexport { TextDemo } from './TextDemo'\nexport { ThemeInverseDemo } from './ThemeInverseDemo'\nexport { TooltipDemo } from './TooltipDemo'\nexport * from './useOnIntersecting'\nexport * from './TamaguiLogo'\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,4BAA+B;AAC/B,iCAAoC;AACpC,iCAAoC;AACpC,oCAAuC;AACvC,wBAA2B;AAC3B,wBAA2B;AAC3B,sBAAyB;AACzB,wBAA2B;AAC3B,8BAAiC;AACjC,8BAAiC;AACjC,uBAA0B;AAC1B,uBAA0B;AAC1B,0BAA6B;AAC7B,uBAA0B;AAC1B,uBAA0B;AAC1B,gCAAmC;AACnC,0BAA6B;AAC7B,yBAA4B;AAC5B,0BAA6B;AAC7B,wBAA2B;AAC3B,2BAA8B;AAC9B,wBAA2B;AAC3B,wBAA2B;AAC3B,yBAA4B;AAC5B,wBAA2B;AAC3B,wBAA2B;AAC3B,sBAAyB;AACzB,8BAAiC;AACjC,yBAA4B;AAC5B,wBAAc,gCAhCd;AAiCA,wBAAc,0BAjCd;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Drawer } from "@tamagui/drawer-simple";
|
|
2
|
+
import { ChevronDown } from "@tamagui/feather-icons";
|
|
3
|
+
import React, { useState } from "react";
|
|
4
|
+
import { Button } from "tamagui";
|
|
5
|
+
const DrawerSimpleDemo = () => {
|
|
6
|
+
const [position, setPosition] = useState(0);
|
|
7
|
+
return /* @__PURE__ */ React.createElement(Drawer, {
|
|
8
|
+
snapPoints: [80, 10],
|
|
9
|
+
position,
|
|
10
|
+
onChangePosition: setPosition
|
|
11
|
+
}, /* @__PURE__ */ React.createElement(Drawer.Backdrop, null), /* @__PURE__ */ React.createElement(Drawer.Frame, {
|
|
12
|
+
ai: "center",
|
|
13
|
+
jc: "center"
|
|
14
|
+
}, /* @__PURE__ */ React.createElement(Drawer.Handle, null), /* @__PURE__ */ React.createElement(Button, {
|
|
15
|
+
size: "$6",
|
|
16
|
+
circular: true,
|
|
17
|
+
icon: ChevronDown,
|
|
18
|
+
onPress: () => {
|
|
19
|
+
setPosition(1);
|
|
20
|
+
}
|
|
21
|
+
})));
|
|
22
|
+
};
|
|
23
|
+
export {
|
|
24
|
+
DrawerSimpleDemo
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=DrawerSimpleDemo.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/DrawerSimpleDemo.tsx"],
|
|
4
|
+
"sourcesContent": ["import { Drawer } from '@tamagui/drawer-simple'\nimport { ChevronDown } from '@tamagui/feather-icons'\nimport React, { useState } from 'react'\nimport { Button, H1 } from 'tamagui'\n\nexport const DrawerSimpleDemo = () => {\n const [position, setPosition] = useState(0)\n\n return (\n <Drawer snapPoints={[80, 10]} position={position} onChangePosition={setPosition}>\n <Drawer.Backdrop />\n <Drawer.Frame ai=\"center\" jc=\"center\">\n <Drawer.Handle />\n <Button\n size=\"$6\"\n circular\n icon={ChevronDown}\n onPress={() => {\n setPosition(1)\n }}\n />\n </Drawer.Frame>\n </Drawer>\n )\n}\n"],
|
|
5
|
+
"mappings": "AAAA;AACA;AACA;AACA;AAEO,MAAM,mBAAmB,MAAM;AACpC,QAAM,CAAC,UAAU,eAAe,SAAS,CAAC;AAE1C,SACE,oCAAC;AAAA,IAAO,YAAY,CAAC,IAAI,EAAE;AAAA,IAAG;AAAA,IAAoB,kBAAkB;AAAA,KAClE,oCAAC,OAAO,UAAP,IAAgB,GACjB,oCAAC,OAAO,OAAP;AAAA,IAAa,IAAG;AAAA,IAAS,IAAG;AAAA,KAC3B,oCAAC,OAAO,QAAP,IAAc,GACf,oCAAC;AAAA,IACC,MAAK;AAAA,IACL,UAAQ;AAAA,IACR,MAAM;AAAA,IACN,SAAS,MAAM;AACb,kBAAY,CAAC;AAAA,IACf;AAAA,GACF,CACF,CACF;AAEJ;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,31 +1,32 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { AnimationsDemo } from "./AnimationsDemo";
|
|
2
|
+
import { AnimationsEnterDemo } from "./AnimationsEnterDemo";
|
|
3
|
+
import { AnimationsHoverDemo } from "./AnimationsHoverDemo";
|
|
4
|
+
import { AnimationsPresenceDemo } from "./AnimationsPresenceDemo";
|
|
5
|
+
import { AvatarDemo } from "./AvatarDemo";
|
|
4
6
|
import { ButtonDemo } from "./ButtonDemo";
|
|
5
|
-
import {
|
|
7
|
+
import { CardDemo } from "./CardDemo";
|
|
8
|
+
import { DialogDemo } from "./DialogDemo";
|
|
9
|
+
import { DrawerSimpleDemo } from "./DrawerSimpleDemo";
|
|
10
|
+
import { FeatherIconsDemo } from "./FeatherIconsDemo";
|
|
6
11
|
import { FormsDemo } from "./FormsDemo";
|
|
7
|
-
import {
|
|
12
|
+
import { GroupDemo } from "./GroupDemo";
|
|
8
13
|
import { HeadingsDemo } from "./HeadingsDemo";
|
|
9
|
-
import { SelectDemo } from "./SelectDemo";
|
|
10
|
-
import { SeparatorDemo } from "./SeparatorDemo";
|
|
11
14
|
import { ImageDemo } from "./ImageDemo";
|
|
12
|
-
import { AnimationsDemo } from "./AnimationsDemo";
|
|
13
15
|
import { LabelDemo } from "./LabelDemo";
|
|
14
|
-
import {
|
|
15
|
-
import { CardDemo } from "./CardDemo";
|
|
16
|
-
import { AvatarDemo } from "./AvatarDemo";
|
|
17
|
-
import { ProgressDemo } from "./ProgressDemo";
|
|
16
|
+
import { LinearGradientDemo } from "./LinearGradientDemo";
|
|
18
17
|
import { ListItemDemo } from "./ListItemDemo";
|
|
19
|
-
import { TooltipDemo } from "./TooltipDemo";
|
|
20
18
|
import { PopoverDemo } from "./PopoverDemo";
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import { SwitchDemo } from "./SwitchDemo";
|
|
19
|
+
import { ProgressDemo } from "./ProgressDemo";
|
|
20
|
+
import { SelectDemo } from "./SelectDemo";
|
|
21
|
+
import { SeparatorDemo } from "./SeparatorDemo";
|
|
22
|
+
import { ShapesDemo } from "./ShapesDemo";
|
|
26
23
|
import { SliderDemo } from "./SliderDemo";
|
|
27
24
|
import { SpinnerDemo } from "./SpinnerDemo";
|
|
28
|
-
import {
|
|
25
|
+
import { StacksDemo } from "./StacksDemo";
|
|
26
|
+
import { SwitchDemo } from "./SwitchDemo";
|
|
27
|
+
import { TextDemo } from "./TextDemo";
|
|
28
|
+
import { ThemeInverseDemo } from "./ThemeInverseDemo";
|
|
29
|
+
import { TooltipDemo } from "./TooltipDemo";
|
|
29
30
|
export * from "./useOnIntersecting";
|
|
30
31
|
export * from "./TamaguiLogo";
|
|
31
32
|
export {
|
|
@@ -37,6 +38,7 @@ export {
|
|
|
37
38
|
ButtonDemo,
|
|
38
39
|
CardDemo,
|
|
39
40
|
DialogDemo,
|
|
41
|
+
DrawerSimpleDemo,
|
|
40
42
|
FeatherIconsDemo,
|
|
41
43
|
FormsDemo,
|
|
42
44
|
GroupDemo,
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.tsx"],
|
|
4
|
-
"sourcesContent": ["export {
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["// export { DrawerDemo } from './DrawerDemo'\n// export { MenuDemo } from './MenuDemo'\n// gorhom bottom-sheet giving kitchen-sink problems\nexport { AnimationsDemo } from './AnimationsDemo'\nexport { AnimationsEnterDemo } from './AnimationsEnterDemo'\nexport { AnimationsHoverDemo } from './AnimationsHoverDemo'\nexport { AnimationsPresenceDemo } from './AnimationsPresenceDemo'\nexport { AvatarDemo } from './AvatarDemo'\nexport { ButtonDemo } from './ButtonDemo'\nexport { CardDemo } from './CardDemo'\nexport { DialogDemo } from './DialogDemo'\nexport { DrawerSimpleDemo } from './DrawerSimpleDemo'\nexport { FeatherIconsDemo } from './FeatherIconsDemo'\nexport { FormsDemo } from './FormsDemo'\nexport { GroupDemo } from './GroupDemo'\nexport { HeadingsDemo } from './HeadingsDemo'\nexport { ImageDemo } from './ImageDemo'\nexport { LabelDemo } from './LabelDemo'\nexport { LinearGradientDemo } from './LinearGradientDemo'\nexport { ListItemDemo } from './ListItemDemo'\nexport { PopoverDemo } from './PopoverDemo'\nexport { ProgressDemo } from './ProgressDemo'\nexport { SelectDemo } from './SelectDemo'\nexport { SeparatorDemo } from './SeparatorDemo'\nexport { ShapesDemo } from './ShapesDemo'\nexport { SliderDemo } from './SliderDemo'\nexport { SpinnerDemo } from './SpinnerDemo'\nexport { StacksDemo } from './StacksDemo'\nexport { SwitchDemo } from './SwitchDemo'\nexport { TextDemo } from './TextDemo'\nexport { ThemeInverseDemo } from './ThemeInverseDemo'\nexport { TooltipDemo } from './TooltipDemo'\nexport * from './useOnIntersecting'\nexport * from './TamaguiLogo'\n"],
|
|
5
|
+
"mappings": "AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Drawer } from "@tamagui/drawer-simple";
|
|
2
|
+
import { ChevronDown } from "@tamagui/feather-icons";
|
|
3
|
+
import { useState } from "react";
|
|
4
|
+
import { Button } from "tamagui";
|
|
5
|
+
const DrawerSimpleDemo = () => {
|
|
6
|
+
const [position, setPosition] = useState(0);
|
|
7
|
+
return <Drawer snapPoints={[80, 10]} position={position} onChangePosition={setPosition}>
|
|
8
|
+
<Drawer.Backdrop />
|
|
9
|
+
<Drawer.Frame ai="center" jc="center">
|
|
10
|
+
<Drawer.Handle />
|
|
11
|
+
<Button size="$6" circular icon={ChevronDown} onPress={() => {
|
|
12
|
+
setPosition(1);
|
|
13
|
+
}} />
|
|
14
|
+
</Drawer.Frame>
|
|
15
|
+
</Drawer>;
|
|
16
|
+
};
|
|
17
|
+
export {
|
|
18
|
+
DrawerSimpleDemo
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=DrawerSimpleDemo.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/DrawerSimpleDemo.tsx"],
|
|
4
|
+
"sourcesContent": ["import { Drawer } from '@tamagui/drawer-simple'\nimport { ChevronDown } from '@tamagui/feather-icons'\nimport React, { useState } from 'react'\nimport { Button, H1 } from 'tamagui'\n\nexport const DrawerSimpleDemo = () => {\n const [position, setPosition] = useState(0)\n\n return (\n <Drawer snapPoints={[80, 10]} position={position} onChangePosition={setPosition}>\n <Drawer.Backdrop />\n <Drawer.Frame ai=\"center\" jc=\"center\">\n <Drawer.Handle />\n <Button\n size=\"$6\"\n circular\n icon={ChevronDown}\n onPress={() => {\n setPosition(1)\n }}\n />\n </Drawer.Frame>\n </Drawer>\n )\n}\n"],
|
|
5
|
+
"mappings": "AAAA;AACA;AACA;AACA;AAEO,MAAM,mBAAmB,MAAM;AACpC,QAAM,CAAC,UAAU,eAAe,SAAS,CAAC;AAE1C,SACE,CAAC,OAAO,YAAY,CAAC,IAAI,EAAE,GAAG,UAAU,UAAU,kBAAkB;AAAA,IAClE,CAAC,OAAO,SAAS;AAAA,IACjB,CAAC,OAAO,MAAM,GAAG,SAAS,GAAG;AAAA,MAC3B,CAAC,OAAO,OAAO;AAAA,MACf,CAAC,OACC,KAAK,KACL,SACA,MAAM,aACN,SAAS,MAAM;AACb,oBAAY,CAAC;AAAA,MACf,GACF;AAAA,IACF,EAVC,OAAO;AAAA,EAWV,EAbC;AAeL;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/dist/jsx/index.js
CHANGED
|
@@ -1,31 +1,32 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { AnimationsDemo } from "./AnimationsDemo";
|
|
2
|
+
import { AnimationsEnterDemo } from "./AnimationsEnterDemo";
|
|
3
|
+
import { AnimationsHoverDemo } from "./AnimationsHoverDemo";
|
|
4
|
+
import { AnimationsPresenceDemo } from "./AnimationsPresenceDemo";
|
|
5
|
+
import { AvatarDemo } from "./AvatarDemo";
|
|
4
6
|
import { ButtonDemo } from "./ButtonDemo";
|
|
5
|
-
import {
|
|
7
|
+
import { CardDemo } from "./CardDemo";
|
|
8
|
+
import { DialogDemo } from "./DialogDemo";
|
|
9
|
+
import { DrawerSimpleDemo } from "./DrawerSimpleDemo";
|
|
10
|
+
import { FeatherIconsDemo } from "./FeatherIconsDemo";
|
|
6
11
|
import { FormsDemo } from "./FormsDemo";
|
|
7
|
-
import {
|
|
12
|
+
import { GroupDemo } from "./GroupDemo";
|
|
8
13
|
import { HeadingsDemo } from "./HeadingsDemo";
|
|
9
|
-
import { SelectDemo } from "./SelectDemo";
|
|
10
|
-
import { SeparatorDemo } from "./SeparatorDemo";
|
|
11
14
|
import { ImageDemo } from "./ImageDemo";
|
|
12
|
-
import { AnimationsDemo } from "./AnimationsDemo";
|
|
13
15
|
import { LabelDemo } from "./LabelDemo";
|
|
14
|
-
import {
|
|
15
|
-
import { CardDemo } from "./CardDemo";
|
|
16
|
-
import { AvatarDemo } from "./AvatarDemo";
|
|
17
|
-
import { ProgressDemo } from "./ProgressDemo";
|
|
16
|
+
import { LinearGradientDemo } from "./LinearGradientDemo";
|
|
18
17
|
import { ListItemDemo } from "./ListItemDemo";
|
|
19
|
-
import { TooltipDemo } from "./TooltipDemo";
|
|
20
18
|
import { PopoverDemo } from "./PopoverDemo";
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import { SwitchDemo } from "./SwitchDemo";
|
|
19
|
+
import { ProgressDemo } from "./ProgressDemo";
|
|
20
|
+
import { SelectDemo } from "./SelectDemo";
|
|
21
|
+
import { SeparatorDemo } from "./SeparatorDemo";
|
|
22
|
+
import { ShapesDemo } from "./ShapesDemo";
|
|
26
23
|
import { SliderDemo } from "./SliderDemo";
|
|
27
24
|
import { SpinnerDemo } from "./SpinnerDemo";
|
|
28
|
-
import {
|
|
25
|
+
import { StacksDemo } from "./StacksDemo";
|
|
26
|
+
import { SwitchDemo } from "./SwitchDemo";
|
|
27
|
+
import { TextDemo } from "./TextDemo";
|
|
28
|
+
import { ThemeInverseDemo } from "./ThemeInverseDemo";
|
|
29
|
+
import { TooltipDemo } from "./TooltipDemo";
|
|
29
30
|
export * from "./useOnIntersecting";
|
|
30
31
|
export * from "./TamaguiLogo";
|
|
31
32
|
export {
|
|
@@ -37,6 +38,7 @@ export {
|
|
|
37
38
|
ButtonDemo,
|
|
38
39
|
CardDemo,
|
|
39
40
|
DialogDemo,
|
|
41
|
+
DrawerSimpleDemo,
|
|
40
42
|
FeatherIconsDemo,
|
|
41
43
|
FormsDemo,
|
|
42
44
|
GroupDemo,
|
package/dist/jsx/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.tsx"],
|
|
4
|
-
"sourcesContent": ["export {
|
|
5
|
-
"mappings": "
|
|
4
|
+
"sourcesContent": ["// export { DrawerDemo } from './DrawerDemo'\n// export { MenuDemo } from './MenuDemo'\n// gorhom bottom-sheet giving kitchen-sink problems\nexport { AnimationsDemo } from './AnimationsDemo'\nexport { AnimationsEnterDemo } from './AnimationsEnterDemo'\nexport { AnimationsHoverDemo } from './AnimationsHoverDemo'\nexport { AnimationsPresenceDemo } from './AnimationsPresenceDemo'\nexport { AvatarDemo } from './AvatarDemo'\nexport { ButtonDemo } from './ButtonDemo'\nexport { CardDemo } from './CardDemo'\nexport { DialogDemo } from './DialogDemo'\nexport { DrawerSimpleDemo } from './DrawerSimpleDemo'\nexport { FeatherIconsDemo } from './FeatherIconsDemo'\nexport { FormsDemo } from './FormsDemo'\nexport { GroupDemo } from './GroupDemo'\nexport { HeadingsDemo } from './HeadingsDemo'\nexport { ImageDemo } from './ImageDemo'\nexport { LabelDemo } from './LabelDemo'\nexport { LinearGradientDemo } from './LinearGradientDemo'\nexport { ListItemDemo } from './ListItemDemo'\nexport { PopoverDemo } from './PopoverDemo'\nexport { ProgressDemo } from './ProgressDemo'\nexport { SelectDemo } from './SelectDemo'\nexport { SeparatorDemo } from './SeparatorDemo'\nexport { ShapesDemo } from './ShapesDemo'\nexport { SliderDemo } from './SliderDemo'\nexport { SpinnerDemo } from './SpinnerDemo'\nexport { StacksDemo } from './StacksDemo'\nexport { SwitchDemo } from './SwitchDemo'\nexport { TextDemo } from './TextDemo'\nexport { ThemeInverseDemo } from './ThemeInverseDemo'\nexport { TooltipDemo } from './TooltipDemo'\nexport * from './useOnIntersecting'\nexport * from './TamaguiLogo'\n"],
|
|
5
|
+
"mappings": "AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/demos",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.98",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -17,16 +17,27 @@
|
|
|
17
17
|
"watch": "tamagui-build --watch"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@tamagui/
|
|
21
|
-
"@tamagui/
|
|
22
|
-
"tamagui": "^1.0.1-beta.
|
|
20
|
+
"@tamagui/avatar": "^1.0.1-beta.98",
|
|
21
|
+
"@tamagui/button": "^1.0.1-beta.98",
|
|
22
|
+
"@tamagui/config-base": "^1.0.1-beta.98",
|
|
23
|
+
"@tamagui/core": "^1.0.1-beta.98",
|
|
24
|
+
"@tamagui/drawer": "^1.0.1-beta.98",
|
|
25
|
+
"@tamagui/drawer-simple": "^1.0.1-beta.98",
|
|
26
|
+
"@tamagui/list-item": "^1.0.1-beta.98",
|
|
27
|
+
"@tamagui/menu": "^1.0.1-beta.98",
|
|
28
|
+
"@tamagui/popover": "^1.0.1-beta.98",
|
|
29
|
+
"@tamagui/progress": "^1.0.1-beta.98",
|
|
30
|
+
"@tamagui/select": "^1.0.1-beta.98",
|
|
31
|
+
"@tamagui/slider": "^1.0.1-beta.98",
|
|
32
|
+
"@tamagui/stacks": "^1.0.1-beta.98",
|
|
33
|
+
"tamagui": "^1.0.1-beta.98"
|
|
23
34
|
},
|
|
24
35
|
"peerDependencies": {
|
|
25
36
|
"react": "*",
|
|
26
37
|
"react-dom": "*"
|
|
27
38
|
},
|
|
28
39
|
"devDependencies": {
|
|
29
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
40
|
+
"@tamagui/build": "^1.0.1-beta.98",
|
|
30
41
|
"react": "*",
|
|
31
42
|
"react-dom": "*"
|
|
32
43
|
},
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Drawer } from '@tamagui/drawer-simple'
|
|
2
|
+
import { ChevronDown } from '@tamagui/feather-icons'
|
|
3
|
+
import React, { useState } from 'react'
|
|
4
|
+
import { Button, H1 } from 'tamagui'
|
|
5
|
+
|
|
6
|
+
export const DrawerSimpleDemo = () => {
|
|
7
|
+
const [position, setPosition] = useState(0)
|
|
8
|
+
|
|
9
|
+
return (
|
|
10
|
+
<Drawer snapPoints={[80, 10]} position={position} onChangePosition={setPosition}>
|
|
11
|
+
<Drawer.Backdrop />
|
|
12
|
+
<Drawer.Frame ai="center" jc="center">
|
|
13
|
+
<Drawer.Handle />
|
|
14
|
+
<Button
|
|
15
|
+
size="$6"
|
|
16
|
+
circular
|
|
17
|
+
icon={ChevronDown}
|
|
18
|
+
onPress={() => {
|
|
19
|
+
setPosition(1)
|
|
20
|
+
}}
|
|
21
|
+
/>
|
|
22
|
+
</Drawer.Frame>
|
|
23
|
+
</Drawer>
|
|
24
|
+
)
|
|
25
|
+
}
|
package/src/index.tsx
CHANGED
|
@@ -1,33 +1,34 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
|
|
1
|
+
// export { DrawerDemo } from './DrawerDemo'
|
|
2
|
+
// export { MenuDemo } from './MenuDemo'
|
|
3
|
+
// gorhom bottom-sheet giving kitchen-sink problems
|
|
4
|
+
export { AnimationsDemo } from './AnimationsDemo'
|
|
5
|
+
export { AnimationsEnterDemo } from './AnimationsEnterDemo'
|
|
6
|
+
export { AnimationsHoverDemo } from './AnimationsHoverDemo'
|
|
7
|
+
export { AnimationsPresenceDemo } from './AnimationsPresenceDemo'
|
|
8
|
+
export { AvatarDemo } from './AvatarDemo'
|
|
4
9
|
export { ButtonDemo } from './ButtonDemo'
|
|
5
|
-
export {
|
|
10
|
+
export { CardDemo } from './CardDemo'
|
|
11
|
+
export { DialogDemo } from './DialogDemo'
|
|
12
|
+
export { DrawerSimpleDemo } from './DrawerSimpleDemo'
|
|
13
|
+
export { FeatherIconsDemo } from './FeatherIconsDemo'
|
|
6
14
|
export { FormsDemo } from './FormsDemo'
|
|
7
|
-
export {
|
|
15
|
+
export { GroupDemo } from './GroupDemo'
|
|
8
16
|
export { HeadingsDemo } from './HeadingsDemo'
|
|
9
|
-
export { SelectDemo } from './SelectDemo'
|
|
10
|
-
export { SeparatorDemo } from './SeparatorDemo'
|
|
11
17
|
export { ImageDemo } from './ImageDemo'
|
|
12
|
-
export { AnimationsDemo } from './AnimationsDemo'
|
|
13
18
|
export { LabelDemo } from './LabelDemo'
|
|
14
|
-
export {
|
|
15
|
-
export { CardDemo } from './CardDemo'
|
|
16
|
-
export { AvatarDemo } from './AvatarDemo'
|
|
17
|
-
export { ProgressDemo } from './ProgressDemo'
|
|
19
|
+
export { LinearGradientDemo } from './LinearGradientDemo'
|
|
18
20
|
export { ListItemDemo } from './ListItemDemo'
|
|
19
|
-
export { TooltipDemo } from './TooltipDemo'
|
|
20
|
-
// gorhom bottom-sheet giving kitchen-sink problems
|
|
21
|
-
// export { DrawerDemo } from './DrawerDemo'
|
|
22
|
-
// export { MenuDemo } from './MenuDemo'
|
|
23
21
|
export { PopoverDemo } from './PopoverDemo'
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
26
|
-
export {
|
|
27
|
-
export {
|
|
28
|
-
export { SwitchDemo } from './SwitchDemo'
|
|
22
|
+
export { ProgressDemo } from './ProgressDemo'
|
|
23
|
+
export { SelectDemo } from './SelectDemo'
|
|
24
|
+
export { SeparatorDemo } from './SeparatorDemo'
|
|
25
|
+
export { ShapesDemo } from './ShapesDemo'
|
|
29
26
|
export { SliderDemo } from './SliderDemo'
|
|
30
27
|
export { SpinnerDemo } from './SpinnerDemo'
|
|
31
|
-
export {
|
|
28
|
+
export { StacksDemo } from './StacksDemo'
|
|
29
|
+
export { SwitchDemo } from './SwitchDemo'
|
|
30
|
+
export { TextDemo } from './TextDemo'
|
|
31
|
+
export { ThemeInverseDemo } from './ThemeInverseDemo'
|
|
32
|
+
export { TooltipDemo } from './TooltipDemo'
|
|
32
33
|
export * from './useOnIntersecting'
|
|
33
34
|
export * from './TamaguiLogo'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DrawerSimpleDemo.d.ts","sourceRoot":"","sources":["../src/DrawerSimpleDemo.tsx"],"names":[],"mappings":";AAKA,eAAO,MAAM,gBAAgB,mBAmB5B,CAAA"}
|
package/types/index.d.ts
CHANGED
|
@@ -1,31 +1,32 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
1
|
+
export { AnimationsDemo } from './AnimationsDemo';
|
|
2
|
+
export { AnimationsEnterDemo } from './AnimationsEnterDemo';
|
|
3
|
+
export { AnimationsHoverDemo } from './AnimationsHoverDemo';
|
|
4
|
+
export { AnimationsPresenceDemo } from './AnimationsPresenceDemo';
|
|
5
|
+
export { AvatarDemo } from './AvatarDemo';
|
|
4
6
|
export { ButtonDemo } from './ButtonDemo';
|
|
5
|
-
export {
|
|
7
|
+
export { CardDemo } from './CardDemo';
|
|
8
|
+
export { DialogDemo } from './DialogDemo';
|
|
9
|
+
export { DrawerSimpleDemo } from './DrawerSimpleDemo';
|
|
10
|
+
export { FeatherIconsDemo } from './FeatherIconsDemo';
|
|
6
11
|
export { FormsDemo } from './FormsDemo';
|
|
7
|
-
export {
|
|
12
|
+
export { GroupDemo } from './GroupDemo';
|
|
8
13
|
export { HeadingsDemo } from './HeadingsDemo';
|
|
9
|
-
export { SelectDemo } from './SelectDemo';
|
|
10
|
-
export { SeparatorDemo } from './SeparatorDemo';
|
|
11
14
|
export { ImageDemo } from './ImageDemo';
|
|
12
|
-
export { AnimationsDemo } from './AnimationsDemo';
|
|
13
15
|
export { LabelDemo } from './LabelDemo';
|
|
14
|
-
export {
|
|
15
|
-
export { CardDemo } from './CardDemo';
|
|
16
|
-
export { AvatarDemo } from './AvatarDemo';
|
|
17
|
-
export { ProgressDemo } from './ProgressDemo';
|
|
16
|
+
export { LinearGradientDemo } from './LinearGradientDemo';
|
|
18
17
|
export { ListItemDemo } from './ListItemDemo';
|
|
19
|
-
export { TooltipDemo } from './TooltipDemo';
|
|
20
18
|
export { PopoverDemo } from './PopoverDemo';
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export { SwitchDemo } from './SwitchDemo';
|
|
19
|
+
export { ProgressDemo } from './ProgressDemo';
|
|
20
|
+
export { SelectDemo } from './SelectDemo';
|
|
21
|
+
export { SeparatorDemo } from './SeparatorDemo';
|
|
22
|
+
export { ShapesDemo } from './ShapesDemo';
|
|
26
23
|
export { SliderDemo } from './SliderDemo';
|
|
27
24
|
export { SpinnerDemo } from './SpinnerDemo';
|
|
28
|
-
export {
|
|
25
|
+
export { StacksDemo } from './StacksDemo';
|
|
26
|
+
export { SwitchDemo } from './SwitchDemo';
|
|
27
|
+
export { TextDemo } from './TextDemo';
|
|
28
|
+
export { ThemeInverseDemo } from './ThemeInverseDemo';
|
|
29
|
+
export { TooltipDemo } from './TooltipDemo';
|
|
29
30
|
export * from './useOnIntersecting';
|
|
30
31
|
export * from './TamaguiLogo';
|
|
31
32
|
//# sourceMappingURL=index.d.ts.map
|
package/types/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AACrD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AACzC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,eAAe,CAAA"}
|