@fewbox/den-web 0.1.42 → 0.1.44
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/index.css +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/scripts/copy-templates.js +1 -1
- package/scripts/generate-packages.js +41 -0
- package/src/components/Engine/Base/index.d.ts +13 -13
- package/src/components/Engine/index.d.ts +155 -90
- package/src/components/Layout/Breakpoint/index.d.ts +25 -0
- package/src/components/Layout/Dock/index.d.ts +1 -4
- package/src/components/Layout/Flex/index.d.ts +2 -1
- package/src/components/Layout/Responsive/index.d.ts +2 -2
- package/src/components/Layout/XBase/index.d.ts +2 -1
- package/src/components/Layout/YBase/index.d.ts +2 -1
- package/src/components/View/VAnimation/index.d.ts +2 -2
- package/src/components/View/VAvatar/index.d.ts +0 -1
- package/src/components/View/VErrorBoundary/index.d.ts +18 -0
- package/src/components/View/VForm/index.d.ts +2 -3
- package/src/components/View/VImage/index.d.ts +2 -2
- package/src/components/View/VInput/VRange/index.d.ts +2 -0
- package/src/components/View/VInput/index.d.ts +5 -4
- package/src/components/View/VLabel/index.d.ts +2 -1
- package/src/components/View/VSvg/index.d.ts +2 -2
- package/src/components/View/VTextArea/index.d.ts +2 -0
- package/src/components/View/VTheme/index.d.ts +7 -2
- package/src/components/core.d.ts +11 -7
- package/src/components/web.d.ts +6 -3
- package/src/store/index.d.ts +7 -6
- package/templates/.claude/skills/fewbox-den/SKILL.md +1111 -0
- package/templates/style/_core.scss +82 -0
- package/templates/style/_root-properties.scss +48 -0
- package/templates/style/_variables.scss +154 -3
- package/tsconfig.app.tsbuildinfo +1 -0
- package/src/components/Layout/Display/index.d.ts +0 -18
- package/src/components/Layout/index.d.ts +0 -8
package/src/components/core.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
export { default as Base
|
|
2
|
-
export {
|
|
1
|
+
export { default as Base } from './Engine/Base';
|
|
2
|
+
export type { IBaseProps, IBaseStates, IBaseReturn, IViewProps } from './Engine/Base';
|
|
3
3
|
export { default as VZone, ZoneCategory } from './View/VZone';
|
|
4
|
-
export { default as
|
|
4
|
+
export { default as BreakpointDisplay, ScreenSizeType, BreakpointCategory, BreakpointType } from './Layout/Breakpoint';
|
|
5
5
|
export { default as Responsive } from './Layout/Responsive';
|
|
6
|
-
export { FontSizeType, FontWeightType, FontFamilyType, BorderRadiusType, LineHeightType, LetterSpacingType, PaddingType,
|
|
6
|
+
export { FontSizeType, FontWeightType, FontFamilyType, BorderRadiusType, BorderStyleType, BorderWidthType, LineHeightType, LetterSpacingType, PaddingType, MarginType, GapType, OpacityType, DisplayType, VisibilityType, CursorType, OverflowType, OverflowXType, OverflowYType, ViewSizeType, ColorType, getGeneratedClassName } from './Engine';
|
|
7
|
+
export type { FullBorderRadiusType, FullBorderStyleType, FullBorderWidthType, FullPaddingType, FullMarginType, FullGapType, FullDisplayType, FullVisibilityType, FullCursorType, FullOverflowType, FullOverflowXType, FullOverflowYType, FullColorType } from './Engine';
|
|
7
8
|
export { default as Dock, DockCategory, DockAlignment } from './Layout/Dock';
|
|
8
9
|
export { default as Position, PositionCategory, PositionType } from './Layout/Position';
|
|
9
10
|
export { default as PositionArea, PositionAreaCategory } from './Layout/PositionArea';
|
|
@@ -88,8 +89,10 @@ export { default as VWeek } from './View/VInput/VWeek';
|
|
|
88
89
|
export { default as VHidden } from './View/VInput/VHidden';
|
|
89
90
|
export { default as VGroup } from './View/VInput/VGroup';
|
|
90
91
|
export { default as VSwitch } from './View/VSwitch';
|
|
91
|
-
export { default as VSelect
|
|
92
|
-
export {
|
|
92
|
+
export { default as VSelect } from './View/VSelect';
|
|
93
|
+
export type { ISelectItemData } from './View/VSelect';
|
|
94
|
+
export { default as VDropdown } from './View/VInput/VDropdown';
|
|
95
|
+
export type { IDropdownItemData } from './View/VInput/VDropdown';
|
|
93
96
|
export { default as VSvg, SvgCategory } from './View/VSvg';
|
|
94
97
|
export { default as VHyperlink, HyperlinkCategory } from './View/VHyperlink';
|
|
95
98
|
export { default as VImage, ImageCategory } from './View/VImage';
|
|
@@ -110,7 +113,8 @@ export { default as VHR } from './View/VHR';
|
|
|
110
113
|
export { default as VSection } from './View/VSection';
|
|
111
114
|
export { default as VMask } from './View/VMask';
|
|
112
115
|
export { default as VFrame } from './View/VFrame';
|
|
113
|
-
export { default as VTheme, ThemeCategory } from './View/VTheme';
|
|
116
|
+
export { default as VTheme, ThemeCategory, type ThemeVariables } from './View/VTheme';
|
|
114
117
|
export { default as VTooltip, TooltipCategory } from './View/VTooltip';
|
|
115
118
|
export { default as VLoading } from './View/VLoading';
|
|
119
|
+
export { default as VErrorBoundary } from './View/VErrorBoundary';
|
|
116
120
|
export { convertFormDataToJson } from './util';
|
package/src/components/web.d.ts
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
export * from './core';
|
|
2
2
|
export { default as Debug } from './Debug';
|
|
3
3
|
export { default as VChromeExtensionValidator, ExtensionStatus } from './View/VChromeExtensionValidator';
|
|
4
|
-
export { default as VGoogleFont,
|
|
5
|
-
export {
|
|
4
|
+
export { default as VGoogleFont, GoogleFontType } from './View/VGoogleFont';
|
|
5
|
+
export type { IGoogleTypeface, IGoogleFont } from './View/VGoogleFont';
|
|
6
|
+
export { default as GoogleGrant, GoogleGrantCategory, GoogleGrantUXMode } from './Auth/GoogleGrant';
|
|
7
|
+
export type { GoogleGrantCode, GoogleGrantToken } from './Auth/GoogleGrant';
|
|
6
8
|
export { default as FigmaSignin } from './Auth/FigmaSignin';
|
|
7
9
|
export { default as GoogleSignin, GoogleSigninUXMode } from './Auth/GoogleSignin';
|
|
8
10
|
export { default as WeComSignin } from './Auth/WeComSignin';
|
|
9
|
-
export {
|
|
11
|
+
export { parseJWT } from './Auth/util';
|
|
12
|
+
export type { IUserProfile } from './Auth/util';
|
package/src/store/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export { default as IList } from './IList';
|
|
2
|
-
export { default as IPaging } from './IPaging';
|
|
3
|
-
export { default as IContinuePaging } from './IContinuePaging';
|
|
4
|
-
export { EnumDictionary } from './EnumDictionary';
|
|
5
|
-
export {
|
|
6
|
-
export { default as
|
|
1
|
+
export type { default as IList } from './IList';
|
|
2
|
+
export type { default as IPaging } from './IPaging';
|
|
3
|
+
export type { default as IContinuePaging } from './IContinuePaging';
|
|
4
|
+
export type { EnumDictionary } from './EnumDictionary';
|
|
5
|
+
export type { Json } from './Json';
|
|
6
|
+
export type { default as IMetaResponse } from './IMetaResponse';
|
|
7
|
+
export type { default as IPayloadResponse } from './IPayloadResponse';
|