amotify 0.0.20 → 0.0.21
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/amot.tsx +1 -0
- package/dist/amotify.js +1 -1
- package/package.json +1 -1
- package/src/config.tsx +5 -1
- package/src/launch.tsx +6 -6
package/package.json
CHANGED
package/src/config.tsx
CHANGED
|
@@ -28,7 +28,10 @@ export const deviceIdentifier = () => {
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
import {
|
|
31
|
+
import {
|
|
32
|
+
launchID,
|
|
33
|
+
ColorKeys
|
|
34
|
+
} from './@variables';
|
|
32
35
|
|
|
33
36
|
export const SetThemeColorTag = () => {
|
|
34
37
|
let hex = '#45515c';
|
|
@@ -62,6 +65,7 @@ ColorKeys.forEach( ( key ) => {
|
|
|
62
65
|
|
|
63
66
|
export const defaultConfig: amotify.config.Methods = {
|
|
64
67
|
version: Version,
|
|
68
|
+
launchID,
|
|
65
69
|
tone: 'default',
|
|
66
70
|
darkMode: 'light',
|
|
67
71
|
themeColor: 'comun',
|
package/src/launch.tsx
CHANGED
|
@@ -9,6 +9,12 @@ let publicURI = 'https://public.comun.jp/';
|
|
|
9
9
|
export { publicURI }
|
|
10
10
|
import './preload';
|
|
11
11
|
|
|
12
|
+
import {
|
|
13
|
+
deviceIdentifier,
|
|
14
|
+
defaultConfig,
|
|
15
|
+
SetThemeColorTag
|
|
16
|
+
} from './config';
|
|
17
|
+
|
|
12
18
|
import './@jsminAmotifyExtension/_';
|
|
13
19
|
import {
|
|
14
20
|
React,
|
|
@@ -59,12 +65,6 @@ import {
|
|
|
59
65
|
Cropper,
|
|
60
66
|
} from '@fn';
|
|
61
67
|
|
|
62
|
-
import {
|
|
63
|
-
deviceIdentifier,
|
|
64
|
-
defaultConfig,
|
|
65
|
-
SetThemeColorTag
|
|
66
|
-
} from './config';
|
|
67
|
-
|
|
68
68
|
const amotify: amotify = {
|
|
69
69
|
config: defaultConfig,
|
|
70
70
|
global: {
|