amotify 0.0.8 → 0.0.9

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 (260) hide show
  1. package/{dist/@types/_.d.ts → @types/_.tsx} +3 -3
  2. package/{src/@types → @types}/amot.tsx +0 -1
  3. package/{src/@types → @types}/fn.tsx +1 -2
  4. package/{src/@types → @types}/index.tsx +1 -5
  5. package/{src/@types → @types}/jsminAmotifyExtension.tsx +1 -2
  6. package/dist/amotify.js +1 -0
  7. package/dist/amotify.min.css +24 -0
  8. package/package.json +4 -9
  9. package/src/{Atoms/@export.tsx → @atoms.tsx} +3 -3
  10. package/src/@functions.tsx +29 -0
  11. package/src/{Global/@export.tsx → @global.tsx} +2 -2
  12. package/src/@jsminAmotifyExtension/formCollect.tsx +1 -1
  13. package/src/{Molecules/@export.tsx → @molecules.tsx} +4 -4
  14. package/src/@organisms.tsx +5 -0
  15. package/src/@styles/UniStyling.scss +1 -1
  16. package/src/@styles/init.scss +1 -1
  17. package/src/@styles/styleSet.scss +1 -1
  18. package/src/{Templates/@export.tsx → @templates.tsx} +1 -1
  19. package/src/{Atoms → atoms}/FAIcon/style.module.scss +1 -2
  20. package/src/{Atoms → atoms}/Logo/parts.tsx +1 -2
  21. package/src/{Atoms → atoms}/Logo/style.module.scss +1 -2
  22. package/src/{Atoms → atoms}/Various/parts.tsx +1 -1
  23. package/src/{Atoms → atoms}/Various/style.module.scss +3 -2
  24. package/src/{Functions → functions}/Button/_.tsx +1 -1
  25. package/src/{Functions → functions}/Button/style.module.scss +3 -2
  26. package/src/{Functions → functions}/Cropper/parts.tsx +4 -4
  27. package/src/{Functions → functions}/Cropper/style.module.scss +1 -1
  28. package/src/{Functions → functions}/Effects/Fade.tsx +2 -2
  29. package/src/{Functions → functions}/Effects/style.module.scss +1 -1
  30. package/src/{Functions → functions}/Input/Chips/Selector.tsx +4 -5
  31. package/src/{Functions → functions}/Input/Chips/_.tsx +3 -7
  32. package/src/functions/Input/Chips/style.module.scss +6 -0
  33. package/src/{Functions → functions}/Input/DigitCharacters.tsx +3 -3
  34. package/src/{Functions → functions}/Input/File/_.tsx +4 -4
  35. package/src/{Functions → functions}/Input/File/style.module.scss +1 -1
  36. package/src/{Functions → functions}/Input/List/_.tsx +3 -3
  37. package/src/{Functions → functions}/Input/List/style.module.scss +1 -1
  38. package/src/{Functions → functions}/Input/Segmented/_.tsx +1 -1
  39. package/src/{Functions → functions}/Input/Segmented/style.module.scss +2 -2
  40. package/src/{Functions → functions}/Input/Select/_.tsx +3 -3
  41. package/src/{Functions → functions}/Input/Select/style.module.scss +1 -1
  42. package/src/{Functions → functions}/Input/Slider/_.tsx +3 -3
  43. package/src/{Functions → functions}/Input/Slider/style.module.scss +2 -2
  44. package/src/{Functions → functions}/Input/Switch/_.tsx +4 -4
  45. package/src/{Functions → functions}/Input/Switch/style.module.scss +1 -1
  46. package/src/{Functions → functions}/Input/Text.tsx +2 -2
  47. package/src/{Functions → functions}/Input/TextArea.tsx +1 -1
  48. package/src/{Functions → functions}/Input/Time/Picker.tsx +4 -4
  49. package/src/{Functions → functions}/Input/Time/_.tsx +3 -3
  50. package/src/{Functions → functions}/Input/Time/style.module.scss +1 -1
  51. package/src/{Functions → functions}/Input/_.tsx +4 -4
  52. package/src/{Functions → functions}/Input/core.tsx +4 -4
  53. package/src/{Functions → functions}/Input/style.module.scss +1 -1
  54. package/src/{Functions → functions}/Inputs/style.module.scss +1 -1
  55. package/src/{Functions → functions}/Inputs/text.tsx +4 -17
  56. package/src/functions/Inputs/types.d.ts +13 -0
  57. package/src/{Functions → functions}/Layout/PageNotFound.tsx +4 -6
  58. package/src/{Functions → functions}/Layout/PageRouter.tsx +2 -2
  59. package/src/{Functions → functions}/Layout/PageViewController/parts.tsx +4 -2
  60. package/src/{Functions → functions}/Layout/Plate.tsx +1 -1
  61. package/src/{Functions → functions}/Layout/RootViewController/parts.tsx +6 -8
  62. package/src/{Functions → functions}/Layout/RootViewController/style.module.scss +1 -1
  63. package/src/{Functions → functions}/Layout/SwipeView/parts.tsx +2 -3
  64. package/src/{Functions → functions}/Layout/SwipeView/style.module.scss +1 -1
  65. package/src/{Functions → functions}/Layout/TabBar.tsx +4 -4
  66. package/src/{Functions → functions}/Loader/corner.tsx +3 -3
  67. package/src/{Functions → functions}/Loader/mini.tsx +2 -2
  68. package/src/{Functions → functions}/Loader/parts.tsx +1 -1
  69. package/src/{Functions → functions}/Loader/style.module.scss +1 -1
  70. package/src/{Functions → functions}/Loader/top.tsx +3 -3
  71. package/src/{Functions → functions}/Sheet/parts.tsx +4 -4
  72. package/src/{Functions → functions}/Sheet/style.module.scss +1 -1
  73. package/src/{Functions → functions}/SnackBar/parts.tsx +4 -4
  74. package/src/{Functions → functions}/SnackBar/style.module.scss +1 -1
  75. package/src/{Functions → functions}/Table/Data/parts.tsx +4 -4
  76. package/src/{Functions → functions}/Table/Drag/parts.tsx +3 -3
  77. package/src/{Functions → functions}/Table/Normal/parts.tsx +1 -2
  78. package/src/{Functions → functions}/Table/_.tsx +3 -4
  79. package/src/{Functions → functions}/Table/style.module.scss +3 -2
  80. package/src/{Functions → functions}/Tooltips/parts.tsx +2 -2
  81. package/src/{Global → global}/styleConverter.tsx +1 -5
  82. package/src/launch.tsx +8 -8
  83. package/src/{Molecules → molecules}/Accordion/parts.tsx +2 -2
  84. package/src/{Molecules → molecules}/Accordion/style.module.scss +1 -1
  85. package/src/{Molecules → molecules}/LinkifyText/parts.tsx +2 -2
  86. package/src/{Molecules → molecules}/List.tsx +1 -1
  87. package/src/{Organisms → organisms}/DisplayStyleInput/darkmode.tsx +4 -4
  88. package/src/{Organisms → organisms}/DisplayStyleInput/themeColor.tsx +4 -4
  89. package/src/{Templates → templates}/PlayGround/parts.tsx +26 -40
  90. package/src/{Templates → templates}/PlayGround/style.module.scss +1 -1
  91. package/tsconfig.json +19 -5
  92. package/webpack.config.js +13 -2
  93. package/dist/@jsminAmotifyExtension/_.d.ts +0 -4
  94. package/dist/@jsminAmotifyExtension/_.js +0 -6
  95. package/dist/@jsminAmotifyExtension/fetch.d.ts +0 -9
  96. package/dist/@jsminAmotifyExtension/fetch.js +0 -199
  97. package/dist/@jsminAmotifyExtension/formCollect.d.ts +0 -1
  98. package/dist/@jsminAmotifyExtension/formCollect.js +0 -137
  99. package/dist/@jsminAmotifyExtension/spreadSheet.d.ts +0 -4
  100. package/dist/@jsminAmotifyExtension/spreadSheet.js +0 -314
  101. package/dist/@jsminAmotifyExtension/variables.d.ts +0 -0
  102. package/dist/@jsminAmotifyExtension/variables.js +0 -186
  103. package/dist/@types/_.js +0 -8
  104. package/dist/@types/amot.d.ts +0 -260
  105. package/dist/@types/amot.js +0 -2
  106. package/dist/@types/fn.d.ts +0 -1040
  107. package/dist/@types/fn.js +0 -2
  108. package/dist/@types/index.d.ts +0 -62
  109. package/dist/@types/index.js +0 -2
  110. package/dist/@types/jsminAmotifyExtension.d.ts +0 -134
  111. package/dist/@types/jsminAmotifyExtension.js +0 -2
  112. package/dist/@types/module.d.ts +0 -2
  113. package/dist/@types/module.js +0 -1
  114. package/dist/@types/state.d.ts +0 -145
  115. package/dist/@types/state.js +0 -2
  116. package/dist/Atoms/@export.d.ts +0 -4
  117. package/dist/Atoms/@export.js +0 -16
  118. package/dist/Atoms/FAIcon/parts.d.ts +0 -2
  119. package/dist/Atoms/FAIcon/parts.js +0 -152
  120. package/dist/Atoms/Logo/parts.d.ts +0 -1
  121. package/dist/Atoms/Logo/parts.js +0 -154
  122. package/dist/Atoms/Various/parts.d.ts +0 -9
  123. package/dist/Atoms/Various/parts.js +0 -113
  124. package/dist/Functions/@export.d.ts +0 -12
  125. package/dist/Functions/@export.js +0 -25
  126. package/dist/Functions/Button/_.d.ts +0 -1
  127. package/dist/Functions/Button/_.js +0 -270
  128. package/dist/Functions/Cropper/parts.d.ts +0 -1
  129. package/dist/Functions/Cropper/parts.js +0 -783
  130. package/dist/Functions/Effects/Fade.d.ts +0 -1
  131. package/dist/Functions/Effects/Fade.js +0 -82
  132. package/dist/Functions/Effects/Ripple.d.ts +0 -1
  133. package/dist/Functions/Effects/Ripple.js +0 -107
  134. package/dist/Functions/Effects/_.d.ts +0 -3
  135. package/dist/Functions/Effects/_.js +0 -43
  136. package/dist/Functions/Input/Chips/Selector.d.ts +0 -1
  137. package/dist/Functions/Input/Chips/Selector.js +0 -356
  138. package/dist/Functions/Input/Chips/_.d.ts +0 -2
  139. package/dist/Functions/Input/Chips/_.js +0 -218
  140. package/dist/Functions/Input/DigitCharacters.d.ts +0 -1
  141. package/dist/Functions/Input/DigitCharacters.js +0 -178
  142. package/dist/Functions/Input/File/_.d.ts +0 -2
  143. package/dist/Functions/Input/File/_.js +0 -458
  144. package/dist/Functions/Input/Hidden.d.ts +0 -1
  145. package/dist/Functions/Input/Hidden.js +0 -30
  146. package/dist/Functions/Input/List/_.d.ts +0 -1
  147. package/dist/Functions/Input/List/_.js +0 -232
  148. package/dist/Functions/Input/Segmented/_.d.ts +0 -1
  149. package/dist/Functions/Input/Segmented/_.js +0 -111
  150. package/dist/Functions/Input/Select/_.d.ts +0 -1
  151. package/dist/Functions/Input/Select/_.js +0 -154
  152. package/dist/Functions/Input/Slider/_.d.ts +0 -1
  153. package/dist/Functions/Input/Slider/_.js +0 -308
  154. package/dist/Functions/Input/Switch/_.d.ts +0 -1
  155. package/dist/Functions/Input/Switch/_.js +0 -120
  156. package/dist/Functions/Input/Text.d.ts +0 -5
  157. package/dist/Functions/Input/Text.js +0 -340
  158. package/dist/Functions/Input/TextArea.d.ts +0 -1
  159. package/dist/Functions/Input/TextArea.js +0 -98
  160. package/dist/Functions/Input/Time/Picker.d.ts +0 -1
  161. package/dist/Functions/Input/Time/Picker.js +0 -581
  162. package/dist/Functions/Input/Time/_.d.ts +0 -2
  163. package/dist/Functions/Input/Time/_.js +0 -567
  164. package/dist/Functions/Input/_.d.ts +0 -5
  165. package/dist/Functions/Input/_.js +0 -446
  166. package/dist/Functions/Input/core.d.ts +0 -34
  167. package/dist/Functions/Input/core.js +0 -324
  168. package/dist/Functions/Inputs/_.d.ts +0 -3
  169. package/dist/Functions/Inputs/_.js +0 -7
  170. package/dist/Functions/Inputs/text.d.ts +0 -12
  171. package/dist/Functions/Inputs/text.js +0 -46
  172. package/dist/Functions/Layout/PageNotFound.d.ts +0 -1
  173. package/dist/Functions/Layout/PageNotFound.js +0 -30
  174. package/dist/Functions/Layout/PageRouter.d.ts +0 -2
  175. package/dist/Functions/Layout/PageRouter.js +0 -65
  176. package/dist/Functions/Layout/PageViewController/parts.d.ts +0 -1
  177. package/dist/Functions/Layout/PageViewController/parts.js +0 -31
  178. package/dist/Functions/Layout/Plate.d.ts +0 -1
  179. package/dist/Functions/Layout/Plate.js +0 -39
  180. package/dist/Functions/Layout/RootViewController/parts.d.ts +0 -1
  181. package/dist/Functions/Layout/RootViewController/parts.js +0 -202
  182. package/dist/Functions/Layout/SwipeView/parts.d.ts +0 -2
  183. package/dist/Functions/Layout/SwipeView/parts.js +0 -319
  184. package/dist/Functions/Layout/TabBar.d.ts +0 -1
  185. package/dist/Functions/Layout/TabBar.js +0 -49
  186. package/dist/Functions/Layout/_.d.ts +0 -2
  187. package/dist/Functions/Layout/_.js +0 -20
  188. package/dist/Functions/Loader/corner.d.ts +0 -1
  189. package/dist/Functions/Loader/corner.js +0 -59
  190. package/dist/Functions/Loader/mini.d.ts +0 -33
  191. package/dist/Functions/Loader/mini.js +0 -126
  192. package/dist/Functions/Loader/parts.d.ts +0 -3
  193. package/dist/Functions/Loader/parts.js +0 -108
  194. package/dist/Functions/Loader/top.d.ts +0 -1
  195. package/dist/Functions/Loader/top.js +0 -69
  196. package/dist/Functions/Sheet/parts.d.ts +0 -2
  197. package/dist/Functions/Sheet/parts.js +0 -724
  198. package/dist/Functions/SnackBar/parts.d.ts +0 -2
  199. package/dist/Functions/SnackBar/parts.js +0 -171
  200. package/dist/Functions/Table/Data/parts.d.ts +0 -3
  201. package/dist/Functions/Table/Data/parts.js +0 -629
  202. package/dist/Functions/Table/Drag/parts.d.ts +0 -1
  203. package/dist/Functions/Table/Drag/parts.js +0 -359
  204. package/dist/Functions/Table/Normal/parts.d.ts +0 -1
  205. package/dist/Functions/Table/Normal/parts.js +0 -92
  206. package/dist/Functions/Table/_.d.ts +0 -9
  207. package/dist/Functions/Table/_.js +0 -153
  208. package/dist/Functions/Tooltips/parts.d.ts +0 -2
  209. package/dist/Functions/Tooltips/parts.js +0 -71
  210. package/dist/Global/@export.d.ts +0 -12
  211. package/dist/Global/@export.js +0 -198
  212. package/dist/Global/LaunchReactApplication.d.ts +0 -1
  213. package/dist/Global/LaunchReactApplication.js +0 -48
  214. package/dist/Global/styleConverter.d.ts +0 -2
  215. package/dist/Global/styleConverter.js +0 -349
  216. package/dist/Molecules/@export.d.ts +0 -21
  217. package/dist/Molecules/@export.js +0 -41
  218. package/dist/Molecules/Accordion/parts.d.ts +0 -2
  219. package/dist/Molecules/Accordion/parts.js +0 -165
  220. package/dist/Molecules/LinkifyText/parts.d.ts +0 -1
  221. package/dist/Molecules/LinkifyText/parts.js +0 -39
  222. package/dist/Molecules/List.d.ts +0 -1
  223. package/dist/Molecules/List.js +0 -35
  224. package/dist/Organisms/@export.d.ts +0 -2
  225. package/dist/Organisms/@export.js +0 -5
  226. package/dist/Organisms/DisplayStyleInput/_.d.ts +0 -1
  227. package/dist/Organisms/DisplayStyleInput/_.js +0 -15
  228. package/dist/Organisms/DisplayStyleInput/darkmode.d.ts +0 -1
  229. package/dist/Organisms/DisplayStyleInput/darkmode.js +0 -77
  230. package/dist/Organisms/DisplayStyleInput/themeColor.d.ts +0 -27
  231. package/dist/Organisms/DisplayStyleInput/themeColor.js +0 -185
  232. package/dist/Templates/@export.d.ts +0 -2
  233. package/dist/Templates/@export.js +0 -5
  234. package/dist/Templates/PlayGround/parts.d.ts +0 -1
  235. package/dist/Templates/PlayGround/parts.js +0 -55
  236. package/dist/config.d.ts +0 -16
  237. package/dist/config.js +0 -171
  238. package/dist/launch.d.ts +0 -9
  239. package/dist/launch.js +0 -46
  240. package/dist/preload.d.ts +0 -1
  241. package/dist/preload.js +0 -73
  242. package/public/amotify.js +0 -310
  243. package/public/amotify.min.css +0 -12724
  244. package/src/@types/_.tsx +0 -6
  245. package/src/Functions/@export.tsx +0 -29
  246. package/src/Functions/Input/Chips/style.module.scss +0 -6
  247. package/src/Functions/Inputs/types.d.ts +0 -1
  248. package/src/Global/exe.tsx +0 -0
  249. package/src/Organisms/@export.tsx +0 -5
  250. package/src/index.js +0 -0
  251. /package/{src/@types → @types}/module.tsx +0 -0
  252. /package/{src/@types → @types}/state.tsx +0 -0
  253. /package/src/{Atoms → atoms}/FAIcon/parts.tsx +0 -0
  254. /package/src/{Functions → functions}/Effects/Ripple.tsx +0 -0
  255. /package/src/{Functions → functions}/Effects/_.tsx +0 -0
  256. /package/src/{Functions → functions}/Input/Hidden.tsx +0 -0
  257. /package/src/{Functions → functions}/Inputs/_.tsx +0 -0
  258. /package/src/{Functions → functions}/Layout/_.tsx +0 -0
  259. /package/src/{Global → global}/LaunchReactApplication.tsx +0 -0
  260. /package/src/{Organisms → organisms}/DisplayStyleInput/_.tsx +0 -0
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  useStore
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
  const {
5
5
  useEffect,
6
6
  useState,
@@ -11,16 +11,16 @@ import {
11
11
  Box,
12
12
  Flex,
13
13
  FAIcon
14
- } from '~/Atoms/@export';
14
+ } from '@atoms';
15
15
  import {
16
16
  Column,
17
17
  Row,
18
18
  Text
19
- } from '~/Molecules/@export';
19
+ } from '@mols';
20
20
  import {
21
21
  Buttons,
22
22
  Tooltips
23
- } from '~/Functions/@export';
23
+ } from '@fn';
24
24
 
