Skip to content

Commit d788a49

Browse files
Release commit for 0.10.30-commonjs [ci skip]
0 parents  commit d788a49

File tree

2,113 files changed

+377516
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,113 files changed

+377516
-0
lines changed

.gitignore

+322
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,322 @@
1+
### Project files ###
2+
3+
# Only used for release server authentication
4+
/.npmrc
5+
6+
# React Storybook
7+
storybook/
8+
storybook-based-tests/
9+
10+
# Publishing and dist build
11+
.tmp*
12+
13+
# For build server. A copy of itself from master is pulled down in order to publish itself.
14+
design-system-react
15+
16+
# Allow custom pre-commit
17+
scripts/pre-commit.sh
18+
19+
# Visual diff images. These are the images that compare differences
20+
# in the current and previous capture
21+
__diff_output__
22+
23+
# Dev notes
24+
dev-notes.txt
25+
26+
# --- MACHINE GENERATED BELOW THIS LINE ---
27+
28+
### Node ###
29+
# Logs
30+
logs
31+
*.log
32+
npm-debug.log*
33+
yarn-debug.log*
34+
yarn-error.log*
35+
36+
# Runtime data
37+
pids
38+
*.pid
39+
*.seed
40+
*.pid.lock
41+
42+
# Directory for instrumented libs generated by jscoverage/JSCover
43+
lib-cov
44+
45+
# Coverage directory used by tools like istanbul
46+
coverage
47+
48+
# nyc test coverage
49+
.nyc_output
50+
51+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
52+
.grunt
53+
54+
# Bower dependency directory (https://bower.io/)
55+
bower_components
56+
57+
# node-waf configuration
58+
.lock-wscript
59+
60+
# Compiled binary addons (http://nodejs.org/api/addons.html)
61+
build/Release
62+
63+
# Dependency directories
64+
node_modules/
65+
jspm_packages/
66+
67+
# Typescript v1 declaration files
68+
typings/
69+
70+
# Optional npm cache directory
71+
.npm
72+
73+
# Optional eslint cache
74+
.eslintcache
75+
76+
# Optional REPL history
77+
.node_repl_history
78+
79+
# Output of 'npm pack'
80+
*.tgz
81+
82+
# Yarn Integrity file
83+
.yarn-integrity
84+
85+
# dotenv environment variables file
86+
.env
87+
88+
### Code ###
89+
# Visual Studio Code - https://code.visualstudio.com/
90+
.settings/
91+
.vscode/
92+
tsconfig.json
93+
jsconfig.json
94+
95+
### Emacs ###
96+
# -*- mode: gitignore; -*-
97+
*~
98+
\#*\#
99+
/.emacs.desktop
100+
/.emacs.desktop.lock
101+
*.elc
102+
auto-save-list
103+
tramp
104+
.\#*
105+
106+
# Org-mode
107+
.org-id-locations
108+
*_archive
109+
110+
# flymake-mode
111+
*_flymake.*
112+
113+
# eshell files
114+
/eshell/history
115+
/eshell/lastdir
116+
117+
# elpa packages
118+
/elpa/
119+
120+
# reftex files
121+
*.rel
122+
123+
# AUCTeX auto folder
124+
/auto/
125+
126+
# cask packages
127+
.cask/
128+
/dist/
129+
130+
# Flycheck
131+
flycheck_*.el
132+
133+
# server auth directory
134+
/server/
135+
136+
# projectiles files
137+
.projectile
138+
projectile-bookmarks.eld
139+
140+
# directory configuration
141+
.dir-locals.el
142+
143+
# saveplace
144+
places
145+
146+
# url cache
147+
url/cache/
148+
149+
# cedet
150+
ede-projects.el
151+
152+
# smex
153+
smex-items
154+
155+
# company-statistics
156+
company-statistics-cache.el
157+
158+
# anaconda-mode
159+
anaconda-mode/
160+
161+
### macOS ###
162+
*.DS_Store
163+
.AppleDouble
164+
.LSOverride
165+
166+
# Removed due to Icon component not working on NPM.
167+
# Icon must end with two \r
168+
# Icon
169+
170+
# Thumbnails
171+
._*
172+
173+
# Files that might appear in the root of a volume
174+
.DocumentRevisions-V100
175+
.fseventsd
176+
.Spotlight-V100
177+
.TemporaryItems
178+
.Trashes
179+
.VolumeIcon.icns
180+
.com.apple.timemachine.donotpresent
181+
182+
# Directories potentially created on remote AFP share
183+
.AppleDB
184+
.AppleDesktop
185+
Network Trash Folder
186+
Temporary Items
187+
.apdisk
188+
189+
### SublimeText ###
190+
# cache files for sublime text
191+
*.tmlanguage.cache
192+
*.tmPreferences.cache
193+
*.stTheme.cache
194+
195+
# workspace files are user-specific
196+
*.sublime-workspace
197+
198+
# project files should be checked into the repository, unless a significant
199+
# proportion of contributors will probably not be using SublimeText
200+
# *.sublime-project
201+
202+
# sftp configuration file
203+
sftp-config.json
204+
205+
# Package control specific files
206+
Package Control.last-run
207+
Package Control.ca-list
208+
Package Control.ca-bundle
209+
Package Control.system-ca-bundle
210+
Package Control.cache/
211+
Package Control.ca-certs/
212+
Package Control.merged-ca-bundle
213+
Package Control.user-ca-bundle
214+
oscrypto-ca-bundle.crt
215+
bh_unicode_properties.cache
216+
217+
# Sublime-github package stores a github token in this file
218+
# https://packagecontrol.io/packages/sublime-github
219+
GitHub.sublime-settings
220+
221+
### Vim ###
222+
# swap
223+
[._]*.s[a-v][a-z]
224+
[._]*.sw[a-p]
225+
[._]s[a-v][a-z]
226+
[._]sw[a-p]
227+
# session
228+
Session.vim
229+
# temporary
230+
.netrwhist
231+
# auto-generated tag files
232+
tags
233+
234+
### WebStorm ###
235+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
236+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
237+
238+
# User-specific stuff:
239+
.idea/**/workspace.xml
240+
.idea/**/tasks.xml
241+
.idea/dictionaries
242+
243+
# Sensitive or high-churn files:
244+
.idea/**/dataSources/
245+
.idea/**/dataSources.ids
246+
.idea/**/dataSources.xml
247+
.idea/**/dataSources.local.xml
248+
.idea/**/sqlDataSources.xml
249+
.idea/**/dynamic.xml
250+
.idea/**/uiDesigner.xml
251+
252+
# Gradle:
253+
.idea/**/gradle.xml
254+
.idea/**/libraries
255+
256+
# CMake
257+
cmake-build-debug/
258+
259+
# Mongo Explorer plugin:
260+
.idea/**/mongoSettings.xml
261+
262+
## File-based project format:
263+
*.iws
264+
265+
## Plugin-specific files:
266+
267+
# IntelliJ
268+
/out/
269+
270+
# mpeltonen/sbt-idea plugin
271+
.idea_modules/
272+
273+
# JIRA plugin
274+
atlassian-ide-plugin.xml
275+
276+
# Cursive Clojure plugin
277+
.idea/replstate.xml
278+
279+
# Ruby plugin and RubyMine
280+
/.rakeTasks
281+
282+
# Crashlytics plugin (for Android Studio and IntelliJ)
283+
com_crashlytics_export_strings.xml
284+
crashlytics.properties
285+
crashlytics-build.properties
286+
fabric.properties
287+
288+
### WebStorm Patch ###
289+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
290+
291+
# *.iml
292+
# modules.xml
293+
# .idea/misc.xml
294+
# *.ipr
295+
296+
# Sonarlint plugin
297+
.idea/sonarlint
298+
299+
### Windows ###
300+
# Windows thumbnail cache files
301+
Thumbs.db
302+
ehthumbs.db
303+
ehthumbs_vista.db
304+
305+
# Folder config file
306+
Desktop.ini
307+
308+
# Recycle Bin used on file shares
309+
$RECYCLE.BIN/
310+
311+
# Windows Installer files
312+
*.cab
313+
*.msi
314+
*.msm
315+
*.msp
316+
317+
# Windows shortcuts
318+
*.lnk
319+
320+
# Intellij IDE
321+
.idea/*
322+
*.iml

LICENSE.txt

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Copyright (c) 2015-present, Salesforce.com, Inc.
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
* Redistributions of source code must retain the above copyright
7+
notice, this list of conditions and the following disclaimer.
8+
* Redistributions in binary form must reproduce the above copyright
9+
notice, this list of conditions and the following disclaimer in the
10+
documentation and/or other materials provided with the distribution.
11+
* Neither the name of the Salesforce.com nor the
12+
names of its contributors may be used to endorse or promote products
13+
derived from this software without specific prior written permission.
14+
15+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18+
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
19+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)