@fewbox/den 0.1.43 → 0.2.0-preview.21

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 (67) hide show
  1. package/engine.js +2 -0
  2. package/engine.js.map +1 -0
  3. package/index-core.d.ts +1 -4
  4. package/index-engine.d.ts +27 -0
  5. package/index.css +1 -1
  6. package/index.js +2 -1
  7. package/index.js.map +1 -1
  8. package/package.json +10 -1
  9. package/scripts/generate-packages.js +12 -0
  10. package/server.js +71 -0
  11. package/src/components/Auth/GoogleGrant/index.d.ts +10 -8
  12. package/src/components/Auth/GoogleSignin/index.d.ts +6 -5
  13. package/src/components/Engine/Base/index.d.ts +21 -22
  14. package/src/components/Engine/index.d.ts +305 -124
  15. package/src/components/Layout/Breakpoint/index.d.ts +28 -0
  16. package/src/components/Layout/Dock/index.d.ts +26 -27
  17. package/src/components/Layout/Flex/index.d.ts +40 -34
  18. package/src/components/Layout/FlexItem/index.d.ts +8 -7
  19. package/src/components/Layout/Position/index.d.ts +19 -17
  20. package/src/components/Layout/PositionArea/index.d.ts +5 -4
  21. package/src/components/Layout/Responsive/index.d.ts +2 -2
  22. package/src/components/Layout/XBase/index.d.ts +10 -8
  23. package/src/components/Layout/YBase/index.d.ts +10 -8
  24. package/src/components/View/VAnimation/index.d.ts +122 -118
  25. package/src/components/View/VAside/index.d.ts +5 -0
  26. package/src/components/View/VAvatar/index.d.ts +0 -1
  27. package/src/components/View/VBackground/index.d.ts +10 -10
  28. package/src/components/View/VCardWindow/index.d.ts +6 -5
  29. package/src/components/View/VChromeExtensionValidator/index.d.ts +8 -7
  30. package/src/components/View/VErrorBoundary/index.d.ts +1 -1
  31. package/src/components/View/VForm/index.d.ts +7 -7
  32. package/src/components/View/VGoogleFont/index.d.ts +5 -4
  33. package/src/components/View/VHyperlink/index.d.ts +7 -6
  34. package/src/components/View/VImage/index.d.ts +12 -8
  35. package/src/components/View/VInput/VColor/index.d.ts +0 -2
  36. package/src/components/View/VInput/VDate/index.d.ts +0 -2
  37. package/src/components/View/VInput/VDatetimeLocal/index.d.ts +0 -2
  38. package/src/components/View/VInput/VDropdown/index.d.ts +2 -0
  39. package/src/components/View/VInput/VFile/index.d.ts +5 -4
  40. package/src/components/View/VInput/VGroup/index.d.ts +1 -1
  41. package/src/components/View/VInput/VRange/index.d.ts +2 -1
  42. package/src/components/View/VInput/index.d.ts +5 -4
  43. package/src/components/View/VLabel/index.d.ts +53 -47
  44. package/src/components/View/VNav/index.d.ts +5 -0
  45. package/src/components/View/VPhoto/index.d.ts +12 -10
  46. package/src/components/View/VRoot/index.d.ts +5 -4
  47. package/src/components/View/VShadow/index.d.ts +5 -4
  48. package/src/components/View/VShape/VEllipse/index.d.ts +5 -4
  49. package/src/components/View/VShape/VLine/index.d.ts +5 -4
  50. package/src/components/View/VShape/VRectangle/index.d.ts +5 -4
  51. package/src/components/View/VSvg/index.d.ts +11 -7
  52. package/src/components/View/VText/index.d.ts +18 -16
  53. package/src/components/View/VTextArea/index.d.ts +2 -0
  54. package/src/components/View/VTheme/index.d.ts +14 -7
  55. package/src/components/View/VTooltip/index.d.ts +5 -4
  56. package/src/components/View/VVideo/index.d.ts +1 -4
  57. package/src/components/View/VZone/index.d.ts +9 -8
  58. package/src/components/core.d.ts +20 -6
  59. package/src/components/web.d.ts +10 -3
  60. package/src/store/index.d.ts +6 -6
  61. package/templates/.claude/skills/fewbox-den/SKILL.md +434 -96
  62. package/templates/style/_core.scss +94 -0
  63. package/templates/style/_root-properties.scss +51 -0
  64. package/templates/style/_variables.scss +166 -3
  65. package/tsconfig.app.tsbuildinfo +1 -0
  66. package/src/components/Layout/Display/index.d.ts +0 -18
  67. package/src/components/Layout/index.d.ts +0 -8
@@ -1,12 +1,13 @@
1
1
  import { IBaseProps } from '../../Engine/Base';
