@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.
Files changed (59) 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 +10 -11
  14. package/src/components/Engine/index.d.ts +303 -274
  15. package/src/components/Layout/Breakpoint/index.d.ts +20 -17
  16. package/src/components/Layout/Dock/index.d.ts +25 -23
  17. package/src/components/Layout/Flex/index.d.ts +38 -33
  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/XBase/index.d.ts +8 -7
  22. package/src/components/Layout/YBase/index.d.ts +8 -7
  23. package/src/components/View/VAnimation/index.d.ts +122 -118
  24. package/src/components/View/VAside/index.d.ts +5 -0
  25. package/src/components/View/VBackground/index.d.ts +10 -10
  26. package/src/components/View/VCardWindow/index.d.ts +6 -5
  27. package/src/components/View/VChromeExtensionValidator/index.d.ts +8 -7
  28. package/src/components/View/VForm/index.d.ts +5 -4
  29. package/src/components/View/VGoogleFont/index.d.ts +5 -4
  30. package/src/components/View/VHyperlink/index.d.ts +7 -6
  31. package/src/components/View/VImage/index.d.ts +12 -8
  32. package/src/components/View/VInput/VColor/index.d.ts +0 -2
  33. package/src/components/View/VInput/VDate/index.d.ts +0 -2
  34. package/src/components/View/VInput/VDatetimeLocal/index.d.ts +0 -2
  35. package/src/components/View/VInput/VDropdown/index.d.ts +2 -0
  36. package/src/components/View/VInput/VFile/index.d.ts +5 -4
  37. package/src/components/View/VInput/VGroup/index.d.ts +1 -1
  38. package/src/components/View/VInput/VRange/index.d.ts +1 -2
  39. package/src/components/View/VLabel/index.d.ts +53 -47
  40. package/src/components/View/VNav/index.d.ts +5 -0
  41. package/src/components/View/VPhoto/index.d.ts +12 -10
  42. package/src/components/View/VRoot/index.d.ts +5 -4
  43. package/src/components/View/VShadow/index.d.ts +5 -4
  44. package/src/components/View/VShape/VEllipse/index.d.ts +5 -4
  45. package/src/components/View/VShape/VLine/index.d.ts +5 -4
  46. package/src/components/View/VShape/VRectangle/index.d.ts +5 -4
  47. package/src/components/View/VSvg/index.d.ts +11 -7
  48. package/src/components/View/VText/index.d.ts +18 -16
  49. package/src/components/View/VTheme/index.d.ts +13 -11
  50. package/src/components/View/VTooltip/index.d.ts +5 -4
  51. package/src/components/View/VVideo/index.d.ts +1 -4
  52. package/src/components/View/VZone/index.d.ts +9 -8
  53. package/src/components/core.d.ts +12 -1
  54. package/src/components/web.d.ts +4 -0
  55. package/templates/.claude/skills/fewbox-den/SKILL.md +434 -96
  56. package/templates/style/_core.scss +12 -0
  57. package/templates/style/_root-properties.scss +3 -0
  58. package/templates/style/_variables.scss +12 -0
  59. package/tsconfig.app.tsbuildinfo +1 -1
@@ -1,277 +1,306 @@
1
1
  import { Property } from "csstype";
