@symbo.ls/starter-kit 3.4.11 → 3.5.1
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/.symbols_local/config.json +6 -0
- package/.symbols_local/lock.json +4 -0
- package/package.json +2 -2
- package/symbols/context.js +27 -0
- package/symbols/index.js +2 -28
- package/symbols.json +1 -4
- /package/symbols/designSystem/{ANIMATION.js → animation.js} +0 -0
- /package/symbols/designSystem/{CASES.js → cases.js} +0 -0
- /package/symbols/designSystem/{CLASS.js → class.js} +0 -0
- /package/symbols/designSystem/{COLOR.js → color.js} +0 -0
- /package/symbols/designSystem/{FONT.js → font.js} +0 -0
- /package/symbols/designSystem/{FONT_FAMILY.js → font_family.js} +0 -0
- /package/symbols/designSystem/{GRADIENT.js → gradient.js} +0 -0
- /package/symbols/designSystem/{GRID.js → grid.js} +0 -0
- /package/symbols/designSystem/{ICONS.js → icons.js} +0 -0
- /package/symbols/designSystem/{MEDIA.js → media.js} +0 -0
- /package/symbols/designSystem/{RESET.js → reset.js} +0 -0
- /package/symbols/designSystem/{SHAPE.js → shape.js} +0 -0
- /package/symbols/designSystem/{SPACING.js → spacing.js} +0 -0
- /package/symbols/designSystem/{THEME.js → theme.js} +0 -0
- /package/symbols/designSystem/{TIMING.js → timing.js} +0 -0
- /package/symbols/designSystem/{TYPOGRAPHY.js → typography.js} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/starter-kit",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "Example dev setup to use Symbols",
|
|
5
5
|
"author": "symbo.ls",
|
|
6
6
|
"repository": "https://github.com/symbo-ls/starter-kit",
|
|
@@ -10,6 +10,6 @@
|
|
|
10
10
|
"deploy": "npx smbls deploy"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"smbls": "^3.
|
|
13
|
+
"smbls": "^3.5.1"
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import state from './state.js'
|
|
2
|
+
import dependencies from './dependencies.js'
|
|
3
|
+
import * as components from './components/index.js'
|
|
4
|
+
import * as snippets from './snippets/index.js'
|
|
5
|
+
import pages from './pages/index.js'
|
|
6
|
+
import * as functions from './functions/index.js'
|
|
7
|
+
import * as methods from './methods/index.js'
|
|
8
|
+
import designSystem from './designSystem/index.js'
|
|
9
|
+
import files from './files/index.js'
|
|
10
|
+
import sharedLibraries from './sharedLibraries.js'
|
|
11
|
+
import config from './config.js'
|
|
12
|
+
import envs from './envs.js'
|
|
13
|
+
|
|
14
|
+
export default {
|
|
15
|
+
...config,
|
|
16
|
+
state,
|
|
17
|
+
dependencies,
|
|
18
|
+
components,
|
|
19
|
+
snippets,
|
|
20
|
+
pages,
|
|
21
|
+
functions,
|
|
22
|
+
methods,
|
|
23
|
+
designSystem,
|
|
24
|
+
files,
|
|
25
|
+
sharedLibraries,
|
|
26
|
+
envs
|
|
27
|
+
}
|
package/symbols/index.js
CHANGED
|
@@ -1,31 +1,5 @@
|
|
|
1
1
|
import { create } from 'smbls'
|
|
2
|
-
|
|
3
2
|
import app from './app.js'
|
|
3
|
+
import context from './context.js'
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
import dependencies from './dependencies.js'
|
|
7
|
-
import * as components from './components/index.js'
|
|
8
|
-
import * as snippets from './snippets/index.js'
|
|
9
|
-
import pages from './pages/index.js'
|
|
10
|
-
import * as functions from './functions/index.js'
|
|
11
|
-
import * as methods from './methods/index.js'
|
|
12
|
-
import designSystem from './designSystem/index.js'
|
|
13
|
-
import files from './files/index.js'
|
|
14
|
-
import sharedLibraries from './sharedLibraries.js'
|
|
15
|
-
import config from './config.js'
|
|
16
|
-
import envs from './envs.js'
|
|
17
|
-
|
|
18
|
-
create(app, {
|
|
19
|
-
...config,
|
|
20
|
-
state,
|
|
21
|
-
dependencies,
|
|
22
|
-
components,
|
|
23
|
-
snippets,
|
|
24
|
-
pages,
|
|
25
|
-
functions,
|
|
26
|
-
methods,
|
|
27
|
-
designSystem,
|
|
28
|
-
files,
|
|
29
|
-
sharedLibraries,
|
|
30
|
-
envs
|
|
31
|
-
})
|
|
5
|
+
create(app, context)
|
package/symbols.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|