Skip to content

Commit

Permalink
Add individual exports, add base tokens, fixes #16617
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Oct 23, 2024
1 parent ceeff5b commit 08df9bc
Show file tree
Hide file tree
Showing 1,158 changed files with 7,930 additions and 6,052 deletions.
20 changes: 10 additions & 10 deletions src/app/components/themes/aura/accordion/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export default {
root: {
transitionDuration: '{transition.duration}',
transitionDuration: '{transition.duration}'
},
panel: {
borderWidth: '0 0 1px 0',
borderColor: '{content.border.color}',
borderColor: '{content.border.color}'
},
header: {
color: '{text.muted.color}',
Expand All @@ -23,29 +23,29 @@ export default {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}',
offset: '-1px',
shadow: '{focus.ring.shadow}'
},
toggleIcon: {
color: '{text.muted.color}',
hoverColor: '{text.color}',
activeColor: '{text.color}',
activeHoverColor: '{text.color}',
activeHoverColor: '{text.color}'
},
first: {
topBorderRadius: '{content.border.radius}',
borderWidth: '0',
borderWidth: '0'
},
last: {
bottomBorderRadius: '{content.border.radius}',
activeBottomBorderRadius: '0',
},
activeBottomBorderRadius: '0'
}
},
content: {
borderWidth: '0',
borderColor: '{content.border.color}',
background: '{content.background}',
color: '{text.color}',
padding: '0 1.125rem 1.125rem 1.125rem',
},
padding: '0 1.125rem 1.125rem 1.125rem'
}
};
6 changes: 6 additions & 0 deletions src/app/components/themes/aura/accordion/ng-package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "ng-packagr/ng-package.schema.json",
"lib": {
"entryFile": "public_api.ts"
}
}
1 change: 1 addition & 0 deletions src/app/components/themes/aura/accordion/public_api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './';
Loading

0 comments on commit 08df9bc

Please sign in to comment.