2
- export declare enum ColorType {
3
- Font = "font",
4
- Body = "body",
5
- White = "white",
6
- Black = "black",
7
- Light = "light",
8
- Light75 = "light75",
9
- Light50 = "light50",
10
- Light25 = "light25",
11
- Dark = "dark",
12
- Dark75 = "dark75",
13
- Dark50 = "dark50",
14
- Dark25 = "dark25",
15
- Primary = "primary",
16
- Primary75 = "primary75",
17
- Primary50 = "primary50",
18
- Primary25 = "primary25",
19
- Secondary = "secondary",
20
- Secondary75 = "secondary75",
21
- Secondary50 = "secondary50",
22
- Secondary25 = "secondary25",
23
- Tertiary = "tertiary",
24
- Tertiary75 = "tertiary75",
25
- Tertiary50 = "tertiary50",
26
- Tertiary25 = "tertiary25",
27
- Info = "info",
28
- Info75 = "info75",
29
- Info50 = "info50",
30
- Info25 = "info25",
31
- Success = "success",
32
- Success75 = "success75",
33
- Success50 = "success50",
34
- Success25 = "success25",
35
- Warning = "warning",
36
- Warning75 = "warning75",
37
- Warning50 = "warning50",
38
- Warning25 = "warning25",
39
- Error = "error",
40
- Error75 = "error75",
41
- Error50 = "error50",
42
- Error25 = "error25",
43
- Border = "border",
44
- Border75 = "border75",
45
- Border50 = "border50",
46
- Border25 = "border25",
47
- Placeholder = "placeholder",
48
- Placeholder75 = "placeholder75",
49
- Placeholder50 = "placeholder50",
50
- Placeholder25 = "placeholder25",
51
- Transparent = "transparent"
52
- }
53
- export declare enum FontWeightType {
54
- Thin = "font-weight-thin",
55
- ExtraLight = "font-weight-extra-light",
56
- Light = "font-weight-light",
57
- Regular = "font-weight-regular",
58
- Medium = "font-weight-medium",
59
- SemiBold = "font-weight-semi-bold",
60
- Bold = "font-weight-bold",
61
- ExtraBold = "font-weight-extra-bold",
62
- Black = "font-weight-black"
63
- }
64
- export declare enum FontFamilyType {
65
- Default = "font-family"
66
- }
67
- export declare enum LineHeightType {
68
- Default = "line-height"
69
- }
70
- export declare enum PaddingType {
71
- Default = "padding",
72
- Normal = "padding-normal",
73
- ExtraSmall = "padding-extra-small",
74
- Small = "padding-small",
75
- Large = "padding-large",
76
- ExtraLarge = "padding-extra-large"
77
- }
78
- export type FullPaddingType = PaddingType | string;
79
- export declare enum MarginType {
80
- Default = "margin",
81
- Normal = "margin-normal",
82
- ExtraSmall = "margin-extra-small",
83
- Small = "margin-small",
84
- Large = "margin-large",
85
- ExtraLarge = "margin-extra-large"
86
- }
87
- export type FullMarginType = MarginType | string;
88
- export declare enum GapType {
89
- Default = "gap",
90
- Normal = "gap-normal",
91
- ExtraSmall = "gap-extra-small",
92
- Small = "gap-small",
93
- Large = "gap-large",
94
- ExtraLarge = "gap-extra-large"
95
- }
2
+ export declare const ColorType: {
3
+ readonly Font: "font";
4
+ readonly Body: "body";
5
+ readonly White: "white";
6
+ readonly Black: "black";
7
+ readonly Light: "light";
8
+ readonly Light75: "light75";
9
+ readonly Light50: "light50";
10
+ readonly Light25: "light25";
11
+ readonly Dark: "dark";
12
+ readonly Dark75: "dark75";
13
+ readonly Dark50: "dark50";
14
+ readonly Dark25: "dark25";
15
+ readonly Primary: "primary";
16
+ readonly Primary75: "primary75";
17
+ readonly Primary50: "primary50";
18
+ readonly Primary25: "primary25";
19
+ readonly Secondary: "secondary";
20
+ readonly Secondary75: "secondary75";
21
+ readonly Secondary50: "secondary50";
22
+ readonly Secondary25: "secondary25";
23
+ readonly Tertiary: "tertiary";
24
+ readonly Tertiary75: "tertiary75";
25
+ readonly Tertiary50: "tertiary50";
26
+ readonly Tertiary25: "tertiary25";
27
+ readonly Info: "info";
28
+ readonly Info75: "info75";
29
+ readonly Info50: "info50";
30
+ readonly Info25: "info25";
31
+ readonly Success: "success";
32
+ readonly Success75: "success75";
33
+ readonly Success50: "success50";
34
+ readonly Success25: "success25";
35
+ readonly Warning: "warning";
36
+ readonly Warning75: "warning75";
37
+ readonly Warning50: "warning50";
38
+ readonly Warning25: "warning25";
39
+ readonly Error: "error";
40
+ readonly Error75: "error75";
41
+ readonly Error50: "error50";
42
+ readonly Error25: "error25";
43
+ readonly Border: "border";
44
+ readonly Border75: "border75";
45
+ readonly Border50: "border50";
46
+ readonly Border25: "border25";
47
+ readonly Placeholder: "placeholder";
48
+ readonly Placeholder75: "placeholder75";
49
+ readonly Placeholder50: "placeholder50";
50
+ readonly Placeholder25: "placeholder25";
51
+ readonly Transparent: "transparent";
52
+ };
53
+ export type ColorType = typeof ColorType[keyof typeof ColorType];
54
+ export declare const FontWeightType: {
55
+ readonly Thin: "font-weight-thin";
56
+ readonly ExtraLight: "font-weight-extra-light";
57
+ readonly Light: "font-weight-light";
58
+ readonly Regular: "font-weight-regular";
59
+ readonly Medium: "font-weight-medium";
60
+ readonly SemiBold: "font-weight-semi-bold";
61
+ readonly Bold: "font-weight-bold";
62
+ readonly ExtraBold: "font-weight-extra-bold";
63
+ readonly Black: "font-weight-black";
64
+ };
65
+ export type FontWeightType = typeof FontWeightType[keyof typeof FontWeightType];
66
+ export declare const FontFamilyType: {
67
+ readonly Default: "font-family";
68
+ };
69
+ export type FontFamilyType = typeof FontFamilyType[keyof typeof FontFamilyType];
70
+ export declare const LineHeightType: {
71
+ readonly Default: "line-height";
72
+ };
73
+ export type LineHeightType = typeof LineHeightType[keyof typeof LineHeightType];
74
+ export declare const PaddingType: {
75
+ readonly Default: "padding";
76
+ readonly Normal: "padding-normal";
77
+ readonly ExtraSmall: "padding-extra-small";
78
+ readonly Small: "padding-small";
79
+ readonly Large: "padding-large";
80
+ readonly ExtraLarge: "padding-extra-large";
81
+ };
82
+ export type PaddingType = typeof PaddingType[keyof typeof PaddingType];
83
+ export type FullPaddingType = PaddingType | Property.Padding;
84
+ export declare const MarginType: {
85
+ readonly Default: "margin";
86
+ readonly Normal: "margin-normal";
87
+ readonly ExtraSmall: "margin-extra-small";
88
+ readonly Small: "margin-small";
89
+ readonly Large: "margin-large";
90
+ readonly ExtraLarge: "margin-extra-large";
91
+ };
92
+ export type MarginType = typeof MarginType[keyof typeof MarginType];
93
+ export type FullMarginType = MarginType | Property.Margin;
94
+ export declare const GapType: {
95
+ readonly Default: "gap";
96
+ readonly Normal: "gap-normal";
97
+ readonly ExtraSmall: "gap-extra-small";
98
+ readonly Small: "gap-small";
99
+ readonly Large: "gap-large";
100
+ readonly ExtraLarge: "gap-extra-large";
101
+ };
102
+ export type GapType = typeof GapType[keyof typeof GapType];
96
103
  export type FullGapType = GapType | Property.Gap;
