@1d1s/design-system 1.2.9 → 1.3.0

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": "@1d1s/design-system",
3
- "version": "1.2.9",
3
+ "version": "1.3.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.es.js",
6
6
  "module": "dist/index.es.js",
@@ -154,3 +154,33 @@
154
154
  from { height: var(--radix-accordion-content-height); }
155
155
  to { height: 0; }
156
156
  }
157
+
158
+ /* ─────────────────────────────────────────────────────────────
159
+ * Reduced motion — 모든 모션 토큰을 즉시 표시로 폴백.
160
+ * 진입 애니메이션은 fill-mode(both) 때문에 animation:none 시
161
+ * 최종 상태(보임)로 렌더되어 안전하다.
162
+ * ───────────────────────────────────────────────────────────── */
163
+ @media (prefers-reduced-motion: reduce) {
164
+ .animate-in,
165
+ .animate-out,
166
+ .animate-fade-up,
167
+ .animate-fade-in,
168
+ .animate-slide-right,
169
+ .animate-pop,
170
+ .animate-pulse-ring,
171
+ .animate-shimmer,
172
+ .animate-float,
173
+ .animate-flame-flicker,
174
+ .animate-heart-pop,
175
+ .animate-confetti,
176
+ .animate-marquee,
177
+ .animate-accordion-down,
178
+ .animate-accordion-up,
179
+ .fade-in,
180
+ .fade-out,
181
+ .animate-glow,
182
+ .marquee--forward,
183
+ .marquee--reverse {
184
+ animation: none !important;
185
+ }
186
+ }