@luxfi/core 5.2.0 → 5.2.2

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.
@@ -8,6 +8,6 @@ export default {
8
8
 
9
9
  dt: {
10
10
  micro: '74px',
11
- full: 0.75
11
+ full: '575px'
12
12
  }
13
13
  } satisfies SnapPointsConfig
@@ -94,9 +94,10 @@ const CommerceUIComponent: React.FC = observer(() => {
94
94
  />
95
95
  }
96
96
  onQuantityChanged={recent.quantityChanged.bind(recent)}
97
- clx='justify-between h-full pb-3'
97
+ clx='justify-between h-full pb-3 gap-8'
98
98
  addBtnClx='w-full min-w-[160px] sm:max-w-[320px]'
99
- selectorClx='max-w-[475px]'
99
+ buttonsAreaClx='grow-0 shrink-0 mt-0'
100
+ selectorClx='max-w-[475px] justify-between grow'
100
101
 
101
102
  />
102
103
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxfi/core",
3
- "version": "5.2.0",
3
+ "version": "5.2.2",
4
4
  "description": "Library that contains shared UI primitives, support for a common design system, and other boilerplate support.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -27,15 +27,13 @@
27
27
  },
28
28
  "exports": {
29
29
  ".": "./components/index.ts",
30
- "./commerce-data": "./commerce/data/index.ts",
31
30
  "./commerce": "./commerce/ui/context.tsx",
32
31
  "./root-layout": "./root-layout/index.tsx",
33
32
  "./server-actions": "./server-actions/index.ts",
34
33
  "./next": "./next/index.ts",
35
34
  "./style/": "./style/",
36
35
  "./site-def": "./site-def/index.ts",
37
- "./tailwind": "./tailwind/index.ts",
38
- "./conf": "./conf/index.ts"
36
+ "./tailwind": "./tailwind/index.ts"
39
37
  },
40
38
  "dependencies": {
41
39
  "@next/third-parties": "^14.1.0",
package/types/site-def.ts CHANGED
@@ -15,8 +15,6 @@ interface SiteDef {
15
15
  /** optional feature element. right-most after 'elements' (any min-w is ignored) */
16
16
  common: LinkDef[]
17
17
  featured?: LinkDef[]
18
- auth?: boolean
19
- cart?: React.ReactNode
20
18
  }
21
19
 
22
20
  /**