web-input-material 0.0.403 → 0.0.404
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/components/CircularSpinner.bundle.js +176 -16
- package/components/CircularSpinner.js +1 -1
- package/components/FileInput.bundle.js +344 -53
- package/components/FileInput.js +1 -1
- package/components/GenericAnimate.bundle.js +8 -8
- package/components/GenericInputs.bundle.js +344 -53
- package/components/GenericInputs.js +1 -1
- package/components/RequireableCheckbox.bundle.js +201 -33
- package/components/RequireableCheckbox.js +1 -1
- package/components/SliderInput.bundle.js +247 -18
- package/components/SliderInput.js +1 -1
- package/components/Tabs.bundle.js +148 -29
- package/components/Tabs.js +1 -1
- package/components/TextInput.bundle.js +489 -0
- package/components/TextInput.d.ts +4 -0
- package/components/TextInput.js +1 -0
- package/components/{GenericInput.ts → TextInput.ts} +7 -8
- package/index.bundle.js +373 -75
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +6 -4
- package/components/GenericInput.bundle.js +0 -198
- package/components/GenericInput.d.ts +0 -4
- package/components/GenericInput.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-input-material",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.404",
|
|
4
4
|
"description": "Reusable material design based input field with support for (richt-)text, code, selections, numbers, dates and so on.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"form-field",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"update:documentation": "documentation-website",
|
|
64
64
|
"watch": "weboptimizer build --watch"
|
|
65
65
|
},
|
|
66
|
-
"runkitExample": "require('@babel/runtime/package.json')\n\nglobalThis.window = globalThis\n\nconst {
|
|
66
|
+
"runkitExample": "require('@babel/runtime/package.json')\n\nglobalThis.window = globalThis\n\nconst {TextInput} = require('web-input-material')\n\nTextInput.component._name",
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"prop-types": "*",
|
|
69
69
|
"react": "*",
|
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
"@rmwc/textfield": "*",
|
|
89
89
|
"@rmwc/theme": "*",
|
|
90
90
|
"@rmwc/tooltip": "*",
|
|
91
|
+
"@rmwc/touch-target": "*",
|
|
91
92
|
"@rmwc/typography": "*",
|
|
92
93
|
"@tinymce/tinymce-react": "*",
|
|
93
94
|
"@types/ejs": "*",
|
|
@@ -111,6 +112,7 @@
|
|
|
111
112
|
"identity-obj-proxy": "*",
|
|
112
113
|
"jest": "*",
|
|
113
114
|
"jsdoc": "*",
|
|
115
|
+
"material-components-web": "*",
|
|
114
116
|
"material-icons": "*",
|
|
115
117
|
"react-ace": "*",
|
|
116
118
|
"react-generic-animate": "*",
|
|
@@ -160,7 +162,7 @@
|
|
|
160
162
|
},
|
|
161
163
|
"injection": {
|
|
162
164
|
"entry": {
|
|
163
|
-
"__evaluate__": "2 < self.givenCommandLineArguments.length && self.givenCommandLineArguments[2].startsWith('test') ? {testBundle: './test.ts'} : 2 < self.givenCommandLineArguments.length && self.givenCommandLineArguments[2] === 'serve' ? {clientnode: 'clientnode', index: './index'} : {'./components/CircularSpinner': './components/CircularSpinner', './components/FileInput': './components/FileInput', './components/GenericAnimate': './components/GenericAnimate', './components/
|
|
165
|
+
"__evaluate__": "2 < self.givenCommandLineArguments.length && self.givenCommandLineArguments[2].startsWith('test') ? {testBundle: './test.ts'} : 2 < self.givenCommandLineArguments.length && self.givenCommandLineArguments[2] === 'serve' ? {clientnode: 'clientnode', index: './index'} : {'./components/CircularSpinner': './components/CircularSpinner', './components/FileInput': './components/FileInput', './components/GenericAnimate': './components/GenericAnimate', './components/TextInput': './components/TextInput', './components/GenericInputs': './components/GenericInputs', './components/Tabs': ['./components/TabItem', './components/TabBar'], './components/RequireableCheckbox': './components/RequireableCheckbox', './components/SliderInput': './components/SliderInput', index: './index'}"
|
|
164
166
|
},
|
|
165
167
|
"external": {
|
|
166
168
|
"implicit": {
|
|
@@ -255,7 +257,7 @@
|
|
|
255
257
|
},
|
|
256
258
|
"injection": {
|
|
257
259
|
"entry": {
|
|
258
|
-
"__evaluate__": "{'./components/
|
|
260
|
+
"__evaluate__": "{'./components/TextInput': './components/TextInput'}"
|
|
259
261
|
}
|
|
260
262
|
}
|
|
261
263
|
}
|