@htmlbricks/hb-banner 0.5.17 → 0.5.25

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/extra/docs.ts CHANGED
@@ -1,5 +1,11 @@
1
+ import type { CssPart, CssVar, HtmlSlot } from "@htmlbricks/hb-jsutils/main";
2
+
1
3
  export const storybookArgs = {
2
4
  logouri: { control: { type: "text" } },
3
5
  title: { control: { type: "text" } },
4
6
  description: { control: { type: "text" } },
5
7
  };
8
+
9
+ export const cssVars: CssVar[] = [];
10
+ export const cssParts: CssPart[] = [];
11
+ export const htmlSlots: HtmlSlot[] = [];
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@htmlbricks/hb-banner",
3
3
  "displayName": "Svelte Banner WebComponent",
4
4
  "description": "Svelte Banner WebComponent",
5
- "version": "0.5.17",
5
+ "version": "0.5.25",
6
6
  "main": "release/release.js",
7
7
  "publishConfig": {
8
8
  "access": "public"
@@ -20,13 +20,14 @@
20
20
  "start": "sirv dist",
21
21
  "dev": "rm -rf ./dist && rollup -c -w",
22
22
  "build": "rm -rf ./dist && rollup -c",
23
- "generate-schema": "ts-json-schema-generator --path 'app/types/webcomponent.type.d.ts' --type 'Component' > app/types/webcomponent.type.d.json && cp app/types/webcomponent.type.d.json ./dist/",
23
+ "generate-schema": "ts-json-schema-generator --path 'app/types/webcomponent.type.d.ts' > app/types/webcomponent.type.d.json && cp app/types/webcomponent.type.d.json ./dist/",
24
24
  "copydest": "rm -rf release && mkdir -p release && mkdir -p release && cp dist/* ./release/",
25
- "build-extra": "tsc --module es2020 --esModuleInterop true --outDir dist --sourceMap true --skipLibCheck true extra/*",
25
+ "build-extra": "tsc --moduleResolution node --module es2020 --esModuleInterop true --outDir dist --sourceMap --skipLibCheck extra/*",
26
26
  "build:release": "PRODUCTION=true npm run build && npm run build-extra && npm run generate-schema && npm run copydest",
27
27
  "prepublish": "npm run build:release"
28
28
  },
29
29
  "devDependencies": {
30
+ "@htmlbricks/hb-jsutils": "^0.5.25",
30
31
  "@rollup/plugin-alias": "^3.1.2",
31
32
  "@rollup/plugin-commonjs": "^18.0.0",
32
33
  "@rollup/plugin-json": "^4.1.0",
@@ -70,5 +71,5 @@
70
71
  "html5-webcomponents"
71
72
  ],
72
73
  "contributors": [],
73
- "gitHead": "1babc09ef7a4556fddea5bd93c74a1b64f8df150"
74
+ "gitHead": "bf02f6387ea791705cf939bc105bcd39b38cb313"
74
75
  }
package/release/docs.js CHANGED
@@ -3,4 +3,7 @@ export var storybookArgs = {
3
3
  title: { control: { type: "text" } },
4
4
  description: { control: { type: "text" } }
5
5
  };
6
+ export var cssVars = [];
7
+ export var cssParts = [];
8
+ export var htmlSlots = [];
6
9
  //# sourceMappingURL=docs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"docs.js","sourceRoot":"","sources":["../extra/docs.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,aAAa,GAAG;IAC5B,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACtC,KAAK,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACpC,WAAW,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;CAC1C,CAAC"}
1
+ {"version":3,"file":"docs.js","sourceRoot":"","sources":["../extra/docs.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,IAAM,aAAa,GAAG;IAC5B,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACtC,KAAK,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACpC,WAAW,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;CAC1C,CAAC;AAEF,MAAM,CAAC,IAAM,OAAO,GAAa,EAAE,CAAC;AACpC,MAAM,CAAC,IAAM,QAAQ,GAAc,EAAE,CAAC;AACtC,MAAM,CAAC,IAAM,SAAS,GAAe,EAAE,CAAC"}
package/release/docs.ts CHANGED
@@ -1,5 +1,11 @@
1
+ import type { CssPart, CssVar, HtmlSlot } from "@htmlbricks/hb-jsutils/main";
2
+
1
3
  export const storybookArgs = {
2
4
  logouri: { control: { type: "text" } },
3
5
  title: { control: { type: "text" } },
4
6
  description: { control: { type: "text" } },
5
7
  };
8
+
9
+ export const cssVars: CssVar[] = [];
10
+ export const cssParts: CssPart[] = [];
11
+ export const htmlSlots: HtmlSlot[] = [];
@@ -1,5 +1,4 @@
1
1
  {
2
- "$ref": "#/definitions/Component",
3
2
  "$schema": "http://json-schema.org/draft-07/schema#",
4
3
  "definitions": {
5
4
  "Component": {
@@ -16,6 +15,10 @@
16
15
  }
17
16
  },
18
17
  "type": "object"
18
+ },
19
+ "Events": {
20
+ "additionalProperties": false,
21
+ "type": "object"
19
22
  }
20
23
  }
21
24
  }
@@ -3,3 +3,5 @@ export type Component = {
3
3
  description?: string;
4
4
  logouri?: string;
5
5
  };
6
+
7
+ export type Events = {};