25
25
  import style from './style.module.scss';
26
26
 
@@ -1,4 +1,4 @@
1
- @use 'src/@styles/props' as *;
1
+ @use '@props' as *;
2
2
  .Input {
3
3
  &:focus, &:active {
4
4
  z-index: 1;
@@ -1,4 +1,4 @@
1
- @use 'src/@styles/props' as *;
1
+ @use '@props' as *;
2
2
  .Focus {
3
3
  &:focus, &:active {
4
4
  z-index: 1;
@@ -1,23 +1,10 @@
1
1
  import {
2
2
  StyleConverter
3
- } from '~/Global/@export';
4
- import style from './style.module.scss';
3
+ } from '@global';
5
4
 
5
+ import style from './style.module.scss';
6
6
 
7
- declare global {
8
- namespace Inputs {
9
- type ToneTypes = 'normal' | 'cloud' | 'bottomBorder' | 'plain'
10
-
11
- namespace Text {
12
- type Params =
13
- any &
14
- React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>,HTMLInputElement> &
15
- {
16
- tone?: ToneTypes
17
- }
18
- }
19
- }
20
- }
7
+ import { TextInputs } from './types';
21
8
 
22
9
  let ToneStyles: {
23
10
  common: amotifyBasicElement
@@ -48,7 +35,7 @@ let ToneStyles: {
48
35
  plain: {},
49
36
  }
50
37
 
51
- export const TextInput = ( params: Inputs.Text.Params ) => {
38
+ export const TextInput = ( params: TextInputs.Text.Params ) => {
52
39
  params = {
53
40
  ...ToneStyles.common,
54
41
  ...ToneStyles.bottomBorder,
@@ -0,0 +1,13 @@
1
+ namespace TextInputs {
2
+ type ToneTypes = 'normal' | 'cloud' | 'bottomBorder' | 'plain'
3
+
4
+ namespace Text {
5
+ type Params =
6
+ any &
7
+ React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>,HTMLInputElement> &
8
+ {
9
+ tone?: ToneTypes
10
+ }
11
+ }
12
+ }
13
+ export { TextInputs }
@@ -1,17 +1,15 @@
1
1
  import {
2
2
  Box,
3
- Flex,
4
- FAIcon,
5
- Paragraph
6
- } from '~/Atoms/@export';
3
+ FAIcon
4
+ } from '@atoms';
7
5
  import {
8
6
  Column,
9
7
  Row,
10
8
  Text
11
- } from '~/Molecules/@export';
9
+ } from '@mols';
12
10
  import {
13
11
  Buttons
14
- } from '~/Functions/@export';
12
+ } from '@fn';
15
13
 
16
14
  export const PageNotFound: FNC<{}> = () => {
17
15
 
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  useStore,
3
3
  ReactRouterDom
4
- } from '~/Global/@export';
4
+ } from '@global';
5
5
  import {
6
6
  Layout
7
- } from '~/Functions/@export';
7
+ } from '@fn';
8
8
  const {
9
9
  useEffect,
10
10
  useRef,
@@ -1,13 +1,15 @@
1
1
  import {
2
2
  React
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
 
5
5
  const {
6
6
  useState,
7
7
  useEffect
8
8
  } = React;
9
9
 
10
- import { Effects } from '~/Functions/@export';
10
+ import {
11
+ Effects
12
+ } from '@fn';
11
13
 
12
14
  export const PageViewController: FNC<amotify.fn.Layout.PageViewController.Params> = ( params ) => {
13
15
  let {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  Box
3
- } from '~/Atoms/@export';
3
+ } from '@atoms';
4
4
 
5
5
  export const Plate: FNC<amotify.fn.Layout.Plate.Params> = ( props ) => {
6
6
  let {
@@ -2,19 +2,17 @@ import {
2
2
  React,
3
3
  useRecycle,
4
4
  pageTransit
5
- } from '~/Global/@export';
5
+ } from '@global';
6
6
  import {
7
7
  Box,
8
8
  Flex,
9
- } from '~/Atoms/@export';
9
+ } from '@atoms';
10
10
  import {
11
- Column,
12
- Row
13
- } from '~/Molecules/@export';
11
+ Column
12
+ } from '@mols';
14
13
  import {
15
- Buttons,
16
- Input
17
- } from '~/Functions/@export';
14
+ Buttons
15
+ } from '@fn';
18
16
 
19
17
  import style from './style.module.scss';
20
18
 
@@ -1,4 +1,4 @@
1
- @use 'src/@styles/props' as *;
1
+ @use '@props' as *;
2
2
  .Content {
3
3
  @media (max-width:$breakPoint ) {
4
4
  min-height: calc($viewHeight - $topNavigationHeight - $footerNavigationHeight );
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  useStore
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
  import {
5
5
  Box,
6
6
  Flex
7
- } from '~/Atoms/@export';
7
+ } from '@atoms';
8
8
  const {
9
9
  useState,
10
10
  useEffect,
@@ -13,7 +13,6 @@ const {
13
13
 
14
14
  import style from './style.module.scss';
15
15
 
16
-
17
16
  type SlideEventProps = {
18
17
  eventType: 'usr' | 'sys' | 'init' | 'adjustLoop'
19
18
  index: number
@@ -1,4 +1,4 @@
1
- @use 'src/@styles/props' as *;
1
+ @use '@props' as *;
2
2
  .Rail {
3
3
  &.ShowOther_true {
4
4
  > .Child {
@@ -1,16 +1,16 @@
1
1
  import {
2
2
  React,
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
  import {
5
5
  Box,
6
6
  Flex
7
- } from '~/Atoms/@export';
7
+ } from '@atoms';
8
8
  import {
9
9
  Row
10
- } from '~/Molecules/@export';
10
+ } from '@mols';
11
11
  import {
12
12
  Input
13
- } from '~/Functions/@export';
13
+ } from '@fn';
14
14
  const {
15
15
  useEffect,
16
16
  useState
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  useStore
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
  import {
5
5
  Box,
6
6
  Flex
7
- } from '~/Atoms/@export';
7
+ } from '@atoms';
8
8
  import {
9
9
  Row
10
- } from '~/Molecules/@export';
10
+ } from '@mols';
11
11
  const {
12
12
  useEffect,
13
13
  useState,
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  useStore
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
  import {
5
5
  Row
6
- } from '~/Molecules/@export';
6
+ } from '@mols';
7
7
  const {
8
8
  useEffect,
9
9
  useState,
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  LaunchReactApplication,
3
3
  useStore
4
- } from '~/Global/@export';
4
+ } from '@global';
5
5
  const {
6
6
  useEffect,
7
7
  useState,
@@ -1,4 +1,4 @@
1
- @use 'src/@styles/props' as *;
1
+ @use '@props' as *;
2
2
  :global {
3
3
  #LOADER {
4
4
  z-index: 10;
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  useStore
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
  import {
5
5
  Box,
6
6
  Flex
7
- } from '~/Atoms/@export';
7
+ } from '@atoms';
8
8
  import {
9
9
  Row
10
- } from '~/Molecules/@export';
10
+ } from '@mols';
11
11
  const {
12
12
  useEffect,
13
13
  useState,
@@ -1,23 +1,23 @@
1
1
  import {
2
2
  LaunchReactApplication,
3
3
  useStore
4
- } from '~/Global/@export';
4
+ } from '@global';
5
5
  import {
6
6
  Img,
7
7
  Box,
8
8
  Flex,
9
9
  FAIcon
10
- } from '~/Atoms/@export';
10
+ } from '@atoms';
11
11
  import {
12
12
  Column,
13
13
  Row,
14
14
  Text
15
- } from '~/Molecules/@export';
15
+ } from '@mols';
16
16
  import {
17
17
  Buttons,
18
18
  Input,
19
19
  Layout
20
- } from '~/Functions/@export';
20
+ } from '@fn';
21
21
  const {
22
22
  useEffect,
23
23
  useState,
@@ -1,4 +1,4 @@
1
- @use 'src/@styles/props' as *;
1
+ @use '@props' as *;
2
2
  //SheetBase
3
3
  :global {
4
4
  #SHEET {
@@ -1,19 +1,19 @@
1
1
  import {
2
2
  LaunchReactApplication,
3
3
  useStore
4
- } from '~/Global/@export';
4
+ } from '@global';
5
5
  import {
6
6
  Box,
7
7
  Flex,
8
8
  FAIcon
9
- } from '~/Atoms/@export';
9
+ } from '@atoms';
10
10
  import {
11
11
  Row,
12
12
  Column
13
- } from '~/Molecules/@export';
13
+ } from '@mols';
14
14
  import {
15
15
  Buttons
16
- } from '~/Functions/@export';
16
+ } from '@fn';
17
17
  const {
18
18
  useEffect,
19
19
  useState,
@@ -1,4 +1,4 @@
1
- @use 'src/@styles/props' as *;
1
+ @use '@props' as *;
2
2
  :global {
3
3
  #SNACKBARS {
4
4
  z-index: 8;
@@ -1,22 +1,22 @@
1
1
  import {
2
2
  useStore,
3
3
  React
4
- } from '~/Global/@export';
4
+ } from '@global';
5
5
  import {
6
6
  Flex,
7
7
  Box,
8
8
  Span,
9
9
  FAIcon
10
- } from '~/Atoms/@export';
10
+ } from '@atoms';
11
11
  import {
12
12
  Column,
13
13
  Row,Text
14
- } from '~/Molecules/@export';
14
+ } from '@mols';
15
15
  import {
16
16
  Buttons,
17
17
  Input,
18
18
  Sheet,
19
- } from '~/Functions/@export';
19
+ } from '@fn';
20
20
 
