@iress-oss/ids-components 6.0.0-alpha.30 → 6.0.0-alpha.31

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.
Files changed (2) hide show
  1. package/llms.txt +114 -0
  2. package/package.json +5 -4
package/llms.txt ADDED
@@ -0,0 +1,114 @@
1
+ # @iress-oss/ids-components
2
+
3
+ > React component library for the Iress Design System — accessible, themeable UI primitives with built-in styling props, design tokens, and responsive layout support. All components use the `Iress` prefix (e.g. `IressButton`, `IressInput`).
4
+
5
+ - Install: `npm install @iress-oss/ids-components`
6
+ - Peer dependencies: `react`, `react-dom`, optionally `react-hook-form`
7
+ - Import CSS: `import '@iress-oss/ids-components/dist/style.css'`
8
+ - Wrap app in `<IressProvider>` for theming and context
9
+ - Storybook: <https://main--691abcc79dfa560a36d0a74f.chromatic.com>
10
+ - Structured AI index: `.ai/index.json` (machine-readable catalogue of all docs below)
11
+
12
+ ## Components
13
+
14
+ - [Alert](.ai/components/alert.md): Displays a short, important message to attract attention without interrupting the user's task
15
+ - [Autocomplete](.ai/components/autocomplete.md): Search input with suggestion dropdown
16
+ - [Autocomplete Recipes](.ai/components/autocomplete-recipes.md): Common autocomplete usage patterns
17
+ - [Button](.ai/components/button.md): Clickable action trigger with variants (primary, secondary, ghost, danger)
18
+ - [ButtonGroup](.ai/components/button-group.md): Groups related buttons together
19
+ - [Card](.ai/components/card.md): Content container with optional header, body, and footer
20
+ - [Checkbox](.ai/components/checkbox.md): Single checkbox input for boolean selections
21
+ - [Checkbox Group](.ai/components/checkbox-group.md): Group of related checkboxes
22
+ - [Checkbox Group Recipes](.ai/components/checkbox-group-recipes.md): Common checkbox group usage patterns
23
+ - [Col](.ai/components/col.md): Column layout primitive for grid-based layouts
24
+ - [Container](.ai/components/container.md): Constrains content width with consistent horizontal padding
25
+ - [Divider](.ai/components/divider.md): Visual separator between content sections
26
+ - [Expander](.ai/components/expander.md): Collapsible content section with toggle
27
+ - [Field](.ai/components/field.md): Form field wrapper providing label, help text, and validation
28
+ - [Icon](.ai/components/icon.md): Material Symbols icon renderer
29
+ - [Image](.ai/components/image.md): Responsive image with optional fallback
30
+ - [Inline](.ai/components/inline.md): Horizontal layout primitive with gap and wrapping
31
+ - [Input](.ai/components/input.md): Text input field with optional prefix/suffix
32
+ - [Input Recipes](.ai/components/input-recipes.md): Common input usage patterns
33
+ - [InputCurrency](.ai/components/input-currency.md): Currency-formatted numeric input
34
+ - [InputCurrency Recipes](.ai/components/input-currency-recipes.md): Common currency input patterns
35
+ - [Label](.ai/components/label.md): Accessible form label
36
+ - [Link](.ai/components/link.md): Anchor element with consistent styling
37
+ - [Menu](.ai/components/menu.md): Vertical list of interactive items
38
+ - [MenuItem](.ai/components/menu-item.md): Individual item within a Menu
39
+ - [Modal](.ai/components/modal.md): Dialog overlay for focused content or actions
40
+ - [Panel](.ai/components/panel.md): Bordered content panel with optional heading
41
+ - [Pill](.ai/components/pill.md): Compact status/category indicator
42
+ - [Placeholder](.ai/components/placeholder.md): Empty state placeholder with optional action
43
+ - [Popover](.ai/components/popover.md): Floating content anchored to a trigger element
44
+ - [Popover Recipes](.ai/components/popover-recipes.md): Common popover usage patterns
45
+ - [Progress](.ai/components/progress.md): Determinate/indeterminate progress indicator
46
+ - [Provider](.ai/components/provider.md): Theme and context provider — wrap your app root
47
+ - [Radio](.ai/components/radio.md): Single radio input for exclusive selection
48
+ - [RadioGroup](.ai/components/radio-group.md): Group of related radio buttons
49
+ - [Readonly](.ai/components/readonly.md): Read-only display of form values
50
+ - [Row](.ai/components/row.md): Row layout primitive for grid-based layouts
51
+ - [Skeleton](.ai/components/skeleton.md): Loading placeholder animation
52
+ - [Skeleton Recipes](.ai/components/skeleton-recipes.md): Common skeleton loading patterns
53
+ - [SkipLink](.ai/components/skip-link.md): Accessibility skip-to-content link
54
+ - [Slideout](.ai/components/slideout.md): Side panel that slides in from the edge
55
+ - [Slider](.ai/components/slider.md): Range input slider
56
+ - [Spinner](.ai/components/spinner.md): Loading spinner animation
57
+ - [Stack](.ai/components/stack.md): Vertical layout primitive with consistent gap
58
+ - [Styled](.ai/components/styled.md): Low-level styled element with styling prop support
59
+ - [Tab](.ai/components/tab.md): Individual tab within a TabSet
60
+ - [TabSet](.ai/components/tab-set.md): Tabbed content navigation
61
+ - [Table](.ai/components/table.md): Data table with sorting, pagination, and selection
62
+ - [Tag](.ai/components/tag.md): Label tag for categorisation
63
+ - [Text](.ai/components/text.md): Typography primitive with semantic variants
64
+ - [Toaster](.ai/components/toaster.md): Toast notification system
65
+ - [Toggle](.ai/components/toggle.md): On/off switch input
66
+ - [Tooltip](.ai/components/tooltip.md): Hover/focus information overlay
67
+ - [ValidationMessage](.ai/components/validation-message.md): Form field validation feedback
68
+
69
+ ## Patterns
70
+
71
+ - [Breadcrumbs](.ai/patterns/breadcrumbs.md): Navigation breadcrumb trail
72
+ - [Contextual Menu](.ai/patterns/contextual-menu.md): Right-click or action menu pattern
73
+ - [Dropdown Menu](.ai/patterns/dropdown-menu.md): Button-triggered dropdown menu pattern
74
+ - [Form](.ai/patterns/form.md): Complete form composition with validation
75
+ - [Form Recipes](.ai/patterns/form-recipes.md): Common form layout and validation patterns
76
+ - [Loading](.ai/patterns/loading.md): Loading state patterns with skeletons and spinners
77
+ - [Shadow](.ai/patterns/shadow.md): Elevation and shadow patterns
78
+ - [SideNav](.ai/patterns/side-nav.md): Sidebar navigation pattern
79
+
80
+ ## Foundations & Guides
81
+
82
+ - [Core Design Principles](.ai/guides/foundations-principles.md): Fundamental design philosophy
83
+ - [Accessibility](.ai/guides/foundations-accessibility.md): WCAG compliance and accessible patterns
84
+ - [Iconography](.ai/guides/foundations-iconography.md): Icon usage and Material Symbols
85
+ - [Responsive Layout](.ai/guides/foundations-responsive.md): Breakpoints and responsive patterns
86
+ - [Z-index (Stacking)](.ai/guides/foundations-zindex.md): Layer management and stacking contexts
87
+ - [Visual Design Standards](.ai/guides/foundations-visual-design.md): Visual consistency guidelines
88
+ - [Using Components Consistently](.ai/guides/foundations-consistency.md): Composition best practices
89
+ - [Content](.ai/guides/foundations-content.md): Content writing and UX copy guidelines
90
+ - [User Experience](.ai/guides/foundations-user-experience.md): UX principles and interaction patterns
91
+ - [Getting Started (Develop)](.ai/guides/get-started-develop.md): Developer setup and first steps
92
+ - [Migration from v4 to v5](.ai/guides/migration-guides-v5.md): Breaking changes and upgrade guide
93
+
94
+ ## Styling Props
95
+
96
+ - [Styling Props Reference](.ai/guides/styling-props-reference.md): Complete list of all styling props and their mapped tokens
97
+ - [Accessibility Props](.ai/guides/styling-props-accessibility.md): Screen reader and focus-related props
98
+ - [Colour Props](.ai/guides/styling-props-colour.md): Colour, background, and border colour props
99
+ - [Layout Props](.ai/guides/styling-props-layout.md): Display, flex, grid, position, and overflow props
100
+ - [Radius Props](.ai/guides/styling-props-radius.md): Border radius props
101
+ - [Sizing Props](.ai/guides/styling-props-sizing.md): Width, height, min/max sizing props
102
+ - [Spacing Props](.ai/guides/styling-props-spacing.md): Margin and padding props
103
+ - [Typography Props](.ai/guides/styling-props-typography.md): Font, text alignment, and line-height props
104
+
105
+ ## Skills
106
+
107
+ - [UI Translation](.ai/skills/ui-translation.md): Translate natural language UI descriptions into IDS component code
108
+ - [UI Doctor](.ai/skills/ui-doctor.md): Audit apps for correct IDS component usage and compliance
109
+ - [Figma to IDS](.ai/skills/figma-to-ids.md): Convert Figma design specs into IDS implementations
110
+
111
+ ## Optional
112
+
113
+ - [Storybook (live)](<https://main--691abcc79dfa560a36d0a74f.chromatic.com>): Interactive component playground with all examples
114
+ - [GitHub Repository](<https://github.com/iress/design-system>): Source code and issue tracker
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iress-oss/ids-components",
3
- "version": "6.0.0-alpha.30",
3
+ "version": "6.0.0-alpha.31",
4
4
  "description": "Iress React Component Library",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -8,7 +8,8 @@
8
8
  "types": "dist/main.d.ts",
9
9
  "files": [
10
10
  ".ai",
11
- "dist"
11
+ "dist",
12
+ "llms.txt"
12
13
  ],
13
14
  "sideEffects": [
14
15
  "**/*.css"
@@ -30,7 +31,7 @@
30
31
  "typecheck:node": "tsc --noEmit -p tsconfig.node.json"
31
32
  },
32
33
  "devDependencies": {
33
- "@iress-oss/ids-tokens": "^6.0.0-alpha.16",
34
+ "@iress-oss/ids-tokens": "^6.0.0-alpha.17",
34
35
  "@pandacss/dev": "1.8.1",
35
36
  "@testing-library/dom": "10.4.1",
36
37
  "@testing-library/jest-dom": "6.9.1",
@@ -51,7 +52,7 @@
51
52
  "eslint-plugin-react-hooks": "^7.0.1",
52
53
  "eslint-plugin-react-refresh": "^0.5.0",
53
54
  "eslint-plugin-sonarjs": "^3.0.7",
54
- "glob": "13.0.0",
55
+ "glob": "13.0.3",
55
56
  "jest-axe": "10.0.0",
56
57
  "jsdom": "28.1.0",
57
58
  "lightningcss": "^1.31.1",