@medyll/cssfabric 0.0.10

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 (165) hide show
  1. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  2. package/.idea/cssfabric.iml +11 -0
  3. package/.idea/misc.xml +9 -0
  4. package/.idea/modules.xml +8 -0
  5. package/.idea/vcs.xml +6 -0
  6. package/.vscode/settings.json +24 -0
  7. package/README.md +240 -0
  8. package/cssfabric.config.js +3 -0
  9. package/cssfabric.json +8 -0
  10. package/gulpfile.js +610 -0
  11. package/lib/_generated/export.variables.json +583 -0
  12. package/lib/index.d.ts +2 -0
  13. package/lib/index.js +7 -0
  14. package/lib/scripts/cssfabric.d.ts +24 -0
  15. package/lib/scripts/cssfabric.js +48 -0
  16. package/lib/scripts/cssfabricClassNames.d.ts +14 -0
  17. package/lib/scripts/cssfabricClassNames.js +150 -0
  18. package/lib/scripts/utils.d.ts +5 -0
  19. package/lib/scripts/utils.js +40 -0
  20. package/lib/styles/core/animation/animation.css +0 -0
  21. package/lib/styles/core/animation/animation.min.css +0 -0
  22. package/lib/styles/core/base/base.css +222 -0
  23. package/lib/styles/core/base/base.min.css +1 -0
  24. package/lib/styles/core/box/box.css +2263 -0
  25. package/lib/styles/core/box/box.min.css +1 -0
  26. package/lib/styles/core/box/box.responsive.css +13590 -0
  27. package/lib/styles/core/box/box.responsive.min.css +1 -0
  28. package/lib/styles/core/color/color.css +923 -0
  29. package/lib/styles/core/color/color.min.css +1 -0
  30. package/lib/styles/core/color/color.responsive.css +5550 -0
  31. package/lib/styles/core/color/color.responsive.min.css +1 -0
  32. package/lib/styles/core/flex/flex.css +140 -0
  33. package/lib/styles/core/flex/flex.min.css +1 -0
  34. package/lib/styles/core/flex/flex.responsive.css +852 -0
  35. package/lib/styles/core/flex/flex.responsive.min.css +1 -0
  36. package/lib/styles/core/grid/grid.css +50 -0
  37. package/lib/styles/core/grid/grid.min.css +1 -0
  38. package/lib/styles/core/grid/grid.responsive.css +312 -0
  39. package/lib/styles/core/grid/grid.responsive.min.css +1 -0
  40. package/lib/styles/core/main.css +2263 -0
  41. package/lib/styles/core/main.min.css +1 -0
  42. package/lib/styles/core/menu/menu.css +97 -0
  43. package/lib/styles/core/menu/menu.min.css +1 -0
  44. package/lib/styles/core/menu/menu.responsive.css +504 -0
  45. package/lib/styles/core/menu/menu.responsive.min.css +1 -0
  46. package/lib/styles/core/overflow/overflow.css +60 -0
  47. package/lib/styles/core/overflow/overflow.min.css +1 -0
  48. package/lib/styles/core/overflow/overflow.responsive.css +367 -0
  49. package/lib/styles/core/overflow/overflow.responsive.min.css +1 -0
  50. package/lib/styles/core/scale/scale.css +639 -0
  51. package/lib/styles/core/scale/scale.min.css +1 -0
  52. package/lib/styles/core/scale/scale.responsive.css +3846 -0
  53. package/lib/styles/core/scale/scale.responsive.min.css +1 -0
  54. package/lib/styles/core/table/table.css +72 -0
  55. package/lib/styles/core/table/table.min.css +1 -0
  56. package/lib/styles/core/table/table.responsive.css +444 -0
  57. package/lib/styles/core/table/table.responsive.min.css +1 -0
  58. package/lib/styles/core/text/text.css +147 -0
  59. package/lib/styles/core/text/text.min.css +1 -0
  60. package/lib/styles/core/text/text.responsive.css +894 -0
  61. package/lib/styles/core/text/text.responsive.min.css +1 -0
  62. package/lib/styles/core/theme/theme.css +197 -0
  63. package/lib/styles/core/theme/theme.min.css +1 -0
  64. package/lib/styles/core/vars.css +278 -0
  65. package/lib/styles/core/vars.min.css +1 -0
  66. package/lib/styles/core/zindex/zindex.css +279 -0
  67. package/lib/styles/core/zindex/zindex.min.css +1 -0
  68. package/lib/styles/cssfabric.css +7631 -0
  69. package/lib/styles/cssfabric.min.css +15 -0
  70. package/lib/styles/cssfabric.responsive.css +26359 -0
  71. package/lib/styles/cssfabric.responsive.min.css +9 -0
  72. package/package.json +67 -0
  73. package/src/_generated/export.variables.json +756 -0
  74. package/src/_generated/export.variables.md +240 -0
  75. package/src/_generated/index.d.ts +3 -0
  76. package/src/cssfabric/_utils.scss +205 -0
  77. package/src/cssfabric/index.d.ts +3 -0
  78. package/src/cssfabric/modules/_cssfabric-config.scss +89 -0
  79. package/src/cssfabric/modules/_mixins.scss +1 -0
  80. package/src/cssfabric/modules/animation/_animation-build.scss +121 -0
  81. package/src/cssfabric/modules/animation/_animation-vars.scss +17 -0
  82. package/src/cssfabric/modules/animation/animation.scss +3 -0
  83. package/src/cssfabric/modules/base/_base-vars.scss +17 -0
  84. package/src/cssfabric/modules/base/base.scss +80 -0
  85. package/src/cssfabric/modules/box/_box-build.scss +215 -0
  86. package/src/cssfabric/modules/box/_box-vars.scss +119 -0
  87. package/src/cssfabric/modules/box/box-responsive.scss +18 -0
  88. package/src/cssfabric/modules/box/box.scss +3 -0
  89. package/src/cssfabric/modules/color/_color-build.scss +108 -0
  90. package/src/cssfabric/modules/color/_color-vars.scss +80 -0
  91. package/src/cssfabric/modules/color/color-responsive.scss +23 -0
  92. package/src/cssfabric/modules/color/color.scss +3 -0
  93. package/src/cssfabric/modules/css-fabric.scss +2 -0
  94. package/src/cssfabric/modules/flex/_flex-build.scss +169 -0
  95. package/src/cssfabric/modules/flex/_flex-vars.scss +87 -0
  96. package/src/cssfabric/modules/flex/flex-responsive.scss +25 -0
  97. package/src/cssfabric/modules/flex/flex.scss +3 -0
  98. package/src/cssfabric/modules/grid/_grid-build.scss +91 -0
  99. package/src/cssfabric/modules/grid/_grid-vars.scss +87 -0
  100. package/src/cssfabric/modules/grid/grid-responsive.scss +25 -0
  101. package/src/cssfabric/modules/grid/grid.scss +3 -0
  102. package/src/cssfabric/modules/main.scss +3 -0
  103. package/src/cssfabric/modules/menu/_menu-build.scss +119 -0
  104. package/src/cssfabric/modules/menu/_menu-vars.scss +29 -0
  105. package/src/cssfabric/modules/menu/menu-responsive.scss +19 -0
  106. package/src/cssfabric/modules/menu/menu.scss +3 -0
  107. package/src/cssfabric/modules/overflow/_overflow-build.scss +22 -0
  108. package/src/cssfabric/modules/overflow/_overflow-vars.scss +31 -0
  109. package/src/cssfabric/modules/overflow/overflow-responsive.scss +25 -0
  110. package/src/cssfabric/modules/overflow/overflow.scss +5 -0
  111. package/src/cssfabric/modules/scale/_scale-build.scss +129 -0
  112. package/src/cssfabric/modules/scale/_scale-vars.scss +75 -0
  113. package/src/cssfabric/modules/scale/scale-responsive.scss +23 -0
  114. package/src/cssfabric/modules/scale/scale.scss +3 -0
  115. package/src/cssfabric/modules/table/_table-build.scss +134 -0
  116. package/src/cssfabric/modules/table/_table-vars.scss +30 -0
  117. package/src/cssfabric/modules/table/table-responsive.scss +24 -0
  118. package/src/cssfabric/modules/table/table.scss +3 -0
  119. package/src/cssfabric/modules/text/_text-build.scss +109 -0
  120. package/src/cssfabric/modules/text/_text-vars.scss +87 -0
  121. package/src/cssfabric/modules/text/text-responsive.scss +25 -0
  122. package/src/cssfabric/modules/text/text.scss +5 -0
  123. package/src/cssfabric/modules/theme/_theme-build.scss +77 -0
  124. package/src/cssfabric/modules/theme/_theme-vars.scss +47 -0
  125. package/src/cssfabric/modules/theme/theme.scss +5 -0
  126. package/src/cssfabric/modules/vars.scss +120 -0
  127. package/src/cssfabric/modules/zindex/_zindex-vars.scss +19 -0
  128. package/src/cssfabric/modules/zindex/zindex.scss +18 -0
  129. package/src/index.d.ts +3 -0
  130. package/src/index.ts +4 -0
  131. package/src/scripts/cssfabric.ts +54 -0
  132. package/src/scripts/cssfabricClassNames.ts +216 -0
  133. package/src/scripts/utils.ts +37 -0
  134. package/src/vendor/index.d.ts +3 -0
  135. package/src/vendor/normalize/normalize.min.css +2 -0
  136. package/src/vendor/sass-json-export/CHANGELOG.md +26 -0
  137. package/src/vendor/sass-json-export/Gruntfile.js +60 -0
  138. package/src/vendor/sass-json-export/LICENSE +20 -0
  139. package/src/vendor/sass-json-export/README.md +90 -0
  140. package/src/vendor/sass-json-export/package.json +60 -0
  141. package/src/vendor/sass-json-export/stylesheets/encode/api/_json.scss +26 -0
  142. package/src/vendor/sass-json-export/stylesheets/encode/encode.scss +17 -0
  143. package/src/vendor/sass-json-export/stylesheets/encode/helpers/_quote.scss +9 -0
  144. package/src/vendor/sass-json-export/stylesheets/encode/mixins/_json.scss +42 -0
  145. package/src/vendor/sass-json-export/stylesheets/encode/types/_bool.scss +7 -0
  146. package/src/vendor/sass-json-export/stylesheets/encode/types/_color.scss +8 -0
  147. package/src/vendor/sass-json-export/stylesheets/encode/types/_list.scss +14 -0
  148. package/src/vendor/sass-json-export/stylesheets/encode/types/_map.scss +15 -0
  149. package/src/vendor/sass-json-export/stylesheets/encode/types/_null.scss +7 -0
  150. package/src/vendor/sass-json-export/stylesheets/encode/types/_number.scss +8 -0
  151. package/src/vendor/sass-json-export/stylesheets/encode/types/_string.scss +8 -0
  152. package/src/vendor/sass-json-export/stylesheets/sass-json-export.scss +2 -0
  153. package/src/vendor/sass-json-export/test/encode/_index.scss +14 -0
  154. package/src/vendor/sass-json-export/test/encode/api/_json.scss +29 -0
  155. package/src/vendor/sass-json-export/test/encode/helpers/_quote.scss +6 -0
  156. package/src/vendor/sass-json-export/test/encode/types/_bool.scss +6 -0
  157. package/src/vendor/sass-json-export/test/encode/types/_color.scss +7 -0
  158. package/src/vendor/sass-json-export/test/encode/types/_list.scss +25 -0
  159. package/src/vendor/sass-json-export/test/encode/types/_map.scss +17 -0
  160. package/src/vendor/sass-json-export/test/encode/types/_null.scss +8 -0
  161. package/src/vendor/sass-json-export/test/encode/types/_number.scss +68 -0
  162. package/src/vendor/sass-json-export/test/encode/types/_string.scss +9 -0
  163. package/src/vendor/sass-json-export/test/test.scss +9 -0
  164. package/tsconfig.json +46 -0
  165. package/webpack.config.js +53 -0