21
21
  import style from '../style.module.scss';
22
22
 
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  useStore
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
  import {
5
5
  FAIcon
6
- } from '~/Atoms/@export';
6
+ } from '@atoms';
7
7
  import {
8
8
  Buttons,
9
9
  Tooltips,
10
- } from '~/Functions/@export';
10
+ } from '@fn';
11
11
  const {
12
12
  useState,
13
13
  useEffect,
@@ -1,9 +1,8 @@
1
- import style from '../style.module.scss';
2
-
3
1
  import {
4
2
  Comps,
5
3
  DefaultCellSystemStyles
6
4
  } from '../_';
5
+ import style from '../style.module.scss';
7
6
 
8
7
  const HeadRow: FNC<amotify.fn.Tables.Normal.Params> = ( params ) => {
9
8
  let {
@@ -1,12 +1,11 @@
1
1
  import {
2
- StyleConverter,
3
- useStore
4
- } from '~/Global/@export';
2
+ StyleConverter
3
+ } from '@global';
5
4
 
6
5
  import {
7
6
  Box,
8
7
  FAIcon
9
- } from '~/Atoms/@export';
8
+ } from '@atoms';
10
9
 
11
10
  export const Comps: amotify.fn.Tables.CompsMethods = {
12
11
  Table: ( params ) => ( <table { ...StyleConverter.ToClassName( params ) } /> ),
@@ -1,5 +1,6 @@
1
- @use 'src/@styles/props' as *;
2
- @use'src/@styles/styleSet' as *;
1
+ @use '@props' as *;
2
+ @use'@styleSet' as *;
3
+
3
4
  .Wrap {
4
5
  &.RowClickable_true {
5
6
  .Row {
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  Box
3
- } from '~/Atoms/@export';
3
+ } from '@atoms';
4
4
  import {
5
5
  Sheet
6
- } from '~/Functions/@export';
6
+ } from '@fn';
7
7
 
8
8
  const Tooltips: amotify.fn.Tooltips.Methods = {
9
9
  __memoryID: $.uuidGen(),
@@ -1,7 +1,3 @@
1
- import {
2
- useStore
3
- } from '~/Global/@export';
4
-
5
1
  type StyleType = '¥' | '¥_h' | '¥_f' | '¥_a' | '¥bk';
6
2
 
7
3
  const FNs = {
@@ -19,7 +15,7 @@ const FNs = {
19
15
  },
20
16
  ev: ( v: any ) => $.is.nullish( v ),
21
17
  ClassNames: ( type: StyleType,params: amotifyUniStyleParams ) => {
22
- let CLS = [];
18
+ let CLS: string[] = [];
23
19
 
24
20
  let {
25
21
  gap,
package/src/launch.tsx CHANGED
@@ -1,8 +1,8 @@
1
1
  import 'jsmin-front/dist/@types';
2
2
 
3
- if ( !global.$ ) console.log( `%c※can not find global.$,please read Jsmin to launch amotify.`,'color:orange;' );
3
+ import '../@types/_';
4
4
 
5
- import './@types/_';
5
+ if ( !global.$ ) console.log( `%c※can not find global.$,please read Jsmin to launch amotify.`,'color:orange;' );
6
6
 
7
7
  let publicURI = 'https://public.comun.jp/';
8
8
  export { publicURI }
@@ -17,7 +17,7 @@ import {
17
17
  useRecycle,
18
18
  StyleConverter,
19
19
  LaunchReactApplication
20
- } from './Global/@export';
20
+ } from './@global';
21
21
  import {
22
22
  Flex,
23
23
  FlexBr,
@@ -29,7 +29,7 @@ import {
29
29
  Span,
30
30
  Paragraph,
31
31
  Img
32
- } from './Atoms/@export';
32
+ } from '@atoms';
33
33
  import {
34
34
  List,
35
35
  Accordion,
@@ -37,13 +37,13 @@ import {
37
37
  Text,
38
38
  Column,
39
39
  Row
40
- } from './Molecules/@export';
40
+ } from '@mols';
41
41
  import {
42
42
  DisplayStyleInput
43
- } from './Organisms/@export';
43
+ } from '@orgs';
44
44
  import {
45
45
  PlayGround
46
- } from './Templates/@export';
46
+ } from './@templates';
47
47
  import {
48
48
  Buttons,
49
49
  Input,
@@ -56,7 +56,7 @@ import {
56
56
  Tooltips,
57
57
  Effects,
58
58
  Cropper,
59
- } from './Functions/@export';
59
+ } from '@fn';
60
60
 
61
61
  import {
62
62
  deviceIdentifier,
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  useStore,
3
3
  React
4
- } from '~/Global/@export';
4
+ } from '@global';
5
5
  import {
6
6
  Box
7
- } from '~/Atoms/@export';
7
+ } from '@atoms';
8
8
  const {
9
9
  useEffect,
10
10
  useState,
@@ -1,4 +1,4 @@
1
- @use 'src/@styles/props' as *;
1
+ @use '@props' as *;
2
2
  .Wrap {
3
3
  &.Open_true {
4
4
  opacity: 1;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  FAIcon
3
- } from '~/Atoms/@export';
3
+ } from '@atoms';
4
4
  import {
5
5
  Buttons
6
- } from '~/Functions/@export';
6
+ } from '@fn';
7
7
 
8
8
  const {
9
9
  Anchor
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  Flex
3
- } from '~/Atoms/@export';
3
+ } from '@atoms';
4
4
 
