forlogic-core 2.2.1 → 2.2.2
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/assets/docs-BEwTKYu3.css +1 -0
- package/dist/assets/docs-Bgpz6ETN.js +10752 -0
- package/dist/assets/index-SqMwTzMJ.js +97 -0
- package/dist/components/ui/combobox.d.ts +2 -1
- package/dist/exports/ui.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.html +34 -0
- package/dist/index.js +1 -1
- package/dist/mind-map/components/MindMap.d.ts +23 -0
- package/dist/mind-map/components/MindMapConnection.d.ts +12 -0
- package/dist/mind-map/components/MindMapNodeView.d.ts +24 -0
- package/dist/mind-map/components/MindMapToolbar.d.ts +26 -0
- package/dist/mind-map/hooks/useMindMapKeyboard.d.ts +15 -0
- package/dist/mind-map/hooks/useMindMapLayout.d.ts +5 -0
- package/dist/mind-map/hooks/useMindMapPanZoom.d.ts +21 -0
- package/dist/mind-map/hooks/useMindMapState.d.ts +32 -0
- package/dist/mind-map/index.d.ts +4 -0
- package/dist/mind-map/types.d.ts +91 -0
- package/dist/mind-map/utils/export-image.d.ts +9 -0
- package/dist/mind-map/utils/layout.d.ts +15 -0
- package/dist/mind-map/utils/nodeOps.d.ts +66 -0
- package/dist/mind-map/utils/serialize.d.ts +10 -0
- package/docs/STORAGE_BUCKETS.md +48 -43
- package/docs/design-system/README.md +2 -2
- package/docs/design-system/selectors.md +17 -0
- package/package.json +3 -1
package/dist/index.html
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="pt-BR">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Admin</title>
|
|
8
|
+
<meta name="author" content="ForLogic" />
|
|
9
|
+
<link rel="icon" href="https://ccjfvpnndclajkleyqkc.supabase.co/storage/v1/object/public/library-assets/favicon.png" type="image/png">
|
|
10
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
11
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
12
|
+
|
|
13
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
14
|
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=arrow_right_alt,coffee" />
|
|
15
|
+
|
|
16
|
+
<meta name="description" content="Administração do Qualiex">
|
|
17
|
+
|
|
18
|
+
<meta property="og:type" content="website" />
|
|
19
|
+
<meta property="og:title" content="Admin">
|
|
20
|
+
<meta property="og:description" content="Administração do Qualiex">
|
|
21
|
+
|
|
22
|
+
<meta name="twitter:title" content="Admin">
|
|
23
|
+
<meta name="twitter:card" content="summary">
|
|
24
|
+
<meta name="twitter:description" content="Administração do Qualiex">
|
|
25
|
+
<script type="module" crossorigin src="/assets/index-SqMwTzMJ.js"></script>
|
|
26
|
+
<link rel="modulepreload" crossorigin href="/assets/docs-Bgpz6ETN.js">
|
|
27
|
+
<link rel="stylesheet" crossorigin href="/assets/docs-BEwTKYu3.css">
|
|
28
|
+
</head>
|
|
29
|
+
|
|
30
|
+
<body>
|
|
31
|
+
<div id="root"></div>
|
|
32
|
+
</body>
|
|
33
|
+
|
|
34
|
+
</html>
|