@devstgo/stgo-salta-components-react 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 +73 -0
- package/dist/components/DynamicLucideIcon.d.ts +7 -0
- package/dist/components/FontSizeManager.d.ts +8 -0
- package/dist/components/buttons/CardsButton.d.ts +5 -0
- package/dist/components/buttons/IconButton.d.ts +9 -0
- package/dist/components/buttons/LinkItemButton.d.ts +8 -0
- package/dist/components/buttons/MinimizeButton.d.ts +1 -0
- package/dist/components/buttons/NodosButton.d.ts +6 -0
- package/dist/components/buttons/SimulacionButton.d.ts +5 -0
- package/dist/components/buttons/index.d.ts +6 -0
- package/dist/components/control-panel.d.ts +1 -0
- package/dist/components/layout-iframe.d.ts +4 -0
- package/dist/components/layout-transparent.d.ts +3 -0
- package/dist/components/layout-world.d.ts +9 -0
- package/dist/components/layout.d.ts +5 -0
- package/dist/components/minimize-wrapper.d.ts +5 -0
- package/dist/components/modos/CardsMode.d.ts +8 -0
- package/dist/components/modos/IframeMode.d.ts +7 -0
- package/dist/components/modos/LauncherMode.d.ts +5 -0
- package/dist/components/modos/LightBoxMode.d.ts +7 -0
- package/dist/components/modos/SimulationMode.d.ts +8 -0
- package/dist/components/modos/VideoMode.d.ts +6 -0
- package/dist/components/modos/index.d.ts +6 -0
- package/dist/components/nodos/custom-modal.d.ts +7 -0
- package/dist/components/nodos/index.d.ts +4 -0
- package/dist/components/nodos/interactive-visualization.d.ts +103 -0
- package/dist/components/nodos/mobile-message.d.ts +7 -0
- package/dist/components/nodos/no-product-modal.d.ts +8 -0
- package/dist/components/overlay/gradient-overlay.d.ts +8 -0
- package/dist/components/overlay/immersive-modal.d.ts +6 -0
- package/dist/components/overlay/index.d.ts +3 -0
- package/dist/components/overlay/warp-overlay.d.ts +11 -0
- package/dist/components/point-button.d.ts +7 -0
- package/dist/components/ship-navigation.d.ts +14 -0
- package/dist/components/simulation-views/InfoCard.d.ts +15 -0
- package/dist/components/simulation-views/TabView.d.ts +10 -0
- package/dist/components/simulation-views/index.d.ts +3 -0
- package/dist/components/simulation-views/types.d.ts +85 -0
- package/dist/components/title-section.d.ts +8 -0
- package/dist/components/video-background.d.ts +5 -0
- package/dist/components/websocket-status.d.ts +1 -0
- package/dist/config.d.ts +16 -0
- package/dist/contexts/EventContext.d.ts +11 -0
- package/dist/contexts/MinimizeContext.d.ts +13 -0
- package/dist/contexts/ShowcaseContext.d.ts +12 -0
- package/dist/contexts/VideoContext.d.ts +12 -0
- package/dist/contexts/WebSocketContext.d.ts +10 -0
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/useAutoModeTimer.d.ts +1 -0
- package/dist/hooks/useScreenSize.d.ts +6 -0
- package/dist/index.d.ts +33 -0
- package/dist/pages/FullScreenPage.d.ts +8 -0
- package/dist/pages/ItemPage.d.ts +105 -0
- package/dist/pages/SlidePage.d.ts +4 -0
- package/dist/pages/WorldPage.d.ts +11 -0
- package/dist/stgo-salta-components-react.css +1 -0
- package/dist/stgo-salta-components-react.js +15389 -0
- package/dist/stgo-salta-components-react.umd.cjs +519 -0
- package/dist/utils/RouteListener.d.ts +2 -0
- package/dist/utils/utils.d.ts +19 -0
- package/package.json +64 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ClassValue } from 'clsx';
|
|
2
|
+
|
|
3
|
+
export declare function cn(...inputs: ClassValue[]): string;
|
|
4
|
+
export declare const codigoANombre: Map<string, string>;
|
|
5
|
+
export declare const nombreACodigo: Map<string, string>;
|
|
6
|
+
export declare function toTarget(pathname: string): string;
|
|
7
|
+
export declare function toVideo(pathname: string): string;
|
|
8
|
+
export declare const cinematicsStartEvent: {
|
|
9
|
+
payload: {
|
|
10
|
+
type: string;
|
|
11
|
+
action: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export declare const cinematicsEndEvent: {
|
|
15
|
+
payload: {
|
|
16
|
+
type: string;
|
|
17
|
+
action: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@devstgo/stgo-salta-components-react",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/stgo-salta-components-react.umd.cjs",
|
|
7
|
+
"module": "./dist/stgo-salta-components-react.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/stgo-salta-components-react.js",
|
|
13
|
+
"require": "./dist/stgo-salta-components-react.umd.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "tsc -b && vite build",
|
|
22
|
+
"lint": "eslint .",
|
|
23
|
+
"preview": "vite preview"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"i18next": "^25.6.0",
|
|
27
|
+
"lucide-react": "^0.574.0",
|
|
28
|
+
"motion": "^12.34.2",
|
|
29
|
+
"react": "^19.2.0",
|
|
30
|
+
"react-dom": "^19.2.0",
|
|
31
|
+
"react-i18next": "^16.2.4",
|
|
32
|
+
"react-router-dom": "^7.13.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@eslint/js": "^9.39.1",
|
|
36
|
+
"@types/node": "^24.10.1",
|
|
37
|
+
"@types/react": "^19.2.7",
|
|
38
|
+
"@types/react-dom": "^19.2.3",
|
|
39
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
40
|
+
"eslint": "^9.39.1",
|
|
41
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
42
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
43
|
+
"globals": "^16.5.0",
|
|
44
|
+
"i18next": "^25.6.0",
|
|
45
|
+
"lucide-react": "^0.574.0",
|
|
46
|
+
"motion": "^12.34.2",
|
|
47
|
+
"react-i18next": "^16.2.4",
|
|
48
|
+
"react-router-dom": "^7.13.0",
|
|
49
|
+
"typescript": "~5.9.3",
|
|
50
|
+
"typescript-eslint": "^8.48.0",
|
|
51
|
+
"vite": "^7.3.1",
|
|
52
|
+
"vite-plugin-dts": "^3.9.1"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
56
|
+
"clsx": "^2.1.1",
|
|
57
|
+
"tailwind-merge": "^3.5.0",
|
|
58
|
+
"yet-another-react-lightbox": "^3.29.1"
|
|
59
|
+
},
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public",
|
|
62
|
+
"registry": "https://registry.npmjs.org/"
|
|
63
|
+
}
|
|
64
|
+
}
|