amotify 0.0.59 → 0.0.60
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.
- package/@types/_.tsx +5 -5
- package/@types/amot.tsx +11 -11
- package/@types/fn.tsx +1 -1
- package/@types/module.tsx +1 -1
- package/dist/amotify.js +1 -1
- package/dist/amotify.min.css +3 -3
- package/package.json +1 -1
- package/src/@atoms.tsx +3 -3
- package/src/@functions.tsx +11 -11
- package/src/@global.tsx +40 -40
- package/src/@jsminAmotifyExtension/_.tsx +4 -4
- package/src/@jsminAmotifyExtension/fetch.tsx +30 -30
- package/src/@jsminAmotifyExtension/formCollect.tsx +32 -32
- package/src/@jsminAmotifyExtension/spreadSheet.tsx +71 -71
- package/src/@jsminAmotifyExtension/variables.tsx +38 -38
- package/src/@molecules.tsx +6 -6
- package/src/@styles/props.scss +1 -1
- package/src/@styles/var.scss +0 -1
- package/src/@templates.tsx +1 -1
- package/src/@variables.tsx +2 -2
- package/src/atoms/FAI/parts.tsx +105 -105
- package/src/atoms/Logo/parts.tsx +19 -19
- package/src/atoms/Various/parts.tsx +26 -26
- package/src/config.tsx +62 -59
- package/src/functions/Button/_.tsx +49 -49
- package/src/functions/Cropper/parts.tsx +249 -249
- package/src/functions/Effects/Fade.tsx +18 -18
- package/src/functions/Effects/Ripple.tsx +24 -24
- package/src/functions/Effects/_.tsx +5 -5
- package/src/functions/Input/Chips/Selector.tsx +107 -107
- package/src/functions/Input/Chips/_.tsx +66 -66
- package/src/functions/Input/Contenteditable.tsx +18 -18
- package/src/functions/Input/DigitCharacters.tsx +48 -48
- package/src/functions/Input/File/_.tsx +114 -114
- package/src/functions/Input/Hidden.tsx +3 -3
- package/src/functions/Input/List/_.tsx +61 -61
- package/src/functions/Input/RichSelect/_.tsx +38 -38
- package/src/functions/Input/Segmented/_.tsx +30 -30
- package/src/functions/Input/Select/_.tsx +42 -42
- package/src/functions/Input/Slider/_.tsx +93 -93
- package/src/functions/Input/Switch/_.tsx +21 -21
- package/src/functions/Input/Text.tsx +99 -97
- package/src/functions/Input/TextArea.tsx +17 -17
- package/src/functions/Input/Time/Picker.tsx +199 -199
- package/src/functions/Input/Time/_.tsx +173 -173
- package/src/functions/Input/_.tsx +135 -135
- package/src/functions/Input/core.tsx +96 -96
- package/src/functions/Inputs/_.tsx +1 -1
- package/src/functions/Inputs/text.tsx +5 -5
- package/src/functions/Layout/PageNotFound.tsx +6 -6
- package/src/functions/Layout/PageRouter.tsx +34 -34
- package/src/functions/Layout/PageViewController/parts.tsx +7 -7
- package/src/functions/Layout/Plate.tsx +5 -5
- package/src/functions/Layout/RootViewController/parts.tsx +53 -53
- package/src/functions/Layout/SwipeView/parts.tsx +90 -90
- package/src/functions/Layout/TabBar.tsx +10 -10
- package/src/functions/Layout/_.tsx +7 -7
- package/src/functions/Loader/corner.tsx +10 -10
- package/src/functions/Loader/mini.tsx +25 -25
- package/src/functions/Loader/parts.tsx +31 -31
- package/src/functions/Loader/top.tsx +10 -10
- package/src/functions/Sheet/parts.tsx +219 -219
- package/src/functions/Sheet/style.module.scss +0 -20
- package/src/functions/SnackBar/parts.tsx +50 -50
- package/src/functions/Table/Data/parts.tsx +202 -202
- package/src/functions/Table/Drag/parts.tsx +76 -76
- package/src/functions/Table/Normal/parts.tsx +23 -23
- package/src/functions/Table/_.tsx +33 -33
- package/src/functions/Tooltips/parts.tsx +7 -7
- package/src/global/LaunchReactApplication.tsx +28 -28
- package/src/global/styleConverter.tsx +133 -133
- package/src/launch.tsx +27 -27
- package/src/molecules/Accordion/parts.tsx +41 -41
- package/src/molecules/LinkifyText/parts.tsx +18 -18
- package/src/molecules/List.tsx +6 -6
- package/src/preload.tsx +5 -45
- package/src/templates/PlayGround/parts.tsx +8 -8
- package/webpack.config.js +9 -9
package/@types/_.tsx
CHANGED
package/@types/amot.tsx
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export default { }
|
|
2
2
|
|
|
3
|
-
import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome'
|
|
4
|
-
import { IconDefinition } from "@fortawesome/fontawesome-common-types"
|
|
5
|
-
import * as FontawesomeCore from '@fortawesome/fontawesome-svg-core'
|
|
3
|
+
import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome'
|
|
4
|
+
import { IconDefinition } from "@fortawesome/fontawesome-common-types"
|
|
5
|
+
import * as FontawesomeCore from '@fortawesome/fontawesome-svg-core'
|
|
6
6
|
|
|
7
|
-
import React from 'react'
|
|
8
|
-
import ReactDOM from 'react-dom'
|
|
9
|
-
import * as ReactRouterDOM from 'react-router-dom'
|
|
7
|
+
import React from 'react'
|
|
8
|
+
import ReactDOM from 'react-dom'
|
|
9
|
+
import * as ReactRouterDOM from 'react-router-dom'
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
declare global {
|
|
@@ -155,11 +155,11 @@ declare global {
|
|
|
155
155
|
} & React.HTMLAttributes<HTMLDivElement>
|
|
156
156
|
|
|
157
157
|
namespace FAI {
|
|
158
|
-
type Method = React.FC<FAIParams> & Shortcuts
|
|
158
|
+
type Method = React.FC<FAIParams> & Shortcuts
|
|
159
159
|
type FAIParams = amotifyBasicElement & {
|
|
160
160
|
icon: FontawesomeCore.IconProp | IconDefinition
|
|
161
161
|
iconParams?: Omit<FontAwesomeIconProps,'icon'>
|
|
162
|
-
}
|
|
162
|
+
}
|
|
163
163
|
type Shortcuts = {
|
|
164
164
|
[ key in ShortCutNames ]: React.FC<Omit<FAIParams,'icon'>>
|
|
165
165
|
}
|
|
@@ -185,11 +185,11 @@ declare global {
|
|
|
185
185
|
'Plus' | 'Minus' |
|
|
186
186
|
'EllipsisH' | 'EllipsisV' |
|
|
187
187
|
'PaperPlane' |
|
|
188
|
-
'Image'
|
|
188
|
+
'Image'
|
|
189
189
|
}
|
|
190
190
|
|
|
191
191
|
namespace Image {
|
|
192
|
-
type Methods = React.FC<CompInput> & DefaultImages
|
|
192
|
+
type Methods = React.FC<CompInput> & DefaultImages
|
|
193
193
|
type CompInput = amotifyBasicElement & {
|
|
194
194
|
src: string
|
|
195
195
|
alt?: string
|
|
@@ -350,5 +350,5 @@ declare global {
|
|
|
350
350
|
temps: amotify.temps.Methods
|
|
351
351
|
fn: amotify.fn.Methods
|
|
352
352
|
}
|
|
353
|
-
var amotify: amotify
|
|
353
|
+
var amotify: amotify
|
|
354
354
|
}
|
package/@types/fn.tsx
CHANGED
|
@@ -417,7 +417,7 @@ declare global {
|
|
|
417
417
|
}
|
|
418
418
|
}
|
|
419
419
|
|
|
420
|
-
type RestrictTypes = 'text' | 'katakana' | 'hankaku.katakana' | 'number' | 'digitNumber' | 'tel' | 'email' | 'url' | 'fileName' | 'password' | 'postal' | 'creditCard'
|
|
420
|
+
type RestrictTypes = 'text' | 'katakana' | 'hankaku.katakana' | 'number' | 'digitNumber' | 'tel' | 'email' | 'url' | 'fileName' | 'password' | 'postal' | 'creditCard'
|
|
421
421
|
|
|
422
422
|
type PlainParams = CoreParams & React.DOMAttributes<HTMLInputElement> & {
|
|
423
423
|
tone?: BoxToneTypes
|
package/@types/module.tsx
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
declare module "*.scss"
|
|
1
|
+
declare module "*.scss"
|