@vertexvis/ui 0.1.0-testing.7 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/cjs/{color-circle-picker-13396ec4.js → color-circle-picker-d0403f1c.js} +2 -2
- package/dist/cjs/color-picker-2a4820fa.js +46 -0
- package/dist/cjs/{color-circle-05be54bf.js → color-swatch-8aaf6c0b.js} +42 -17
- package/dist/cjs/components.cjs.js +1 -1
- package/dist/cjs/{dialog-88e2308a.js → dialog-34f1dd6e.js} +1 -1
- package/dist/cjs/dom-a2c535e3.js +17 -0
- package/dist/cjs/{icon-460fd0f5.js → icon-3b1349ea.js} +1 -1
- package/dist/cjs/{icon-button-786427d6.js → icon-button-19061994.js} +1 -1
- package/dist/cjs/{icon-helper-ba408f49.js → icon-helper-cb479ba1.js} +107 -0
- package/dist/cjs/index.cjs.js +18 -12
- package/dist/cjs/lib-1bd1e383.js +9 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{search-bar-1edc045f.js → search-bar-2e7ee35a.js} +177 -51
- package/dist/cjs/{select-5f8aecfe.js → select-2b2bdb97.js} +1 -1
- package/dist/cjs/{slider-13594e49.js → slider-7714cccb.js} +7 -1
- package/dist/cjs/tab-4335cd8f.js +26 -0
- package/dist/cjs/tabs-6f3e76e1.js +111 -0
- package/dist/cjs/{tooltip-e9f63631.js → tooltip-9d097c55.js} +2 -5
- package/dist/cjs/vertex-color-circle-picker.cjs.entry.js +1 -1
- package/dist/cjs/vertex-color-picker.cjs.entry.js +2 -1
- package/dist/cjs/vertex-color-swatch.cjs.entry.js +12 -0
- package/dist/cjs/vertex-dialog.cjs.entry.js +1 -1
- package/dist/cjs/vertex-icon-button.cjs.entry.js +2 -2
- package/dist/cjs/vertex-icon.cjs.entry.js +2 -2
- package/dist/cjs/vertex-search-bar.cjs.entry.js +1 -1
- package/dist/cjs/vertex-select.cjs.entry.js +1 -1
- package/dist/cjs/vertex-slider.cjs.entry.js +2 -1
- package/dist/cjs/{vertex-color-circle.cjs.entry.js → vertex-tab.cjs.entry.js} +3 -2
- package/dist/cjs/vertex-tabs.cjs.entry.js +12 -0
- package/dist/cjs/vertex-tooltip.cjs.entry.js +2 -1
- package/dist/collection/collection-manifest.json +5 -3
- package/dist/collection/components/color-circle-picker/color-circle-picker.js +8 -8
- package/dist/collection/components/color-picker/color-picker.css +95 -15
- package/dist/collection/components/color-picker/color-picker.js +57 -3
- package/dist/collection/components/color-swatch/color-swatch.css +43 -0
- package/dist/collection/components/{color-circle/color-circle.js → color-swatch/color-swatch.js} +96 -23
- package/dist/collection/components/color-swatch/lib.js +5 -0
- package/dist/collection/components/dialog/dialog.css +0 -1
- package/dist/collection/components/icon/icon-helper.js +51 -0
- package/dist/collection/components/icon/icon.js +1 -1
- package/dist/collection/components/icon/icons/arrow-left-circled.js +2 -0
- package/dist/collection/components/icon/icons/arrow-right-circled.js +2 -0
- package/dist/collection/components/icon/icons/camera-add.js +2 -0
- package/dist/collection/components/icon/icons/caution.js +2 -0
- package/dist/collection/components/icon/icons/columns-add.js +2 -0
- package/dist/collection/components/icon/icons/compare.js +2 -0
- package/dist/collection/components/icon/icons/compress.js +2 -0
- package/dist/collection/components/icon/icons/cube-stack.js +2 -0
- package/dist/collection/components/icon/icons/expand.js +2 -0
- package/dist/collection/components/icon/icons/file-folder.js +2 -0
- package/dist/collection/components/icon/icons/pin-text-square.js +2 -0
- package/dist/collection/components/icon/icons/plus-with-arrow.js +2 -0
- package/dist/collection/components/icon/icons/pmi.js +2 -0
- package/dist/collection/components/icon/icons/report.js +2 -0
- package/dist/collection/components/icon/icons/square-dot-outline.js +2 -0
- package/dist/collection/components/icon/icons/update.js +2 -0
- package/dist/collection/components/icon/icons/views.js +2 -0
- package/dist/collection/components/icon-button/icon-button.js +1 -1
- package/dist/collection/components/index.js +3 -1
- package/dist/collection/components/result-list/result-list.js +6 -3
- package/dist/collection/components/result-list/types.js +1 -0
- package/dist/collection/components/search-bar/dom.js +18 -1
- package/dist/collection/components/search-bar/lib.js +57 -4
- package/dist/collection/components/search-bar/search-bar.css +13 -2
- package/dist/collection/components/search-bar/search-bar.js +112 -51
- package/dist/collection/components/select/select.css +8 -0
- package/dist/collection/components/slider/slider.js +8 -2
- package/dist/collection/components/tab/tab.css +16 -0
- package/dist/collection/components/tab/tab.js +85 -0
- package/dist/collection/components/tab/util.js +3 -0
- package/dist/collection/components/tabs/tabs.css +67 -0
- package/dist/collection/components/tabs/tabs.js +159 -0
- package/dist/collection/types/icon.js +17 -0
- package/dist/collection/util/components/dom.js +3 -0
- package/dist/components/components.css +1 -1
- package/dist/components/components.esm.js +1 -1
- package/dist/components/index.esm.js +1 -1
- package/dist/components/p-01d4be1d.entry.js +1 -0
- package/dist/components/{p-165aed7d.js → p-0d4a0d61.js} +1 -1
- package/dist/components/p-18ed73e9.js +1 -0
- package/dist/components/p-1d08dd79.entry.js +1 -0
- package/dist/components/p-2ae8175d.entry.js +1 -0
- package/dist/components/p-2b4aedaa.entry.js +1 -0
- package/dist/components/p-3438c441.js +1 -0
- package/dist/components/{p-912f6e24.js → p-4327deea.js} +1 -1
- package/dist/components/p-45848878.js +1 -0
- package/dist/components/p-48629bf1.js +1 -0
- package/dist/components/{p-103249b4.js → p-5384f198.js} +1 -1
- package/dist/components/p-655053df.js +1 -0
- package/dist/components/p-65f9817e.js +1 -0
- package/dist/components/p-6a49c365.entry.js +1 -0
- package/dist/components/p-6b6c2260.js +1 -0
- package/dist/components/p-6ff20817.js +1 -0
- package/dist/components/{p-ca52a423.js → p-7bd92281.js} +1 -1
- package/dist/components/p-8bbc344d.entry.js +1 -0
- package/dist/components/p-8d83dfff.entry.js +1 -0
- package/dist/components/p-96f55673.js +1 -0
- package/dist/components/{p-9374ef6c.js → p-b9dab446.js} +1 -1
- package/dist/components/p-c6841378.entry.js +1 -0
- package/dist/components/p-cbfc041e.entry.js +1 -0
- package/dist/components/p-d2d75bcf.entry.js +1 -0
- package/dist/components/p-d539f530.js +1 -0
- package/dist/components/p-decf635f.entry.js +1 -0
- package/dist/components/p-e35057b5.entry.js +1 -0
- package/dist/esm/{color-circle-picker-998a7e9c.js → color-circle-picker-35ad3b3e.js} +2 -2
- package/dist/esm/color-picker-1d67effe.js +44 -0
- package/dist/esm/{color-circle-842f3321.js → color-swatch-0e62d13d.js} +42 -17
- package/dist/esm/components.js +1 -1
- package/dist/esm/{dialog-e3f49527.js → dialog-1cef715c.js} +1 -1
- package/dist/esm/dom-9d0f7bf4.js +13 -0
- package/dist/esm/{icon-d37150b4.js → icon-bf8df898.js} +1 -1
- package/dist/esm/{icon-button-aad3c0e7.js → icon-button-a4bdeabc.js} +1 -1
- package/dist/esm/{icon-helper-83f10f73.js → icon-helper-94d45002.js} +107 -0
- package/dist/esm/index.js +15 -11
- package/dist/esm/lib-73fbca8b.js +7 -0
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{search-bar-cb59da12.js → search-bar-8d18626e.js} +177 -51
- package/dist/esm/{select-d4e135b7.js → select-78aeff96.js} +1 -1
- package/dist/esm/{slider-dcdb388f.js → slider-3d8545e3.js} +8 -2
- package/dist/esm/tab-c76332b0.js +24 -0
- package/dist/esm/tabs-e9f6dcbe.js +109 -0
- package/dist/esm/{tooltip-933da261.js → tooltip-db8ebd41.js} +1 -4
- package/dist/esm/vertex-color-circle-picker.entry.js +1 -1
- package/dist/esm/vertex-color-picker.entry.js +2 -1
- package/dist/esm/vertex-color-swatch.entry.js +4 -0
- package/dist/esm/vertex-dialog.entry.js +1 -1
- package/dist/esm/vertex-icon-button.entry.js +2 -2
- package/dist/esm/vertex-icon.entry.js +2 -2
- package/dist/esm/vertex-search-bar.entry.js +1 -1
- package/dist/esm/vertex-select.entry.js +1 -1
- package/dist/esm/vertex-slider.entry.js +2 -1
- package/dist/esm/vertex-tab.entry.js +3 -0
- package/dist/esm/vertex-tabs.entry.js +4 -0
- package/dist/esm/vertex-tooltip.entry.js +2 -1
- package/dist/types/components/color-circle-picker/color-circle-picker.d.ts +7 -7
- package/dist/types/components/color-picker/color-picker.d.ts +19 -0
- package/dist/types/components/{color-circle/color-circle.d.ts → color-swatch/color-swatch.d.ts} +23 -5
- package/dist/types/components/color-swatch/lib.d.ts +1 -0
- package/dist/types/components/icon/icons/arrow-left-circled.d.ts +3 -0
- package/dist/types/components/icon/icons/arrow-right-circled.d.ts +3 -0
- package/dist/types/components/icon/icons/camera-add.d.ts +3 -0
- package/dist/types/components/icon/icons/caution.d.ts +3 -0
- package/dist/types/components/icon/icons/columns-add.d.ts +3 -0
- package/dist/types/components/icon/icons/compare.d.ts +3 -0
- package/dist/types/components/icon/icons/compress.d.ts +3 -0
- package/dist/types/components/icon/icons/cube-stack.d.ts +3 -0
- package/dist/types/components/icon/icons/expand.d.ts +3 -0
- package/dist/types/components/icon/icons/file-folder.d.ts +3 -0
- package/dist/types/components/icon/icons/pin-text-square.d.ts +3 -0
- package/dist/types/components/icon/icons/plus-with-arrow.d.ts +3 -0
- package/dist/types/components/icon/icons/pmi.d.ts +3 -0
- package/dist/types/components/icon/icons/report.d.ts +3 -0
- package/dist/types/components/icon/icons/square-dot-outline.d.ts +3 -0
- package/dist/types/components/icon/icons/update.d.ts +3 -0
- package/dist/types/components/icon/icons/views.d.ts +3 -0
- package/dist/types/components/index.d.ts +3 -1
- package/dist/types/components/result-list/result-list.d.ts +1 -4
- package/dist/types/components/result-list/types.d.ts +4 -0
- package/dist/types/components/search-bar/dom.d.ts +6 -1
- package/dist/types/components/search-bar/lib.d.ts +22 -3
- package/dist/types/components/search-bar/search-bar.d.ts +18 -2
- package/dist/types/components/slider/slider.d.ts +1 -0
- package/dist/types/components/tab/tab.d.ts +11 -0
- package/dist/types/components/tab/util.d.ts +1 -0
- package/dist/types/components/tabs/tabs.d.ts +23 -0
- package/dist/types/components.d.ts +168 -83
- package/dist/types/types/icon.d.ts +17 -0
- package/dist/types/util/components/dom.d.ts +1 -0
- package/package.json +2 -2
- package/dist/cjs/color-picker-876ace00.js +0 -37
- package/dist/collection/components/color-circle/color-circle.css +0 -18
- package/dist/components/p-03dbb28c.js +0 -1
- package/dist/components/p-0b1cdc8a.entry.js +0 -1
- package/dist/components/p-0f8b9ede.entry.js +0 -1
- package/dist/components/p-16719272.entry.js +0 -1
- package/dist/components/p-20a74d5d.entry.js +0 -1
- package/dist/components/p-35e7ab78.entry.js +0 -1
- package/dist/components/p-759f1655.js +0 -1
- package/dist/components/p-7cfb3736.entry.js +0 -1
- package/dist/components/p-7dba2574.entry.js +0 -1
- package/dist/components/p-7f42b27b.entry.js +0 -1
- package/dist/components/p-7f64b251.entry.js +0 -1
- package/dist/components/p-8434602f.js +0 -1
- package/dist/components/p-92930f2a.js +0 -1
- package/dist/components/p-cd6ddb10.js +0 -1
- package/dist/components/p-d9b9aebe.js +0 -1
- package/dist/components/p-f71fc166.entry.js +0 -1
- package/dist/esm/color-picker-2e3b51fa.js +0 -35
- package/dist/esm/vertex-color-circle.entry.js +0 -2
|
@@ -22,6 +22,13 @@ const Annotation = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBo
|
|
|
22
22
|
const ArrowFilled = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-filled" },
|
|
23
23
|
h("path", { d: "M6,3,9.15,6.15l-8,8a.48.48,0,0,0,0,.7.48.48,0,0,0,.7,0l8-8L13,10l2-9Z" })));
|
|
24
24
|
|
|
25
|
+
const ArrowLeftCircled = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-left-circled" },
|
|
26
|
+
h("g", { fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1" },
|
|
27
|
+
h("path", { d: "m1.2594 8 3.6867-4.1402z" }),
|
|
28
|
+
h("path", { d: "m1.2594 8h13.553z" }),
|
|
29
|
+
h("path", { d: "m1.2594 8 3.6867 4.1402z" })),
|
|
30
|
+
h("path", { d: "M8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.24,11.24A6,6,0,1,1,3.76,3.76a6,6,0,1,1,8.48,8.48Z" })));
|
|
31
|
+
|
|
25
32
|
const ArrowLineLeft = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-line-left" },
|
|
26
33
|
h("g", { fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" },
|
|
27
34
|
h("path", { d: "m1.2594 8 3.6867-4.1402z" }),
|
|
@@ -37,6 +44,13 @@ const ArrowLineRight = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", vi
|
|
|
37
44
|
const ArrowPartial = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 256", "data-testid": "arrow-partial" },
|
|
38
45
|
h("path", { d: "m150.8 41.9-3.3 2.9-.3 23.1-.3 23.1h-27.4c-19.1 0-28.2.4-30 1.2-7.1 3.2-7.1 15.4 0 18.6 1.8.9 12.6 1.2 37.6 1.2 37 0 39.4-.3 41.5-4.7.5-1 1.1-8.9 1.4-17.5l.5-15.7 27.8 23.5 27.7 23.6-2.4 2.8c-1.3 1.6-13.8 15.3-27.8 30.5l-25.3 27.6-.5-11.8c-.3-6.5-.9-12.6-1.4-13.6-1.9-4.1-5.5-4.7-27.1-4.7-15.9 0-21.2.3-23.4 1.4-6.8 3.6-6.8 15.6 0 19.2 2 1 6.5 1.4 15.9 1.4h13v18c0 11.7.4 18.8 1.2 20.5 2.6 5.7 12 7.2 19.4 3.2 2.8-1.5 15.9-15 39.9-41.2 43.5-47.4 44.5-48.7 44.5-54 0-5.2 1.3-4-49.4-46.9C164.4 41.3 161.4 39 157.9 39c-2.9 0-4.7.8-7.1 2.9zM10.1 92.4c-6.8 3.8-6.6 15.2.4 18.4 1.7.8 8.7 1.2 20.5 1.2 19.5 0 22.2-.6 24.6-5.1 2.8-5.5.9-12.5-4.1-14.7-3.8-1.7-38.2-1.6-41.4.2zM16.1 153.4c-6.9 3.8-6.7 16.2.4 19.4 4.1 1.9 58.7 1.7 62.4-.2 6.8-3.6 6.8-15.6 0-19.2-3.9-2-59.2-2-62.8 0z" })));
|
|
39
46
|
|
|
47
|
+
const ArrowRightCircled = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-right-circled" },
|
|
48
|
+
h("g", { fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1" },
|
|
49
|
+
h("path", { d: "m11.753 8-3.6867-3.1402z" }),
|
|
50
|
+
h("path", { d: "m11.753 8h-7.553z" }),
|
|
51
|
+
h("path", { d: "m11.753 8-3.6867 3.1402z" })),
|
|
52
|
+
h("path", { d: "M8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.24,11.24A6,6,0,1,1,3.76,3.76a6,6,0,1,1,8.48,8.48Z" })));
|
|
53
|
+
|
|
40
54
|
const ArrowTriangleLeft = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "arrow-triangle-left" },
|
|
41
55
|
h("g", { transform: "matrix(1.0411 0 0 1 -.53826 .29031)" },
|
|
42
56
|
h("path", { d: "m1.9916 7.6851h13.033z", fill: "none", stroke: "currentColor", "stroke-linejoin": "round", "stroke-width": "1.5" })),
|
|
@@ -77,6 +91,9 @@ const BoxSelect = () => (h("svg", { "data-testid": "box-select", xmlns: "http://
|
|
|
77
91
|
const Camera = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "camera" },
|
|
78
92
|
h("path", { d: "M8,6a3,3,0,1,0,3,3A3,3,0,0,0,8,6ZM4.5,6a.5.5,0,1,0,.5.5A.5.5,0,0,0,4.5,6ZM14.85,4.15A.47.47,0,0,0,14.5,4H11.81L11,2.28A.51.51,0,0,0,10.5,2h-5a.51.51,0,0,0-.45.28L4.19,4H1.5a.47.47,0,0,0-.35.15A.47.47,0,0,0,1,4.5v9a.47.47,0,0,0,.15.35A.47.47,0,0,0,1.5,14h13a.51.51,0,0,0,.5-.5v-9A.47.47,0,0,0,14.85,4.15ZM14,13H2V5H4.5A.51.51,0,0,0,5,4.72L5.81,3h4.38l.86,1.72A.51.51,0,0,0,11.5,5H14Z" })));
|
|
79
93
|
|
|
94
|
+
const CameraAdd = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "camera-add" },
|
|
95
|
+
h("path", { d: "M10.5 8.002h-2v-2a.5.5 0 1 0-1 0v2h-2a.5.5 0 1 0 0 1h2v2a.5.5 0 1 0 1 0v-2h2a.5.5 0 1 0 0-1Zm4.35-3.85a.47.47 0 0 0-.35-.15h-2.69L11 2.282a.51.51 0 0 0-.5-.28h-5a.51.51 0 0 0-.45.28l-.86 1.72H1.5a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v9a.47.47 0 0 0 .15.35.47.47 0 0 0 .35.15h13a.51.51 0 0 0 .5-.5v-9a.47.47 0 0 0-.15-.35Zm-.85 8.85H2v-8h2.5a.51.51 0 0 0 .5-.28l.81-1.72h4.38l.86 1.72a.51.51 0 0 0 .45.28H14v8Z" })));
|
|
96
|
+
|
|
80
97
|
const CaretDown = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "caret-down" },
|
|
81
98
|
h("path", { d: "M8,9.7,3.8,5.1a.62.62,0,0,0-.7.1.64.64,0,0,0,0,.6l4.5,5a.48.48,0,0,0,.7,0h0l4.5-5a.49.49,0,0,0-.1-.7.64.64,0,0,0-.6,0Z" })));
|
|
82
99
|
|
|
@@ -89,6 +106,9 @@ const CaretRight = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBo
|
|
|
89
106
|
const CaretUp = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "caret-up" },
|
|
90
107
|
h("path", { d: "M7.93,6.28l4.2,4.6a.62.62,0,0,0,.7-.1.64.64,0,0,0,0-.6l-4.5-5a.48.48,0,0,0-.7,0h0l-4.5,5a.49.49,0,0,0,.1.7.64.64,0,0,0,.6,0Z" })));
|
|
91
108
|
|
|
109
|
+
const Caution = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "caution" },
|
|
110
|
+
h("path", { d: "M8,11a.51.51,0,1,0,.35.15A.47.47,0,0,0,8,11Zm6.65,1.29ZM8,6a.5.5,0,0,0-.5.5v3a.5.5,0,0,0,1,0v-3A.5.5,0,0,0,8,6Zm6.65,6.29L9.32,2.4h0a1.5,1.5,0,0,0-2.64,0L1.35,12.29h0a1.53,1.53,0,0,0-.18.71,1.5,1.5,0,0,0,1.5,1.5H13.33a1.5,1.5,0,0,0,1.5-1.5A1.53,1.53,0,0,0,14.65,12.29Zm-1,1.06a.47.47,0,0,1-.35.15H2.67a.47.47,0,0,1-.35-.15A.51.51,0,0,1,2.17,13l.06-.24h0L7.56,2.87h0a.5.5,0,0,1,.88,0l5.33,9.89h0l.06.24A.51.51,0,0,1,13.68,13.35Z" })));
|
|
111
|
+
|
|
92
112
|
const Check = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "check" },
|
|
93
113
|
h("path", { d: "M13.85,4.15a.48.48,0,0,0-.7,0L6.5,10.79,2.85,7.15a.49.49,0,0,0-.7.7l4,4a.48.48,0,0,0,.7,0l7-7A.48.48,0,0,0,13.85,4.15Z" })));
|
|
94
114
|
|
|
@@ -125,6 +145,11 @@ const CollapseAll = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewB
|
|
|
125
145
|
const Columns = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "columns", fill: "currentColor" },
|
|
126
146
|
h("path", { d: "m 8,1.0608391 c -4.3636674,0 -7.90079064,0.023094 -7.90079064,0.051051 V 2.225294 c 0,0.027957 3.53712324,0.051051 7.90079064,0.051051 4.363668,0 7.900791,-0.023094 7.900791,-0.051051 V 1.1118903 C 15.900791,1.0839333 12.363668,1.0608393 8,1.0608391 Z M 8,13.823655 c -4.3636674,0 -7.90079064,0.0231 -7.90079064,0.05105 v 1.113404 c 0,0.02796 3.53712324,0.05104 7.90079064,0.05104 4.363668,0 7.900791,-0.0231 7.900791,-0.05104 v -1.113404 c 0,-0.02796 -3.537123,-0.05105 -7.900791,-0.05105 z M 9.8232594,2.3371206 V 14.370632 c 0,0.369514 0.2722736,0.668529 0.6077526,0.668529 0.335481,0 0.607754,-0.299015 0.607754,-0.668529 V 2.3371206 c 0,-0.3695139 -0.272273,-0.6685284 -0.607754,-0.6685284 -0.335479,0 -0.6077526,0.2990145 -0.6077526,0.6685284 z m -4.862025,0 V 14.370632 c 0,0.369514 0.2722734,0.668529 0.6077531,0.668529 0.3354797,0 0.6077531,-0.299015 0.6077531,-0.668529 V 2.3371206 c 0,-0.3695139 -0.2722734,-0.6685284 -0.6077531,-0.6685284 -0.3354797,0 -0.6077531,0.2990145 -0.6077531,0.6685284 z m -4.86202504,0 V 14.370632 c 0,0.369514 0.2722734,0.668529 0.60775313,0.668529 0.33547971,0 0.60775311,-0.299015 0.60775311,-0.668529 V 2.3371206 c 0,-0.3695139 -0.2722734,-0.6685284 -0.60775311,-0.6685284 -0.33547973,0 -0.60775313,0.2990145 -0.60775313,0.6685284 z m 14.58607564,0 V 14.370632 c 0,0.369514 0.272273,0.668529 0.607752,0.668529 0.335481,0 0.607754,-0.299015 0.607754,-0.668529 V 2.3371206 c 0,-0.3695139 -0.272273,-0.6685284 -0.607754,-0.6685284 -0.335479,0 -0.607752,0.2990145 -0.607752,0.6685284 z" })));
|
|
127
147
|
|
|
148
|
+
const ColumnsAdd = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "columns-add" },
|
|
149
|
+
h("g", null,
|
|
150
|
+
h("path", { d: "M13.45 12.04c-.28 0-.5.22-.5.5v.99c0 .27-.22.49-.5.49H7.99V2h4.46c.28 0 .5.22.5.5v.99c0 .28.22.5.5.5s.5-.22.5-.5V2.5c0-.82-.67-1.5-1.5-1.5H2.5C1.67 1 1 1.67 1 2.5v11.01c0 .83.67 1.5 1.5 1.5h9.96c.83 0 1.5-.67 1.5-1.49v-.99c0-.28-.22-.5-.5-.5l-.01.01ZM2 13.51V2.5c0-.28.22-.5.5-.5h4.49v12.01H2.5c-.28 0-.5-.22-.5-.5Z" }),
|
|
151
|
+
h("path", { d: "M15.01 7.5h-1.02V6.48c0-.28-.22-.5-.5-.5s-.5.22-.5.5V7.5h-1.02c-.28 0-.5.22-.5.5s.22.5.5.5h1.02v1.02c0 .28.22.5.5.5s.5-.22.5-.5V8.5h1.02c.28 0 .5-.22.5-.5s-.22-.5-.5-.5Z" }))));
|
|
152
|
+
|
|
128
153
|
const CommentAdd = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "comment-add" },
|
|
129
154
|
h("path", { d: "M10.5,6.7h-5c-.3,0-.5.2-.5.5s.2.5.5.5h5c.3,0,.5-.2.5-.5s-.2-.5-.5-.5ZM7.5,5v4.4c0,.3.2.5.5.5s.5-.2.5-.5v-4.4c0-.3-.2-.5-.5-.5s-.5.2-.5.5ZM13.5,2H2.5c-.8,0-1.5.7-1.5,1.5v7c0,.8.7,1.5,1.5,1.5h5.8l2.9,2.9c.1.1.4.2.5.1.2,0,.3-.3.3-.5v-2.5h1.5c.8,0,1.5-.7,1.5-1.5V3.5c0-.8-.7-1.5-1.5-1.5ZM14,10.5c0,.3-.2.5-.5.5h-2c-.3,0-.5.2-.5.5v1.8l-2.1-2.1s-.2-.2-.4-.1H2.5c-.3,0-.5-.2-.5-.5V3.5c0-.3.2-.5.5-.5h11c.3,0,.5.2.5.5v7Z" })));
|
|
130
155
|
|
|
@@ -142,6 +167,12 @@ const CommentResolve = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", vi
|
|
|
142
167
|
const CommentShow = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "comment-show" },
|
|
143
168
|
h("path", { d: "M11.5,8h-7a.5.5,0,0,0,0,1h7a.5.5,0,0,0,0-1Zm0-3h-7a.5.5,0,0,0,0,1h7a.5.5,0,0,0,0-1Zm2-3H2.5A1.5,1.5,0,0,0,1,3.5v7A1.5,1.5,0,0,0,2.5,12H8.29l2.86,2.85a.47.47,0,0,0,.54.11A.5.5,0,0,0,12,14.5V12h1.5A1.5,1.5,0,0,0,15,10.5v-7A1.5,1.5,0,0,0,13.5,2Zm.5,8.5a.5.5,0,0,1-.5.5h-2a.51.51,0,0,0-.5.5v1.79L8.85,11.15A.47.47,0,0,0,8.5,11h-6a.5.5,0,0,1-.5-.5v-7A.5.5,0,0,1,2.5,3h11a.5.5,0,0,1,.5.5Z" })));
|
|
144
169
|
|
|
170
|
+
const Compare = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "compare" },
|
|
171
|
+
h("path", { d: "M8.27 9.94 5.89 7.56c-.11-.11-.23-.17-.36-.17s-.25.06-.36.17c-.11.11-.16.23-.15.37 0 .13.06.25.15.34l1.74 1.74H1.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14h5.42l-1.74 1.74c-.11.11-.16.23-.16.35 0 .13.06.24.16.35.11.11.23.16.36.16.13 0 .25-.06.34-.15l2.39-2.39c.09-.09.15-.18.18-.27.04-.09.05-.19.05-.3s-.02-.21-.05-.3c-.04-.09-.1-.18-.18-.27Zm6.59-4.79c-.1-.1-.21-.14-.36-.14H9.11l1.74-1.74c.11-.11.16-.23.16-.35 0-.13-.06-.24-.16-.35a.495.495 0 0 0-.36-.16c-.13 0-.25.06-.34.15L7.76 4.95c-.09.09-.15.18-.18.27-.04.09-.05.19-.05.3s.02.21.05.3c.04.09.1.18.18.27l2.38 2.38c.11.11.23.17.36.17s.25-.06.36-.17c.11-.11.16-.23.15-.37 0-.13-.06-.25-.15-.34L9.12 6.02h5.39c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36Z" })));
|
|
172
|
+
|
|
173
|
+
const Compress = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "compress" },
|
|
174
|
+
h("path", { d: "M13.49 8.47H2.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14h10.99c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36c-.1-.1-.21-.14-.36-.14ZM2.5 7.47h10.99c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36c-.1-.1-.21-.14-.36-.14H2.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14ZM8.35 10.62c-.2-.2-.51-.2-.71 0l-2.12 2.12c-.2.2-.2.51 0 .71.2.2.51.2.71 0l1.24-1.24v2.32c0 .28.22.5.5.5s.5-.22.5-.5v-2.38l1.29 1.29c.2.2.51.2.71 0 .2-.2.2-.51 0-.71l-2.12-2.12v.01ZM7.63 5.41c.2.2.51.2.71 0l2.12-2.12c.2-.2.2-.51 0-.71-.2-.2-.51-.2-.71 0L8.51 3.82V1.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v2.38L6.22 2.59c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l2.12 2.12v-.01Z" })));
|
|
175
|
+
|
|
145
176
|
const Copy = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "copy" },
|
|
146
177
|
h("path", { d: "M13.51,1h-8A1.51,1.51,0,0,0,4,2.52V4H2.51A1.5,1.5,0,0,0,1,5.5v8A1.5,1.5,0,0,0,2.51,15h8A1.5,1.5,0,0,0,12,13.5V12h1.51a1.5,1.5,0,0,0,1.5-1.5v-8A1.5,1.5,0,0,0,13.51,1ZM11,13.5a.5.5,0,0,1-.5.5h-8a.5.5,0,0,1-.5-.5v-8a.5.5,0,0,1,.5-.5h8a.5.5,0,0,1,.5.5Zm3-3a.51.51,0,0,1-.5.5H12V5.5A1.5,1.5,0,0,0,10.5,4H5V2.52a.51.51,0,0,1,.5-.5h8a.51.51,0,0,1,.5.5Z" })));
|
|
147
178
|
|
|
@@ -154,6 +185,9 @@ const CubeOrthographic = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg",
|
|
|
154
185
|
const CubePerspective = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "cube-perspective" },
|
|
155
186
|
h("path", { d: "M13.72,4.05l-6-3a.49.49,0,0,0-.44,0l-6,3A.51.51,0,0,0,1,4.5v7a.51.51,0,0,0,.28.45l6,3a.49.49,0,0,0,.44,0l6-3A.51.51,0,0,0,14,11.5v-7A.51.51,0,0,0,13.72,4.05ZM7,13.69l-5-2.5V5.31l5,2.5Zm.5-6.75L2.62,4.5,7.5,2.06,12.38,4.5ZM13,11.19l-5,2.5V7.81l5-2.5Z" })));
|
|
156
187
|
|
|
188
|
+
const CubeStack = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "cube-stack" },
|
|
189
|
+
h("path", { d: "M13.72 2.52 10.22.77a.508.508 0 0 0-.45 0l-3.5 1.75a.5.5 0 0 0-.28.45v3.81c-.08 0-.15.02-.22.05l-3.5 1.75a.5.5 0 0 0-.28.45v4.08c0 .19.11.36.28.45l3.5 1.75c.07.04.15.05.22.05s.16-.02.23-.05l7.52-3.82c.15-.1.25-.25.25-.43V2.97c0-.19-.11-.36-.28-.45ZM13 6.74l-2.46 1.23V5.03L13 3.8v2.94Zm-7.46 7.33L3 12.8V9.82l2.54 1.27v2.98Zm.5-3.85-2.4-1.2 2.37-1.18 2.4 1.2-2.37 1.18ZM9 12.78l-2.46 1.25v-2.94L9 9.86v2.92Zm.54-4.77L7 6.74V3.76l2.54 1.27v2.98ZM7.63 2.96 10 1.78l2.4 1.2-2.37 1.18-2.4-1.2Zm2.91 6.13L13 7.86v2.88l-2.46 1.25v-2.9Z" })));
|
|
190
|
+
|
|
157
191
|
const Delete = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "delete" },
|
|
158
192
|
h("path", { d: "M6.5,12a.5.5,0,0,0,.5-.5v-5a.5.5,0,0,0-1,0v5A.5.5,0,0,0,6.5,12Zm3,0a.5.5,0,0,0,.5-.5v-5a.5.5,0,0,0-1,0v5A.5.5,0,0,0,9.5,12Zm4-10H10V1.5a.47.47,0,0,0-.15-.35A.47.47,0,0,0,9.5,1h-3a.47.47,0,0,0-.35.15A.47.47,0,0,0,6,1.5V2H2.5a.5.5,0,0,0,0,1H3v9.5A2.5,2.5,0,0,0,5.5,15h5A2.5,2.5,0,0,0,13,12.5V3h.5a.5.5,0,0,0,0-1ZM12,12.5A1.5,1.5,0,0,1,10.5,14h-5A1.5,1.5,0,0,1,4,12.5V4h8Z" })));
|
|
159
193
|
|
|
@@ -169,6 +203,9 @@ const Ellipse = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox:
|
|
|
169
203
|
const ErrorCircle = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "error-circle" },
|
|
170
204
|
h("path", { d: "M8,1a7,7,0,1,0,7,7A7,7,0,0,0,8,1Zm4.27,11.23A6,6,0,1,1,14,8,6,6,0,0,1,12.27,12.27ZM8,4a.5.5,0,0,0-.5.5v5a.5.5,0,0,0,1,0v-5A.5.5,0,0,0,8,4Zm0,7a.51.51,0,1,0,.35.15A.47.47,0,0,0,8,11Z" })));
|
|
171
205
|
|
|
206
|
+
const Expand = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "expand" },
|
|
207
|
+
h("path", { d: "M13.49 13.98H2.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14h10.99c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36c-.1-.1-.21-.14-.36-.14ZM2.5 2h10.99c.14 0 .26-.05.36-.14.1-.1.14-.21.14-.36s-.05-.26-.14-.36c-.1-.1-.21-.14-.36-.14H2.5c-.14 0-.26.05-.36.14-.1.1-.14.21-.14.36s.05.26.14.36c.1.1.21.14.36.14ZM9.76 5.97c.2.2.51.2.71 0 .2-.2.2-.51 0-.71L8.36 3.14c-.2-.2-.51-.2-.71 0L5.53 5.26c-.2.2-.2.51 0 .71.2.2.51.2.71 0l1.24-1.24v6.53l-1.24-1.24c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l2.12 2.12c.2.2.51.2.71 0l2.12-2.12c.2-.2.2-.51 0-.71-.2-.2-.51-.2-.71 0l-1.29 1.29V4.67l1.29 1.29-.01.01Z" })));
|
|
208
|
+
|
|
172
209
|
const ExpandAll = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "expand-all" },
|
|
173
210
|
h("path", { d: "M14.5,6h-5a.5.5,0,0,0,0,1h5a.5.5,0,0,0,0-1ZM4,2.5H2a.5.5,0,0,0-.46.31.47.47,0,0,0,.11.54l1,1a.48.48,0,0,0,.7,0l1-1a.47.47,0,0,0,.11-.54A.5.5,0,0,0,4,2.5ZM5.5,4h9a.5.5,0,0,0,0-1h-9a.5.5,0,0,0,0,1ZM4,8.5H2a.5.5,0,0,0-.46.31.47.47,0,0,0,.11.54l1,1a.48.48,0,0,0,.7,0l1-1a.47.47,0,0,0,.11-.54A.5.5,0,0,0,4,8.5ZM14.5,9h-9a.5.5,0,0,0,0,1h9a.5.5,0,0,0,0-1Zm0,3h-5a.5.5,0,0,0,0,1h5a.5.5,0,0,0,0-1Z" })));
|
|
174
211
|
|
|
@@ -178,6 +215,9 @@ const Export = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "
|
|
|
178
215
|
const File = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "file" },
|
|
179
216
|
h("path", { d: "M13.85,4.14l-3-3l0,0L10.69,1H10.5h-8C2.37,1,2.24,1.05,2.15,1.15C2.05,1.24,2,1.37,2,1.5v13\n\tc0,0.13,0.05,0.26,0.15,0.35C2.24,14.95,2.37,15,2.5,15h11c0.27-0.01,0.49-0.23,0.5-0.5v-10C14,4.36,13.95,4.23,13.85,4.14z\n\t M11,2.71L12.3,4H11V2.71z M13,14H3V2h7v2.5c0.01,0.27,0.23,0.49,0.5,0.5H13V14z" })));
|
|
180
217
|
|
|
218
|
+
const FileFolder = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "file-folder" },
|
|
219
|
+
h("path", { d: "M3.5 3a.5.5 0 0 0 .5-.5V2h8v.5a.5.5 0 1 0 1 0v-1a.47.47 0 0 0-.15-.35.47.47 0 0 0-.35-.15h-9a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v1a.5.5 0 0 0 .5.5Zm-1 3a.5.5 0 0 0 .5-.5V5h10v.5a.5.5 0 1 0 1 0v-1a.51.51 0 0 0-.5-.5h-11a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v1a.5.5 0 0 0 .5.5Zm12.35 1.15A.47.47 0 0 0 14.5 7h-13a.47.47 0 0 0-.35.15.47.47 0 0 0-.15.35v7a.47.47 0 0 0 .15.35.47.47 0 0 0 .35.15h13a.51.51 0 0 0 .5-.5v-7a.47.47 0 0 0-.15-.35ZM14 14H2V8h12v6Z" })));
|
|
220
|
+
|
|
181
221
|
const FilePdf = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "file-pdf" },
|
|
182
222
|
h("path", { d: "M3.88,8.5A1.4,1.4,0,0,0,2.5,7.12H1.12v4.76h.76v-2H2.5A1.4,1.4,0,0,0,3.88,8.5ZM2.5,9.12H1.88V7.88H2.5a.62.62,0,1,1,0,1.24Zm9.38-1.24V7.12H9.12v4.76h.76v-2h2V9.12h-2V7.88ZM7.8,10.5v-2A1.38,1.38,0,0,0,6.43,7.12H5.05v4.76H6.43A1.38,1.38,0,0,0,7.8,10.5Zm-.75,0a.62.62,0,0,1-.62.62H5.8V7.88h.63a.62.62,0,0,1,.62.62ZM15,4.31a.36.36,0,0,0-.11-.16l-3-3A.36.36,0,0,0,11.69,1a.41.41,0,0,0-.19,0h-8a.47.47,0,0,0-.35.15A.47.47,0,0,0,3,1.5V6H4V2h7V4.5a.51.51,0,0,0,.5.5H14v9H4V13H3V14.5a.51.51,0,0,0,.5.5h11a.51.51,0,0,0,.5-.5V4.5A.41.41,0,0,0,15,4.31ZM12,4V2.71L13.29,4Z" })));
|
|
183
223
|
|
|
@@ -308,9 +348,23 @@ const PinText = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox:
|
|
|
308
348
|
const PinTextFill = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pin-text-fill" },
|
|
309
349
|
h("path", { d: "M8,15H8a.5.5,0,0,1-.42-.23L5.72,12H3.48A1.5,1.5,0,0,1,2,10.5v-8A1.5,1.5,0,0,1,3.48,1h9A1.5,1.5,0,0,1,14,2.5v8a1.5,1.5,0,0,1-1.5,1.5H10.19L8.37,14.8A.52.52,0,0,1,8,15Z" })));
|
|
310
350
|
|
|
351
|
+
const PinTextSquare = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pin-text-square" },
|
|
352
|
+
h("path", { d: "M13.51 14.97H2.5c-.83 0-1.5-.67-1.5-1.5V2.5C1 1.67 1.67 1 2.5 1h11.01c.83 0 1.5.67 1.5 1.5v10.97c0 .83-.67 1.5-1.5 1.5ZM2.5 2c-.28 0-.5.22-.5.5v10.97c0 .28.22.5.5.5h11.01c.28 0 .5-.22.5-.5V2.5c0-.28-.22-.5-.5-.5H2.5Z" }),
|
|
353
|
+
h("path", { d: "m3.98 11.97 3.3-8h1.37l3.37 8h-1.04l-.88-2.01H5.9l-.91 2.01H3.98Zm4.02-7-1.76 4h3.42L8 4.97Z" })));
|
|
354
|
+
|
|
311
355
|
const Plus = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "plus" },
|
|
312
356
|
h("path", { d: "M14.36,7.5H8.5V1.64a.5.5,0,0,0-1,0V7.5H1.64a.5.5,0,0,0,0,1H7.5v5.86a.5.5,0,0,0,1,0V8.5h5.86a.5.5,0,0,0,0-1Z" })));
|
|
313
357
|
|
|
358
|
+
const PlusWithArrow = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "plus-with-arrow" },
|
|
359
|
+
h("path", { d: "M8.58 1.46c-3.58 0-6.5 2.92-6.5 6.5H.59l2 3 2-3h-1.5c0-3.03 2.47-5.5 5.5-5.5s5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5c-1.19 0-2.32-.37-3.27-1.08a.505.505 0 0 0-.7.1c-.17.22-.12.53.1.7 1.13.84 2.46 1.28 3.87 1.28 3.58 0 6.5-2.92 6.5-6.5s-2.92-6.5-6.51-6.5Z" }),
|
|
360
|
+
h("path", { d: "M8.5 5.53c-.28 0-.5.22-.5.5v1.49H6.51c-.28 0-.5.22-.5.5s.22.5.5.5H8v1.51c0 .28.22.5.5.5s.5-.22.5-.5V8.52h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H9V6.03c0-.28-.22-.5-.5-.5Z" })));
|
|
361
|
+
|
|
362
|
+
const PMI = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "pmi" },
|
|
363
|
+
h("path", { d: "M14.49 6.03 4.5 6c-.28 0-.5-.22-.5-.5v-3c0-.13.05-.26.15-.35A.51.51 0 0 1 4.5 2l9.99.03c.28 0 .5.22.5.5v3c0 .13-.05.26-.15.35a.51.51 0 0 1-.35.15ZM5 5l8.99.03v-2L5 3v2Z" }),
|
|
364
|
+
h("path", { d: "M9.5 12.01H4.55c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H9V6.02c0-.28.22-.5.5-.5s.5.22.5.5v5.49c0 .28-.22.5-.5.5Z" }),
|
|
365
|
+
h("path", { d: "M3.46 15.04c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5Zm2.01-.01h-.01c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.51.22.51.5-.22.5-.5.5Zm-3.99-.01c-.28 0-.5-.22-.5-.49 0-.29.22-.51.5-.51s.5.22.5.5-.22.5-.5.5Zm6-.01c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5Zm-6-2c-.28 0-.5-.22-.5-.5 0-.29.22-.51.5-.51s.5.22.5.5-.22.5-.5.5Zm0-2.01c-.28 0-.5-.22-.5-.5 0-.29.22-.51.5-.51s.5.22.5.5-.22.5-.5.5Zm6-1.97c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5c0 .29-.22.51-.5.51Zm-5.97-.02c-.28 0-.51-.22-.51-.5s.22-.5.5-.5h.01c.28 0 .5.22.5.5s-.22.5-.5.5ZM3.52 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5Zm2.01-.02c-.28 0-.51-.22-.51-.5s.22-.5.5-.5h.01c.28 0 .5.22.5.5s-.22.5-.5.5Z" }),
|
|
366
|
+
h("circle", { cx: "4.49", cy: "11.53", r: "1.5" })));
|
|
367
|
+
|
|
314
368
|
const PreciseMeasurement = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "precise-measurement" },
|
|
315
369
|
h("path", { d: "m1.91 1.54 4.13 2.1c.05.03.09.07.13.11.04.04.08.09.11.15.02.05.05.11.06.18.02.06.02.13.02.19v2.02h-.64V4.27L2.1 2.53l.05 11.1 3.57-1.95V9.67h.64v2.01c0 .07 0 .13-.02.2-.01.06-.04.12-.06.18-.03.06-.07.11-.11.15-.04.04-.08.08-.13.11l-3.82 2.17c-.06.03-.14.05-.2.06-.08 0-.15-.02-.21-.05-.05-.02-.1-.06-.15-.1-.04-.05-.08-.1-.11-.16l-.05-.19-.04-11.94c0-.1.01-.19.04-.27.02-.09.07-.16.11-.23l.13-.16.17.09zM13.9 2.53l-3.62 1.74v2.02h-.64V4.27c0-.06 0-.13.02-.19.01-.07.04-.13.06-.18.03-.06.07-.11.11-.15.04-.04.08-.08.13-.11h.01l4.29-2.19.13.16c.04.07.09.14.11.23.03.08.04.17.04.26l-.04 11.95-.05.19c-.03.06-.07.11-.11.16-.05.04-.1.08-.15.1-.06.03-.13.05-.21.05a.762.762 0 0 1-.2-.06l-3.82-2.17c-.05-.03-.09-.07-.13-.11a.583.583 0 0 1-.11-.15c-.02-.06-.05-.12-.06-.18-.02-.07-.02-.13-.02-.2V9.67h.64v2.01l3.57 1.95.05-11.1z" }),
|
|
316
370
|
h("path", { d: "m13.31 7.98-2.34-2.69v1.99H5.03V5.29L2.79 7.98l2.24 2.69v-2h5.94v2z" })));
|
|
@@ -318,6 +372,16 @@ const PreciseMeasurement = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg"
|
|
|
318
372
|
const Rabbit = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "rabbit" },
|
|
319
373
|
h("path", { d: "M13.5,7a.51.51,0,1,0,.35.15A.47.47,0,0,0,13.5,7Zm1.58-1.27-1.25-.62L10.9,1.2A.51.51,0,0,0,10.39,1,.52.52,0,0,0,10,1.4a9.84,9.84,0,0,0-.21,2,3.61,3.61,0,0,0,1.31,3.16l0,0H11A1.29,1.29,0,0,1,9.92,6h0A7.12,7.12,0,0,0,8.11,3.78,4.28,4.28,0,0,0,5.5,3a3.39,3.39,0,0,0-1.73.54A9.68,9.68,0,0,0,1.24,6H.5A.5.5,0,0,0,0,6.31a.47.47,0,0,0,.11.54L1,7.73A2.4,2.4,0,0,0,2,9.59a3.47,3.47,0,0,0,1.85.56h0a5.49,5.49,0,0,1,2.2.59L5.37,11A2.51,2.51,0,0,0,3,13.5a.51.51,0,0,0,.5.5h1a1.64,1.64,0,0,0,.65-.17,8.83,8.83,0,0,0,.91-.5c.28-.17.54-.33.64-.37l1.21-.48h0l.1.18,0,0h0a.51.51,0,0,0,.23.23l2,1a.49.49,0,0,0,.57-.1,1.35,1.35,0,0,0,.43-.94,1.48,1.48,0,0,0-.29-.84,2,2,0,0,0-.19-.22,3,3,0,0,0,1.73-1,2.16,2.16,0,0,0,.25-.43l.07.05A3.16,3.16,0,0,0,14.5,11a1.58,1.58,0,0,0,.86-.24,1.5,1.5,0,0,0,.57-.8A1.74,1.74,0,0,0,16,9.5V7.21A1.65,1.65,0,0,0,15.08,5.73ZM6.31,12h0c-.28.14-.65.38-1,.6a3.67,3.67,0,0,1-.51.27L4.56,13H4.09A1.51,1.51,0,0,1,5.5,12l.2,0L7,11.4a3.45,3.45,0,0,1,.28.26ZM15,9.5a.93.93,0,0,1-.08.3l-.13.13a.44.44,0,0,1-.29.07,2.1,2.1,0,0,1-1.1-.42,4.58,4.58,0,0,1-.4-.3l-.11-.1,0,0h0A.47.47,0,0,0,12.31,9,.5.5,0,0,0,12,9.5h0a1.42,1.42,0,0,1-.33.77,2.26,2.26,0,0,1-1.52.69,4,4,0,0,0,0-.68A4.8,4.8,0,0,0,9,7.2a6.53,6.53,0,0,0-1.2-1.12.5.5,0,1,0-.56.84h0A5.59,5.59,0,0,1,8.31,8a3.68,3.68,0,0,1,.89,2.32A3.49,3.49,0,0,1,9,11.34a.22.22,0,0,0,0,.11s0,0,0,.05H9a.37.37,0,0,0,0,.18v0a1,1,0,0,0,.09.13l.06,0,.08.06h0a3.63,3.63,0,0,1,.6.4,1.58,1.58,0,0,1,.31.33.37.37,0,0,1,.07.14l-1.4-.7s0-.08-.08-.15h0l-.21-.29h0a.37.37,0,0,0-.13-.17A6.08,6.08,0,0,0,3.86,9.15h0a2.5,2.5,0,0,1-1.31-.37A1.44,1.44,0,0,1,2,7.5a.47.47,0,0,0-.15-.35L1.67,7a.56.56,0,0,0,.25-.18v0A11.44,11.44,0,0,1,3.24,5.22,3.68,3.68,0,0,1,5.5,4a3.21,3.21,0,0,1,2,.59A6.3,6.3,0,0,1,9.07,6.47h0A2.27,2.27,0,0,0,11,7.54a2.14,2.14,0,0,0,1-.23h0L12.72,7a.5.5,0,0,0-.22-1h0a1.62,1.62,0,0,1-.89-.36,2.7,2.7,0,0,1-.81-2.29c0-.17,0-.38,0-.58l2.27,3,.18.15,1.36.68a.66.66,0,0,1,.36.58Z" })));
|
|
320
374
|
|
|
375
|
+
const Report = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "report" },
|
|
376
|
+
h("g", { stroke: "none", "stroke-width": "1", fill: "none", "fill-rule": "evenodd" },
|
|
377
|
+
h("g", { transform: "translate(2, 2)", fill: "currentColor", "fill-rule": "nonzero" },
|
|
378
|
+
h("path", { d: "M10.99,0 L1,0 C0.45,0 0,0.45 0,1 L0,11 C0,11.55 0.45,12 1,12 L10.99,12 C11.54,12 11.99,11.55 11.99,11 L11.99,1 C11.99,0.45 11.54,0 10.99,0 L10.99,0 Z M10.99,11 L1,11 L1,1 L10.99,1 L10.99,11 Z" }),
|
|
379
|
+
h("path", { d: "M8.49,7.02 C8.77,7.02 8.99,6.8 8.99,6.52 L8.99,2.93 C8.99,2.65 8.77,2.43 8.49,2.43 C8.21,2.43 7.99,2.65 7.99,2.93 L7.99,6.52 C7.99,6.8 8.21,7.02 8.49,7.02 Z" }),
|
|
380
|
+
h("path", { d: "M5.99,3.51 C5.99,3.23 5.77,3.01 5.49,3.01 L3.46,3.01 C3.18,3.01 2.96,3.23 2.96,3.51 C2.96,3.79 3.18,4.01 3.46,4.01 L5.49,4.01 C5.77,4.01 5.99,3.79 5.99,3.51 Z" }),
|
|
381
|
+
h("path", { d: "M5.99,6.01 C5.99,5.73 5.77,5.51 5.49,5.51 L3.46,5.51 C3.18,5.51 2.96,5.73 2.96,6.01 C2.96,6.29 3.18,6.51 3.46,6.51 L5.49,6.51 C5.77,6.51 5.99,6.29 5.99,6.01 Z" }),
|
|
382
|
+
h("path", { d: "M5.99,8.51 C5.99,8.23 5.77,8.01 5.49,8.01 L3.46,8.01 C3.18,8.01 2.96,8.23 2.96,8.51 C2.96,8.79 3.18,9.01 3.46,9.01 L5.49,9.01 C5.77,9.01 5.99,8.79 5.99,8.51 Z" }),
|
|
383
|
+
h("path", { d: "M8.53,9.59 C8.7,9.59 8.85,9.53 8.97,9.41 C9.09,9.29 9.15,9.15 9.15,8.97 C9.15,8.79 9.09,8.65 8.97,8.53 C8.85,8.41 8.71,8.35 8.53,8.35 C8.35,8.35 8.21,8.41 8.09,8.53 C7.97,8.65 7.91,8.79 7.91,8.97 C7.91,9.15 7.97,9.29 8.09,9.41 C8.21,9.53 8.35,9.59 8.53,9.59 Z" })))));
|
|
384
|
+
|
|
321
385
|
const Reset = () => (h("svg", { "data-testid": "reset", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16" },
|
|
322
386
|
h("path", { d: "M8,2A6,6,0,0,0,2,8H0l2.5,3.5L5,8H3A5,5,0,1,1,13,8a.41.41,0,0,0,0,.19.54.54,0,0,0,.1.16h0a.54.54,0,0,0,.16.1.47.47,0,0,0,.38,0A.51.51,0,0,0,14,8.19.41.41,0,0,0,14,8,6,6,0,0,0,8,2ZM9.93,12.62h0a.5.5,0,0,0,.38.92h0a.5.5,0,0,0,.27-.66A.49.49,0,0,0,9.93,12.62ZM8,13a.51.51,0,1,0,.35.15A.47.47,0,0,0,8,13Zm5.28-3.37a.51.51,0,0,0-.66.28h0a.51.51,0,0,0,.27.66.5.5,0,0,0,.65-.27h0A.52.52,0,0,0,13.28,9.63Zm-1.74,1.9h0a.5.5,0,0,0,0,.71.48.48,0,0,0,.7,0h0a.48.48,0,0,0,0-.7A.5.5,0,0,0,11.54,11.53Z" })));
|
|
323
387
|
|
|
@@ -339,6 +403,9 @@ const ShowOnlyNearby = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", vi
|
|
|
339
403
|
const Snapshots = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "snapshots" },
|
|
340
404
|
h("path", { d: "M13.5,2h-3A1.5,1.5,0,0,0,9,3.5v2A1.5,1.5,0,0,0,10.5,7h3A1.5,1.5,0,0,0,15,5.5v-2A1.5,1.5,0,0,0,13.5,2ZM14,5.5a.5.5,0,0,1-.5.5h-3a.5.5,0,0,1-.5-.5v-2a.5.5,0,0,1,.5-.5h3a.5.5,0,0,1,.5.5ZM13.5,9h-3A1.5,1.5,0,0,0,9,10.5v2A1.5,1.5,0,0,0,10.5,14h3A1.5,1.5,0,0,0,15,12.5v-2A1.5,1.5,0,0,0,13.5,9Zm.5,3.5a.5.5,0,0,1-.5.5h-3a.5.5,0,0,1-.5-.5v-2a.5.5,0,0,1,.5-.5h3a.5.5,0,0,1,.5.5ZM5.5,9h-3A1.5,1.5,0,0,0,1,10.5v2A1.5,1.5,0,0,0,2.5,14h3A1.5,1.5,0,0,0,7,12.5v-2A1.5,1.5,0,0,0,5.5,9ZM6,12.5a.5.5,0,0,1-.5.5h-3a.5.5,0,0,1-.5-.5v-2a.5.5,0,0,1,.5-.5h3a.5.5,0,0,1,.5.5ZM5.5,2h-3A1.5,1.5,0,0,0,1,3.5v2A1.5,1.5,0,0,0,2.5,7h3A1.5,1.5,0,0,0,7,5.5v-2A1.5,1.5,0,0,0,5.5,2ZM6,5.5a.5.5,0,0,1-.5.5h-3A.5.5,0,0,1,2,5.5v-2A.5.5,0,0,1,2.5,3h3a.5.5,0,0,1,.5.5Z" })));
|
|
341
405
|
|
|
406
|
+
const SquareDotOutline = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "square-dot-outline" },
|
|
407
|
+
h("path", { d: "M11 4.53c0-.28-.22-.5-.5-.5L4.51 4a.47.47 0 0 0-.35.15.51.51 0 0 0-.15.35v6.02c0 .28.22.5.5.5l5.99.03c.13 0 .26-.05.35-.15a.51.51 0 0 0 .15-.35V4.53Zm-1 5.52-4.99-.03V5l4.99.03v5.02ZM3.5 13c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.23-.5-.5-.5ZM5.49 13c-.28 0-.5.22-.5.5s.22.5.5.5h.01c.28 0 .5-.22.5-.5s-.23-.5-.51-.5ZM1.5 7c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM1.5 9c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM1.5 11c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM1.5 13c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM7.5 13c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.23-.5-.5-.5ZM9.5 13c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.23-.5-.5-.5ZM11.49 13c-.28 0-.5.22-.5.5s.22.5.5.5h.01c.28 0 .5-.22.5-.5s-.23-.5-.51-.5ZM13.5 13c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.23-.5-.5-.5ZM1.5 5c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM1.5 3c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 7c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 9c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 11c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 5c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM13.5 3c-.28 0-.5.22-.5.5 0 .29.22.5.5.5s.5-.23.5-.5-.22-.5-.5-.5ZM7.5 2c.28 0 .5-.22.5-.5 0-.29-.22-.5-.5-.5s-.5.23-.5.5.22.5.5.5ZM1.51 1H1.5c-.28 0-.5.22-.5.5s.23.5.51.5.5-.22.5-.5-.22-.5-.5-.5ZM3.5 1c-.28 0-.5.22-.5.5s.23.5.5.5.5-.22.5-.5-.22-.5-.5-.5ZM5.51 2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H5.5c-.28 0-.5.22-.5.5s.23.5.51.5ZM13.5 1c-.28 0-.5.23-.5.5s.22.5.5.5.5-.22.5-.5c0-.29-.22-.5-.5-.5ZM9.5 2c.28 0 .5-.22.5-.5S9.78 1 9.5 1s-.5.22-.5.5.23.5.5.5ZM11.5 1h-.01c-.28 0-.5.22-.5.5s.23.5.51.5.5-.22.5-.5-.22-.5-.5-.5Z" })));
|
|
408
|
+
|
|
342
409
|
const Star = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "star" },
|
|
343
410
|
h("path", { d: "M14.78,6.43a.49.49,0,0,0-.4-.34l-4.1-.6L8.45,1.78a.5.5,0,0,0-.9,0L5.72,5.49l-4.1.6a.49.49,0,0,0-.4.34.5.5,0,0,0,.12.51l3,2.89-.7,4.09a.48.48,0,0,0,.2.48.47.47,0,0,0,.52,0L8,12.52l3.67,1.92a.47.47,0,0,0,.52,0,.48.48,0,0,0,.2-.48l-.7-4.09,3-2.89A.5.5,0,0,0,14.78,6.43Zm-4,2.87a.49.49,0,0,0-.15.44l.57,3.35-3-1.58a.47.47,0,0,0-.46,0l-3,1.58.57-3.35a.49.49,0,0,0-.15-.44L2.77,6.93l3.35-.48a.52.52,0,0,0,.38-.28l1.5-3,1.5,3a.52.52,0,0,0,.38.28l3.35.48Z" })));
|
|
344
411
|
|
|
@@ -359,9 +426,15 @@ const TeleportToward = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", vi
|
|
|
359
426
|
const Turtle = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "turtle" },
|
|
360
427
|
h("path", { d: "M13.5,5a.5.5,0,0,0-.35.85.5.5,0,1,0,.7-.7A.47.47,0,0,0,13.5,5Zm2.18-.92a2.15,2.15,0,0,0-.43-.74A1.08,1.08,0,0,0,14.5,3h-2a1.08,1.08,0,0,0-.75.34,2.67,2.67,0,0,0-.57,1.22c0,.06,0,.15,0,.22a3.85,3.85,0,0,0-1.06-1.07A4.62,4.62,0,0,0,7.5,3a4.93,4.93,0,0,0-3.2,1,6.24,6.24,0,0,0-2,3.43A9.75,9.75,0,0,0,2,9.18l-1.73.87A.5.5,0,0,0,.5,11H3.33l.27.18-.55,1.1a.51.51,0,0,0,0,.48A.52.52,0,0,0,3.5,13h2a.51.51,0,0,0,.5-.5v-.6a11,11,0,0,0,1.5.1,7.78,7.78,0,0,0,2.5-.38v.88a.51.51,0,0,0,.5.5h2a.52.52,0,0,0,.43-.24.51.51,0,0,0,0-.48l-.89-1.78A6.11,6.11,0,0,0,13.86,8H15.5a.51.51,0,0,0,.5-.5v-1A7.36,7.36,0,0,0,15.68,4.08ZM3,9.17H3A8,8,0,0,1,3.7,6.43,4.48,4.48,0,0,1,5,4.74,4,4,0,0,1,7.5,4a3.55,3.55,0,0,1,2,.54,3.27,3.27,0,0,1,1.27,1.84,4.72,4.72,0,0,1,.17.81,1.7,1.7,0,0,1,0,.21,3.75,3.75,0,0,1-1.72,2,5.38,5.38,0,0,1-2.47.53A10.75,10.75,0,0,1,4,9.46C3.57,9.36,3.25,9.25,3,9.17ZM5,12H4.31l.21-.42.48.14Zm6,0v-.72a.24.24,0,0,0,0-.08l.24-.13.46.93Zm4-5H13.5a.51.51,0,0,0-.49.38h0a4.78,4.78,0,0,1-1.09,1.88A5.71,5.71,0,0,1,7.5,11a8.87,8.87,0,0,1-2.1-.22,9.13,9.13,0,0,0,1.4.11,6.27,6.27,0,0,0,2.94-.65A4.78,4.78,0,0,0,12,7.7h0l0-.19v-1a6.55,6.55,0,0,1,.26-2.08A1.38,1.38,0,0,1,12.47,4l0,0h2a.41.41,0,0,1,.11.12A5.06,5.06,0,0,1,15,6.5Z" })));
|
|
361
428
|
|
|
429
|
+
const Update = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "update" },
|
|
430
|
+
h("path", { d: "M11.27 12.42A5.5 5.5 0 0 1 2.5 8H4L2 5 0 8h1.5A6.5 6.5 0 0 0 8 14.5a6.42 6.42 0 0 0 3.87-1.28.5.5 0 1 0-.6-.8ZM14.5 8A6.5 6.5 0 0 0 8 1.5a6.42 6.42 0 0 0-3.87 1.28.5.5 0 0 0 .6.8A5.5 5.5 0 0 1 13.5 8H12l2 3 2-3h-1.5Z" })));
|
|
431
|
+
|
|
362
432
|
const VersionHistory = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "version-history" },
|
|
363
433
|
h("path", { d: "M7.91,5.5a.5.5,0,0,0-.5.5V8.94l1.21,1.39a.5.5,0,0,0,.76-.66l-1-1.11V6A.5.5,0,0,0,7.91,5.5ZM8,1.5A6.5,6.5,0,0,0,1.5,8H0l2,3L4,8H2.5a5.5,5.5,0,1,1,2.23,4.42.5.5,0,0,0-.7.1.5.5,0,0,0,.1.7A6.42,6.42,0,0,0,8,14.5a6.5,6.5,0,0,0,0-13Z" })));
|
|
364
434
|
|
|
435
|
+
const Views = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "views" },
|
|
436
|
+
h("path", { d: "M12.49 5.97v-.03c0-.07-.02-.13-.05-.19a.27.27 0 0 0-.07-.08.284.284 0 0 0-.1-.09c-.02-.01-.02-.03-.04-.04L8.27 3.56a.508.508 0 0 0-.45 0L3.9 5.51c-.11.03-.21.11-.28.22l-.02.02-.01.02c-.03.07-.05.13-.05.2 0 .01-.01.02-.01.04v4.63c0 .19.11.36.28.45l4 1.99h.01a.465.465 0 0 0 .42 0h.01l3.97-1.96a.5.5 0 0 0 .28-.45L12.48 6l.01-.03ZM8.04 4.55l2.84 1.42-2.83 1.45-2.88-1.44 2.87-1.43ZM4.53 6.78l3 1.5v3.52l-3-1.5V6.77v.01Zm4.01 5.02V8.29l2.96-1.51v3.55L8.54 11.8ZM1.5 5c-.28 0-.5-.22-.5-.5V1h3.5c.28 0 .5.22.5.5s-.22.5-.5.5H2v2.5c0 .28-.22.5-.5.5Zm0 5.99c-.28 0-.5.22-.5.5v3.5h3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H2v-2.5c0-.28-.22-.5-.5-.5ZM14.5 5c.28 0 .5-.22.5-.5V1h-3.5c-.28 0-.5.22-.5.5s.22.5.5.5H14v2.5c0 .28.22.5.5.5Zm0 5.99c.28 0 .5.22.5.5v3.5h-3.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5H14v-2.5c0-.28.22-.5.5-.5Z" })));
|
|
437
|
+
|
|
365
438
|
const VisibilityHidden = () => (h("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", "data-testid": "visibility-hidden" },
|
|
366
439
|
h("path", { d: "M13.35,2.65a.48.48,0,0,0-.7,0l-.78.77a8.71,8.71,0,0,0-8.52.41A6.57,6.57,0,0,0,.51,7.89v.22a6.58,6.58,0,0,0,2.71,4l-.57.58a.49.49,0,0,0,.7.7l10-10A.48.48,0,0,0,13.35,2.65ZM9.73,5.56A3,3,0,0,0,5.56,9.73L3.94,11.35l0,0A5.49,5.49,0,0,1,1.53,8,5.49,5.49,0,0,1,3.9,4.67,7.52,7.52,0,0,1,8,3.5a7.67,7.67,0,0,1,3.12.67Zm3.61-1.2-.72.72A5.45,5.45,0,0,1,14.47,8a5.49,5.49,0,0,1-2.37,3.33A7.52,7.52,0,0,1,8,12.5a8.15,8.15,0,0,1-2.41-.38l-.78.78A8.9,8.9,0,0,0,8,13.5a8.53,8.53,0,0,0,4.65-1.33,6.57,6.57,0,0,0,2.84-4.06V7.89A6.56,6.56,0,0,0,13.34,4.36Z" })));
|
|
367
440
|
|
|
@@ -398,12 +471,16 @@ function getSvg(name) {
|
|
|
398
471
|
return h(Annotation, null);
|
|
399
472
|
case 'arrow-filled':
|
|
400
473
|
return h(ArrowFilled, null);
|
|
474
|
+
case 'arrow-left-circled':
|
|
475
|
+
return h(ArrowLeftCircled, null);
|
|
401
476
|
case 'arrow-line-left':
|
|
402
477
|
return h(ArrowLineLeft, null);
|
|
403
478
|
case 'arrow-line-right':
|
|
404
479
|
return h(ArrowLineRight, null);
|
|
405
480
|
case 'arrow-partial':
|
|
406
481
|
return h(ArrowPartial, null);
|
|
482
|
+
case 'arrow-right-circled':
|
|
483
|
+
return h(ArrowRightCircled, null);
|
|
407
484
|
case 'arrow-triangle-left':
|
|
408
485
|
return h(ArrowTriangleLeft, null);
|
|
409
486
|
case 'arrow-triangle-right':
|
|
@@ -426,6 +503,8 @@ function getSvg(name) {
|
|
|
426
503
|
return h(BoxSelect, null);
|
|
427
504
|
case 'camera':
|
|
428
505
|
return h(Camera, null);
|
|
506
|
+
case 'camera-add':
|
|
507
|
+
return h(CameraAdd, null);
|
|
429
508
|
case 'caret-down':
|
|
430
509
|
return h(CaretDown, null);
|
|
431
510
|
case 'caret-left':
|
|
@@ -434,6 +513,8 @@ function getSvg(name) {
|
|
|
434
513
|
return h(CaretRight, null);
|
|
435
514
|
case 'caret-up':
|
|
436
515
|
return h(CaretUp, null);
|
|
516
|
+
case 'caution':
|
|
517
|
+
return h(Caution, null);
|
|
437
518
|
case 'check':
|
|
438
519
|
return h(Check, null);
|
|
439
520
|
case 'check-circle':
|
|
@@ -458,6 +539,8 @@ function getSvg(name) {
|
|
|
458
539
|
return h(CollapseAll, null);
|
|
459
540
|
case 'columns':
|
|
460
541
|
return h(Columns, null);
|
|
542
|
+
case 'columns-add':
|
|
543
|
+
return h(ColumnsAdd, null);
|
|
461
544
|
case 'comment-add':
|
|
462
545
|
return h(CommentAdd, null);
|
|
463
546
|
case 'comment-filled':
|
|
@@ -468,6 +551,10 @@ function getSvg(name) {
|
|
|
468
551
|
return h(CommentResolve, null);
|
|
469
552
|
case 'comment-show':
|
|
470
553
|
return h(CommentShow, null);
|
|
554
|
+
case 'compare':
|
|
555
|
+
return h(Compare, null);
|
|
556
|
+
case 'compress':
|
|
557
|
+
return h(Compress, null);
|
|
471
558
|
case 'copy':
|
|
472
559
|
return h(Copy, null);
|
|
473
560
|
case 'cross-section':
|
|
@@ -476,6 +563,8 @@ function getSvg(name) {
|
|
|
476
563
|
return h(CubeOrthographic, null);
|
|
477
564
|
case 'cube-perspective':
|
|
478
565
|
return h(CubePerspective, null);
|
|
566
|
+
case 'cube-stack':
|
|
567
|
+
return h(CubeStack, null);
|
|
479
568
|
case 'delete':
|
|
480
569
|
return h(Delete, null);
|
|
481
570
|
case 'download':
|
|
@@ -486,12 +575,16 @@ function getSvg(name) {
|
|
|
486
575
|
return h(Ellipse, null);
|
|
487
576
|
case 'error-circle':
|
|
488
577
|
return h(ErrorCircle, null);
|
|
578
|
+
case 'expand':
|
|
579
|
+
return h(Expand, null);
|
|
489
580
|
case 'expand-all':
|
|
490
581
|
return h(ExpandAll, null);
|
|
491
582
|
case 'export':
|
|
492
583
|
return h(Export, null);
|
|
493
584
|
case 'file':
|
|
494
585
|
return h(File, null);
|
|
586
|
+
case 'file-folder':
|
|
587
|
+
return h(FileFolder, null);
|
|
495
588
|
case 'file-pdf':
|
|
496
589
|
return h(FilePdf, null);
|
|
497
590
|
case 'fit-all':
|
|
@@ -556,12 +649,20 @@ function getSvg(name) {
|
|
|
556
649
|
return h(PinText, null);
|
|
557
650
|
case 'pin-text-fill':
|
|
558
651
|
return h(PinTextFill, null);
|
|
652
|
+
case 'pin-text-square':
|
|
653
|
+
return h(PinTextSquare, null);
|
|
559
654
|
case 'plus':
|
|
560
655
|
return h(Plus, null);
|
|
656
|
+
case 'plus-with-arrow':
|
|
657
|
+
return h(PlusWithArrow, null);
|
|
658
|
+
case 'pmi':
|
|
659
|
+
return h(PMI, null);
|
|
561
660
|
case 'precise-measurement':
|
|
562
661
|
return h(PreciseMeasurement, null);
|
|
563
662
|
case 'rabbit':
|
|
564
663
|
return h(Rabbit, null);
|
|
664
|
+
case 'report':
|
|
665
|
+
return h(Report, null);
|
|
565
666
|
case 'reset':
|
|
566
667
|
return h(Reset, null);
|
|
567
668
|
case 'resize':
|
|
@@ -578,6 +679,8 @@ function getSvg(name) {
|
|
|
578
679
|
return h(Snapshots, null);
|
|
579
680
|
case 'star':
|
|
580
681
|
return h(Star, null);
|
|
682
|
+
case 'square-dot-outline':
|
|
683
|
+
return h(SquareDotOutline, null);
|
|
581
684
|
case 'tape-measure':
|
|
582
685
|
return h(TapeMeasure, null);
|
|
583
686
|
case 'teleport-and-align':
|
|
@@ -588,8 +691,12 @@ function getSvg(name) {
|
|
|
588
691
|
return h(Teleport, null);
|
|
589
692
|
case 'turtle':
|
|
590
693
|
return h(Turtle, null);
|
|
694
|
+
case 'update':
|
|
695
|
+
return h(Update, null);
|
|
591
696
|
case 'version-history':
|
|
592
697
|
return h(VersionHistory, null);
|
|
698
|
+
case 'views':
|
|
699
|
+
return h(Views, null);
|
|
593
700
|
case 'visibility-hidden':
|
|
594
701
|
return h(VisibilityHidden, null);
|
|
595
702
|
case 'visibility-partial':
|
package/dist/esm/index.js
CHANGED
|
@@ -8,17 +8,17 @@ export { C as CardGroup } from './card-group-4e8e0421.js';
|
|
|
8
8
|
export { C as Chip } from './chip-4e568eee.js';
|
|
9
9
|
export { C as ClickToEditTextField } from './click-to-edit-text-field-d9b27cd0.js';
|
|
10
10
|
export { C as Collapsible } from './collapsible-b52960e6.js';
|
|
11
|
-
export { C as
|
|
12
|
-
export { C as
|
|
13
|
-
export { C as
|
|
11
|
+
export { C as ColorCirclePicker } from './color-circle-picker-35ad3b3e.js';
|
|
12
|
+
export { C as ColorPicker } from './color-picker-1d67effe.js';
|
|
13
|
+
export { C as ColorSwatch } from './color-swatch-0e62d13d.js';
|
|
14
14
|
export { C as ContextMenu } from './context-menu-12f1afe1.js';
|
|
15
|
-
export { D as Dialog } from './dialog-
|
|
15
|
+
export { D as Dialog } from './dialog-1cef715c.js';
|
|
16
16
|
export { D as DraggablePopover } from './draggable-popover-8ef3aec6.js';
|
|
17
17
|
export { D as DropdownMenu } from './dropdown-menu-1598ba20.js';
|
|
18
18
|
export { E as Expandable } from './expandable-b487cb00.js';
|
|
19
19
|
export { H as HelpTooltip } from './help-tooltip-c2f0d996.js';
|
|
20
|
-
export { I as Icon } from './icon-
|
|
21
|
-
export { I as IconButton } from './icon-button-
|
|
20
|
+
export { I as Icon } from './icon-bf8df898.js';
|
|
21
|
+
export { I as IconButton } from './icon-button-a4bdeabc.js';
|
|
22
22
|
export { L as LogoLoading } from './logo-loading-3c7fa23d.js';
|
|
23
23
|
export { M as Menu } from './menu-daa7f9c9.js';
|
|
24
24
|
export { M as MenuDivider } from './menu-divider-87c888cb.js';
|
|
@@ -28,17 +28,21 @@ export { R as Radio } from './radio-39c11ba4.js';
|
|
|
28
28
|
export { R as RadioGroup } from './radio-group-7c35d2f0.js';
|
|
29
29
|
export { R as Resizable } from './resizable-a147709b.js';
|
|
30
30
|
export { R as ResultList } from './result-list-16c6afbd.js';
|
|
31
|
-
export { S as SearchBar } from './search-bar-
|
|
32
|
-
export { S as Select } from './select-
|
|
33
|
-
export { S as Slider } from './slider-
|
|
31
|
+
export { S as SearchBar } from './search-bar-8d18626e.js';
|
|
32
|
+
export { S as Select } from './select-78aeff96.js';
|
|
33
|
+
export { S as Slider } from './slider-3d8545e3.js';
|
|
34
34
|
export { S as Spinner } from './spinner-afccea51.js';
|
|
35
|
+
export { T as Tab } from './tab-c76332b0.js';
|
|
36
|
+
export { T as Tabs } from './tabs-e9f6dcbe.js';
|
|
35
37
|
export { T as TextField } from './text-field-32ac877e.js';
|
|
36
38
|
export { T as Toast } from './toast-255648ff.js';
|
|
37
39
|
export { T as Toggle } from './toggle-1fe22e4f.js';
|
|
38
|
-
export { T as Tooltip } from './tooltip-
|
|
40
|
+
export { T as Tooltip } from './tooltip-db8ebd41.js';
|
|
39
41
|
import './index-72f28b71.js';
|
|
40
42
|
import './slots-fbb5afb3.js';
|
|
41
43
|
import './index-9c609209.js';
|
|
42
|
-
import './
|
|
44
|
+
import './lib-73fbca8b.js';
|
|
45
|
+
import './icon-helper-94d45002.js';
|
|
43
46
|
import './templates-797420bf.js';
|
|
44
47
|
import './tslib.es6-99cd0de8.js';
|
|
48
|
+
import './dom-9d0f7bf4.js';
|
package/dist/esm/loader.js
CHANGED
|
@@ -11,7 +11,7 @@ const patchEsm = () => {
|
|
|
11
11
|
const defineCustomElements = (win, options) => {
|
|
12
12
|
if (typeof window === 'undefined') return Promise.resolve();
|
|
13
13
|
return patchEsm().then(() => {
|
|
14
|
-
return bootstrapLazy([["vertex-click-to-edit-textfield",[[6,"vertex-click-to-edit-textfield",{"placeholder":[1],"fontSize":[1,"font-size"],"disabled":[516],"multiline":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"value":[1032],"autoFocus":[4,"auto-focus"],"editing":[1540],"hasError":[4,"has-error"]}]]],["vertex-collapsible",[[1,"vertex-collapsible",{"label":[1],"open":[1540]}]]],["vertex-context-menu",[[1,"vertex-context-menu",{"targetSelector":[1,"target-selector"],"animated":[4],"position":[32],"open":[32]}]]],["vertex-dialog",[[1,"vertex-dialog",{"open":[1540],"fullscreen":[4],"resizable":[4],"width":[32],"height":[32],"minWidth":[32],"minHeight":[32],"maxWidth":[32],"maxHeight":[32],"isResizing":[32]},[[4,"keydown","keyDownListener"]]]]],["vertex-draggable-popover",[[1,"vertex-draggable-popover",{"position":[1],"boundarySelector":[1,"boundary-selector"],"boundaryPadding":[2,"boundary-padding"],"anchorPosition":[32],"lastPosition":[32],"dragging":[32]}]]],["vertex-dropdown-menu",[[1,"vertex-dropdown-menu",{"animated":[4],"placement":[1],"open":[32]}]]],["vertex-help-tooltip",[[1,"vertex-help-tooltip",{"animated":[4],"placement":[1],"open":[32]}]]],["vertex-search-bar",[[6,"vertex-search-bar",{"variant":[1],"disabled":[4],"triggerCharacter":[1,"trigger-character"],"breakCharacters":[16],"resultItems":[16],"placement":[1],"value":[1],"placeholder":[1],"replacements":[1040],"replacementUriType":[1,"replacement-uri-type"],"cursorPosition":[32],"displayedElements":[32],"hasTriggered":[32]}]]],["vertex-select",[[1,"vertex-select",{"value":[513],"placeholder":[513],"disabled":[516],"animated":[4],"hideSelected":[4,"hide-selected"],"resizeObserverFactory":[16],"open":[32],"position":[32],"displayValue":[32]}]]],["vertex-slider",[[1,"vertex-slider",{"min":[2],"max":[2],"valueLabelDisplay":[1,"value-label-display"],"step":[8],"size":[1],"value":[1026],"disabled":[4]}]]],["vertex-toast",[[1,"vertex-toast",{"content":[1],"placement":[1],"duration":[2],"animated":[4],"open":[4],"type":[1],"isOpen":[32]}]]],["vertex-color-circle-picker",[[1,"vertex-color-circle-picker",{"colors":[1],"supplementalColors":[1,"supplemental-colors"],"theme":[513],"lightenPercentage":[2,"lighten-percentage"],"darkenPercentage":[2,"darken-percentage"],"selected":[1537],"direction":[1]}]]],["vertex-color-picker",[[1,"vertex-color-picker",{"value":[1537],"disabled":[4]}]]],["vertex-toggle",[[1,"vertex-toggle",{"variant":[1],"disabled":[4],"checked":[1540]}]]],["vertex-avatar",[[1,"vertex-avatar",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"value":[1],"active":[4],"variant":[1]}]]],["vertex-avatar-group",[[1,"vertex-avatar-group"]]],["vertex-badge",[[1,"vertex-badge",{"badgeText":[1,"badge-text"],"badgeColor":[1,"badge-color"]}]]],["vertex-button",[[1,"vertex-button",{"type":[1],"color":[1],"variant":[1],"size":[1],"expand":[1],"href":[1],"target":[1],"disabled":[516]}]]],["vertex-card",[[1,"vertex-card",{"mode":[1]}]]],["vertex-card-group",[[1,"vertex-card-group",{"selected":[516],"hovered":[516],"expanded":[516]}]]],["vertex-chip",[[1,"vertex-chip",{"variant":[1],"color":[1]}]]],["vertex-logo-loading",[[1,"vertex-logo-loading"]]],["vertex-menu-divider",[[1,"vertex-menu-divider"]]],["vertex-menu-item",[[1,"vertex-menu-item",{"disabled":[516]}]]],["vertex-radio",[[2,"vertex-radio",{"disabled":[516],"value":[513],"label":[513],"name":[513],"checked":[516]}]]],["vertex-radio-group",[[1,"vertex-radio-group",{"name":[513],"value":[1537]}]]],["vertex-resizable",[[1,"vertex-resizable",{"horizontalDirection":[1,"horizontal-direction"],"verticalDirection":[1,"vertical-direction"],"initialHorizontalScale":[2,"initial-horizontal-scale"],"initialVerticalScale":[2,"initial-vertical-scale"],"initializeWithOffset":[4,"initialize-with-offset"],"parentSelector":[1,"parent-selector"],"verticalSiblingSelector":[1,"vertical-sibling-selector"],"horizontalSiblingSelector":[1,"horizontal-sibling-selector"],"contentSelector":[1,"content-selector"],"position":[1],"dimensionsComputed":[1540,"dimensions-computed"],"width":[32],"minWidth":[32],"maxWidth":[32],"height":[32],"minHeight":[32],"maxHeight":[32],"left":[32],"top":[32],"hoveredLocation":[32],"dragStartLocation":[32],"updateDimensions":[64]}]]],["vertex-spinner",[[1,"vertex-spinner",{"color":[1],"size":[1]}]]],["vertex-expandable",[[1,"vertex-expandable",{"expanded":[1540],"expanding":[1540],"collapsing":[1540],"controlled":[516],"expandType":[513,"expand-type"],"animated":[4],"contentScrollHeight":[32]}]]],["vertex-result-list",[[1,"vertex-result-list",{"items":[16],"itemsJson":[1,"items"],"viewportStartIndex":[1026,"viewport-start-index"],"viewportEndIndex":[1026,"viewport-end-index"],"resultHeight":[1026,"result-height"],"overScanCount":[2,"over-scan-count"],"placement":[1],"position":[1],"open":[4],"listHeight":[32],"parsedResults":[32],"scrollTop":[32],"lastStartIndex":[32],"lastFocusedIndex":[32],"stateMap":[32]}]]],["vertex-textfield",[[6,"vertex-textfield",{"type":[1],"name":[1],"variant":[1],"fontSize":[1,"font-size"],"multiline":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"placeholder":[1],"autoFocus":[4,"auto-focus"],"autoComplete":[1,"auto-complete"],"autoCorrect":[1,"auto-correct"],"value":[1032],"disabled":[516],"hasError":[4,"has-error"],"updateInput":[64],"blurInput":[64],"getInputValue":[64],"selectAll":[64]}]]],["vertex-
|
|
14
|
+
return bootstrapLazy([["vertex-click-to-edit-textfield",[[6,"vertex-click-to-edit-textfield",{"placeholder":[1],"fontSize":[1,"font-size"],"disabled":[516],"multiline":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"value":[1032],"autoFocus":[4,"auto-focus"],"editing":[1540],"hasError":[4,"has-error"]}]]],["vertex-collapsible",[[1,"vertex-collapsible",{"label":[1],"open":[1540]}]]],["vertex-context-menu",[[1,"vertex-context-menu",{"targetSelector":[1,"target-selector"],"animated":[4],"position":[32],"open":[32]}]]],["vertex-dialog",[[1,"vertex-dialog",{"open":[1540],"fullscreen":[4],"resizable":[4],"width":[32],"height":[32],"minWidth":[32],"minHeight":[32],"maxWidth":[32],"maxHeight":[32],"isResizing":[32]},[[4,"keydown","keyDownListener"]]]]],["vertex-draggable-popover",[[1,"vertex-draggable-popover",{"position":[1],"boundarySelector":[1,"boundary-selector"],"boundaryPadding":[2,"boundary-padding"],"anchorPosition":[32],"lastPosition":[32],"dragging":[32]}]]],["vertex-dropdown-menu",[[1,"vertex-dropdown-menu",{"animated":[4],"placement":[1],"open":[32]}]]],["vertex-help-tooltip",[[1,"vertex-help-tooltip",{"animated":[4],"placement":[1],"open":[32]}]]],["vertex-search-bar",[[6,"vertex-search-bar",{"variant":[1],"disabled":[4],"triggerCharacter":[1,"trigger-character"],"breakCharacters":[16],"resultItems":[16],"placement":[1],"value":[1],"placeholder":[1],"replacements":[1040],"replacementUriType":[1,"replacement-uri-type"],"cursorPosition":[32],"displayedElements":[32],"hasTriggered":[32]}]]],["vertex-select",[[1,"vertex-select",{"value":[513],"placeholder":[513],"disabled":[516],"animated":[4],"hideSelected":[4,"hide-selected"],"resizeObserverFactory":[16],"open":[32],"position":[32],"displayValue":[32]}]]],["vertex-slider",[[1,"vertex-slider",{"min":[2],"max":[2],"valueLabelDisplay":[1,"value-label-display"],"step":[8],"size":[1],"value":[1026],"disabled":[4]}]]],["vertex-toast",[[1,"vertex-toast",{"content":[1],"placement":[1],"duration":[2],"animated":[4],"open":[4],"type":[1],"isOpen":[32]}]]],["vertex-color-circle-picker",[[1,"vertex-color-circle-picker",{"colors":[1],"supplementalColors":[1,"supplemental-colors"],"theme":[513],"lightenPercentage":[2,"lighten-percentage"],"darkenPercentage":[2,"darken-percentage"],"selected":[1537],"direction":[1]}]]],["vertex-color-picker",[[1,"vertex-color-picker",{"value":[1537],"size":[513],"variant":[513],"disabled":[4]}]]],["vertex-toggle",[[1,"vertex-toggle",{"variant":[1],"disabled":[4],"checked":[1540]}]]],["vertex-avatar",[[1,"vertex-avatar",{"firstName":[1,"first-name"],"lastName":[1,"last-name"],"value":[1],"active":[4],"variant":[1]}]]],["vertex-avatar-group",[[1,"vertex-avatar-group"]]],["vertex-badge",[[1,"vertex-badge",{"badgeText":[1,"badge-text"],"badgeColor":[1,"badge-color"]}]]],["vertex-button",[[1,"vertex-button",{"type":[1],"color":[1],"variant":[1],"size":[1],"expand":[1],"href":[1],"target":[1],"disabled":[516]}]]],["vertex-card",[[1,"vertex-card",{"mode":[1]}]]],["vertex-card-group",[[1,"vertex-card-group",{"selected":[516],"hovered":[516],"expanded":[516]}]]],["vertex-chip",[[1,"vertex-chip",{"variant":[1],"color":[1]}]]],["vertex-logo-loading",[[1,"vertex-logo-loading"]]],["vertex-menu-divider",[[1,"vertex-menu-divider"]]],["vertex-menu-item",[[1,"vertex-menu-item",{"disabled":[516]}]]],["vertex-radio",[[2,"vertex-radio",{"disabled":[516],"value":[513],"label":[513],"name":[513],"checked":[516]}]]],["vertex-radio-group",[[1,"vertex-radio-group",{"name":[513],"value":[1537]}]]],["vertex-resizable",[[1,"vertex-resizable",{"horizontalDirection":[1,"horizontal-direction"],"verticalDirection":[1,"vertical-direction"],"initialHorizontalScale":[2,"initial-horizontal-scale"],"initialVerticalScale":[2,"initial-vertical-scale"],"initializeWithOffset":[4,"initialize-with-offset"],"parentSelector":[1,"parent-selector"],"verticalSiblingSelector":[1,"vertical-sibling-selector"],"horizontalSiblingSelector":[1,"horizontal-sibling-selector"],"contentSelector":[1,"content-selector"],"position":[1],"dimensionsComputed":[1540,"dimensions-computed"],"width":[32],"minWidth":[32],"maxWidth":[32],"height":[32],"minHeight":[32],"maxHeight":[32],"left":[32],"top":[32],"hoveredLocation":[32],"dragStartLocation":[32],"updateDimensions":[64]}]]],["vertex-spinner",[[1,"vertex-spinner",{"color":[1],"size":[1]}]]],["vertex-tab",[[1,"vertex-tab",{"label":[1],"active":[4]}]]],["vertex-tabs",[[1,"vertex-tabs",{"active":[1025],"labels":[32],"activeBounds":[32],"activeButtonEl":[32]}]]],["vertex-expandable",[[1,"vertex-expandable",{"expanded":[1540],"expanding":[1540],"collapsing":[1540],"controlled":[516],"expandType":[513,"expand-type"],"animated":[4],"contentScrollHeight":[32]}]]],["vertex-result-list",[[1,"vertex-result-list",{"items":[16],"itemsJson":[1,"items"],"viewportStartIndex":[1026,"viewport-start-index"],"viewportEndIndex":[1026,"viewport-end-index"],"resultHeight":[1026,"result-height"],"overScanCount":[2,"over-scan-count"],"placement":[1],"position":[1],"open":[4],"listHeight":[32],"parsedResults":[32],"scrollTop":[32],"lastStartIndex":[32],"lastFocusedIndex":[32],"stateMap":[32]}]]],["vertex-auto-resize-textarea",[[1,"vertex-auto-resize-textarea",{"textareaSelector":[1,"textarea-selector"],"initialValue":[1,"initial-value"],"minRows":[514,"min-rows"],"maxRows":[514,"max-rows"],"textValue":[32]}]]],["vertex-textfield",[[6,"vertex-textfield",{"type":[1],"name":[1],"variant":[1],"fontSize":[1,"font-size"],"multiline":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"placeholder":[1],"autoFocus":[4,"auto-focus"],"autoComplete":[1,"auto-complete"],"autoCorrect":[1,"auto-correct"],"value":[1032],"disabled":[516],"hasError":[4,"has-error"],"updateInput":[64],"blurInput":[64],"getInputValue":[64],"selectAll":[64]}]]],["vertex-popover",[[1,"vertex-popover",{"open":[1540],"placement":[1],"position":[1025],"anchorBounds":[16],"backdrop":[4],"animated":[4],"anchorSelector":[1,"anchor-selector"],"boundarySelector":[1,"boundary-selector"],"resizeBehavior":[1,"resize-behavior"],"overflowBehavior":[16],"flipBehavior":[16],"offsetBehavior":[2,"offset-behavior"],"updateOnResize":[4,"update-on-resize"],"resizeObserverFactory":[16],"opened":[32],"computedPlacement":[32]}]]],["vertex-tooltip",[[1,"vertex-tooltip",{"content":[1],"disabled":[4],"placement":[1],"delay":[2],"animated":[4],"open":[32]}]]],["vertex-color-swatch",[[1,"vertex-color-swatch",{"variant":[513],"size":[513],"color":[513],"supplementalColor":[513,"supplemental-color"],"theme":[513],"lightenPercentage":[2,"lighten-percentage"],"darkenPercentage":[2,"darken-percentage"],"lightened":[1537],"darkened":[1537]}]]],["vertex-menu",[[1,"vertex-menu",{"animated":[4],"open":[1540],"placement":[1],"fallbackPlacements":[16],"backdrop":[4],"position":[1040],"popoverProps":[16]}]]],["vertex-icon-button",[[1,"vertex-icon-button",{"iconName":[1,"icon-name"],"disabled":[516],"variant":[1],"iconColor":[1,"icon-color"],"iconSize":[1,"icon-size"]}]]],["vertex-icon",[[1,"vertex-icon",{"name":[1],"size":[1]}]]]], options);
|
|
15
15
|
});
|
|
16
16
|
};
|
|
17
17
|
|