@lblod/ember-rdfa-editor-lblod-plugins 28.2.2 → 29.0.0-dev.710302bf659028ae8c0e0cb665a5b414dd9f5b17

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.
@@ -0,0 +1,5 @@
1
+ ---
2
+ '@lblod/ember-rdfa-editor-lblod-plugins': patch
3
+ ---
4
+
5
+ Solves bug with powerselect dropdown not displaying in place
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @lblod/ember-rdfa-editor-lblod-plugins
2
2
 
3
+ ## 29.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#554](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/554) [`91e5c25`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/91e5c2540fb66aa4a8356a0e3977ff7ab7655440) Thanks [@elpoelma](https://github.com/elpoelma)! - Remove obsolete `webpack-config.js`. This config is solely needed for the tests, and is now inlined in the `ember-cli-build` file of the test-app
8
+
9
+ ### Patch Changes
10
+
11
+ - [#556](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/556) [`aa0c182`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/aa0c1824811712fa6052f5962a2b8473d0bab7a4) Thanks [@piemonkey](https://github.com/piemonkey)! - Bundle location plugin marker icons to avoid issues when bundling the code for embeddable
12
+
13
+ - [`867ca46`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/867ca46b680b2fdc8c5c41481a839f43968ebfd5) Thanks [@abeforgit](https://github.com/abeforgit)! - Always render a period after structure names, it should never be a colon
14
+
15
+ - [#554](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/pull/554) [`bc1a294`](https://github.com/lblod/ember-rdfa-editor-lblod-plugins/commit/bc1a29474c4fd09367bfc08c8e97439cbba27198) Thanks [@elpoelma](https://github.com/elpoelma)! - Update `ember-template-imports` to version 4.3.0 . This version unlocks `.gts`/`.gjs` sourcemaps.
16
+
3
17
  ## 28.2.2
4
18
 
5
19
  ### Patch Changes
@@ -34,6 +34,7 @@
34
34
  {{else}}
35
35
  <PowerSelect
36
36
  id='location-select'
37
+ @dropdownClass='location-select-dropdown'
37
38
  @allowClear={{false}}
38
39
  @searchEnabled={{true}}
39
40
  @searchField='label'
@@ -1,2 +1,2 @@
1
- export { type LpdcPluginConfig, LPDC } from './types';
1
+ export type { LpdcPluginConfig, LPDC } from './types';
2
2
  export { fetchLpdcs } from './api';
@@ -129,3 +129,38 @@
129
129
  margin-top: 5px;
130
130
  }
131
131
  }
132
+
133
+ @media only screen and (min-width: 2500px) {
134
+ #location-select,
135
+ .location-select-dropdown {
136
+ width: 600px;
137
+ }
138
+ }
139
+
140
+ @media only screen and (max-width: 2500px) {
141
+ #location-select,
142
+ .location-select-dropdown {
143
+ width: 500px;
144
+ }
145
+ }
146
+
147
+ @media only screen and (max-width: 2000px) {
148
+ #location-select,
149
+ .location-select-dropdown {
150
+ width: 400px;
151
+ }
152
+ }
153
+
154
+ @media only screen and (max-width: 1700px) {
155
+ #location-select,
156
+ .location-select-dropdown {
157
+ width: 300px;
158
+ }
159
+ }
160
+
161
+ @media only screen and (max-width: 1400px) {
162
+ #location-select,
163
+ .location-select-dropdown {
164
+ width: 200px;
165
+ }
166
+ }
@@ -1,2 +1,2 @@
1
- export { type LpdcPluginConfig, LPDC } from './types';
1
+ export type { LpdcPluginConfig, LPDC } from './types';
2
2
  export { fetchLpdcs } from './api';
package/index.js CHANGED
@@ -13,9 +13,6 @@ module.exports = {
13
13
  sourceMaps: 'inline',
14
14
  plugins: [],
15
15
  },
16
- autoImport: {
17
- webpack: require('./webpack-config'),
18
- },
19
16
  },
20
17
 
21
18
  init() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lblod/ember-rdfa-editor-lblod-plugins",
3
- "version": "28.2.2",
3
+ "version": "29.0.0-dev.710302bf659028ae8c0e0cb665a5b414dd9f5b17",
4
4
  "description": "Ember addon providing lblod specific plugins for the ember-rdfa-editor",
5
5
  "keywords": [
6
6
  "ember-addon",
@@ -74,7 +74,7 @@
74
74
  "ember-cli-version-checker": "^5.1.2",
75
75
  "ember-mu-transform-helpers": "^2.1.2",
76
76
  "ember-resources": "^7.0.2",
77
- "ember-template-imports": "^4.1.1",
77
+ "ember-template-imports": "^4.3.0",
78
78
  "ember-velcro": "^2.2.0",
79
79
  "fetch-sparql-endpoint": "^3.3.3",
80
80
  "n2words": "^1.21.0",
@@ -97,7 +97,11 @@
97
97
  "@ember/render-modifiers": "^2.1.0",
98
98
  "@ember/string": "^3.1.1",
99
99
  "@ember/test-helpers": "^3.3.1",
100
+ "@embroider/broccoli-side-watch": "^1.0.1",
101
+ "@embroider/compat": "^3.8.4",
102
+ "@embroider/core": "^3.5.4",
100
103
  "@embroider/test-setup": "^4.0.0",
104
+ "@embroider/webpack": "^4.1.0",
101
105
  "@gavant/glint-template-types": "^0.4.0",
102
106
  "@glimmer/component": "^1.1.2",
103
107
  "@glimmer/tracking": "^1.1.2",
@@ -135,6 +139,7 @@
135
139
  "ember-cli-sass": "^11.0.1",
136
140
  "ember-cli-sri": "^2.1.1",
137
141
  "ember-cli-terser": "^4.0.2",
142
+ "ember-concurrency": "^4.0.2",
138
143
  "ember-disable-prototype-extensions": "^1.1.3",
139
144
  "ember-element-helper": "^0.8.6",
140
145
  "ember-eslint-parser": "^0.5.7",
@@ -142,7 +147,6 @@
142
147
  "ember-leaflet": "^5.1.3",
143
148
  "ember-load-initializers": "^2.1.2",
144
149
  "ember-modifier": "~4.1.0",
145
- "ember-concurrency": "^4.0.2",
146
150
  "ember-page-title": "^8.2.3",
147
151
  "ember-power-select": "~7.1.0",
148
152
  "ember-qunit": "^8.1.0",
@@ -171,6 +175,7 @@
171
175
  "sass": "^1.77.6",
172
176
  "sinon": "^17.0.1",
173
177
  "typescript": "^5.6.2",
178
+ "vm-browserify": "^1.1.2",
174
179
  "webpack": "^5.95.0"
175
180
  },
176
181
  "peerDependencies": {