amotify 0.0.2 → 0.0.4

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 (185) hide show
  1. package/dist/src/@jsminAmotifyExtension/_.d.ts +4 -0
  2. package/dist/src/@jsminAmotifyExtension/fetch.d.ts +9 -0
  3. package/dist/src/@jsminAmotifyExtension/formCollect.d.ts +1 -0
  4. package/dist/src/@jsminAmotifyExtension/spreadSheet.d.ts +4 -0
  5. package/dist/src/@jsminAmotifyExtension/variables.d.ts +0 -0
  6. package/dist/src/@types/_.d.ts +6 -0
  7. package/dist/src/@types/amot.d.ts +260 -0
  8. package/dist/src/@types/fn.d.ts +1040 -0
  9. package/dist/src/@types/index.d.ts +62 -0
  10. package/dist/src/@types/jsminAmotifyExtension.d.ts +134 -0
  11. package/dist/src/@types/module.d.ts +2 -0
  12. package/dist/src/@types/state.d.ts +145 -0
  13. package/dist/src/Atoms/@export.d.ts +4 -0
  14. package/dist/src/Atoms/FAIcon/parts.d.ts +2 -0
  15. package/dist/src/Atoms/Logo/parts.d.ts +1 -0
  16. package/dist/src/Atoms/Various/parts.d.ts +9 -0
  17. package/dist/src/Functions/@export.d.ts +12 -0
  18. package/dist/src/Functions/Button/_.d.ts +1 -0
  19. package/dist/src/Functions/Cropper/parts.d.ts +1 -0
  20. package/dist/src/Functions/Effects/Fade.d.ts +1 -0
  21. package/dist/src/Functions/Effects/Ripple.d.ts +1 -0
  22. package/dist/src/Functions/Effects/_.d.ts +3 -0
  23. package/dist/src/Functions/Input/Chips/Selector.d.ts +1 -0
  24. package/dist/src/Functions/Input/Chips/_.d.ts +2 -0
  25. package/dist/src/Functions/Input/DigitCharacters.d.ts +1 -0
  26. package/dist/src/Functions/Input/File/_.d.ts +2 -0
  27. package/dist/src/Functions/Input/Hidden.d.ts +1 -0
  28. package/dist/src/Functions/Input/List/_.d.ts +1 -0
  29. package/dist/src/Functions/Input/Segmented/_.d.ts +1 -0
  30. package/dist/src/Functions/Input/Select/_.d.ts +1 -0
  31. package/dist/src/Functions/Input/Slider/_.d.ts +1 -0
  32. package/dist/src/Functions/Input/Switch/_.d.ts +1 -0
  33. package/dist/src/Functions/Input/Text.d.ts +5 -0
  34. package/dist/src/Functions/Input/TextArea.d.ts +1 -0
  35. package/dist/src/Functions/Input/Time/Picker.d.ts +1 -0
  36. package/dist/src/Functions/Input/Time/_.d.ts +2 -0
  37. package/dist/src/Functions/Input/_.d.ts +5 -0
  38. package/dist/src/Functions/Input/core.d.ts +34 -0
  39. package/dist/src/Functions/Inputs/_.d.ts +3 -0
  40. package/dist/src/Functions/Inputs/text.d.ts +12 -0
  41. package/dist/src/Functions/Layout/PageNotFound.d.ts +1 -0
  42. package/dist/src/Functions/Layout/PageRouter.d.ts +2 -0
  43. package/dist/src/Functions/Layout/PageViewController/parts.d.ts +1 -0
  44. package/dist/src/Functions/Layout/Plate.d.ts +1 -0
  45. package/dist/src/Functions/Layout/RootViewController/parts.d.ts +1 -0
  46. package/dist/src/Functions/Layout/SwipeView/parts.d.ts +2 -0
  47. package/dist/src/Functions/Layout/TabBar.d.ts +1 -0
  48. package/dist/src/Functions/Layout/_.d.ts +2 -0
  49. package/dist/src/Functions/Loader/corner.d.ts +1 -0
  50. package/dist/src/Functions/Loader/mini.d.ts +33 -0
  51. package/dist/src/Functions/Loader/parts.d.ts +3 -0
  52. package/dist/src/Functions/Loader/top.d.ts +1 -0
  53. package/dist/src/Functions/Sheet/parts.d.ts +2 -0
  54. package/dist/src/Functions/SnackBar/parts.d.ts +2 -0
  55. package/dist/src/Functions/Table/Data/parts.d.ts +3 -0
  56. package/dist/src/Functions/Table/Drag/parts.d.ts +1 -0
  57. package/dist/src/Functions/Table/Normal/parts.d.ts +1 -0
  58. package/dist/src/Functions/Table/_.d.ts +9 -0
  59. package/dist/src/Functions/Tooltips/parts.d.ts +2 -0
  60. package/dist/src/Global/@export.d.ts +12 -0
  61. package/dist/src/Global/LaunchReactApplication.d.ts +1 -0
  62. package/dist/src/Global/styleConverter.d.ts +2 -0
  63. package/dist/src/Molecules/@export.d.ts +21 -0
  64. package/dist/src/Molecules/Accordion/parts.d.ts +2 -0
  65. package/dist/src/Molecules/LinkifyText/parts.d.ts +1 -0
  66. package/dist/src/Molecules/List.d.ts +1 -0
  67. package/dist/src/Organisms/@export.d.ts +2 -0
  68. package/dist/src/Organisms/DisplayStyleInput/_.d.ts +1 -0
  69. package/dist/src/Organisms/DisplayStyleInput/darkmode.d.ts +1 -0
  70. package/dist/src/Organisms/DisplayStyleInput/themeColor.d.ts +27 -0
  71. package/dist/src/Templates/@export.d.ts +2 -0
  72. package/dist/src/Templates/PlayGround/parts.d.ts +1 -0
  73. package/dist/src/config.d.ts +16 -0
  74. package/dist/src/launch.d.ts +9 -0
  75. package/dist/src/preload.d.ts +1 -0
  76. package/package.json +2 -2
  77. package/src/@jsminAmotifyExtension/_.tsx +4 -0
  78. package/src/@jsminAmotifyExtension/fetch.tsx +107 -0
  79. package/src/@jsminAmotifyExtension/formCollect.tsx +89 -0
  80. package/src/@jsminAmotifyExtension/spreadSheet.tsx +159 -0
  81. package/src/@jsminAmotifyExtension/variables.tsx +130 -0
  82. package/src/@styles/@app.scss +4 -0
  83. package/src/@styles/@variables/customProps.scss +109 -0
  84. package/src/@styles/@variables/styleSet.scss +38 -0
  85. package/src/@styles/@variables/themeColor.scss +71 -0
  86. package/src/@styles/@variables/var.scss +171 -0
  87. package/src/@styles/UniStyling.scss +996 -0
  88. package/src/@styles/init.scss +154 -0
  89. package/src/@types/_.tsx +6 -0
  90. package/src/@types/amot.tsx +323 -0
  91. package/src/@types/fn.tsx +1210 -0
  92. package/src/@types/index.tsx +74 -0
  93. package/src/@types/jsminAmotifyExtension.tsx +143 -0
  94. package/src/@types/module.tsx +2 -0
  95. package/src/@types/state.tsx +199 -0
  96. package/src/Atoms/@export.tsx +32 -0
  97. package/src/Atoms/FAIcon/parts.tsx +117 -0
  98. package/src/Atoms/FAIcon/style.module.scss +9 -0
  99. package/src/Atoms/Logo/parts.tsx +335 -0
  100. package/src/Atoms/Logo/style.module.scss +96 -0
  101. package/src/Atoms/Various/parts.tsx +157 -0
  102. package/src/Atoms/Various/style.module.scss +40 -0
  103. package/src/Functions/@export.tsx +29 -0
  104. package/src/Functions/Button/_.tsx +305 -0
  105. package/src/Functions/Button/style.module.scss +183 -0
  106. package/src/Functions/Cropper/parts.tsx +1061 -0
  107. package/src/Functions/Cropper/style.module.scss +62 -0
  108. package/src/Functions/Effects/Fade.tsx +81 -0
  109. package/src/Functions/Effects/Ripple.tsx +141 -0
  110. package/src/Functions/Effects/_.tsx +33 -0
  111. package/src/Functions/Effects/style.module.scss +83 -0
  112. package/src/Functions/Input/Chips/Selector.tsx +451 -0
  113. package/src/Functions/Input/Chips/_.tsx +286 -0
  114. package/src/Functions/Input/Chips/style.module.scss +6 -0
  115. package/src/Functions/Input/DigitCharacters.tsx +241 -0
  116. package/src/Functions/Input/File/_.tsx +596 -0
  117. package/src/Functions/Input/File/style.module.scss +34 -0
  118. package/src/Functions/Input/Hidden.tsx +18 -0
  119. package/src/Functions/Input/List/_.tsx +383 -0
  120. package/src/Functions/Input/List/style.module.scss +84 -0
  121. package/src/Functions/Input/Segmented/_.tsx +238 -0
  122. package/src/Functions/Input/Segmented/style.module.scss +81 -0
  123. package/src/Functions/Input/Select/_.tsx +225 -0
  124. package/src/Functions/Input/Select/style.module.scss +10 -0
  125. package/src/Functions/Input/Slider/_.tsx +519 -0
  126. package/src/Functions/Input/Slider/style.module.scss +67 -0
  127. package/src/Functions/Input/Switch/_.tsx +177 -0
  128. package/src/Functions/Input/Switch/style.module.scss +18 -0
  129. package/src/Functions/Input/Text.tsx +437 -0
  130. package/src/Functions/Input/TextArea.tsx +115 -0
  131. package/src/Functions/Input/Time/Picker.tsx +950 -0
  132. package/src/Functions/Input/Time/_.tsx +736 -0
  133. package/src/Functions/Input/Time/style.module.scss +72 -0
  134. package/src/Functions/Input/_.tsx +793 -0
  135. package/src/Functions/Input/core.tsx +461 -0
  136. package/src/Functions/Input/style.module.scss +43 -0
  137. package/src/Functions/Inputs/_.tsx +5 -0
  138. package/src/Functions/Inputs/style.module.scss +15 -0
  139. package/src/Functions/Inputs/text.tsx +67 -0
  140. package/src/Functions/Inputs/types.d.ts +1 -0
  141. package/src/Functions/Layout/PageNotFound.tsx +81 -0
  142. package/src/Functions/Layout/PageRouter.tsx +107 -0
  143. package/src/Functions/Layout/PageViewController/parts.tsx +32 -0
  144. package/src/Functions/Layout/Plate.tsx +30 -0
  145. package/src/Functions/Layout/RootViewController/parts.tsx +290 -0
  146. package/src/Functions/Layout/RootViewController/style.module.scss +24 -0
  147. package/src/Functions/Layout/SwipeView/parts.tsx +380 -0
  148. package/src/Functions/Layout/SwipeView/style.module.scss +19 -0
  149. package/src/Functions/Layout/TabBar.tsx +64 -0
  150. package/src/Functions/Layout/_.tsx +20 -0
  151. package/src/Functions/Loader/corner.tsx +78 -0
  152. package/src/Functions/Loader/mini.tsx +117 -0
  153. package/src/Functions/Loader/parts.tsx +105 -0
  154. package/src/Functions/Loader/style.module.scss +222 -0
  155. package/src/Functions/Loader/top.tsx +90 -0
  156. package/src/Functions/Sheet/parts.tsx +972 -0
  157. package/src/Functions/Sheet/style.module.scss +235 -0
  158. package/src/Functions/SnackBar/parts.tsx +215 -0
  159. package/src/Functions/SnackBar/style.module.scss +25 -0
  160. package/src/Functions/Table/Data/parts.tsx +955 -0
  161. package/src/Functions/Table/Drag/parts.tsx +448 -0
  162. package/src/Functions/Table/Normal/parts.tsx +123 -0
  163. package/src/Functions/Table/_.tsx +170 -0
  164. package/src/Functions/Table/style.module.scss +92 -0
  165. package/src/Functions/Tooltips/parts.tsx +52 -0
  166. package/src/Global/@export.tsx +138 -0
  167. package/src/Global/LaunchReactApplication.tsx +30 -0
  168. package/src/Global/exe.tsx +0 -0
  169. package/src/Global/styleConverter.tsx +435 -0
  170. package/src/Molecules/@export.tsx +95 -0
  171. package/src/Molecules/Accordion/parts.tsx +146 -0
  172. package/src/Molecules/Accordion/style.module.scss +13 -0
  173. package/src/Molecules/LinkifyText/parts.tsx +54 -0
  174. package/src/Molecules/List.tsx +30 -0
  175. package/src/Organisms/@export.tsx +5 -0
  176. package/src/Organisms/DisplayStyleInput/_.tsx +18 -0
  177. package/src/Organisms/DisplayStyleInput/darkmode.tsx +112 -0
  178. package/src/Organisms/DisplayStyleInput/themeColor.tsx +210 -0
  179. package/src/Templates/@export.tsx +7 -0
  180. package/src/Templates/PlayGround/parts.tsx +115 -0
  181. package/src/Templates/PlayGround/style.module.scss +38 -0
  182. package/src/config.tsx +132 -0
  183. package/src/launch.tsx +100 -0
  184. package/src/preload.tsx +49 -0
  185. package/tsconfig.json +27 -14
