@wavelengthusaf/components 1.0.1 → 1.0.3
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/README.md +4 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -250
package/README.md
CHANGED
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/functions/math.ts","../src/functions/string.ts"],"sourcesContent":["export * from './functions/math';\nexport * from './functions/string';\n\n/**\n * Helper Functions\n * @param a \n * @param b \n * @returns \n */\nexport function helloworld() {\n console.log(\"Hello World\");\n}\n ","\n/**\n * Helper Functions\n * @param a \n * @param b \n * @returns \n */\nexport function add(a: number, b: number): number {\n return a + b
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/functions/math.ts","../src/functions/string.ts"],"sourcesContent":["export * from './functions/math';\nexport * from './functions/string';\n\n/**\n * Helper Functions\n * @param a \n * @param b \n * @returns \n */\nexport function helloworld() {\n console.log(\"Hello World\");\n}\n ","\n/**\n * Helper Functions\n * @param a \n * @param b \n * @returns \n */\nexport function add(a: number, b: number): number {\n return a + b;\n }\n ","\n/**\n * Helper Functions\n * @param a \n * @param b \n * @returns \n */\nexport function concat(a: string, b: string): string {\n return a + b;\n }\n "],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACOO,SAAS,IAAI,GAAW,GAAmB;AAC9C,SAAO,IAAI;AACb;;;ACFK,SAAS,OAAO,GAAW,GAAmB;AACjD,SAAO,IAAI;AACb;;;AFAK,SAAS,aAAa;AAC3B,UAAQ,IAAI,aAAa;AAC3B;","names":[]}
|
package/dist/index.mjs
CHANGED
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/functions/math.ts","../src/functions/string.ts","../src/index.ts"],"sourcesContent":["\n/**\n * Helper Functions\n * @param a \n * @param b \n * @returns \n */\nexport function add(a: number, b: number): number {\n return a + b
|
|
1
|
+
{"version":3,"sources":["../src/functions/math.ts","../src/functions/string.ts","../src/index.ts"],"sourcesContent":["\n/**\n * Helper Functions\n * @param a \n * @param b \n * @returns \n */\nexport function add(a: number, b: number): number {\n return a + b;\n }\n ","\n/**\n * Helper Functions\n * @param a \n * @param b \n * @returns \n */\nexport function concat(a: string, b: string): string {\n return a + b;\n }\n ","export * from './functions/math';\nexport * from './functions/string';\n\n/**\n * Helper Functions\n * @param a \n * @param b \n * @returns \n */\nexport function helloworld() {\n console.log(\"Hello World\");\n}\n "],"mappings":";AAOO,SAAS,IAAI,GAAW,GAAmB;AAC9C,SAAO,IAAI;AACb;;;ACFK,SAAS,OAAO,GAAW,GAAmB;AACjD,SAAO,IAAI;AACb;;;ACAK,SAAS,aAAa;AAC3B,UAAQ,IAAI,aAAa;AAC3B;","names":[]}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@wavelengthusaf/components",
|
|
3
3
|
"author": "563 EWS - Wavelength",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.3",
|
|
6
6
|
"description": "Common component library used by Wavelength developers",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"module": "./dist/index.mjs",
|
|
@@ -31,254 +31,5 @@
|
|
|
31
31
|
},
|
|
32
32
|
"directories": {
|
|
33
33
|
"test": "tests"
|
|
34
|
-
},
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"acorn": "^8.11.3",
|
|
37
|
-
"acorn-walk": "^8.3.2",
|
|
38
|
-
"ansi-escapes": "^4.3.2",
|
|
39
|
-
"ansi-regex": "^5.0.1",
|
|
40
|
-
"ansi-styles": "^4.3.0",
|
|
41
|
-
"any-promise": "^1.3.0",
|
|
42
|
-
"anymatch": "^3.1.3",
|
|
43
|
-
"arg": "^4.1.3",
|
|
44
|
-
"argparse": "^1.0.10",
|
|
45
|
-
"array-union": "^2.1.0",
|
|
46
|
-
"babel-jest": "^29.7.0",
|
|
47
|
-
"babel-plugin-istanbul": "^6.1.1",
|
|
48
|
-
"babel-plugin-jest-hoist": "^29.6.3",
|
|
49
|
-
"babel-preset-current-node-syntax": "^1.0.1",
|
|
50
|
-
"babel-preset-jest": "^29.6.3",
|
|
51
|
-
"balanced-match": "^1.0.2",
|
|
52
|
-
"binary-extensions": "^2.2.0",
|
|
53
|
-
"brace-expansion": "^1.1.11",
|
|
54
|
-
"braces": "^3.0.2",
|
|
55
|
-
"browserslist": "^4.22.3",
|
|
56
|
-
"bs-logger": "^0.2.6",
|
|
57
|
-
"bser": "^2.1.1",
|
|
58
|
-
"buffer-from": "^1.1.2",
|
|
59
|
-
"bundle-require": "^4.0.2",
|
|
60
|
-
"cac": "^6.7.14",
|
|
61
|
-
"callsites": "^3.1.0",
|
|
62
|
-
"camelcase": "^5.3.1",
|
|
63
|
-
"caniuse-lite": "^1.0.30001582",
|
|
64
|
-
"chalk": "^4.1.2",
|
|
65
|
-
"char-regex": "^1.0.2",
|
|
66
|
-
"chokidar": "^3.5.3",
|
|
67
|
-
"ci-info": "^3.9.0",
|
|
68
|
-
"cjs-module-lexer": "^1.2.3",
|
|
69
|
-
"cliui": "^8.0.1",
|
|
70
|
-
"co": "^4.6.0",
|
|
71
|
-
"collect-v8-coverage": "^1.0.2",
|
|
72
|
-
"color-convert": "^2.0.1",
|
|
73
|
-
"color-name": "^1.1.4",
|
|
74
|
-
"commander": "^4.1.1",
|
|
75
|
-
"concat-map": "^0.0.1",
|
|
76
|
-
"convert-source-map": "^2.0.0",
|
|
77
|
-
"create-jest": "^29.7.0",
|
|
78
|
-
"create-require": "^1.1.1",
|
|
79
|
-
"cross-spawn": "^7.0.3",
|
|
80
|
-
"debug": "^4.3.4",
|
|
81
|
-
"dedent": "^1.5.1",
|
|
82
|
-
"deepmerge": "^4.3.1",
|
|
83
|
-
"detect-newline": "^3.1.0",
|
|
84
|
-
"diff": "^4.0.2",
|
|
85
|
-
"diff-sequences": "^29.6.3",
|
|
86
|
-
"dir-glob": "^3.0.1",
|
|
87
|
-
"eastasianwidth": "^0.2.0",
|
|
88
|
-
"electron-to-chromium": "^1.4.653",
|
|
89
|
-
"emittery": "^0.13.1",
|
|
90
|
-
"emoji-regex": "^8.0.0",
|
|
91
|
-
"error-ex": "^1.3.2",
|
|
92
|
-
"esbuild": "^0.19.12",
|
|
93
|
-
"escalade": "^3.1.1",
|
|
94
|
-
"escape-string-regexp": "^2.0.0",
|
|
95
|
-
"esprima": "^4.0.1",
|
|
96
|
-
"execa": "^5.1.1",
|
|
97
|
-
"exit": "^0.1.2",
|
|
98
|
-
"expect": "^29.7.0",
|
|
99
|
-
"fast-glob": "^3.3.2",
|
|
100
|
-
"fast-json-stable-stringify": "^2.1.0",
|
|
101
|
-
"fastq": "^1.17.0",
|
|
102
|
-
"fb-watchman": "^2.0.2",
|
|
103
|
-
"fill-range": "^7.0.1",
|
|
104
|
-
"find-up": "^4.1.0",
|
|
105
|
-
"foreground-child": "^3.1.1",
|
|
106
|
-
"fs.realpath": "^1.0.0",
|
|
107
|
-
"fsevents": "^2.3.3",
|
|
108
|
-
"function-bind": "^1.1.2",
|
|
109
|
-
"gensync": "^1.0.0-beta.2",
|
|
110
|
-
"get-caller-file": "^2.0.5",
|
|
111
|
-
"get-package-type": "^0.1.0",
|
|
112
|
-
"get-stream": "^6.0.1",
|
|
113
|
-
"glob": "^7.2.3",
|
|
114
|
-
"glob-parent": "^5.1.2",
|
|
115
|
-
"globals": "^11.12.0",
|
|
116
|
-
"globby": "^11.1.0",
|
|
117
|
-
"graceful-fs": "^4.2.11",
|
|
118
|
-
"has-flag": "^4.0.0",
|
|
119
|
-
"hasown": "^2.0.0",
|
|
120
|
-
"html-escaper": "^2.0.2",
|
|
121
|
-
"human-signals": "^2.1.0",
|
|
122
|
-
"ignore": "^5.3.1",
|
|
123
|
-
"import-local": "^3.1.0",
|
|
124
|
-
"imurmurhash": "^0.1.4",
|
|
125
|
-
"inflight": "^1.0.6",
|
|
126
|
-
"inherits": "^2.0.4",
|
|
127
|
-
"is-arrayish": "^0.2.1",
|
|
128
|
-
"is-binary-path": "^2.1.0",
|
|
129
|
-
"is-core-module": "^2.13.1",
|
|
130
|
-
"is-extglob": "^2.1.1",
|
|
131
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
132
|
-
"is-generator-fn": "^2.1.0",
|
|
133
|
-
"is-glob": "^4.0.3",
|
|
134
|
-
"is-number": "^7.0.0",
|
|
135
|
-
"is-stream": "^2.0.1",
|
|
136
|
-
"isexe": "^2.0.0",
|
|
137
|
-
"istanbul-lib-coverage": "^3.2.2",
|
|
138
|
-
"istanbul-lib-instrument": "^6.0.1",
|
|
139
|
-
"istanbul-lib-report": "^3.0.1",
|
|
140
|
-
"istanbul-lib-source-maps": "^4.0.1",
|
|
141
|
-
"istanbul-reports": "^3.1.6",
|
|
142
|
-
"jackspeak": "^2.3.6",
|
|
143
|
-
"jest-changed-files": "^29.7.0",
|
|
144
|
-
"jest-circus": "^29.7.0",
|
|
145
|
-
"jest-cli": "^29.7.0",
|
|
146
|
-
"jest-config": "^29.7.0",
|
|
147
|
-
"jest-diff": "^29.7.0",
|
|
148
|
-
"jest-docblock": "^29.7.0",
|
|
149
|
-
"jest-each": "^29.7.0",
|
|
150
|
-
"jest-environment-node": "^29.7.0",
|
|
151
|
-
"jest-get-type": "^29.6.3",
|
|
152
|
-
"jest-haste-map": "^29.7.0",
|
|
153
|
-
"jest-leak-detector": "^29.7.0",
|
|
154
|
-
"jest-matcher-utils": "^29.7.0",
|
|
155
|
-
"jest-message-util": "^29.7.0",
|
|
156
|
-
"jest-mock": "^29.7.0",
|
|
157
|
-
"jest-pnp-resolver": "^1.2.3",
|
|
158
|
-
"jest-regex-util": "^29.6.3",
|
|
159
|
-
"jest-resolve": "^29.7.0",
|
|
160
|
-
"jest-resolve-dependencies": "^29.7.0",
|
|
161
|
-
"jest-runner": "^29.7.0",
|
|
162
|
-
"jest-runtime": "^29.7.0",
|
|
163
|
-
"jest-snapshot": "^29.7.0",
|
|
164
|
-
"jest-util": "^29.7.0",
|
|
165
|
-
"jest-validate": "^29.7.0",
|
|
166
|
-
"jest-watcher": "^29.7.0",
|
|
167
|
-
"jest-worker": "^29.7.0",
|
|
168
|
-
"joycon": "^3.1.1",
|
|
169
|
-
"js-tokens": "^4.0.0",
|
|
170
|
-
"js-yaml": "^3.14.1",
|
|
171
|
-
"jsesc": "^2.5.2",
|
|
172
|
-
"json-parse-even-better-errors": "^2.3.1",
|
|
173
|
-
"json5": "^2.2.3",
|
|
174
|
-
"kleur": "^3.0.3",
|
|
175
|
-
"leven": "^3.1.0",
|
|
176
|
-
"lilconfig": "^3.0.0",
|
|
177
|
-
"lines-and-columns": "^1.2.4",
|
|
178
|
-
"load-tsconfig": "^0.2.5",
|
|
179
|
-
"locate-path": "^5.0.0",
|
|
180
|
-
"lodash.memoize": "^4.1.2",
|
|
181
|
-
"lodash.sortby": "^4.7.0",
|
|
182
|
-
"lru-cache": "^5.1.1",
|
|
183
|
-
"make-dir": "^4.0.0",
|
|
184
|
-
"make-error": "^1.3.6",
|
|
185
|
-
"makeerror": "^1.0.12",
|
|
186
|
-
"merge-stream": "^2.0.0",
|
|
187
|
-
"merge2": "^1.4.1",
|
|
188
|
-
"micromatch": "^4.0.5",
|
|
189
|
-
"mimic-fn": "^2.1.0",
|
|
190
|
-
"minimatch": "^3.1.2",
|
|
191
|
-
"minipass": "^7.0.4",
|
|
192
|
-
"ms": "^2.1.2",
|
|
193
|
-
"mz": "^2.7.0",
|
|
194
|
-
"natural-compare": "^1.4.0",
|
|
195
|
-
"node-int64": "^0.4.0",
|
|
196
|
-
"node-releases": "^2.0.14",
|
|
197
|
-
"normalize-path": "^3.0.0",
|
|
198
|
-
"npm-run-path": "^4.0.1",
|
|
199
|
-
"object-assign": "^4.1.1",
|
|
200
|
-
"once": "^1.4.0",
|
|
201
|
-
"onetime": "^5.1.2",
|
|
202
|
-
"p-limit": "^3.1.0",
|
|
203
|
-
"p-locate": "^4.1.0",
|
|
204
|
-
"p-try": "^2.2.0",
|
|
205
|
-
"parse-json": "^5.2.0",
|
|
206
|
-
"path-exists": "^4.0.0",
|
|
207
|
-
"path-is-absolute": "^1.0.1",
|
|
208
|
-
"path-key": "^3.1.1",
|
|
209
|
-
"path-parse": "^1.0.7",
|
|
210
|
-
"path-scurry": "^1.10.1",
|
|
211
|
-
"path-type": "^4.0.0",
|
|
212
|
-
"picocolors": "^1.0.0",
|
|
213
|
-
"picomatch": "^2.3.1",
|
|
214
|
-
"pirates": "^4.0.6",
|
|
215
|
-
"pkg-dir": "^4.2.0",
|
|
216
|
-
"postcss-load-config": "^4.0.2",
|
|
217
|
-
"pretty-format": "^29.7.0",
|
|
218
|
-
"prompts": "^2.4.2",
|
|
219
|
-
"punycode": "^2.3.1",
|
|
220
|
-
"pure-rand": "^6.0.4",
|
|
221
|
-
"queue-microtask": "^1.2.3",
|
|
222
|
-
"react-is": "^18.2.0",
|
|
223
|
-
"readdirp": "^3.6.0",
|
|
224
|
-
"require-directory": "^2.1.1",
|
|
225
|
-
"resolve": "^1.22.8",
|
|
226
|
-
"resolve-cwd": "^3.0.0",
|
|
227
|
-
"resolve-from": "^5.0.0",
|
|
228
|
-
"resolve.exports": "^2.0.2",
|
|
229
|
-
"reusify": "^1.0.4",
|
|
230
|
-
"rollup": "^4.9.6",
|
|
231
|
-
"run-parallel": "^1.2.0",
|
|
232
|
-
"semver": "^6.3.1",
|
|
233
|
-
"shebang-command": "^2.0.0",
|
|
234
|
-
"shebang-regex": "^3.0.0",
|
|
235
|
-
"signal-exit": "^3.0.7",
|
|
236
|
-
"sisteransi": "^1.0.5",
|
|
237
|
-
"slash": "^3.0.0",
|
|
238
|
-
"source-map": "^0.6.1",
|
|
239
|
-
"source-map-support": "^0.5.13",
|
|
240
|
-
"sprintf-js": "^1.0.3",
|
|
241
|
-
"stack-utils": "^2.0.6",
|
|
242
|
-
"string-length": "^4.0.2",
|
|
243
|
-
"string-width": "^4.2.3",
|
|
244
|
-
"string-width-cjs": "^5.1.1",
|
|
245
|
-
"strip-ansi": "^6.0.1",
|
|
246
|
-
"strip-ansi-cjs": "^6.0.1",
|
|
247
|
-
"strip-bom": "^4.0.0",
|
|
248
|
-
"strip-final-newline": "^2.0.0",
|
|
249
|
-
"strip-json-comments": "^3.1.1",
|
|
250
|
-
"sucrase": "^3.35.0",
|
|
251
|
-
"supports-color": "^7.2.0",
|
|
252
|
-
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
253
|
-
"test-exclude": "^6.0.0",
|
|
254
|
-
"thenify": "^3.3.1",
|
|
255
|
-
"thenify-all": "^1.6.0",
|
|
256
|
-
"tmpl": "^1.0.5",
|
|
257
|
-
"to-fast-properties": "^2.0.0",
|
|
258
|
-
"to-regex-range": "^5.0.1",
|
|
259
|
-
"tr46": "^1.0.1",
|
|
260
|
-
"tree-kill": "^1.2.2",
|
|
261
|
-
"ts-interface-checker": "^0.1.13",
|
|
262
|
-
"type-detect": "^4.0.8",
|
|
263
|
-
"type-fest": "^0.21.3",
|
|
264
|
-
"undici-types": "^5.26.5",
|
|
265
|
-
"update-browserslist-db": "^1.0.13",
|
|
266
|
-
"v8-compile-cache-lib": "^3.0.1",
|
|
267
|
-
"v8-to-istanbul": "^9.2.0",
|
|
268
|
-
"walker": "^1.0.8",
|
|
269
|
-
"webidl-conversions": "^4.0.2",
|
|
270
|
-
"whatwg-url": "^7.1.0",
|
|
271
|
-
"which": "^2.0.2",
|
|
272
|
-
"wrap-ansi": "^7.0.0",
|
|
273
|
-
"wrap-ansi-cjs": "^7.0.0",
|
|
274
|
-
"wrappy": "^1.0.2",
|
|
275
|
-
"write-file-atomic": "^4.0.2",
|
|
276
|
-
"y18n": "^5.0.8",
|
|
277
|
-
"yallist": "^3.1.1",
|
|
278
|
-
"yaml": "^2.3.4",
|
|
279
|
-
"yargs": "^17.7.2",
|
|
280
|
-
"yargs-parser": "^21.1.1",
|
|
281
|
-
"yn": "^3.1.1",
|
|
282
|
-
"yocto-queue": "^0.1.0"
|
|
283
34
|
}
|
|
284
35
|
}
|