@hlw-uni/mp-vue 1.0.35 → 1.1.1
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/index.d.ts +11 -0
- package/dist/index.js +619 -80
- package/dist/index.mjs +620 -81
- package/dist/style.css +582 -35
- package/package.json +1 -1
- package/src/components/hlw-avatar/index.vue +15 -0
- package/src/components/hlw-button/index.vue +141 -0
- package/src/components/hlw-cell/index.vue +143 -0
- package/src/components/hlw-divider/index.vue +72 -0
- package/src/components/hlw-empty/index.vue +3 -2
- package/src/components/hlw-header/index.vue +28 -0
- package/src/components/hlw-loading/index.vue +13 -0
- package/src/components/hlw-modal/index.vue +157 -0
- package/src/components/hlw-notice-bar/index.vue +99 -0
- package/src/components/hlw-page/index.vue +24 -0
- package/src/components/hlw-popup/index.vue +108 -0
- package/src/components/hlw-search/index.vue +95 -0
- package/src/components/hlw-skeleton/index.vue +105 -0
- package/src/components/hlw-tabs/index.vue +126 -0
- package/src/components/hlw-tag/index.vue +76 -0
- package/src/index.ts +11 -0
package/dist/index.d.ts
CHANGED
|
@@ -3,13 +3,24 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export { default as HlwAd } from './components/hlw-ad/index.vue';
|
|
5
5
|
export { default as HlwAvatar } from './components/hlw-avatar/index.vue';
|
|
6
|
+
export { default as HlwButton } from './components/hlw-button/index.vue';
|
|
6
7
|
export { default as HlwCard } from './components/hlw-card/index.vue';
|
|
8
|
+
export { default as HlwCell } from './components/hlw-cell/index.vue';
|
|
9
|
+
export { default as HlwDivider } from './components/hlw-divider/index.vue';
|
|
7
10
|
export { default as HlwEmpty } from './components/hlw-empty/index.vue';
|
|
8
11
|
export { default as HlwHeader } from './components/hlw-header/index.vue';
|
|
9
12
|
export { default as HlwLoading } from './components/hlw-loading/index.vue';
|
|
10
13
|
export { default as HlwMenu } from './components/hlw-menu/index.vue';
|
|
11
14
|
export type { HlwMenuItem } from './components/hlw-menu/types';
|
|
15
|
+
export { default as HlwModal } from './components/hlw-modal/index.vue';
|
|
16
|
+
export { default as HlwNoticeBar } from './components/hlw-notice-bar/index.vue';
|
|
12
17
|
export { default as HlwPage } from './components/hlw-page/index.vue';
|
|
18
|
+
export { default as HlwPopup } from './components/hlw-popup/index.vue';
|
|
19
|
+
export { default as HlwSearch } from './components/hlw-search/index.vue';
|
|
20
|
+
export { default as HlwSkeleton } from './components/hlw-skeleton/index.vue';
|
|
21
|
+
export { default as HlwTabs } from './components/hlw-tabs/index.vue';
|
|
22
|
+
export { default as HlwTag } from './components/hlw-tag/index.vue';
|
|
23
|
+
export type { HlwTabItem } from './components/hlw-tabs/index.vue';
|
|
13
24
|
export type { FontScale, FontPreset, ThemeColor } from './composables/theme';
|
|
14
25
|
export { FONT_PRESETS, FONT_SCALE_KEY, DEFAULT_THEMES, THEME_COLOR_KEY, THEME_CHANGE_EVENT, getCurrentFontScale, getCurrentFontVars, getCurrentThemeColor, getCurrentThemeVars, buildThemeStyle, useThemePageStyle } from './composables/theme';
|
|
15
26
|
export { useThemeStore } from './stores/theme';
|