@nymphjs/tilmeld-setup 1.0.0-alpha.26 → 1.0.0-alpha.27

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/CHANGELOG.md CHANGED
@@ -3,6 +3,13 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.0.0-alpha.27](https://github.com/sciactive/nymphjs/compare/v1.0.0-alpha.26...v1.0.0-alpha.27) (2022-01-05)
7
+
8
+ ### Features
9
+
10
+ - add prop forwarding for svelte components within tilmeld components ([42b60e2](https://github.com/sciactive/nymphjs/commit/42b60e29638f04036eff3f7e4876e96a1c66c0bf))
11
+ - update smui to latest versions ([7ed7bd3](https://github.com/sciactive/nymphjs/commit/7ed7bd34d01a155c7001a2671de25ef2f3363682))
12
+
6
13
  # [1.0.0-alpha.26](https://github.com/sciactive/nymphjs/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2021-12-30)
7
14
 
8
15
  **Note:** Version bump only for package @nymphjs/tilmeld-setup
@@ -123,7 +123,8 @@
123
123
 
124
124
  <script lang="ts">
125
125
  import { onMount, SvelteComponent } from 'svelte';
126
- import { ClientConfig, CurrentUserData, User } from '@nymphjs/tilmeld-client';
126
+ import type { ClientConfig, CurrentUserData } from '@nymphjs/tilmeld-client';
127
+ import { User } from '@nymphjs/tilmeld-client';
127
128
  import { Login, Account } from '@nymphjs/tilmeld-components';
128
129
  import { mdiGithub, mdiTwitter } from '@mdi/js';
129
130
  import TopAppBar, { Row, Section, Title } from '@smui/top-app-bar';
@@ -327,13 +327,12 @@
327
327
 
328
328
  <script lang="ts">
329
329
  import { createEventDispatcher, onMount } from 'svelte';
330
- import {
330
+ import type {
331
331
  AdminGroupData,
332
332
  ClientConfig,
333
333
  CurrentUserData,
334
- Group,
335
- User,
336
334
  } from '@nymphjs/tilmeld-client';
335
+ import { Group, User } from '@nymphjs/tilmeld-client';
337
336
  import queryParser from '@nymphjs/query-parser';
338
337
  import {
339
338
  mdiArrowLeft,
@@ -91,13 +91,12 @@
91
91
  <script lang="ts">
92
92
  import { onMount } from 'svelte';
93
93
  import queryParser from '@nymphjs/query-parser';
94
- import {
94
+ import type {
95
95
  AdminGroupData,
96
96
  ClientConfig,
97
97
  CurrentUserData,
98
- Group,
99
- User,
100
98
  } from '@nymphjs/tilmeld-client';
99
+ import { Group, User } from '@nymphjs/tilmeld-client';
101
100
  import { mdiMagnify, mdiArrowRight, mdiPlus } from '@mdi/js';
102
101
  import CircularProgress from '@smui/circular-progress';
103
102
  import Paper from '@smui/paper';
@@ -562,14 +562,13 @@
562
562
 
563
563
  <script lang="ts">
564
564
  import { createEventDispatcher, onMount } from 'svelte';
565
- import {
565
+ import type {
566
566
  AdminGroupData,
567
567
  AdminUserData,
568
568
  ClientConfig,
569
569
  CurrentUserData,
570
- Group,
571
- User,
572
570
  } from '@nymphjs/tilmeld-client';
571
+ import { Group, User } from '@nymphjs/tilmeld-client';
573
572
  import queryParser from '@nymphjs/query-parser';
574
573
  import {
575
574
  mdiArrowLeft,
@@ -91,13 +91,12 @@
91
91
  <script lang="ts">
92
92
  import { onMount } from 'svelte';
93
93
  import queryParser from '@nymphjs/query-parser';
94
- import {
94
+ import type {
95
95
  AdminUserData,
96
96
  ClientConfig,
97
97
  CurrentUserData,
98
- Group,
99
- User,
100
98
  } from '@nymphjs/tilmeld-client';
99
+ import { Group, User } from '@nymphjs/tilmeld-client';
101
100
  import { mdiMagnify, mdiArrowRight, mdiPlus } from '@mdi/js';
102
101
  import CircularProgress from '@smui/circular-progress';
103
102
  import Paper from '@smui/paper';