lupine.web 1.0.14 → 1.0.15
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/README.md +1 -1
- package/jsx-runtime/package.json +2 -2
- package/package.json +1 -1
- package/src/components/button-push-animation.tsx +1 -1
- package/src/components/button.tsx +1 -1
- package/src/components/popup-menu.tsx +1 -1
- package/src/components/toggle-base.tsx +1 -1
- package/src/components/toggle-switch.tsx +1 -1
- package/src/jsx.ts +1 -1
- package/tsconfig.json +2 -2
package/README.md
CHANGED
package/jsx-runtime/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"amdName": "jsxRuntime",
|
|
4
4
|
"version": "1.0.0",
|
|
5
5
|
"private": true,
|
|
6
|
-
"description": "
|
|
6
|
+
"description": "lupine.web JSX runtime",
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"module": "index.js",
|
|
9
9
|
"umd:main": "index.js",
|
|
@@ -11,6 +11,6 @@
|
|
|
11
11
|
"types": "src/index.d.ts",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"lupine.
|
|
14
|
+
"lupine.web": "^1.0.0"
|
|
15
15
|
}
|
|
16
16
|
}
|
package/package.json
CHANGED
package/src/jsx.ts
CHANGED
package/tsconfig.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"emitDecoratorMetadata": true /* Emit design-type metadata for decorated declarations in source files. */,
|
|
24
24
|
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
|
25
25
|
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
|
26
|
-
"jsxImportSource": "lupine.
|
|
26
|
+
"jsxImportSource": "lupine.web" /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */,
|
|
27
27
|
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
|
28
28
|
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
|
29
29
|
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
40
40
|
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
|
41
41
|
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
|
42
|
-
"types": ["node", "lupine.
|
|
42
|
+
"types": ["node", "lupine.web"],
|
|
43
43
|
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
44
44
|
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
|
45
45
|
// "resolveJsonModule": true /* Enable importing .json files. */,
|