dxd-style-code 0.1.10 → 0.1.11

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 (48) hide show
  1. package/dist/dxd-style-code.js +1846 -1847
  2. package/dist/dxd-style-code.umd.cjs +2 -2
  3. package/package.json +1 -1
  4. package/src/components/{typography → atoms}/DXBlockquote/DXBlockquote.stories.js +1 -1
  5. package/src/components/{layout → atoms}/DXBox/DXBox.stories.js +1 -1
  6. package/src/components/{typography → atoms}/DXCode/DXCode.stories.js +1 -1
  7. package/src/components/{layout → atoms}/DXContainer/DXContainer.stories.js +1 -1
  8. package/src/components/{layout → atoms}/DXFlex/DXFlex.stories.js +1 -1
  9. package/src/components/{layout → atoms}/DXGrid/DXGrid.stories.js +1 -1
  10. package/src/components/{typography → atoms}/DXHeading/DXHeading.stories.js +1 -1
  11. package/src/components/{typography → atoms}/DXLabel/DXLabel.stories.js +1 -1
  12. package/src/components/{typography → atoms}/DXList/DXList.stories.js +1 -1
  13. package/src/components/{layout → atoms}/DXSpacer/DXSpacer.stories.js +1 -1
  14. package/src/components/{layout → atoms}/DXStack/DXStack.stories.js +1 -1
  15. package/src/components/{typography → atoms}/DXText/DXText.stories.js +1 -1
  16. package/src/components/atoms/index.js +13 -1
  17. package/src/components/index.js +1 -7
  18. package/src/components/organisms/DXAppLayout/DXAppLayout.stories.js +1 -1
  19. package/src/components/organisms/DXHeaderBar/DXHeaderBar.vue +1 -1
  20. package/src/components/organisms/DXMediaGallery/DXMediaGallery.vue +1 -1
  21. package/src/components/utilities/DXBreakpointProvider/DXBreakpointProvider.stories.js +1 -1
  22. package/src/index.js +1 -7
  23. package/src/components/layout/index.js +0 -8
  24. package/src/components/typography/index.js +0 -8
  25. /package/src/components/{typography → atoms}/DXBlockquote/DXBlockquote.vue +0 -0
  26. /package/src/components/{typography → atoms}/DXBlockquote/index.js +0 -0
  27. /package/src/components/{layout → atoms}/DXBox/DXBox.vue +0 -0
  28. /package/src/components/{layout → atoms}/DXBox/index.js +0 -0
  29. /package/src/components/{typography → atoms}/DXCode/DXCode.vue +0 -0
  30. /package/src/components/{typography → atoms}/DXCode/index.js +0 -0
  31. /package/src/components/{layout → atoms}/DXContainer/DXContainer.vue +0 -0
  32. /package/src/components/{layout → atoms}/DXContainer/index.js +0 -0
  33. /package/src/components/{layout → atoms}/DXFlex/DXFlex.vue +0 -0
  34. /package/src/components/{layout → atoms}/DXFlex/index.js +0 -0
  35. /package/src/components/{layout → atoms}/DXGrid/DXGrid.vue +0 -0
  36. /package/src/components/{layout → atoms}/DXGrid/index.js +0 -0
  37. /package/src/components/{typography → atoms}/DXHeading/DXHeading.vue +0 -0
  38. /package/src/components/{typography → atoms}/DXHeading/index.js +0 -0
  39. /package/src/components/{typography → atoms}/DXLabel/DXLabel.vue +0 -0
  40. /package/src/components/{typography → atoms}/DXLabel/index.js +0 -0
  41. /package/src/components/{typography → atoms}/DXList/DXList.vue +0 -0
  42. /package/src/components/{typography → atoms}/DXList/index.js +0 -0
  43. /package/src/components/{layout → atoms}/DXSpacer/DXSpacer.vue +0 -0
  44. /package/src/components/{layout → atoms}/DXSpacer/index.js +0 -0
  45. /package/src/components/{layout → atoms}/DXStack/DXStack.vue +0 -0
  46. /package/src/components/{layout → atoms}/DXStack/index.js +0 -0
  47. /package/src/components/{typography → atoms}/DXText/DXText.vue +0 -0
  48. /package/src/components/{typography → atoms}/DXText/index.js +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dxd-style-code",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "description": "DX Design System - Vue 3 UI Component Library",
6
6
  "main": "./dist/dxd-style-code.umd.cjs",
@@ -1,7 +1,7 @@
1
1
  import DXBlockquote from './DXBlockquote.vue';
2
2
 
