@fewbox/den-web 0.1.43 → 0.2.0-preview.2
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-web.d.ts +1 -4
- package/index.css +1 -1
- package/index.js +2 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Auth/GoogleGrant/index.d.ts +10 -8
- package/src/components/Auth/GoogleSignin/index.d.ts +6 -5
- package/src/components/Engine/Base/index.d.ts +21 -22
- package/src/components/Engine/index.d.ts +296 -122
- package/src/components/Layout/Breakpoint/index.d.ts +28 -0
- package/src/components/Layout/Dock/index.d.ts +26 -27
- package/src/components/Layout/Flex/index.d.ts +40 -34
- package/src/components/Layout/FlexItem/index.d.ts +8 -7
- package/src/components/Layout/Position/index.d.ts +19 -17
- package/src/components/Layout/PositionArea/index.d.ts +5 -4
- package/src/components/Layout/Responsive/index.d.ts +2 -2
- package/src/components/Layout/XBase/index.d.ts +10 -8
- package/src/components/Layout/YBase/index.d.ts +10 -8
- package/src/components/View/VAnimation/index.d.ts +122 -118
- package/src/components/View/VAvatar/index.d.ts +0 -1
- package/src/components/View/VBackground/index.d.ts +10 -10
- package/src/components/View/VCardWindow/index.d.ts +6 -5
- package/src/components/View/VChromeExtensionValidator/index.d.ts +8 -7
- package/src/components/View/VErrorBoundary/index.d.ts +1 -1
- package/src/components/View/VForm/index.d.ts +7 -7
- package/src/components/View/VGoogleFont/index.d.ts +5 -4
- package/src/components/View/VHyperlink/index.d.ts +7 -6
- package/src/components/View/VImage/index.d.ts +12 -8
- package/src/components/View/VInput/VColor/index.d.ts +0 -2
- package/src/components/View/VInput/VDate/index.d.ts +0 -2
- package/src/components/View/VInput/VDatetimeLocal/index.d.ts +0 -2
- package/src/components/View/VInput/VFile/index.d.ts +5 -4
- package/src/components/View/VInput/VGroup/index.d.ts +1 -1
- package/src/components/View/VInput/VRange/index.d.ts +2 -1
- package/src/components/View/VInput/index.d.ts +5 -4
- package/src/components/View/VLabel/index.d.ts +53 -47
- package/src/components/View/VPhoto/index.d.ts +12 -10
- package/src/components/View/VRoot/index.d.ts +5 -4
- package/src/components/View/VShadow/index.d.ts +5 -4
- package/src/components/View/VShape/VEllipse/index.d.ts +5 -4
- package/src/components/View/VShape/VLine/index.d.ts +5 -4
- package/src/components/View/VShape/VRectangle/index.d.ts +5 -4
- package/src/components/View/VSvg/index.d.ts +11 -7
- package/src/components/View/VText/index.d.ts +18 -16
- package/src/components/View/VTextArea/index.d.ts +2 -0
- package/src/components/View/VTheme/index.d.ts +14 -7
- package/src/components/View/VTooltip/index.d.ts +5 -4
- package/src/components/View/VVideo/index.d.ts +1 -4
- package/src/components/View/VZone/index.d.ts +9 -8
- package/src/components/core.d.ts +18 -6
- package/src/components/web.d.ts +10 -3
- package/src/store/index.d.ts +6 -6
- package/templates/.claude/skills/fewbox-den/SKILL.md +400 -86
- 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/index-web.d.ts
CHANGED