New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@zag-js/pagination

Package Overview
Dependencies
Maintainers
1
Versions
862
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zag-js/pagination - npm Package Compare versions

Comparing version 0.0.0-v1-beta-20250220125322 to 0.0.0-v1-beta-20250221135618

10

dist/index.d.ts

@@ -46,7 +46,8 @@ import * as _zag_js_anatomy from '@zag-js/anatomy';

/**
* Number of data items per page
* The controlled number of data items per page
*/
pageSize?: number | undefined;
/**
* Default number of data items per page
* The initial number of data items per page when rendered.
* Use when you don't need to control the page size of the pagination.
* @default 10

@@ -61,7 +62,8 @@ */

/**
* The active page
* The controlled active page
*/
page?: number | undefined;
/**
* Default active page
* The initial active page when rendered.
* Use when you don't need to control the active page of the pagination.
* @default 1

@@ -68,0 +70,0 @@ */

23

package.json
{
"name": "@zag-js/pagination",
"version": "0.0.0-v1-beta-20250220125322",
"version": "0.0.0-v1-beta-20250221135618",
"description": "Core logic for the pagination widget implemented as a state machine",

@@ -29,7 +29,7 @@ "keywords": [

"dependencies": {
"@zag-js/anatomy": "0.0.0-v1-beta-20250220125322",
"@zag-js/dom-query": "0.0.0-v1-beta-20250220125322",
"@zag-js/core": "0.0.0-v1-beta-20250220125322",
"@zag-js/utils": "0.0.0-v1-beta-20250220125322",
"@zag-js/types": "0.0.0-v1-beta-20250220125322"
"@zag-js/anatomy": "0.0.0-v1-beta-20250221135618",
"@zag-js/dom-query": "0.0.0-v1-beta-20250221135618",
"@zag-js/utils": "0.0.0-v1-beta-20250221135618",
"@zag-js/core": "0.0.0-v1-beta-20250221135618",
"@zag-js/types": "0.0.0-v1-beta-20250221135618"
},

@@ -45,5 +45,10 @@ "devDependencies": {

".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},

@@ -50,0 +55,0 @@ "./package.json": "./package.json"

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc