import type {StoryObj} from '@storybook/angular'; import {ArrayButtons} from 'sae-lib/buttons/array-buttons/array-buttons'; /** * sections : * * Colors * Typography * Icons * Layouts * Radius * Strokes * Effects * */ // Colors section export default { title: 'Foundations/colors/palette', }; export const FoundationsColorsArray: StoryObj = { name: 'Colors', render: () => ({ template: `
`, moduleMetadata: { imports: [ArrayButtons], }, }), }; // Typography section // export const Typography: StoryObj = { // name: 'Typography', // render: () => ({ // template: ``, // moduleMetadata: { // imports: [Typography], // }, // }), // }; // // // Icons section (placeholder) // export const Icons: StoryObj = { // name: 'Icons', // render: () => ({ // template: `
Icons component not yet implemented
`, // }), // }; // // // Layouts section // export const Layouts: StoryObj = { // name: 'Layouts', // render: () => ({ // template: ``, // moduleMetadata: { // imports: [Layouts], // }, // }), // }; // // // Radius section // export const Radius: StoryObj = { // name: 'Radius', // render: () => ({ // template: ``, // moduleMetadata: { // imports: [Radius], // }, // }), // }; // Strokes section // export const Strokes: StoryObj = { // name: 'Strokes', // render: () => ({ // template: ``, // moduleMetadata: { // imports: [Strokes], // }, // }), // }; // Effects section (placeholder) // export const Effects: StoryObj = { // name: 'Effects', // render: () => ({ // template: `
Effects component not yet implemented
`, // }), // };