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.
- package/dist/dxd-style-code.js +1846 -1847
- package/dist/dxd-style-code.umd.cjs +2 -2
- package/package.json +1 -1
- package/src/components/{typography → atoms}/DXBlockquote/DXBlockquote.stories.js +1 -1
- package/src/components/{layout → atoms}/DXBox/DXBox.stories.js +1 -1
- package/src/components/{typography → atoms}/DXCode/DXCode.stories.js +1 -1
- package/src/components/{layout → atoms}/DXContainer/DXContainer.stories.js +1 -1
- package/src/components/{layout → atoms}/DXFlex/DXFlex.stories.js +1 -1
- package/src/components/{layout → atoms}/DXGrid/DXGrid.stories.js +1 -1
- package/src/components/{typography → atoms}/DXHeading/DXHeading.stories.js +1 -1
- package/src/components/{typography → atoms}/DXLabel/DXLabel.stories.js +1 -1
- package/src/components/{typography → atoms}/DXList/DXList.stories.js +1 -1
- package/src/components/{layout → atoms}/DXSpacer/DXSpacer.stories.js +1 -1
- package/src/components/{layout → atoms}/DXStack/DXStack.stories.js +1 -1
- package/src/components/{typography → atoms}/DXText/DXText.stories.js +1 -1
- package/src/components/atoms/index.js +13 -1
- package/src/components/index.js +1 -7
- package/src/components/organisms/DXAppLayout/DXAppLayout.stories.js +1 -1
- package/src/components/organisms/DXHeaderBar/DXHeaderBar.vue +1 -1
- package/src/components/organisms/DXMediaGallery/DXMediaGallery.vue +1 -1
- package/src/components/utilities/DXBreakpointProvider/DXBreakpointProvider.stories.js +1 -1
- package/src/index.js +1 -7
- package/src/components/layout/index.js +0 -8
- package/src/components/typography/index.js +0 -8
- /package/src/components/{typography → atoms}/DXBlockquote/DXBlockquote.vue +0 -0
- /package/src/components/{typography → atoms}/DXBlockquote/index.js +0 -0
- /package/src/components/{layout → atoms}/DXBox/DXBox.vue +0 -0
- /package/src/components/{layout → atoms}/DXBox/index.js +0 -0
- /package/src/components/{typography → atoms}/DXCode/DXCode.vue +0 -0
- /package/src/components/{typography → atoms}/DXCode/index.js +0 -0
- /package/src/components/{layout → atoms}/DXContainer/DXContainer.vue +0 -0
- /package/src/components/{layout → atoms}/DXContainer/index.js +0 -0
- /package/src/components/{layout → atoms}/DXFlex/DXFlex.vue +0 -0
- /package/src/components/{layout → atoms}/DXFlex/index.js +0 -0
- /package/src/components/{layout → atoms}/DXGrid/DXGrid.vue +0 -0
- /package/src/components/{layout → atoms}/DXGrid/index.js +0 -0
- /package/src/components/{typography → atoms}/DXHeading/DXHeading.vue +0 -0
- /package/src/components/{typography → atoms}/DXHeading/index.js +0 -0
- /package/src/components/{typography → atoms}/DXLabel/DXLabel.vue +0 -0
- /package/src/components/{typography → atoms}/DXLabel/index.js +0 -0
- /package/src/components/{typography → atoms}/DXList/DXList.vue +0 -0
- /package/src/components/{typography → atoms}/DXList/index.js +0 -0
- /package/src/components/{layout → atoms}/DXSpacer/DXSpacer.vue +0 -0
- /package/src/components/{layout → atoms}/DXSpacer/index.js +0 -0
- /package/src/components/{layout → atoms}/DXStack/DXStack.vue +0 -0
- /package/src/components/{layout → atoms}/DXStack/index.js +0 -0
- /package/src/components/{typography → atoms}/DXText/DXText.vue +0 -0
- /package/src/components/{typography → atoms}/DXText/index.js +0 -0
package/package.json
CHANGED
|
@@ -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
|
|
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';
|
package/src/components/index.js
CHANGED
|
@@ -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 '../../
|
|
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 "../../
|
|
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 "../../
|
|
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 '../../
|
|
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
|
-
//
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|