keystone-design-bootstrap 1.0.92 → 1.0.94

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keystone-design-bootstrap",
3
- "version": "1.0.92",
3
+ "version": "1.0.94",
4
4
  "description": "Keystone Design Bootstrap - Sections, Elements, and Theme System for customer websites",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -30,6 +30,9 @@
30
30
  "./themes": "./src/themes/index.ts",
31
31
  "./utils/*": "./src/utils/*",
32
32
  "./portal": "./src/design_system/portal/index.ts",
33
+ "./portal/LoginForm": "./src/design_system/portal/LoginForm.tsx",
34
+ "./portal/LoginModalController": "./src/design_system/portal/LoginModalController.tsx",
35
+ "./elements/modal": "./src/design_system/elements/modal/modal.tsx",
33
36
  "./lib/consumer-session": "./src/lib/consumer-session.ts",
34
37
  "./next/routes/consumer-auth": "./src/next/routes/consumer-auth.ts"
35
38
  },
@@ -1,3 +1,8 @@
1
+ // Ambient types for '@rails/actioncable'. Customer sites compile this package's
2
+ // source directly, and their tsconfig doesn't include the package's .d.ts files,
3
+ // so this reference is required for the import below to resolve in consumer builds.
4
+ // eslint-disable-next-line @typescript-eslint/triple-slash-reference
5
+ /// <reference path="../../types/rails-actioncable.d.ts" />
1
6
  'use client';
2
7
 
3
8
  import { useCallback, useEffect, useRef } from 'react';