@leuffen/themejs1 8.1.10 → 8.1.11

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.
Files changed (56) hide show
  1. package/package.json +6 -32
  2. package/tsconfig.json +3 -3
  3. package/{dist/webpack.config.js → webpack.config.js} +18 -7
  4. package/dist/embed.d.ts +0 -1
  5. package/dist/index.d.ts +0 -6
  6. package/dist/index.dev.d.ts +0 -4
  7. package/dist/webpack.config.d.ts +0 -55
  8. /package/{dist/elements → elements}/button-group/button-group.d.ts +0 -0
  9. /package/{dist/elements → elements}/button-group/button-group.js +0 -0
  10. /package/{dist/elements → elements}/e-form/e-form.d.ts +0 -0
  11. /package/{dist/elements → elements}/e-form/e-form.js +0 -0
  12. /package/{dist/elements → elements}/elements.d.ts +0 -0
  13. /package/{dist/elements → elements}/elements.js +0 -0
  14. /package/{dist/elements → elements}/hero-slide/hero-slide.d.ts +0 -0
  15. /package/{dist/elements → elements}/hero-slide/hero-slide.js +0 -0
  16. /package/{dist/embed.js → embed.js} +0 -0
  17. /package/{dist/index.dev.js → index.dev.js} +0 -0
  18. /package/{dist/index.js → index.js} +0 -0
  19. /package/{dist/sections → sections}/cta-base/cta-base.d.ts +0 -0
  20. /package/{dist/sections → sections}/cta-base/cta-base.js +0 -0
  21. /package/{dist/sections → sections}/cta-form/cta-form.d.ts +0 -0
  22. /package/{dist/sections → sections}/cta-form/cta-form.js +0 -0
  23. /package/{dist/sections → sections}/footer-base/footer-base.d.ts +0 -0
  24. /package/{dist/sections → sections}/footer-base/footer-base.js +0 -0
  25. /package/{dist/sections → sections}/hero-max/hero-max.d.ts +0 -0
  26. /package/{dist/sections → sections}/hero-max/hero-max.js +0 -0
  27. /package/{dist/sections → sections}/hero-ribbon/hero-ribbon.d.ts +0 -0
  28. /package/{dist/sections → sections}/hero-ribbon/hero-ribbon.js +0 -0
  29. /package/{dist/sections → sections}/hero-title-small/hero-title-small.d.ts +0 -0
  30. /package/{dist/sections → sections}/hero-title-small/hero-title-small.js +0 -0
  31. /package/{dist/sections → sections}/image-gallery1/image-gallery1.d.ts +0 -0
  32. /package/{dist/sections → sections}/image-gallery1/image-gallery1.js +0 -0
  33. /package/{dist/sections → sections}/infobox/infobox.d.ts +0 -0
  34. /package/{dist/sections → sections}/infobox/infobox.js +0 -0
  35. /package/{dist/sections → sections}/navbar-blox/navbar-blox.d.ts +0 -0
  36. /package/{dist/sections → sections}/navbar-blox/navbar-blox.js +0 -0
  37. /package/{dist/sections → sections}/navbar-centerlogo/navbar-centerlogo.d.ts +0 -0
  38. /package/{dist/sections → sections}/navbar-centerlogo/navbar-centerlogo.js +0 -0
  39. /package/{dist/sections → sections}/navbar-switch2/navbar-switch2.d.ts +0 -0
  40. /package/{dist/sections → sections}/navbar-switch2/navbar-switch2.js +0 -0
  41. /package/{dist/sections → sections}/sec-card-2col/sec-card-2col.d.ts +0 -0
  42. /package/{dist/sections → sections}/sec-card-2col/sec-card-2col.js +0 -0
  43. /package/{dist/sections → sections}/sec-card-feature/sec-card-feature.d.ts +0 -0
  44. /package/{dist/sections → sections}/sec-card-feature/sec-card-feature.js +0 -0
  45. /package/{dist/sections → sections}/sec-legal-content/sec-legal-content.d.ts +0 -0
  46. /package/{dist/sections → sections}/sec-legal-content/sec-legal-content.js +0 -0
  47. /package/{dist/sections → sections}/sec-multi-card/sec-multi-card.d.ts +0 -0
  48. /package/{dist/sections → sections}/sec-multi-card/sec-multi-card.js +0 -0
  49. /package/{dist/sections → sections}/sec-testimonial-ribbon/sec-testimonial-ribbon.d.ts +0 -0
  50. /package/{dist/sections → sections}/sec-testimonial-ribbon/sec-testimonial-ribbon.js +0 -0
  51. /package/{dist/sections → sections}/sections.d.ts +0 -0
  52. /package/{dist/sections → sections}/sections.js +0 -0
  53. /package/{dist/sections → sections}/subheader/subheader.d.ts +0 -0
  54. /package/{dist/sections → sections}/subheader/subheader.js +0 -0
  55. /package/{dist/themes → themes}/theme1/theme1.dev.d.ts +0 -0
  56. /package/{dist/themes → themes}/theme1/theme1.dev.js +0 -0