5
5
  export const List: FNC<amotify.mols.List.Params> = ( params ) => {
6
6
  let {
@@ -1,20 +1,20 @@
1
1
  import {
2
2
  React
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
  import {
5
5
  Box,
6
6
  Flex,
7
7
  Img,
8
8
  FAIcon
9
- } from '~/Atoms/@export';
9
+ } from '@atoms';
10
10
  import {
11
11
  Column,
12
12
  Row,
13
13
  Text
14
- } from '~/Molecules/@export';
14
+ } from '@mols';
15
15
  import {
16
16
  Input
17
- } from '~/Functions/@export';
17
+ } from '@fn';
18
18
 
19
19
  const {
20
20
  useState,
@@ -1,20 +1,20 @@
1
1
  import {
2
2
  React
3
- } from '~/Global/@export';
3
+ } from '@global';
4
4
  import {
5
5
  Box,
6
6
  Flex,
7
7
  Img,
8
8
  FAIcon
9
- } from '~/Atoms/@export';
9
+ } from '@atoms';
10
10
  import {
11
11
  Column,
12
12
  Row,
13
13
  Text
14
- } from '~/Molecules/@export';
14
+ } from '@mols';
15
15
  import {
16
16
  Input
17
- } from '~/Functions/@export';
17
+ } from '@fn';
18
18
 
19
19
  const {
20
20
  useState,