web-input-material 0.0.293 → 0.0.296

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-input-material",
3
- "version": "0.0.293",
3
+ "version": "0.0.296",
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",
@@ -17,7 +17,6 @@
17
17
  "url": "https://github.com/thaibault/web-input-material/issues"
18
18
  },
19
19
  "license": "CC-BY-3.0",
20
- "main": "index.js",
21
20
  "author": {
22
21
  "name": "Torben Sickert",
23
22
  "email": "info@torben.website",
@@ -51,6 +50,7 @@
51
50
  "patch": "for path in patches/*.patch; do target_file_path=\"$(echo \"$path\" | sed --regexp-extended 's/patches\\/([^/]+).patch$/\\1/' | sed 's:\\+:/:g')\"; source_file_path=\"$path\"; echo \"Patch file \\\"$target_file_path\\\" with \\\"$source_file_path\\\".\"; patch --forward --input \"$source_file_path\" --reject-file - \"$target_file_path\"; done; true",
52
51
  "prepare": "yarn build",
53
52
  "postinstall": "yarn patch || true",
53
+ "postversion": "yarn publish --non-interactive; git push --tags && git push",
54
54
  "serve": "weboptimizer serve",
55
55
  "serve:minimal": "weboptimizer serve '{__reference__: \"target:minimal\"}'",
56
56
  "start": "yarn serve",
@@ -58,7 +58,7 @@
58
58
  "test:browser": "yarn clear && weboptimizer test:browser",
59
59
  "test:coverage": "weboptimizer test:coverage",
60
60
  "test:coverage:report": "weboptimizer test:coverage:report",
61
- "update": "yarn version --patch && yarn publish",
61
+ "update": "yarn version --patch",
62
62
  "update:documentation": "documentation-website",
63
63
  "watch": "weboptimizer build --watch"
64
64
  },
@@ -230,12 +230,12 @@
230
230
  "#5": "react-useanimations$: false",
231
231
  "#6": "react-useanimations/lib/lock$: false",
232
232
  "#7": "react-useanimations/lib/plusToX$: false",
233
- "ace-builds$": "react-input-material/components/Dummy",
234
- "@tinymce/tinymce-react$": "react-input-material/components/Dummy",
235
- "react-ace$": "react-input-material/components/Dummy",
236
- "react-useanimations$": "react-input-material/components/Dummy",
237
- "react-useanimations/lib/lock$": "react-input-material/components/Dummy",
238
- "react-useanimations/lib/plusToX$": "react-input-material/components/Dummy"
233
+ "ace-builds$": "react-input-material/dist/components/Dummy",
234
+ "@tinymce/tinymce-react$": "react-input-material/dist/components/Dummy",
235
+ "react-ace$": "react-input-material/dist/components/Dummy",
236
+ "react-useanimations$": "react-input-material/dist/components/Dummy",
237
+ "react-useanimations/lib/lock$": "react-input-material/dist/components/Dummy",
238
+ "react-useanimations/lib/plusToX$": "react-input-material/dist/components/Dummy"
239
239
  }
240
240
  }
241
241
  },
package/type.d.ts CHANGED
@@ -1 +1 @@
1
- export type { BaseModel, CommonBaseModel, CommonModel, BaseProperties, BaseProps, Properties, Props, TypedProperties, DefaultBaseProperties, DefaultProperties, GenericEvent, Model, ModelState, EditorState, State, ValueState, StaticComponent, StaticFunctionComponent, StaticWebComponent } from 'react-input-material/type';
1
+ export type { BaseModel, CommonBaseModel, CommonModel, BaseProperties, BaseProps, Properties, Props, TypedProperties, DefaultBaseProperties, DefaultProperties, GenericEvent, Model, ModelState, EditorState, State, ValueState, StaticComponent, StaticFunctionComponent, StaticWebComponent } from 'react-input-material/dist/type';