@@ -0,0 +1,756 @@
1
+ {
2
+ "cssfabric": {
3
+ "modules": {
4
+ "animation": {
5
+ "_data": {
6
+
7
+ "attention_props": [],
8
+ "in_out_props": {
9
+ "back": []
10
+ }
11
+ }
12
+
13
+ ,
14
+ "_metadata": {
15
+ "title": "animation", "description": "cssfabric simplest animation module"
16
+ }
17
+
18
+ ,
19
+ "_docs": {
20
+ "attention_props": "", "in_out_props": ""
21
+ }
22
+ }
23
+
24
+ ,
25
+ "base": {
26
+ "_data": {
27
+
28
+ "cfg-has-dimension-strict": true,
29
+ "CFG_HAS_DIMENSION_MIN": true,
30
+ "CFG_HAS_DIMENSION_MAX": true,
31
+ "size_step": "0.5rem",
32
+ "sizes": {
33
+ "tiny": 32, "small": 64, "medium": 128, "large": 256, "full": "100%"
34
+ }
35
+ }
36
+
37
+ ,
38
+ "_metadata": {
39
+ "title": "base", "tag": "base", "description": "cssfabric base config variables"
40
+ }
41
+
42
+ ,
43
+ "_docs": []
44
+ }
45
+
46
+ ,
47
+ "box": {
48
+ "_data": {
49
+
50
+ "unit-config": "rem",
51
+ "border-unit-config": "px",
52
+ "unit-size-config": 0.5,
53
+ "unit-border-size-config": 1,
54
+ "sizes-config": 32,
55
+ "border-sizes-px-config": 5,
56
+ "shadows-steps": 10,
57
+ "shadows_step_multiplier": 2,
58
+ "position-shorthand-config": "pos",
59
+ "display-shorthand-config": "dsp",
60
+ "shadow-shorthand-config": "shad",
61
+ "border-shorthand-config": "border",
62
+ "padding-shorthand-config": "pad",
63
+ "margin-shorthand-config": "marg",
64
+ "cssProps": {
65
+ "borderShorthands": {
66
+ "_": ["top", "bottom", "left", "right"], "t": "top", "b": "bottom", "l": "left", "r": "right", "all": ["top", "bottom", "left", "right"], "u": ["bottom", "left", "right"], "ii": ["left", "right"], "tb": ["top", "bottom"]
67
+ }
68
+
69
+ ,
70
+ "positionProps": {
71
+ "abs": "absolute", "rel": "relative", "stat": "static", "fix": "fixed", "sticky": "sticky"
72
+ }
73
+
74
+ ,
75
+ "displayProps": {
76
+ "block": "block", "none": "none", "inline": "inline", "block-inline": "inline-block", "flex-inline": "inline-flex", "tbl": "table", "tbl-row": "table-row", "tbl-cell": "table-cell", "tbl-column": "table-column"
77
+ }
78
+ }
79
+ }
80
+
81
+ ,
82
+ "_metadata": {
83
+ "title": "box", "tag": "box", "description": "cssfabric box module to set heights, paddings, margins and shadows on all html elements"
84
+ }
85
+
86
+ ,
87
+ "_docs": {
88
+ "attributes": {
89
+ "padding": {
90
+
91
+ "tag": "pad",
92
+ "keys": ["_",
93
+ "t",
94
+ "b",
95
+ "l",
96
+ "r",
97
+ "all",
98
+ "u",
99
+ "ii",
100
+ "tb"],
101
+ "values": {
102
+ "_": "_", "1": "0.5rem", "2": "1rem", "3": "1.5rem", "4": "2rem", "5": "2.5rem", "6": "3rem", "7": "3.5rem", "8": "4rem", "9": "4.5rem", "10": "5rem", "11": "5.5rem", "12": "6rem", "13": "6.5rem", "14": "7rem", "15": "7.5rem", "16": "8rem", "17": "8.5rem", "18": "9rem", "19": "9.5rem", "20": "10rem", "21": "10.5rem", "22": "11rem", "23": "11.5rem", "24": "12rem", "25": "12.5rem", "26": "13rem", "27": "13.5rem", "28": "14rem", "29": "14.5rem", "30": "15rem", "31": "15.5rem", "32": "16rem"
103
+ }
104
+
105
+ ,
106
+ "levels": {
107
+ "_": ["_", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32]
108
+ }
109
+
110
+ ,
111
+ "about": "padding properties for html elements"
112
+ }
113
+
114
+ ,
115
+ "margin": {
116
+
117
+ "tag": "marg",
118
+ "keys": ["_",
119
+ "t",
120
+ "b",
121
+ "l",
122
+ "r",
123
+ "all",
124
+ "u",
125
+ "ii",
126
+ "tb"],
127
+ "values": {
128
+ "_": "_", "1": "0.5rem", "2": "1rem", "3": "1.5rem", "4": "2rem", "5": "2.5rem", "6": "3rem", "7": "3.5rem", "8": "4rem", "9": "4.5rem", "10": "5rem", "11": "5.5rem", "12": "6rem", "13": "6.5rem", "14": "7rem", "15": "7.5rem", "16": "8rem", "17": "8.5rem", "18": "9rem", "19": "9.5rem", "20": "10rem", "21": "10.5rem", "22": "11rem", "23": "11.5rem", "24": "12rem", "25": "12.5rem", "26": "13rem", "27": "13.5rem", "28": "14rem", "29": "14.5rem", "30": "15rem", "31": "15.5rem", "32": "16rem"
129
+ }
130
+
131
+ ,
132
+ "levels": {
133
+ "_": ["_", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32]
134
+ }
135
+
136
+ ,
137
+ "about": "margin properties for html elements"
138
+ }
139
+
140
+ ,
141
+ "border": {
142
+
143
+ "tag": "border",
144
+ "keys": ["_",
145
+ "t",
146
+ "b",
147
+ "l",
148
+ "r",
149
+ "all",
150
+ "u",
151
+ "ii",
152
+ "tb"],
153
+ "values": {
154
+ "_": "_", "1": "1px", "2": "2px", "3": "3px", "4": "4px", "5": "5px"
155
+ }
156
+
157
+ ,
158
+ "levels": {
159
+ "_": ["_", 1, 2, 3, 4, 5]
160
+ }
161
+
162
+ ,
163
+ "about": "border properties for html elements"
164
+ }
165
+
166
+ ,
167
+ "shadow": {
168
+
169
+ "tag": "shad",
170
+ "values": {
171
+ "2": "0.83333333331.724137931", "4": "1.66666666673.4482758621", "8": "3.33333333336.8965517241", "16": "6.666666666713.7931034483", "32": "13.333333333327.5862068966", "64": "26.666666666755.1724137931", "128": "53.3333333333110.3448275862", "256": "106.6666666667220.6896551724"
172
+ }
173
+
174
+ ,
175
+ "levels": {
176
+ "_": [2, 4, 8, 16, 32, 64, 128, 256]
177
+ }
178
+
179
+ ,
180
+ "about": "applying shadows give depth and levels to your design"
181
+ }
182
+ }
183
+ }
184
+ }
185
+
186
+ ,
187
+ "color": {
188
+ "_data": {
189
+ "gray-config": {
190
+ "start": "#f4f4f4", "end": "#999", "steps": 8
191
+ }
192
+
193
+ ,
194
+ "color-types-config": ["color",
195
+ "bg",
196
+ "bg-themed",
197
+ "border-color"],
198
+ "theme": {
199
+ "primary": "#0288d1", "foreground": "#282230", "background": "#f1f1f1"
200
+ }
201
+
202
+ ,
203
+ "scheme": {
204
+ "discrete": "#ccc", "success": "green", "info": "#ffdd57", "warning": "#e6b905", "alert": "#ff7300", "error": "red"
205
+ }
206
+
207
+ ,
208
+ "palette": {
209
+ "yellow": "#ffb900", "orange": "#d83b01", "red": "#d13438", "magenta": "#b4009e", "purple": "#5c2d91", "green": "#107c10", "teal": "#008272", "blue": "#0078d4", "dark": "#323232"
210
+ }
211
+
212
+ ,
213
+ "gray": "getGraySteps(8, #f4f4f4, #999)"
214
+ }
215
+
216
+ ,
217
+ "_metadata": {
218
+ "title": "color", "title_tag": "its about colors", "description": "cssfabric color system: its about colors"
219
+ }
220
+
221
+ ,
222
+ "_docs": {
223
+ "attributes": {
224
+ "color": {
225
+
226
+ "tag": "color",
227
+ "keys": ["scheme",
228
+ "palette",
229
+ "gray"],
230
+ "levelsLinked": {
231
+ "scheme": ["discrete", "success", "info", "warning", "alert", "error"], "palette": ["yellow", "orange", "red", "magenta", "purple", "green", "teal", "blue", "dark"], "gray": ["getGraySteps(8, #f4f4f4, #999)"]
232
+ }
233
+
234
+ ,
235
+ "levelsDeclin": {
236
+ "palette": ["_", "lighter", "light", "dark", "darker", "complement"]
237
+ }
238
+
239
+ ,
240
+ "about": "color for text level html elements"
241
+ }
242
+
243
+ ,
244
+ "background-color": {
245
+
246
+ "tag": "bg",
247
+ "keys": ["scheme",
248
+ "palette",
249
+ "gray"],
250
+ "levelsLinked": {
251
+ "scheme": ["discrete", "success", "info", "warning", "alert", "error"], "palette": ["yellow", "orange", "red", "magenta", "purple", "green", "teal", "blue", "dark"], "gray": ["getGraySteps(8, #f4f4f4, #999)"]
252
+ }
253
+
254
+ ,
255
+ "levelsDeclin": {
256
+ "palette": ["_", "lighter", "light", "dark", "darker", "complement"]
257
+ }
258
+
259
+ ,
260
+ "about": "background colors"
261
+ }
262
+
263
+ ,
264
+ "background-themed": {
265
+
266
+ "tag": "bg-themed",
267
+ "keys": ["scheme",
268
+ "palette",
269
+ "gray"],
270
+ "levelsLinked": {
271
+ "gray": ["getGraySteps(8, #f4f4f4, #999)"], "scheme": ["discrete", "success", "info", "warning", "alert", "error"], "palette": ["yellow", "orange", "red", "magenta", "purple", "green", "teal", "blue", "dark"]
272
+ }
273
+
274
+ ,
275
+ "levelsDeclin": {
276
+ "palette": ["_", "lighter", "light", "dark", "darker", "complement"]
277
+ }
278
+
279
+ ,
280
+ "about": "same as background-color, but with added contrasted color to text"
281
+ }
282
+
283
+ ,
284
+ "border-color": {
285
+
286
+ "tag": "border-color",
287
+ "keys": ["palette",
288
+ "gray"],
289
+ "levelsLinked": {
290
+ "gray": ["getGraySteps(8, #f4f4f4, #999)"], "scheme": ["discrete", "success", "info", "warning", "alert", "error"], "palette": ["yellow", "orange", "red", "magenta", "purple", "green", "teal", "blue", "dark"]
291
+ }
292
+
293
+ ,
294
+ "about": "border colors are slightly darker to maximize surrounding effect"
295
+ }
296
+ }
297
+ }
298
+ }
299
+
300
+ ,
301
+ "flex": {
302
+ "_data": {
303
+
304
+ "moduleName": "flex",
305
+ "moduleNameShort": "flex",
306
+ "horCode": "h",
307
+ "vertCode": "v",
308
+ "gridFullWidth": "main",
309
+ "grow-shrink-steps": 4,
310
+ "cssProps": {
311
+ "flexWrap": {
312
+ "wrap": "wrap", "wrap-reverse": "wrap-reverse"
313
+ }
314
+
315
+ ,
316
+ "grid-justify": {
317
+ "start": "flex-start", "end": "flex-end", "between": "space-between", "stretch": "stretch", "center": "flex-center"
318
+ }
319
+
320
+ ,
321
+ "grid-items": {
322
+ "baseline": "baseline", "stretch": "stretch", "start": "flex-start", "center": "center", "end": "flex-end"
323
+ }
324
+
325
+ ,
326
+ "grid-content": {
327
+ "start": "flex-start", "center": "center", "end": "flex-end", "between": "space-between", "equal": "space-evenly"
328
+ }
329
+ }
330
+
331
+ ,
332
+ "cssItemsProps": {
333
+ "self": {
334
+ "start": "flex-start", "end": "flex-end", "stretch": "stretch"
335
+ }
336
+ }
337
+ }
338
+
339
+ ,
340
+ "_metadata": {
341
+ "title": "flex", "tag": "flex", "description": "cssfabric flex system module"
342
+ }
343
+
344
+ ,
345
+ "_docs": {
346
+ "attributes": {
347
+ "grid": {
348
+
349
+ "tag": "flex",
350
+ "keys": ["v",
351
+ "h"],
352
+ "classNames": {
353
+ "align": ["top", "middle", "bottom", "left", "right", "center", "middle-center", "stretch"], "grid": ["wrap", "wrap-reverse"]
354
+ }
355
+
356
+ ,
357
+ "about": "a classic grid system, and hey, it gets height !"
358
+ }
359
+
360
+ ,
361
+ "self": {
362
+ "tag": "self", "keys": ["start", "end", "stretch"], "about": "grid children specific classnames"
363
+ }
364
+ }
365
+ }
366
+ }
367
+
368
+ ,
369
+ "grid": {
370
+ "_data": {
371
+
372
+ "moduleName": "grid",
373
+ "moduleNameShort": "grid",
374
+ "horCode": "h",
375
+ "vertCode": "v",
376
+ "gridFullWidth": "main",
377
+ "grow-shrink-steps": 4,
378
+ "cssProps": {
379
+ "flexWrap": {
380
+ "wrap": "wrap", "wrap-reverse": "wrap-reverse"
381
+ }
382
+
383
+ ,
384
+ "grid-justify": {
385
+ "start": "flex-start", "end": "flex-end", "between": "space-between", "stretch": "stretch", "center": "flex-center"
386
+ }
387
+
388
+ ,
389
+ "grid-items": {
390
+ "baseline": "baseline", "stretch": "stretch", "start": "flex-start", "center": "center", "end": "flex-end"
391
+ }
392
+
393
+ ,
394
+ "grid-content": {
395
+ "start": "flex-start", "center": "center", "end": "flex-end", "between": "space-between", "equal": "space-evenly"
396
+ }
397
+ }
398
+
399
+ ,
400
+ "cssItemsProps": {
401
+ "self": {
402
+ "start": "flex-start", "end": "flex-end", "stretch": "stretch"
403
+ }
404
+ }
405
+ }
406
+
407
+ ,
408
+ "_metadata": {
409
+ "title": "grid", "tag": "grid", "description": "cssfabric flex grid system module"
410
+ }
411
+
412
+ ,
413
+ "_docs": {
414
+ "attributes": {
415
+ "grid": {
416
+
417
+ "tag": "grid",
418
+ "keys": ["v",
419
+ "h"],
420
+ "classNames": {
421
+ "align": ["top", "middle", "bottom", "left", "right", "center", "middle-center", "stretch"], "grid": ["wrap", "wrap-reverse"]
422
+ }
423
+
424
+ ,
425
+ "about": "a classic grid system, and hey, it gets height !"
426
+ }
427
+
428
+ ,
429
+ "self": {
430
+ "tag": "self", "keys": ["start", "end", "stretch"], "about": "grid children specific classnames"
431
+ }
432
+ }
433
+ }
434
+ }
435
+
436
+ ,
437
+ "menu": {
438
+ "_data": {
439
+
440
+ "menu_class_name": "menu",
441
+ "menu_class_name_short": "ul",
442
+ "orientations": {
443
+ "v": "vertical", "h": "horizontal"
444
+ }
445
+
446
+ ,
447
+ "menu_item_class_name": "menu-item",
448
+ "menu_item_class_name_short": "li",
449
+ "menu_item_disabled_tag": "disabled",
450
+ "menu_item_selected_tag": "selected",
451
+ "menu_dropdown_tag": "drop",
452
+ "menu_dropdown_open": "open",
453
+ "menu_dropdown_close": "close"
454
+ }
455
+
456
+ ,
457
+ "_metadata": {
458
+ "title": "menu", "tag": "ul", "description": "cssfabric menu module to set menu style"
459
+ }
460
+
461
+ ,
462
+ "_docs": {
463
+ "attributes": {
464
+ "menu": {
465
+ "tag": "menu", "keys": ["h", "v"]
466
+ }
467
+ }
468
+ }
469
+ }
470
+
471
+ ,
472
+ "overflow": {
473
+ "_data": {
474
+
475
+ "overflow_props": ["overflow",
476
+ "overflow-x",
477
+ "overflow-y"],
478
+ "overflow_values": ["visible",
479
+ "hidden",
480
+ "clip",
481
+ "scroll",
482
+ "auto"],
483
+ "cssProps": {
484
+ "overflow": {
485
+ "visible": "visible", "hidden": "hidden", "clip": "clip", "scroll": "scroll", "_": "auto"
486
+ }
487
+ }
488
+ }
489
+
490
+ ,
491
+ "_metadata": {
492
+ "title": "overflow", "tag": "flow", "description": "cssfabric overflow module to set overflow styles on all html elements"
493
+ }
494
+
495
+ ,
496
+ "_docs": {
497
+ "attributes": {
498
+ "overflow": {
499
+ "tag": "flow", "keys": ["visible", "hidden", "clip", "scroll", "auto"]
500
+ }
501
+
502
+ ,
503
+ "overflowX": {
504
+ "tag": "flowX", "keys": ["visible", "hidden", "clip", "scroll", "auto"]
505
+ }
506
+
507
+ ,
508
+ "overflowY": {
509
+ "tag": "flowY", "keys": ["visible", "hidden", "clip", "scroll", "auto"]
510
+ }
511
+ }
512
+ }
513
+ }
514
+
515
+ ,
516
+ "scale": {
517
+ "_data": {
518
+
519
+ "weight-config": "1em",
520
+ "unit-tag-config": {
521
+ "width": "w", "height": "h"
522
+ }
523
+
524
+ ,
525
+ "grid-ratios-config": [5,
526
+ 12],
527
+ "defined-step-size": 2,
528
+ "defined-step-unit": "rem",
529
+ "defined-steps": [1,
530
+ 2,
531
+ 4,
532
+ 8,
533
+ 16,
534
+ 24,
535
+ 32,
536
+ 48,
537
+ 64],
538
+ "cssProps": {
539
+ "size": {
540
+ "full": "100%", "mid": "50%", "quarter": "25%", "tiers": "33%"
541
+ }
542
+
543
+ ,
544
+ "content": {
545
+ "content-max": "max-content", "content-min": "min-content"
546
+ }
547
+
548
+ ,
549
+ "defined-steps": [1,
550
+ 2,
551
+ 4,
552
+ 8,
553
+ 16,
554
+ 24,
555
+ 32,
556
+ 48,
557
+ 64]
558
+ }
559
+ }
560
+
561
+ ,
562
+ "_metadata": {
563
+ "title": "scale", "tag": "scale", "description": "cssfabric scale module to set dimensions and ratios on all html elements"
564
+ }
565
+
566
+ ,
567
+ "_docs": {
568
+ "attributes": {
569
+ "scale": {
570
+
571
+ "tag": "scale",
572
+ "keys": ["w",
573
+ "h"],
574
+ "levels": {
575
+ "_size": ["full", "mid", "quarter", "tiers"], "_content": ["content-max", "content-min"], "_defined-steps": [1, 2, 4, 8, 16, 24, 32, 48, 64], "_grid-5": ["1-5", "2-5", "3-5", "4-5", "5-5"], "_grid-12": ["1-12", "2-12", "3-12", "4-12", "5-12", "6-12", "7-12", "8-12", "9-12", "10-12", "11-12", "12-12"]
576
+ }
577
+ }
578
+ }
579
+ }
580
+ }
581
+
582
+ ,
583
+ "table": {
584
+ "_data": {
585
+ "className": "table", "classNameShort": "tbl", "table_class_name": "table", "table_class_name_short": "tbl", "table-bg-color-head": "#f4f4f4", "table-bg-color-strip-main": "#ededed", "table-bg-color-strip-second": "#f5f5f5", "table-border-color-header": "#ccc", "table-border-color-main": "#ededed", "table-border-color-second": "#f5f5f5"
586
+ }
587
+
588
+ ,
589
+ "_metadata": {
590
+ "title": "table", "tag": "table", "description": "cssfabric table module to set different table styles"
591
+ }
592
+
593
+ ,
594
+ "_docs": {
595
+ "attributes": {
596
+ "table": {
597
+
598
+ "tag": "table",
599
+ "classNames": {
600
+ "_": ["bg-strip-2", "bg-strip-5"], "_pos": ["sticky", "layout"], "_deco": ["h-line", "v-line", "border"]
601
+ }
602
+
603
+ ,
604
+ "about": "is a table"
605
+ }
606
+ }
607
+ }
608
+ }
609
+
610
+ ,
611
+ "text": {
612
+ "_data": {
613
+
614
+ "moduleName": "text",
615
+ "moduleNameShort": "text",
616
+ "title-size-declination-config": 6,
617
+ "font-size-unit-config": "rem",
618
+ "font-sizes-h1-rem-config": 3.1,
619
+ "font-size-h-min-rem-config": 1,
620
+ "text-ellipsis-tag-config": "ellipsis",
621
+ "cssProps": {
622
+ "textTransform": {
623
+ "cap": "capitalize", "up": "uppercase", "low": "lowercase", "none": "none", "full": "full-width"
624
+ }
625
+
626
+ ,
627
+ "fontWeight": {
628
+ "50": 50, "100": 100, "300": 400, "500": 500, "900": 900, "light": "lighter", "cap": "normal", "bold": "bold", "bolder": "bolder"
629
+ }
630
+
631
+ ,
632
+ "textAlign": {
633
+ "l": "left", "r": "right", "center": "center", "justify": "justify"
634
+ }
635
+ }
636
+
637
+ ,
638
+ "scheme": {
639
+ "discrete": "#ccc", "success": "green", "info": "#ffdd57", "warning": "#e6b905", "alert": "#ff7300", "error": "red"
640
+ }
641
+
642
+ ,
643
+ "palette": {
644
+ "yellow": "#ffb900", "orange": "#d83b01", "red": "#d13438", "magenta": "#b4009e", "purple": "#5c2d91", "green": "#107c10", "teal": "#008272", "blue": "#0078d4", "dark": "#323232"
645
+ }
646
+
647
+ ,
648
+ "gray": "getGraySteps(8, #f4f4f4, #999)"
649
+ }
650
+
651
+ ,
652
+ "_metadata": {
653
+ "title": "text", "tag": "text", "description": "cssfabric text module to set text style on all html elements"
654
+ }
655
+
656
+ ,
657
+ "_docs": {
658
+ "attributes": {
659
+ "text-transform": {
660
+ "tag": "text", "keys": ["cap", "up", "low", "none", "full"]
661
+ }
662
+
663
+ ,
664
+ "font-weight": {
665
+ "tag": "text", "keys": [50, 100, 300, 500, 900, "light", "cap", "bold", "bolder"]
666
+ }
667
+
668
+ ,
669
+ "text-align": {
670
+ "tag": "text", "keys": ["l", "r", "center", "justify"]
671
+ }
672
+
673
+ ,
674
+ "text-shadow": {
675
+ "tag": "text-shad", "keys": ["palette"]
676
+ }
677
+ }
678
+
679
+ ,
680
+ "classNames": {
681
+ "_": {
682
+ "et": "ellipsis"
683
+ }
684
+ }
685
+ }
686
+ }
687
+
688
+ ,
689
+ "theme": {
690
+ "_data": {
691
+
692
+ "moduleName": "theme",
693
+ "moduleNameShort": "theme",
694
+ "color-default-config": {
695
+ "primary": "#0288d1", "foreground": "#282230", "background": "#f1f1f1"
696
+ }
697
+
698
+ ,
699
+ "declinations-config": ["primary",
700
+ "secondary",
701
+ "tertiary"],
702
+ "theme-level-config": ["light",
703
+ "lighter",
704
+ "dark",
705
+ "darker",
706
+ "complement",
707
+ "invert"],
708
+ "theme-properties-apply-config": ["text",
709
+ "bg",
710
+ "border"],
711
+ "color": {
712
+ "primary": "#0288d1", "primary-light": "#23b0fd", "primary-lighter": "#6ecbfe", "primary-dark": "#02679e", "primary-darker": "#01466c", "primary-complement": "#d14b02", "primary-invert": "#fd772e", "secondary": "#d14b02", "secondary-light": "#fd7023", "secondary-lighter": "#fea16e", "secondary-dark": "#9e3902", "secondary-darker": "#6c2701", "secondary-complement": "#0288d1", "secondary-invert": "#2eb4fd", "tertiary": "#0288d1", "tertiary-light": "#23b0fd", "tertiary-lighter": "#6ecbfe", "tertiary-dark": "#02679e", "tertiary-darker": "#01466c", "tertiary-complement": "#d14b02", "tertiary-invert": "#fd772e"
713
+ }
714
+ }
715
+
716
+ ,
717
+ "_metadata": {
718
+ "title": "theme", "description": ""
719
+ }
720
+
721
+ ,
722
+ "_docs": {
723
+ "attributes": {
724
+ "theme": {
725
+
726
+ "tag": "theme",
727
+ "keys": ["text",
728
+ "bg",
729
+ "border"],
730
+ "levels": {
731
+ "primary": ["_", "light", "lighter", "dark", "darker", "complement", "invert"], "secondary": ["_", "light", "lighter", "dark", "darker", "complement", "invert"], "tertiary": ["_", "light", "lighter", "dark", "darker", "complement", "invert"]
732
+ }
733
+ }
734
+ }
735
+ }
736
+ }
737
+
738
+ ,
739
+ "zindex": {
740
+ "_data": {
741
+ "z_groups": ["a", "b", "c", "d", "e", "f", "g"]
742
+ }
743
+
744
+ ,
745
+ "_metadata": {
746
+ "title": "zindex", "tag": "zI", "description": "cssfabric zindex module to set z-index on all html elements"
747
+ }
748
+
749
+ ,
750
+ "_docs": {
751
+ "z_groups": "_"
752
+ }
753
+ }
754
+ }
755
+ }
756
+ }