@fewbox/den-web 0.1.44 → 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.
Files changed (48) hide show
  1. package/index-web.d.ts +1 -4
  2. package/index.css +1 -1
  3. package/index.js +2 -1
  4. package/index.js.map +1 -1
  5. package/package.json +1 -1
  6. package/src/components/Auth/GoogleGrant/index.d.ts +10 -8
  7. package/src/components/Auth/GoogleSignin/index.d.ts +6 -5
  8. package/src/components/Engine/Base/index.d.ts +8 -9
  9. package/src/components/Engine/index.d.ts +282 -260
  10. package/src/components/Layout/Breakpoint/index.d.ts +20 -17
  11. package/src/components/Layout/Dock/index.d.ts +25 -23
  12. package/src/components/Layout/Flex/index.d.ts +38 -33
  13. package/src/components/Layout/FlexItem/index.d.ts +8 -7
  14. package/src/components/Layout/Position/index.d.ts +19 -17
  15. package/src/components/Layout/PositionArea/index.d.ts +5 -4
  16. package/src/components/Layout/XBase/index.d.ts +8 -7
  17. package/src/components/Layout/YBase/index.d.ts +8 -7
  18. package/src/components/View/VAnimation/index.d.ts +122 -118
  19. package/src/components/View/VBackground/index.d.ts +10 -10
  20. package/src/components/View/VCardWindow/index.d.ts +6 -5
  21. package/src/components/View/VChromeExtensionValidator/index.d.ts +8 -7
  22. package/src/components/View/VForm/index.d.ts +5 -4
  23. package/src/components/View/VGoogleFont/index.d.ts +5 -4
  24. package/src/components/View/VHyperlink/index.d.ts +7 -6
  25. package/src/components/View/VImage/index.d.ts +12 -8
  26. package/src/components/View/VInput/VColor/index.d.ts +0 -2
  27. package/src/components/View/VInput/VDate/index.d.ts +0 -2
  28. package/src/components/View/VInput/VDatetimeLocal/index.d.ts +0 -2
  29. package/src/components/View/VInput/VFile/index.d.ts +5 -4
  30. package/src/components/View/VInput/VGroup/index.d.ts +1 -1
  31. package/src/components/View/VInput/VRange/index.d.ts +1 -2
  32. package/src/components/View/VLabel/index.d.ts +53 -47
  33. package/src/components/View/VPhoto/index.d.ts +12 -10
  34. package/src/components/View/VRoot/index.d.ts +5 -4
  35. package/src/components/View/VShadow/index.d.ts +5 -4
  36. package/src/components/View/VShape/VEllipse/index.d.ts +5 -4
  37. package/src/components/View/VShape/VLine/index.d.ts +5 -4
  38. package/src/components/View/VShape/VRectangle/index.d.ts +5 -4
  39. package/src/components/View/VSvg/index.d.ts +11 -7
  40. package/src/components/View/VText/index.d.ts +18 -16
  41. package/src/components/View/VTheme/index.d.ts +13 -11
  42. package/src/components/View/VTooltip/index.d.ts +5 -4
  43. package/src/components/View/VVideo/index.d.ts +1 -4
  44. package/src/components/View/VZone/index.d.ts +9 -8
  45. package/src/components/core.d.ts +10 -1
  46. package/src/components/web.d.ts +4 -0
  47. package/templates/.claude/skills/fewbox-den/SKILL.md +400 -86
  48. package/tsconfig.app.tsbuildinfo +1 -1
@@ -1,277 +1,299 @@
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
- }
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];
78
83
  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
- }
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];
87
93
  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
- }
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
- }
104
+ export declare const LetterSpacingType: {
105
+ readonly Default: "letter-spacing";
106
+ };
107
+ export type LetterSpacingType = typeof LetterSpacingType[keyof typeof LetterSpacingType];
108
+ export declare const BorderRadiusType: {
109
+ readonly Default: "border-radius";
110
+ readonly Normal: "border-radius-normal";
111
+ readonly ExtraSmall: "border-radius-extra-small";
112
+ readonly Small: "border-radius-small";
113
+ readonly Large: "border-radius-large";
114
+ readonly ExtraLarge: "border-radius-extra-large";
115
+ readonly Max: "border-radius-max";
116
+ };
117
+ export type BorderRadiusType = typeof BorderRadiusType[keyof typeof BorderRadiusType];
109
118
  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
- }
119
+ export declare const BorderStyleType: {
120
+ readonly None: "border-style-none";
121
+ readonly Solid: "border-style-solid";
122
+ readonly Dashed: "border-style-dashed";
123
+ readonly Dotted: "border-style-dotted";
124
+ readonly Double: "border-style-double";
125
+ readonly Groove: "border-style-groove";
126
+ readonly Ridge: "border-style-ridge";
127
+ readonly Inset: "border-style-inset";
128
+ readonly Outset: "border-style-outset";
129
+ readonly Hidden: "border-style-hidden";
130
+ };
131
+ export type BorderStyleType = typeof BorderStyleType[keyof typeof BorderStyleType];
122
132
  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