package/package.json CHANGED
@@ -1,38 +1,11 @@
1
1
  {
2
2
  "name": "@leuffen/themejs1",
3
- "version": "8.1.10",
3
+ "version": "8.1.11",
4
4
  "description": "",
5
5
  "license": "proprietary",
6
- "main": "./dist/index.js",
7
- "module": "./dist/index.js",
8
- "exports": {
9
- ".": [
10
- "./dist/index.js",
11
- "./index.ts",
12
- "./index.scss"
13
- ],
14
- "./index": [
15
- "./dist/index.js",
16
- "./index.ts",
17
- "./index.scss"
18
- ],
19
- "./embed": [
20
- "./dist/embed.js",
21
- "./embed.ts",
22
- "./embed.scss"
23
- ],
24
- "./index.dev": [
25
- "./dist/index.dev.js"
26
- ],
27
- "./late": [
28
- "./late.scss"
29
- ],
30
- "./theme1": [
31
- "./theme1.scss"
32
- ],
33
- "./themes/": "./themes/",
34
- "./font/": "./font/"
35
- },
6
+ "main": "./index.js",
7
+ "module": "./index.js",
8
+
36
9
  "directories": {
37
10
  "doc": "docs",
38
11
  "themes": "themes"
@@ -48,7 +21,8 @@
48
21
  "/sections",
49
22
  "/_tpl",
50
23
  "*.scss",
51
- "*.json"
24
+ "*.json",
25
+ "*.js"
52
26
  ],
53
27
  "workspaces": [
54
28
  "workspaces/*"
package/tsconfig.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "outDir": "./dist/",
3
+ "outDir": "./",
4
4
  "noImplicitAny": false,
5
5
  "declaration": true,
6
6
  "module": "es6",
@@ -20,8 +20,8 @@
20
20
  },
21
21
  "include": [
22
22
  "src/**/*",
23
- "workspaces/**/*",
24
- "*"
23
+
24
+ "*.ts"
25
25
  ],
26
26
  "exclude": [
27
27
  "./test"
@@ -1,9 +1,12 @@
1
- const path = require('path');
1
+ const path = require('path');
2
2
  const MiniCssExtractPlugin = require("mini-css-extract-plugin");
3
+
3
4
  module.exports = {
4
5
  entry: {
5
6
  'assets/dist/style': './demo_styles.scss',
7
+
6
8
  'assets/dist/index': './src.dev/index-dev.ts'
9
+
7
10
  },
8
11
  cache: true,
9
12
  module: {
@@ -18,6 +21,7 @@ module.exports = {
18
21
  }
19
22
  }
20
23
  ],
24
+
21
25
  include: [
22
26
  path.resolve(__dirname, "src"),
23
27
  path.resolve(__dirname, "workspaces"),
@@ -34,14 +38,17 @@ module.exports = {
34
38
  use: [
35
39
  MiniCssExtractPlugin.loader,
36
40
  {
41
+
37
42
  loader: 'css-loader',
38
43
  options: {
39
44
  url: false // don't complain about url() in css
40
45
  }
41
- }, 'sass-loader'
42
- ],
46
+
47
+ }, 'sass-loader'],
43
48
  include: path.resolve(__dirname, "")
44
49
  },
50
+
51
+
45
52
  ],
46
53
  },
47
54
  resolve: {
@@ -57,13 +64,17 @@ module.exports = {
57
64
  port: 4000,
58
65
  },
59
66
  plugins: [
67
+
60
68
  new MiniCssExtractPlugin({
61
- // Options similar to the same options in webpackOptions.output
62
- // both options are optional
63
- filename: "[name].css",
64
- chunkFilename: "[id].css",
69
+ // Options similar to the same options in webpackOptions.output
70
+ // both options are optional
71
+ filename: "[name].css",
72
+ chunkFilename: "[id].css",
65
73
  }),
74
+
75
+
66
76
  ],
77
+
67
78
  output: {
68
79
  filename: '[name].js',
69
80
  path: path.resolve(__dirname, 'docs/'),
package/dist/embed.d.ts DELETED
@@ -1 +0,0 @@
1
- export {};
package/dist/index.d.ts DELETED
@@ -1,6 +0,0 @@
1
- export * from "./sections/sections";
2
- export * from "./elements/elements";
3
- export * from "@leuffen/isl-base";
4
- import "@leuffen/jodastyle";
5
- import "@leuffen/liweco-base";
6
- import "@leuffen/liscom";
@@ -1,4 +0,0 @@
1
- import "./theme1.scss";
2
- import "./src.dev/dev.scss";
3
- import "./themes/theme1/theme1.dev";
4
- import "@micx/lib-js";
@@ -1,55 +0,0 @@
1
- import MiniCssExtractPlugin = require("mini-css-extract-plugin");
2
- export let entry: {
3
- 'assets/dist/style': string;
4
- 'assets/dist/index': string;
5
- };
6
- export let cache: boolean;
7
- export namespace module {
8
- let rules: ({
9
- test: RegExp;
10
- use: {
11
- loader: string;
12
- options: {
13
- loader: string;
14
- };
15
- }[];
16
- include: string[];
17
- enforce?: undefined;
18
- loader?: undefined;
19
- } | {
20
- enforce: string;
21
- test: RegExp;
22
- loader: string;
23
- use?: undefined;
24
- include?: undefined;
25
- } | {
26
- test: RegExp;
27
- use: (string | {
28
- loader: string;
29
- options: {
30
- url: boolean;
31
- };
32
- })[];
33
- include: string;
34
- enforce?: undefined;
35
- loader?: undefined;
36
- })[];
37
- }
38
- export namespace resolve {
39
- let extensions: string[];
40
- }
41
- export let devtool: string;
42
- export let mode: string;
43
- export namespace devServer {
44
- export namespace _static {
45
- let directory: string;
46
- }
47
- export { _static as static };
48
- export let compress: boolean;
49
- export let port: number;
50
- }
51
- export let plugins: MiniCssExtractPlugin[];
52
- export namespace output {
53
- let filename: string;
54
- let path: string;
55
- }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes