@fewbox/den 0.1.44 → 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.
- package/engine.js +2 -0
- package/engine.js.map +1 -0
- package/index-core.d.ts +1 -4
- package/index-engine.d.ts +27 -0
- package/index.css +1 -1
- package/index.js +2 -1
- package/index.js.map +1 -1
- package/package.json +10 -1
- package/scripts/generate-packages.js +12 -0
- package/server.js +71 -0
- 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 +10 -11
- package/src/components/Engine/index.d.ts +303 -274
- package/src/components/Layout/Breakpoint/index.d.ts +20 -17
- package/src/components/Layout/Dock/index.d.ts +25 -23
- package/src/components/Layout/Flex/index.d.ts +38 -33
- 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/XBase/index.d.ts +8 -7
- package/src/components/Layout/YBase/index.d.ts +8 -7
- package/src/components/View/VAnimation/index.d.ts +122 -118
- package/src/components/View/VAside/index.d.ts +5 -0
- 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/VForm/index.d.ts +5 -4
- 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/VDropdown/index.d.ts +2 -0
- 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 +1 -2
- package/src/components/View/VLabel/index.d.ts +53 -47
- package/src/components/View/VNav/index.d.ts +5 -0
- 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/VTheme/index.d.ts +13 -11
- 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 +12 -1
- package/src/components/web.d.ts +4 -0
- package/templates/.claude/skills/fewbox-den/SKILL.md +434 -96
- package/templates/style/_core.scss +12 -0
- package/templates/style/_root-properties.scss +3 -0
- package/templates/style/_variables.scss +12 -0
- package/tsconfig.app.tsbuildinfo +1 -1
|
@@ -296,6 +296,18 @@ $border-positions: "all", "top", "right", "bottom", "left", "except-top", "excep
|
|
|
296
296
|
font-weight: var(#{v.$var-prefix}font-weight-#{$font-weight});
|
|
297
297
|
}
|
|
298
298
|
}
|
|
299
|
+
/* gap */
|
|
300
|
+
@each $gap, $value in v.$gaps {
|
|
301
|
+
.gap-#{$gap} {
|
|
302
|
+
gap: var(#{v.$var-prefix}gap-#{$gap});
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
/* letter-spacing */
|
|
306
|
+
@each $letter-spacing, $value in v.$letter-spacings {
|
|
307
|
+
.letter-spacing-#{$letter-spacing} {
|
|
308
|
+
letter-spacing: var(#{v.$var-prefix}letter-spacing-#{$letter-spacing});
|
|
309
|
+
}
|
|
310
|
+
}
|
|
299
311
|
/* padding */
|
|
300
312
|
@each $padding, $value in v.$paddings {
|
|
301
313
|
.padding-#{$padding} {
|
|
@@ -75,6 +75,9 @@
|
|
|
75
75
|
#{v.$var-prefix}font-size: #{v.$font-size};
|
|
76
76
|
#{v.$var-prefix}line-height: #{v.$line-height};
|
|
77
77
|
#{v.$var-prefix}letter-spacing: #{v.$letter-spacing};
|
|
78
|
+
@each $letter-spacing, $value in v.$letter-spacings {
|
|
79
|
+
#{v.$var-prefix}letter-spacing-#{$letter-spacing}: #{$value};
|
|
80
|
+
}
|
|
78
81
|
#{v.$var-prefix}padding: #{v.$padding};
|
|
79
82
|
#{v.$var-prefix}margin: #{v.$margin};
|
|
80
83
|
#{v.$var-prefix}box-sizing: #{v.$box-sizing};
|
|
@@ -252,6 +252,18 @@ $scrollbar-radius: 8px;
|
|
|
252
252
|
/*------------------*/
|
|
253
253
|
$line-height: 1.4;
|
|
254
254
|
$letter-spacing: 0.01em;
|
|
255
|
+
$letter-spacing-normal: 0.05em;
|
|
256
|
+
$letter-spacing-extra-small: $letter-spacing-normal * 0.5;
|
|
257
|
+
$letter-spacing-small: $letter-spacing-normal * 0.8;
|
|
258
|
+
$letter-spacing-large: $letter-spacing-normal * 1.4;
|
|
259
|
+
$letter-spacing-extra-large: $letter-spacing-normal * 2.4;
|
|
260
|
+
$letter-spacings: (
|
|
261
|
+
"normal": $letter-spacing-normal,
|
|
262
|
+
"extra-small": $letter-spacing-extra-small,
|
|
263
|
+
"small": $letter-spacing-small,
|
|
264
|
+
"large": $letter-spacing-large,
|
|
265
|
+
"extra-large": $letter-spacing-extra-large,
|
|
266
|
+
);
|
|
255
267
|
$font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
|
|
256
268
|
"Segoe UI Emoji", "Segoe UI Symbol";
|
|
257
269
|
$font-size: 1em; // 16px * 0.875 = 14px;
|