- }
133
+ export declare const BorderWidthType: {
134
+ readonly Default: "border-width";
135
+ readonly Normal: "border-width-normal";
136
+ readonly ExtraSmall: "border-width-extra-small";
137
+ readonly Small: "border-width-small";
138
+ readonly Large: "border-width-large";
139
+ readonly ExtraLarge: "border-width-extra-large";
140
+ };
141
+ export type BorderWidthType = typeof BorderWidthType[keyof typeof BorderWidthType];
131
142
  export type FullBorderWidthType = BorderWidthType | string;
132
- export declare enum VisibilityType {
133
- Visible = "visibility-visible",
134
- Hidden = "visibility-hidden",
135
- Collapse = "visibility-collapse"
136
- }
143
+ export declare const VisibilityType: {
144
+ readonly Visible: "visibility-visible";
145
+ readonly Hidden: "visibility-hidden";
146
+ readonly Collapse: "visibility-collapse";
147
+ };
148
+ export type VisibilityType = typeof VisibilityType[keyof typeof VisibilityType];
137
149
  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
- }
150
+ export declare const DisplayType: {
151
+ readonly None: "display-none";
152
+ readonly Block: "display-block";
153
+ readonly Inline: "display-inline";
154
+ readonly InlineBlock: "display-inline-block";
155
+ readonly Flex: "display-flex";
156
+ readonly InlineFlex: "display-inline-flex";
157
+ readonly Grid: "display-grid";
158
+ readonly InlineGrid: "display-inline-grid";
159
+ readonly Table: "display-table";
160
+ readonly TableRow: "display-table-row";
161
+ readonly TableCell: "display-table-cell";
162
+ readonly Contents: "display-contents";
163
+ readonly FlowRoot: "display-flow-root";
164
+ };
165
+ export type DisplayType = typeof DisplayType[keyof typeof DisplayType];
153
166
  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
- }
167
+ export declare const CursorType: {
168
+ readonly Auto: "cursor-auto";
169
+ readonly Default: "cursor-default";
170
+ readonly None: "cursor-none";
171
+ readonly ContextMenu: "cursor-context-menu";
172
+ readonly Help: "cursor-help";
173
+ readonly Pointer: "cursor-pointer";
174
+ readonly Progress: "cursor-progress";
175
+ readonly Wait: "cursor-wait";
176
+ readonly Cell: "cursor-cell";
177
+ readonly Crosshair: "cursor-crosshair";
178
+ readonly Text: "cursor-text";
179
+ readonly VerticalText: "cursor-vertical-text";
180
+ readonly Alias: "cursor-alias";
181
+ readonly Copy: "cursor-copy";
182
+ readonly Move: "cursor-move";
183
+ readonly NoDrop: "cursor-no-drop";
184
+ readonly NotAllowed: "cursor-not-allowed";
185
+ readonly Grab: "cursor-grab";
186
+ readonly Grabbing: "cursor-grabbing";
187
+ readonly AllScroll: "cursor-all-scroll";
188
+ readonly ColResize: "cursor-col-resize";
189
+ readonly RowResize: "cursor-row-resize";
190
+ readonly NResize: "cursor-n-resize";
191
+ readonly EResize: "cursor-e-resize";
192
+ readonly SResize: "cursor-s-resize";
193
+ readonly WResize: "cursor-w-resize";
194
+ readonly NeResize: "cursor-ne-resize";
195
+ readonly NwResize: "cursor-nw-resize";
196
+ readonly SeResize: "cursor-se-resize";
197
+ readonly SwResize: "cursor-sw-resize";
198
+ readonly EwResize: "cursor-ew-resize";
199
+ readonly NsResize: "cursor-ns-resize";
200
+ readonly NeswResize: "cursor-nesw-resize";
201
+ readonly NwseResize: "cursor-nwse-resize";
202
+ readonly ZoomIn: "cursor-zoom-in";
203
+ readonly ZoomOut: "cursor-zoom-out";
204
+ };
205
+ export type CursorType = typeof CursorType[keyof typeof CursorType];
192
206
  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
- }
207
+ export declare const OverflowType: {
208
+ readonly Visible: "overflow-visible";
209
+ readonly Hidden: "overflow-hidden";
210
+ readonly Scroll: "overflow-scroll";
211
+ readonly Auto: "overflow-auto";
212
+ readonly Clip: "overflow-clip";
213
+ };
214
+ export type OverflowType = typeof OverflowType[keyof typeof OverflowType];
200
215
  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
- }
216
+ export declare const OverflowXType: {
217
+ readonly Visible: "overflow-x-visible";
218
+ readonly Hidden: "overflow-x-hidden";
219
+ readonly Scroll: "overflow-x-scroll";
220
+ readonly Auto: "overflow-x-auto";
221
+ readonly Clip: "overflow-x-clip";
222
+ };
223
+ export type OverflowXType = typeof OverflowXType[keyof typeof OverflowXType];
208
224
  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
