Skip to content

Commit

Permalink
docs(demo-input-controls|demo-scheduler): fix copyrights
Browse files Browse the repository at this point in the history
  • Loading branch information
ecanchev-jaspersoft committed Oct 4, 2024
1 parent 2cbb7db commit 5a917c9
Show file tree
Hide file tree
Showing 25 changed files with 140 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/demo-input-controls/babel.config.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/
module.exports = {
presets: [
["@babel/preset-env", { targets: { node: "current" } }],
Expand Down
5 changes: 5 additions & 0 deletions packages/demo-input-controls/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/
import js from "@eslint/js";
import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
Expand Down
5 changes: 5 additions & 0 deletions packages/demo-input-controls/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
~ Copyright © 2024. Cloud Software Group, Inc.
~ This file is subject to the license terms contained
~ in the license file that is distributed with this file.
-->
<!doctype html>
<html lang="en">
<head>
Expand Down
5 changes: 5 additions & 0 deletions packages/demo-input-controls/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/
import { Config } from "jest";

const conf: Config = {
Expand Down
5 changes: 5 additions & 0 deletions packages/demo-input-controls/src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/
6 changes: 6 additions & 0 deletions packages/demo-input-controls/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

// This line is necessary to setting up the styles
// refer to: https://v5.mui.com/material-ui/experimental-api/classname-generator/
import "@jaspersoft/jv-ui-components/material-ui/JVMuiClassNameSetup";
Expand Down
5 changes: 5 additions & 0 deletions packages/demo-input-controls/src/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/
@import "@jaspersoft/jv-ui-components/dist/jv-ui.css";
html,
body {
Expand Down
5 changes: 5 additions & 0 deletions packages/demo-input-controls/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import "./index.css";
Expand Down
5 changes: 5 additions & 0 deletions packages/demo-input-controls/src/report/ReportPanel.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/
import { InputControlProperties, VisualizeClient } from "@jaspersoft/jv-tools";
import { useEffect, useState } from "react";

Expand Down
6 changes: 6 additions & 0 deletions packages/demo-input-controls/src/vite-env.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

/// <reference types="vite/client" />
5 changes: 5 additions & 0 deletions packages/demo-input-controls/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
import libCss from "vite-plugin-libcss";
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/babel.config.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

module.exports = {
presets: [
["@babel/preset-env", { targets: { node: "current" } }],
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

import js from "@eslint/js";
import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
~ Copyright © 2024. Cloud Software Group, Inc.
~ This file is subject to the license terms contained
~ in the license file that is distributed with this file.
-->

<!doctype html>
<html lang="en">
<head>
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

import { Config } from "jest";

const conf: Config = {
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/src/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

body {
margin: 0 10px !important;
padding: 0 10px !important;
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

import { useEffect, useState } from "react";
import "@jaspersoft/jv-ui-components/dist/jv-ui.css";
import "@jaspersoft/jv-ui-components/material-ui/JVMuiClassNameSetup";
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/src/Scheduler.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

import {
Scheduler as JaspersoftScheduler,
SchedulerConfigProps,
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/src/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

html,
body {
margin: 0 auto;
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/src/jv_sheduler_config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

import { SchedulerConfigProps } from "@jaspersoft/jv-scheduler";

const schedulerUIConfig: SchedulerConfigProps = {
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import "./index.css";
Expand Down
5 changes: 5 additions & 0 deletions packages/demo-scheduler/src/report/ReportPanel.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/
import { VisualizeClient } from "@jaspersoft/jv-tools";
import { useEffect } from "react";

Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/src/vite-env.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

/// <reference types="vite/client" />
6 changes: 6 additions & 0 deletions packages/demo-scheduler/test/stub.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

describe("stub tests, since none exist", () => {
it("should run tests", () => {
expect(1).toBe(1);
Expand Down
6 changes: 6 additions & 0 deletions packages/demo-scheduler/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright © 2024. Cloud Software Group, Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*/

import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
import libCss from "vite-plugin-libcss";
Expand Down

0 comments on commit 5a917c9

Please sign in to comment.