3
3
  export default {
4
- title: 'Typography/DXBlockquote',
4
+ title: 'Atoms/DXBlockquote',
5
5
  component: DXBlockquote,
6
6
  tags: ['autodocs'],
7
7
  argTypes: {
@@ -1,7 +1,7 @@
1
1
  import DXBox from './DXBox.vue';
2
2
 
3
3
  export default {
4
- title: 'Layout/DXBox',
4
+ title: 'Atoms/DXBox',
5
5
  component: DXBox,
6
6
  tags: ['autodocs'],
7
7
  parameters: {
@@ -1,7 +1,7 @@
1
1
  import DXCode from './DXCode.vue';
2
2
 
3
3
  export default {
4
- title: 'Typography/DXCode',
4
+ title: 'Atoms/DXCode',
5
5
  component: DXCode,
6
6
  tags: ['autodocs'],
7
7
  };
@@ -1,7 +1,7 @@
1
1
  import DXContainer from './DXContainer.vue';
2
2
 
3
3
  export default {
4
- title: 'Layout/DXContainer',
4
+ title: 'Atoms/DXContainer',
5
5
  component: DXContainer,
6
6
  tags: ['autodocs'],
7
7
  parameters: {
@@ -1,7 +1,7 @@
1
1
  import DXFlex from './DXFlex.vue';
2
2
 
3
3
  export default {
4
- title: 'Layout/DXFlex',
4
+ title: 'Atoms/DXFlex',
5
5
  component: DXFlex,
6
6
  tags: ['autodocs'],
7
7
  parameters: {
@@ -1,7 +1,7 @@
1
1
  import DXGrid from './DXGrid.vue';
2
2
 
3
3
  export default {
4
- title: 'Layout/DXGrid',
4
+ title: 'Atoms/DXGrid',
5
5
  component: DXGrid,
6
6
  tags: ['autodocs'],
7
7
  parameters: {
@@ -1,7 +1,7 @@
1
1
  import DXHeading from './DXHeading.vue';
2
2
 
3
3
  export default {
4
- title: 'Typography/DXHeading',
4
+ title: 'Atoms/DXHeading',
5
5
  component: DXHeading,
6
6
  tags: ['autodocs'],
7
7
  argTypes: {
@@ -1,7 +1,7 @@
1
1
  import DXLabel from './DXLabel.vue';
2
2
 
3
3
  export default {
4
- title: 'Typography/DXLabel',
4
+ title: 'Atoms/DXLabel',
5
5
  component: DXLabel,
6
6
  tags: ['autodocs'],
7
7
  };
@@ -1,7 +1,7 @@
1
1
  import DXList from './DXList.vue';
2
2
 
3
3
  export default {
4
- title: 'Typography/DXList',
4
+ title: 'Atoms/DXList',
5
5
  component: DXList,
6
6
  tags: ['autodocs'],
7
7
  };
@@ -1,7 +1,7 @@
1
1
  import DXSpacer from './DXSpacer.vue';
2
2
 
3
3
  export default {
4
- title: 'Layout/DXSpacer',
4
+ title: 'Atoms/DXSpacer',
5
5
  component: DXSpacer,
6
6
  tags: ['autodocs'],
7
7
  parameters: {
@@ -1,7 +1,7 @@
1
1
  import DXStack from './DXStack.vue';
2
2
 
3
3
  export default {
4
- title: 'Layout/DXStack',
4
+ title: 'Atoms/DXStack',
5
5
  component: DXStack,
6
6
  tags: ['autodocs'],
7
7
  parameters: {
@@ -1,7 +1,7 @@
1
1
  import DXText from './DXText.vue';
2
2
 
3
3
  export default {
4
- title: 'Typography/DXText',
4
+ title: 'Atoms/DXText',
5
5
  component: DXText,
6
6
  tags: ['autodocs'],
7
7
  argTypes: {
@@ -2,22 +2,34 @@
2
2
  export { default as DXAvatar } from './DXAvatar';
3
3
  export { default as DXBackdrop } from './DXBackdrop';
4
4
  export { default as DXBadge } from './DXBadge';
5
+ export { default as DXBlockquote } from './DXBlockquote';
6
+ export { default as DXBox } from './DXBox';
5
7
  export { default as DXButton } from './DXButton';
6
8
  export { default as DXCard } from './DXCard';
7
9
  export { default as DXCheckbox } from './DXCheckbox';
10
+ export { default as DXCode } from './DXCode';
11
+ export { default as DXContainer } from './DXContainer';
8
12
  export { default as DXDivider } from './DXDivider';
9
13
  export { default as DXDropdownItem } from './DXDropdownItem';
14
+ export { default as DXFlex } from './DXFlex';
10
15
  export { default as DXFormLabel } from './DXFormLabel';
16
+ export { default as DXGrid } from './DXGrid';
17
+ export { default as DXHeading } from './DXHeading';
11
18
  export { default as DXIcon } from './DXIcon';
12
19
  export { default as DXIconWrapper } from './DXIconWrapper';
13
20
  export { default as DXInputAddon } from './DXInputAddon';
14
- export { default as DXLoader } from './DXLoader';
21
+ export { default as DXLabel } from './DXLabel';
15
22
  export { default as DXLink } from './DXLink';
23
+ export { default as DXList } from './DXList';
24
+ export { default as DXLoader } from './DXLoader';
16
25
  export { default as DXProgress } from './DXProgress';
17
26
  export { default as DXRadio } from './DXRadio';
18
27
  export { default as DXSkeleton } from './DXSkeleton';
19
28
  export { default as DXSlider } from './DXSlider';
29
+ export { default as DXSpacer } from './DXSpacer';
30
+ export { default as DXStack } from './DXStack';
20
31
  export { default as DXTags } from './DXTags';
32
+ export { default as DXText } from './DXText';
21
33
  export { default as DXToast } from './DXToast';
22
34
  export { default as DXToggle } from './DXToggle';
23
35
  export { default as DXToggleButton } from './DXToggleButton';
@@ -1,20 +1,14 @@
1
1
  // Main components index - re-export all components from all categories
2
2
 
3
- // Atoms - basic building blocks
3
+ // Atoms - basic building blocks (includes typography and layout components)
4
4
  export * from './atoms';
5
5
 
6
- // Layout - layout components
7
- export * from './layout';
8
-
9
6
  // Molecules - composed from atoms
10
7
  export * from './molecules';
11
8
 
12
9
  // Organisms - complex UI structures
13
10
  export * from './organisms';
14
11
 
15
- // Typography - text components
16
- export * from './typography';
17
-
18
12
  // Utilities - utility components
19
13
  export * from './utilities';
20
14
 
@@ -2,7 +2,7 @@ import { ref } from 'vue';
2
2
  import DXAppLayout from './DXAppLayout.vue';
3
3
  import DXHeaderBar from '../DXHeaderBar/DXHeaderBar.vue';
4
4
  import DXSidebarMenu from '../DXSidebarMenu/DXSidebarMenu.vue';
5
- import DXContainer from '../../layout/DXContainer/DXContainer.vue';
5
+ import DXContainer from '../../atoms/DXContainer/DXContainer.vue';
6
6
  import DXLink from '../../atoms/DXLink/DXLink.vue';
7
7
  import DXButton from '../../atoms/DXButton/DXButton.vue';
8
8
  import DXAvatar from '../../atoms/DXAvatar/DXAvatar.vue';
@@ -93,7 +93,7 @@
93
93
  <script setup>
94
94
  import { ref, computed } from "vue";
95
95
  import { useClassComposition } from "../../../composables/useClassComposition";
96
- import DXContainer from "../../layout/DXContainer/DXContainer.vue";
96
+ import DXContainer from "../../atoms/DXContainer/DXContainer.vue";
97
97
  import DXLink from "../../atoms/DXLink/DXLink.vue";
98
98
  import DXButton from "../../atoms/DXButton/DXButton.vue";
99
99
  import DXIcon from "../../atoms/DXIcon/DXIcon.vue";
@@ -170,7 +170,7 @@
170
170
  import { ref, computed } from "vue";
171
171
  import { useClassComposition } from "../../../composables/useClassComposition";
172
172
  import { useSpacing } from "../../../composables/useSpacing";
173
- import DXGrid from "../../layout/DXGrid/DXGrid.vue";
173
+ import DXGrid from "../../atoms/DXGrid/DXGrid.vue";
174
174
  import DXModal from "../DXModal/DXModal.vue";
175
175
  import DXObserver from "../../utilities/DXObserver/DXObserver.vue";
176
176
  import DXButton from "../../atoms/DXButton/DXButton.vue";
@@ -2,7 +2,7 @@ import { ref, inject, computed } from 'vue';
2
2
  import DXBreakpointProvider from './DXBreakpointProvider.vue';
3
3
  import DXCard from '../../atoms/DXCard/DXCard.vue';
4
4
  import DXButton from '../../atoms/DXButton/DXButton.vue';
5
- import DXGrid from '../../layout/DXGrid/DXGrid.vue';
5
+ import DXGrid from '../../atoms/DXGrid/DXGrid.vue';
6
6
 
7
7
  export default {
8
8
  title: 'Utilities/DXBreakpointProvider',
package/src/index.js CHANGED
@@ -1,13 +1,7 @@
1
1
  // DX Components - Vue 3 UI Component Library
2
2
  // Export all components
3
3
 
4
- // Typography
5
- export * from './components/typography';
6
-
7
- // Layout
8
- export * from './components/layout';
9
-
10
- // Atoms
4
+ // Atoms - basic building blocks (includes typography and layout components)
11
5
  export * from './components/atoms';
12
6
 
13
7
  // Molecules
@@ -1,8 +0,0 @@
1
- // Layout components
2
- export { default as DXContainer } from './DXContainer';
3
- export { default as DXGrid } from './DXGrid';
4
- export { default as DXFlex } from './DXFlex';
5
- export { default as DXStack } from './DXStack';
6
- export { default as DXSpacer } from './DXSpacer';
7
- export { default as DXBox } from './DXBox';
8
-
@@ -1,8 +0,0 @@
1
- // Typography components
2
- export { default as DXHeading } from './DXHeading';
3
- export { default as DXText } from './DXText';
4
- export { default as DXLabel } from './DXLabel';
5
- export { default as DXCode } from './DXCode';
6
- export { default as DXBlockquote } from './DXBlockquote';
7
- export { default as DXList } from './DXList';
8
-
File without changes