- }
225
+ export declare const OverflowYType: {
226
+ readonly Visible: "overflow-y-visible";
227
+ readonly Hidden: "overflow-y-hidden";
228
+ readonly Scroll: "overflow-y-scroll";
229
+ readonly Auto: "overflow-y-auto";
230
+ readonly Clip: "overflow-y-clip";
231
+ };
232
+ export type OverflowYType = typeof OverflowYType[keyof typeof OverflowYType];
216
233
  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
- }
234
+ export declare const OpacityType: {
235
+ readonly _0: "opacity-0";
236
+ readonly _10: "opacity-10";
237
+ readonly _20: "opacity-20";
238
+ readonly _25: "opacity-25";
239
+ readonly _30: "opacity-30";
240
+ readonly _40: "opacity-40";
241
+ readonly _50: "opacity-50";
242
+ readonly _60: "opacity-60";
243
+ readonly _70: "opacity-70";
244
+ readonly _75: "opacity-75";
245
+ readonly _80: "opacity-80";
246
+ readonly _90: "opacity-90";
247
+ readonly _100: "opacity-100";
248
+ };
249
+ export type OpacityType = typeof OpacityType[keyof typeof OpacityType];
250
+ export declare const ViewSizeType: {
251
+ readonly Ellipse: "v-ellipse-size";
252
+ readonly Rectangle: "v-rectangle-size";
253
+ readonly Image: "v-image-size";
254
+ readonly Svg: "v-svg-size";
255
+ readonly Window: "v-window-size";
256
+ };
257
+ export type ViewSizeType = typeof ViewSizeType[keyof typeof ViewSizeType];
239
258
  export declare const getWeightValue: (weightType: FontWeightType) => number;
240
259
  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
- }
260
+ export declare const FontSizeType: {
261
+ readonly Default: "font-size";
262
+ readonly Normal: "font-size-normal";
263
+ readonly Small: "font-size-small";
264
+ readonly ExtraSmall: "font-size-extra-small";
265
+ readonly Large: "font-size-large";
266
+ readonly ExtraLarge: "font-size-extra-large";
267
+ readonly AutoNormal: "auto-font-size-normal";
268
+ readonly AutoSmall: "auto-font-size-small";
269
+ readonly AutoExtraSmall: "auto-font-size-extra-small";
270
+ readonly AutoLarge: "auto-font-size-large";
271
+ readonly AutoExtraLarge: "auto-font-size-extra-large";
272
+ };
273
+ export type FontSizeType = typeof FontSizeType[keyof typeof FontSizeType];
254
274
  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
- }
275
+ export declare const PseudoType: {
276
+ readonly All: "all";
277
+ readonly Before: "before";
278
+ readonly After: "after";
279
+ };
280
+ export type PseudoType = typeof PseudoType[keyof typeof PseudoType];
281
+ export declare const DirectionType: {
282
+ readonly All: "all";
283
+ readonly Top: "top";
284
+ readonly Right: "right";
285
+ readonly Bottom: "bottom";
286
+ readonly Left: "left";
287
+ readonly ExceptTop: "except-top";
288
+ readonly ExceptRight: "except-right";
289
+ readonly ExceptBottom: "except-bottom";
290
+ readonly ExceptLeft: "except-left";
291
+ readonly RightTop: "right-top";
292
+ readonly RightBottom: "right-bottom";
293
+ readonly LeftTop: "left-top";
294
+ readonly LeftBottom: "left-bottom";
295
+ readonly TopBottom: "top-bottom";
296
+ readonly LeftRight: "left-right";
297
+ };
298
+ export type DirectionType = typeof DirectionType[keyof typeof DirectionType];
277
299
  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;
@@ -1,21 +1,24 @@
1
1
  import { IBaseProps } from '../../Engine/Base';
2
- export declare enum ScreenSizeType {
3
- ExtraSmall = "extra-small",
4
- Small = "small",
5
- Medium = "medium",
6
- Large = "large",
7
- ExtraLarge = "extra-large",
8
- ExtraExtraLarge = "extra-extra-large"
9
- }
10
- export declare enum BreakpointCategory {
11
- Visible = "visiable",
12
- Hidden = "hidden"
13
- }
14
- export declare enum BreakpointType {
15
- Only = "only",
16
- Up = "up",
17
- Down = "down"
18
- }
2
+ export declare const ScreenSizeType: {
3
+ readonly ExtraSmall: "extra-small";
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 ScreenSizeType = typeof ScreenSizeType[keyof typeof ScreenSizeType];
11
+ export declare const BreakpointCategory: {
12
+ readonly Visible: "visiable";
13
+ readonly Hidden: "hidden";
14
+ };
15
+ export type BreakpointCategory = typeof BreakpointCategory[keyof typeof BreakpointCategory];
16
+ export declare const BreakpointType: {
17
+ readonly Only: "only";
18
+ readonly Up: "up";
19
+ readonly Down: "down";
20
+ };
21
+ export type BreakpointType = typeof BreakpointType[keyof typeof BreakpointType];
19
22
  export interface IBreakpointDisplayProps extends IBaseProps {
20
23
  category: BreakpointCategory;
21
24
  type?: BreakpointType;