97
- export declare enum LetterSpacingType {
98
- Default = "letter-spacing"
99
- }
100
- export declare enum BorderRadiusType {
101
- Default = "border-radius",
102
- Normal = "border-radius-normal",
103
- ExtraSmall = "border-radius-extra-small",
104
- Small = "border-radius-small",
105
- Large = "border-radius-large",
106
- ExtraLarge = "border-radius-extra-large",
107
- Max = "border-radius-max"
108
- }
109
- export type FullBorderRadiusType = BorderRadiusType | string;
110
- export declare enum BorderStyleType {
111
- None = "border-style-none",
112
- Solid = "border-style-solid",
113
- Dashed = "border-style-dashed",
114
- Dotted = "border-style-dotted",
115
- Double = "border-style-double",
116
- Groove = "border-style-groove",
117
- Ridge = "border-style-ridge",
118
- Inset = "border-style-inset",
119
- Outset = "border-style-outset",
120
- Hidden = "border-style-hidden"
121
- }
122
- export type FullBorderStyleType = BorderStyleType | string;
123
- export declare enum BorderWidthType {
124
- Default = "border-width",
125
- Normal = "border-width-normal",
126
- ExtraSmall = "border-width-extra-small",
127
- Small = "border-width-small",
128
- Large = "border-width-large",
129
- ExtraLarge = "border-width-extra-large"
130
- }
131
- export type FullBorderWidthType = BorderWidthType | string;
132
- export declare enum VisibilityType {
133
- Visible = "visibility-visible",
134
- Hidden = "visibility-hidden",
135
- Collapse = "visibility-collapse"
136
- }
137
- export type FullVisibilityType = VisibilityType | string;
138
- export declare enum DisplayType {
139
- None = "display-none",
140
- Block = "display-block",
141
- Inline = "display-inline",
142
- InlineBlock = "display-inline-block",
143
- Flex = "display-flex",
144
- InlineFlex = "display-inline-flex",
145
- Grid = "display-grid",
146
- InlineGrid = "display-inline-grid",
147
- Table = "display-table",
148
- TableRow = "display-table-row",
149
- TableCell = "display-table-cell",
150
- Contents = "display-contents",
151
- FlowRoot = "display-flow-root"
152
- }
153
- export type FullDisplayType = DisplayType | string;
154
- export declare enum CursorType {
155
- Auto = "cursor-auto",
156
- Default = "cursor-default",
157
- None = "cursor-none",
158
- ContextMenu = "cursor-context-menu",
159
- Help = "cursor-help",
160
- Pointer = "cursor-pointer",
161
- Progress = "cursor-progress",
162
- Wait = "cursor-wait",
163
- Cell = "cursor-cell",
164
- Crosshair = "cursor-crosshair",
165
- Text = "cursor-text",
166
- VerticalText = "cursor-vertical-text",
167
- Alias = "cursor-alias",
168
- Copy = "cursor-copy",
169
- Move = "cursor-move",
170
- NoDrop = "cursor-no-drop",
171
- NotAllowed = "cursor-not-allowed",
172
- Grab = "cursor-grab",
173
- Grabbing = "cursor-grabbing",
174
- AllScroll = "cursor-all-scroll",
175
- ColResize = "cursor-col-resize",
176
- RowResize = "cursor-row-resize",
177
- NResize = "cursor-n-resize",
178
- EResize = "cursor-e-resize",
179
- SResize = "cursor-s-resize",
180
- WResize = "cursor-w-resize",
181
- NeResize = "cursor-ne-resize",
182
- NwResize = "cursor-nw-resize",
183
- SeResize = "cursor-se-resize",
184
- SwResize = "cursor-sw-resize",
185
- EwResize = "cursor-ew-resize",
186
- NsResize = "cursor-ns-resize",
187
- NeswResize = "cursor-nesw-resize",
188
- NwseResize = "cursor-nwse-resize",
189
- ZoomIn = "cursor-zoom-in",
190
- ZoomOut = "cursor-zoom-out"
191
- }
192
- export type FullCursorType = CursorType | string;
193
- export declare enum OverflowType {
194
- Visible = "overflow-visible",
195
- Hidden = "overflow-hidden",
196
- Scroll = "overflow-scroll",
197
- Auto = "overflow-auto",
198
- Clip = "overflow-clip"
199
- }
200
- export type FullOverflowType = OverflowType | string;
201
- export declare enum OverflowXType {
202
- Visible = "overflow-x-visible",
203
- Hidden = "overflow-x-hidden",
204
- Scroll = "overflow-x-scroll",
205
- Auto = "overflow-x-auto",
206
- Clip = "overflow-x-clip"
207
- }
208
- export type FullOverflowXType = OverflowXType | string;
209
- export declare enum OverflowYType {
210
- Visible = "overflow-y-visible",
211
- Hidden = "overflow-y-hidden",
212
- Scroll = "overflow-y-scroll",
213
- Auto = "overflow-y-auto",
214
- Clip = "overflow-y-clip"
215
- }
216
- export type FullOverflowYType = OverflowYType | string;
217
- export declare enum OpacityType {
218
- _0 = "opacity-0",
219
- _10 = "opacity-10",
220
- _20 = "opacity-20",
221
- _25 = "opacity-25",
222
- _30 = "opacity-30",
223
- _40 = "opacity-40",
224
- _50 = "opacity-50",
225
- _60 = "opacity-60",
226
- _70 = "opacity-70",
227
- _75 = "opacity-75",
228
- _80 = "opacity-80",
229
- _90 = "opacity-90",
230
- _100 = "opacity-100"
231
- }
232
- export declare enum ViewSizeType {
233
- Ellipse = "v-ellipse-size",
234
- Rectangle = "v-rectangle-size",
235
- Image = "v-image-size",
236
- Svg = "v-svg-size",
237
- Window = "v-window-size"
238
- }
104
+ export declare const LetterSpacingType: {
105
+ readonly Default: "letter-spacing";
106
+ readonly Normal: "letter-spacing-normal";
107
+ readonly ExtraSmall: "letter-spacing-extra-small";
108
+ readonly Small: "letter-spacing-small";
109
+ readonly Large: "letter-spacing-large";
110
+ readonly ExtraLarge: "letter-spacing-extra-large";
111
+ };
112
+ export type LetterSpacingType = typeof LetterSpacingType[keyof typeof LetterSpacingType];
113
+ export type FullLetterSpacingType = LetterSpacingType | Property.LetterSpacing;
114
+ export declare const BorderRadiusType: {
115
+ readonly Default: "border-radius";
116
+ readonly Normal: "border-radius-normal";
117
+ readonly ExtraSmall: "border-radius-extra-small";
118
+ readonly Small: "border-radius-small";
119
+ readonly Large: "border-radius-large";
120
+ readonly ExtraLarge: "border-radius-extra-large";
121
+ readonly Max: "border-radius-max";
122
+ };
123
+ export type BorderRadiusType = typeof BorderRadiusType[keyof typeof BorderRadiusType];
124
+ export type FullBorderRadiusType = BorderRadiusType | Property.BorderRadius;
125
+ export declare const BorderStyleType: {
126
+ readonly None: "border-style-none";
127
+ readonly Solid: "border-style-solid";
128
+ readonly Dashed: "border-style-dashed";
129
+ readonly Dotted: "border-style-dotted";
130
+ readonly Double: "border-style-double";
131
+ readonly Groove: "border-style-groove";
132
+ readonly Ridge: "border-style-ridge";
133
+ readonly Inset: "border-style-inset";
134
+ readonly Outset: "border-style-outset";
135
+ readonly Hidden: "border-style-hidden";
136
+ };
137
+ export type BorderStyleType = typeof BorderStyleType[keyof typeof BorderStyleType];
138
+ export type FullBorderStyleType = BorderStyleType | Property.BorderStyle;
139
+ export declare const BorderWidthType: {
140
+ readonly Default: "border-width";
141
+ readonly Normal: "border-width-normal";
142
+ readonly ExtraSmall: "border-width-extra-small";
143
+ readonly Small: "border-width-small";
144
+ readonly Large: "border-width-large";
145
+ readonly ExtraLarge: "border-width-extra-large";
146
+ };
147
+ export type BorderWidthType = typeof BorderWidthType[keyof typeof BorderWidthType];
148
+ export type FullBorderWidthType = BorderWidthType | Property.BorderWidth;
149
+ export declare const VisibilityType: {
150
+ readonly Visible: "visibility-visible";
151
+ readonly Hidden: "visibility-hidden";
152
+ readonly Collapse: "visibility-collapse";
153
+ };
154
+ export type VisibilityType = typeof VisibilityType[keyof typeof VisibilityType];
155
+ export type FullVisibilityType = VisibilityType | Property.Visibility;
156
+ export declare const DisplayType: {
157
+ readonly None: "display-none";
158
+ readonly Block: "display-block";
159
+ readonly Inline: "display-inline";
160
+ readonly InlineBlock: "display-inline-block";
161
+ readonly Flex: "display-flex";
162
+ readonly InlineFlex: "display-inline-flex";
163
+ readonly Grid: "display-grid";
164
+ readonly InlineGrid: "display-inline-grid";
165
+ readonly Table: "display-table";
166
+ readonly TableRow: "display-table-row";
167
+ readonly TableCell: "display-table-cell";
168
+ readonly Contents: "display-contents";
169
+ readonly FlowRoot: "display-flow-root";
170
+ };
171
+ export type DisplayType = typeof DisplayType[keyof typeof DisplayType];
172
+ export type FullDisplayType = DisplayType | Property.Display;
173
+ export declare const CursorType: {
174
+ readonly Auto: "cursor-auto";
175
+ readonly Default: "cursor-default";
176
+ readonly None: "cursor-none";
177
+ readonly ContextMenu: "cursor-context-menu";
178
+ readonly Help: "cursor-help";
179
+ readonly Pointer: "cursor-pointer";
180
+ readonly Progress: "cursor-progress";
181
+ readonly Wait: "cursor-wait";
182
+ readonly Cell: "cursor-cell";
183
+ readonly Crosshair: "cursor-crosshair";
184
+ readonly Text: "cursor-text";
185
+ readonly VerticalText: "cursor-vertical-text";
186
+ readonly Alias: "cursor-alias";
187
+ readonly Copy: "cursor-copy";
188
+ readonly Move: "cursor-move";
189
+ readonly NoDrop: "cursor-no-drop";
190
+ readonly NotAllowed: "cursor-not-allowed";
191
+ readonly Grab: "cursor-grab";
192
+ readonly Grabbing: "cursor-grabbing";
193
+ readonly AllScroll: "cursor-all-scroll";
194
+ readonly ColResize: "cursor-col-resize";
195
+ readonly RowResize: "cursor-row-resize";
196
+ readonly NResize: "cursor-n-resize";
197
+ readonly EResize: "cursor-e-resize";
198
+ readonly SResize: "cursor-s-resize";
199
+ readonly WResize: "cursor-w-resize";
200
+ readonly NeResize: "cursor-ne-resize";
201
+ readonly NwResize: "cursor-nw-resize";
202
+ readonly SeResize: "cursor-se-resize";
203
+ readonly SwResize: "cursor-sw-resize";
204
+ readonly EwResize: "cursor-ew-resize";
205
+ readonly NsResize: "cursor-ns-resize";
206
+ readonly NeswResize: "cursor-nesw-resize";
207
+ readonly NwseResize: "cursor-nwse-resize";
208
+ readonly ZoomIn: "cursor-zoom-in";
209
+ readonly ZoomOut: "cursor-zoom-out";
210
+ };
211
+ export type CursorType = typeof CursorType[keyof typeof CursorType];
212
+ export type FullCursorType = CursorType | Property.Cursor;
213
+ export declare const OverflowType: {
214
+ readonly Visible: "overflow-visible";
215
+ readonly Hidden: "overflow-hidden";
216
+ readonly Scroll: "overflow-scroll";
217
+ readonly Auto: "overflow-auto";
218
+ readonly Clip: "overflow-clip";
219
+ };
220
+ export type OverflowType = typeof OverflowType[keyof typeof OverflowType];
221
+ export type FullOverflowType = OverflowType | Property.Overflow;
222
+ export declare const OverflowXType: {
223
+ readonly Visible: "overflow-x-visible";
224
+ readonly Hidden: "overflow-x-hidden";
225
+ readonly Scroll: "overflow-x-scroll";
226
+ readonly Auto: "overflow-x-auto";
227
+ readonly Clip: "overflow-x-clip";
228
+ };
229
+ export type OverflowXType = typeof OverflowXType[keyof typeof OverflowXType];
230
+ export type FullOverflowXType = OverflowXType | Property.OverflowX;
231
+ export declare const OverflowYType: {
232
+ readonly Visible: "overflow-y-visible";
233
+ readonly Hidden: "overflow-y-hidden";
234
+ readonly Scroll: "overflow-y-scroll";
235
+ readonly Auto: "overflow-y-auto";
236
+ readonly Clip: "overflow-y-clip";
237
+ };
238
+ export type OverflowYType = typeof OverflowYType[keyof typeof OverflowYType];
239
+ export type FullOverflowYType = OverflowYType | Property.OverflowY;
240
+ export declare const OpacityType: {
241
+ readonly _0: "opacity-0";
242
+ readonly _10: "opacity-10";
243
+ readonly _20: "opacity-20";
244
+ readonly _25: "opacity-25";
245
+ readonly _30: "opacity-30";
246
+ readonly _40: "opacity-40";
247
+ readonly _50: "opacity-50";
248
+ readonly _60: "opacity-60";
249
+ readonly _70: "opacity-70";
250
+ readonly _75: "opacity-75";
251
+ readonly _80: "opacity-80";
252
+ readonly _90: "opacity-90";
253
+ readonly _100: "opacity-100";
254
+ };
255
+ export type OpacityType = typeof OpacityType[keyof typeof OpacityType];
256
+ export type FullOpacityType = OpacityType | Property.Opacity;
257
+ export declare const ViewSizeType: {
258
+ readonly Ellipse: "v-ellipse-size";
259
+ readonly Rectangle: "v-rectangle-size";
260
+ readonly Image: "v-image-size";
261
+ readonly Svg: "v-svg-size";
262
+ readonly Window: "v-window-size";
263
+ };
264
+ export type ViewSizeType = typeof ViewSizeType[keyof typeof ViewSizeType];
239
265
  export declare const getWeightValue: (weightType: FontWeightType) => number;
