Expose all components

This commit is contained in:
MastersGame
2026-06-11 10:00:27 +02:00
parent 608c8b8e70
commit 3623e08343
4 changed files with 14 additions and 11 deletions

View File

@@ -3,5 +3,8 @@
"dest": "../../dist/qd-design",
"lib": {
"entryFile": "src/public-api.ts"
}
}
},
"assets": [
"src/styles/**/*.scss"
]
}

View File

@@ -1,6 +1,6 @@
{
"name": "@qd/qd-design",
"version": "0.1.0",
"version": "0.1.1",
"publishConfig": {
"registry": "https://git.quentinduwa.fr/api/packages/quentin_duwa/npm/"
},

View File

@@ -1,7 +0,0 @@
export enum QdButtonType {
ELEVATED = 'elevated',
FILLED = 'filled',
FILLED_TONAL = 'filled-tonal',
OUTLINED = 'outlined',
TEXT = 'text',
}

View File

@@ -2,5 +2,12 @@
* Public API Surface of qd-design
*/
// Components
export * from './lib/qd-button/qd-button';
export * from './directives/qd-button-variant';
export * from './lib/qd-card/qd-card';
export * from './lib/qd-icon/qd-icon';
export * from './lib/qd-icon-button/qd-icon-button';
export * from './lib/qd-input-file/qd-input-file';
export * from './lib/qd-input-password/qd-input-password';
export * from './lib/qd-input-text/qd-input-text';
export * from './lib/qd-plain-tooltip/qd-plain-tooltip';