@htmlbricks/hb-calendar-events 0.6.4 → 0.6.9
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 +9 -17
- package/package.json +3 -3
- package/release/docs.js +7 -16
- package/release/docs.js.map +1 -1
- package/release/docs.ts +9 -17
package/extra/docs.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CssPart, CssVar, HtmlSlot, i18nLang } from "@htmlbricks/hb-jsutils/main";
|
|
1
|
+
import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup } from "@htmlbricks/hb-jsutils/main";
|
|
2
2
|
|
|
3
3
|
export const storybookArgs = {
|
|
4
4
|
events: { control: { type: "object" } },
|
|
@@ -9,22 +9,8 @@ export const storybookArgs = {
|
|
|
9
9
|
changeSelectedDate: { action: "changeSelectedDateEvent" },
|
|
10
10
|
};
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
{
|
|
15
|
-
name: "--bs-secondary",
|
|
16
|
-
defaultValue: null,
|
|
17
|
-
theme: "bootstrap",
|
|
18
|
-
valueType: "color",
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
name: "--bs-success",
|
|
22
|
-
defaultValue: null,
|
|
23
|
-
theme: "bootstrap",
|
|
24
|
-
valueType: "color",
|
|
25
|
-
},
|
|
26
|
-
];
|
|
27
|
-
export const cssParts: CssPart[] = [
|
|
12
|
+
const cssVars: CssVar[] = [];
|
|
13
|
+
const cssParts: CssPart[] = [
|
|
28
14
|
{
|
|
29
15
|
name: "calendar-header",
|
|
30
16
|
},
|
|
@@ -33,3 +19,9 @@ export const cssParts: CssPart[] = [
|
|
|
33
19
|
];
|
|
34
20
|
export const htmlSlots: HtmlSlot[] = [];
|
|
35
21
|
export const i18nLanguages: i18nLang[] = [];
|
|
22
|
+
|
|
23
|
+
export const styleSetup: StyleSetup = {
|
|
24
|
+
vars: cssVars,
|
|
25
|
+
parts: cssParts,
|
|
26
|
+
themes: ["bootstrap"],
|
|
27
|
+
};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@htmlbricks/hb-calendar-events",
|
|
3
3
|
"displayName": "Svelte Calendar WebComponent",
|
|
4
4
|
"description": "Svelte Calendar WebComponent",
|
|
5
|
-
"version": "0.6.
|
|
5
|
+
"version": "0.6.9",
|
|
6
6
|
"main": "release/release.js",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"dayjs": "^1.10.7"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@htmlbricks/hb-jsutils": "^0.6.
|
|
34
|
+
"@htmlbricks/hb-jsutils": "^0.6.9",
|
|
35
35
|
"@rollup/plugin-alias": "^3.1.2",
|
|
36
36
|
"@rollup/plugin-commonjs": "^18.0.0",
|
|
37
37
|
"@rollup/plugin-json": "^4.1.0",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"webcomponents"
|
|
75
75
|
],
|
|
76
76
|
"contributors": [],
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "d9fc1ed3458c4f52f00d819b9a5004b56a34dc4d"
|
|
78
78
|
}
|
package/release/docs.js
CHANGED
|
@@ -6,22 +6,8 @@ export var storybookArgs = {
|
|
|
6
6
|
changeCalendarDate: { action: "changeCalendarDateEvent" },
|
|
7
7
|
changeSelectedDate: { action: "changeSelectedDateEvent" }
|
|
8
8
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
{
|
|
12
|
-
name: "--bs-secondary",
|
|
13
|
-
defaultValue: null,
|
|
14
|
-
theme: "bootstrap",
|
|
15
|
-
valueType: "color"
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
name: "--bs-success",
|
|
19
|
-
defaultValue: null,
|
|
20
|
-
theme: "bootstrap",
|
|
21
|
-
valueType: "color"
|
|
22
|
-
},
|
|
23
|
-
];
|
|
24
|
-
export var cssParts = [
|
|
9
|
+
var cssVars = [];
|
|
10
|
+
var cssParts = [
|
|
25
11
|
{
|
|
26
12
|
name: "calendar-header"
|
|
27
13
|
},
|
|
@@ -30,4 +16,9 @@ export var cssParts = [
|
|
|
30
16
|
];
|
|
31
17
|
export var htmlSlots = [];
|
|
32
18
|
export var i18nLanguages = [];
|
|
19
|
+
export var styleSetup = {
|
|
20
|
+
vars: cssVars,
|
|
21
|
+
parts: cssParts,
|
|
22
|
+
themes: ["bootstrap"]
|
|
23
|
+
};
|
|
33
24
|
//# sourceMappingURL=docs.js.map
|
package/release/docs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"docs.js","sourceRoot":"","sources":["../extra/docs.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,IAAM,aAAa,GAAG;IAC5B,MAAM,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACvC,IAAI,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACnC,QAAQ,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACvC,kBAAkB,EAAE,EAAE,MAAM,EAAE,yBAAyB,EAAE;IACzD,kBAAkB,EAAE,EAAE,MAAM,EAAE,yBAAyB,EAAE;IACzD,kBAAkB,EAAE,EAAE,MAAM,EAAE,yBAAyB,EAAE;CACzD,CAAC;AAEF,
|
|
1
|
+
{"version":3,"file":"docs.js","sourceRoot":"","sources":["../extra/docs.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,IAAM,aAAa,GAAG;IAC5B,MAAM,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACvC,IAAI,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACnC,QAAQ,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IACvC,kBAAkB,EAAE,EAAE,MAAM,EAAE,yBAAyB,EAAE;IACzD,kBAAkB,EAAE,EAAE,MAAM,EAAE,yBAAyB,EAAE;IACzD,kBAAkB,EAAE,EAAE,MAAM,EAAE,yBAAyB,EAAE;CACzD,CAAC;AAEF,IAAM,OAAO,GAAa,EAAE,CAAC;AAC7B,IAAM,QAAQ,GAAc;IAC3B;QACC,IAAI,EAAE,iBAAiB;KACvB;IACD,EAAE,IAAI,EAAE,8BAA8B,EAAE;IACxC,EAAE,IAAI,EAAE,MAAM,EAAE;CAChB,CAAC;AACF,MAAM,CAAC,IAAM,SAAS,GAAe,EAAE,CAAC;AACxC,MAAM,CAAC,IAAM,aAAa,GAAe,EAAE,CAAC;AAE5C,MAAM,CAAC,IAAM,UAAU,GAAe;IACrC,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,QAAQ;IACf,MAAM,EAAE,CAAC,WAAW,CAAC;CACrB,CAAC"}
|
package/release/docs.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CssPart, CssVar, HtmlSlot, i18nLang } from "@htmlbricks/hb-jsutils/main";
|
|
1
|
+
import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup } from "@htmlbricks/hb-jsutils/main";
|
|
2
2
|
|
|
3
3
|
export const storybookArgs = {
|
|
4
4
|
events: { control: { type: "object" } },
|
|
@@ -9,22 +9,8 @@ export const storybookArgs = {
|
|
|
9
9
|
changeSelectedDate: { action: "changeSelectedDateEvent" },
|
|
10
10
|
};
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
{
|
|
15
|
-
name: "--bs-secondary",
|
|
16
|
-
defaultValue: null,
|
|
17
|
-
theme: "bootstrap",
|
|
18
|
-
valueType: "color",
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
name: "--bs-success",
|
|
22
|
-
defaultValue: null,
|
|
23
|
-
theme: "bootstrap",
|
|
24
|
-
valueType: "color",
|
|
25
|
-
},
|
|
26
|
-
];
|
|
27
|
-
export const cssParts: CssPart[] = [
|
|
12
|
+
const cssVars: CssVar[] = [];
|
|
13
|
+
const cssParts: CssPart[] = [
|
|
28
14
|
{
|
|
29
15
|
name: "calendar-header",
|
|
30
16
|
},
|
|
@@ -33,3 +19,9 @@ export const cssParts: CssPart[] = [
|
|
|
33
19
|
];
|
|
34
20
|
export const htmlSlots: HtmlSlot[] = [];
|
|
35
21
|
export const i18nLanguages: i18nLang[] = [];
|
|
22
|
+
|
|
23
|
+
export const styleSetup: StyleSetup = {
|
|
24
|
+
vars: cssVars,
|
|
25
|
+
parts: cssParts,
|
|
26
|
+
themes: ["bootstrap"],
|
|
27
|
+
};
|