Skip to content

Commit

Permalink
add missing build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Fabel authored and Oliver Fabel committed Aug 4, 2022
1 parent d0547a5 commit 8318eed
Show file tree
Hide file tree
Showing 7 changed files with 88 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.10.2] - 04.08.2022

### Fixed

* Add missing build artifacts.

## [1.10.1] - 04.08.2022

### Fixed
Expand Down Expand Up @@ -448,7 +454,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
* Custom JS module support
* Basic setup to publish project as NPM package

[Unreleased]: https://github.com/bsi-software/bsi-cx-design-build/compare/1.10.1...HEAD
[Unreleased]: https://github.com/bsi-software/bsi-cx-design-build/compare/1.10.2...HEAD

[1.10.2]: https://github.com/bsi-software/bsi-cx-design-build/compare/1.10.1...1.10.2

[1.10.1]: https://github.com/bsi-software/bsi-cx-design-build/compare/1.10.0...1.10.1

Expand Down
46 changes: 46 additions & 0 deletions dist/browser.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/browser.js.map

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions dist/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5398,6 +5398,20 @@ declare module "src/design/design" {
* @returns {Design}
*/
withDropzones(...dropzones: Dropzone[]): Design;
/**
* Extend the allowed elements list of a defined dropzone. Be aware that this only works when you define your allowed
* elements by using the provided builder class with the {@link Dropzone#withAllowedElements} method.
*
* @example
* .withExtendedDropzone(
* 'a5142bca-448b-40c5-bdde-942f531fcd12',
* require('./content-elements/basic/text'),
* require('./content-elements/basic/image'))
* @param {string} id - The ID of the dropzone to extend (set with {@link Dropzone#withDropzone}).
* @param {...ContentElement} elements - The elements to add to the allowed elements list.
* @returns {Design}
*/
withExtendedDropzone(id: string, ...elements: ContentElement[]): Design;
/**
* The style configurations of your design. This is only necessary if you use
* {@link ContentElement#withRawStyleConfigs} to reference your style configurations.
Expand Down Expand Up @@ -6003,6 +6017,20 @@ declare module "src/website/abstract-include" {
* @returns {this}
*/
withDropzones(...dropzones: Dropzone[]): this;
/**
* Extend the allowed elements list of a defined dropzone. Be aware that this only works when you define your allowed
* elements by using the provided builder class with the {@link Dropzone#withAllowedElements} method.
*
* @example
* .withExtendedDropzone(
* 'a5142bca-448b-40c5-bdde-942f531fcd12',
* require('./content-elements/basic/text'),
* require('./content-elements/basic/image'))
* @param {string} id - The ID of the dropzone to extend (set with {@link Dropzone#withDropzone}).
* @param {...ContentElement} elements - The elements to add to the allowed elements list.
* @returns {this}
*/
withExtendedDropzone(id: string, ...elements: ContentElement[]): this;
}
export type Dropzone = import("src/dropzone/dropzone").default;
import AbstractBuilder from "src/abstract-builder";
Expand Down
2 changes: 1 addition & 1 deletion dist/types.d.ts.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bsi-cx/design-build",
"version": "1.10.1",
"version": "1.10.2",
"description": "A webpack config builder to create a design for BSI CX.",
"private": false,
"engines": {
Expand Down

0 comments on commit 8318eed

Please sign in to comment.