avances en plantillas
This commit is contained in:
parent
0f84beacf1
commit
da0530d79b
2062 changed files with 598814 additions and 22 deletions
3
storage/public/dist/libs/@hotwired/turbo/CHANGELOG.md
vendored
Normal file
3
storage/public/dist/libs/@hotwired/turbo/CHANGELOG.md
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Changelog
|
||||
|
||||
Please see [our GitHub "Releases" page](https://github.com/hotwired/turbo/releases).
|
||||
18
storage/public/dist/libs/@hotwired/turbo/README.md
vendored
Normal file
18
storage/public/dist/libs/@hotwired/turbo/README.md
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Turbo
|
||||
|
||||
Turbo uses complementary techniques to dramatically reduce the amount of custom JavaScript that most web applications will need to write:
|
||||
|
||||
* Turbo Drive accelerates links and form submissions by negating the need for full page reloads.
|
||||
* Turbo Frames decompose pages into independent contexts, which scope navigation and can be lazily loaded.
|
||||
* Turbo Streams deliver page changes over WebSocket or in response to form submissions using just HTML and a set of CRUD-like actions.
|
||||
* Turbo Native lets your majestic monolith form the center of your native iOS and Android apps, with seamless transitions between web and native sections.
|
||||
|
||||
It's all done by sending HTML over the wire. And for those instances when that's not enough, you can reach for the other side of Hotwire, and finish the job with [Stimulus](https://github.com/hotwired/stimulus).
|
||||
|
||||
Read more on [turbo.hotwired.dev](https://turbo.hotwired.dev).
|
||||
|
||||
## Contributing
|
||||
|
||||
Please read [CONTRIBUTING.md](./CONTRIBUTING.md).
|
||||
|
||||
© 2026 37signals LLC.
|
||||
7256
storage/public/dist/libs/@hotwired/turbo/dist/turbo.es2017-esm.js
vendored
Normal file
7256
storage/public/dist/libs/@hotwired/turbo/dist/turbo.es2017-esm.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
7298
storage/public/dist/libs/@hotwired/turbo/dist/turbo.es2017-umd.js
vendored
Normal file
7298
storage/public/dist/libs/@hotwired/turbo/dist/turbo.es2017-umd.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
67
storage/public/dist/libs/@hotwired/turbo/package.json
vendored
Normal file
67
storage/public/dist/libs/@hotwired/turbo/package.json
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
"name": "@hotwired/turbo",
|
||||
"version": "8.0.23",
|
||||
"description": "The speed of a single-page web application without having to write any JavaScript",
|
||||
"module": "dist/turbo.es2017-esm.js",
|
||||
"main": "dist/turbo.es2017-umd.js",
|
||||
"files": [
|
||||
"dist/*.js",
|
||||
"dist/*.js.map"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/hotwired/turbo.git"
|
||||
},
|
||||
"keywords": [
|
||||
"hotwire",
|
||||
"turbo",
|
||||
"browser",
|
||||
"pushstate"
|
||||
],
|
||||
"author": "37signals LLC",
|
||||
"contributors": [
|
||||
"Jeffrey Hardy <jeff@basecamp.com>",
|
||||
"Javan Makhmali <javan@javan.us>",
|
||||
"Sam Stephenson <sstephenson@gmail.com>"
|
||||
],
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/hotwired/turbo/issues"
|
||||
},
|
||||
"homepage": "https://turbo.hotwired.dev",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@open-wc/testing": "^3.1.7",
|
||||
"@playwright/test": "~1.51.1",
|
||||
"@rollup/plugin-node-resolve": "13.1.3",
|
||||
"@web/dev-server-esbuild": "^0.3.3",
|
||||
"@web/test-runner": "^0.15.0",
|
||||
"@web/test-runner-playwright": "^0.9.0",
|
||||
"arg": "^5.0.1",
|
||||
"body-parser": "^1.20.1",
|
||||
"eslint": "^8.13.0",
|
||||
"express": "^4.18.2",
|
||||
"idiomorph": "~0.7.4",
|
||||
"multer": "^2.0.2",
|
||||
"rollup": "^2.35.1"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rm -fr dist",
|
||||
"clean:win": "rmdir /s /q dist",
|
||||
"build": "rollup -c",
|
||||
"build:win": "rollup -c",
|
||||
"watch": "rollup -wc",
|
||||
"start": "node src/tests/server.mjs",
|
||||
"test": "yarn test:unit && yarn test:browser",
|
||||
"test:browser": "playwright test",
|
||||
"test:unit": "NODE_OPTIONS=--inspect web-test-runner",
|
||||
"test:unit:win": "SET NODE_OPTIONS=--inspect & web-test-runner",
|
||||
"release": "yarn build && yarn publish",
|
||||
"lint": "eslint . --ext .js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue