@deriv-ds/design-intelligence-layer 0.4.6 → 0.5.1
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/AGENTS.md +3 -0
- package/dist/index.cjs +8159 -4505
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +478 -155
- package/dist/index.d.ts +478 -155
- package/dist/index.js +6991 -2804
- package/dist/index.js.map +1 -1
- package/guides/design-principles/quill-design-principles.md +138 -0
- package/guides/design-system-guide/deriv-design-intelligence-guide.md +30 -2
- package/guides/design-system-guide/icon-reference.md +24 -24
- package/package.json +10 -11
- package/public/assets/icon-cfds.png +0 -0
- package/public/assets/icon-more.png +0 -0
- package/public/assets/icon-setup-profile.png +0 -0
- package/public/assets/logo-deriv-x.png +0 -0
- package/public/assets/no-transaction.png +0 -0
- package/src/styles.css +35 -0
- package/guides/design-principles/trading-game-design-principles.md +0 -98
package/AGENTS.md
CHANGED
|
@@ -68,6 +68,9 @@ cp node_modules/@deriv-ds/design-intelligence-layer/guides/rules/design-system-c
|
|
|
68
68
|
import { Navbar } from "@deriv-ds/design-intelligence-layer"
|
|
69
69
|
// Responsive: renders sidebar on desktop (≥768px), bottom bar on mobile (<768px)
|
|
70
70
|
// For explicit control: NavMobileBottomBar, NavDesktopSidebar are also exported
|
|
71
|
+
import { Section } from "@deriv-ds/design-intelligence-layer"
|
|
72
|
+
// Section header pattern: eyebrow tag, title (+ chevron), control cluster, description,
|
|
73
|
+
// full-width segmented control, and a content slot via children
|
|
71
74
|
```
|
|
72
75
|
See `guides/design-system-guide/deriv-design-intelligence-guide.md` Section 8.5 for full block catalogue and prop signatures.
|
|
73
76
|
|