240
- export type FullFontSizeType = FontSizeType | string;
241
- export declare enum FontSizeType {
242
- Default = "font-size",
243
- Normal = "font-size-normal",
244
- Small = "font-size-small",
245
- ExtraSmall = "font-size-extra-small",
246
- Large = "font-size-large",
247
- ExtraLarge = "font-size-extra-large",
248
- AutoNormal = "auto-font-size-normal",
249
- AutoSmall = "auto-font-size-small",
250
- AutoExtraSmall = "auto-font-size-extra-small",
251
- AutoLarge = "auto-font-size-large",
252
- AutoExtraLarge = "auto-font-size-extra-large"
253
- }
254
- export type FullColorType = ColorType | string;
255
- export declare enum PseudoType {
256
- All = "all",
257
- Before = "before",
258
- After = "after"
259
- }
260
- export declare enum DirectionType {
261
- All = "all",
262
- Top = "top",
263
- Right = "right",
264
- Bottom = "bottom",
265
- Left = "left",
266
- ExceptTop = "except-top",
267
- ExceptRight = "except-right",
268
- ExceptBottom = "except-bottom",
269
- ExceptLeft = "except-left",
270
- RightTop = "right-top",
271
- RightBottom = "right-bottom",
272
- LeftTop = "left-top",
273
- LeftBottom = "left-bottom",
274
- TopBottom = "top-bottom",
275
- LeftRight = "left-right"
276
- }
277
- export declare const getGeneratedClassName: (className: string, isDefaultValue: boolean | undefined, sizeType?: FullFontSizeType, isAutoSize?: boolean, weightType?: FontWeightType, frontColorType?: FullColorType, backgroundColorType?: FullColorType, borderColorType?: FullColorType, borderDirection?: DirectionType, pseudoType?: PseudoType, pseudoFrontColor?: FullColorType, pseudoBackgroundColor?: FullColorType, pseudoBorderColor?: FullColorType, pseudoBorderDirection?: DirectionType, borderRadius?: FullBorderRadiusType, borderStyle?: FullBorderStyleType, borderWidth?: FullBorderWidthType, padding?: FullPaddingType, margin?: FullMarginType, opacityType?: OpacityType, display?: FullDisplayType, visibility?: FullVisibilityType, cursor?: FullCursorType, overflow?: FullOverflowType, overflowX?: FullOverflowXType, overflowY?: FullOverflowYType) => string;
266
+ export type FullFontSizeType = FontSizeType | Property.FontSize;
267
+ export declare const FontSizeType: {
268
+ readonly Default: "font-size";
269
+ readonly Normal: "font-size-normal";
270
+ readonly Small: "font-size-small";
271
+ readonly ExtraSmall: "font-size-extra-small";
272
+ readonly Large: "font-size-large";
273
+ readonly ExtraLarge: "font-size-extra-large";
274
+ readonly AutoNormal: "auto-font-size-normal";
275
+ readonly AutoSmall: "auto-font-size-small";
276
+ readonly AutoExtraSmall: "auto-font-size-extra-small";
277
+ readonly AutoLarge: "auto-font-size-large";
278
+ readonly AutoExtraLarge: "auto-font-size-extra-large";
279
+ };
280
+ export type FontSizeType = typeof FontSizeType[keyof typeof FontSizeType];
281
+ export type FullColorType = ColorType | Property.Color;
282
+ export declare const PseudoType: {
283
+ readonly All: "all";
284
+ readonly Before: "before";
285
+ readonly After: "after";
286
+ };
287
+ export type PseudoType = typeof PseudoType[keyof typeof PseudoType];
288
+ export declare const DirectionType: {
289
+ readonly All: "all";
290
+ readonly Top: "top";
291
+ readonly Right: "right";
292
+ readonly Bottom: "bottom";
293
+ readonly Left: "left";
294
+ readonly ExceptTop: "except-top";
295
+ readonly ExceptRight: "except-right";
296
+ readonly ExceptBottom: "except-bottom";
297
+ readonly ExceptLeft: "except-left";
298
+ readonly RightTop: "right-top";
299
+ readonly RightBottom: "right-bottom";
300
+ readonly LeftTop: "left-top";
301
+ readonly LeftBottom: "left-bottom";
302
+ readonly TopBottom: "top-bottom";
303
+ readonly LeftRight: "left-right";
304
+ };
305
+ export type DirectionType = typeof DirectionType[keyof typeof DirectionType];
306
+ export declare const getGeneratedClassName: (className: string, isDefaultValue: boolean | undefined, sizeType?: FullFontSizeType, isAutoSize?: boolean, weightType?: FontWeightType, frontColorType?: FullColorType, backgroundColorType?: FullColorType, borderColorType?: FullColorType, borderDirection?: DirectionType, pseudoType?: PseudoType, pseudoFrontColor?: FullColorType, pseudoBackgroundColor?: FullColorType, pseudoBorderColor?: FullColorType, pseudoBorderDirection?: DirectionType, borderRadius?: FullBorderRadiusType, borderStyle?: FullBorderStyleType, borderWidth?: FullBorderWidthType, padding?: FullPaddingType, margin?: FullMarginType, opacityType?: FullOpacityType, display?: FullDisplayType, visibility?: FullVisibilityType, cursor?: FullCursorType, overflow?: FullOverflowType, overflowX?: FullOverflowXType, overflowY?: FullOverflowYType, letterSpacing?: FullLetterSpacingType) => string;