@@ -0,0 +1,996 @@
1
+ @use '@uniVar' as *;
2
+ @use '@styleSet' as *;
3
+ @use './@variables/themeColor' as themeColor;
4
+ @mixin UniStyles($DS ) {
5
+ &dsp {
6
+ &block#{ $DS } {
7
+ display: block;
8
+ }
9
+ &none#{ $DS } {
10
+ display: none;
11
+ }
12
+ &flex#{ $DS } {
13
+ display: flex;
14
+ }
15
+ &grid#{ $DS } {
16
+ display: grid;
17
+ }
18
+ &inlineBlock#{ $DS } {
19
+ display: inline-block;
20
+ }
21
+ &inlineFlex#{ $DS } {
22
+ display: inline-flex;
23
+ }
24
+ }
25
+ &ovfl {
26
+ $dirArr : x, y;
27
+ @each $dir in $dirArr {
28
+ &-#{ $dir }- {
29
+ &none#{ $DS } {
30
+ overflow-#{ $dir }: none;
31
+ }
32
+ &auto#{ $DS } {
33
+ overflow-#{ $dir }: auto;
34
+ }
35
+ &hidden#{ $DS } {
36
+ overflow-#{ $dir }: hidden;
37
+ }
38
+ &scroll#{ $DS } {
39
+ overflow-#{ $dir }: scroll;
40
+ }
41
+ &visible#{ $DS } {
42
+ overflow-#{ $dir }: visible;
43
+ }
44
+ }
45
+ }
46
+ &none#{ $DS } {
47
+ overflow: none;
48
+ }
49
+ &auto#{ $DS } {
50
+ overflow: auto;
51
+ }
52
+ &hidden#{ $DS } {
53
+ overflow: hidden;
54
+ }
55
+ &scroll#{ $DS } {
56
+ overflow: scroll;
57
+ }
58
+ &visible#{ $DS } {
59
+ overflow: visible;
60
+ }
61
+ }
62
+ &ps {
63
+ &relative#{ $DS } {
64
+ position: relative;
65
+ }
66
+ &absolute#{ $DS } {
67
+ position: absolute;
68
+ }
69
+ &fixed#{ $DS } {
70
+ position: fixed;
71
+ }
72
+ &sticky#{ $DS } {
73
+ position: sticky;
74
+ }
75
+ &static#{ $DS } {
76
+ position: static;
77
+ }
78
+ }
79
+ &txalg {
80
+ &center#{ $DS } {
81
+ text-align: center;
82
+ }
83
+ &left#{ $DS } {
84
+ text-align: left;
85
+ }
86
+ &right#{ $DS } {
87
+ text-align: right;
88
+ }
89
+ }
90
+ &ft {
91
+ &cl {
92
+ &1#{ $DS } {
93
+ color: $font-color1;
94
+ }
95
+ &2#{ $DS } {
96
+ color: $font-color2;
97
+ }
98
+ &3#{ $DS } {
99
+ color: $font-color3;
100
+ }
101
+ &4#{ $DS } {
102
+ color: $font-color4;
103
+ }
104
+ &5#{ $DS } {
105
+ color: $font-color5;
106
+ }
107
+ &6#{ $DS } {
108
+ color: $font-color6;
109
+ }
110
+ &inherit#{ $DS } {
111
+ color: inherit;
112
+ }
113
+ &theme#{ $DS } {
114
+ color: $color-theme;
115
+ }
116
+ &posi#{ $DS } {
117
+ color: $color-positive;
118
+ }
119
+ &nega#{ $DS } {
120
+ color: $color-negative;
121
+ }
122
+ &warn#{ $DS } {
123
+ color: $color-warning;
124
+ }
125
+ &logo#{ $DS } {
126
+ color: $font-color-logoTitle;
127
+ }
128
+ &white#{ $DS } {
129
+ color: #fff;
130
+ }
131
+ &black#{ $DS } {
132
+ color: #0a0a0a;
133
+ }
134
+ &mono#{ $DS } {
135
+ color: $color-monoPrime;
136
+ }
137
+ &monoPrime#{ $DS } {
138
+ color: $color-monoPrime;
139
+ }
140
+ &monoSecond#{ $DS } {
141
+ color: $color-monoSecond;
142
+ }
143
+ @each $key in themeColor.$ThemeColorKeys {
144
+ &#{ $key }#{ $DS } {
145
+ color:hsl(var(--color_#{ $key }-hsl));
146
+ }
147
+ }
148
+ }
149
+ &sz {
150
+ @for $i from 0 to 10 {
151
+ &#{$i}#{ $DS } {
152
+ font-size: var(--font-size#{$i});
153
+ }
154
+ }
155
+ &inherit#{ $DS } {
156
+ font-size: inherit;
157
+ }
158
+ }
159
+ &wt {
160
+ &1#{ $DS } {
161
+ font-weight: lighter;
162
+ }
163
+ &2#{ $DS } {
164
+ font-weight: normal;
165
+ }
166
+ &3#{ $DS } {
167
+ font-weight: bold;
168
+ }
169
+ }
170
+ }
171
+ &bgc {
172
+ &1#{ $DS } {
173
+ background-color: $color-layer1;
174
+ }
175
+ &2#{ $DS } {
176
+ background-color: $color-layer2;
177
+ }
178
+ &3#{ $DS } {
179
+ background-color: $color-layer3;
180
+ }
181
+ &4#{ $DS } {
182
+ background-color: $color-layer4;
183
+ }
184
+ &5#{ $DS } {
185
+ background-color: $color-layer5;
186
+ }
187
+ &6#{ $DS } {
188
+ background-color: $color-layer6;
189
+ }
190
+ &cloud#{ $DS } {
191
+ background-color: $color-cloud;
192
+ }
193
+ &lcOpFew#{ $DS } {
194
+ background-color: $color-layer-opacity-few;
195
+ }
196
+ &lcOpLow#{ $DS } {
197
+ background-color: $color-layer-opacity-low;
198
+ }
199
+ &lcOpMiddle#{ $DS } {
200
+ background-color: $color-layer-opacity-middle;
201
+ }
202
+ &lcOpHigh#{ $DS } {
203
+ background-color: $color-layer-opacity-high;
204
+ }
205
+ &theme#{ $DS } {
206
+ background-color: $color-theme;
207
+ }
208
+ &tcOpFew#{ $DS } {
209
+ background-color: $color-theme-opacity-few;
210
+ }
211
+ &tcOpLow#{ $DS } {
212
+ background-color: $color-theme-opacity-low;
213
+ }
214
+ &tcOpMiddle#{ $DS } {
215
+ background-color: $color-theme-opacity-middle;
216
+ }
217
+ &tcOpHigh#{ $DS } {
218
+ background-color: $color-theme-opacity-high;
219
+ }
220
+ &tcLighten#{ $DS } {
221
+ background-color: $color-theme-lighten;
222
+ }
223
+ &tcLighter#{ $DS } {
224
+ background-color: $color-theme-lighter;
225
+ }
226
+ &tcLightest#{ $DS } {
227
+ background-color: $color-theme-lightest;
228
+ }
229
+ &tcDarken#{ $DS } {
230
+ background-color: $color-theme-darken;
231
+ }
232
+ &tcDarker#{ $DS } {
233
+ background-color: $color-theme-darker;
234
+ }
235
+ &tcDarkest#{ $DS } {
236
+ background-color: $color-theme-darkest;
237
+ }
238
+ &posi#{ $DS } {
239
+ background-color: $color-positive;
240
+ }
241
+ &posiOpLow#{ $DS } {
242
+ background-color: rgba(var(--color-positive-rgb), .05);
243
+ }
244
+ &posiOpMiddle#{ $DS } {
245
+ background-color: rgba(var(--color-positive-rgb), .1);
246
+ }
247
+ &nega#{ $DS } {
248
+ background-color: $color-negative;
249
+ }
250
+ &negaOpLow#{ $DS } {
251
+ background-color: rgba(var(--color-negative-rgb), .05);
252
+ }
253
+ &negaOpMiddle#{ $DS } {
254
+ background-color: rgba(var(--color-negative-rgb), .1);
255
+ }
256
+ &warn#{ $DS } {
257
+ background-color: $color-warning;
258
+ }
259
+ &dark#{ $DS } {
260
+ background-color: $color-dark;
261
+ }
262
+ &white#{ $DS } {
263
+ background-color: #fff;
264
+ }
265
+ &black#{ $DS } {
266
+ background-color: #0a0a0a;
267
+ }
268
+ &none#{ $DS } {
269
+ background-color: none;
270
+ }
271
+ &mono#{ $DS } {
272
+ background-color: $color-monoPrime;
273
+ }
274
+ &monoPrime#{ $DS } {
275
+ background-color: $color-monoPrime;
276
+ }
277
+ &monoSecond#{ $DS } {
278
+ background-color: $color-monoSecond;
279
+ }
280
+ &inherit#{ $DS } {
281
+ background-color: inherit;
282
+ }
283
+ &trans#{ $DS } {
284
+ background-color: transparent;
285
+ }
286
+ @each $key in themeColor.$ThemeColorKeys {
287
+ &#{ $key }#{ $DS } {
288
+ background-color:hsl(var(--color_#{ $key }-hsl));
289
+ }
290
+ }
291
+ }
292
+ &bs {
293
+ &none#{ $DS } {
294
+ box-shadow: none;
295
+ }
296
+ &borderBox#{ $DS } {
297
+ box-shadow:
298
+ 0 4px 6px -1px rgba(0, 0, 0, .1),
299
+ 0 2px 4px -2px rgba(0, 0, 0, .1);
300
+ }
301
+ &0#{ $DS } {
302
+ box-shadow: 0 0 0 transparent inset, $shadow0;
303
+ }
304
+ &1#{ $DS } {
305
+ box-shadow: 0 0 0 transparent inset, $shadow1;
306
+ }
307
+ &2#{ $DS } {
308
+ box-shadow: 0 0 0 transparent inset, $shadow2;
309
+ }
310
+ &3#{ $DS } {
311
+ box-shadow: 0 0 0 transparent inset, $shadow3;
312
+ }
313
+ &4#{ $DS } {
314
+ box-shadow: 0 0 0 transparent inset, $shadow4;
315
+ }
316
+ &-1#{ $DS } {
317
+ box-shadow: 0 0 2px 0px rgba($shadow-color, .25) inset, 0 0 0 transparent;
318
+ }
319
+ &-2#{ $DS } {
320
+ box-shadow: 0 0 3px 0px rgba($shadow-color, .25) inset, 0 0 0 transparent;
321
+ }
322
+ &-3#{ $DS } {
323
+ box-shadow: 0 0 4px 0px rgba($shadow-color, .25) inset, 0 0 0 transparent;
324
+ }
325
+ }
326
+ & {
327
+ $typeArr : margin, padding;
328
+ @each $type in $typeArr {
329
+ $_type : _;
330
+ @if $type ==margin {
331
+ $_type : mrg;
332
+ }
333
+ @else if $type ==padding {
334
+ $_type : pd;
335
+ }
336
+ &#{ $_type } {
337
+ $dirArr : top, right, bottom, left;
338
+ @each $dir in $dirArr {
339
+ $_dir : _;
340
+ @if $dir ==top {
341
+ $_dir : t;
342
+ }
343
+ @else if $dir ==right {
344
+ $_dir : r;
345
+ }
346
+ @else if $dir ==bottom {
347
+ $_dir : b;
348
+ }
349
+ @else if $dir ==left {
350
+ $_dir : l;
351
+ }
352
+ &#{ $_dir } {
353
+ &0#{ $DS } {
354
+ #{ $type }-#{ $dir }: 0;
355
+ }
356
+ &1_12#{ $DS } {
357
+ #{ $type }-#{ $dir }: $unit1_12;
358
+ }
359
+ &1_6#{ $DS } {
360
+ #{ $type }-#{ $dir }: $unit1_6;
361
+ }
362
+ &1_4#{ $DS } {
363
+ #{ $type }-#{ $dir }: $unit1_4;
364
+ }
365
+ &1_3#{ $DS } {
366
+ #{ $type }-#{ $dir }: $unit1_3;
367
+ }
368
+ &1_2#{ $DS } {
369
+ #{ $type }-#{ $dir }: $unit1_2;
370
+ }
371
+ &2_3#{ $DS } {
372
+ #{ $type }-#{ $dir }: $unit2_3;
373
+ }
374
+ &3_4#{ $DS } {
375
+ #{ $type }-#{ $dir }: $unit3_4;
376
+ }
377
+ &1#{ $DS } {
378
+ #{ $type }-#{ $dir }: $unit1;
379
+ }
380
+ &1-5#{ $DS } {
381
+ #{ $type }-#{ $dir }: $unit1-5;
382
+ }
383
+ &2#{ $DS } {
384
+ #{ $type }-#{ $dir }: $unit2;
385
+ }
386
+ &2-5#{ $DS } {
387
+ #{ $type }-#{ $dir }: $unit2-5;
388
+ }
389
+ &3#{ $DS } {
390
+ #{ $type }-#{ $dir }: $unit3;
391
+ }
392
+ &4#{ $DS } {
393
+ #{ $type }-#{ $dir }: $unit4;
394
+ }
395
+ &auto#{ $DS } {
396
+ #{ $type }-#{ $dir }: auto;
397
+ }
398
+ &safeAreaTop#{ $DS } {
399
+ #{ $type }-#{ $dir }: $safe-area-top;
400
+ }
401
+ &safeAreaBottom#{ $DS } {
402
+ #{ $type }-#{ $dir }: $safe-area-bottom;
403
+ }
404
+ }
405
+ }
406
+ }
407
+ }
408
+ }
409
+ &pst {
410
+ $dirArr : top, right, bottom, left;
411
+ @each $dir in $dirArr {
412
+ $_dir : _;
413
+ @if $dir ==top {
414
+ $_dir : t;
415
+ }
416
+ @else if $dir ==right {
417
+ $_dir : r;
418
+ }
419
+ @else if $dir ==bottom {
420
+ $_dir : b;
421
+ }
422
+ @else if $dir ==left {
423
+ $_dir : l;
424
+ }
425
+ &#{ $_dir } {
426
+ &0#{ $DS } {
427
+ #{ $dir }: 0;
428
+ }
429
+ &1_12#{ $DS } {
430
+ #{ $dir }: $unit1_12;
431
+ }
432
+ &1_6#{ $DS } {
433
+ #{ $dir }: $unit1_6;
434
+ }
435
+ &1_4#{ $DS } {
436
+ #{ $dir }: $unit1_4;
437
+ }
438
+ &1_3#{ $DS } {
439
+ #{ $dir }: $unit1_3;
440
+ }
441
+ &1_2#{ $DS } {
442
+ #{ $dir }: $unit1_2;
443
+ }
444
+ &2_3#{ $DS } {
445
+ #{ $dir }: $unit2_3;
446
+ }
447
+ &3_4#{ $DS } {
448
+ #{ $dir }: $unit3_4;
449
+ }
450
+ &1#{ $DS } {
451
+ #{ $dir }: $unit1;
452
+ }
453
+ &2#{ $DS } {
454
+ #{ $dir }: $unit2;
455
+ }
456
+ &3#{ $DS } {
457
+ #{ $dir }: $unit3;
458
+ }
459
+ &4#{ $DS } {
460
+ #{ $dir }: $unit4;
461
+ }
462
+ &50P#{ $DS } {
463
+ #{ $dir }: 50%;
464
+ }
465
+ &100P#{ $DS } {
466
+ #{ $dir }: 100%;
467
+ }
468
+ &topNavigationHeight#{ $DS } {
469
+ #{ $dir }: $topNavigationHeight;
470
+ }
471
+ &topBase#{ $DS } {
472
+ #{ $dir }: var(--topBase);
473
+ }
474
+ }
475
+ }
476
+ }
477
+ &b {
478
+ &_ {
479
+ $dirArr : top, right, bottom, left;
480
+ @each $dir in $dirArr {
481
+ $_dir : _;
482
+ @if $dir ==top {
483
+ $_dir : t;
484
+ }
485
+ @else if $dir ==right {
486
+ $_dir : r;
487
+ }
488
+ @else if $dir ==bottom {
489
+ $_dir : b;
490
+ }
491
+ @else if $dir ==left {
492
+ $_dir : l;
493
+ }
494
+ &#{ $_dir }_ {
495
+ &ss {
496
+ &0#{ $DS } {
497
+ border-#{ $dir }: 1px solid transparent;
498
+ }
499
+ &1#{ $DS } {
500
+ border-#{ $dir }: 1px solid var(--border-color-thin);
501
+ }
502
+ &2#{ $DS } {
503
+ border-#{ $dir }: 1px solid var(--border-color-normal);
504
+ }
505
+ &unset#{ $DS } {
506
+ border-#{ $dir }-style: unset !important;
507
+ border-#{ $dir }-width: unset !important;
508
+ border-#{ $dir }-color: unset !important;
509
+ }
510
+ }
511
+ }
512
+ }
513
+ &wth {
514
+ @for $i from 0 to 5 {
515
+ &#{ $i }#{ $DS } {
516
+ border-width: calc(#{$i} * 1px);
517
+ }
518
+ }
519
+ }
520
+ &cl {
521
+ &0#{ $DS } {
522
+ border-color: transparent;
523
+ }
524
+ &1#{ $DS } {
525
+ border-color: var(--border-color-thin);
526
+ }
527
+ &2#{ $DS } {
528
+ border-color: var(--border-color-normal);
529
+ }
530
+ &theme#{ $DS } {
531
+ border-color: $color-theme;
532
+ }
533
+ &posi#{ $DS } {
534
+ border-color: $color-positive;
535
+ }
536
+ &nega#{ $DS } {
537
+ border-color: $color-negative;
538
+ }
539
+ &warn#{ $DS } {
540
+ border-color: $color-warning;
541
+ }
542
+ &white#{ $DS } {
543
+ border-color: white;
544
+ }
545
+ }
546
+ &st {
547
+ &solid#{ $DS } {
548
+ border-style: solid;
549
+ }
550
+ &dashed#{ $DS } {
551
+ border-style: dashed;
552
+ }
553
+ &double#{ $DS } {
554
+ border-style: double;
555
+ }
556
+ &dotted#{ $DS } {
557
+ border-style: dotted;
558
+ }
559
+ }
560
+ }
561
+ &r_ {
562
+ $dirArr : top-left, top-right, bottom-left, bottom-right;
563
+ @each $dir in $dirArr {
564
+ $_dir : _;
565
+ @if $dir ==top-left {
566
+ $_dir : tl;
567
+ }
568
+ @else if $dir ==top-right {
569
+ $_dir : tr;
570
+ }
571
+ @else if $dir ==bottom-left {
572
+ $_dir : bl;
573
+ }
574
+ @else if $dir ==bottom-right {
575
+ $_dir : br;
576
+ }
577
+ &#{ $_dir } {
578
+ &0#{ $DS } {
579
+ border-#{ $dir }-radius: 0;
580
+ }
581
+ &1_3#{ $DS } {
582
+ border-#{ $dir }-radius: $border-radius1_3;
583
+ }
584
+ &2_3#{ $DS } {
585
+ border-#{ $dir }-radius: $border-radius2_3;
586
+ }
587
+ @for $i from 1 to 7 {
588
+ &#{$i}#{ $DS } {
589
+ border-#{ $dir }-radius: var(--border-radius#{ $i });
590
+ }
591
+ }
592
+ &sphere#{ $DS } {
593
+ border-#{ $dir }-radius: 1000rem;
594
+ }
595
+ &inherit#{ $DS } {
596
+ border-#{ $dir }-radius: inherit;
597
+ }
598
+ }
599
+ }
600
+ }
601
+ }
602
+ &gap {
603
+ $dirArr : row, column;
604
+ @each $dir in $dirArr {
605
+ $_dir : _;
606
+ @if $dir ==row {
607
+ $_dir : Row;
608
+ }
609
+ @else if $dir ==column {
610
+ $_dir : Col;
611
+ }
612
+ &#{ $_dir } {
613
+ &0#{ $DS } {
614
+ #{ $dir }-gap: 0;
615
+ }
616
+ &1_12#{ $DS } {
617
+ #{ $dir }-gap: $unit1_12;
618
+ }
619
+ &1_6#{ $DS } {
620
+ #{ $dir }-gap: $unit1_6;
621
+ }
622
+ &1_4#{ $DS } {
623
+ #{ $dir }-gap: $unit1_4;
624
+ }
625
+ &1_3#{ $DS } {
626
+ #{ $dir }-gap: $unit1_3;
627
+ }
628
+ &1_2#{ $DS } {
629
+ #{ $dir }-gap: $unit1_2;
630
+ }
631
+ &2_3#{ $DS } {
632
+ #{ $dir }-gap: $unit2_3;
633
+ }
634
+ &3_4#{ $DS } {
635
+ #{ $dir }-gap: $unit3_4;
636
+ }
637
+ &1#{ $DS } {
638
+ #{ $dir }-gap: $unit1;
639
+ }
640
+ &1-5#{ $DS } {
641
+ #{ $dir }-gap: $unit1-5;
642
+ }
643
+ &2#{ $DS } {
644
+ #{ $dir }-gap: $unit2;
645
+ }
646
+ &2-5#{ $DS } {
647
+ #{ $dir }-gap: $unit2-5;
648
+ }
649
+ &3#{ $DS } {
650
+ #{ $dir }-gap: $unit3;
651
+ }
652
+ &4#{ $DS } {
653
+ #{ $dir }-gap: $unit4;
654
+ }
655
+ }
656
+ }
657
+ }
658
+ &fl {
659
+ &wrp {
660
+ &true#{ $DS } {
661
+ flex-wrap: wrap;
662
+ }
663
+ &false#{ $DS } {
664
+ flex-wrap: nowrap;
665
+ }
666
+ }
667
+ &typ {
668
+ &row#{ $DS } {
669
+ flex-direction: row;
670
+ }
671
+ &row-r#{ $DS } {
672
+ flex-direction: row-reverse;
673
+ }
674
+ &col#{ $DS } {
675
+ flex-flow: column;
676
+ }
677
+ &col-r#{ $DS } {
678
+ flex-flow: column-reverse;
679
+ }
680
+ }
681
+ &vrt {
682
+ &center#{ $DS } {
683
+ align-items: center;
684
+ }
685
+ &top#{ $DS } {
686
+ align-items: flex-start;
687
+ }
688
+ &bottom#{ $DS } {
689
+ align-items: flex-end;
690
+ }
691
+ &unset#{ $DS } {
692
+ align-items: unset;
693
+ }
694
+ &baseline#{ $DS } {
695
+ align-items: baseline;
696
+ }
697
+ }
698
+ &hrz {
699
+ &center#{ $DS } {
700
+ justify-content: center;
701
+ }
702
+ &left#{ $DS } {
703
+ justify-content: flex-start;
704
+ }
705
+ &right#{ $DS } {
706
+ justify-content: flex-end;
707
+ }
708
+ &between#{ $DS } {
709
+ justify-content: space-between;
710
+ }
711
+ &around#{ $DS } {
712
+ justify-content: space-around;
713
+ }
714
+ &even#{ $DS } {
715
+ justify-content: space-evenly;
716
+ }
717
+ &unset#{ $DS } {
718
+ justify-content: unset;
719
+ }
720
+ }
721
+ &chld {
722
+ &auto#{ $DS } > * {
723
+ flex-grow: 1;
724
+ flex-shrink: 1;
725
+ flex-basis: auto;
726
+ }
727
+ &even#{ $DS } > * {
728
+ flex-grow: 1;
729
+ flex-shrink: 1;
730
+ flex-basis: 0;
731
+ }
732
+ &none#{ $DS } > * {
733
+ flex: none;
734
+ }
735
+ &unset#{ $DS } > * {
736
+ flex: unset;
737
+ }
738
+ }
739
+ &sz {
740
+ &none#{ $DS } {
741
+ flex: none;
742
+ }
743
+ &auto#{ $DS } {
744
+ flex: 1 1 auto;
745
+ }
746
+ &0#{ $DS } {
747
+ flex: 1 1 0;
748
+ }
749
+ }
750
+ &grid {
751
+ @for $i from 1 to 13 {
752
+ &#{ $i }#{ $DS } {
753
+ flex: #{ $i };
754
+ }
755
+ }
756
+ &unset#{$DS} {
757
+ flex: unset;
758
+ }
759
+ }
760
+ &br#{ $DS } {
761
+ width: 100%;
762
+ flex: none;
763
+ }
764
+ }
765
+ &gr {
766
+ &#{ $DS } {
767
+ display: grid;
768
+ }
769
+ &cnttrue#{ $DS } > * {
770
+ margin: auto;
771
+ }
772
+ &col {
773
+ @for $i from 1 to 13 {
774
+ &#{ $i }#{ $DS } {
775
+ grid-template-columns : repeat(#{ $i }, 1fr);
776
+ }
777
+ }
778
+ }
779
+ &bx#{ $DS } {
780
+ max-width: 100%;
781
+ }
782
+ }
783
+ & {
784
+ $dirArr : height, width;
785
+ @each $dir in $dirArr {
786
+ $_dir : _;
787
+ @if $dir ==height {
788
+ $_dir : hgt;
789
+ }
790
+ @else if $dir ==width {
791
+ $_dir : wdt;
792
+ }
793
+ &#{ $_dir } {
794
+ &0#{ $DS } {
795
+ #{ $dir }: 0%;
796
+ }
797
+ &1#{ $DS } {
798
+ #{ $dir }: 100%;
799
+ }
800
+ &auto#{ $DS } {
801
+ #{ $dir }: auto;
802
+ }
803
+ }
804
+ &unt#{ $_dir } {
805
+ &0#{ $DS } {
806
+ #{ $dir }: 0;
807
+ }
808
+ &1_12#{ $DS } {
809
+ #{ $dir }: $unit1_12;
810
+ }
811
+ &1_6#{ $DS } {
812
+ #{ $dir }: $unit1_6;
813
+ }
814
+ &1_4#{ $DS } {
815
+ #{ $dir }: $unit1_4;
816
+ }
817
+ &1_3#{ $DS } {
818
+ #{ $dir }: $unit1_3;
819
+ }
820
+ &1_2#{ $DS } {
821
+ #{ $dir }: $unit1_2;
822
+ }
823
+ &2_3#{ $DS } {
824
+ #{ $dir }: $unit2_3;
825
+ }
826
+ &3_4#{ $DS } {
827
+ #{ $dir }: $unit3_4;
828
+ }
829
+ &1#{ $DS } {
830
+ #{ $dir }: $unit1;
831
+ }
832
+ &1-5#{ $DS } {
833
+ #{ $dir }: $unit1-5;
834
+ }
835
+ &2#{ $DS } {
836
+ #{ $dir }: $unit2;
837
+ }
838
+ &2-5#{ $DS } {
839
+ #{ $dir }: $unit2-5;
840
+ }
841
+ &3#{ $DS } {
842
+ #{ $dir }: $unit3;
843
+ }
844
+ &3-5#{ $DS } {
845
+ #{ $dir }: $unit3-5;
846
+ }
847
+ &4#{ $DS } {
848
+ #{ $dir }: $unit4;
849
+ }
850
+ &6#{ $DS } {
851
+ #{ $dir }: $unit6;
852
+ }
853
+ &8#{ $DS } {
854
+ #{ $dir }: $unit8;
855
+ }
856
+ &12#{ $DS } {
857
+ #{ $dir }: $unit12;
858
+ }
859
+ }
860
+ }
861
+ }
862
+ &hgt {
863
+ &viewHeight#{ $DS } {
864
+ height: $viewHeight;
865
+ }
866
+ &topNavigationHeight#{ $DS } {
867
+ height: $topNavigationHeight;
868
+ }
869
+ &sideNavigationHeight#{ $DS } {
870
+ height: $sideNavigationHeight;
871
+ }
872
+ &contentHeight#{ $DS } {
873
+ height: $contentHeight;
874
+ }
875
+ }
876
+ &wdt {
877
+ &viewWidth#{ $DS } {
878
+ width: 100vw;
879
+ }
880
+ }
881
+ & {
882
+ $typeArr : min, max;
883
+ @each $type in $typeArr {
884
+ &#{ $type } {
885
+ $dirArr : height, width;
886
+ @each $dir in $dirArr {
887
+ $_dir : _;
888
+ @if $dir ==height {
889
+ $_dir : h;
890
+ }
891
+ @else if $dir ==width {
892
+ $_dir : w;
893
+ }
894
+ &#{ $_dir } {
895
+ &0#{ $DS } {
896
+ #{ $type }-#{ $dir }: 0;
897
+ }
898
+ &1#{ $DS } {
899
+ #{ $type }-#{ $dir }: 100%;
900
+ }
901
+ &unset#{ $DS } {
902
+ #{ $type }-#{ $dir }: unset !important;
903
+ }
904
+ &viewHeight#{ $DS } {
905
+ #{ $type }-#{ $dir }: $viewHeight;
906
+ }
907
+ &topNavigationHeight#{ $DS } {
908
+ #{ $type }-#{ $dir }: $topNavigationHeight;
909
+ }
910
+ &sideNavigationHeight#{ $DS } {
911
+ #{ $type }-#{ $dir }: $sideNavigationHeight;
912
+ }
913
+ &contentHeight#{ $DS } {
914
+ #{ $type }-#{ $dir }: $contentHeight;
915
+ }
916
+ }
917
+ }
918
+ }
919
+ }
920
+ }
921
+ &trnst {
922
+ &none#{ $DS } {
923
+ transition: 0s;
924
+ }
925
+ &short#{ $DS } {
926
+ transition: $animation-time-short;
927
+ }
928
+ &middle#{ $DS } {
929
+ transition: $animation-time-middle;
930
+ }
931
+ &long#{ $DS } {
932
+ transition: $animation-time-long;
933
+ }
934
+ }
935
+ &op {
936
+ &trans#{ $DS } {
937
+ opacity: 0;
938
+ }
939
+ &low#{ $DS } {
940
+ opacity: .3;
941
+ }
942
+ &middle#{ $DS } {
943
+ opacity: .6;
944
+ }
945
+ &high#{ $DS } {
946
+ opacity: .75;
947
+ }
948
+ &most#{ $DS } {
949
+ opacity: 1;
950
+ }
951
+ }
952
+ }
953
+ .¥ {
954
+ @include UniStyles('');
955
+ &_h {
956
+ @include UniStyles(':hover');
957
+ }
958
+ &_f {
959
+ @include UniStyles(':focus');
960
+ }
961
+ &_a {
962
+ @include UniStyles(':active');
963
+ }
964
+ &bk {
965
+ @media (max-width : $breakPoint ) {
966
+ @include UniStyles('');
967
+ }
968
+ }
969
+ }
970
+ .ss {
971
+ &LastChildLossBorder_ {
972
+ &bottom {
973
+ > * {
974
+ &:last-child {
975
+ border-bottom: unset !important;
976
+ }
977
+ }
978
+ }
979
+ &right {
980
+ > * {
981
+ &:last-child {
982
+ border-right: unset !important;
983
+ }
984
+ }
985
+ }
986
+ }
987
+ &Pushable {
988
+ cursor: pointer;
989
+ &:hover, &:focus {
990
+ background-color: $color-layer2;
991
+ }
992
+ &:active {
993
+ background-color: $color-layer3;
994
+ }
995
+ }
996
+ }