profinansy-ui-lib 3.5.83 → 3.5.85
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/dist/components/uikit/Datepicker/Datepicker.d.ts +0 -1
- package/dist/components/uikit/Datepicker/components/Input/Input.styled.d.ts +1 -0
- package/dist/components/uikit/Input/Input.styled.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1358 -223
- package/dist/index.js.LICENSE.txt +16 -0
- package/package.json +1 -1
- package/dist/components/uikit/DatepickerTest/Datepicker.d.ts +0 -2
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
http://jedwatson.github.io/classnames
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
+
/*!
|
|
8
|
+
react-datepicker v7.6.0
|
|
9
|
+
https://github.com/Hacker0x01/react-datepicker
|
|
10
|
+
Released under the MIT License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
7
13
|
/*!
|
|
8
14
|
* tabbable 6.2.0
|
|
9
15
|
* @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
|
|
@@ -104,6 +110,16 @@
|
|
|
104
110
|
* LICENSE file in the root directory of this source tree.
|
|
105
111
|
*/
|
|
106
112
|
|
|
113
|
+
/**
|
|
114
|
+
* @license React
|
|
115
|
+
* react-jsx-runtime.production.min.js
|
|
116
|
+
*
|
|
117
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
118
|
+
*
|
|
119
|
+
* This source code is licensed under the MIT license found in the
|
|
120
|
+
* LICENSE file in the root directory of this source tree.
|
|
121
|
+
*/
|
|
122
|
+
|
|
107
123
|
/**
|
|
108
124
|
* @license React
|
|
109
125
|
* scheduler.production.min.js
|
package/package.json
CHANGED