@hlw-uni/mp-vue 1.1.5 → 1.1.7
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 +7 -22
- package/dist/index.js +0 -1122
- package/dist/index.mjs +1 -1123
- package/package.json +1 -1
- package/src/index.ts +20 -22
- package/dist/style.css +0 -1042
package/dist/index.d.ts
CHANGED
|
@@ -1,26 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @hlw-uni/mp-vue
|
|
2
|
+
* @hlw-uni/mp-vue package root exports
|
|
3
|
+
*
|
|
4
|
+
* Note:
|
|
5
|
+
* Components are resolved through easycom using `@hlw-uni/mp-vue/src/components/...`.
|
|
6
|
+
* The package root only exports plain TS modules so uni-app does not try to bundle
|
|
7
|
+
* compiled SFC runtime helpers from the library entry.
|
|
3
8
|
*/
|
|
4
|
-
export { default as HlwAd } from './components/hlw-ad/index.vue';
|
|
5
|
-
export { default as HlwAvatar } from './components/hlw-avatar/index.vue';
|
|
6
|
-
export { default as HlwButton } from './components/hlw-button/index.vue';
|
|
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';
|
|
10
|
-
export { default as HlwEmpty } from './components/hlw-empty/index.vue';
|
|
11
|
-
export { default as HlwHeader } from './components/hlw-header/index.vue';
|
|
12
|
-
export { default as HlwLoading } from './components/hlw-loading/index.vue';
|
|
13
|
-
export { default as HlwMenu } from './components/hlw-menu/index.vue';
|
|
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';
|
|
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';
|
|
24
9
|
export type { FontScale, FontPreset, ThemeColor } from './composables/theme';
|
|
25
|
-
export { FONT_PRESETS, FONT_SCALE_KEY, DEFAULT_THEMES, THEME_COLOR_KEY, THEME_CHANGE_EVENT, getCurrentFontScale, getCurrentFontVars, getCurrentThemeColor, getCurrentThemeVars, buildThemeStyle, useThemePageStyle } from './composables/theme';
|
|
10
|
+
export { FONT_PRESETS, FONT_SCALE_KEY, DEFAULT_THEMES, THEME_COLOR_KEY, THEME_CHANGE_EVENT, getCurrentFontScale, getCurrentFontVars, getCurrentThemeColor, getCurrentThemeVars, buildThemeStyle, useThemePageStyle, } from './composables/theme';
|
|
26
11
|
export { useThemeStore } from './stores/theme';
|