@ship-it-ui/ui 0.0.7 → 0.0.9

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": "@ship-it-ui/ui",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "React component library for the Ship-It design system. Tailwind v4 + Radix UI primitives, themed via @ship-it-ui/tokens.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://ship-it-ops.github.io/ship-it-design/",
@@ -49,11 +49,13 @@
49
49
  "peerDependencies": {
50
50
  "react": "^18.0.0 || ^19.0.0",
51
51
  "react-dom": "^18.0.0 || ^19.0.0",
52
- "@ship-it-ui/tokens": "0.0.5"
52
+ "@ship-it-ui/icons": "0.0.9",
53
+ "@ship-it-ui/tokens": "0.0.7"
53
54
  },
54
55
  "dependencies": {
55
56
  "@fontsource-variable/geist": "^5.2.9",
56
57
  "@fontsource-variable/geist-mono": "^5.2.8",
58
+ "@radix-ui/react-accordion": "^1.2.12",
57
59
  "@radix-ui/react-alert-dialog": "^1.1.2",
58
60
  "@radix-ui/react-avatar": "^1.1.1",
59
61
  "@radix-ui/react-checkbox": "^1.1.2",
@@ -95,6 +97,7 @@
95
97
  "vitest": "^2.1.3",
96
98
  "vitest-axe": "^0.1.0",
97
99
  "@ship-it-ui/eslint-config": "0.0.1",
100
+ "@ship-it-ui/icons": "0.0.9",
98
101
  "@ship-it-ui/tsconfig": "0.0.1"
99
102
  },
100
103
  "scripts": {
@@ -122,6 +122,24 @@
122
122
  }
123
123
  }
124
124
 
125
+ @keyframes accordion-down {
126
+ from {
127
+ height: 0;
128
+ }
129
+ to {
130
+ height: var(--radix-accordion-content-height);
131
+ }
132
+ }
133
+
134
+ @keyframes accordion-up {
135
+ from {
136
+ height: var(--radix-accordion-content-height);
137
+ }
138
+ to {
139
+ height: 0;
140
+ }
141
+ }
142
+
125
143
  @media (prefers-reduced-motion: reduce) {
126
144
  *,
127
145
  *::before,
@@ -82,6 +82,15 @@
82
82
  --color-cta-from: var(--color-cta-from);
83
83
  --color-cta-to: var(--color-cta-to);
84
84
 
85
+ /* Consumer-marketplace semantics. `rating` is gold for stars, distinct from
86
+ * `warn` yellow. `verified` aliases `ok` but is named separately so future
87
+ * divergence is cheap. `sale`/`saleText` are for promo strike-throughs. */
88
+ --color-rating: var(--color-rating);
89
+ --color-rating-dim: var(--color-rating-dim);
90
+ --color-verified: var(--color-verified);
91
+ --color-sale: var(--color-sale);
92
+ --color-sale-text: var(--color-sale-text);
93
+
85
94
  /* Typography — families. */
86
95
  --font-sans: var(--font-family-sans);
87
96
  --font-mono: var(--font-family-mono);
@@ -96,6 +105,8 @@
96
105
  --text-h2: var(--font-size-h2);
97
106
  --text-h1: var(--font-size-h1);
98
107
  --text-display: var(--font-size-display);
108
+ --text-display-lg: var(--font-size-display-lg);
109
+ --text-display-xl: var(--font-size-display-xl);
99
110
 
100
111
  /* Typography — weights. */
101
112
  --font-weight-light: var(--font-weight-light);