@covalent/components 4.12.3 → 4.13.0
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/codeSnippet.js +8 -0
- package/codeSnippet.js.LICENSE.txt +23 -0
- package/index.js +262 -256
- package/list.js +2 -2
- package/listCheckItem.js +2 -2
- package/listExpansion.js +2 -2
- package/listItem.js +2 -2
- package/listNavItem.js +2 -2
- package/listRadioItem.js +2 -2
- package/menu.js +3 -3
- package/package.json +1 -1
- package/select.js +3 -3
- package/slider.js +2 -2
- package/sliderRange.js +2 -2
- package/src/code-snippet/code-snippet.d.ts +20 -0
- package/src/index.d.ts +1 -0
- package/theme.css +1 -1
@@ -0,0 +1,23 @@
|
|
1
|
+
/**
|
2
|
+
* @license
|
3
|
+
* Copyright 2017 Google LLC
|
4
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
5
|
+
*/
|
6
|
+
|
7
|
+
/**
|
8
|
+
* @license
|
9
|
+
* Copyright 2018 Google LLC
|
10
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
11
|
+
*/
|
12
|
+
|
13
|
+
/**
|
14
|
+
* @license
|
15
|
+
* Copyright 2019 Google LLC
|
16
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
17
|
+
*/
|
18
|
+
|
19
|
+
/**
|
20
|
+
* @license
|
21
|
+
* Copyright 2021 Google LLC
|
22
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
23
|
+
*/
|