@skrillex1224/playwright-toolkit 2.1.71 → 2.1.72

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.
Files changed (2) hide show
  1. package/index.d.ts +4 -4
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -434,10 +434,10 @@ export interface MutationModule {
434
434
  // TokenForm
435
435
  // =============================================================================
436
436
  export interface TokenFormField {
437
- key: string;
438
- label: string;
439
- type: 'text' | 'textarea' | 'autocomplete' | 'password';
440
- required: boolean;
437
+ key?: string;
438
+ label?: string;
439
+ type: 'text' | 'textarea' | 'autocomplete' | 'password' | 'divider';
440
+ required?: boolean;
441
441
  placeholder?: string;
442
442
  options?: string[];
443
443
  col?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skrillex1224/playwright-toolkit",
3
- "version": "2.1.71",
3
+ "version": "2.1.72",
4
4
  "description": "一个在 Apify/Crawlee Actor 中启用实时截图视图的实用工具库。",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",