2
- export declare enum ZoneCategory {
3
- Fluid = "fluid",
4
- Small = "small",
5
- Medium = "medium",
6
- Large = "large",
7
- ExtraLarge = "extra-large",
8
- ExtraExtraLarge = "extra-extra-large"
9
- }
2
+ export declare const ZoneCategory: {
3
+ readonly Fluid: "fluid";
4
+ readonly Small: "small";
5
+ readonly Medium: "medium";
6
+ readonly Large: "large";
7
+ readonly ExtraLarge: "extra-large";
8
+ readonly ExtraExtraLarge: "extra-extra-large";
9
+ };
10
+ export type ZoneCategory = typeof ZoneCategory[keyof typeof ZoneCategory];
10
11
  export interface IVZoneProps extends IBaseProps {
11
12
  category: ZoneCategory;
12
13
  }
@@ -1,9 +1,10 @@
1
- export { default as Base, IBaseProps, IBaseStates, IBaseReturn, IViewProps } from './Engine/Base';
2
- export { BreakpointType } from './Layout';
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 Display, DisplayCategory, DisplayType } from './Layout/Display';
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, ViewSizeType, FullColorType, ColorType, getGeneratedClassName } from './Engine';
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, ISelectItemData } from './View/VSelect';
92
- export { default as VDropdown, IDropdownItemData } from './View/VInput/VDropdown';
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';
@@ -102,16 +105,27 @@ export { default as VRectangle } from './View/VShape/VRectangle';
102
105
  export { default as VShadow, ShadowCategory } from './View/VShadow';
103
106
  export { default as VAnimation, AnimationCategory, AnimationDelay, AnimationRepeat, AnimationSpeed } from './View/VAnimation';
104
107
  export { default as VAudio } from './View/VAudio';
108
+ export type { SourceItem } from './View/VAudio';
105
109
  export { default as VVideo } from './View/VVideo';
106
110
  export { default as VHeader } from './View/VHeader';
107
111
  export { default as VMain } from './View/VMain';
108
112
  export { default as VFooter } from './View/VFooter';
113
+ export { default as VAside } from './View/VAside';
114
+ export { default as VNav } from './View/VNav';
109
115
  export { default as VHR } from './View/VHR';
110
116
  export { default as VSection } from './View/VSection';
111
117
  export { default as VMask } from './View/VMask';
112
118
  export { default as VFrame } from './View/VFrame';
113
119
  export { default as VTheme, ThemeCategory } from './View/VTheme';
120
+ export type { ThemeVariables } from './View/VTheme';
114
121
  export { default as VTooltip, TooltipCategory } from './View/VTooltip';
115
122
  export { default as VLoading } from './View/VLoading';
116
123
  export { default as VErrorBoundary } from './View/VErrorBoundary';
124
+ export { default as VBadge } from './View/VBadge';
125
+ export type { IVBadgeProps } from './View/VBadge';
126
+ export { default as VTemplate } from './View/VTemplate';
127
+ export type { IVTemplateProps } from './View/VTemplate';
128
+ export { default as VMount } from './View/VMount';
129
+ export { RootCategory } from './View/VRoot';
130
+ export { PseudoType, DirectionType, getWeightValue } from './Engine';
117
131
  export { convertFormDataToJson } from './util';
@@ -1,9 +1,16 @@
1
1
  export * from './core';
2
2
  export { default as Debug } from './Debug';
3
+ export type { IDebugProps } from './Debug';
3
4
  export { default as VChromeExtensionValidator, ExtensionStatus } from './View/VChromeExtensionValidator';
4
- export { default as VGoogleFont, IGoogleTypeface, IGoogleFont, GoogleFontType } from './View/VGoogleFont';
5
- export { default as GoogleGrant, GoogleGrantCategory, GoogleGrantUXMode, GoogleGrantCode, GoogleGrantToken } from './Auth/GoogleGrant';
5
+ export { default as VGoogleFont, GoogleFontType } from './View/VGoogleFont';
6
+ export type { IGoogleTypeface, IGoogleFont } from './View/VGoogleFont';
7
+ export { default as GoogleGrant, GoogleGrantCategory, GoogleGrantUXMode } from './Auth/GoogleGrant';
8
+ export type { GoogleGrantCode, GoogleGrantToken } from './Auth/GoogleGrant';
6
9
  export { default as FigmaSignin } from './Auth/FigmaSignin';
10
+ export type { IFigmaSigninProps } from './Auth/FigmaSignin';
7
11
  export { default as GoogleSignin, GoogleSigninUXMode } from './Auth/GoogleSignin';
12
+ export type { IGoogleSigninProps } from './Auth/GoogleSignin';
8
13
  export { default as WeComSignin } from './Auth/WeComSignin';
9
- export { IUserProfile, parseJWT } from './Auth/util';
14
+ export type { IWeComSigninProps } from './Auth/WeComSignin';
15
+ export { parseJWT } from './Auth/util';
16
+ export type { IUserProfile } from './Auth/util';
@@ -1,7 +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';
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
5
  export type { Json } from './Json';
6
- export { default as IMetaResponse } from './IMetaResponse';
7
- export { default as IPayloadResponse } from './IPayloadResponse';
6
+ export type { default as IMetaResponse } from './IMetaResponse';
7
+ export type { default as IPayloadResponse } from './IPayloadResponse';